mirror of
https://git.yoctoproject.org/poky
synced 2026-06-03 01:40:07 +00:00
Convert tab indentation in python functions into four-space
(From OE-Core rev: 604d46c686d06d62d5a07b9c7f4fa170f99307d8) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
+45
-45
@@ -185,18 +185,18 @@ def sstate_installpkg(ss, d):
|
||||
staging_target = d.getVar('STAGING_DIR_TARGET', True)
|
||||
staging_host = d.getVar('STAGING_DIR_HOST', True)
|
||||
|
||||
if bb.data.inherits_class('native', d) or bb.data.inherits_class('nativesdk', d) or bb.data.inherits_class('crosssdk', d) or bb.data.inherits_class('cross-canadian', d):
|
||||
sstate_sed_cmd = "sed -i -e 's:FIXMESTAGINGDIR:%s:g'" % (staging)
|
||||
elif bb.data.inherits_class('cross', d):
|
||||
sstate_sed_cmd = "sed -i -e 's:FIXMESTAGINGDIRTARGET:%s:g; s:FIXMESTAGINGDIR:%s:g'" % (staging_target, staging)
|
||||
else:
|
||||
sstate_sed_cmd = "sed -i -e 's:FIXMESTAGINGDIRHOST:%s:g'" % (staging_host)
|
||||
if bb.data.inherits_class('native', d) or bb.data.inherits_class('nativesdk', d) or bb.data.inherits_class('crosssdk', d) or bb.data.inherits_class('cross-canadian', d):
|
||||
sstate_sed_cmd = "sed -i -e 's:FIXMESTAGINGDIR:%s:g'" % (staging)
|
||||
elif bb.data.inherits_class('cross', d):
|
||||
sstate_sed_cmd = "sed -i -e 's:FIXMESTAGINGDIRTARGET:%s:g; s:FIXMESTAGINGDIR:%s:g'" % (staging_target, staging)
|
||||
else:
|
||||
sstate_sed_cmd = "sed -i -e 's:FIXMESTAGINGDIRHOST:%s:g'" % (staging_host)
|
||||
|
||||
# Add sstateinst to each filename in fixmepath, use xargs to efficiently call sed
|
||||
sstate_hardcode_cmd = "sed -e 's:^:%s:g' %s | xargs %s" % (sstateinst, fixmefn, sstate_sed_cmd)
|
||||
# Add sstateinst to each filename in fixmepath, use xargs to efficiently call sed
|
||||
sstate_hardcode_cmd = "sed -e 's:^:%s:g' %s | xargs %s" % (sstateinst, fixmefn, sstate_sed_cmd)
|
||||
|
||||
print "Replacing fixme paths in sstate package: %s" % (sstate_hardcode_cmd)
|
||||
subprocess.call(sstate_hardcode_cmd, shell=True)
|
||||
print "Replacing fixme paths in sstate package: %s" % (sstate_hardcode_cmd)
|
||||
subprocess.call(sstate_hardcode_cmd, shell=True)
|
||||
|
||||
# Need to remove this or we'd copy it into the target directory and may
|
||||
# conflict with another writer
|
||||
@@ -310,50 +310,50 @@ python sstate_cleanall() {
|
||||
}
|
||||
|
||||
def sstate_hardcode_path(d):
|
||||
import subprocess
|
||||
import subprocess
|
||||
|
||||
# Need to remove hardcoded paths and fix these when we install the
|
||||
# staging packages.
|
||||
#
|
||||
# Note: the logic in this function needs to match the reverse logic
|
||||
# in sstate_installpkg(ss, d)
|
||||
# Need to remove hardcoded paths and fix these when we install the
|
||||
# staging packages.
|
||||
#
|
||||
# Note: the logic in this function needs to match the reverse logic
|
||||
# in sstate_installpkg(ss, d)
|
||||
|
||||
staging = d.getVar('STAGING_DIR', True)
|
||||
staging_target = d.getVar('STAGING_DIR_TARGET', True)
|
||||
staging_host = d.getVar('STAGING_DIR_HOST', True)
|
||||
sstate_builddir = d.getVar('SSTATE_BUILDDIR', True)
|
||||
staging = d.getVar('STAGING_DIR', True)
|
||||
staging_target = d.getVar('STAGING_DIR_TARGET', True)
|
||||
staging_host = d.getVar('STAGING_DIR_HOST', True)
|
||||
sstate_builddir = d.getVar('SSTATE_BUILDDIR', True)
|
||||
|
||||
if bb.data.inherits_class('native', d) or bb.data.inherits_class('nativesdk', d) or bb.data.inherits_class('crosssdk', d) or bb.data.inherits_class('cross-canadian', d):
|
||||
sstate_grep_cmd = "grep -l -e '%s'" % (staging)
|
||||
sstate_sed_cmd = "sed -i -e 's:%s:FIXMESTAGINGDIR:g'" % (staging)
|
||||
elif bb.data.inherits_class('cross', d):
|
||||
sstate_grep_cmd = "grep -l -e '(%s|%s)'" % (staging_target, staging)
|
||||
sstate_sed_cmd = "sed -i -e 's:%s:FIXMESTAGINGDIRTARGET:g; s:%s:FIXMESTAGINGDIR:g'" % (staging_target, staging)
|
||||
else:
|
||||
sstate_grep_cmd = "grep -l -e '%s'" % (staging_host)
|
||||
sstate_sed_cmd = "sed -i -e 's:%s:FIXMESTAGINGDIRHOST:g'" % (staging_host)
|
||||
|
||||
fixmefn = sstate_builddir + "fixmepath"
|
||||
if bb.data.inherits_class('native', d) or bb.data.inherits_class('nativesdk', d) or bb.data.inherits_class('crosssdk', d) or bb.data.inherits_class('cross-canadian', d):
|
||||
sstate_grep_cmd = "grep -l -e '%s'" % (staging)
|
||||
sstate_sed_cmd = "sed -i -e 's:%s:FIXMESTAGINGDIR:g'" % (staging)
|
||||
elif bb.data.inherits_class('cross', d):
|
||||
sstate_grep_cmd = "grep -l -e '(%s|%s)'" % (staging_target, staging)
|
||||
sstate_sed_cmd = "sed -i -e 's:%s:FIXMESTAGINGDIRTARGET:g; s:%s:FIXMESTAGINGDIR:g'" % (staging_target, staging)
|
||||
else:
|
||||
sstate_grep_cmd = "grep -l -e '%s'" % (staging_host)
|
||||
sstate_sed_cmd = "sed -i -e 's:%s:FIXMESTAGINGDIRHOST:g'" % (staging_host)
|
||||
|
||||
fixmefn = sstate_builddir + "fixmepath"
|
||||
|
||||
sstate_scan_cmd = d.getVar('SSTATE_SCAN_CMD', True)
|
||||
sstate_filelist_cmd = "tee %s" % (fixmefn)
|
||||
sstate_scan_cmd = d.getVar('SSTATE_SCAN_CMD', True)
|
||||
sstate_filelist_cmd = "tee %s" % (fixmefn)
|
||||
|
||||
# fixmepath file needs relative paths, drop sstate_builddir prefix
|
||||
sstate_filelist_relative_cmd = "sed -i -e 's:^%s::g' %s" % (sstate_builddir, fixmefn)
|
||||
# fixmepath file needs relative paths, drop sstate_builddir prefix
|
||||
sstate_filelist_relative_cmd = "sed -i -e 's:^%s::g' %s" % (sstate_builddir, fixmefn)
|
||||
|
||||
# Limit the fixpaths and sed operations based on the initial grep search
|
||||
# This has the side effect of making sure the vfs cache is hot
|
||||
sstate_hardcode_cmd = "%s | xargs %s | %s | xargs --no-run-if-empty %s" % (sstate_scan_cmd, sstate_grep_cmd, sstate_filelist_cmd, sstate_sed_cmd)
|
||||
# Limit the fixpaths and sed operations based on the initial grep search
|
||||
# This has the side effect of making sure the vfs cache is hot
|
||||
sstate_hardcode_cmd = "%s | xargs %s | %s | xargs --no-run-if-empty %s" % (sstate_scan_cmd, sstate_grep_cmd, sstate_filelist_cmd, sstate_sed_cmd)
|
||||
|
||||
print "Removing hardcoded paths from sstate package: '%s'" % (sstate_hardcode_cmd)
|
||||
subprocess.call(sstate_hardcode_cmd, shell=True)
|
||||
print "Removing hardcoded paths from sstate package: '%s'" % (sstate_hardcode_cmd)
|
||||
subprocess.call(sstate_hardcode_cmd, shell=True)
|
||||
|
||||
# If the fixmefn is empty, remove it..
|
||||
if os.stat(fixmefn).st_size == 0:
|
||||
os.remove(fixmefn)
|
||||
else:
|
||||
print "Replacing absolute paths in fixmepath file: '%s'" % (sstate_filelist_relative_cmd)
|
||||
subprocess.call(sstate_filelist_relative_cmd, shell=True)
|
||||
if os.stat(fixmefn).st_size == 0:
|
||||
os.remove(fixmefn)
|
||||
else:
|
||||
print "Replacing absolute paths in fixmepath file: '%s'" % (sstate_filelist_relative_cmd)
|
||||
subprocess.call(sstate_filelist_relative_cmd, shell=True)
|
||||
|
||||
def sstate_package(ss, d):
|
||||
import oe.path
|
||||
|
||||
Reference in New Issue
Block a user