Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/paste/
Date: Mon, 27 Jan 2020 07:22:54
Message-Id: 1580109733.9b42a8d1135405072db315f733435ae61fffaedb.mgorny@gentoo
1 commit: 9b42a8d1135405072db315f733435ae61fffaedb
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jan 27 06:41:35 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Jan 27 07:22:13 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b42a8d1
7
8 dev-python/paste: Set DISTUTILS_USE_SETUPTOOLS
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/paste/paste-3.2.3.ebuild | 5 +++--
13 1 file changed, 3 insertions(+), 2 deletions(-)
14
15 diff --git a/dev-python/paste/paste-3.2.3.ebuild b/dev-python/paste/paste-3.2.3.ebuild
16 index d0d437d3a61..eb9f07e5598 100644
17 --- a/dev-python/paste/paste-3.2.3.ebuild
18 +++ b/dev-python/paste/paste-3.2.3.ebuild
19 @@ -2,6 +2,8 @@
20 # Distributed under the terms of the GNU General Public License v2
21
22 EAPI=7
23 +
24 +DISTUTILS_USE_SETUPTOOLS=rdepend
25 PYTHON_COMPAT=( python2_7 python3_{6,7,8} pypy3 )
26
27 inherit distutils-r1
28 @@ -22,8 +24,7 @@ RDEPEND="dev-python/namespace-paste[${PYTHON_USEDEP}]
29 >=dev-python/six-1.4.0[${PYTHON_USEDEP}]
30 flup? ( dev-python/flup[$(python_gen_usedep 'python2*')] )
31 openid? ( dev-python/python-openid[$(python_gen_usedep 'python2*')] )"
32 -DEPEND="${RDEPEND}
33 - dev-python/setuptools[${PYTHON_USEDEP}]"
34 +DEPEND="${RDEPEND}"
35
36 S="${WORKDIR}/${MY_P}"