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/incremental/
Date: Wed, 30 Sep 2020 22:50:46
Message-Id: 1601506238.d505d8b5b307939c2af13b6cfd6feafdaea92b06.sbraz@gentoo
1 commit: d505d8b5b307939c2af13b6cfd6feafdaea92b06
2 Author: Louis Sautier <sbraz <AT> gentoo <DOT> org>
3 AuthorDate: Wed Sep 30 22:49:28 2020 +0000
4 Commit: Louis Sautier <sbraz <AT> gentoo <DOT> org>
5 CommitDate: Wed Sep 30 22:50:38 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d505d8b5
7
8 dev-python/incremental: fix DISTUTILS_USE_SETUPTOOLS
9
10 Closes: https://bugs.gentoo.org/745636
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/incremental/incremental-17.5.0.ebuild | 7 +++++--
15 1 file changed, 5 insertions(+), 2 deletions(-)
16
17 diff --git a/dev-python/incremental/incremental-17.5.0.ebuild b/dev-python/incremental/incremental-17.5.0.ebuild
18 index ca490e4d58e..f3d37dbbc21 100644
19 --- a/dev-python/incremental/incremental-17.5.0.ebuild
20 +++ b/dev-python/incremental/incremental-17.5.0.ebuild
21 @@ -3,7 +3,9 @@
22
23 EAPI=7
24 PYTHON_COMPAT=( python3_{6..9} )
25 -DISTUTILS_USE_SETUPTOOLS=rdepend
26 +# TODO: revert to rdepend once this has been merged:
27 +# https://github.com/twisted/incremental/pull/59
28 +DISTUTILS_USE_SETUPTOOLS=manual
29
30 inherit distutils-r1
31
32 @@ -16,4 +18,5 @@ SLOT="0"
33 KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv s390 sparc x86 ~amd64-linux ~x86-linux"
34 IUSE=""
35
36 -#S=${WORKDIR}/${P}
37 +RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
38 +BDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"