From d8f7680dc0221880a1eeb7bf2275642dfd3ce263 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Mon, 27 Nov 2006 08:52:57 +0000 Subject: fetch/__init__.py: Store url data per .bb file fixing urldata contamination between .bb files. git-svn-id: https://svn.o-hand.com/repos/poky/trunk@960 311d38ba-8fff-0310-9ca6-ca027cbcb966 --- bitbake/lib/bb/fetch/__init__.py | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) (limited to 'bitbake') diff --git a/bitbake/lib/bb/fetch/__init__.py b/bitbake/lib/bb/fetch/__init__.py index 24aebc4..84a80d1 100644 --- a/bitbake/lib/bb/fetch/__init__.py +++ b/bitbake/lib/bb/fetch/__init__.py @@ -91,7 +91,10 @@ def init(urls = [], d = None): ud.method.urls.append(u) def initdata(url, d): - if url not in urldata: + fn = bb.data.getVar('FILE', d, 1) + if fn not in urldata: + urldata[fn] = {} + if url not in urldata[fn]: ud = FetchData() (ud.type, ud.host, ud.path, ud.user, ud.pswd, ud.parm) = bb.decodeurl(data.expand(url, d)) ud.date = Fetch.getSRCDate(d) @@ -104,15 +107,16 @@ def initdata(url, d): ud.localpath = ud.parm["localpath"] ud.method = m break - urldata[url] = ud - return urldata[url] + urldata[fn][url] = ud + return urldata[fn][url] def go(d): """Fetch all urls""" + fn = bb.data.getVar('FILE', d, 1) for m in methods: for u in m.urls: - ud = urldata[u] - if ud.localfile and not m.forcefetch(u, ud, d) and os.path.exists(urldata[u].md5): + ud = urldata[fn][u] + if ud.localfile and not m.forcefetch(u, ud, d) and os.path.exists(urldata[fn][u].md5): # File already present along with md5 stamp file # Touch md5 file to show activity os.utime(ud.md5, None) @@ -127,9 +131,10 @@ def go(d): def localpaths(d): """Return a list of the local filenames, assuming successful fetch""" local = [] + fn = bb.data.getVar('FILE', d, 1) for m in methods: for u in m.urls: - local.append(urldata[u].localpath) + local.append(urldata[fn][u].localpath) return local def localpath(url, d): -- cgit v1.1