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: Fri, 08 May 2020 17:55:00
Message-Id: 1588960414.a7ddbdc24003997a764679ae2ae8cccbe40e57a1.mgorny@gentoo
1 commit: a7ddbdc24003997a764679ae2ae8cccbe40e57a1
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 8 17:53:34 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri May 8 17:53:34 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7ddbdc2
7
8 dev-python/python-distutils-extra: Fix test failure due to LINGUAS
9
10 Closes: https://bugs.gentoo.org/720080
11 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
12
13 dev-python/python-distutils-extra/python-distutils-extra-2.44-r1.ebuild | 2 +-
14 1 file changed, 1 insertion(+), 1 deletion(-)
15
16 diff --git a/dev-python/python-distutils-extra/python-distutils-extra-2.44-r1.ebuild b/dev-python/python-distutils-extra/python-distutils-extra-2.44-r1.ebuild
17 index 6d3706eae81..7780eccb55e 100644
18 --- a/dev-python/python-distutils-extra/python-distutils-extra-2.44-r1.ebuild
19 +++ b/dev-python/python-distutils-extra/python-distutils-extra-2.44-r1.ebuild
20 @@ -37,6 +37,6 @@ PATCHES=(
21 )
22
23 python_test() {
24 - unset PYTHONDONTWRITEBYTECODE
25 + unset LINGUAS PYTHONDONTWRITEBYTECODE
26 "${EPYTHON}" test/auto.py -v || die "Tests fail with ${EPYTHON}"
27 }