Gentoo Archives: gentoo-commits

From: "Chris Gianelloni (wolf31o2)" <wolf31o2@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] catalyst r1278 - in trunk: . modules
Date: Wed, 06 Feb 2008 22:47:39
Message-Id: E1JMt2i-0006BB-VZ@stork.gentoo.org
1 Author: wolf31o2
2 Date: 2008-02-06 22:47:00 +0000 (Wed, 06 Feb 2008)
3 New Revision: 1278
4
5 Modified:
6 trunk/ChangeLog
7 trunk/modules/generic_stage_target.py
8 Log:
9 Write out HOSTUSE settings from arch/*.py to make.conf as well as any USE flags defined in the spec file.
10
11 Modified: trunk/ChangeLog
12 ===================================================================
13 --- trunk/ChangeLog 2008-02-06 22:45:22 UTC (rev 1277)
14 +++ trunk/ChangeLog 2008-02-06 22:47:00 UTC (rev 1278)
15 @@ -1,6 +1,11 @@
16 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
17 # $Id: $
18
19 + 06 Feb 2008; Chris Gianelloni <wolf31o2@g.o>
20 + modules/generic_stage_target.py:
21 + Write out HOSTUSE settings from arch/*.py to make.conf as well as any USE
22 + flags defined in the spec file.
23 +
24 06 Feb 2008; Chris Gianelloni <wolf31o2@g.o> arch/ppc64.py:
25 Added a patch from Markus Rothe <corsair@g.o> to add power6 and cell
26 subarches to ppc64 for bug #208860 and removing redundant CXXFLAGS settings,
27
28 Modified: trunk/modules/generic_stage_target.py
29 ===================================================================
30 --- trunk/modules/generic_stage_target.py 2008-02-06 22:45:22 UTC (rev 1277)
31 +++ trunk/modules/generic_stage_target.py 2008-02-06 22:47:00 UTC (rev 1278)
32 @@ -910,13 +910,15 @@
33 myf.write('CBUILD="'+self.settings["CBUILD"]+'"\n')
34 myf.write('# WARNING: Changing your CHOST is not something that should be done lightly.\n# Please consult http://www.gentoo.org/doc/en/change-chost.xml before changing it.\nCHOST="'+self.settings["CHOST"]+'"\n')
35
36 - # Figure out what our USE vars are for building
37 + # Figure out what our USE vars are for building
38 myusevars=[]
39 if self.settings.has_key("HOSTUSE"):
40 myusevars.extend(self.settings["HOSTUSE"])
41
42 if self.settings.has_key("use"):
43 myusevars.extend(self.settings["use"])
44 +
45 + if myusevars:
46 myf.write('USE="'+string.join(myusevars)+'"\n')
47
48 # Setup the portage overlay
49
50 --
51 gentoo-commits@l.g.o mailing list