summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/fetch2/repo.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2011-02-03 21:17:26 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-02-07 09:06:35 +0000
commit972eb5fababb33b5537fcfbbaf8e33ea820f0fee (patch)
tree2bd453bc66853c72cb284067d6679d6f498cd77b /bitbake/lib/bb/fetch2/repo.py
parent0e5404cedadaea6738ef6468d7eb8a24d23d9bab (diff)
downloadpoky-972eb5fababb33b5537fcfbbaf8e33ea820f0fee.tar.gz
bitbake/fetch2: Move ud.localfile setup into urldata_init
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/fetch2/repo.py')
-rw-r--r--bitbake/lib/bb/fetch2/repo.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/bitbake/lib/bb/fetch2/repo.py b/bitbake/lib/bb/fetch2/repo.py
index c80fe5de84..f742591fdb 100644
--- a/bitbake/lib/bb/fetch2/repo.py
+++ b/bitbake/lib/bb/fetch2/repo.py
@@ -37,7 +37,7 @@ class Repo(Fetch):
37 """ 37 """
38 return ud.type in ["repo"] 38 return ud.type in ["repo"]
39 39
40 def localpath(self, url, ud, d): 40 def urldata_init(self, ud, d):
41 """ 41 """
42 We don"t care about the git rev of the manifests repository, but 42 We don"t care about the git rev of the manifests repository, but
43 we do care about the manifest to use. The default is "default". 43 we do care about the manifest to use. The default is "default".
@@ -53,6 +53,7 @@ class Repo(Fetch):
53 53
54 ud.localfile = data.expand("repo_%s%s_%s_%s.tar.gz" % (ud.host, ud.path.replace("/", "."), ud.manifest, ud.branch), d) 54 ud.localfile = data.expand("repo_%s%s_%s_%s.tar.gz" % (ud.host, ud.path.replace("/", "."), ud.manifest, ud.branch), d)
55 55
56 def localpath(self, url, ud, d):
56 return os.path.join(data.getVar("DL_DIR", d, True), ud.localfile) 57 return os.path.join(data.getVar("DL_DIR", d, True), ud.localfile)
57 58
58 def download(self, loc, ud, d): 59 def download(self, loc, ud, d):