From 60f9d69e016b11c468c98ea75ba0a60c44afbbc4 Mon Sep 17 00:00:00 2001 From: Patrick Williams Date: Wed, 17 Aug 2016 14:31:25 -0500 Subject: yocto-poky: Move to import-layers subdir We are going to import additional layers, so create a subdir to hold all of the layers that we import with git-subtree. Change-Id: I6f732153a22be8ca663035c518837e3cc5ec0799 Signed-off-by: Patrick Williams --- .../createrepo/createrepo_0.4.11.bb | 51 ++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 import-layers/yocto-poky/meta/recipes-support/createrepo/createrepo_0.4.11.bb (limited to 'import-layers/yocto-poky/meta/recipes-support/createrepo/createrepo_0.4.11.bb') diff --git a/import-layers/yocto-poky/meta/recipes-support/createrepo/createrepo_0.4.11.bb b/import-layers/yocto-poky/meta/recipes-support/createrepo/createrepo_0.4.11.bb new file mode 100644 index 000000000..2a3231b3a --- /dev/null +++ b/import-layers/yocto-poky/meta/recipes-support/createrepo/createrepo_0.4.11.bb @@ -0,0 +1,51 @@ +SUMMARY = "Creates metadata indexes for RPM package repositories" +HOMEPAGE = "http://createrepo.baseurl.org/" + +RECIPE_NO_UPDATE_REASON = "Versions after 0.9.* use YUM, so we hold at 0.4.11" + +LICENSE = "GPLv2+" +LIC_FILES_CHKSUM = "file://COPYING;md5=18810669f13b87348459e611d31ab760" + +DEPENDS_class-native += "libxml2-native rpm-native" +RDEPENDS_${PN}_class-target = "libxml2-python" + +PR = "r9" + +SRC_URI = "http://createrepo.baseurl.org/download/${BP}.tar.gz \ + file://fix-native-install.patch \ + file://python-scripts-should-use-interpreter-from-env.patch \ + file://createrepo-rpm549.patch \ + file://recommends.patch \ + file://createrepo-dbpath.patch \ + file://dumpMetadata-disable-signature-validation.patch \ + file://rpm-createsolvedb.py \ + file://fixstat.patch \ + " + +SRC_URI[md5sum] = "3e9ccf4abcffe3f49af078c83611eda2" +SRC_URI[sha256sum] = "a73ae11a0dcde8bde36d900bc3f7f8f1083ba752c70a5c61b72d1e1e7608f21b" + +BBCLASSEXTEND = "native" + +do_install () { + oe_runmake -e 'DESTDIR=${D}' install + install -m 0755 ${WORKDIR}/rpm-createsolvedb.py ${D}${bindir}/ +} + +# Wrap the python script since the native python is +# ${bindir}/python-native/python, and the "#! /usr/bin/env python" can't +# find it since it is not in PATH. +do_install_append_class-native () { + # Not all the python scripts should be wrapped since some of + # them are modules (be imported). + for i in ${D}${datadir}/createrepo/genpkgmetadata.py \ + ${D}${datadir}/createrepo/modifyrepo.py \ + ${D}${bindir}/rpm-createsolvedb.py ; do + sed -i -e 's|^#!.*/usr/bin/env python|#! /usr/bin/env nativepython|' $i + done + + create_wrapper ${D}/${bindir}/createrepo \ + RPM_USRLIBRPM=${STAGING_LIBDIR_NATIVE}/rpm \ + RPM_ETCRPM=${STAGING_ETCDIR_NATIVE}/rpm \ + RPM_LOCALEDIRRPM=${STAGING_DATADIR_NATIVE}/locale +} -- cgit v1.2.1