* [meta-oe][PATCH 1/2] kpatch: Mark it incompatible with musl
@ 2018-07-08 8:06 Khem Raj
2018-07-08 8:06 ` [meta-python][PATCH 2/2] python3-lxml, python3-pandas, python3-protobuf: Set CLEANBROKEN Khem Raj
0 siblings, 1 reply; 4+ messages in thread
From: Khem Raj @ 2018-07-08 8:06 UTC (permalink / raw)
To: openembedded-devel
it needs binaries from glibc-utils, obviously we dont
have this with musl, however in future if we can limit
which binaries are needed from glibc-utils then we might
be able to provide an alternative dependency when using
musl, until then disable it
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
meta-oe/recipes-kernel/kpatch/kpatch.inc | 1 +
1 file changed, 1 insertion(+)
diff --git a/meta-oe/recipes-kernel/kpatch/kpatch.inc b/meta-oe/recipes-kernel/kpatch/kpatch.inc
index e2e9511464..cd819f31f8 100644
--- a/meta-oe/recipes-kernel/kpatch/kpatch.inc
+++ b/meta-oe/recipes-kernel/kpatch/kpatch.inc
@@ -30,6 +30,7 @@ PACKAGES =+ "kpatch-build"
PROVIDES += "kpatch-build"
COMPATIBLE_HOST = "(x86_64).*-linux"
+COMPATIBLE_HOST_libc-musl = "null"
RDEPENDS_${PN} = "bash binutils"
RDEPENDS_kpatch-build = "bash glibc-utils"
--
2.18.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [meta-python][PATCH 2/2] python3-lxml, python3-pandas, python3-protobuf: Set CLEANBROKEN
2018-07-08 8:06 [meta-oe][PATCH 1/2] kpatch: Mark it incompatible with musl Khem Raj
@ 2018-07-08 8:06 ` Khem Raj
2018-07-09 9:52 ` Burton, Ross
0 siblings, 1 reply; 4+ messages in thread
From: Khem Raj @ 2018-07-08 8:06 UTC (permalink / raw)
To: openembedded-devel
The distutils class got a clean via "setup.py clean", but these
recipes doesn't support this yet so disable clean target during
configure
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
meta-python/recipes-devtools/python/python3-lxml_4.2.3.bb | 1 +
meta-python/recipes-devtools/python/python3-pandas_0.23.1.bb | 1 +
meta-python/recipes-devtools/python/python3-protobuf_3.6.0.bb | 1 +
3 files changed, 3 insertions(+)
diff --git a/meta-python/recipes-devtools/python/python3-lxml_4.2.3.bb b/meta-python/recipes-devtools/python/python3-lxml_4.2.3.bb
index ff4bc7faad..b95d7bae71 100644
--- a/meta-python/recipes-devtools/python/python3-lxml_4.2.3.bb
+++ b/meta-python/recipes-devtools/python/python3-lxml_4.2.3.bb
@@ -1,2 +1,3 @@
inherit setuptools3
require python-lxml.inc
+CLEANBROKEN = "1"
diff --git a/meta-python/recipes-devtools/python/python3-pandas_0.23.1.bb b/meta-python/recipes-devtools/python/python3-pandas_0.23.1.bb
index b5dd5e0924..c1e57189cf 100644
--- a/meta-python/recipes-devtools/python/python3-pandas_0.23.1.bb
+++ b/meta-python/recipes-devtools/python/python3-pandas_0.23.1.bb
@@ -1,2 +1,3 @@
inherit setuptools3
require python-pandas.inc
+CLEANBROKEN = "1"
diff --git a/meta-python/recipes-devtools/python/python3-protobuf_3.6.0.bb b/meta-python/recipes-devtools/python/python3-protobuf_3.6.0.bb
index 781d1dc4da..53d5528c4b 100644
--- a/meta-python/recipes-devtools/python/python3-protobuf_3.6.0.bb
+++ b/meta-python/recipes-devtools/python/python3-protobuf_3.6.0.bb
@@ -1,2 +1,3 @@
inherit setuptools3
require python-protobuf.inc
+CLEANBROKEN = "1"
--
2.18.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [meta-python][PATCH 2/2] python3-lxml, python3-pandas, python3-protobuf: Set CLEANBROKEN
2018-07-08 8:06 ` [meta-python][PATCH 2/2] python3-lxml, python3-pandas, python3-protobuf: Set CLEANBROKEN Khem Raj
@ 2018-07-09 9:52 ` Burton, Ross
2018-07-09 10:50 ` Burton, Ross
0 siblings, 1 reply; 4+ messages in thread
From: Burton, Ross @ 2018-07-09 9:52 UTC (permalink / raw)
To: Khem Raj; +Cc: OpenEmbedded Devel List
The lxml failure can be fixed with a tweak to the class, so I'll run
the tweak through all of meta-python to see if it regresses anything
else. Please hold this off until I report back.
Ross
On 8 July 2018 at 09:06, Khem Raj <raj.khem@gmail.com> wrote:
> The distutils class got a clean via "setup.py clean", but these
> recipes doesn't support this yet so disable clean target during
> configure
>
> Signed-off-by: Khem Raj <raj.khem@gmail.com>
> ---
> meta-python/recipes-devtools/python/python3-lxml_4.2.3.bb | 1 +
> meta-python/recipes-devtools/python/python3-pandas_0.23.1.bb | 1 +
> meta-python/recipes-devtools/python/python3-protobuf_3.6.0.bb | 1 +
> 3 files changed, 3 insertions(+)
>
> diff --git a/meta-python/recipes-devtools/python/python3-lxml_4.2.3.bb b/meta-python/recipes-devtools/python/python3-lxml_4.2.3.bb
> index ff4bc7faad..b95d7bae71 100644
> --- a/meta-python/recipes-devtools/python/python3-lxml_4.2.3.bb
> +++ b/meta-python/recipes-devtools/python/python3-lxml_4.2.3.bb
> @@ -1,2 +1,3 @@
> inherit setuptools3
> require python-lxml.inc
> +CLEANBROKEN = "1"
> diff --git a/meta-python/recipes-devtools/python/python3-pandas_0.23.1.bb b/meta-python/recipes-devtools/python/python3-pandas_0.23.1.bb
> index b5dd5e0924..c1e57189cf 100644
> --- a/meta-python/recipes-devtools/python/python3-pandas_0.23.1.bb
> +++ b/meta-python/recipes-devtools/python/python3-pandas_0.23.1.bb
> @@ -1,2 +1,3 @@
> inherit setuptools3
> require python-pandas.inc
> +CLEANBROKEN = "1"
> diff --git a/meta-python/recipes-devtools/python/python3-protobuf_3.6.0.bb b/meta-python/recipes-devtools/python/python3-protobuf_3.6.0.bb
> index 781d1dc4da..53d5528c4b 100644
> --- a/meta-python/recipes-devtools/python/python3-protobuf_3.6.0.bb
> +++ b/meta-python/recipes-devtools/python/python3-protobuf_3.6.0.bb
> @@ -1,2 +1,3 @@
> inherit setuptools3
> require python-protobuf.inc
> +CLEANBROKEN = "1"
> --
> 2.18.0
>
> --
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [meta-python][PATCH 2/2] python3-lxml, python3-pandas, python3-protobuf: Set CLEANBROKEN
2018-07-09 9:52 ` Burton, Ross
@ 2018-07-09 10:50 ` Burton, Ross
0 siblings, 0 replies; 4+ messages in thread
From: Burton, Ross @ 2018-07-09 10:50 UTC (permalink / raw)
To: Khem Raj; +Cc: OpenEmbedded Devel List
I've just sent a patch for oe-core to improve how it calls clean,
which fixes lxml.
Pandas can be fixed by depending on cython, patch sent.
protobuf is broken, we still need the cleanbroken but I plan to do the
same for python2 so I've just sent a patch to add it to the inc file.
Ross
On 9 July 2018 at 10:52, Burton, Ross <ross.burton@intel.com> wrote:
> The lxml failure can be fixed with a tweak to the class, so I'll run
> the tweak through all of meta-python to see if it regresses anything
> else. Please hold this off until I report back.
>
> Ross
>
> On 8 July 2018 at 09:06, Khem Raj <raj.khem@gmail.com> wrote:
>> The distutils class got a clean via "setup.py clean", but these
>> recipes doesn't support this yet so disable clean target during
>> configure
>>
>> Signed-off-by: Khem Raj <raj.khem@gmail.com>
>> ---
>> meta-python/recipes-devtools/python/python3-lxml_4.2.3.bb | 1 +
>> meta-python/recipes-devtools/python/python3-pandas_0.23.1.bb | 1 +
>> meta-python/recipes-devtools/python/python3-protobuf_3.6.0.bb | 1 +
>> 3 files changed, 3 insertions(+)
>>
>> diff --git a/meta-python/recipes-devtools/python/python3-lxml_4.2.3.bb b/meta-python/recipes-devtools/python/python3-lxml_4.2.3.bb
>> index ff4bc7faad..b95d7bae71 100644
>> --- a/meta-python/recipes-devtools/python/python3-lxml_4.2.3.bb
>> +++ b/meta-python/recipes-devtools/python/python3-lxml_4.2.3.bb
>> @@ -1,2 +1,3 @@
>> inherit setuptools3
>> require python-lxml.inc
>> +CLEANBROKEN = "1"
>> diff --git a/meta-python/recipes-devtools/python/python3-pandas_0.23.1.bb b/meta-python/recipes-devtools/python/python3-pandas_0.23.1.bb
>> index b5dd5e0924..c1e57189cf 100644
>> --- a/meta-python/recipes-devtools/python/python3-pandas_0.23.1.bb
>> +++ b/meta-python/recipes-devtools/python/python3-pandas_0.23.1.bb
>> @@ -1,2 +1,3 @@
>> inherit setuptools3
>> require python-pandas.inc
>> +CLEANBROKEN = "1"
>> diff --git a/meta-python/recipes-devtools/python/python3-protobuf_3.6.0.bb b/meta-python/recipes-devtools/python/python3-protobuf_3.6.0.bb
>> index 781d1dc4da..53d5528c4b 100644
>> --- a/meta-python/recipes-devtools/python/python3-protobuf_3.6.0.bb
>> +++ b/meta-python/recipes-devtools/python/python3-protobuf_3.6.0.bb
>> @@ -1,2 +1,3 @@
>> inherit setuptools3
>> require python-protobuf.inc
>> +CLEANBROKEN = "1"
>> --
>> 2.18.0
>>
>> --
>> _______________________________________________
>> Openembedded-devel mailing list
>> Openembedded-devel@lists.openembedded.org
>> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2018-07-09 10:51 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-07-08 8:06 [meta-oe][PATCH 1/2] kpatch: Mark it incompatible with musl Khem Raj
2018-07-08 8:06 ` [meta-python][PATCH 2/2] python3-lxml, python3-pandas, python3-protobuf: Set CLEANBROKEN Khem Raj
2018-07-09 9:52 ` Burton, Ross
2018-07-09 10:50 ` Burton, Ross
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox