summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2008-05-17 23:35:15 +0000
committerZac Medico <zmedico@gentoo.org>2008-05-17 23:35:15 +0000
commit6e6419dc31d76cad5f00c652b1e9206ebb6fbbec (patch)
treeee88338255fe08464c1d013b344b1d24c81f7bfa
parentFix th logic from the previous commit. (trunk r10350) (diff)
downloadportage-multirepo-6e6419dc31d76cad5f00c652b1e9206ebb6fbbec.tar.gz
portage-multirepo-6e6419dc31d76cad5f00c652b1e9206ebb6fbbec.tar.bz2
portage-multirepo-6e6419dc31d76cad5f00c652b1e9206ebb6fbbec.zip
Add the environment and some more files to the existing make.defaults
variable substitution support. Variable substitution occurs in the following order: * env.d * env * make.globals * make.defaults * make.conf (trunk r10351) svn path=/main/branches/2.1.2/; revision=10356
-rw-r--r--pym/portage.py89
1 files changed, 55 insertions, 34 deletions
diff --git a/pym/portage.py b/pym/portage.py
index 5a6d33c8..16171b65 100644
--- a/pym/portage.py
+++ b/pym/portage.py
@@ -1427,9 +1427,60 @@ class config:
self.puseforce_list.append(cpdict)
del rawpuseforce
+ make_conf = getconfig(
+ os.path.join(config_root, MAKE_CONF_FILE.lstrip(os.path.sep)),
+ tolerant=tolerant, allow_sourcing=True)
+
+ # Allow ROOT setting to come from make.conf if it's not overridden
+ # by the constructor argument (from the calling environment).
+ if target_root is None and "ROOT" in make_conf:
+ target_root = make_conf["ROOT"]
+ if target_root is None:
+ target_root = "/"
+
+ # The expand_map is used for variable substitution
+ # in getconfig() calls, and the getconfig() calls
+ # update expand_map with the value of each variable
+ # assignment that occurs. Variable substitution occurs
+ # in the following order:
+ #
+ # * env.d
+ # * env
+ # * make.globals
+ # * make.defaults
+ # * make.conf
+ #
+ expand_map = {}
+
+ env_d = getconfig(os.path.join(target_root, "etc", "profile.env"),
+ expand=expand_map)
+ # env_d will be None if profile.env doesn't exist.
+ if env_d:
+ self.configdict["env.d"].update(env_d)
+ expand_map.update(env_d)
+
+ # backupenv is used for calculating incremental variables.
+ self.backupenv = os.environ.copy()
+ expand_map.update(self.backupenv)
+
# make.globals should not be relative to config_root
# because it only contains constants.
- self.mygcfg = getconfig(os.path.join("/etc", "make.globals"))
+ self.mygcfg = getconfig(os.path.join("/etc", "make.globals"),
+ expand=expand_map)
+
+ if env_d:
+ # Remove duplicate values so they don't override updated
+ # profile.env values later (profile.env is reloaded in each
+ # call to self.regenerate).
+ for k, v in env_d.iteritems():
+ try:
+ if self.backupenv[k] == v:
+ del self.backupenv[k]
+ except KeyError:
+ pass
+ del k, v
+
+ self.configdict["env"] = self.backupenv.copy()
if self.mygcfg is None:
self.mygcfg = {}
@@ -1440,7 +1491,6 @@ class config:
self.make_defaults_use = []
self.mygcfg = {}
if self.profiles:
- expand_map = {}
mygcfg_dlists = [getconfig(os.path.join(x, "make.defaults"),
expand=expand_map) for x in self.profiles]
@@ -1458,7 +1508,7 @@ class config:
self.mygcfg = getconfig(
os.path.join(config_root, MAKE_CONF_FILE.lstrip(os.path.sep)),
- tolerant=tolerant, allow_sourcing=True)
+ tolerant=tolerant, allow_sourcing=True, expand=expand_map)
if self.mygcfg is None:
self.mygcfg = {}
@@ -1467,12 +1517,7 @@ class config:
"PROFILE_ONLY_VARIABLES", "").split()
for k in profile_only_variables:
self.mygcfg.pop(k, None)
-
- # Allow ROOT setting to come from make.conf if it's not overridden
- # by the constructor argument (from the calling environment).
- if target_root is None and "ROOT" in self.mygcfg:
- target_root = self.mygcfg["ROOT"]
-
+
self.configlist.append(self.mygcfg)
self.configdict["conf"]=self.configlist[-1]
@@ -1483,8 +1528,6 @@ class config:
self.configlist.append({})
self.configdict["auto"]=self.configlist[-1]
- # backupenv is used for calculating incremental variables.
- self.backupenv = os.environ.copy()
self.configlist.append(self.backupenv) # XXX Why though?
self.configdict["backupenv"]=self.configlist[-1]
@@ -1492,8 +1535,7 @@ class config:
for k in profile_only_variables:
self.backupenv.pop(k, None)
- self.configlist.append(self.backupenv.copy())
- self.configdict["env"]=self.configlist[-1]
+ self.configlist.append(self.configdict["env"])
# make lookuplist for loading package.*
self.lookuplist=self.configlist[:]
@@ -1507,33 +1549,12 @@ class config:
cfg.pop(blacklisted, None)
del blacklisted, cfg
- if target_root is None:
- target_root = "/"
-
target_root = normalize_path(os.path.abspath(
target_root)).rstrip(os.path.sep) + os.path.sep
portage_util.ensure_dirs(target_root)
check_var_directory("ROOT", target_root)
- env_d = getconfig(
- os.path.join(target_root, "etc", "profile.env"), expand=False)
- # env_d will be None if profile.env doesn't exist.
- if env_d:
- self.configdict["env.d"].update(env_d)
- # Remove duplicate values so they don't override updated
- # profile.env values later (profile.env is reloaded in each
- # call to self.regenerate).
- for cfg in (self.configdict["backupenv"],
- self.configdict["env"]):
- for k, v in env_d.iteritems():
- try:
- if cfg[k] == v:
- del cfg[k]
- except KeyError:
- pass
- del cfg, k, v
-
self["PORTAGE_CONFIGROOT"] = config_root
self.backup_changes("PORTAGE_CONFIGROOT")
self["ROOT"] = target_root