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 03798158089 for ; Sun, 10 Sep 2023 14:01:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 379352BC017; Sun, 10 Sep 2023 14:01:58 +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 168CD2BC017 for ; Sun, 10 Sep 2023 14:01:58 +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 35811335C87 for ; Sun, 10 Sep 2023 14:01:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 99D8410DC for ; Sun, 10 Sep 2023 14:01:55 +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: <1694354505.3cbfe9b770bd6e700b1549ef678ddf817d621ac9.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/rubberband/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/rubberband/rubberband-3.3.0-r1.ebuild media-libs/rubberband/rubberband-3.3.0.ebuild X-VCS-Directories: media-libs/rubberband/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 3cbfe9b770bd6e700b1549ef678ddf817d621ac9 X-VCS-Branch: master Date: Sun, 10 Sep 2023 14:01:55 +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: a8a1f202-3bc1-4b9c-ba50-bf73ba022253 X-Archives-Hash: 233cc59b0e3ec746ec68e29c01ed057b commit: 3cbfe9b770bd6e700b1549ef678ddf817d621ac9 Author: Violet Purcell inventati org> AuthorDate: Thu Jul 27 20:47:54 2023 +0000 Commit: Sam James gentoo org> CommitDate: Sun Sep 10 14:01:45 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3cbfe9b7 media-libs/rubberband: Restrict GCC dependency to ppc The gcc RDEPEND is presumably due to the ebuild linking against libatomic. However, this is conditioned behind either ppc or libstdc++, which the latter would imply that GCC is already installed. This needlessly pulls in GCC on musl/llvm systems, and making the gcc dependency ppc-only shouldn't cause any breakage. Signed-off-by: Violet Purcell inventati.org> Closes: https://github.com/gentoo/gentoo/pull/32073 Signed-off-by: Sam James gentoo.org> .../rubberband/{rubberband-3.3.0.ebuild => rubberband-3.3.0-r1.ebuild} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media-libs/rubberband/rubberband-3.3.0.ebuild b/media-libs/rubberband/rubberband-3.3.0-r1.ebuild similarity index 98% rename from media-libs/rubberband/rubberband-3.3.0.ebuild rename to media-libs/rubberband/rubberband-3.3.0-r1.ebuild index f6f3a392c27f..9aa199e409de 100644 --- a/media-libs/rubberband/rubberband-3.3.0.ebuild +++ b/media-libs/rubberband/rubberband-3.3.0-r1.ebuild @@ -28,7 +28,7 @@ CDEPEND=" " RDEPEND=" ${CDEPEND} - sys-devel/gcc:* + ppc? ( sys-devel/gcc:* ) " DEPEND="${CDEPEND}" BDEPEND="test? ( dev-libs/boost[${MULTILIB_USEDEP}] )"