Home
last modified time | relevance | path

Searched refs:urldata (Results 1 – 16 of 16) sorted by relevance

/openbmc/openbmc/poky/bitbake/lib/bb/fetch2/
H A Dlocal.py24 def supports(self, urldata, d): argument
28 return urldata.type in ['file']
40 def localpath(self, urldata, d): argument
44 return self.localfile_searchpaths(urldata, d)[-1]
46 def localfile_searchpaths(self, urldata, d): argument
51 path = urldata.decodedurl
69 def download(self, urldata, d): argument
72 if self.supports_checksum(urldata) and not os.path.exists(urldata.localpath):
77 …msg = "Unable to find file " + urldata.url + " anywhere to download to " + urldata.localpath + ". …
82 def checkstatus(self, fetch, urldata, d): argument
[all …]
H A Dssh.py60 def supports(self, urldata, d): argument
61 return __pattern__.match(urldata.url) is not None
63 def supports_checksum(self, urldata): argument
66 def urldata_init(self, urldata, d): argument
67 if 'protocol' in urldata.parm and urldata.parm['protocol'] == 'git':
71 "git:// prefix with protocol=ssh", urldata.url)
72 m = __pattern__.match(urldata.url)
76 urldata.localpath = os.path.join(d.getVar('DL_DIR'),
79 def download(self, urldata, d): argument
82 m = __pattern__.match(urldata.url)
[all …]
H A D__init__.py786 urldata = fetcher.ud
787 for u in urldata:
788 if urldata[u].method.supports_srcrev():
796 if len(scms) == 1 and len(urldata[scms[0]].names) == 1:
797 …autoinc, rev = getattr(urldata[scms[0]].method, method_name)(urldata[scms[0]], d, urldata[scms[0]]…
817 ud = urldata[scm]
1424 def supports(self, urldata, d): argument
1430 def localpath(self, urldata, d): argument
1436 return os.path.join(d.getVar("DL_DIR"), urldata.localfile)
1438 def supports_checksum(self, urldata): argument
[all …]
H A Dgitsm.py269 urldata = []
273 urldata.extend(newfetch.expanded_urldata())
277 return urldata
H A Dsftp.py65 def recommends_checksum(self, urldata): argument
H A Dgcp.py40 def recommends_checksum(self, urldata): argument
H A Ds3.py71 def recommends_checksum(self, urldata): argument
H A Dcrate.py35 def recommends_checksum(self, urldata): argument
H A Dsvn.py214 def supports_checksum(self, urldata): argument
H A Dhg.py32 def supports_checksum(self, urldata): argument
H A Dwget.py68 def recommends_checksum(self, urldata): argument
H A Dgit.py150 def supports_checksum(self, urldata): argument
/openbmc/openbmc/poky/meta/classes-recipe/
H A Dkernel-yocto.bbclass71 urldata = fetch.ud[url]
72 parm = urldata.parm
79 elif urldata.type == "file":
80 destdir = urldata.basepath
91 urldata = fetch.ud[url]
92 parm = urldata.parm
94 branches = urldata.parm.get("branch").split(',')
95 btype = urldata.parm.get("type")
/openbmc/openbmc/poky/meta/lib/oe/
H A Dpatch.py897 urldata = fetch.ud[url]
898 if "apply" in urldata.parm:
899 apply = oe.types.boolean(urldata.parm["apply"])
920 urldata = fetch.ud[url]
921 parm = urldata.parm
/openbmc/openbmc/poky/meta/classes/
H A Dbuildhistory.bbclass937 urldata = fetcher.ud
938 for u in urldata:
939 if urldata[u].method.supports_srcrev():
945 ud = urldata[scm]
/openbmc/openbmc/poky/scripts/lib/recipetool/
H A Dcreate.py355 urldata = fetcher.ud
356 for u in urldata:
357 if urldata[u].method.supports_srcrev():