]> code.ossystems Code Review - openembedded-core.git/commitdiff
meta: replace uses of bb.data.expand(VARNAME, d) with d.expand(VARNAME)
authorJoshua Lock <joshua.g.lock@intel.com>
Fri, 17 Mar 2017 15:53:09 +0000 (15:53 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 21 Mar 2017 22:42:59 +0000 (22:42 +0000)
bb.data.expand(x, d) is deprecated API.

[YOCTO #10678]

Signed-off-by: Joshua Lock <joshua.g.lock@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/classes/archiver.bbclass
meta/classes/package.bbclass
meta/classes/utility-tasks.bbclass
meta/lib/oe/patch.py
meta/recipes-extended/pam/libpam_1.3.0.bb
meta/recipes-multimedia/alsa/alsa-plugins_1.1.1.bb

index ee4790dd68b7eb47b9b048e2ab0552f5a6478489..2c04557f7925303f55d3f9695eded7480360075e 100644 (file)
@@ -365,7 +365,7 @@ python do_ar_recipe () {
         elif include_re.match(line):
             incfile = include_re.match(line).group(1)
         if incfile:
-            incfile = bb.data.expand(incfile, d)
+            incfile = d.expand(incfile)
             incfile = bb.utils.which(bbpath, incfile)
             if incfile:
                 shutil.copy(incfile, outdir)
index 467f5f1c5afe006ec8aa14669a051ac60f1960b9..034da840bde261b39e7f548960505d68ff5721f3 100644 (file)
@@ -778,7 +778,7 @@ python fixup_perms () {
         dir = d.getVar(path) or ""
         if dir == "":
             continue
-        fs_perms_table[dir] = fs_perms_entry(bb.data.expand("%s 0755 root root false - - -" % (dir), d))
+        fs_perms_table[dir] = fs_perms_entry(d.expand("%s 0755 root root false - - -" % (dir)))
 
     # Now we actually load from the configuration files
     for conf in get_fs_perms_list(d).split():
@@ -1801,7 +1801,7 @@ python package_do_pkgconfig () {
                         m = field_re.match(l)
                         if m:
                             hdr = m.group(1)
-                            exp = bb.data.expand(m.group(2), pd)
+                            exp = pd.expand(m.group(2))
                             if hdr == 'Requires':
                                 pkgconfig_needed[pkg] += exp.replace(',', ' ').split()
 
index da69c3a2fb12e193808b90f48f915a8482793d2f..587bfd4ab5b81a11479950ca9891a917abf205c0 100644 (file)
@@ -28,7 +28,7 @@ python do_clean() {
     bb.note("Removing " + dir)
     oe.path.remove(dir)
 
-    dir = "%s.*" % bb.data.expand(d.getVar('STAMP', False), d)
+    dir = "%s.*" % d.getVar('STAMP')
     bb.note("Removing " + dir)
     oe.path.remove(dir)
 
index aaa2d3aabdde3e4c9a3a359b3276915450f12210..f1ab3dd8096085f8cad4e68c97ba434df24ec163 100644 (file)
@@ -81,7 +81,7 @@ class PatchSet(object):
                 patch[param] = PatchSet.defaults[param]
 
         if patch.get("remote"):
-            patch["file"] = bb.data.expand(bb.fetch2.localpath(patch["remote"], self.d), self.d)
+            patch["file"] = self.d.expand(bb.fetch2.localpath(patch["remote"], self.d))
 
         patch["filemd5"] = bb.utils.md5_file(patch["file"])
 
index 67b9d53d33cc1b5fe8c0d6d51da2bb1afbf55e5d..df56d27627f0c6de79a19e282d3936ebd9db1488 100644 (file)
@@ -116,7 +116,7 @@ python populate_packages_prepend () {
         d.setVar('RPROVIDES_' + pkg, provides)
 
     mlprefix = d.getVar('MLPREFIX') or ''
-    dvar = bb.data.expand('${WORKDIR}/package', d, True)
+    dvar = d.expand('${WORKDIR}/package')
     pam_libdir = d.expand('${base_libdir}/security')
     pam_sbindir = d.expand('${sbindir}')
     pam_filterdir = d.expand('${base_libdir}/security/pam_filter')
index 3928fb1cb9bddc11e56b6a8d0217e16faf415d55..16686a0445834df09190c8171373902f218884f3 100644 (file)
@@ -59,7 +59,7 @@ do_install_append() {
 }
 
 python populate_packages_prepend() {
-    plugindir = bb.data.expand('${libdir}/alsa-lib/', d)
+    plugindir = d.expand('${libdir}/alsa-lib/')
     packages = " ".join(do_split_packages(d, plugindir, '^libasound_module_(.*)\.so$', 'libasound-module-%s', 'Alsa plugin for %s', extra_depends=''))
     d.setVar("RDEPENDS_alsa-plugins", packages)
 }