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: eclass/
Date: Tue, 07 Jun 2022 06:55:04
Message-Id: 1654584836.4ef135a4cad2ba5b3b15c46c5dda8a9518350153.mgorny@gentoo
1 commit: 4ef135a4cad2ba5b3b15c46c5dda8a9518350153
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jun 3 11:25:36 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Jun 7 06:53:56 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ef135a4
7
8 distutils-r1.eclass: Add "_trial_temp" to forbidden package names
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 eclass/distutils-r1.eclass | 2 +-
13 1 file changed, 1 insertion(+), 1 deletion(-)
14
15 diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass
16 index 9536e5c466be..db5cced50952 100644
17 --- a/eclass/distutils-r1.eclass
18 +++ b/eclass/distutils-r1.eclass
19 @@ -1884,7 +1884,7 @@ _distutils-r1_post_python_install() {
20
21 local forbidden_package_names=(
22 examples test tests
23 - .pytest_cache .hypothesis
24 + .pytest_cache .hypothesis _trial_temp
25 )
26 local p
27 for p in "${forbidden_package_names[@]}"; do