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 2F199158099 for ; Wed, 29 Nov 2023 04:10:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4E3422BC0DB; Wed, 29 Nov 2023 04:10: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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 374C12BC0DA for ; Wed, 29 Nov 2023 04:10: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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E0C39335D16 for ; Wed, 29 Nov 2023 04:10:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6FB41140C for ; Wed, 29 Nov 2023 04:10:12 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1701230940.02f8a1e85e899ded8c1b150232eb780a3adb49ae.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-accessibility/brltty/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-accessibility/brltty/brltty-6.6-r1.ebuild app-accessibility/brltty/brltty-6.6.ebuild X-VCS-Directories: app-accessibility/brltty/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 02f8a1e85e899ded8c1b150232eb780a3adb49ae X-VCS-Branch: master Date: Wed, 29 Nov 2023 04:10:12 +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: 652fd63b-a99c-42ef-a986-c2a8d7e7574f X-Archives-Hash: 4e3a6dac0c01fceb1ec33868dafd81ec commit: 02f8a1e85e899ded8c1b150232eb780a3adb49ae Author: Eli Schwartz gmail com> AuthorDate: Tue Nov 28 19:07:58 2023 +0000 Commit: Sam James gentoo org> CommitDate: Wed Nov 29 04:09:00 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02f8a1e8 app-accessibility/brltty: fix building python bindings too many times Although --disable-python-bindings was used in the main build, to defer building them for the python_foreach, the original use_enable was never removed. So the python bindings if enabled at all, would always build twice or more: once for python3, and once for each USE-enabled impl. The python3 version might not actually work due to dependencies, so the build might fail. If it did work by *coincidence*, it would be for whatever the default python-exec is, which may not be what is in PYTHON_TARGETS. Bug: https://bugs.gentoo.org/905695 Signed-off-by: Eli Schwartz gmail.com> Signed-off-by: Sam James gentoo.org> app-accessibility/brltty/{brltty-6.6.ebuild => brltty-6.6-r1.ebuild} | 1 - 1 file changed, 1 deletion(-) diff --git a/app-accessibility/brltty/brltty-6.6.ebuild b/app-accessibility/brltty/brltty-6.6-r1.ebuild similarity index 99% rename from app-accessibility/brltty/brltty-6.6.ebuild rename to app-accessibility/brltty/brltty-6.6-r1.ebuild index 87ccfd5baaa9..0588c791af36 100644 --- a/app-accessibility/brltty/brltty-6.6.ebuild +++ b/app-accessibility/brltty/brltty-6.6-r1.ebuild @@ -135,7 +135,6 @@ src_configure() { $(use_enable ocaml ocaml-bindings) $(use_with pcm pcm-package) $(use_enable policykit polkit) - $(use_enable python python-bindings) $(use_enable speech speech-support) $(use_with systemd service-package) $(use_enable tcl tcl-bindings)