mirror of
https://git.yoctoproject.org/poky
synced 2026-06-15 17:50:07 +00:00
Convert to use direct access to the data store (instead of bb.data.*Var*())
This is the result of running the following over the metadata: sed \ -e 's:bb.data.\(setVar([^,()]*,[^,()]*\), *\([^ )]*\) *):\2.\1):g' \ -e 's:bb.data.\(setVarFlag([^,()]*,[^,()]*,[^,()]*\), *\([^) ]*\) *):\2.\1):g' \ -e 's:bb.data.\(getVar([^,()]*\), *\([^(), ]*\) *,\([^)]*\)):\2.\1,\3):g' \ -e 's:bb.data.\(getVarFlag([^,()]*,[^,()]*\), *\([^(), ]*\) *,\([^)]*\)):\2.\1,\3):g' \ -e 's:bb.data.\(getVarFlag([^,()]*,[^,()]*\), *\([^() ]*\) *):\2.\1):g' \ -e 's:bb.data.\(getVar([^,()]*\), *\([^) ]*\) *):\2.\1):g' \ -i `grep -ril bb.data *` (From OE-Core rev: b22831fd63164c4db9c0b72934d7d734a6585251) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
python do_pkg_write_metainfo () {
|
||||
deploydir = bb.data.getVar('DEPLOY_DIR', d, 1)
|
||||
deploydir = d.getVar('DEPLOY_DIR', 1)
|
||||
if not deploydir:
|
||||
bb.error("DEPLOY_DIR not defined, unable to write package info")
|
||||
return
|
||||
@@ -9,11 +9,11 @@ python do_pkg_write_metainfo () {
|
||||
except OSError:
|
||||
raise bb.build.FuncFailed("unable to open package-info file for writing.")
|
||||
|
||||
name = bb.data.getVar('PN', d, 1)
|
||||
version = bb.data.getVar('PV', d, 1)
|
||||
desc = bb.data.getVar('DESCRIPTION', d, 1)
|
||||
page = bb.data.getVar('HOMEPAGE', d, 1)
|
||||
lic = bb.data.getVar('LICENSE', d, 1)
|
||||
name = d.getVar('PN', 1)
|
||||
version = d.getVar('PV', 1)
|
||||
desc = d.getVar('DESCRIPTION', 1)
|
||||
page = d.getVar('HOMEPAGE', 1)
|
||||
lic = d.getVar('LICENSE', 1)
|
||||
|
||||
infofile.write("|| "+ name +" || "+ version + " || "+ desc +" || "+ page +" || "+ lic + " ||\n" )
|
||||
infofile.close()
|
||||
|
||||
Reference in New Issue
Block a user