From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 39B50139083 for ; Sat, 2 Dec 2017 15:38:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9CB54E0D39; Sat, 2 Dec 2017 15:38:53 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 775B9E0D39 for ; Sat, 2 Dec 2017 15:38:53 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 93ABB33FE60 for ; Sat, 2 Dec 2017 15:38:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 54B14AD7E for ; Sat, 2 Dec 2017 15:38:51 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1512229124.df59470b1db4002e04bcf2f347a5b8c74b733a0e.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/kitchen/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/kitchen/Manifest dev-python/kitchen/kitchen-1.2.4.ebuild X-VCS-Directories: dev-python/kitchen/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: df59470b1db4002e04bcf2f347a5b8c74b733a0e X-VCS-Branch: master Date: Sat, 2 Dec 2017 15:38:51 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 5d174d91-6b3f-4e98-a579-074ebf408bb6 X-Archives-Hash: b501363d2c67a622339f5efe9cff475b commit: df59470b1db4002e04bcf2f347a5b8c74b733a0e Author: Mike Gilbert gentoo org> AuthorDate: Sat Dec 2 15:38:44 2017 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Sat Dec 2 15:38:44 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df59470b dev-python/kitchen: depend on setuptools Closes: https://bugs.gentoo.org/639442 Package-Manager: Portage-2.3.15, Repoman-2.3.6_p7 dev-python/kitchen/Manifest | 2 +- dev-python/kitchen/kitchen-1.2.4.ebuild | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/dev-python/kitchen/Manifest b/dev-python/kitchen/Manifest index f11e89dbb2b..f5bdbda63d5 100644 --- a/dev-python/kitchen/Manifest +++ b/dev-python/kitchen/Manifest @@ -1 +1 @@ -DIST kitchen-1.2.4.tar.gz 187149 SHA256 38f73d844532dba7b8cce170e6eb032fc07d0d04a07670e1af754bd4c91dfb3d SHA512 790f7eaa16820d3b12f740d2ac7c9d849d40eea91527b7fc011270bd46af5038e987cc1b170c75c2175dc627f99a52bde52b9f276db8dac5d9d7df59ef9a505d WHIRLPOOL d9864ac07bb391df82049ffcd98f82a2013f6f28056ab19a7d17c59c8c345b64a0090eeac197313930391547f12412a68d1c794690798b4c434a840c5fb685a0 +DIST kitchen-1.2.4.tar.gz 187149 BLAKE2B 5ea3fa593ee22680998cf9ea08b66faacc2f7e20d70ec5823a6c29d8358991e98fe79cd4bd761b04b895dd1d87b1a21e2dc31ef33c0c47a05973ea4e9b884d7d SHA512 790f7eaa16820d3b12f740d2ac7c9d849d40eea91527b7fc011270bd46af5038e987cc1b170c75c2175dc627f99a52bde52b9f276db8dac5d9d7df59ef9a505d diff --git a/dev-python/kitchen/kitchen-1.2.4.ebuild b/dev-python/kitchen/kitchen-1.2.4.ebuild index 6d8e86f8775..8420a55ca66 100644 --- a/dev-python/kitchen/kitchen-1.2.4.ebuild +++ b/dev-python/kitchen/kitchen-1.2.4.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -14,3 +14,5 @@ LICENSE="LGPL-2+" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"