diff options
-rw-r--r-- | meta/recipes-support/createrepo/createrepo_0.4.11.bb | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/meta/recipes-support/createrepo/createrepo_0.4.11.bb b/meta/recipes-support/createrepo/createrepo_0.4.11.bb index dcddcf8331..42c7214bb2 100644 --- a/meta/recipes-support/createrepo/createrepo_0.4.11.bb +++ b/meta/recipes-support/createrepo/createrepo_0.4.11.bb | |||
@@ -6,7 +6,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=18810669f13b87348459e611d31ab760" | |||
6 | 6 | ||
7 | RDEPENDS_${PN}_virtclass-native += "libxml2-native rpm-native" | 7 | RDEPENDS_${PN}_virtclass-native += "libxml2-native rpm-native" |
8 | 8 | ||
9 | PR = "r5" | 9 | PR = "r6" |
10 | 10 | ||
11 | SRC_URI= "http://createrepo.baseurl.org/download/${BP}.tar.gz \ | 11 | SRC_URI= "http://createrepo.baseurl.org/download/${BP}.tar.gz \ |
12 | file://fix-native-install.patch \ | 12 | file://fix-native-install.patch \ |
@@ -24,3 +24,16 @@ do_install () { | |||
24 | oe_runmake -e 'DESTDIR=${D}' install | 24 | oe_runmake -e 'DESTDIR=${D}' install |
25 | install -m 0755 ${WORKDIR}/rpm-createsolvedb.py ${D}${bindir}/ | 25 | install -m 0755 ${WORKDIR}/rpm-createsolvedb.py ${D}${bindir}/ |
26 | } | 26 | } |
27 | |||
28 | # Wrap the python script since the native python is | ||
29 | # ${bindir}/python-native/python, and the "#! /usr/bin/env python" can't | ||
30 | # find it since it is not in PATH. | ||
31 | do_install_append_virtclass-native () { | ||
32 | # Not all the python scripts should be wrapped since some of | ||
33 | # them are modules (be imported). | ||
34 | for i in ${D}${datadir}/createrepo/genpkgmetadata.py \ | ||
35 | ${D}${datadir}/createrepo/modifyrepo.py \ | ||
36 | ${D}${bindir}/rpm-createsolvedb.py ; do | ||
37 | create_wrapper $i ${STAGING_BINDIR_NATIVE}/python-native/python | ||
38 | done | ||
39 | } | ||