Gentoo Archives: gentoo-commits

From: Mike Gilbert <floppym@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/setuptools/
Date: Tue, 29 Sep 2020 14:37:01
Message-Id: 1601390171.fe13784be44e5167f67315bf280690004aae885e.floppym@gentoo
1 commit: fe13784be44e5167f67315bf280690004aae885e
2 Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
3 AuthorDate: Tue Sep 29 14:36:11 2020 +0000
4 Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 29 14:36:11 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe13784b
7
8 dev-python/setuptools: set DISTUTILS_USE_SETUPTOOLS=manual
9
10 The install QA check correctly detects that setuptools depends on itself
11 at runtime, but we don't want to add a self-referential dependency to
12 RDEPEND.
13
14 Closes: https://bugs.gentoo.org/745417
15 Signed-off-by: Mike Gilbert <floppym <AT> gentoo.org>
16
17 dev-python/setuptools/setuptools-46.4.0-r3.ebuild | 3 ++-
18 dev-python/setuptools/setuptools-50.3.0.ebuild | 3 ++-
19 2 files changed, 4 insertions(+), 2 deletions(-)
20
21 diff --git a/dev-python/setuptools/setuptools-46.4.0-r3.ebuild b/dev-python/setuptools/setuptools-46.4.0-r3.ebuild
22 index f42864c53f3..9819bcdb50e 100644
23 --- a/dev-python/setuptools/setuptools-46.4.0-r3.ebuild
24 +++ b/dev-python/setuptools/setuptools-46.4.0-r3.ebuild
25 @@ -2,7 +2,8 @@
26 # Distributed under the terms of the GNU General Public License v2
27
28 EAPI=7
29 -DISTUTILS_USE_SETUPTOOLS=no
30 +# Set to 'manual' to avoid triggering install QA check
31 +DISTUTILS_USE_SETUPTOOLS=manual
32 PYTHON_COMPAT=( python2_7 python3_{6,7,8,9} pypy3 )
33 PYTHON_REQ_USE="xml(+)"
34
35
36 diff --git a/dev-python/setuptools/setuptools-50.3.0.ebuild b/dev-python/setuptools/setuptools-50.3.0.ebuild
37 index 0d8d2e8bfb9..ccd3f2338ab 100644
38 --- a/dev-python/setuptools/setuptools-50.3.0.ebuild
39 +++ b/dev-python/setuptools/setuptools-50.3.0.ebuild
40 @@ -2,7 +2,8 @@
41 # Distributed under the terms of the GNU General Public License v2
42
43 EAPI=7
44 -DISTUTILS_USE_SETUPTOOLS=no
45 +# Set to 'manual' to avoid triggering install QA check
46 +DISTUTILS_USE_SETUPTOOLS=manual
47 PYTHON_COMPAT=( python3_{6,7,8,9} pypy3 )
48 PYTHON_REQ_USE="xml(+)"