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 3130315852A for ; Wed, 21 Aug 2024 03:49:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5C2A82BC014; Wed, 21 Aug 2024 03:49:13 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 E4CBC2BC014 for ; Wed, 21 Aug 2024 03:49:12 +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 06B8A340BE2 for ; Wed, 21 Aug 2024 03:49:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 697441EE6 for ; Wed, 21 Aug 2024 03:49:10 +0000 (UTC) From: "Eli Schwartz" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Eli Schwartz" Message-ID: <1724212114.8c7941ef6d72ebd63de340dfa1ec3f57c23b9b8d.eschwartz@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/benchmark/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-cpp/benchmark/benchmark-1.9.0.ebuild X-VCS-Directories: dev-cpp/benchmark/ X-VCS-Committer: eschwartz X-VCS-Committer-Name: Eli Schwartz X-VCS-Revision: 8c7941ef6d72ebd63de340dfa1ec3f57c23b9b8d X-VCS-Branch: master Date: Wed, 21 Aug 2024 03:49:10 +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: aab90ab8-5034-4b91-b5d9-f623a1de59cf X-Archives-Hash: a2ee0f4daccd4330978502708e073ade commit: 8c7941ef6d72ebd63de340dfa1ec3f57c23b9b8d Author: Eli Schwartz gentoo org> AuthorDate: Wed Aug 21 03:48:34 2024 +0000 Commit: Eli Schwartz gentoo org> CommitDate: Wed Aug 21 03:48:34 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c7941ef dev-cpp/benchmark: do not require any PYTHON_SINGLE_TARGET without tools We only perform the python-single-r1 dance when `use tools`, and similarly in RDEPEND via USE-conditional dependencies. But REQUIRED_USE was unconditionally done, when it too should have been guarded by the USE flag. Present since the initial implementation of python tool support. Fixes: 6f8ef24af37e572d317fac58ea8eabab64a3f3a8 Bug: https://bugs.gentoo.org/938237 Signed-off-by: Eli Schwartz gentoo.org> dev-cpp/benchmark/benchmark-1.9.0.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-cpp/benchmark/benchmark-1.9.0.ebuild b/dev-cpp/benchmark/benchmark-1.9.0.ebuild index ce4ceb735412..46af0a1dbe0f 100644 --- a/dev-cpp/benchmark/benchmark-1.9.0.ebuild +++ b/dev-cpp/benchmark/benchmark-1.9.0.ebuild @@ -15,7 +15,7 @@ SLOT="0/$(ver_cut 1)" KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~x86" IUSE="doc +exceptions libcxx libpfm lto test +tools" RESTRICT="!test? ( test )" -REQUIRED_USE="${PYTHON_REQUIRED_USE}" +REQUIRED_USE="tools? ( ${PYTHON_REQUIRED_USE} )" DEPEND=" libcxx? ( sys-libs/libcxx[${MULTILIB_USEDEP}] )