Blame SOURCES/BZ-1102585-variable-substitution.patch

d2a170
commit 28cc43d16664a408f7e4315767230544d7f52618
d2a170
Author: Valentina Mukhamedzhanova <vmukhame@redhat.com>
d2a170
Date:   Mon May 19 16:21:46 2014 +0200
d2a170
d2a170
    Replace vars in include lines in .repo files. BZ 977380
d2a170
d2a170
diff --git a/yum/parser.py b/yum/parser.py
d2a170
index b165ef2..5110cb5 100644
d2a170
--- a/yum/parser.py
d2a170
+++ b/yum/parser.py
d2a170
@@ -18,6 +18,8 @@ def varReplace(raw, vars):
d2a170
     @return: Input raw string with substituted values.
d2a170
     '''
d2a170
 
d2a170
+    if not vars:
d2a170
+        return raw
d2a170
     done = []                      # Completed chunks to return
d2a170
 
d2a170
     while raw:
d2a170
@@ -136,6 +138,7 @@ class ConfigPreProcessor:
d2a170
                              'Error parsing config %s: include must specify file to include.' % (self.name)
d2a170
                     else:
d2a170
                         # whooohoo a valid include line.. push it on the stack
d2a170
+                        url = varReplace(url, self._vars)
d2a170
                         fo = self._pushfile( url )
d2a170
                 else:
d2a170
                     # check if the current line starts a new section
d2a170
@@ -156,9 +159,7 @@ class ConfigPreProcessor:
d2a170
             line = line.lstrip()
d2a170
         # at this point we have a line from the topmost file on the stack
d2a170
         # or EOF if the stack is empty
d2a170
-        if self._vars:
d2a170
-            return varReplace(line, self._vars)
d2a170
-        return line
d2a170
+        return varReplace(line, self._vars)
d2a170
     
d2a170
     
d2a170
     def _absurl( self, url ):
d2a170
commit 04c46c81f556e3e5ee72630f9501e243d00528a7
d2a170
Author: Valentina Mukhamedzhanova <vmukhame@redhat.com>
d2a170
Date:   Wed Jun 11 11:13:00 2014 +0200
d2a170
d2a170
    Read env vars in readStartupConfig() to make them work in yum.conf. BZ 1102575
d2a170
d2a170
diff --git a/yum/config.py b/yum/config.py
d2a170
index f0f4e96..6e0ecdc 100644
d2a170
--- a/yum/config.py
d2a170
+++ b/yum/config.py
d2a170
@@ -1042,6 +1042,11 @@ def readStartupConfig(configfile, root, releasever=None):
d2a170
     startupconf.config_file_path = configfile
d2a170
     parser = ConfigParser()
d2a170
     confpp_obj = ConfigPreProcessor(configfile)
d2a170
+
d2a170
+    yumvars = _getEnvVar()
d2a170
+    confpp_obj._vars = yumvars
d2a170
+    startupconf.yumvars = yumvars
d2a170
+
d2a170
     try:
d2a170
         parser.readfp(confpp_obj)
d2a170
     except ParsingError, e:
d2a170
@@ -1076,7 +1081,7 @@ def readMainConfig(startupconf):
d2a170
     # ' xemacs syntax hack
d2a170
 
d2a170
     # Set up substitution vars
d2a170
-    yumvars = _getEnvVar()
d2a170
+    yumvars = startupconf.yumvars
d2a170
     yumvars['basearch'] = startupconf.basearch
d2a170
     yumvars['arch'] = startupconf.arch
d2a170
     yumvars['releasever'] = startupconf.releasever