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 181CB15838C for ; Sat, 27 Jan 2024 06:44:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3A4E0E29A5; Sat, 27 Jan 2024 06:44:11 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 15E23E29A5 for ; Sat, 27 Jan 2024 06:44:11 +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 15F7034307F for ; Sat, 27 Jan 2024 06:44:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 56CB3FA7 for ; Sat, 27 Jan 2024 06:44:08 +0000 (UTC) From: "Patrick Lauer" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrick Lauer" Message-ID: <1706337843.a038d16dc6b4f803050ca5dbb2727709a67d8837.patrick@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/liborcus/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/liborcus/liborcus-0.19.2.ebuild X-VCS-Directories: dev-libs/liborcus/ X-VCS-Committer: patrick X-VCS-Committer-Name: Patrick Lauer X-VCS-Revision: a038d16dc6b4f803050ca5dbb2727709a67d8837 X-VCS-Branch: master Date: Sat, 27 Jan 2024 06:44:08 +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: a49689e8-4c1e-43a3-b4e6-66ecd1c1a436 X-Archives-Hash: 5a9c5d693732070ead6a04e7f9dd2c4a commit: a038d16dc6b4f803050ca5dbb2727709a67d8837 Author: Patrick Lauer gentoo org> AuthorDate: Sat Jan 27 06:43:06 2024 +0000 Commit: Patrick Lauer gentoo org> CommitDate: Sat Jan 27 06:44:03 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a038d16d dev-libs/liborcus: Fix python handling only call python_optimize if python useflag set Closes: https://bugs.gentoo.org/922983 Signed-off-by: Patrick Lauer gentoo.org> dev-libs/liborcus/liborcus-0.19.2.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-libs/liborcus/liborcus-0.19.2.ebuild b/dev-libs/liborcus/liborcus-0.19.2.ebuild index b714913999b7..cc256f36d078 100644 --- a/dev-libs/liborcus/liborcus-0.19.2.ebuild +++ b/dev-libs/liborcus/liborcus-0.19.2.ebuild @@ -57,6 +57,6 @@ src_configure() { src_install() { default - python_optimize + use python && python_optimize find "${D}" -name '*.la' -type f -delete || die }