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 3DD82138350 for ; Mon, 27 Jan 2020 07:22:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AE236E0894; Mon, 27 Jan 2020 07:22:52 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 D6A1EE088F for ; Mon, 27 Jan 2020 07:22:50 +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 F3EF834E3B5 for ; Mon, 27 Jan 2020 07:22:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1AFED10C for ; Mon, 27 Jan 2020 07:22:46 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1580109733.9b42a8d1135405072db315f733435ae61fffaedb.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/paste/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/paste/paste-3.2.3.ebuild X-VCS-Directories: dev-python/paste/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 9b42a8d1135405072db315f733435ae61fffaedb X-VCS-Branch: master Date: Mon, 27 Jan 2020 07:22:46 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 299ca2f1-644f-433d-96c2-edb95b7a7bf4 X-Archives-Hash: a4c60a46688b5ec7247bfe371a53aab1 commit: 9b42a8d1135405072db315f733435ae61fffaedb Author: Michał Górny gentoo org> AuthorDate: Mon Jan 27 06:41:35 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Jan 27 07:22:13 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b42a8d1 dev-python/paste: Set DISTUTILS_USE_SETUPTOOLS Signed-off-by: Michał Górny gentoo.org> dev-python/paste/paste-3.2.3.ebuild | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/dev-python/paste/paste-3.2.3.ebuild b/dev-python/paste/paste-3.2.3.ebuild index d0d437d3a61..eb9f07e5598 100644 --- a/dev-python/paste/paste-3.2.3.ebuild +++ b/dev-python/paste/paste-3.2.3.ebuild @@ -2,6 +2,8 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 + +DISTUTILS_USE_SETUPTOOLS=rdepend PYTHON_COMPAT=( python2_7 python3_{6,7,8} pypy3 ) inherit distutils-r1 @@ -22,8 +24,7 @@ RDEPEND="dev-python/namespace-paste[${PYTHON_USEDEP}] >=dev-python/six-1.4.0[${PYTHON_USEDEP}] flup? ( dev-python/flup[$(python_gen_usedep 'python2*')] ) openid? ( dev-python/python-openid[$(python_gen_usedep 'python2*')] )" -DEPEND="${RDEPEND} - dev-python/setuptools[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND}" S="${WORKDIR}/${MY_P}"