From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 924A0158095 for ; Fri, 5 Aug 2022 07:21:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A79D3E0DEA; Fri, 5 Aug 2022 07:21:17 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 88F39E0DEA for ; Fri, 5 Aug 2022 07:21:17 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 544283411F1 for ; Fri, 5 Aug 2022 07:21:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7AAD5562 for ; Fri, 5 Aug 2022 07:21:14 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1659684069.fb699dd05302e96d703011e4d6e2f8ba84cc9260.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/oslo-utils/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/oslo-utils/oslo-utils-6.0.0-r1.ebuild dev-python/oslo-utils/oslo-utils-6.0.0.ebuild X-VCS-Directories: dev-python/oslo-utils/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: fb699dd05302e96d703011e4d6e2f8ba84cc9260 X-VCS-Branch: master Date: Fri, 5 Aug 2022 07:21:14 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: f8848232-c593-4643-a53d-0ae8a71db8c5 X-Archives-Hash: 2c44d7481ecbb1e07077038bf8dff6cd commit: fb699dd05302e96d703011e4d6e2f8ba84cc9260 Author: Michał Górny gentoo org> AuthorDate: Fri Aug 5 07:12:07 2022 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Aug 5 07:21:09 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb699dd0 dev-python/oslo-utils: Fix installing stray .pyc files Closes: https://bugs.gentoo.org/863707 Signed-off-by: Michał Górny gentoo.org> .../oslo-utils/{oslo-utils-6.0.0.ebuild => oslo-utils-6.0.0-r1.ebuild} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 similarity index 95% rename from dev-python/oslo-utils/oslo-utils-6.0.0.ebuild rename to dev-python/oslo-utils/oslo-utils-6.0.0-r1.ebuild index c5ae6d386410..1baf242759e5 100644 --- a/dev-python/oslo-utils/oslo-utils-6.0.0.ebuild +++ b/dev-python/oslo-utils/oslo-utils-6.0.0-r1.ebuild @@ -54,7 +54,7 @@ src_prepare() { python_compile() { distutils-r1_python_compile if ! has "${EPYTHON}" python3.{8..9}; then - find "${BUILD_DIR}"/install -name '*eventletutils*.py' -delete || die + find "${BUILD_DIR}"/install -name '*eventletutils*' -delete || die fi }