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 7541C15838C for ; Sun, 28 Jan 2024 16:28:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A6C4AE29B2; Sun, 28 Jan 2024 16:28:43 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8A07BE29B2 for ; Sun, 28 Jan 2024 16:28:43 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9A740343460 for ; Sun, 28 Jan 2024 16:28:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D727C12C8 for ; Sun, 28 Jan 2024 16:28:40 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1706459293.14e3511df17f879bf128bdce3d6c990264345443.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/liborcus/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/liborcus/liborcus-9999.ebuild X-VCS-Directories: dev-libs/liborcus/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 14e3511df17f879bf128bdce3d6c990264345443 X-VCS-Branch: master Date: Sun, 28 Jan 2024 16:28:40 +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: 4831b1c6-048e-49b9-b2d5-f64553e4a3f8 X-Archives-Hash: de4fab33cd3616756791d8e7eccb8991 commit: 14e3511df17f879bf128bdce3d6c990264345443 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Jan 28 10:21:17 2024 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Jan 28 16:28:13 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14e3511d dev-libs/liborcus: Fix build w/o python Amends a038d16dc6b4f803050ca5dbb2727709a67d8837 Closes: https://bugs.gentoo.org/922983 Signed-off-by: Andreas Sturmlechner gentoo.org> dev-libs/liborcus/liborcus-9999.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-libs/liborcus/liborcus-9999.ebuild b/dev-libs/liborcus/liborcus-9999.ebuild index 2e109680a08b..3aecf4036ad7 100644 --- a/dev-libs/liborcus/liborcus-9999.ebuild +++ b/dev-libs/liborcus/liborcus-9999.ebuild @@ -58,6 +58,6 @@ src_configure() { src_install() { default - python_optimize + use python && python_optimize find "${D}" -name '*.la' -type f -delete || die }