Gentoo Archives: gentoo-commits

From: "Jorge Manuel B. S. Vicetto" <jmbsvicetto@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/catalyst:master commit in: modules/
Date: Thu, 22 Nov 2012 02:51:22
Message-Id: 1353552571.1f604c892da5e0d382976900f16b5f6a5fd51025.jmbsvicetto@gentoo
1 commit: 1f604c892da5e0d382976900f16b5f6a5fd51025
2 Author: Jorge Manuel B. S. Vicetto (jmbsvicetto) <jmbsvicetto <AT> gentoo <DOT> org>
3 AuthorDate: Wed Nov 21 01:08:28 2012 +0000
4 Commit: Jorge Manuel B. S. Vicetto <jmbsvicetto <AT> gentoo <DOT> org>
5 CommitDate: Thu Nov 22 02:49:31 2012 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/catalyst.git;a=commit;h=1f604c89
7
8 Clean-up the dirs we remove on stage1 target (stop cleaning old non-existant python dirs).
9
10 ---
11 modules/stage1_target.py | 7 +------
12 1 files changed, 1 insertions(+), 6 deletions(-)
13
14 diff --git a/modules/stage1_target.py b/modules/stage1_target.py
15 index 0a93c88..9f0bff4 100644
16 --- a/modules/stage1_target.py
17 +++ b/modules/stage1_target.py
18 @@ -29,12 +29,7 @@ class stage1_target(generic_stage_target):
19 def set_cleanables(self):
20 generic_stage_target.set_cleanables(self)
21 self.settings["cleanables"].extend([\
22 - "/usr/lib/python2.2/test", "/usr/lib/python2.2/email",\
23 - "/usr/lib/python2.2/lib-tk", "/usr/lib/python2.3/test",\
24 - "/usr/lib/python2.3/email", "/usr/lib/python2.3/lib-tk",\
25 - "/usr/lib/python2.4/test", "/usr/lib/python2.4/email",\
26 - "/usr/lib/python2.4/lib-tk", "/usr/share/zoneinfo",\
27 - "/etc/portage/*"])
28 + "/usr/share/zoneinfo", "/etc/portage/package*"])
29
30 # XXX: How do these override_foo() functions differ from the ones in generic_stage_target and why aren't they in stage3_target?