mirror of
https://git.yoctoproject.org/poky
synced 2026-06-02 13:29:49 +00:00
bitbake/fetch: Sync up logger/whitespace improvements
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -243,17 +243,20 @@ def verify_checksum(u, ud, d):
|
|||||||
sha256data = bb.utils.sha256_file(ud.localpath)
|
sha256data = bb.utils.sha256_file(ud.localpath)
|
||||||
|
|
||||||
if (ud.md5_expected == None or ud.sha256_expected == None):
|
if (ud.md5_expected == None or ud.sha256_expected == None):
|
||||||
bb.warn("Missing SRC_URI checksum for %s, consider to add\n" \
|
logger.warn('Missing SRC_URI checksum for %s, consider adding to the recipe:\n'
|
||||||
"SRC_URI[%s] = \"%s\"\nSRC_URI[%s] = \"%s\"" \
|
'SRC_URI[%s] = "%s"\nSRC_URI[%s] = "%s"',
|
||||||
% (ud.localpath, ud.md5_name, md5data, ud.sha256_name, sha256data))
|
ud.localpath, ud.md5_name, md5data,
|
||||||
|
ud.sha256_name, sha256data)
|
||||||
if bb.data.getVar("BB_STRICT_CHECKSUM", d, True) == "1":
|
if bb.data.getVar("BB_STRICT_CHECKSUM", d, True) == "1":
|
||||||
raise FetchError("No checksum specified for %s." % u)
|
raise FetchError("No checksum specified for %s." % u)
|
||||||
return
|
return
|
||||||
|
|
||||||
if (ud.md5_expected != md5data or ud.sha256_expected != sha256data):
|
if (ud.md5_expected != md5data or ud.sha256_expected != sha256data):
|
||||||
bb.error("The checksums for '%s' did not match." % ud.localpath)
|
logger.error('The checksums for "%s" did not match.\n'
|
||||||
bb.error("Expected MD5: '%s' and Got: '%s'" % (ud.md5_expected, md5data))
|
' MD5: expected "%s", got "%s"\n'
|
||||||
bb.error("Expected SHA256: '%s' and Got: '%s'" % (ud.sha256_expected, sha256data))
|
' SHA256: expected "%s", got "%s"\n',
|
||||||
|
ud.localpath, ud.md5_expected, md5data,
|
||||||
|
ud.sha256_expected, sha256data)
|
||||||
raise FetchError("%s checksum mismatch." % u)
|
raise FetchError("%s checksum mismatch." % u)
|
||||||
|
|
||||||
def go(d, urls = None):
|
def go(d, urls = None):
|
||||||
@@ -326,7 +329,7 @@ def checkstatus(d, urls = None):
|
|||||||
for u in urls:
|
for u in urls:
|
||||||
ud = urldata[u]
|
ud = urldata[u]
|
||||||
m = ud.method
|
m = ud.method
|
||||||
logger.debug(1, "Testing URL %s" % u)
|
logger.debug(1, "Testing URL %s", u)
|
||||||
# First try checking uri, u, from PREMIRRORS
|
# First try checking uri, u, from PREMIRRORS
|
||||||
mirrors = mirror_from_string(bb.data.getVar('PREMIRRORS', d, True))
|
mirrors = mirror_from_string(bb.data.getVar('PREMIRRORS', d, True))
|
||||||
ret = try_mirrors(d, u, mirrors, True)
|
ret = try_mirrors(d, u, mirrors, True)
|
||||||
@@ -482,7 +485,7 @@ def try_mirrors(d, uri, mirrors, check = False, force = False):
|
|||||||
"""
|
"""
|
||||||
fpath = os.path.join(data.getVar("DL_DIR", d, 1), os.path.basename(uri))
|
fpath = os.path.join(data.getVar("DL_DIR", d, 1), os.path.basename(uri))
|
||||||
if not check and os.access(fpath, os.R_OK) and not force:
|
if not check and os.access(fpath, os.R_OK) and not force:
|
||||||
logger.debug(1, "%s already exists, skipping checkout." % fpath)
|
logger.debug(1, "%s already exists, skipping checkout.", fpath)
|
||||||
return fpath
|
return fpath
|
||||||
|
|
||||||
ld = d.createCopy()
|
ld = d.createCopy()
|
||||||
@@ -510,7 +513,7 @@ def try_mirrors(d, uri, mirrors, check = False, force = False):
|
|||||||
bb.fetch.MD5SumError):
|
bb.fetch.MD5SumError):
|
||||||
import sys
|
import sys
|
||||||
(type, value, traceback) = sys.exc_info()
|
(type, value, traceback) = sys.exc_info()
|
||||||
logger.debug(2, "Mirror fetch failure: %s" % value)
|
logger.debug(2, "Mirror fetch failure: %s", value)
|
||||||
removefile(ud.localpath)
|
removefile(ud.localpath)
|
||||||
continue
|
continue
|
||||||
return None
|
return None
|
||||||
|
|||||||
Reference in New Issue
Block a user