diff options
| author | Saul Wold <sgw@linux.intel.com> | 2012-01-20 11:05:16 -0800 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-01-24 11:54:20 +0000 |
| commit | 930424bf2f5593256dcacac6e7cf98699fc2a0db (patch) | |
| tree | 143397dca6c2a486335c5f1c24f0eb6821c873ef /meta | |
| parent | c6c3f8745090c00eb02614a003925c533660e813 (diff) | |
| download | poky-930424bf2f5593256dcacac6e7cf98699fc2a0db.tar.gz | |
opkg: move common code & metadata into opkg.inc to reduce code duplication
(From OE-Core rev: da70cc9f33845d62943afc78168e56931d0a9b15)
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
| -rw-r--r-- | meta/recipes-devtools/opkg/opkg.inc | 43 | ||||
| -rw-r--r-- | meta/recipes-devtools/opkg/opkg_0.1.8.bb | 44 | ||||
| -rw-r--r-- | meta/recipes-devtools/opkg/opkg_svn.bb | 42 |
3 files changed, 44 insertions, 85 deletions
diff --git a/meta/recipes-devtools/opkg/opkg.inc b/meta/recipes-devtools/opkg/opkg.inc index 3e350e8197..b03eaf7643 100644 --- a/meta/recipes-devtools/opkg/opkg.inc +++ b/meta/recipes-devtools/opkg/opkg.inc | |||
| @@ -11,6 +11,7 @@ DEPENDS_virtclass-native = "curl-native" | |||
| 11 | DEPENDS_virtclass-nativesdk = "curl-nativesdk" | 11 | DEPENDS_virtclass-nativesdk = "curl-nativesdk" |
| 12 | 12 | ||
| 13 | PE = "1" | 13 | PE = "1" |
| 14 | PR_INC = "r6" | ||
| 14 | 15 | ||
| 15 | FILESDIR = "${@os.path.dirname(d.getVar('FILE',1))}/opkg" | 16 | FILESDIR = "${@os.path.dirname(d.getVar('FILE',1))}/opkg" |
| 16 | 17 | ||
| @@ -31,8 +32,46 @@ EXTRA_OECONF += "--with-opkglibdir=${localstatedir}/lib" | |||
| 31 | EXTRA_OECONF_virtclass-native = "--with-opkglibdir=${target_localstatedir}/lib --disable-gpg --disable-curl --disable-openssl" | 32 | EXTRA_OECONF_virtclass-native = "--with-opkglibdir=${target_localstatedir}/lib --disable-gpg --disable-curl --disable-openssl" |
| 32 | EXTRA_OECONF_virtclass-nativesdk = "--with-opkglibdir=${target_localstatedir}/lib --disable-gpg --disable-curl --disable-openssl" | 33 | EXTRA_OECONF_virtclass-nativesdk = "--with-opkglibdir=${target_localstatedir}/lib --disable-gpg --disable-curl --disable-openssl" |
| 33 | 34 | ||
| 34 | #PROVIDES_append_virtclass-native = "virtual/update-alternatives-native" | 35 | PROVIDES += "virtual/update-alternatives" |
| 35 | #RPROVIDES_${PN} += "update-alternatives-native" | 36 | RPROVIDES_update-alternatives-cworth += "update-alternatives" |
| 37 | RCONFLICTS_update-alternatives-cworth = "update-alternatives-dpkg" | ||
| 38 | RDEPENDS_${PN} = "${VIRTUAL-RUNTIME_update-alternatives} opkg-config-base" | ||
| 39 | RDEPENDS_${PN}_virtclass-native = "" | ||
| 40 | RDEPENDS_${PN}_virtclass-nativesdk = "" | ||
| 41 | PACKAGE_ARCH_update-alternatives-cworth = "all" | ||
| 42 | RREPLACES_${PN} = "opkg-nogpg" | ||
| 43 | |||
| 44 | PACKAGES =+ "libopkg${PKGSUFFIX}-dev libopkg${PKGSUFFIX} update-alternatives-cworth${PKGSUFFIX}" | ||
| 45 | |||
| 46 | FILES_update-alternatives-cworth${PKGSUFFIX} = "${bindir}/update-alternatives" | ||
| 47 | FILES_libopkg${PKGSUFFIX}-dev = "${libdir}/*.a ${libdir}/*.la ${libdir}/*.so" | ||
| 48 | FILES_libopkg${PKGSUFFIX} = "${libdir}/*.so.* ${localstatedir}/lib/opkg/" | ||
| 49 | |||
| 50 | # We need to create the lock directory | ||
| 51 | do_install_append() { | ||
| 52 | install -d ${D}${localstatedir}/lib/opkg | ||
| 53 | } | ||
| 54 | |||
| 55 | pkg_postinst_${PN} () { | ||
| 56 | #!/bin/sh | ||
| 57 | if [ "x$D" != "x" ]; then | ||
| 58 | install -d $D${sysconfdir}/rcS.d | ||
| 59 | # this happens at S98 where our good 'ole packages script used to run | ||
| 60 | echo "#!/bin/sh | ||
| 61 | opkg-cl configure | ||
| 62 | rm -f /${sysconfdir}/rcS.d/S${POSTINSTALL_INITPOSITION}configure | ||
| 63 | " > $D${sysconfdir}/rcS.d/S${POSTINSTALL_INITPOSITION}configure | ||
| 64 | chmod 0755 $D${sysconfdir}/rcS.d/S${POSTINSTALL_INITPOSITION}configure | ||
| 65 | fi | ||
| 66 | |||
| 67 | update-alternatives --install ${bindir}/opkg opkg ${bindir}/opkg-cl 100 | ||
| 68 | } | ||
| 69 | |||
| 70 | pkg_postrm_${PN} () { | ||
| 71 | #!/bin/sh | ||
| 72 | update-alternatives --remove opkg ${bindir}/opkg-cl | ||
| 73 | } | ||
| 74 | |||
| 36 | 75 | ||
| 37 | BBCLASSEXTEND = "native nativesdk" | 76 | BBCLASSEXTEND = "native nativesdk" |
| 38 | 77 | ||
diff --git a/meta/recipes-devtools/opkg/opkg_0.1.8.bb b/meta/recipes-devtools/opkg/opkg_0.1.8.bb index 18cf0428ce..c206b3782f 100644 --- a/meta/recipes-devtools/opkg/opkg_0.1.8.bb +++ b/meta/recipes-devtools/opkg/opkg_0.1.8.bb | |||
| @@ -1,48 +1,8 @@ | |||
| 1 | require opkg.inc | 1 | require opkg.inc |
| 2 | 2 | ||
| 3 | PROVIDES += "virtual/update-alternatives" | ||
| 4 | RPROVIDES_update-alternatives-cworth += "update-alternatives" | ||
| 5 | RCONFLICTS_update-alternatives-cworth = "update-alternatives-dpkg" | ||
| 6 | RDEPENDS_${PN} = "${VIRTUAL-RUNTIME_update-alternatives} opkg-config-base" | ||
| 7 | RDEPENDS_${PN}_virtclass-native = "" | ||
| 8 | RDEPENDS_${PN}_virtclass-nativesdk = "" | ||
| 9 | PACKAGE_ARCH_update-alternatives-cworth = "all" | ||
| 10 | |||
| 11 | SRC_URI = "http://opkg.googlecode.com/files/opkg-${PV}.tar.gz \ | 3 | SRC_URI = "http://opkg.googlecode.com/files/opkg-${PV}.tar.gz \ |
| 12 | file://add_vercmp.patch \ | 4 | file://add_vercmp.patch \ |
| 13 | file://headerfix.patch \ | 5 | file://headerfix.patch \ |
| 14 | " | 6 | " |
| 15 | |||
| 16 | PR = "r4" | ||
| 17 | |||
| 18 | PACKAGES =+ "libopkg${PKGSUFFIX}-dev libopkg${PKGSUFFIX} update-alternatives-cworth${PKGSUFFIX}" | ||
| 19 | |||
| 20 | FILES_update-alternatives-cworth${PKGSUFFIX} = "${bindir}/update-alternatives" | ||
| 21 | FILES_libopkg${PKGSUFFIX}-dev = "${libdir}/*.a ${libdir}/*.la ${libdir}/*.so" | ||
| 22 | FILES_libopkg${PKGSUFFIX} = "${libdir}/*.so.* ${localstatedir}/lib/opkg/" | ||
| 23 | |||
| 24 | # We need to create the lock directory | ||
| 25 | do_install_append() { | ||
| 26 | install -d ${D}${localstatedir}/lib/opkg | ||
| 27 | } | ||
| 28 | |||
| 29 | pkg_postinst_${PN} () { | ||
| 30 | #!/bin/sh | ||
| 31 | if [ "x$D" != "x" ]; then | ||
| 32 | install -d ${IMAGE_ROOTFS}/${sysconfdir}/rcS.d | ||
| 33 | # this happens at S98 where our good 'ole packages script used to run | ||
| 34 | echo "#!/bin/sh | ||
| 35 | opkg-cl configure | ||
| 36 | rm -f /${sysconfdir}/rcS.d/S${POSTINSTALL_INITPOSITION}configure | ||
| 37 | " > $D${sysconfdir}/rcS.d/S${POSTINSTALL_INITPOSITION}configure | ||
| 38 | chmod 0755 $D${sysconfdir}/rcS.d/S${POSTINSTALL_INITPOSITION}configure | ||
| 39 | fi | ||
| 40 | |||
| 41 | update-alternatives --install ${bindir}/opkg opkg ${bindir}/opkg-cl 100 | ||
| 42 | } | ||
| 43 | |||
| 44 | pkg_postrm_${PN} () { | ||
| 45 | #!/bin/sh | ||
| 46 | update-alternatives --remove opkg ${bindir}/opkg-cl | ||
| 47 | } | ||
| 48 | 7 | ||
| 8 | PR = "${INC_PR}.0" | ||
diff --git a/meta/recipes-devtools/opkg/opkg_svn.bb b/meta/recipes-devtools/opkg/opkg_svn.bb index f5f540d78e..c07d393019 100644 --- a/meta/recipes-devtools/opkg/opkg_svn.bb +++ b/meta/recipes-devtools/opkg/opkg_svn.bb | |||
| @@ -1,14 +1,5 @@ | |||
| 1 | require opkg.inc | 1 | require opkg.inc |
| 2 | 2 | ||
| 3 | PROVIDES += "virtual/update-alternatives" | ||
| 4 | RPROVIDES_update-alternatives-cworth += "update-alternatives" | ||
| 5 | RCONFLICTS_update-alternatives-cworth = "update-alternatives-dpkg" | ||
| 6 | RDEPENDS_${PN} = "${VIRTUAL-RUNTIME_update-alternatives} opkg-config-base" | ||
| 7 | RDEPENDS_${PN}_virtclass-native = "" | ||
| 8 | RDEPENDS_${PN}_virtclass-nativesdk = "" | ||
| 9 | PACKAGE_ARCH_update-alternatives-cworth = "all" | ||
| 10 | RREPLACES_${PN} = "opkg-nogpg" | ||
| 11 | |||
| 12 | SRC_URI = "svn://opkg.googlecode.com/svn;module=trunk;proto=http \ | 3 | SRC_URI = "svn://opkg.googlecode.com/svn;module=trunk;proto=http \ |
| 13 | file://add_vercmp.patch \ | 4 | file://add_vercmp.patch \ |
| 14 | file://add_uname_support.patch \ | 5 | file://add_uname_support.patch \ |
| @@ -21,36 +12,5 @@ S = "${WORKDIR}/trunk" | |||
| 21 | 12 | ||
| 22 | SRCREV = "633" | 13 | SRCREV = "633" |
| 23 | PV = "0.1.8+svnr${SRCPV}" | 14 | PV = "0.1.8+svnr${SRCPV}" |
| 24 | PR = "r5" | ||
| 25 | |||
| 26 | PACKAGES =+ "libopkg${PKGSUFFIX}-dev libopkg${PKGSUFFIX} update-alternatives-cworth${PKGSUFFIX}" | ||
| 27 | |||
| 28 | FILES_update-alternatives-cworth${PKGSUFFIX} = "${bindir}/update-alternatives" | ||
| 29 | FILES_libopkg${PKGSUFFIX}-dev = "${libdir}/*.a ${libdir}/*.la ${libdir}/*.so" | ||
| 30 | FILES_libopkg${PKGSUFFIX} = "${libdir}/*.so.* ${localstatedir}/lib/opkg/" | ||
| 31 | |||
| 32 | # We need to create the lock directory | ||
| 33 | do_install_append() { | ||
| 34 | install -d ${D}${localstatedir}/lib/opkg | ||
| 35 | } | ||
| 36 | |||
| 37 | pkg_postinst_${PN} () { | ||
| 38 | #!/bin/sh | ||
| 39 | if [ "x$D" != "x" ]; then | ||
| 40 | install -d $D${sysconfdir}/rcS.d | ||
| 41 | # this happens at S98 where our good 'ole packages script used to run | ||
| 42 | echo "#!/bin/sh | ||
| 43 | opkg-cl configure | ||
| 44 | rm -f /${sysconfdir}/rcS.d/S${POSTINSTALL_INITPOSITION}configure | ||
| 45 | " > $D${sysconfdir}/rcS.d/S${POSTINSTALL_INITPOSITION}configure | ||
| 46 | chmod 0755 $D${sysconfdir}/rcS.d/S${POSTINSTALL_INITPOSITION}configure | ||
| 47 | fi | ||
| 48 | |||
| 49 | update-alternatives --install ${bindir}/opkg opkg ${bindir}/opkg-cl 100 | ||
| 50 | } | ||
| 51 | |||
| 52 | pkg_postrm_${PN} () { | ||
| 53 | #!/bin/sh | ||
| 54 | update-alternatives --remove opkg ${bindir}/opkg-cl | ||
| 55 | } | ||
| 56 | 15 | ||
| 16 | PR = "${INC_PR}.0" | ||
