[oe-commits] Noor Ahsan : rpm2cpio-native: convert to new style staging, remove ' do_stage()'

git version control git at git.openembedded.org
Thu Aug 19 20:49:02 UTC 2010


Module: openembedded.git
Branch: org.openembedded.dev
Commit: bd143786bcf9fe0c961877bdf566c09c0de9a803
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=bd143786bcf9fe0c961877bdf566c09c0de9a803

Author: Noor Ahsan <noor_ahsan at mentor.com>
Date:   Tue Aug 17 03:20:10 2010 +0000

rpm2cpio-native: convert to new style staging, remove 'do_stage()'

* 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"
+





More information about the Openembedded-commits mailing list