Gentoo Archives: gentoo-catalyst

From: Daniel Cordero <gentoo.catalyst@××××.ws>
To: gentoo-catalyst@l.g.o
Subject: [gentoo-catalyst] [PATCH 2/5] stagebase: allow specfiles to define install_mask
Date: Thu, 21 May 2020 17:34:43
Message-Id: 20200521173248.2297765-2-gentoo.catalyst@xxoo.ws
In Reply to: [gentoo-catalyst] [PATCH 1/5] embedded: remove actions that are broken by default by Daniel Cordero
1 From: Daniel Cordero <catalyst@××××.io>
2
3 There is some code that uses this option - set_install_mask() - but it was not
4 added to the list of valid specfile options.
5
6 The only mention of use is in the embedded target, but it may also be useful
7 for other stages.
8 ---
9 install_mask allows the use of wildcard glob patterns, where */rm
10 doesn't.
11
12 catalyst/base/stagebase.py | 1 +
13 1 file changed, 1 insertion(+)
14
15 diff --git a/catalyst/base/stagebase.py b/catalyst/base/stagebase.py
16 index 651bf4e4..3e8f074e 100644
17 --- a/catalyst/base/stagebase.py
18 +++ b/catalyst/base/stagebase.py
19 @@ -54,6 +54,7 @@ class StageBase(TargetBase, ClearBase, GenBase):
20 "fcflags",
21 "fflags",
22 "hostuse",
23 + "install_mask",
24 "kerncache_path",
25 "ldflags",
26 "makeopts",
27 --
28 2.26.2

Replies