Re: [oe] [meta-python][PATCH v2] systemd-python: add a new recipe

2017-04-11 Thread Florian Wickert
I suggest to use DEPENDS += "systemd (<=234)" to enforce version checking against systemd for this recipe. License is LICENSE = "LGPLv2.1+" from what I see on github. Also, since you are using ${PYTHON_PN} already, it would be good to have both python 2 & 3 recipes. On 04/10/2017 11:31 PM, An

Re: [oe] [meta-python][PATCH v2] systemd-python: add a new recipe

2017-04-11 Thread Martin Jansa
On Tue, Apr 11, 2017 at 10:36:54AM +0200, Florian Wickert wrote: > I suggest to use DEPENDS += "systemd (<=234)" to enforce version > checking against systemd for this recipe. > License is LICENSE = "LGPLv2.1+" from what I see on github. > Also, since you are using ${PYTHON_PN} already, it would b

[oe] [PATCH] picocom: Fix incorrect handling of ldflags

2017-04-11 Thread Federico Giovanardi
The previous version reports QA issue: no GNU_HASH in elf binary during build Signed-off-by: Federico Giovanardi --- meta-oe/recipes-support/picocom/picocom_1.7.bb | 1 + 1 file changed, 1 insertion(+) diff --git a/meta-oe/recipes-support/picocom/picocom_1.7.bb b/meta-oe/recipes-support/picoco

Re: [oe] [meta-browser] [PATCH] chromium: fix null pointer dereference in V8 with gcc-6

2017-04-11 Thread Andrey Konovalov
On 04/11/2017 03:40 AM, Andre McCurdy wrote: On Fri, Apr 7, 2017 at 11:40 AM, Andrey Konovalov wrote: This patch prevents "Aw Snap" error when loading a page with JavaScript. Tested by running: - chromium-wayland on Beagle X15 - chromium-wayland on HiKey (with a separate patch to enable aarch6

[oe] [meta-qt5][PATCH] qtdeclarative: fix memory leaks

2017-04-11 Thread Gordan Markuš
* Fix QQmlExpression leaking QQmlError objects * Fix V4 Javascript Engine creating duplicate entries * Fix memory leak in QQuickWindowPrivate::deliverTouchAsMouse Signed-off-by: Gordan Markuš --- ...-QQmlExpression-leaking-QQmlError-objects.patch | 35 + .../qtdeclarative/0002-Fix-memory

Re: [oe] [PATCH] picocom: Fix incorrect handling of ldflags

2017-04-11 Thread Martin Jansa
I think It's already fixed in Khem's upgrade to 2.2 version. On Tue, Apr 11, 2017 at 2:46 PM, Federico Giovanardi < fgiovana...@aragnet.com> wrote: > The previous version reports QA issue: no GNU_HASH in elf binary > during build > > Signed-off-by: Federico Giovanardi > --- > meta-oe/recipes-su

[oe] [meta-qt5][PATCH] qtwayland: fix initial window property values

2017-04-11 Thread Gordan Markuš
This fixes a bug where there is nothing rendered on the QtWayland surface due to missing window properties. Signed-off-by: Gordan Markuš --- ...l-window-property-values-being-propagated.patch | 35 ++ recipes-qt/qt5/qtwayland_git.bb| 5 +++- 2 files chang

Re: [oe] [meta-browser] [PATCH] chromium: fix null pointer dereference in V8 with gcc-6

2017-04-11 Thread Andre McCurdy
On Tue, Apr 11, 2017 at 6:02 AM, Andrey Konovalov wrote: > On 04/11/2017 03:40 AM, Andre McCurdy wrote: >> >> On Fri, Apr 7, 2017 at 11:40 AM, Andrey Konovalov >> wrote: >>> >>> This patch prevents "Aw Snap" error when loading a page with JavaScript. >>> >>> Tested by running: >>> - chromium-wayl

Re: [oe] [meta-browser] [PATCH] chromium: fix null pointer dereference in V8 with gcc-6

2017-04-11 Thread Andrey Konovalov
On 04/11/2017 09:51 PM, Andre McCurdy wrote: On Tue, Apr 11, 2017 at 6:02 AM, Andrey Konovalov wrote: On 04/11/2017 03:40 AM, Andre McCurdy wrote: On Fri, Apr 7, 2017 at 11:40 AM, Andrey Konovalov wrote: -GYP_DEFINES += "${ARMFPABI} release_extra_cflags='-Wno-error=unused-local-typedefs'

Re: [oe] [meta-networking][PATCH] wireguard: add WireGuard kernel module and tools

2017-04-11 Thread Stefan Agner
Hi Martin, I tried to reproduce your findings, unfortunately building qemux86copy fails for me with this: Parsing recipes: 100% |##| Time: 0:00:20 Parsing of 1865 .bb files complete (0 cached,

Re: [oe] [meta-networking][PATCH] wireguard: add WireGuard kernel module and tools

2017-04-11 Thread Stefan Agner
I guess one solution would be adding PACKAGE_ARCH = "${MACHINE_ARCH}" to the wireguard-tools recipe, but that seems wrong to me since we can reuse wireguard-tools for all TUNE_PKGARCH's... Any hint/help appreciated. -- Stefan On 2017-04-06 00:29, Martin Jansa wrote: > TUNE_PKGARCH p

Re: [oe] [meta-networking][PATCH] wireguard: add WireGuard kernel module and tools

2017-04-11 Thread Martin Jansa
Hi, you don't need to build anything for qemux86copy just use sstate-diff-machines.sh script from oe-core to compare sstate signatures. You can see some SIGGEN_EXCLUDE_SAFE_RECIPE_DEPS examples in: http://git.openembedded.org/meta-openembedded/tree/meta-oe/conf/layer.conf http://git.openembedded.

[oe] [meta-oe][PATCH 0/2] V3: Fix gflags and opencv build errors for multilib

2017-04-11 Thread kai.kang
From: Kai Kang Tested on qemuppc and qemux86-64 with multilib. Kai Kang (2): gflags: correct S and update library install directory opencv: correct subpackage name for multilib meta-oe/recipes-support/gflags/gflags_2.2.0.bb | 3 +-- meta-oe/recipes-support/opencv/opencv_3.2.bb | 4 ++--

[oe] [PATCH 1/2] gflags: correct S and update library install directory

2017-04-11 Thread kai.kang
From: Kai Kang The current setting of S is not right for multilib. Remove the setting and use the default value. And library install directory is not right for multilib either. It fails with [installed-vs-shipped] QA error: | ERROR: gflags-2.2.0-r0 do_package: QA Issue: gflags: Files/directorie

[oe] [PATCH 2/2] opencv: correct subpackage name for multilib

2017-04-11 Thread kai.kang
From: Kai Kang Subpackage python3-${PN} is not right for multilib and it will be extended to such as lib32-python3-lib32-opencv. Replace PN with BPN to fix it. Signed-off-by: Kai Kang --- meta-oe/recipes-support/opencv/opencv_3.2.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) d

[oe] [PATCH] crash: 7.1.5 -> 7.1.8

2017-04-11 Thread Dengke Du
Upgrade crash to fix build failure with glibc 2.25. Signed-off-by: Dengke Du --- ...ompilation-error-if-glibc-2.25-or-later-h.patch | 112 + ...uild-error-unknown-type-name-gdb_fpregset.patch | 36 +++ ...sh-detect-the-sysroot-s-glibc-header-file.patch | 33 ++ .../

Re: [oe] [PATCH] crash: 7.1.5 -> 7.1.8

2017-04-11 Thread Dengke Du
This patch need to add the "id cc" to HOSTTOOLS in bitbake.conf in oe-core, I will send the patch to oe-core later. On 2017年04月12日 10:03, Dengke Du wrote: Upgrade crash to fix build failure with glibc 2.25. Signed-off-by: Dengke Du --- ...ompilation-error-if-glibc-2.25-or-later-h.patch | 1

Re: [oe] [PATCH] crash: 7.1.5 -> 7.1.8

2017-04-11 Thread Peter Kjellerstedt
> -Original Message- > From: openembedded-devel-boun...@lists.openembedded.org > [mailto:openembedded-devel-boun...@lists.openembedded.org] On Behalf Of > Dengke Du > Sent: den 12 april 2017 05:37 > To: openembedded-devel@lists.openembedded.org > Subject: Re: [oe] [PATCH] crash: 7.1.5 -> 7.

Re: [oe] [PATCH] crash: 7.1.5 -> 7.1.8

2017-04-11 Thread Dengke Du
On 2017年04月12日 12:03, Peter Kjellerstedt wrote: This patch need to add the "id cc" to HOSTTOOLS in bitbake.conf in oe-core, I will send the patch to oe-core later. I doubt you will get either "id" or "cc" accepted into HOSTTOOLS in OE-Core. Definitely not "cc" as recipes are expected to use ${

[oe] [meta-perl][PATCH] libnet-ssleay-perl: add openssl-native to DEPENDS

2017-04-11 Thread Qi.Chen
From: Chen Qi Add 'openssl-native' to DEPENDS to fix the following do_configure error. *** Could not find OpenSSL Signed-off-by: Chen Qi --- meta-perl/recipes-perl/libnet/libnet-ssleay-perl_1.80.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-perl/recipes-perl/li

[oe] [meta-networking][PATCH] quagga: set ac_cv_path_PERL to '/usr/bin/env perl'

2017-04-11 Thread Qi.Chen
From: Chen Qi Set ac_cv_path_PERL to '/usr/bin/env perl' to fix problem when /path/to/hosttools/perl is longer than 128. Signed-off-by: Chen Qi --- meta-networking/recipes-protocols/quagga/quagga.inc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meta-networking/recipes-protocols/quagga

[oe] [PATCH V2] crash: 7.1.5 -> 7.1.8

2017-04-11 Thread Dengke Du
1. Upgrade crash to fix build failure with glibc 2.25. 2. Add the "id" to HOSTTOOLS in meta-oe/layer.conf Signed-off-by: Dengke Du --- meta-oe/conf/layer.conf| 2 + ...ompilation-error-if-glibc-2.25-or-later-h.patch | 112 + .../crash/0001-cross_

Re: [oe] [meta-networking][PATCH] wireguard: add WireGuard kernel module and tools

2017-04-11 Thread Stefan Agner
On 2017-04-11 14:18, Martin Jansa wrote: > Hi, > > you don't need to build anything for qemux86copy just use > sstate-diff-machines.sh script from oe-core to compare sstate signatures. Oh ok, got it, with that call I could reproduce it: ../scripts/sstate-diff-machines.sh --tmpdir=tmp-glib

[oe] [meta-networking][PATCH v2] wireguard: add WireGuard kernel module and tools

2017-04-11 Thread Stefan Agner
WireGuard is an extremely simple yet fast and modern VPN that utilizes state-of-the-art cryptography. It aims to be faster, simpler, leaner, and more useful than IPSec, while avoiding the massive headache. The recipes add the current experimental snapshot v0.0.20170409 out-of-tree kernel module an