Gentoo Archives: gentoo-commits

From: "Fabian Groffen (grobian)" <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] portage r11612 - main/branches/prefix/pym/portage
Date: Thu, 02 Oct 2008 15:16:32
Message-Id: E1KlPun-0001AC-UY@stork.gentoo.org
1 Author: grobian
2 Date: 2008-10-02 15:16:28 +0000 (Thu, 02 Oct 2008)
3 New Revision: 11612
4
5 Modified:
6 main/branches/prefix/pym/portage/const.py
7 Log:
8 Allow to set EAPIPREFIX. Not sure how hazardous this is, but it's darn handy at work (using Prefix repoman to commit on a non-Prefix overlay)
9
10 Modified: main/branches/prefix/pym/portage/const.py
11 ===================================================================
12 --- main/branches/prefix/pym/portage/const.py 2008-10-02 06:56:33 UTC (rev 11611)
13 +++ main/branches/prefix/pym/portage/const.py 2008-10-02 15:16:28 UTC (rev 11612)
14 @@ -14,6 +14,8 @@
15 # pick up EPREFIX from the environment if set
16 if "EPREFIX" in os.environ:
17 EPREFIX = os.path.normpath(os.environ["EPREFIX"])
18 +if "EAPIPREFIX" in os.environ:
19 + EAPIPREFIX = os.environ["EAPIPREFIX"]
20
21 # ===========================================================================
22 # START OF CONSTANTS -- START OF CONSTANTS -- START OF CONSTANTS -- START OF