Comments
Patch
new file mode 100644
@@ -0,0 +1,2 @@
+EXTRANATIVEPATH += "bzip2-native"
+DEPENDS += "bzip2-replacement-native"
@@ -1,5 +1,5 @@
require python.inc
-DEPENDS = "openssl-native bzip2-full-native zlib-native readline-native sqlite3-native"
+DEPENDS = "openssl-native zlib-native readline-native sqlite3-native"
PR = "${INC_PR}.1"
SRC_URI += "file://04-default-is-optimized.patch \
@@ -16,7 +16,7 @@ SRC_URI += "file://04-default-is-optimized.patch \
"
S = "${WORKDIR}/Python-${PV}"
-inherit native
+inherit native bzip2native
RPROVIDES += "python-distutils-native python-compression-native python-textutils-native python-core-native"
@@ -24,6 +24,8 @@ inherit autotools update-alternatives
ALTERNATIVE_PRIORITY = "100"
ALTERNATIVE_${PN} = "bunzip2 bzcat"
+#install binaries to bzip2-native under sysroot for replacement-native
+EXTRA_OECONF_virtclass-native += "--bindir=${STAGING_BINDIR_NATIVE}/${PN}"
do_configure_prepend () {
cp ${WORKDIR}/configure.ac ${S}/
cp ${WORKDIR}/Makefile.am ${S}/
@@ -40,5 +42,5 @@ FILES_libbz2-staticdev = "${libdir}/*.a"
SECTION_libbz2-staticdev = "devel"
RDEPENDS_libbz2-staticdev = "libbz2-dev (= ${EXTENDPKGV})"
-PROVIDES_append_virtclass-native = " bzip2-full-native"
+PROVIDES_append_virtclass-native = " bzip2-replacement-native"
BBCLASSEXTEND = "native"
follow Richard's approach, modify bzip2-native recipe to install bzip2 package binaries to STAGING_BINDIR_NATIVE/bzip2-native to avoid problems when other package is doing upack to reference bzip2. libbz2.so* still installs to STAGING_LIBDIR_NATIVE. add bzip2native.bbclass to let other packages to inherit and add dependency to bzip2-replacement-native. change python-native to inherit bzip2native class and remove the old bzip2-full-native dependency. Signed-off-by: Yao Zhao <yao.zhao@windriver.com> --- meta/classes/bzip2native.bbclass | 2 ++ .../recipes-devtools/python/python-native_2.7.3.bb | 4 ++-- meta/recipes-extended/bzip2/bzip2_1.0.6.bb | 4 +++- 3 files changed, 7 insertions(+), 3 deletions(-) create mode 100644 meta/classes/bzip2native.bbclass