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 2D9401382C5 for ; Thu, 21 May 2020 17:34:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 400C9E0936; Thu, 21 May 2020 17:34:42 +0000 (UTC) Received: from rs234.mailgun.us (rs234.mailgun.us [209.61.151.234]) (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 1D3A8E0936 for ; Thu, 21 May 2020 17:34:41 +0000 (UTC) DKIM-Signature: a=rsa-sha256; v=1; c=relaxed/relaxed; d=0xdc.io; q=dns/txt; s=smtp; t=1590082481; h=Content-Transfer-Encoding: MIME-Version: References: In-Reply-To: Message-Id: Date: Subject: To: From: Sender; bh=lOQP5vaId7+eA1iIr6nKL93cx0759AbFvaRFYTOOaYU=; b=Rx+/SoeHwpWR0o3D70Vl2xB4VSe99el7+qBeQrqJuL9zseT7IIXky+zqVtDvgliYtp1qxFbq JX5h+O3hA5uOoPK664A1ghvdrckAyXVi3SBHEQXAFFX9d+j487YMldIYbueF5byrlNByQ2dS QomjzwzmqLMWoTRIxq9Jci1lSF4= X-Mailgun-Sending-Ip: 209.61.151.234 X-Mailgun-Sid: WyJiZmIxMyIsICJnZW50b28tY2F0YWx5c3RAbGlzdHMuZ2VudG9vLm9yZyIsICJmNjc0NGUiXQ== Received: from mail.0xdc.io (ip-54-37-0.eu [54.37.0.172]) by smtp-out-n05.prod.us-west-2.postgun.com with SMTP id 5ec6bbb1c60c306cc80977f0 (version=TLS1.3, cipher=TLS_AES_128_GCM_SHA256); Thu, 21 May 2020 17:34:41 GMT Sender: gentoo.catalyst=xxoo.ws@0xdc.io Received: from dysnomia (3.f.9.0.f.7.d.0.1.a.c.c.2.5.c.c.0.a.4.7.9.0.c.0.0.b.8.0.1.0.0.2.ip6.arpa [IPv6:2001:8b0:c09:74a0:cc52:cca1:d7f:9f3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-256) server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mail.0xdc.io (Postfix) with ESMTPSA id 15D0D102DE9 for ; Thu, 21 May 2020 17:40:19 +0000 (UTC) From: Daniel Cordero To: gentoo-catalyst@lists.gentoo.org Subject: [gentoo-catalyst] [PATCH 2/5] stagebase: allow specfiles to define install_mask Date: Thu, 21 May 2020 17:32:45 +0000 Message-Id: <20200521173248.2297765-2-gentoo.catalyst@xxoo.ws> X-Mailer: git-send-email 2.26.2 In-Reply-To: <20200521173248.2297765-1-gentoo.catalyst@xxoo.ws> References: <20200521173248.2297765-1-gentoo.catalyst@xxoo.ws> Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-catalyst@lists.gentoo.org Reply-to: gentoo-catalyst@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Archives-Salt: fbcf2399-4b99-4118-92b4-57c1c1fc3462 X-Archives-Hash: 0d11afc6b8ad67925814d534b52f954f From: Daniel Cordero There is some code that uses this option - set_install_mask() - but it was not added to the list of valid specfile options. The only mention of use is in the embedded target, but it may also be useful for other stages. --- install_mask allows the use of wildcard glob patterns, where */rm doesn't. catalyst/base/stagebase.py | 1 + 1 file changed, 1 insertion(+) diff --git a/catalyst/base/stagebase.py b/catalyst/base/stagebase.py index 651bf4e4..3e8f074e 100644 --- a/catalyst/base/stagebase.py +++ b/catalyst/base/stagebase.py @@ -54,6 +54,7 @@ class StageBase(TargetBase, ClearBase, GenBase): "fcflags", "fflags", "hostuse", + "install_mask", "kerncache_path", "ldflags", "makeopts", -- 2.26.2