[oe] [meta-python][PATCH] python3-zipp: add the missing rdepends

2020-05-08 Thread Yu, Mingli
From: Mingli Yu Add the missing rdepends to fix below error: # python3 [snip] >>> import zipp ModuleNotFoundError: No module named 'zipfile' ModuleNotFoundError: No module named 'random' python3-math Signed-off-by: Mingli Yu --- meta-python/recipes-devtools/python/python3-zipp_0.6.0.bb |

Re: [oe] [meta-oe][PATCH] rasdaemon: create recipe for version 0.6.5

2020-05-08 Thread Khem Raj
On Thu, May 7, 2020 at 3:37 AM Beni wrote: > > Signed-off-by: Beniamin Sandu > --- > meta-oe/recipes-support/rasdaemon/files/init | 43 > .../rasdaemon/files/rasdaemon.service | 12 + > .../rasdaemon/rasdaemon_0.6.5.bb | 51 +++ > 3 file

Re: [oe] [meta-oe][PATCH] php: fix opcache link error in 7.4

2020-05-08 Thread Claude Bing
OK, I started a new patch thread. Who/what determines which patches get included in the named release branches? Specifically, we are using dunfell and would like these changes to show up in that branch. :) Regards, Claude Bing On 5/8/20 2:41 PM, Adrian Bunk wrote: > On Fri, May 08, 2020 at 10

[oe] [meta-oe][PATCH] php: update fix for opcache link issue in 7.4.4

2020-05-08 Thread Claude Bing
The source of the issue is the update for PHP 7.4 support in 0001-opcache-config.m4-enable-opcache.patch (commit 7cc7a9ec). Instead of working around the issue in the recipe file, update the patch to restore the call to PHP_ADD_LIBRARY(). Signed-off-by: Claude Bing --- ...001-opcache-config.m4-

[oe] [meta-oe][PATCH 1/2] nss: Remove mcpu to avoid march conflicts

2020-05-08 Thread Khem Raj
Some files are compiled with armv8-a+crypto and when using cortex-a55 the deduced march is armv8.2-a which then conflicts Signed-off-by: Khem Raj --- meta-oe/recipes-support/nss/nss_3.51.1.bb | 4 1 file changed, 4 insertions(+) diff --git a/meta-oe/recipes-support/nss/nss_3.51.1.bb b/met

[oe] [meta-oe][PATCH 2/2] rasdaemon: Include limits.h

2020-05-08 Thread Khem Raj
Fixes a build problem found with musl Signed-off-by: Khem Raj Cc: Beniamin Sandu --- .../0001-Fix-system-header-includes.patch | 44 +++ .../rasdaemon/rasdaemon_0.6.5.bb | 1 + 2 files changed, 45 insertions(+) create mode 100644 meta-oe/recipes-support/rasda

Re: [oe] [meta-oe][PATCH] php: fix opcache link error in 7.4

2020-05-08 Thread Adrian Bunk
On Fri, May 08, 2020 at 10:42:22AM -0400, Claude Bing wrote: > On 5/8/20 6:56 AM, Adrian Bunk wrote: > > On Thu, May 07, 2020 at 02:28:06PM -0400, Claude Bing wrote: > >> Explicitly specifying -lrt is required for opcache to be linked against > >> the proper dependencies. Additionally, PHP disable

Re: [oe] [meta-java] icedtea7-native: host gcc-9, extra CFLAGS needed

2020-05-08 Thread Robert Berger
Hi, My comments are in-line. On 08/05/2020 19:10, Richard Leitner wrote: Hi Robert, thanks for the patch! One question regarding your E-Mail Addresses: Are you sure should be your author address, or should it be ? It should be From: Robert Berger I just sent out v2 - hopefully it's OK

[oe] [meta-python][PATCH 2/2] python3-pyhamcrest: add rdep

2020-05-08 Thread Joe Slater
python3-six. Signed-off-by: Joe Slater --- meta-python/recipes-devtools/python/python3-pyhamcrest_1.9.0.bb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta-python/recipes-devtools/python/python3-pyhamcrest_1.9.0.bb b/meta-python/recipes-devtools/python/python3-pyhamcrest_1.9.0.bb inde

[oe] [meta-java][PATCH v2] icedtea7-native: host gcc-9, extra CFLAGS needed

2020-05-08 Thread Robert Berger
From: Robert Berger Signed-off-by: Robert Berger --- recipes-core/icedtea/icedtea7-native.inc | 5 + 1 file changed, 5 insertions(+) diff --git a/recipes-core/icedtea/icedtea7-native.inc b/recipes-core/icedtea/icedtea7-native.inc index 8d0dc71..b9ad2bd 100644 --- a/recipes-core/icedtea/ic

[oe] [meta-python][PATCH 1/2] python-pretty-table: add rdep's

2020-05-08 Thread Joe Slater
python(3)-math and python(3)-html. Signed-off-by: Joe Slater --- meta-python/recipes-devtools/python/python-prettytable.inc | 5 + 1 file changed, 5 insertions(+) diff --git a/meta-python/recipes-devtools/python/python-prettytable.inc b/meta-python/recipes-devtools/python/python-prettytabl

Re: [oe] [meta-python][PATCH v2] python3-ntplib: add missing python3-io RDEPENDS

2020-05-08 Thread Khem Raj
I merged V1, so if v2 has differences please send a rebased patch on master. On Wed, May 6, 2020 at 11:22 PM Yu, Mingli wrote: > > From: Mingli Yu > > Add the missing python3-io RDEPENDS to fix > below error: > # python3 > Python 3.8.2 (default, Apr 27 2020, 08:51:00) > [GCC 9.3.0] on linux > T

Re: [oe] [meta-oe][PATCH] php: fix opcache link error in 7.4

2020-05-08 Thread Claude Bing
On 5/8/20 6:56 AM, Adrian Bunk wrote: > On Thu, May 07, 2020 at 02:28:06PM -0400, Claude Bing wrote: >> Explicitly specifying -lrt is required for opcache to be linked against >> the proper dependencies. Additionally, PHP disables libdl when it >> detects a cross-compilation environment for some r

Re: [oe] [meta-oe][PATCH] php: fix opcache link error in 7.4

2020-05-08 Thread Adrian Bunk
On Thu, May 07, 2020 at 02:28:06PM -0400, Claude Bing wrote: > Explicitly specifying -lrt is required for opcache to be linked against > the proper dependencies. Additionally, PHP disables libdl when it > detects a cross-compilation environment for some reason. In order to > load any type of exte

Re: [oe] [meta-java][PATCH v2] do_unpack_extract_submodules: WORKDIR and ARCHIVER_WORKDIR support

2020-05-08 Thread Robert Berger
Hi, Further tests show that this does not work, please ignore! Regards, Robert On 08/05/2020 12:50, Robert Berger wrote: Signed-off-by: Robert Berger --- recipes-core/openjdk/openjdk-8-common.inc | 26 +-- 1 file changed, 19 insertions(+), 7 deletions(-) diff --git a

[oe] [meta-java][PATCH v2] do_unpack_extract_submodules: WORKDIR and ARCHIVER_WORKDIR support

2020-05-08 Thread Robert Berger
Signed-off-by: Robert Berger --- recipes-core/openjdk/openjdk-8-common.inc | 26 +-- 1 file changed, 19 insertions(+), 7 deletions(-) diff --git a/recipes-core/openjdk/openjdk-8-common.inc b/recipes-core/openjdk/openjdk-8-common.inc index 5ea83ed..2166147 100644 --- a/recipe

[oe] [meta-java][PATCH] do_unpack_extract_submodules: WORKDIR and ARCHIVER_WORKDIR support

2020-05-08 Thread Robert Berger
Signed-off-by: Robert Berger --- recipes-core/openjdk/openjdk-8-common.inc | 26 +-- 1 file changed, 19 insertions(+), 7 deletions(-) diff --git a/recipes-core/openjdk/openjdk-8-common.inc b/recipes-core/openjdk/openjdk-8-common.inc index 5ea83ed..2166147 100644 --- a/recipe

[oe] [meta-java][PATCH] icedtea7-native: host gcc-9, extra CFLAGS needed

2020-05-08 Thread Robert Berger
Signed-off-by: Robert Berger --- recipes-core/icedtea/icedtea7-native.inc | 5 + 1 file changed, 5 insertions(+) diff --git a/recipes-core/icedtea/icedtea7-native.inc b/recipes-core/icedtea/icedtea7-native.inc index 8d0dc71..b9ad2bd 100644 --- a/recipes-core/icedtea/icedtea7-native.inc +++

Re: [oe] [meta-networking] This version of TShark was not built with support for capturing packets

2020-05-08 Thread Paul Barker
On Fri, 08 May 2020 01:27:53 -0700 qaz79462...@gmail.com wrote: > I build my Yocto with wireshark_1.12.4.bb ( > https://git.congatec.com/yocto/meta-openembedded/blob/fido/meta-networking/recipes-support/wireshark/wireshark_1.12.4.bb > ) > put it on my machine and run tshark, it shows "tshark: Th

[oe] [meta-networking] This version of TShark was not built with support for capturing packets

2020-05-08 Thread qaz79462008
I build my Yocto with wireshark_1.12.4.bb ( https://git.congatec.com/yocto/meta-openembedded/blob/fido/meta-networking/recipes-support/wireshark/wireshark_1.12.4.bb ) put it on my machine and run tshark, it shows "tshark: This version of TShark was not built with support for capturing packets."

[oe] [meta-python][PATCH] python3-pyudev: add the missing rdepends

2020-05-08 Thread Yu, Mingli
From: Mingli Yu Add the missing rdepends to fix below error: # python3 [snip] >>> import pyudev [snip] ModuleNotFoundError: No module named 'fcntl' Signed-off-by: Mingli Yu --- meta-python/recipes-devtools/python/python3-pyudev_0.21.0.bb | 1 + 1 file changed, 1 insertion(+) diff --git a