Gentoo Archives: gentoo-commits

From: Louis Sautier <sbraz@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/cliff/
Date: Wed, 30 Sep 2020 15:31:01
Message-Id: 1601479838.fec7291fc8e3442ce5a65276c7a947006639a0b7.sbraz@gentoo
1 commit: fec7291fc8e3442ce5a65276c7a947006639a0b7
2 Author: Louis Sautier <sbraz <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 30 15:24:42 2020 +0000
4 Commit: Louis Sautier <sbraz <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 30 15:30:38 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fec7291f
7
8 dev-python/cliff: fix DISTUTILS_USE_SETUPTOOLS QA warning
9
10 Closes: https://bugs.gentoo.org/745663
11 Package-Manager: Portage-3.0.8, Repoman-3.0.1
12 Signed-off-by: Louis Sautier <sbraz <AT> gentoo.org>
13
14 dev-python/cliff/cliff-3.4.0.ebuild | 8 ++++++--
15 1 file changed, 6 insertions(+), 2 deletions(-)
16
17 diff --git a/dev-python/cliff/cliff-3.4.0.ebuild b/dev-python/cliff/cliff-3.4.0.ebuild
18 index 97560bbb48e..2cb3eca1cbe 100644
19 --- a/dev-python/cliff/cliff-3.4.0.ebuild
20 +++ b/dev-python/cliff/cliff-3.4.0.ebuild
21 @@ -4,7 +4,8 @@
22 EAPI=7
23
24 PYTHON_COMPAT=( python3_{6..9} )
25 -DISTUTILS_USE_SETUPTOOLS=rdepend
26 +# pkg_resources is used even though the QA check doesn't detect it
27 +DISTUTILS_USE_SETUPTOOLS=manual
28
29 inherit distutils-r1
30
31 @@ -20,12 +21,15 @@ RDEPEND="
32 >=dev-python/cmd2-0.8.0[${PYTHON_USEDEP}]
33 <dev-python/prettytable-0.8[${PYTHON_USEDEP}]
34 >=dev-python/pyparsing-2.1.0[${PYTHON_USEDEP}]
35 + dev-python/setuptools[${PYTHON_USEDEP}]
36 >=dev-python/six-1.10.0[${PYTHON_USEDEP}]
37 >=dev-python/stevedore-2.0.1[${PYTHON_USEDEP}]
38 >=dev-python/pyyaml-3.12.0[${PYTHON_USEDEP}]
39 "
40 -BDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
41 +BDEPEND="
42 + >=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
43 !~dev-python/pbr-2.1.0
44 + dev-python/setuptools[${PYTHON_USEDEP}]
45 test? (
46 dev-python/sphinx[${PYTHON_USEDEP}]
47 >=dev-python/testtools-2.2.0[${PYTHON_USEDEP}]