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/oslo-utils/
Date: Fri, 05 Aug 2022 07:21:18
Message-Id: 1659684069.fb699dd05302e96d703011e4d6e2f8ba84cc9260.mgorny@gentoo
1 commit: fb699dd05302e96d703011e4d6e2f8ba84cc9260
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Aug 5 07:12:07 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Aug 5 07:21:09 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb699dd0
7
8 dev-python/oslo-utils: Fix installing stray .pyc files
9
10 Closes: https://bugs.gentoo.org/863707
11 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
12
13 .../oslo-utils/{oslo-utils-6.0.0.ebuild => oslo-utils-6.0.0-r1.ebuild} | 2 +-
14 1 file changed, 1 insertion(+), 1 deletion(-)
15
16 diff --git a/dev-python/oslo-utils/oslo-utils-6.0.0.ebuild b/dev-python/oslo-utils/oslo-utils-6.0.0-r1.ebuild
17 similarity index 95%
18 rename from dev-python/oslo-utils/oslo-utils-6.0.0.ebuild
19 rename to dev-python/oslo-utils/oslo-utils-6.0.0-r1.ebuild
20 index c5ae6d386410..1baf242759e5 100644
21 --- a/dev-python/oslo-utils/oslo-utils-6.0.0.ebuild
22 +++ b/dev-python/oslo-utils/oslo-utils-6.0.0-r1.ebuild
23 @@ -54,7 +54,7 @@ src_prepare() {
24 python_compile() {
25 distutils-r1_python_compile
26 if ! has "${EPYTHON}" python3.{8..9}; then
27 - find "${BUILD_DIR}"/install -name '*eventletutils*.py' -delete || die
28 + find "${BUILD_DIR}"/install -name '*eventletutils*' -delete || die
29 fi
30 }