diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-02-03 21:17:26 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-02-07 09:06:35 +0000 |
commit | 972eb5fababb33b5537fcfbbaf8e33ea820f0fee (patch) | |
tree | 2bd453bc66853c72cb284067d6679d6f498cd77b /bitbake/lib/bb/fetch2/cvs.py | |
parent | 0e5404cedadaea6738ef6468d7eb8a24d23d9bab (diff) | |
download | poky-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/cvs.py')
-rw-r--r-- | bitbake/lib/bb/fetch2/cvs.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bitbake/lib/bb/fetch2/cvs.py b/bitbake/lib/bb/fetch2/cvs.py index 4915e74e4b..6a7cdf2a89 100644 --- a/bitbake/lib/bb/fetch2/cvs.py +++ b/bitbake/lib/bb/fetch2/cvs.py | |||
@@ -42,7 +42,7 @@ class Cvs(Fetch): | |||
42 | """ | 42 | """ |
43 | return ud.type in ['cvs'] | 43 | return ud.type in ['cvs'] |
44 | 44 | ||
45 | def localpath(self, url, ud, d): | 45 | def urldata_init(self, ud, d): |
46 | if not "module" in ud.parm: | 46 | if not "module" in ud.parm: |
47 | raise MissingParameterError("cvs method needs a 'module' parameter") | 47 | raise MissingParameterError("cvs method needs a 'module' parameter") |
48 | ud.module = ud.parm["module"] | 48 | ud.module = ud.parm["module"] |
@@ -65,6 +65,7 @@ class Cvs(Fetch): | |||
65 | 65 | ||
66 | ud.localfile = data.expand('%s_%s_%s_%s%s%s.tar.gz' % (ud.module.replace('/', '.'), ud.host, ud.tag, ud.date, norecurse, fullpath), d) | 66 | ud.localfile = data.expand('%s_%s_%s_%s%s%s.tar.gz' % (ud.module.replace('/', '.'), ud.host, ud.tag, ud.date, norecurse, fullpath), d) |
67 | 67 | ||
68 | def localpath(self, url, ud, d): | ||
68 | return os.path.join(data.getVar("DL_DIR", d, True), ud.localfile) | 69 | return os.path.join(data.getVar("DL_DIR", d, True), ud.localfile) |
69 | 70 | ||
70 | def forcefetch(self, url, ud, d): | 71 | def forcefetch(self, url, ud, d): |