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 86C3513835B for ; Wed, 14 Apr 2021 23:11:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4D50BE08BB; Wed, 14 Apr 2021 23:11:28 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 353F5E08BB for ; Wed, 14 Apr 2021 23:11:28 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 A48EB335D16 for ; Wed, 14 Apr 2021 23:11:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 119B54D2 for ; Wed, 14 Apr 2021 23:11:25 +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: <1618441872.35473874c90716ecbbf077bc5a49f470a8298e9c.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/zfs/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/zfs/zfs-9999.ebuild X-VCS-Directories: sys-fs/zfs/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 35473874c90716ecbbf077bc5a49f470a8298e9c X-VCS-Branch: master Date: Wed, 14 Apr 2021 23:11:25 +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: 84db8f12-8e0b-4323-9c4b-554f403572c5 X-Archives-Hash: 4441e745fe69188ab3faeb1463b204e6 commit: 35473874c90716ecbbf077bc5a49f470a8298e9c Author: Sam James gentoo org> AuthorDate: Fri Apr 2 14:41:59 2021 +0000 Commit: Sam James gentoo org> CommitDate: Wed Apr 14 23:11:12 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35473874 sys-fs/zfs: adapt template to blank keywords for RCs Signed-off-by: Sam James gentoo.org> sys-fs/zfs/zfs-9999.ebuild | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/sys-fs/zfs/zfs-9999.ebuild b/sys-fs/zfs/zfs-9999.ebuild index 7aeab7806af..4a357cfbe49 100644 --- a/sys-fs/zfs/zfs-9999.ebuild +++ b/sys-fs/zfs/zfs-9999.ebuild @@ -17,8 +17,11 @@ if [[ ${PV} == "9999" ]] ; then else MY_P="${P/_rc/-rc}" SRC_URI="https://github.com/openzfs/${PN}/releases/download/${MY_P}/${MY_P}.tar.gz" - KEYWORDS="~amd64 ~arm64 ~ppc64" S="${WORKDIR}/${P%_rc?}" + + if [[ ${PV} != *_rc* ]] ; then + KEYWORDS="~amd64 ~arm64 ~ppc64" + fi fi LICENSE="BSD-2 CDDL MIT"