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 E5D5C138334 for ; Sun, 19 May 2019 01:14:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 01C04E0B34; Sun, 19 May 2019 01:14:18 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 DA280E0B34 for ; Sun, 19 May 2019 01:14:17 +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 63803344A75 for ; Sun, 19 May 2019 01:14:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EEDAB59E for ; Sun, 19 May 2019 01:14:13 +0000 (UTC) From: "Rick Farina" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Rick Farina" Message-ID: <1558228447.2dd5d909721bbab79d26ee4b0a43baeb2f171172.zerochaos@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-kernel/linux-firmware/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-kernel/linux-firmware/linux-firmware-20190514.ebuild X-VCS-Directories: sys-kernel/linux-firmware/ X-VCS-Committer: zerochaos X-VCS-Committer-Name: Rick Farina X-VCS-Revision: 2dd5d909721bbab79d26ee4b0a43baeb2f171172 X-VCS-Branch: master Date: Sun, 19 May 2019 01:14:13 +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: daf1769f-dd92-414c-a11a-4d49a64c9bb9 X-Archives-Hash: e4c6a43972accd5e7b0ffb4c60f25709 commit: 2dd5d909721bbab79d26ee4b0a43baeb2f171172 Author: Rick Farina gentoo org> AuthorDate: Sun May 19 01:14:07 2019 +0000 Commit: Rick Farina gentoo org> CommitDate: Sun May 19 01:14:07 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2dd5d909 sys-kernel/linux-firmware: fix use flag function readd keywords, unstable for this second Package-Manager: Portage-2.3.66, Repoman-2.3.12 Signed-off-by: Rick Farina gentoo.org> sys-kernel/linux-firmware/linux-firmware-20190514.ebuild | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/sys-kernel/linux-firmware/linux-firmware-20190514.ebuild b/sys-kernel/linux-firmware/linux-firmware-20190514.ebuild index 18251ae17ae..77de08a8303 100644 --- a/sys-kernel/linux-firmware/linux-firmware-20190514.ebuild +++ b/sys-kernel/linux-firmware/linux-firmware-20190514.ebuild @@ -11,7 +11,7 @@ if [[ ${PV} == 99999999* ]]; then else GIT_COMMIT="711d3297bac870af42088a467459a0634c1970ca" SRC_URI="https://git.kernel.org/cgit/linux/kernel/git/firmware/linux-firmware.git/snapshot/linux-firmware-${GIT_COMMIT}.tar.gz -> ${P}.tar.gz" - #KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" fi DESCRIPTION="Linux firmware files" @@ -25,7 +25,8 @@ LICENSE="GPL-2 GPL-2+ GPL-3 BSD MIT || ( MPL-1.1 GPL-2 ) SLOT="0" IUSE="+redistributable savedconfig unknown-license" RESTRICT="binchecks strip - redistributable? ( unknown-license? ( bindist ) )" + redistributable? ( bindist ) + unknown-license? ( bindist )" RDEPEND="!savedconfig? ( redistributable? ( @@ -240,7 +241,8 @@ src_prepare() { ewarn 'The "unknown-license" flag is set, while "-redistributable"' ewarn 'asks for free software only. Ignoring "unknown-license".' fi - elif use !unknown-license; then + fi + if use !unknown-license; then # remove files in the unknown_license blacklist rm "${unknown_license[@]}" || die fi