mirror of
https://git.yoctoproject.org/poky
synced 2026-07-16 03:47:03 +00:00
Remove a number of unneeded import os/bb calls
The bb and os modules are always imported so having these extra import calls are a waste of space/execution time. They also set a bad example for people copy and pasting code so clean them up. (From OE-Core rev: 7d674820958be3a7051ea619effe1a6061d9cbe2) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -76,7 +76,6 @@ def tar_filter(d):
|
||||
def get_bb_inc(d):
|
||||
'''create a directory "script-logs" including .bb and .inc file in ${WORKDIR}'''
|
||||
import re
|
||||
import os
|
||||
import shutil
|
||||
|
||||
bbinc = []
|
||||
@@ -154,7 +153,6 @@ def get_series(d):
|
||||
|
||||
def get_applying_patches(d):
|
||||
"""only copy applying patches to a pointed directory which will be archived to tarball"""
|
||||
import os
|
||||
import shutil
|
||||
|
||||
|
||||
@@ -174,7 +172,6 @@ def get_applying_patches(d):
|
||||
|
||||
def not_tarball(d):
|
||||
'''packages including key words 'work-shared','native', 'task-' will be passed'''
|
||||
import os
|
||||
|
||||
workdir = d.getVar('WORKDIR',True)
|
||||
s = d.getVar('S',True)
|
||||
|
||||
@@ -14,7 +14,7 @@ OE_IMPORTS += "os sys time oe.path oe.utils oe.data oe.packagegroup oe.sstatesig
|
||||
OE_IMPORTS[type] = "list"
|
||||
|
||||
def oe_import(d):
|
||||
import os, sys
|
||||
import sys
|
||||
|
||||
bbpath = d.getVar("BBPATH", True).split(":")
|
||||
sys.path[0:0] = [os.path.join(dir, "lib") for dir in bbpath]
|
||||
@@ -117,11 +117,9 @@ GIT_CONFIG_PATH = "${STAGING_DIR_NATIVE}/etc"
|
||||
GIT_CONFIG = "${GIT_CONFIG_PATH}/gitconfig"
|
||||
|
||||
def generate_git_config(e):
|
||||
from bb import data
|
||||
|
||||
if data.getVar('GIT_CORE_CONFIG', e.data, True):
|
||||
if e.data.getVar('GIT_CORE_CONFIG', True):
|
||||
gitconfig_path = e.data.getVar('GIT_CONFIG', True)
|
||||
proxy_command = " gitProxy = %s\n" % data.getVar('OE_GIT_PROXY_COMMAND', e.data, True)
|
||||
proxy_command = " gitProxy = %s\n" % e.data.getVar('OE_GIT_PROXY_COMMAND', True)
|
||||
|
||||
bb.mkdirhier(e.data.expand("${GIT_CONFIG_PATH}"))
|
||||
if (os.path.exists(gitconfig_path)):
|
||||
@@ -129,7 +127,7 @@ def generate_git_config(e):
|
||||
|
||||
f = open(gitconfig_path, 'w')
|
||||
f.write("[core]\n")
|
||||
ignore_hosts = data.getVar('GIT_PROXY_IGNORE', e.data, True).split()
|
||||
ignore_hosts = e.data.getVar('GIT_PROXY_IGNORE', True).split()
|
||||
for ignore_host in ignore_hosts:
|
||||
f.write(" gitProxy = none for %s\n" % ignore_host)
|
||||
f.write(proxy_command)
|
||||
|
||||
@@ -72,7 +72,7 @@ def bugzilla_add_comment(debug_file, server, args, bug_number, text):
|
||||
|
||||
addhandler bugzilla_eventhandler
|
||||
python bugzilla_eventhandler() {
|
||||
import bb, os, glob
|
||||
import glob
|
||||
import xmlrpclib, httplib
|
||||
|
||||
class ProxiedTransport(xmlrpclib.Transport):
|
||||
|
||||
@@ -414,9 +414,6 @@ buildhistory_commit() {
|
||||
}
|
||||
|
||||
python buildhistory_eventhandler() {
|
||||
import bb.build
|
||||
import bb.event
|
||||
|
||||
if isinstance(e, bb.event.BuildCompleted):
|
||||
if e.data.getVar('BUILDHISTORY_FEATURES', True).strip():
|
||||
if e.data.getVar("BUILDHISTORY_COMMIT", True) == "1":
|
||||
|
||||
@@ -58,7 +58,6 @@ def copyleft_should_include(d):
|
||||
|
||||
python do_prepare_copyleft_sources () {
|
||||
"""Populate a tree of the recipe sources and emit patch series files"""
|
||||
import os.path
|
||||
import shutil
|
||||
|
||||
p = d.getVar('P', True)
|
||||
|
||||
@@ -654,7 +654,6 @@ do_distro_check[nostamp] = "1"
|
||||
python do_distro_check() {
|
||||
"""checks if the package is present in other public Linux distros"""
|
||||
import oe.distro_check as dc
|
||||
import bb
|
||||
import shutil
|
||||
if bb.data.inherits_class('native', d) or bb.data.inherits_class('cross', d) or bb.data.inherits_class('sdk', d) or bb.data.inherits_class('crosssdk', d) or bb.data.inherits_class('nativesdk',d):
|
||||
return
|
||||
@@ -704,8 +703,6 @@ python checklicense_eventhandler() {
|
||||
addtask checklicense
|
||||
do_checklicense[nostamp] = "1"
|
||||
python do_checklicense() {
|
||||
import os
|
||||
import bb
|
||||
import shutil
|
||||
logpath = d.getVar('LOG_DIR', True)
|
||||
bb.utils.mkdirhier(logpath)
|
||||
|
||||
@@ -26,7 +26,6 @@ do_qemuimagetest_standalone[depends] += "qemu-native:do_populate_sysroot"
|
||||
def qemuimagetest_main(d):
|
||||
import sys
|
||||
import re
|
||||
import os
|
||||
import shutil
|
||||
import subprocess
|
||||
|
||||
|
||||
@@ -188,7 +188,7 @@ do_kernel_configme() {
|
||||
}
|
||||
|
||||
python do_kernel_configcheck() {
|
||||
import bb, re, string, sys, commands
|
||||
import re, string, sys, commands
|
||||
|
||||
bb.plain("NOTE: validating kernel configuration")
|
||||
|
||||
|
||||
@@ -118,7 +118,7 @@ do_collect_bins_from_locale_tree() {
|
||||
inherit qemu
|
||||
|
||||
python package_do_split_gconvs () {
|
||||
import os, re
|
||||
import re
|
||||
if (d.getVar('PACKAGE_NO_GCONV', True) == '1'):
|
||||
bb.note("package requested not splitting gconvs")
|
||||
return
|
||||
|
||||
@@ -143,8 +143,6 @@ python do_populate_lic() {
|
||||
"""
|
||||
Populate LICENSE_DIRECTORY with licenses.
|
||||
"""
|
||||
import os
|
||||
import bb
|
||||
import shutil
|
||||
import oe.license
|
||||
|
||||
|
||||
@@ -444,7 +444,7 @@ python perform_packagecopy () {
|
||||
# seeding this list with reasonable defaults, then load from
|
||||
# the fs-perms.txt files
|
||||
python fixup_perms () {
|
||||
import os, pwd, grp
|
||||
import pwd, grp
|
||||
|
||||
# init using a string with the same format as a line as documented in
|
||||
# the fs-perms.txt file
|
||||
|
||||
@@ -637,7 +637,6 @@ python write_specfile () {
|
||||
array.append("%s: %s" % (tag, dep))
|
||||
|
||||
def walk_files(walkpath, target, conffiles):
|
||||
import os
|
||||
for rootpath, dirs, files in os.walk(walkpath):
|
||||
path = rootpath.replace(walkpath, "")
|
||||
for dir in dirs:
|
||||
@@ -996,8 +995,6 @@ python write_specfile () {
|
||||
}
|
||||
|
||||
python do_package_rpm () {
|
||||
import os
|
||||
|
||||
def creat_srpm_dir(d):
|
||||
if d.getVar('SOURCE_ARCHIVE_PACKAGE_TYPE', True) and d.getVar('SOURCE_ARCHIVE_PACKAGE_TYPE', True).upper() == 'SRPM':
|
||||
clean_licenses = get_licenses(d)
|
||||
|
||||
@@ -4,8 +4,6 @@
|
||||
#
|
||||
|
||||
def qemu_target_binary(data):
|
||||
import bb
|
||||
|
||||
target_arch = data.getVar("TARGET_ARCH", True)
|
||||
if target_arch in ("i486", "i586", "i686"):
|
||||
target_arch = "i386"
|
||||
|
||||
@@ -55,7 +55,6 @@ def can_use_autotools_base(cfgdata, d):
|
||||
if cfg.find(i) != -1:
|
||||
return False
|
||||
|
||||
import os
|
||||
for clsfile in d.getVar("__inherit_cache", 0):
|
||||
(base, _) = os.path.splitext(os.path.basename(clsfile))
|
||||
if cfg.find("%s_do_configure" % base) != -1:
|
||||
@@ -146,9 +145,7 @@ do_recipe_sanity_all () {
|
||||
addtask recipe_sanity_all after do_recipe_sanity
|
||||
|
||||
python recipe_sanity_eh () {
|
||||
from bb.event import getName
|
||||
|
||||
if getName(e) != "ConfigParsed":
|
||||
if bb.event.getName(e) != "ConfigParsed":
|
||||
return
|
||||
|
||||
d = e.data
|
||||
|
||||
@@ -254,8 +254,6 @@ def check_supported_distro(sanity_data):
|
||||
|
||||
# Checks we should only make if MACHINE is set correctly
|
||||
def check_sanity_validmachine(sanity_data):
|
||||
from bb import data
|
||||
|
||||
messages = ""
|
||||
|
||||
# Check TUNE_ARCH is set
|
||||
@@ -291,7 +289,6 @@ def check_sanity_validmachine(sanity_data):
|
||||
|
||||
|
||||
def check_sanity(sanity_data):
|
||||
from bb import note, error, data, __version__
|
||||
import subprocess
|
||||
|
||||
try:
|
||||
@@ -319,8 +316,8 @@ def check_sanity(sanity_data):
|
||||
if sys.hexversion < 0x020600F0:
|
||||
messages = messages + 'The system requires at least Python 2.6 to run. Please update your Python interpreter.\n'
|
||||
|
||||
if (LooseVersion(__version__) < LooseVersion(minversion)):
|
||||
messages = messages + 'Bitbake version %s is required and version %s was found\n' % (minversion, __version__)
|
||||
if (LooseVersion(bb.__version__) < LooseVersion(minversion)):
|
||||
messages = messages + 'Bitbake version %s is required and version %s was found\n' % (minversion, bb.__version__)
|
||||
|
||||
# Check that the MACHINE is valid, if it is set
|
||||
if sanity_data.getVar('MACHINE', True):
|
||||
|
||||
@@ -55,22 +55,22 @@ def tinder_format_http_post(d,status,log):
|
||||
|
||||
# the variables we will need to send on this form post
|
||||
variables = {
|
||||
"tree" : data.getVar('TINDER_TREE', d, True),
|
||||
"machine_name" : data.getVar('TINDER_MACHINE', d, True),
|
||||
"tree" : d.getVar('TINDER_TREE', True),
|
||||
"machine_name" : d.getVar('TINDER_MACHINE', True),
|
||||
"os" : os.uname()[0],
|
||||
"os_version" : os.uname()[2],
|
||||
"compiler" : "gcc",
|
||||
"clobber" : data.getVar('TINDER_CLOBBER', d, True) or "0",
|
||||
"srcdate" : data.getVar('SRCDATE', d, True),
|
||||
"PN" : data.getVar('PN', d, True),
|
||||
"PV" : data.getVar('PV', d, True),
|
||||
"PR" : data.getVar('PR', d, True),
|
||||
"FILE" : data.getVar('FILE', d, True) or "N/A",
|
||||
"TARGETARCH" : data.getVar('TARGET_ARCH', d, True),
|
||||
"TARGETFPU" : data.getVar('TARGET_FPU', d, True) or "Unknown",
|
||||
"TARGETOS" : data.getVar('TARGET_OS', d, True) or "Unknown",
|
||||
"MACHINE" : data.getVar('MACHINE', d, True) or "Unknown",
|
||||
"DISTRO" : data.getVar('DISTRO', d, True) or "Unknown",
|
||||
"clobber" : d.getVar('TINDER_CLOBBER', True) or "0",
|
||||
"srcdate" : d.getVar('SRCDATE', True),
|
||||
"PN" : d.getVar('PN', True),
|
||||
"PV" : d.getVar('PV', True),
|
||||
"PR" : d.getVar('PR', True),
|
||||
"FILE" : d.getVar('FILE', True) or "N/A",
|
||||
"TARGETARCH" : d.getVar('TARGET_ARCH', True),
|
||||
"TARGETFPU" : d.getVar('TARGET_FPU', True) or "Unknown",
|
||||
"TARGETOS" : d.getVar('TARGET_OS', True) or "Unknown",
|
||||
"MACHINE" : d.getVar('MACHINE', True) or "Unknown",
|
||||
"DISTRO" : d.getVar('DISTRO', True) or "Unknown",
|
||||
"zecke-rocks" : "sure",
|
||||
}
|
||||
|
||||
@@ -82,7 +82,7 @@ def tinder_format_http_post(d,status,log):
|
||||
# we only need on build_status.pl but sending it
|
||||
# always does not hurt
|
||||
try:
|
||||
f = file(data.getVar('TMPDIR',d,True)+'/tinder-machine.id', 'r')
|
||||
f = file(d.getVar('TMPDIR',True)+'/tinder-machine.id', 'r')
|
||||
id = f.read()
|
||||
variables['machine_id'] = id
|
||||
except:
|
||||
@@ -103,12 +103,11 @@ def tinder_build_start(d):
|
||||
by posting our name and tree to the build_start.pl script
|
||||
on the server.
|
||||
"""
|
||||
from bb import data
|
||||
|
||||
# get the body and type
|
||||
content_type, body = tinder_format_http_post(d,None,None)
|
||||
server = data.getVar('TINDER_HOST', d, True )
|
||||
url = data.getVar('TINDER_URL', d, True )
|
||||
server = d.getVar('TINDER_HOST', True )
|
||||
url = d.getVar('TINDER_URL', True )
|
||||
|
||||
selector = url + "/xml/build_start.pl"
|
||||
|
||||
@@ -128,7 +127,7 @@ def tinder_build_start(d):
|
||||
|
||||
# now we will need to save the machine number
|
||||
# we will override any previous numbers
|
||||
f = file(data.getVar('TMPDIR', d, True)+"/tinder-machine.id", 'w')
|
||||
f = file(d.getVar('TMPDIR', True)+"/tinder-machine.id", 'w')
|
||||
f.write(report)
|
||||
|
||||
|
||||
@@ -136,12 +135,10 @@ def tinder_send_http(d, status, _log):
|
||||
"""
|
||||
Send this log as build status
|
||||
"""
|
||||
from bb import data
|
||||
|
||||
|
||||
# get the body and type
|
||||
server = data.getVar('TINDER_HOST', d, True )
|
||||
url = data.getVar('TINDER_URL', d, True )
|
||||
server = d.getVar('TINDER_HOST', True)
|
||||
url = d.getVar('TINDER_URL', True)
|
||||
|
||||
selector = url + "/xml/build_status.pl"
|
||||
|
||||
@@ -162,22 +159,20 @@ def tinder_print_info(d):
|
||||
we use.
|
||||
"""
|
||||
|
||||
from bb import data
|
||||
# get the local vars
|
||||
|
||||
time = tinder_time_string()
|
||||
ops = os.uname()[0]
|
||||
version = os.uname()[2]
|
||||
url = data.getVar( 'TINDER_URL' , d, True )
|
||||
tree = data.getVar( 'TINDER_TREE', d, True )
|
||||
branch = data.getVar( 'TINDER_BRANCH', d, True )
|
||||
srcdate = data.getVar( 'SRCDATE', d, True )
|
||||
machine = data.getVar( 'MACHINE', d, True )
|
||||
distro = data.getVar( 'DISTRO', d, True )
|
||||
bbfiles = data.getVar( 'BBFILES', d, True )
|
||||
tarch = data.getVar( 'TARGET_ARCH', d, True )
|
||||
fpu = data.getVar( 'TARGET_FPU', d, True )
|
||||
oerev = data.getVar( 'OE_REVISION', d, True ) or "unknown"
|
||||
url = d.getVar( 'TINDER_URL' , True )
|
||||
tree = d.getVar( 'TINDER_TREE', True )
|
||||
branch = d.getVar( 'TINDER_BRANCH', True )
|
||||
srcdate = d.getVar( 'SRCDATE', True )
|
||||
machine = d.getVar( 'MACHINE', True )
|
||||
distro = d.getVar( 'DISTRO', True )
|
||||
bbfiles = d.getVar( 'BBFILES', True )
|
||||
tarch = d.getVar( 'TARGET_ARCH', True )
|
||||
fpu = d.getVar( 'TARGET_FPU', True )
|
||||
oerev = d.getVar( 'OE_REVISION', True ) or "unknown"
|
||||
|
||||
# there is a bug with tipple quoted strings
|
||||
# i will work around but will fix the original
|
||||
@@ -212,8 +207,6 @@ def tinder_print_env():
|
||||
"""
|
||||
Print the environment variables of this build
|
||||
"""
|
||||
from bb import data
|
||||
|
||||
time_start = tinder_time_string()
|
||||
time_end = tinder_time_string()
|
||||
|
||||
@@ -272,12 +265,10 @@ def tinder_do_tinder_report(event):
|
||||
BuildCompleted Event. In this case we have to look up the status and
|
||||
send it instead of 100/success.
|
||||
"""
|
||||
from bb.event import getName
|
||||
from bb import data, mkdirhier, build
|
||||
import glob
|
||||
|
||||
# variables
|
||||
name = getName(event)
|
||||
name = bb.event.getName(event)
|
||||
log = ""
|
||||
status = 1
|
||||
# Check what we need to do Build* shows we start or are done
|
||||
@@ -287,7 +278,7 @@ def tinder_do_tinder_report(event):
|
||||
|
||||
try:
|
||||
# truncate the tinder log file
|
||||
f = file(data.getVar('TINDER_LOG', event.data, True), 'w')
|
||||
f = file(event.data.getVar('TINDER_LOG', True), 'w')
|
||||
f.write("")
|
||||
f.close()
|
||||
except:
|
||||
@@ -296,7 +287,7 @@ def tinder_do_tinder_report(event):
|
||||
try:
|
||||
# write a status to the file. This is needed for the -k option
|
||||
# of BitBake
|
||||
g = file(data.getVar('TMPDIR', event.data, True)+"/tinder-status", 'w')
|
||||
g = file(event.data.getVar('TMPDIR', True)+"/tinder-status", 'w')
|
||||
g.write("")
|
||||
g.close()
|
||||
except IOError:
|
||||
@@ -305,10 +296,10 @@ def tinder_do_tinder_report(event):
|
||||
# Append the Task-Log (compile,configure...) to the log file
|
||||
# we will send to the server
|
||||
if name == "TaskSucceeded" or name == "TaskFailed":
|
||||
log_file = glob.glob("%s/log.%s.*" % (data.getVar('T', event.data, True), event.task))
|
||||
log_file = glob.glob("%s/log.%s.*" % (event.data.getVar('T', True), event.task))
|
||||
|
||||
if len(log_file) != 0:
|
||||
to_file = data.getVar('TINDER_LOG', event.data, True)
|
||||
to_file = event.data.getVar('TINDER_LOG', True)
|
||||
log += "".join(open(log_file[0], 'r').readlines())
|
||||
|
||||
# set the right 'HEADER'/Summary for the TinderBox
|
||||
@@ -319,23 +310,23 @@ def tinder_do_tinder_report(event):
|
||||
elif name == "TaskFailed":
|
||||
log += "<--- TINDERBOX Task %s failed (FAILURE)\n" % event.task
|
||||
elif name == "PkgStarted":
|
||||
log += "---> TINDERBOX Package %s started\n" % data.getVar('PF', event.data, True)
|
||||
log += "---> TINDERBOX Package %s started\n" % event.data.getVar('PF', True)
|
||||
elif name == "PkgSucceeded":
|
||||
log += "<--- TINDERBOX Package %s done (SUCCESS)\n" % data.getVar('PF', event.data, True)
|
||||
log += "<--- TINDERBOX Package %s done (SUCCESS)\n" % event.data.getVar('PF', True)
|
||||
elif name == "PkgFailed":
|
||||
if not data.getVar('TINDER_AUTOBUILD', event.data, True) == "0":
|
||||
if not event.data.getVar('TINDER_AUTOBUILD', True) == "0":
|
||||
build.exec_task('do_clean', event.data)
|
||||
log += "<--- TINDERBOX Package %s failed (FAILURE)\n" % data.getVar('PF', event.data, True)
|
||||
log += "<--- TINDERBOX Package %s failed (FAILURE)\n" % event.data.getVar('PF', True)
|
||||
status = 200
|
||||
# remember the failure for the -k case
|
||||
h = file(data.getVar('TMPDIR', event.data, True)+"/tinder-status", 'w')
|
||||
h = file(event.data.getVar('TMPDIR', True)+"/tinder-status", 'w')
|
||||
h.write("200")
|
||||
elif name == "BuildCompleted":
|
||||
log += "Build Completed\n"
|
||||
status = 100
|
||||
# Check if we have a old status...
|
||||
try:
|
||||
h = file(data.getVar('TMPDIR',event.data,True)+'/tinder-status', 'r')
|
||||
h = file(event.data.getVar('TMPDIR',True)+'/tinder-status', 'r')
|
||||
status = int(h.read())
|
||||
except:
|
||||
pass
|
||||
@@ -351,7 +342,7 @@ def tinder_do_tinder_report(event):
|
||||
log += "Error:Was Runtime: %d\n" % event.isRuntime()
|
||||
status = 200
|
||||
# remember the failure for the -k case
|
||||
h = file(data.getVar('TMPDIR', event.data, True)+"/tinder-status", 'w')
|
||||
h = file(event.data.getVar('TMPDIR', True)+"/tinder-status", 'w')
|
||||
h.write("200")
|
||||
|
||||
# now post the log
|
||||
@@ -366,13 +357,10 @@ def tinder_do_tinder_report(event):
|
||||
# we want to be an event handler
|
||||
addhandler tinderclient_eventhandler
|
||||
python tinderclient_eventhandler() {
|
||||
from bb import note, error, data
|
||||
from bb.event import getName
|
||||
|
||||
if e.data is None or getName(e) == "MsgNote":
|
||||
if e.data is None or bb.event.getName(e) == "MsgNote":
|
||||
return
|
||||
|
||||
do_tinder_report = data.getVar('TINDER_REPORT', e.data, True)
|
||||
do_tinder_report = e.data.getVar('TINDER_REPORT', True)
|
||||
if do_tinder_report and do_tinder_report == "1":
|
||||
tinder_do_tinder_report(e)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user