Home
last modified time | relevance | path

Searched refs:FetchError (Results 1 – 20 of 20) sorted by relevance

/OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/fetch2/
H A Dperforce.py30 from bb.fetch2 import FetchError
104 raise FetchError('Could not determine P4PORT from P4CONFIG')
117 … raise FetchError('SRC_URI depot path cannot not end in /... when a module value is given')
126 raise FetchError('module cannot begin with /')
184 raise FetchError('No depot file name provided to p4 %s' % command, ud.url)
188 raise FetchError('Invalid p4 command %s' % command, ud.url)
203 raise FetchError('Unable to fetch listing of p4 files from %s@%s' % (ud.host, ud.path))
222 raise FetchError('No files found in depot %s@%s' % (ud.host, ud.path))
255 raise FetchError('Could not determine the latest perforce changelist')
H A Daz.py18 from bb.fetch2 import FetchError
77 except FetchError as e:
87 …raise FetchError("The fetch command returned success for url %s but %s doesn't exist?!" % (azuri, …
91 …raise FetchError("The fetch of %s resulted in a zero size file?! Deleting and failing since this i…
H A Dgitannex.py32 except bb.fetch.FetchError:
40 except bb.fetch.FetchError:
58 except bb.fetch.FetchError:
70 except bb.fetch.FetchError:
H A Ds3.py23 from bb.fetch2 import FetchError
101 …raise FetchError("The aws cp command returned success for s3://%s%s but %s doesn't exist?!" % (ud.…
105 …raise FetchError("The aws cp command for s3://%s%s resulted in a zero size file?! Deleting and fai…
122 … raise FetchError("The aws ls command for s3://%s%s gave empty output" % (ud.host, ud.path))
H A Dgit.py197 … raise bb.fetch2.FetchError("Invalid depth for BB_GIT_SHALLOW_DEPTH: %s" % depth_default)
200 … raise bb.fetch2.FetchError("Invalid depth for BB_GIT_SHALLOW_DEPTH: %s" % depth_default)
218 …raise bb.fetch2.FetchError("Invalid depth for BB_GIT_SHALLOW_DEPTH_%s: %s" % (name, shallow_depth))
221 …raise bb.fetch2.FetchError("Invalid depth for BB_GIT_SHALLOW_DEPTH_%s: %s" % (name, shallow_depth))
326 except bb.fetch2.FetchError:
402 …raise bb.fetch2.FetchError("Unable to find revision %s in branch %s even from upstream" % (ud.revi…
407 … raise bb.fetch2.FetchError("Unable to find revision %s even from upstream" % missing_rev)
598 …raise bb.fetch2.FetchError("Repository %s has LFS content, install git-lfs on host to download (or…
646 except bb.fetch2.FetchError:
649 …raise bb.fetch2.FetchError("The command '%s' gave output with more then 1 line unexpectedly, outpu…
[all …]
H A Dnpm.py34 from bb.fetch2 import FetchError
192 raise FetchError("Unavailable package %s" % pkgver, ud.url)
199 raise FetchError(error.get("summary"), ud.url)
211 raise FetchError("Invalid view from npm: %s" % str(e), ud.url)
217 raise FetchError("Invalid 'dist.tarball' in view", ud.url)
231 raise FetchError("Invalid 'dist.integrity' in view", ud.url)
H A Dclearcase.py55 from bb.fetch2 import FetchError
100 …raise FetchError("Set a valid SRCREV for the clearcase fetcher in your recipe, e.g. SRCREV = \"/ma…
163 raise FetchError("Invalid ccase command %s" % command)
222 except FetchError as e:
224 …raise FetchError("%s\n%s\n" % (e.msg, "Call `rcleartool login` in your console to authenticate to …
H A Dsvn.py17 from bb.fetch2 import FetchError
115 raise FetchError("Invalid svn command %s" % command, ud.url)
136 except FetchError:
H A Dlocal.py20 from bb.fetch2 import FetchMethod, FetchError, ParameterError
84 raise FetchError(msg)
H A D__init__.py70 class FetchError(BBFetchException): class
81 class ChecksumError(FetchError):
85 FetchError.__init__(self, message, url)
87 class NoChecksumError(FetchError):
518 raise FetchError("Invalid SRCREV cache policy of: %s" % srcrev_policy)
771 … raise FetchError("There are recursive references in fetcher variables, likely through SRC_URI")
782 raise FetchError("SRCREV was used yet no valid SCM was found in SRC_URI")
798 raise FetchError("The SRCREV_FORMAT variable must be set when multiple SCMs are used.\n"\
929 raise FetchError(error_message)
1198 …raise FetchError("Please specify a ;rev= parameter or a ;tag= parameter in the url %s but not both…
[all …]
H A Dbzr.py19 from bb.fetch2 import FetchError
68 raise FetchError("Invalid bzr command %s" % command, ud.url)
H A Dhg.py19 from bb.fetch2 import FetchError
146 raise FetchError("Invalid hg command %s" % command, ud.url)
166 except bb.fetch2.FetchError:
H A Dosc.py16 from bb.fetch2 import FetchError
81 raise FetchError("Invalid osc command %s" % command, ud.url)
H A Dcvs.py18 from bb.fetch2 import FetchMethod, FetchError, MissingParameterError, logger
133 … raise FetchError("Directory %s was not readable despite sucessful fetch?!" % moddir, ud.url)
H A Dwget.py26 from bb.fetch2 import FetchError
139 …raise FetchError("The fetch command returned success for url %s but %s doesn't exist?!" % (uri, ud…
143 …raise FetchError("The fetch of %s resulted in a zero size file?! Deleting and failing since this i…
H A Dgitsm.py119 …raise bb.fetch2.FetchError("Submodule refers to the parent repository. This will cause deadlock si…
/OK3568_Linux_fs/yocto/meta-rockchip/classes/
H A Dlocal-git.bbclass31 except bb.fetch2.FetchError:
/OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/tests/
H A Dfetch.py1001 self.assertRaises(bb.fetch.FetchError, self.gitfetcher, url1, url2)
1007 self.assertRaises(bb.fetch.FetchError, self.gitfetcher, url1, url2)
2010 with self.assertRaises(bb.fetch2.FetchError):
2018 with self.assertRaises(bb.fetch2.FetchError):
2053 with self.assertRaises(bb.fetch2.FetchError):
2092 with self.assertRaises(bb.fetch2.FetchError):
2111 …with self.assertRaises(bb.fetch2.FetchError), self.assertLogs("BitBake.Fetcher", level="ERROR") as…
2214 with self.assertRaises(bb.fetch2.FetchError):
2489 with self.assertRaises(bb.fetch2.FetchError):
2497 with self.assertRaises(bb.fetch2.FetchError):
[all …]
/OK3568_Linux_fs/yocto/poky/scripts/lib/recipetool/
H A Dcreate.py359 except bb.fetch2.FetchError as e:
/OK3568_Linux_fs/yocto/poky/meta/classes/
H A Dsstate.bbclass1003 except bb.fetch2.FetchError as e: