Gentoo Archives: gentoo-catalyst

From: Matt Turner <mattst88@g.o>
To: gentoo-catalyst@l.g.o
Cc: Matt Turner <mattst88@g.o>
Subject: [gentoo-catalyst] [PATCH 5/5] catalyst: Don't delete /usr/share/zoneinfo from stage1
Date: Fri, 23 Oct 2020 04:50:31
Message-Id: 20201023045018.567245-5-mattst88@gentoo.org
In Reply to: [gentoo-catalyst] [PATCH 1/5] catalyst: Fix indentation by Matt Turner
1 I have no clue why we would want to (or even bother) delete the
2 timezone data out of stage1. It's been this way since the initial
3 catalyst 2.0 import.
4
5 Signed-off-by: Matt Turner <mattst88@g.o>
6 ---
7 catalyst/targets/stage1.py | 3 ++-
8 1 file changed, 2 insertions(+), 1 deletion(-)
9
10 diff --git a/catalyst/targets/stage1.py b/catalyst/targets/stage1.py
11 index 93c62877..2c09a41f 100644
12 --- a/catalyst/targets/stage1.py
13 +++ b/catalyst/targets/stage1.py
14 @@ -36,7 +36,8 @@ class stage1(StageBase):
15 def set_cleanables(self):
16 StageBase.set_cleanables(self)
17 self.settings["cleanables"].extend([
18 - "/usr/share/zoneinfo", self.settings["port_conf"] + "/package*"])
19 + self.settings["port_conf"] + "/package*",
20 + ])
21
22 # XXX: How do these override_foo() functions differ from the ones in StageBase and why aren't they in stage3_target?
23 # XXY: It appears the difference is that these functions are actually doing something and the ones in stagebase don't :-(
24 --
25 2.26.2