Re: [OE-core] [PATCH v2] base-passwd: Add kvm group

2019-10-22 Thread Jacob Kroon
Hi Joshua, Mark, In general, I don't think we should be "patching in" users and groups like this to base-passwd. If upstream doesn't have them, they need to be added through the normal useradd.bbclass mechanism so that users of useradd-staticids can choose what ID they get mapped to. Is it

Re: [OE-core] [PATCH 16/19] meson: update to 0.52.0

2019-10-22 Thread Andreas Müller
On Sun, Oct 20, 2019 at 5:53 PM Andreas Müller wrote: > > > > As soon as I finished bisecting do_rootfs issue (reported) I will try > > > > * dconf-patch > > * dconf+meson patch > > > > and report. > > > > Thanks for taking care > > > Had to adjust the dconf-patch: > > * Here (and in master-next)

Re: [OE-core] [RFC][PATCH 0/6] NPM refactoring

2019-10-22 Thread Richard Purdie
On Tue, 2019-10-22 at 11:03 +0200, Jean-Marie LEMETAYER wrote: > The current NPM support have several issues: > - The current NPM fetcher downloads the dependency tree but not the other >fetchers. The 'subdir' parameter was used to fix this issue. > - They are multiple issues with package

[OE-core] [PATCH] meson: Backport fix to assist meta-oe breakage

2019-10-22 Thread Richard Purdie
Add a backported commit from upstream which helps fix build failures in meta-oe. Signed-off-by: Richard Purdie --- meta/recipes-devtools/meson/meson.inc | 1 + ...e971bd320f3df15c1ee74f54858e6792b183.patch | 95 +++ 2 files changed, 96 insertions(+) create mode 100644

[OE-core] [RFC][PATCH 3/6] recipetool/create_npm.py: refactor the npm recipe creation handler

2019-10-22 Thread Jean-Marie LEMETAYER
This commit refactors the npm recipe creation handler to use the new npm behavior. The process is kept as simple as possible and only generates the shrinkwrap file. To avoid naming issues the recipe name is now extracted from the npm package name and not directly map. Signed-off-by: Jean-Marie

[OE-core] [RFC][PATCH 4/6] devtool/standard.py: update the append file for the npm recipes

2019-10-22 Thread Jean-Marie LEMETAYER
When creating a recipe using devtool, a workspace is created to store the new recipe, the recipe source and some append files. These append files are used by devtool to build the recipe using externalsrc (to use the source which are in the workspace). They can also have some additional actions

[OE-core] [RFC][PATCH 6/6] recipetool/create.py: remove the 'noverify' url parameter

2019-10-22 Thread Jean-Marie LEMETAYER
This commit removes the 'noverify' parameter which was added to the url to fix warnings with the shrinkwrap / lockdown file generation. This is not needed anymore with the new npm fetcher. Signed-off-by: Jean-Marie LEMETAYER --- scripts/lib/recipetool/create.py | 2 -- 1 file changed, 2

[OE-core] [RFC][PATCH 5/6] recipetool/create.py: replace 'latest' keyword for npm

2019-10-22 Thread Jean-Marie LEMETAYER
The new npm fetcher allows the 'latest' keyword to be used to download the latest version on the registry. But the keyword must be replace as soon as the version is determined to have a stable generated recipe. Signed-off-by: Jean-Marie LEMETAYER --- scripts/lib/recipetool/create.py | 2 ++ 1

[OE-core] [RFC][PATCH 2/6] devtool: update command line options for npm

2019-10-22 Thread Jean-Marie LEMETAYER
This commit renames the '--fetch-dev' option into '--npm-dev' which is more easily understandable. It also adds the '--npm-registry' option to allow creating a npm recipe with a non default npm registry (e.g. if the SRC_URI is using git://). Signed-off-by: Jean-Marie LEMETAYER ---

[OE-core] [RFC][PATCH 1/6] npm.bbclass: refactor the npm class

2019-10-22 Thread Jean-Marie LEMETAYER
Many issues were related to npm dependencies badly handled: package names, installation directories, ... In fact npm is using an install algorithm [1] which is hard to reproduce / anticipate. Moreover some npm packages use scopes [2] which adds more complexity. The simplest solution is to let npm

[OE-core] [RFC][PATCH 0/6] NPM refactoring

2019-10-22 Thread Jean-Marie LEMETAYER
The current NPM support have several issues: - The current NPM fetcher downloads the dependency tree but not the other fetchers. The 'subdir' parameter was used to fix this issue. - They are multiple issues with package names (uppercase, exotic characters, scoped packages) even if they are

Re: [OE-core] [yocto][prelink-cross] Bug 13529 add SPDX identifier

2019-10-22 Thread Yann CARDAILLAC
On Mon, Oct 21, 2019 at 4:35 PM Mark Hatle wrote: > On 10/21/19 4:43 AM, Yann CARDAILLAC wrote: > > Hi Mark Hatle, Jakub Jelinek, > > Jakub is no longer supporting this code, but he may have valuable insights > into > licensing. > > > I'm currently beginning the work on bug 13529: > > > >

Re: [OE-core] [PATCH v2] coreutils: Move stdbuf into an own package coreutils-stdbuf

2019-10-22 Thread Richard Purdie
On Fri, 2019-10-04 at 17:20 +0300, Adrian Bunk wrote: > This LD_PRELOAD trick is not really suitable for busybox, > so can be the only part of coreutils needed. > > coreutils depends on the new package, > so nothing changes when installing coreutils. > > Signed-off-by: Adrian Bunk > --- >

Re: [OE-core] [PATCH v3] elfutils: add PACKAGECONFIG for compression algorithms

2019-10-22 Thread Richard Purdie
On Wed, 2019-10-16 at 08:44 +1000, Dan Callaghan wrote: > Elfutils has optional support for bzip2 and xz (lzma). It uses > this for decompressing embedded ELF sections like the .gnu_debugdata > section for "mini debuginfo": > > https://sourceware.org/gdb/onlinedocs/gdb/MiniDebugInfo.html > >

Re: [OE-core] [RFC][PATCH 1/6] npm.bbclass: refactor the npm class

2019-10-22 Thread Alexander Kanavin
On Tue, 22 Oct 2019 at 11:12, Jean-Marie LEMETAYER < jean-marie.lemeta...@savoirfairelinux.com> wrote: > The simplest solution is to let npm do its job. Assuming the fetcher > only get the sources of the package, the class will now run > 'npm install' to create a build directory. The build

Re: [OE-core] [PATCH v2] base-passwd: Add kvm group

2019-10-22 Thread Jacob Kroon
Forgot to mention, the number chosen for the kvm group, 47, I just picked one of the available slots, no further reasoning behind that choice. /Jacob On 10/22/19 8:32 AM, Jacob Kroon wrote: Hi Joshua, Mark, In general, I don't think we should be "patching in" users and groups like this to

[OE-core] [oe-core][PATCH 1/1] libtiff: fix CVE-2019-17546

2019-10-22 Thread Joe Slater
Apply unmodified patch from upstream. Signed-off-by: Joe Slater --- .../libtiff/tiff/CVE-2019-17546.patch | 104 + meta/recipes-multimedia/libtiff/tiff_4.0.10.bb | 1 + 2 files changed, 105 insertions(+) create mode 100644

[OE-core] ✗ patchtest: failure for libtiff: fix CVE-2019-17546

2019-10-22 Thread Patchwork
== Series Details == Series: libtiff: fix CVE-2019-17546 Revision: 1 URL : https://patchwork.openembedded.org/series/20599/ State : failure == Summary == Thank you for submitting this patch series to OpenEmbedded Core. This is an automated response. Several tests have been executed on the

Re: [OE-core] [yocto][prelink-cross] Bug 13529 add SPDX identifier

2019-10-22 Thread Mark Hatle
I need to look through it further, but everything I looked at (and your comments below) look good to me. I'll try to get this merge soon. (If you don't see it get merged, please ping me.) I'm preparing for ELC-E and am short on time right now. --Mark On 10/22/19 4:28 AM, Yann CARDAILLAC

Re: [OE-core] [PATCH] mesa: Upgrade to 19.2.1

2019-10-22 Thread Alistair Francis
On Sat, Oct 12, 2019 at 9:54 AM Alistair Francis wrote: > > Upgrade mesa and mesa-gl to 19.2.1. > > The license hash change was a trivial new line removal. > > The glx-tls option was removed as it isn't included in the meson.build > file. > > The -Dasm=false was removed as it also is no longer

[OE-core] ✗ patchtest: failure for bug 13528 add SPDX id to opkg

2019-10-22 Thread Patchwork
== Series Details == Series: bug 13528 add SPDX id to opkg Revision: 1 URL : https://patchwork.openembedded.org/series/20596/ State : failure == Summary == Thank you for submitting this patch series to OpenEmbedded Core. This is an automated response. Several tests have been executed on the

[OE-core] [yocto][PATCH][opkg] bug 13528 add SPDX id to opkg

2019-10-22 Thread Yann CARDAILLAC
Hi, I'm working on bug : https://bugzilla.yoctoproject.org/show_bug.cgi?id=13528 I've a first patch proposal. Note that I didn't knew what to do with m4/gpgme.m4 the license header seems pretty weird to me... Regards, -- [image: SMILE] 20 rue des Jardins 92600

[OE-core] Yocto Project Status WW43’19

2019-10-22 Thread Stephen K Jolley
Current Dev Position: YP 3.1 M1 Next Deadline: YP 3.0 Final Release 25th Oct SWAT Team Rotation: - SWAT lead is currently: Paul - SWAT team rotation: Ross -> Amanda on Oct. 25, 2019 - SWAT team rotation: Amanda -> Armin on Nov. 1, 2019 -

[OE-core] [PATCH 12/12] gstreamer: Change SRC_URI to use HTTPS access instead of HTTP

2019-10-22 Thread Carlos Rafael Giani
Some GStreamer recipes like gstreamer1.0-vaapi already use HTTPS instead of http. Also, access to http:// is simply redirected by the freedesktop server to https://, and using HTTPS is anyway generally recommended over plain HTTP for security reasons. So, normalize the URLs to use HTTPS only.

[OE-core] [PATCH 06/12] gstreamer1.0-libav: upgrade to version 1.16.1

2019-10-22 Thread Carlos Rafael Giani
Removed gtkdoc-no-tree.patch since its changes are now included in 1.16.1 Signed-off-by: Carlos Rafael Giani --- .../gstreamer1.0-libav/gtkdoc-no-tree.patch | 35 --- ...1.16.0.bb => gstreamer1.0-libav_1.16.1.bb} | 5 ++- 2 files changed, 2 insertions(+), 38 deletions(-)

[OE-core] [PATCH 04/12] gstreamer1.0-plugins-bad: upgrade to version 1.16.1

2019-10-22 Thread Carlos Rafael Giani
Signed-off-by: Carlos Rafael Giani --- ...ugins-bad_1.16.0.bb => gstreamer1.0-plugins-bad_1.16.1.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-multimedia/gstreamer/{gstreamer1.0-plugins-bad_1.16.0.bb => gstreamer1.0-plugins-bad_1.16.1.bb} (97%) diff --git

[OE-core] [PATCH 08/12] gstreamer1.0-omx: upgrade to version 1.16.1

2019-10-22 Thread Carlos Rafael Giani
Signed-off-by: Carlos Rafael Giani --- ...{gstreamer1.0-omx_1.16.0.bb => gstreamer1.0-omx_1.16.1.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-multimedia/gstreamer/{gstreamer1.0-omx_1.16.0.bb => gstreamer1.0-omx_1.16.1.bb} (93%) diff --git

[OE-core] [PATCH 03/12] gstreamer1.0-plugins-good: upgrade to version 1.16.1

2019-10-22 Thread Carlos Rafael Giani
* 0001-scaletempo-Advertise-interleaved-layout-in-caps-temp.patch * headerfix.patch Removed since these changes are already included in 1.16.1 Signed-off-by: Carlos Rafael Giani --- ...tise-interleaved-layout-in-caps-temp.patch | 37

[OE-core] [PATCH 02/12] gstreamer1.0-plugins-base: upgrade to version 1.16.1

2019-10-22 Thread Carlos Rafael Giani
Signed-off-by: Carlos Rafael Giani --- ...ins-base_1.16.0.bb => gstreamer1.0-plugins-base_1.16.1.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-multimedia/gstreamer/{gstreamer1.0-plugins-base_1.16.0.bb => gstreamer1.0-plugins-base_1.16.1.bb} (96%) diff --git

[OE-core] [PATCH 09/12] gstreamer1.0-python: upgrade to version 1.16.1

2019-10-22 Thread Carlos Rafael Giani
Signed-off-by: Carlos Rafael Giani --- ...amer1.0-python_1.16.0.bb => gstreamer1.0-python_1.16.1.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-multimedia/gstreamer/{gstreamer1.0-python_1.16.0.bb => gstreamer1.0-python_1.16.1.bb} (88%) diff --git

[OE-core] [PATCH 07/12] gstreamer1.0-vaapi: upgrade to version 1.16.1

2019-10-22 Thread Carlos Rafael Giani
Signed-off-by: Carlos Rafael Giani --- ...reamer1.0-vaapi_1.16.0.bb => gstreamer1.0-vaapi_1.16.1.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-multimedia/gstreamer/{gstreamer1.0-vaapi_1.16.0.bb => gstreamer1.0-vaapi_1.16.1.bb} (93%) diff --git

[OE-core] [PATCH 05/12] gstreamer1.0-plugins-ugly: upgrade to version 1.16.1

2019-10-22 Thread Carlos Rafael Giani
Signed-off-by: Carlos Rafael Giani --- ...ins-ugly_1.16.0.bb => gstreamer1.0-plugins-ugly_1.16.1.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-multimedia/gstreamer/{gstreamer1.0-plugins-ugly_1.16.0.bb => gstreamer1.0-plugins-ugly_1.16.1.bb} (90%) diff --git

[OE-core] [PATCH 11/12] gst-validate: upgrade to version 1.16.1

2019-10-22 Thread Carlos Rafael Giani
Signed-off-by: Carlos Rafael Giani --- .../{gst-validate_1.16.0.bb => gst-validate_1.16.1.bb}| 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-multimedia/gstreamer/{gst-validate_1.16.0.bb => gst-validate_1.16.1.bb} (87%) diff --git

[OE-core] [PATCH 01/12] gstreamer1.0: upgrade to version 1.16.1

2019-10-22 Thread Carlos Rafael Giani
Signed-off-by: Carlos Rafael Giani --- .../{gstreamer1.0_1.16.0.bb => gstreamer1.0_1.16.1.bb}| 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-multimedia/gstreamer/{gstreamer1.0_1.16.0.bb => gstreamer1.0_1.16.1.bb} (96%) diff --git

[OE-core] [PATCH 10/12] gstreamer1.0-rtsp-server: upgrade to version 1.16.1

2019-10-22 Thread Carlos Rafael Giani
Signed-off-by: Carlos Rafael Giani --- ...sp-server_1.16.0.bb => gstreamer1.0-rtsp-server_1.16.1.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta/recipes-multimedia/gstreamer/{gstreamer1.0-rtsp-server_1.16.0.bb => gstreamer1.0-rtsp-server_1.16.1.bb} (88%) diff --git

Re: [OE-core] [PATCH v3 1/5] conf/image-uefi: fix building images for multilib case

2019-10-22 Thread Dmitry Eremin-Solenikov
Hello, вт, 15 окт. 2019 г. в 00:50, : > > From: Dmitry Eremin-Solenikov > > Building live images for lib32-core-minimal-image will fail because > image target override won't match grub's override. Fix this by > introducing anonymous python function. A proper fix should be to > introduce multilib

[OE-core] [oe-core][PATCH 1/1] libxslt: fix CVE-2019-18197

2019-10-22 Thread Joe Slater
Use patch from upstream after 1.1.33 release. Signed-off-by: Joe Slater --- .../libxslt/files/CVE-2019-18197.patch | 33 ++ meta/recipes-support/libxslt/libxslt_1.1.33.bb | 1 + 2 files changed, 34 insertions(+) create mode 100644

[OE-core] [PATCH 2/2] meta: add missing description in recipes-gnome

2019-10-22 Thread Maxime Roussin-Bélanger
From: Maxime Roussin-Belanger Signed-off-by: Maxime Roussin-Bélanger --- meta/recipes-gnome/gcr/gcr_3.28.1.bb | 3 +++ meta/recipes-gnome/gdk-pixbuf/gdk-pixbuf_2.38.2.bb| 3 +++ meta/recipes-gnome/gnome/gconf_3.2.6.bb | 3 +++

[OE-core] [PATCH 1/2] meta: update and add missing homepage/bugtracker links for gnome recipes

2019-10-22 Thread Maxime Roussin-Bélanger
From: Maxime Roussin-Belanger Gnome has moved to gitlab in 2018. Some of the homepage urls didn't exist anymore. Signed-off-by: Maxime Roussin-Bélanger --- meta/recipes-gnome/epiphany/epiphany_3.34.1.bb| 1 + meta/recipes-gnome/gcr/gcr_3.28.1.bb | 4

[OE-core] [PATCH] distutils: pass along parallel make flags to setup.py build

2019-10-22 Thread Nick Owens
parallel builds for native code in python modules was added about 5 years ago. distutils understands '-j N', so just pass along ${PARALLEL_MAKE} to setup.py build. Signed-off-by: Nick Owens --- meta/classes/distutils.bbclass | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

[OE-core] ✗ patchtest: failure for libxslt: fix CVE-2019-18197

2019-10-22 Thread Patchwork
== Series Details == Series: libxslt: fix CVE-2019-18197 Revision: 1 URL : https://patchwork.openembedded.org/series/20601/ State : failure == Summary == Thank you for submitting this patch series to OpenEmbedded Core. This is an automated response. Several tests have been executed on the

[OE-core] [PATCH] libx11: Upgrade to 1.6.9

2019-10-22 Thread Zheng Ruoqin
1) Upgrade libx11 from 1.6.8 to 1.6.9. 2) Delete patches for they have been meraged in new version. no-host-libtool.patch no-host-x.patch Signed-off-by: Zheng Ruoqin --- meta/recipes-graphics/xorg-lib/libx11.inc | 7 ++-- .../xorg-lib/libx11/no-host-libtool.patch | 45

[OE-core] [zeus][PATCH 1/2] python3: fix CVE-2019-16935

2019-10-22 Thread Chen Qi
Signed-off-by: Chen Qi --- server-Escape-the-server_title-GH-1.patch | 86 +++ meta/recipes-devtools/python/python3_3.7.4.bb | 1 + 2 files changed, 87 insertions(+) create mode 100644

[OE-core] [zeus][PATCH 2/2] python: fix CVE-2019-16935

2019-10-22 Thread Chen Qi
Signed-off-by: Chen Qi --- ...cape-the-server-title-of-DocXMLRPCSe.patch | 101 ++ meta/recipes-devtools/python/python_2.7.16.bb | 1 + 2 files changed, 102 insertions(+) create mode 100644

[OE-core] ✗ patchtest: failure for "[zeus] python3: fix CVE-2019-1..." and 1 more

2019-10-22 Thread Patchwork
== Series Details == Series: "[zeus] python3: fix CVE-2019-1..." and 1 more Revision: 1 URL : https://patchwork.openembedded.org/series/20603/ State : failure == Summary == Thank you for submitting this patch series to OpenEmbedded Core. This is an automated response. Several tests have been