From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1608212-garchives=archives.gentoo.org@lists.gentoo.org> 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 C71CF158041 for <garchives@archives.gentoo.org>; Thu, 7 Mar 2024 15:19:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8DB01E29BC; Thu, 7 Mar 2024 15:19:05 +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 6E0F5E29C0 for <gentoo-commits@lists.gentoo.org>; Thu, 7 Mar 2024 15:19:05 +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 338D9343069 for <gentoo-commits@lists.gentoo.org>; Thu, 7 Mar 2024 15:19:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8389014E8 for <gentoo-commits@lists.gentoo.org>; Thu, 7 Mar 2024 15:19:02 +0000 (UTC) From: "Sam James" <sam@gentoo.org> 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" <sam@gentoo.org> Message-ID: <1709824700.3d6ca46320b6ace4d3157bc685d0e9436e73567f.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-p2p/bitcoin-core/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-p2p/bitcoin-core/bitcoin-core-25.2_rc1.ebuild net-p2p/bitcoin-core/bitcoin-core-26.1_rc1.ebuild X-VCS-Directories: net-p2p/bitcoin-core/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 3d6ca46320b6ace4d3157bc685d0e9436e73567f X-VCS-Branch: master Date: Thu, 7 Mar 2024 15:19:02 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 818792ba-2356-4279-9d9e-c06e45f3d65a X-Archives-Hash: 89beb3b9896f90f1a64fb94d79109c68 commit: 3d6ca46320b6ace4d3157bc685d0e9436e73567f Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Thu Mar 7 15:18:20 2024 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Thu Mar 7 15:18:20 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d6ca463 net-p2p/bitcoin-core: define KEYWORDS on one line Per PG0105 and MultipleKeywordsLines. Signed-off-by: Sam James <sam <AT> gentoo.org> net-p2p/bitcoin-core/bitcoin-core-25.2_rc1.ebuild | 4 +--- net-p2p/bitcoin-core/bitcoin-core-26.1_rc1.ebuild | 4 +--- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/net-p2p/bitcoin-core/bitcoin-core-25.2_rc1.ebuild b/net-p2p/bitcoin-core/bitcoin-core-25.2_rc1.ebuild index 7e4f5c62aec2..f0ad56e4ac05 100644 --- a/net-p2p/bitcoin-core/bitcoin-core-25.2_rc1.ebuild +++ b/net-p2p/bitcoin-core/bitcoin-core-25.2_rc1.ebuild @@ -14,9 +14,7 @@ S="${WORKDIR}/${PN/-core}-${PV/_rc/rc}" LICENSE="MIT" SLOT="0" -if [[ "${PV}" == *_rc* ]] ; then - KEYWORDS="" -else +if [[ "${PV}" != *_rc* ]] ; then KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux" fi # IUSE="+cli" doesn't work due to https://bugs.gentoo.org/831045#c3 diff --git a/net-p2p/bitcoin-core/bitcoin-core-26.1_rc1.ebuild b/net-p2p/bitcoin-core/bitcoin-core-26.1_rc1.ebuild index 10e917bd4b78..cf31b6360f4b 100644 --- a/net-p2p/bitcoin-core/bitcoin-core-26.1_rc1.ebuild +++ b/net-p2p/bitcoin-core/bitcoin-core-26.1_rc1.ebuild @@ -14,9 +14,7 @@ S="${WORKDIR}/${PN/-core}-${PV/_rc/rc}" LICENSE="MIT" SLOT="0" -if [[ "${PV}" == *_rc* ]] ; then - KEYWORDS="" -else +if [[ "${PV}" != *_rc* ]] ; then KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux" fi # IUSE="+cli" doesn't work due to https://bugs.gentoo.org/831045#c3