Home
last modified time | relevance | path

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

/openbmc/openbmc/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 Dgcp.py24 from bb.fetch2 import FetchError
77 …raise FetchError(f"The GCP API returned success for gs://{ud.host}{ud.path} but {ud.localpath} doe…
81 …raise FetchError(f"The downloaded file for gs://{ud.host}{ud.path} resulted in a zero size file?! …
99 raise FetchError(f"The GCP API reported that gs://{ud.host}{ud.path} does not exist")
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 Dnpm.py34 from bb.fetch2 import FetchError
196 raise FetchError("Unavailable package %s" % pkgver, ud.url)
203 raise FetchError(error.get("summary"), ud.url)
215 raise FetchError("Invalid view from npm: %s" % str(e), ud.url)
221 raise FetchError("Invalid 'dist.tarball' in view", ud.url)
235 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 Dgit.py218 … raise bb.fetch2.FetchError("Invalid depth for BB_GIT_SHALLOW_DEPTH: %s" % depth_default)
221 … raise bb.fetch2.FetchError("Invalid depth for BB_GIT_SHALLOW_DEPTH: %s" % depth_default)
239 …raise bb.fetch2.FetchError("Invalid depth for BB_GIT_SHALLOW_DEPTH_%s: %s" % (name, shallow_depth))
359 except bb.fetch2.FetchError:
424 except bb.fetch2.FetchError as e:
483 … raise bb.fetch2.FetchError("Unable to find revision %s even from upstream" % missing_rev)
722 except bb.fetch2.FetchError:
781 except (bb.fetch2.FetchError,ValueError):
835 … raise bb.fetch2.FetchError("The command %s gave empty output unexpectedly" % cmd, ud.url)
876 except (bb.fetch2.FetchError, bb.fetch2.NetworkAccess) as e:
[all …]
H A Dlocal.py20 from bb.fetch2 import FetchMethod, FetchError, ParameterError
78 raise FetchError(msg)
H A Dosc.py17 from bb.fetch2 import FetchError
84 raise FetchError("Invalid osc command %s" % command, ud.url)
97 raise FetchError("Unable to parse osc response", ud.url)
H A Dsvn.py17 from bb.fetch2 import FetchError
115 raise FetchError("Invalid svn command %s" % command, ud.url)
136 except FetchError:
H A Dbzr.py19 from bb.fetch2 import FetchError
68 raise FetchError("Invalid bzr 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 Dhg.py19 from bb.fetch2 import FetchError
146 raise FetchError("Invalid hg command %s" % command, ud.url)
166 except bb.fetch2.FetchError:
H A D__init__.py70 class FetchError(BBFetchException): class
81 class ChecksumError(FetchError):
85 FetchError.__init__(self, message, url)
87 class NoChecksumError(FetchError):
519 raise FetchError("Invalid SRCREV cache policy of: %s" % srcrev_policy)
773 … raise FetchError("There are recursive references in fetcher variables, likely through SRC_URI")
804 raise FetchError("The SRCREV_FORMAT variable must be set when multiple SCMs are used.\n"\
844 raise FetchError("SRCREV was used yet no valid SCM was found in SRC_URI")
960 raise FetchError(error_message)
1907 raise FetchError("Unable to fetch URL from any source.", u)
[all …]
H A Dwget.py26 from bb.fetch2 import FetchError
149 …raise FetchError("The fetch command returned success for url %s but %s doesn't exist?!" % (uri, ud…
153 …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…
/openbmc/openbmc/poky/bitbake/lib/bb/tests/
H A Dfetch.py1056 self.assertRaises(bb.fetch.FetchError, self.gitfetcher, url1, url2)
1062 self.assertRaises(bb.fetch.FetchError, self.gitfetcher, url1, url2)
1248 with self.assertRaises(bb.fetch2.FetchError):
2105 with self.assertRaises(bb.fetch2.FetchError):
2113 with self.assertRaises(bb.fetch2.FetchError):
2148 with self.assertRaises(bb.fetch2.FetchError):
2187 with self.assertRaises(bb.fetch2.FetchError):
2414 with self.assertRaises(bb.fetch2.FetchError):
2768 with self.assertRaises(bb.fetch2.FetchError):
2776 with self.assertRaises(bb.fetch2.FetchError):
[all …]
/openbmc/openbmc/poky/scripts/lib/recipetool/
H A Dcreate.py359 except bb.fetch2.FetchError as e:
/openbmc/openbmc/poky/meta/classes-global/
H A Dsstate.bbclass1048 except bb.fetch2.FetchError as e: