diff options
| author | Chris Larson <chris_larson@mentor.com> | 2010-04-09 17:11:03 -0700 |
|---|---|---|
| committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-07-02 15:41:32 +0100 |
| commit | 6623d79adaf445081e68b307355292077800d4f4 (patch) | |
| tree | 219d0c9b31de4331703e1a81d3b7f233ac0169cf /bitbake/lib/bb/fetch | |
| parent | 1569c1ac851b56bc73bf8ccd5270cbdd9da68a2f (diff) | |
| download | poky-6623d79adaf445081e68b307355292077800d4f4.tar.gz | |
Stop using functions via 'bb' that were moved from there to other modules
(Bitbake rev: 03a6c26f8da226f442c3cab557e4733f7cd6eeac)
Signed-off-by: Chris Larson <chris_larson@mentor.com>
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'bitbake/lib/bb/fetch')
| -rw-r--r-- | bitbake/lib/bb/fetch/__init__.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/bitbake/lib/bb/fetch/__init__.py b/bitbake/lib/bb/fetch/__init__.py index 15292c6b7b..b1b5eda35b 100644 --- a/bitbake/lib/bb/fetch/__init__.py +++ b/bitbake/lib/bb/fetch/__init__.py | |||
| @@ -118,9 +118,9 @@ def uri_replace(uri, uri_find, uri_replace, d): | |||
| 118 | # bb.msg.note(1, bb.msg.domain.Fetcher, "uri_replace: operating on %s" % uri) | 118 | # bb.msg.note(1, bb.msg.domain.Fetcher, "uri_replace: operating on %s" % uri) |
| 119 | if not uri or not uri_find or not uri_replace: | 119 | if not uri or not uri_find or not uri_replace: |
| 120 | bb.msg.debug(1, bb.msg.domain.Fetcher, "uri_replace: passed an undefined value, not replacing") | 120 | bb.msg.debug(1, bb.msg.domain.Fetcher, "uri_replace: passed an undefined value, not replacing") |
| 121 | uri_decoded = list(bb.decodeurl(uri)) | 121 | uri_decoded = list(decodeurl(uri)) |
| 122 | uri_find_decoded = list(bb.decodeurl(uri_find)) | 122 | uri_find_decoded = list(decodeurl(uri_find)) |
| 123 | uri_replace_decoded = list(bb.decodeurl(uri_replace)) | 123 | uri_replace_decoded = list(decodeurl(uri_replace)) |
| 124 | result_decoded = ['','','','','',{}] | 124 | result_decoded = ['','','','','',{}] |
| 125 | for i in uri_find_decoded: | 125 | for i in uri_find_decoded: |
| 126 | loc = uri_find_decoded.index(i) | 126 | loc = uri_find_decoded.index(i) |
| @@ -141,7 +141,7 @@ def uri_replace(uri, uri_find, uri_replace, d): | |||
| 141 | # else: | 141 | # else: |
| 142 | # for j in i: | 142 | # for j in i: |
| 143 | # FIXME: apply replacements against options | 143 | # FIXME: apply replacements against options |
| 144 | return bb.encodeurl(result_decoded) | 144 | return encodeurl(result_decoded) |
| 145 | 145 | ||
| 146 | methods = [] | 146 | methods = [] |
| 147 | urldata_cache = {} | 147 | urldata_cache = {} |
| @@ -474,7 +474,7 @@ class FetchData(object): | |||
| 474 | """ | 474 | """ |
| 475 | def __init__(self, url, d): | 475 | def __init__(self, url, d): |
| 476 | self.localfile = "" | 476 | self.localfile = "" |
| 477 | (self.type, self.host, self.path, self.user, self.pswd, self.parm) = bb.decodeurl(data.expand(url, d)) | 477 | (self.type, self.host, self.path, self.user, self.pswd, self.parm) = decodeurl(data.expand(url, d)) |
| 478 | self.date = Fetch.getSRCDate(self, d) | 478 | self.date = Fetch.getSRCDate(self, d) |
| 479 | self.url = url | 479 | self.url = url |
| 480 | if not self.user and "user" in self.parm: | 480 | if not self.user and "user" in self.parm: |
