mirror of
https://git.yoctoproject.org/poky
synced 2026-06-03 13:49:49 +00:00
classes/lib: Update to match python3 iter requirements
python3 standardises its use of iteration operations. Update the code to match the for python3 requires. (From OE-Core rev: 2476bdcbef591e951d11d57d53f1315848758571) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -838,7 +838,7 @@ python write_srcrev() {
|
||||
f.write('# SRCREV_%s = "%s"\n' % (name, orig_srcrev))
|
||||
f.write('SRCREV_%s = "%s"\n' % (name, srcrev))
|
||||
else:
|
||||
f.write('SRCREV = "%s"\n' % srcrevs.itervalues().next())
|
||||
f.write('SRCREV = "%s"\n' % srcrevs.values())
|
||||
if len(tag_srcrevs) > 0:
|
||||
for name, srcrev in tag_srcrevs.items():
|
||||
f.write('# tag_%s = "%s"\n' % (name, srcrev))
|
||||
|
||||
@@ -200,7 +200,7 @@ def get_deployed_dependencies(d):
|
||||
# it might contain the bootloader.
|
||||
taskdata = d.getVar("BB_TASKDEPDATA", False)
|
||||
depends = list(set([dep[0] for dep
|
||||
in taskdata.itervalues()
|
||||
in list(taskdata.values())
|
||||
if not dep[0].endswith("-native")]))
|
||||
extra_depends = d.getVar("EXTRA_IMAGEDEPENDS", True)
|
||||
boot_depends = get_boot_dependencies(d)
|
||||
@@ -261,7 +261,7 @@ def get_boot_dependencies(d):
|
||||
depends.append(dep)
|
||||
# We need to search for the provider of the dependency
|
||||
else:
|
||||
for taskdep in taskdepdata.itervalues():
|
||||
for taskdep in taskdepdata.values():
|
||||
# The fifth field contains what the task provides
|
||||
if dep in taskdep[4]:
|
||||
info_file = os.path.join(
|
||||
|
||||
@@ -45,7 +45,7 @@ def get_sdk_install_targets(d):
|
||||
sdk_install_targets = d.getVar('SDK_TARGETS', True)
|
||||
|
||||
depd = d.getVar('BB_TASKDEPDATA', False)
|
||||
for v in depd.itervalues():
|
||||
for v in depd.values():
|
||||
if v[1] == 'do_image_complete':
|
||||
if v[0] not in sdk_install_targets:
|
||||
sdk_install_targets += ' {}'.format(v[0])
|
||||
@@ -267,7 +267,7 @@ python copy_buildsystem () {
|
||||
# Ensure any variables set from the external environment (by way of
|
||||
# BB_ENV_EXTRAWHITE) are set in the SDK's configuration
|
||||
extralines = []
|
||||
for name, value in env_whitelist_values.iteritems():
|
||||
for name, value in env_whitelist_values.items():
|
||||
actualvalue = d.getVar(name, True) or ''
|
||||
if value != actualvalue:
|
||||
extralines.append('%s = "%s"\n' % (name, actualvalue))
|
||||
|
||||
Reference in New Issue
Block a user