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/python-distutils-extra/
Date: Sun, 05 Jun 2022 14:11:53
Message-Id: 1654438305.7407f018fe7b883c0bedd34416e8eb8d07a3a8c9.mgorny@gentoo
1 commit: 7407f018fe7b883c0bedd34416e8eb8d07a3a8c9
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 5 14:09:30 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Jun 5 14:11:45 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7407f018
7
8 dev-python/python-distutils-extra: Use PEP517 build
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/python-distutils-extra/python-distutils-extra-2.46.ebuild | 2 ++
13 1 file changed, 2 insertions(+)
14
15 diff --git a/dev-python/python-distutils-extra/python-distutils-extra-2.46.ebuild b/dev-python/python-distutils-extra/python-distutils-extra-2.46.ebuild
16 index 5e898d180bee..d00792e6360e 100644
17 --- a/dev-python/python-distutils-extra/python-distutils-extra-2.46.ebuild
18 +++ b/dev-python/python-distutils-extra/python-distutils-extra-2.46.ebuild
19 @@ -3,6 +3,7 @@
20
21 EAPI=8
22
23 +DISTUTILS_USE_PEP517=setuptools
24 PYTHON_COMPAT=( python3_{8..11} )
25
26 inherit distutils-r1
27 @@ -34,5 +35,6 @@ BDEPEND="
28 "
29
30 python_test() {
31 + local -x SETUPTOOLS_USE_DISTUTILS=stdlib
32 "${EPYTHON}" test/auto.py -v || die "Tests fail with ${EPYTHON}"
33 }