From e24cc4388c347006f565896bf45c53dd7eff0a8e Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Sun, 6 May 2007 07:57:00 +0000 Subject: Use varexpand to expand FETCHCOMMAND and RESUMECOMMAND. (trunk r6486:6487) svn path=/main/branches/2.1.2/; revision=6488 --- pym/portage.py | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/pym/portage.py b/pym/portage.py index 56f5ff529..fa9f37535 100644 --- a/pym/portage.py +++ b/pym/portage.py @@ -2564,13 +2564,14 @@ def fetch(myuris, mysettings, listonly=0, fetchonly=0, locks_in_subdir=".locks", writemsg_stdout(">>> Downloading '%s'\n" % \ re.sub(r'//(.+):.+@(.+)/',r'//\1:*password*@\2/', loc)) myfetch = locfetch.split() - variables = {"${DISTDIR}":mysettings["DISTDIR"], - "${URI}":loc, "${FILE}":myfile} + variables = { + "DISTDIR": mysettings["DISTDIR"], + "URI": loc, + "FILE": myfile + } + for i in xrange(len(myfetch)): - token = myfetch[i].strip("\"'") - for var, value in variables.iteritems(): - token = token.replace(var, value) - myfetch[i] = token + myfetch[i] = varexpand(myfetch[i], mydict=variables) spawn_keywords = {} if "userfetch" in mysettings.features and \ -- cgit v1.2.3-1-g7c22