[oe] [PATCH 2/2] rpm2cpio-native: convert to new style staging, remove 'do_stage()'

Noor Ahsan noor_ahsan at mentor.com
Tue Aug 17 13:20:10 UTC 2010


* Replace do_stage() with do_install from the recipe and replace all occurrences of ${STAGING_BINDIR} with ${D}{bindir}.
* Add NATIVE_INSTALL_WORKS = "1"
* Bump PR to "r1"

Signed-off-by: Noor Ahsan <noor_ahsan at mentor.com>
---
 recipes/rpm2cpio/rpm2cpio-native_1.2_2.bb |   13 ++++++++-----
 1 files changed, 8 insertions(+), 5 deletions(-)

diff --git a/recipes/rpm2cpio/rpm2cpio-native_1.2_2.bb b/recipes/rpm2cpio/rpm2cpio-native_1.2_2.bb
index 252fd53..ac3d673 100644
--- a/recipes/rpm2cpio/rpm2cpio-native_1.2_2.bb
+++ b/recipes/rpm2cpio/rpm2cpio-native_1.2_2.bb
@@ -3,6 +3,7 @@
 # Released under the MIT license (see COPYING.MIT)
 LICENSE = "BSD"
 DEPENDS = "perl-native"
+PR = "r1"
 
 SRC_URI = "http://www.freebsd.org/cgi/cvsweb.cgi/%7Echeckout%7E/ports/archivers/rpm2cpio/files/rpm2cpio?rev=1.2"
 SRC_URI[md5sum] = "07f64fa3dae6eb8b1b578d01473a5c07"
@@ -14,12 +15,14 @@ inherit native
 
 do_compile() {
 }
-do_stage() {
-        install -d ${STAGING_BINDIR}
+do_install() {
+        install -d ${D}${bindir}
         sed -e '1,1s|${bindir}/|${bindir}/env |' "rpm2cpio?rev=1.2" \
-                > ${STAGING_BINDIR}/rpm2cpio.pl
+                > ${D}${bindir}/rpm2cpio.pl
         my_PERL="/usr/bin/env perl"
-        sed -e "s%/[a-zA-Z0-9/]*/bin/perl%$my_PERL%g" -i ${STAGING_BINDIR}/rpm2cpio.pl
-        chmod 0755 ${STAGING_BINDIR}/rpm2cpio.pl
+        sed -e "s%/[a-zA-Z0-9/]*/bin/perl%$my_PERL%g" -i ${D}${bindir}/rpm2cpio.pl
+        chmod 0755 ${D}${bindir}/rpm2cpio.pl
 }
 
+NATIVE_INSTALL_WORKS = "1"
+
-- 
1.6.3.3





More information about the Openembedded-devel mailing list