* [PATCH 0/1] libxml2: fix python path and enable libxml2-python
@ 2014-09-09 7:34 Robert Yang
2014-09-09 7:34 ` [PATCH 1/1] " Robert Yang
0 siblings, 1 reply; 8+ messages in thread
From: Robert Yang @ 2014-09-09 7:34 UTC (permalink / raw)
To: openembedded-core
* Tested on:
qemux86
qemux86-64
qemuarm
qemuppc
qemumips.
// Robert
The following changes since commit e72aac2ae9e5fce1715fa04b7e94034fd06892d9:
alsa-lib: libasound should runtime depends on alsa-conf (2014-09-03 11:30:11 +0100)
are available in the git repository at:
git://git.openembedded.org/openembedded-core-contrib rbt/libxml2
http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=rbt/libxml2
Robert Yang (1):
libxml2: fix python path and enable libxml2-python
meta/recipes-core/libxml/libxml2.inc | 17 +++++++----------
1 file changed, 7 insertions(+), 10 deletions(-)
--
1.7.9.5
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH 1/1] libxml2: fix python path and enable libxml2-python
2014-09-09 7:34 [PATCH 0/1] libxml2: fix python path and enable libxml2-python Robert Yang
@ 2014-09-09 7:34 ` Robert Yang
2014-09-14 22:43 ` Burton, Ross
0 siblings, 1 reply; 8+ messages in thread
From: Robert Yang @ 2014-09-09 7:34 UTC (permalink / raw)
To: openembedded-core
We have libxml2-python for native and nativesdk, but don't have it for
target, and can't find the reason from the git log, libxml2-python is
widely used, after looked into it's configure.in, we can enable it
easily.
The previous --with-python=${STAGING_BINDIR}/python is incorrect, it
acted as work becase it's conigure can check automatically, python is in
${STAGING_BINDIR_NATIVE}/${PYTHON_PN}-native/${PYTHON_PN}, as known as
${PYTHON}.
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
---
meta/recipes-core/libxml/libxml2.inc | 17 +++++++----------
1 file changed, 7 insertions(+), 10 deletions(-)
diff --git a/meta/recipes-core/libxml/libxml2.inc b/meta/recipes-core/libxml/libxml2.inc
index bcf9a62..a252c61 100644
--- a/meta/recipes-core/libxml/libxml2.inc
+++ b/meta/recipes-core/libxml/libxml2.inc
@@ -9,9 +9,7 @@ LIC_FILES_CHKSUM = "file://Copyright;md5=2044417e2e5006b65a8b9067b683fcf1 \
file://list.c;beginline=4;endline=13;md5=cdbfa3dee51c099edb04e39f762ee907 \
file://trio.c;beginline=5;endline=14;md5=6c025753c86d958722ec76e94cae932e"
-DEPENDS_class-nativesdk = "nativesdk-python"
-DEPENDS_class-native = "python-native"
-DEPENDS =+ "zlib"
+DEPENDS = "zlib python"
SRC_URI = "ftp://xmlsoft.org/libxml2/libxml2-${PV}.tar.gz;name=libtar \
file://libxml-64bit.patch \
@@ -31,20 +29,19 @@ RDEPENDS_${PN}-ptest += "python-core"
RDEPENDS_${PN}-ptest_append_libc-glibc += "glibc-gconv-ebcdic-us glibc-gconv-ibm1141"
+RDEPENDS_${PN}-python += "python-core"
+
# We don't DEPEND on binutils for ansidecl.h so ensure we don't use the header
do_configure_prepend () {
sed -i -e '/.*ansidecl.h.*/d' ${S}/configure.in
}
-do_configure_prepend_class-nativesdk () {
- # Ensure we get the correct site-packages path
- export PYTHON_SITE_PACKAGES="${PYTHON_SITEPACKAGES_DIR}"
-}
+export PYTHON_SITE_PACKAGES="${PYTHON_SITEPACKAGES_DIR}"
# WARNING: zlib is require for RPM use
-EXTRA_OECONF = "--without-python --without-debug --without-legacy --with-catalog --without-docbook --with-c14n --without-lzma --with-fexceptions"
-EXTRA_OECONF_class-native = "--with-python=${STAGING_BINDIR}/python --without-legacy --without-docbook --with-c14n --without-lzma --with-zlib"
-EXTRA_OECONF_class-nativesdk = "--with-python=${STAGING_BINDIR}/python --without-legacy --without-docbook --with-c14n --without-lzma --with-zlib"
+EXTRA_OECONF = "--with-python=${PYTHON} --without-debug --without-legacy --with-catalog --without-docbook --with-c14n --without-lzma --with-fexceptions"
+EXTRA_OECONF_class-native = "--with-python=${PYTHON} --without-legacy --without-docbook --with-c14n --without-lzma --with-zlib"
+EXTRA_OECONF_class-nativesdk = "--with-python=${PYTHON} --without-legacy --without-docbook --with-c14n --without-lzma --with-zlib"
EXTRA_OECONF_linuxstdbase = "--without-python --with-debug --with-legacy --with-docbook --with-c14n --without-lzma --with-zlib"
# required for pythong binding
--
1.7.9.5
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH 1/1] libxml2: fix python path and enable libxml2-python
2014-09-09 7:34 ` [PATCH 1/1] " Robert Yang
@ 2014-09-14 22:43 ` Burton, Ross
2014-09-15 13:05 ` Robert Yang
0 siblings, 1 reply; 8+ messages in thread
From: Burton, Ross @ 2014-09-14 22:43 UTC (permalink / raw)
To: Robert Yang; +Cc: OE-core
On 9 September 2014 08:34, Robert Yang <liezhi.yang@windriver.com> wrote:
> We have libxml2-python for native and nativesdk, but don't have it for
> target, and can't find the reason from the git log, libxml2-python is
> widely used, after looked into it's configure.in, we can enable it
> easily.
It seems like adding a PACKAGECONFIG for Python would be a good idea,
we don't want to force target Python to be built.
Ross
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH 1/1] libxml2: fix python path and enable libxml2-python
2014-09-14 22:43 ` Burton, Ross
@ 2014-09-15 13:05 ` Robert Yang
2014-09-15 14:01 ` Burton, Ross
0 siblings, 1 reply; 8+ messages in thread
From: Robert Yang @ 2014-09-15 13:05 UTC (permalink / raw)
To: Burton, Ross; +Cc: OE-core
On 09/15/2014 06:43 AM, Burton, Ross wrote:
> On 9 September 2014 08:34, Robert Yang <liezhi.yang@windriver.com> wrote:
>> We have libxml2-python for native and nativesdk, but don't have it for
>> target, and can't find the reason from the git log, libxml2-python is
>> widely used, after looked into it's configure.in, we can enable it
>> easily.
>
> It seems like adding a PACKAGECONFIG for Python would be a good idea,
> we don't want to force target Python to be built.
Thanks, updated in the repo:
git://git.openembedded.org/openembedded-core-contrib rbt/libxml2
commit ff4a9f5118f39d82fe1bb7fcc7870ef01a9cdb0b
Author: Robert Yang <liezhi.yang@windriver.com>
Date: Mon Sep 8 20:24:38 2014 -0700
libxml2: fix python path and add libxml2-python
We have libxml2-python for native and nativesdk, but don't have it for
target, and can't find the reason from the git log, libxml2-python is
widely used, after looked into it's configure.in, we can add it
by PACKAGECONFIG.
The previous --with-python=${STAGING_BINDIR}/python is incorrect, it
acted as work becase it's conigure can check automatically, python is in
${STAGING_BINDIR_NATIVE}/${PYTHON_PN}-native/${PYTHON_PN}, as known as
${PYTHON}.
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
diff --git a/meta/recipes-core/libxml/libxml2.inc
b/meta/recipes-core/libxml/libxml2.inc
index bcf9a62..4d11c2b 100644
--- a/meta/recipes-core/libxml/libxml2.inc
+++ b/meta/recipes-core/libxml/libxml2.inc
@@ -36,15 +36,14 @@ do_configure_prepend () {
sed -i -e '/.*ansidecl.h.*/d' ${S}/configure.in
}
-do_configure_prepend_class-nativesdk () {
- # Ensure we get the correct site-packages path
- export PYTHON_SITE_PACKAGES="${PYTHON_SITEPACKAGES_DIR}"
-}
+export PYTHON_SITE_PACKAGES="${PYTHON_SITEPACKAGES_DIR}"
+PACKAGECONFIG ??= ""
+PACKAGECONFIG[python] =
"--with-python=${PYTHON},--without-python,python,python-core"
# WARNING: zlib is require for RPM use
-EXTRA_OECONF = "--without-python --without-debug --without-legacy
--with-catalog --without-docbook --with-c14n --without-lzma --with-fexceptions"
-EXTRA_OECONF_class-native = "--with-python=${STAGING_BINDIR}/python
--without-legacy --without-docbook --with-c14n --without-lzma --with-zlib"
-EXTRA_OECONF_class-nativesdk = "--with-python=${STAGING_BINDIR}/python
--without-legacy --without-docbook --with-c14n --without-lzma --with-zlib"
+EXTRA_OECONF = "--without-debug --without-legacy --with-catalog
--without-docbook --with-c14n --without-lzma --with-fexceptions"
+EXTRA_OECONF_class-native = "--with-python=${PYTHON} --without-legacy
--without-docbook --with-c14n --without-lzma --with-zlib"
+EXTRA_OECONF_class-nativesdk = "--with-python=${PYTHON} --without-legacy
--without-docbook --with-c14n --without-lzma --with-zlib"
EXTRA_OECONF_linuxstdbase = "--without-python --with-debug --with-legacy
--with-docbook --with-c14n --without-lzma --with-zlib"
# required for pythong binding
// Robert
>
> Ross
>
>
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH 1/1] libxml2: fix python path and enable libxml2-python
2014-09-15 13:05 ` Robert Yang
@ 2014-09-15 14:01 ` Burton, Ross
2014-09-15 14:38 ` Robert Yang
0 siblings, 1 reply; 8+ messages in thread
From: Burton, Ross @ 2014-09-15 14:01 UTC (permalink / raw)
To: Robert Yang; +Cc: OE-core
On 15 September 2014 14:05, Robert Yang <liezhi.yang@windriver.com> wrote:
> +PACKAGECONFIG ??= ""
> +PACKAGECONFIG[python] =
> +EXTRA_OECONF_class-native = "--with-python=${PYTHON} --without-legacy
> --without-docbook --with-c14n --without-lzma --with-zlib"
You should remove the python arguments from all overrides of
EXTRA_OECONF and instead have PACKAGECONFIG overrides to add them
back. With this patch, native builds are passed --without-python
--with-python (one from EXTRA_OECONF, one from the disabled
PACKAGECONFIG).
Ross
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH 1/1] libxml2: fix python path and enable libxml2-python
2014-09-15 14:01 ` Burton, Ross
@ 2014-09-15 14:38 ` Robert Yang
2014-09-15 14:43 ` Burton, Ross
0 siblings, 1 reply; 8+ messages in thread
From: Robert Yang @ 2014-09-15 14:38 UTC (permalink / raw)
To: Burton, Ross; +Cc: OE-core
On 09/15/2014 10:01 PM, Burton, Ross wrote:
> On 15 September 2014 14:05, Robert Yang <liezhi.yang@windriver.com> wrote:
>> +PACKAGECONFIG ??= ""
>> +PACKAGECONFIG[python] =
>> +EXTRA_OECONF_class-native = "--with-python=${PYTHON} --without-legacy
>> --without-docbook --with-c14n --without-lzma --with-zlib"
>
> You should remove the python arguments from all overrides of
> EXTRA_OECONF and instead have PACKAGECONFIG overrides to add them
> back. With this patch, native builds are passed --without-python
> --with-python (one from EXTRA_OECONF, one from the disabled
> PACKAGECONFIG).
Ah, yes, then we should set PACKAGECONFIG ??= "python" by default ? Otherwise
I'm afraid that there would be errors.
// Robert
>
> Ross
>
>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH 1/1] libxml2: fix python path and enable libxml2-python
2014-09-15 14:38 ` Robert Yang
@ 2014-09-15 14:43 ` Burton, Ross
2014-09-15 14:50 ` Robert Yang
0 siblings, 1 reply; 8+ messages in thread
From: Burton, Ross @ 2014-09-15 14:43 UTC (permalink / raw)
To: Robert Yang; +Cc: OE-core
On 15 September 2014 15:38, Robert Yang <liezhi.yang@windriver.com> wrote:
> Ah, yes, then we should set PACKAGECONFIG ??= "python" by default ?
> Otherwise
> I'm afraid that there would be errors.
No need to set it by default - although my argument here is that we
don't currently. This should work:
PACKAGECONFIG ??= ""
PACKAGECONFIG_class-native ??= "python"
PACKAGECONFIG_class-nativesdk ??= "python"
Ross
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH 1/1] libxml2: fix python path and enable libxml2-python
2014-09-15 14:43 ` Burton, Ross
@ 2014-09-15 14:50 ` Robert Yang
0 siblings, 0 replies; 8+ messages in thread
From: Robert Yang @ 2014-09-15 14:50 UTC (permalink / raw)
To: Burton, Ross; +Cc: OE-core
On 09/15/2014 10:43 PM, Burton, Ross wrote:
> On 15 September 2014 15:38, Robert Yang <liezhi.yang@windriver.com> wrote:
>> Ah, yes, then we should set PACKAGECONFIG ??= "python" by default ?
>> Otherwise
>> I'm afraid that there would be errors.
>
> No need to set it by default - although my argument here is that we
> don't currently. This should work:
>
> PACKAGECONFIG ??= ""
> PACKAGECONFIG_class-native ??= "python"
> PACKAGECONFIG_class-nativesdk ??= "python"
Thanks, I will update it after testing, I think that also this:
PACKAGECONFIG__linuxstdbase ??= ""
// Robert
>
> Ross
>
>
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2014-09-15 14:50 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-09-09 7:34 [PATCH 0/1] libxml2: fix python path and enable libxml2-python Robert Yang
2014-09-09 7:34 ` [PATCH 1/1] " Robert Yang
2014-09-14 22:43 ` Burton, Ross
2014-09-15 13:05 ` Robert Yang
2014-09-15 14:01 ` Burton, Ross
2014-09-15 14:38 ` Robert Yang
2014-09-15 14:43 ` Burton, Ross
2014-09-15 14:50 ` Robert Yang
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox