mirror of
https://git.yoctoproject.org/poky
synced 2026-09-13 09:49:32 +02: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:
@@ -1,22 +1,22 @@
|
||||
python do_pkg_write_metainfo () {
|
||||
deploydir = d.getVar('DEPLOY_DIR', True)
|
||||
if not deploydir:
|
||||
bb.error("DEPLOY_DIR not defined, unable to write package info")
|
||||
return
|
||||
deploydir = d.getVar('DEPLOY_DIR', True)
|
||||
if not deploydir:
|
||||
bb.error("DEPLOY_DIR not defined, unable to write package info")
|
||||
return
|
||||
|
||||
try:
|
||||
infofile = file(os.path.join(deploydir, 'package-metainfo'), 'a')
|
||||
except OSError:
|
||||
raise bb.build.FuncFailed("unable to open package-info file for writing.")
|
||||
|
||||
name = d.getVar('PN', True)
|
||||
version = d.getVar('PV', True)
|
||||
desc = d.getVar('DESCRIPTION', True)
|
||||
page = d.getVar('HOMEPAGE', True)
|
||||
lic = d.getVar('LICENSE', True)
|
||||
|
||||
infofile.write("|| "+ name +" || "+ version + " || "+ desc +" || "+ page +" || "+ lic + " ||\n" )
|
||||
infofile.close()
|
||||
try:
|
||||
infofile = file(os.path.join(deploydir, 'package-metainfo'), 'a')
|
||||
except OSError:
|
||||
raise bb.build.FuncFailed("unable to open package-info file for writing.")
|
||||
|
||||
name = d.getVar('PN', True)
|
||||
version = d.getVar('PV', True)
|
||||
desc = d.getVar('DESCRIPTION', True)
|
||||
page = d.getVar('HOMEPAGE', True)
|
||||
lic = d.getVar('LICENSE', True)
|
||||
|
||||
infofile.write("|| "+ name +" || "+ version + " || "+ desc +" || "+ page +" || "+ lic + " ||\n" )
|
||||
infofile.close()
|
||||
}
|
||||
|
||||
addtask pkg_write_metainfo after do_package before do_build
|
||||
addtask pkg_write_metainfo after do_package before do_build
|
||||
|
||||
Reference in New Issue
Block a user