summaryrefslogtreecommitdiffstats
path: root/lib/bb/fetch2/svk.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-10 23:36:56 +0000
commitfdab13939be23227d49db7bd5b9c01cd10737a47 (patch)
tree7fa3a4f4bedef68ef49b5a8bd90c135fd30b658a /lib/bb/fetch2/svk.py
parent2fc8ecca9b9ff373a48e3726daa3267d6def434f (diff)
downloadbitbake-fdab13939be23227d49db7bd5b9c01cd10737a47.tar.gz
bitbake/fetch2: Move ud.localfile setup into urldata_init
(From Poky rev: 972eb5fababb33b5537fcfbbaf8e33ea820f0fee) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib/bb/fetch2/svk.py')
-rw-r--r--lib/bb/fetch2/svk.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/bb/fetch2/svk.py b/lib/bb/fetch2/svk.py
index 3bb4c38c7..ef1cf4deb 100644
--- a/lib/bb/fetch2/svk.py
+++ b/lib/bb/fetch2/svk.py
@@ -42,7 +42,8 @@ class Svk(Fetch):
"""
return ud.type in ['svk']
- def localpath(self, url, ud, d):
+ def urldata_init(self, ud, d):
+
if not "module" in ud.parm:
raise MissingParameterError("svk method needs a 'module' parameter")
else:
@@ -52,6 +53,7 @@ class Svk(Fetch):
ud.localfile = data.expand('%s_%s_%s_%s_%s.tar.gz' % (ud.module.replace('/', '.'), ud.host, ud.path.replace('/', '.'), ud.revision, ud.date), d)
+ def localpath(self, url, ud, d):
return os.path.join(data.getVar("DL_DIR", d, True), ud.localfile)
def forcefetch(self, url, ud, d):