Re: [oe] [meta-oe][PATCH] smem: use python 3

2020-02-04 Thread Max Krummenacher
Am Dienstag, den 04.02.2020, 18:59 -0800 schrieb Khem Raj: > Thanks for doing this. > > On Tue, Feb 4, 2020 at 3:42 PM Max Krummenacher wrote: > > > > There seems to be no user of python-textutils python-shell python-codecs > > in the script, so these rdepends are dropped. > > > > OK > > > On

[oe] [meta-oe][PATCH v2 2/4] iwd: Add PACKAGECONFIG options

2020-02-04 Thread Robert Joslyn
Make it easier to disable optional client, monitor, and man page components and their dependencies. A user may want to disable the client to avoid the use of GPLv3 readline. Signed-off-by: Robert Joslyn --- meta-oe/recipes-connectivity/iwd/iwd_1.4.bb | 14 -- 1 file changed, 12 inser

[oe] [meta-oe][PATCH v2 3/4] iwd: Use manpages class to control documentation

2020-02-04 Thread Robert Joslyn
This class allows the api-documentation distro feature to control man page generation. Remove copying all .txt files from ${S}/doc since these are developer documents and wouldn't be of any use to users on the target device. Signed-off-by: Robert Joslyn --- meta-oe/recipes-connectivity/iwd/iwd_1

[oe] [meta-oe][PATCH v2 4/4] iwd: Update formatting

2020-02-04 Thread Robert Joslyn
Try to conform better to the style guide. Signed-off-by: Robert Joslyn --- meta-oe/recipes-connectivity/iwd/iwd_1.4.bb | 35 + 1 file changed, 22 insertions(+), 13 deletions(-) diff --git a/meta-oe/recipes-connectivity/iwd/iwd_1.4.bb b/meta-oe/recipes-connectivity/iwd/iwd_1

[oe] [meta-oe][PATCH v2 1/4] iwd: Update to 1.4

2020-02-04 Thread Robert Joslyn
dbus is not required to compile, but is expected at run time. Move it to RDEPENDS. Backport a patch from upstream to fix build using musl. rawmemchr is a GNU extension that is not supported in musl. >From upstream changelog: ver 1.4: Fix issue with handling Crypto-Binding and invalid MAC

Re: [oe] [meta-oe][PATCH] smem: use python 3

2020-02-04 Thread Khem Raj
Thanks for doing this. On Tue, Feb 4, 2020 at 3:42 PM Max Krummenacher wrote: > > There seems to be no user of python-textutils python-shell python-codecs > in the script, so these rdepends are dropped. > OK > On a i.MX6 based machine smem runs with just python3-compression and > its dependenci

[oe] [meta-oe][PATCH] cpuid: Upgrade to 20200203 and use perlnative for pod2man

2020-02-04 Thread Khem Raj
Fixes /bin/sh: pod2man: command not found Signed-off-by: Khem Raj --- .../cpuid/{cpuid_20180519.bb => cpuid_20200203.bb} | 6 -- 1 file changed, 4 insertions(+), 2 deletions(-) rename meta-oe/recipes-devtools/cpuid/{cpuid_20180519.bb => cpuid_20200203.bb} (83%) diff --git a/meta-

Re: [oe] [meta-oe][PATCH] Library to aid multi-part form data parsing

2020-02-04 Thread Khem Raj
it also fails on musl/aarch64 https://errors.yoctoproject.org/Errors/Details/385285/ On Tue, Feb 4, 2020 at 1:21 AM Asmitha Karunanithi wrote: > > From: asmitha > > Mimetic library helps parsing the multi-part form data. This library > can be used for scenarios that includes multi-part form dat

[oe] [meta-oe][PATCH] smem: use python 3

2020-02-04 Thread Max Krummenacher
There seems to be no user of python-textutils python-shell python-codecs in the script, so these rdepends are dropped. On a i.MX6 based machine smem runs with just python3-compression and its dependencies installed. Signed-off-by: Max Krummenacher --- .../smem/0001-smem-convert-to-python-3.patc

[oe] [meta-networking][PATCH] lftp: upgrade 4.9.0 -> 4.9.1

2020-02-04 Thread Trevor Gamblin
Signed-off-by: Trevor Gamblin --- .../lftp/{lftp_4.9.0.bb => lftp_4.9.1.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta-networking/recipes-connectivity/lftp/{lftp_4.9.0.bb => lftp_4.9.1.bb} (89%) diff --git a/meta-networking/recipes-connectivity/lf

Re: [oe] [meta-oe][PATCH] rsyslog: disable ptest as it requires python2

2020-02-04 Thread Khem Raj
We need to disable reference to rsyslog-ptest in ./meta-oe/recipes-core/packagegroups/packagegroup-meta-oe.bb as well. On Mon, Feb 3, 2020 at 9:54 PM Chen Qi wrote: > > Signed-off-by: Chen Qi > --- > meta-oe/recipes-extended/rsyslog/rsyslog_8.1911.0.bb | 4 +++- > 1 file changed, 3 insertions(+

Re: [oe] [meta-oe][PATCH] Library to aid multi-part form data parsing

2020-02-04 Thread Peter Kjellerstedt
> -Original Message- > From: openembedded-devel-boun...@lists.openembedded.org devel-boun...@lists.openembedded.org> On Behalf Of Asmitha Karunanithi > Sent: den 4 februari 2020 10:21 > To: openembedded-devel@lists.openembedded.org > Subject: [oe] [meta-oe][PATCH] Library to aid multi-part

Re: [oe] [meta-python][zeus][PATCH v2 1/2] python-twisted: add required RDEPENDS for twistd

2020-02-04 Thread Trevor Gamblin
On 2/3/20 9:46 PM, Tim Orling wrote: Thank you for sorting :) I was looking at applying this to meta-python2 zeus and my checks (import every twisted and twisted.* module) didn't see any missing dependencies before this patch. Can you describe the need or give me a hint of a reproducer? I'm

[oe] [meta-oe][PATCH] smem: add a native variant

2020-02-04 Thread André Draszik
The native variant is useful to e.g. examine captures of a running target on the host system. Signed-off-by: André Draszik --- meta-oe/recipes-support/smem/smem_1.4.bb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta-oe/recipes-support/smem/smem_1.4.bb b/meta-oe/recipes-support/smem/s

[oe] [meta-oe][PATCH] Library to aid multi-part form data parsing

2020-02-04 Thread Asmitha Karunanithi
From: asmitha Mimetic library helps parsing the multi-part form data. This library can be used for scenarios that includes multi-part form data file uploads to the BMC. The patch file (config.patch) includes: i) addition of a compilation flag - "no-narrowing" since this has been treated as warni

Re: [oe] systemd failing in master with Assertion clock_gettime(map_clock_id(clock_id), &ts) failed

2020-02-04 Thread Stefan Agner
On 2020-02-03 23:37, Alex Kiernan wrote: > On Mon, Feb 3, 2020 at 10:17 PM Stefan Agner wrote: >> >> Hi All, >> >> On 2020-01-27 16:14, Alex Kiernan wrote: >> > On Fri, Jan 24, 2020 at 12:22 AM Khem Raj wrote: >> >> >> >> On 1/23/20 4:13 PM, Alex Kiernan wrote: >> >> > On Thu, Jan 23, 2020 at 10:

[oe] [meta-oe][PATCH] fio: Add support for PMDK engines

2020-02-04 Thread Yongxin Liu
"pmemblk", "dev-dax" and "libpmem" engines are used for persistent memory. In order to enable them, add "pmem" to MACHINE_FEATURES in BSP conf. Signed-off-by: Yongxin Liu --- meta-oe/recipes-benchmark/fio/fio_3.17.bb | 1 + 1 file changed, 1 insertion(+) diff --git a/meta-oe/recipes-benchmark/f