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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9672F1382C5 for ; Wed, 26 May 2021 21:34:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C537DE1572; Wed, 26 May 2021 21:34:34 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 95C62E1572 for ; Wed, 26 May 2021 21:34:34 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E8B0E335D50 for ; Wed, 26 May 2021 21:34:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 534CB632 for ; Wed, 26 May 2021 21:34:31 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1622064848.6e05442dbe60ebdf719d777612dd3768bbb3cac3.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-vpn/tor/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-vpn/tor/tor-0.4.4.8.ebuild net-vpn/tor/tor-0.4.5.7.ebuild net-vpn/tor/tor-0.4.6.3_rc.ebuild X-VCS-Directories: net-vpn/tor/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 6e05442dbe60ebdf719d777612dd3768bbb3cac3 X-VCS-Branch: master Date: Wed, 26 May 2021 21:34:31 +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: 676df003-48ca-43fd-a3fc-aa9b3fd17db2 X-Archives-Hash: e0cc0a9010106333f3c66980b0da3aad commit: 6e05442dbe60ebdf719d777612dd3768bbb3cac3 Author: Sam James gentoo org> AuthorDate: Wed May 26 21:34:08 2021 +0000 Commit: David Seifert gentoo org> CommitDate: Wed May 26 21:34:08 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e05442d net-vpn/tor: drop keywords for non-release versions Tor is critical software and using alphas/betas/rcs in production doesn't seem advisable. Add a template to avoid setting keywords in such versions. Signed-off-by: Sam James gentoo.org> Signed-off-by: David Seifert gentoo.org> net-vpn/tor/tor-0.4.4.8.ebuild | 4 +++- net-vpn/tor/tor-0.4.5.7.ebuild | 4 +++- net-vpn/tor/tor-0.4.6.3_rc.ebuild | 4 +++- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/net-vpn/tor/tor-0.4.4.8.ebuild b/net-vpn/tor/tor-0.4.4.8.ebuild index 6a411102af4..5d70eb67e26 100644 --- a/net-vpn/tor/tor-0.4.4.8.ebuild +++ b/net-vpn/tor/tor-0.4.4.8.ebuild @@ -16,7 +16,9 @@ S="${WORKDIR}/${MY_PF}" LICENSE="BSD GPL-2" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~x86 ~ppc-macos" +if [[ ${PV} != *_alpha* && ${PV} != *_beta* && ${PV} != *_rc* ]]; then + KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~x86 ~ppc-macos" +fi IUSE="caps doc lzma +man scrypt seccomp selinux +server systemd tor-hardening test zstd" VERIFY_SIG_OPENPGP_KEY_PATH=${BROOT}/usr/share/openpgp-keys/torproject.org.asc diff --git a/net-vpn/tor/tor-0.4.5.7.ebuild b/net-vpn/tor/tor-0.4.5.7.ebuild index 5616d54e5b3..afb37f6b7f7 100644 --- a/net-vpn/tor/tor-0.4.5.7.ebuild +++ b/net-vpn/tor/tor-0.4.5.7.ebuild @@ -16,7 +16,9 @@ S="${WORKDIR}/${MY_PF}" LICENSE="BSD GPL-2" SLOT="0" -KEYWORDS="amd64 arm arm64 ~mips ppc ppc64 x86 ~ppc-macos" +if [[ ${PV} != *_alpha* && ${PV} != *_beta* && ${PV} != *_rc* ]]; then + KEYWORDS="amd64 arm arm64 ~mips ppc ppc64 x86 ~ppc-macos" +fi IUSE="caps doc lzma +man scrypt seccomp selinux +server systemd tor-hardening test zstd" VERIFY_SIG_OPENPGP_KEY_PATH=${BROOT}/usr/share/openpgp-keys/torproject.org.asc diff --git a/net-vpn/tor/tor-0.4.6.3_rc.ebuild b/net-vpn/tor/tor-0.4.6.3_rc.ebuild index b44a8e126c1..50db834736f 100644 --- a/net-vpn/tor/tor-0.4.6.3_rc.ebuild +++ b/net-vpn/tor/tor-0.4.6.3_rc.ebuild @@ -16,7 +16,9 @@ S="${WORKDIR}/${MY_PF}" LICENSE="BSD GPL-2" SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~x86 ~ppc-macos" +if [[ ${PV} != *_alpha* && ${PV} != *_beta* && ${PV} != *_rc* ]]; then + KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~x86 ~ppc-macos" +fi IUSE="caps doc lzma +man scrypt seccomp selinux +server systemd tor-hardening test zstd" VERIFY_SIG_OPENPGP_KEY_PATH=${BROOT}/usr/share/openpgp-keys/torproject.org.asc