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 F051E138334 for ; Thu, 9 Aug 2018 16:25:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B6593E09A4; Thu, 9 Aug 2018 16:25:47 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 8A637E09A4 for ; Thu, 9 Aug 2018 16:25:46 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 768E6335C9A for ; Thu, 9 Aug 2018 16:25:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B2186380 for ; Thu, 9 Aug 2018 16:25:42 +0000 (UTC) From: "Jason Zaman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jason Zaman" Message-ID: <1533831884.bf1e5c52ed4ac2d014b9cbf8d74a4aca84dd58c3.perfinion@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/absl-py/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/absl-py/absl-py-0.2.2-r1.ebuild dev-python/absl-py/absl-py-0.2.2.ebuild X-VCS-Directories: dev-python/absl-py/ X-VCS-Committer: perfinion X-VCS-Committer-Name: Jason Zaman X-VCS-Revision: bf1e5c52ed4ac2d014b9cbf8d74a4aca84dd58c3 X-VCS-Branch: master Date: Thu, 9 Aug 2018 16:25:42 +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: f8689690-5a2a-4981-ac2b-728db47273e9 X-Archives-Hash: 1f8367bb04708ed5f0c65140a492b9b7 commit: bf1e5c52ed4ac2d014b9cbf8d74a4aca84dd58c3 Author: Jason Zaman gentoo org> AuthorDate: Thu Aug 9 16:24:44 2018 +0000 Commit: Jason Zaman gentoo org> CommitDate: Thu Aug 9 16:24:44 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf1e5c52 dev-python/absl-py: Add setuptools build dep Closes: https://bugs.gentoo.org/662018 Package-Manager: Portage-2.3.40, Repoman-2.3.9 .../absl-py/{absl-py-0.2.2.ebuild => absl-py-0.2.2-r1.ebuild} | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/dev-python/absl-py/absl-py-0.2.2.ebuild b/dev-python/absl-py/absl-py-0.2.2-r1.ebuild similarity index 80% rename from dev-python/absl-py/absl-py-0.2.2.ebuild rename to dev-python/absl-py/absl-py-0.2.2-r1.ebuild index 34d6e2a3bb6..e9071928b72 100644 --- a/dev-python/absl-py/absl-py-0.2.2.ebuild +++ b/dev-python/absl-py/absl-py-0.2.2-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 PYTHON_COMPAT=( python2_7 python3_{4,5,6} ) inherit distutils-r1 @@ -15,7 +15,8 @@ SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" -DEPEND="dev-python/six" -RDEPEND="${DEPEND}" +RDEPEND="dev-python/six[${PYTHON_USEDEP}] + dev-python/setuptools[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND}" S="${WORKDIR}/abseil-py-pypi-v${PV}"