Gentoo Archives: gentoo-commits

From: "Fabian Groffen (grobian)" <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] portage r14200 - main/branches/prefix/pym/portage
Date: Sat, 05 Sep 2009 13:36:20
Message-Id: E1MjvR1-0003jQ-VT@stork.gentoo.org
1 Author: grobian
2 Date: 2009-09-05 13:36:07 +0000 (Sat, 05 Sep 2009)
3 New Revision: 14200
4
5 Modified:
6 main/branches/prefix/pym/portage/const.py
7 Log:
8 Merged from trunk -r14198:14199
9
10 | 14199 | DEPCACHE_PATH is not used with ROOT at all, so move it out |
11 | grobian | of the target_root variable group |
12
13
14 Modified: main/branches/prefix/pym/portage/const.py
15 ===================================================================
16 --- main/branches/prefix/pym/portage/const.py 2009-09-05 13:33:29 UTC (rev 14199)
17 +++ main/branches/prefix/pym/portage/const.py 2009-09-05 13:36:07 UTC (rev 14200)
18 @@ -58,7 +58,6 @@
19 # have a leading '/' since they are used directly with os.path.join)
20 VDB_PATH = EPREFIX_LSTRIP + "/" + "var/db/pkg"
21 CACHE_PATH = EPREFIX_LSTRIP + "/" + "var/cache/edb"
22 -DEPCACHE_PATH = CACHE_PATH + "/dep" # FIXME: does not seem to use ROOT when used
23 PRIVATE_PATH = EPREFIX_LSTRIP + "/" + "var/lib/portage"
24 WORLD_FILE = PRIVATE_PATH + "/world"
25 WORLD_SETS_FILE = PRIVATE_PATH + "/world_sets"
26 @@ -66,6 +65,7 @@
27 NEWS_LIB_PATH = EPREFIX_LSTRIP + "/" + "var/lib/gentoo"
28
29 # these variables are not used with target_root or config_root
30 +DEPCACHE_PATH = EPREFIX + "/var/cache/edb/dep"
31 GLOBAL_CONFIG_PATH = DATADIR + "/portage/config"
32 PORTAGE_BASE_PATH = PORTAGE_BASE
33 PORTAGE_BIN_PATH = PORTAGE_BASE_PATH + "/bin"