Gentoo Archives: gentoo-commits

From: "Zac Medico (zmedico)" <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] portage r11245 - main/trunk/pym/portage
Date: Mon, 28 Jul 2008 20:00:44
Message-Id: E1KNYtd-0005ti-At@stork.gentoo.org
1 Author: zmedico
2 Date: 2008-07-28 20:00:40 +0000 (Mon, 28 Jul 2008)
3 New Revision: 11245
4
5 Modified:
6 main/trunk/pym/portage/__init__.py
7 Log:
8 Bug #233103 - In portage.fetch(), pass all config variables instead of just
9 those returned by the environ() method which is filtered.
10
11
12 Modified: main/trunk/pym/portage/__init__.py
13 ===================================================================
14 --- main/trunk/pym/portage/__init__.py 2008-07-28 19:48:00 UTC (rev 11244)
15 +++ main/trunk/pym/portage/__init__.py 2008-07-28 20:00:40 UTC (rev 11245)
16 @@ -3848,7 +3848,7 @@
17 myfetch = ["bash", "-c", "exec \"$@\"", myfetch[0]] + myfetch
18
19 myret = portage.process.spawn(myfetch,
20 - env=mysettings.environ(), **spawn_keywords)
21 + env=dict(mysettings.iteritems()), **spawn_keywords)
22
23 if mysettings.selinux_enabled():
24 selinux.setexec(None)