diff options
| author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2012-10-28 13:49:59 +0000 |
|---|---|---|
| committer | Paul Eggleton <paul.eggleton@linux.intel.com> | 2012-10-28 14:32:06 +0000 |
| commit | 3a30c562385cb3d9cd1b3043f6fe677a22024018 (patch) | |
| tree | 66dc67f338ba316c25ca672950ef334e9e357386 /meta-efl/recipes-efl/efl/evas.inc | |
| parent | d66c9a8b625f7b19f7b17e728dc82413399c2e19 (diff) | |
| download | meta-openembedded-3a30c562385cb3d9cd1b3043f6fe677a22024018.tar.gz | |
Replace bb.data.* with d.*
Used sed expression given here:
http://lists.linuxtogo.org/pipermail/openembedded-core/2011-November/012373.html
Plus an additional expression for .expand. Full expression is:
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' \
-e 's:bb.data.\(expand([^,]*\), \([^ )]*\) *):\2.\1):g' \
-i `grep -ril bb.data *`
Some minor correction in systemd.bbclass was needed for some expressions
that didn't quite match the regex in the desired way; additionally a few
instances were manually changed.
Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Diffstat (limited to 'meta-efl/recipes-efl/efl/evas.inc')
| -rw-r--r-- | meta-efl/recipes-efl/efl/evas.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta-efl/recipes-efl/efl/evas.inc b/meta-efl/recipes-efl/efl/evas.inc index e3e5d39cd4..4f48f5d24c 100644 --- a/meta-efl/recipes-efl/efl/evas.inc +++ b/meta-efl/recipes-efl/efl/evas.inc | |||
| @@ -14,7 +14,7 @@ FILESPATHPKG =. "${BPN}-${PV}:${BPN}:" | |||
| 14 | python populate_packages_prepend () { | 14 | python populate_packages_prepend () { |
| 15 | for plugin_type in "engines loaders savers".split(): | 15 | for plugin_type in "engines loaders savers".split(): |
| 16 | bb.note( "splitting packages for evas %s..." % plugin_type ) | 16 | bb.note( "splitting packages for evas %s..." % plugin_type ) |
| 17 | basedir = bb.data.expand( '${libdir}/evas/modules/%s' % plugin_type, d ) | 17 | basedir = d.expand( '${libdir}/evas/modules/%s' % plugin_type) |
| 18 | 18 | ||
| 19 | do_split_packages(d, basedir, '^(.*)', | 19 | do_split_packages(d, basedir, '^(.*)', |
| 20 | output_pattern = 'evas-' + plugin_type[:-1] + "-%s", | 20 | output_pattern = 'evas-' + plugin_type[:-1] + "-%s", |
| @@ -23,7 +23,7 @@ python populate_packages_prepend () { | |||
| 23 | 23 | ||
| 24 | plugin_type = "cserve2" | 24 | plugin_type = "cserve2" |
| 25 | bb.note( "splitting packages for evas %s..." % plugin_type ) | 25 | bb.note( "splitting packages for evas %s..." % plugin_type ) |
| 26 | basedir = bb.data.expand( '${libdir}/evas/%s/loaders' % plugin_type, d ) | 26 | basedir = d.expand( '${libdir}/evas/%s/loaders' % plugin_type) |
| 27 | 27 | ||
| 28 | do_split_packages(d, basedir, '^(.*)', | 28 | do_split_packages(d, basedir, '^(.*)', |
| 29 | output_pattern = 'evas-' + plugin_type + "-%s", | 29 | output_pattern = 'evas-' + plugin_type + "-%s", |
