[oe] [meta-oe][PATCH] abseil-cpp: Ask for C++14 std explicitly

2021-03-03 Thread Khem Raj
Newer gcc ( gcc11 ) will be defaulting to c++17 and abseil currently needs work to get working with c++17, so pin to c++14 untill upstream gets it working with c++17 Signed-off-by: Khem Raj --- meta-oe/recipes-devtools/abseil-cpp/abseil-cpp_git.bb | 1 + 1 file changed, 1 insertion(+) diff

[oe] [meta-python][PATCH] python3-grpcio: Fix build on mips and musl

2021-03-03 Thread Khem Raj
Signed-off-by: Khem Raj --- .../0001-absl-always-use-asm-sgidefs.h.patch | 33 +++ .../python3-grpcio/mips_bigendian.patch | 15 + .../python/python3-grpcio_1.36.1.bb | 2 ++ 3 files changed, 50 insertions(+) create mode 100644

[oe] [meta-oe][PATCH] libyui-ncurses: Pass -DNCURSES_WIDECHAR in CXXFLAGS

2021-03-03 Thread Khem Raj
We want the wide character functions from the ncurses header. Unfortunately it doesn't provide them by default, but only if either: * NCURSES_WIDECHAR is defined (for ncurses 20111030 and up) * _XOPEN_SOURCE/_XOPEN_SOURCE_EXTENDED are suitably defined So far we have been implicitly relying on

[oe] [meta-oe][PATCH] libyui: Adopt to new cmake option to disable Werror

2021-03-03 Thread Khem Raj
Add -DCMAKE_BUILD_TYPE=RELWITHDEBINFO so we have balance between build speed and debug info Signed-off-by: Khem Raj --- meta-oe/recipes-graphics/libyui/libyui_4.0.0.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-oe/recipes-graphics/libyui/libyui_4.0.0.bb

[oe] [meta-multimedia][PATCH] libcamera: Update to latest

2021-03-03 Thread Khem Raj
Add a fix for build with gcc11 Signed-off-by: Khem Raj Cc: Andreas Müller --- .../recipes-multimedia/libcamera/libcamera.bb | 7 ++-- ...o-variable-to-avoid-range-loop-warni.patch | 38 +++ 2 files changed, 42 insertions(+), 3 deletions(-) create mode 100644

[oe] [meta-gnome][PATCH 2/2] gimp: Disable svg icons on arm

2021-03-03 Thread Khem Raj
latest gcc11 causes segmentation faults during build | make[3]: *** [Makefile:2395: 24/gimp-color-space-perceptual.svg] Segmentation fault | make[3]: *** [Makefile:2395: 24/gimp-char-picker.svg] Segmentation fault Signed-off-by: Khem Raj Cc: Andreas Müller ---

[oe] [meta-gnome][PATCH 1/2] gimp: Add missing dependencies

2021-03-03 Thread Khem Raj
Disable checking for updates during runtime Signed-off-by: Khem Raj Cc: Andreas Müller --- meta-gnome/recipes-gimp/gimp/gimp_2.10.22.bb | 7 +++ 1 file changed, 7 insertions(+) diff --git a/meta-gnome/recipes-gimp/gimp/gimp_2.10.22.bb b/meta-gnome/recipes-gimp/gimp/gimp_2.10.22.bb index

[oe] [meta-oe][PATCH] libyui-ncurses: Disable Werror

2021-03-03 Thread Khem Raj
There are new warnings seen with new clang 12 and gcc11 lets disable the warnings-as-errors for now src/NCPopupTextEntry.cc:76:74: error: 'void operator delete(void*, std::size_t)' called on pointer returned from a mismatched allocation function [-Werror=mismatched-new-delete] |76 |

[oe] [meta-oe][PATCH] libyui,libyui-ncurses: Upgrade to 4.0.0

2021-03-03 Thread Khem Raj
Signed-off-by: Khem Raj Cc: Pascal Bach --- ...-the-error-of-can-t-find-header-file.patch | 22 +++- ...0003-Simplify-ncurses-finding-module.patch | 35 --- ...rses_2.55.0.bb => libyui-ncurses_4.0.0.bb} | 7 +--- .../libyui/0001-Fix-build-with-clang.patch| 10 +++---

Re: [oe] [meta-multimedia][PATCH 1/2] pipewire: Move to meta-multimedia

2021-03-03 Thread Andreas Müller
On Wed, Mar 3, 2021 at 12:41 PM Carlos Rafael Giani via lists.openembedded.org wrote: > > Signed-off-by: Carlos Rafael Giani > --- > .../recipes-multimedia/pipewire/pipewire-0.2_git.bb | 0 > .../recipes-multimedia/pipewire/pipewire_git.bb | 0 > 2 files changed,

[oe] [meta-oe][PATCH] mongodb: Include c++ header

2021-03-03 Thread Khem Raj
Fixes build with gcc11 Signed-off-by: Khem Raj --- .../0001-include-needed-c-header.patch| 29 +++ .../recipes-dbs/mongodb/mongodb_git.bb| 1 + 2 files changed, 30 insertions(+) create mode 100644

[oe] [meta-oe][PATCH] grpc: Upgrade to 1.36.1

2021-03-03 Thread Khem Raj
Changelog https://github.com/grpc/grpc/releases/tag/v1.36.0-pre1 https://github.com/grpc/grpc/releases/tag/v1.36.0 https://github.com/grpc/grpc/releases/tag/v1.36.1 Signed-off-by: Khem Raj --- .../recipes-devtools/grpc/{grpc_1.35.0.bb => grpc_1.36.1.bb} | 4 ++-- 1 file changed, 2

[oe] [meta-python][PATCH] python3-grpcio: Upgrade to 1.36.1

2021-03-03 Thread Khem Raj
Release notes are here [1] See the differences after 1.35.0 upwards [1] https://github.com/grpc/grpc/releases Signed-off-by: Khem Raj --- .../python/python3-grpcio/ppc-boringssl-support.patch | 2 +- .../python/python3-grpcio/riscv64_support.patch | 2 +-

[oe] [meta-oe][PATCH] opengl-es-cts: Disable -Wuninitialized for external/amber

2021-03-03 Thread Khem Raj
the code in verifier.cc needs to be ported to use enums or memcpy as it violates aliasing rules. Until then disable the warning HexFloat16ToFloat, HexFloat10ToFloat, HexFloat11ToFloat are the functions to be reworked in external/amber/src/src/verifier.cc Signed-off-by: Khem Raj Cc: Dmitry

Re: [oe] [meta-multimedia][PATCH 2/2] pipewire: Rework 0.3 recipe and upgrade to 0.3.22

2021-03-03 Thread Johannes Pointner
Hello Carlos, On Wed, Mar 3, 2021 at 12:41 PM Carlos Rafael Giani via lists.openembedded.org wrote: > > * Use a versioned recipe instead of _git > * Add more packageconfigs: alsa, docs, sdl2, sndfile, v4l2, > pipewire-alsa, pipewire-jack > * Split SPA and module packages dynamically to

[oe] [meta-oe][PATCH] mozjs: Drop using JS_VOLATILE_ARM

2021-03-03 Thread Khem Raj
JS_VOLATILE_ARM was a workaround for a gcc 4.7 bug on B2G where it would generate unaligned word accesses that should have been individual byte accesses. firefox now a days require at least gcc 6.1+ (and ARM systems support unaligned accesses). see [1] in gcc11 volatile wont be accepted as

Re: [oe] [PATCH v2] v4l-utils: Package systemd fragment for systemd-udevd.service.d

2021-03-03 Thread Ulrich Ölmann
On Wed, Mar 03 2021 at 18:41 +0100, Khem Raj wrote: > Signed-off-by: Khem Raj > Cc: Ulrich Ölmann > --- > v2: Package it in ir-keytable > meta-oe/recipes-multimedia/v4l2apps/v4l-utils_1.20.0.bb | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git

[oe] [meta-oe][PATCH] rsyslog: Update 8.2012.0 -> 8.2102.0

2021-03-03 Thread Yi Fan Yu
Ptest Results: (Timeout 800) (qemux86-64) 2012 2102 TOTAL: 424 424 PASS: 369 369 SKIP: 41 41 XFAIL: 00 FAIL: 14 14 XPASS: 00 ERROR: 00 Many ptest failures are due to busybox logger not having the `-d` flag. ---

[oe] [PATCH v2] v4l-utils: Package systemd fragment for systemd-udevd.service.d

2021-03-03 Thread Khem Raj
Signed-off-by: Khem Raj Cc: Ulrich Ölmann --- v2: Package it in ir-keytable meta-oe/recipes-multimedia/v4l2apps/v4l-utils_1.20.0.bb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meta-oe/recipes-multimedia/v4l2apps/v4l-utils_1.20.0.bb

Re: [oe] [meta-oe][PATCH 3/4] v4l-utils: Package systemd fragment for systemd-udevd.service.d

2021-03-03 Thread Ulrich Ölmann
Hi Khem, please have a look at my reply to my original patch, as well. On Wed, Mar 03 2021 at 05:16 +0100, Khem Raj wrote: > Signed-off-by: Khem Raj > --- > meta-oe/recipes-multimedia/v4l2apps/v4l-utils_1.20.0.bb | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git

Re: [oe] [meta-oe][PATCH] v4l-utils: update to 1.20.0

2021-03-03 Thread Khem Raj
On Wed, Mar 3, 2021 at 8:52 AM Ulrich Ölmann wrote: > > Hi Khem, > > On Wed, Mar 03 2021 at 05:32 +0100, Khem Raj wrote: > > I am seeing some packaging errors > > > > https://autobuilder.yoctoproject.org/typhoon/#/builders/88/builds/988 > > now it's getting interesting as I did not see this

Re: [oe] [meta-oe][PATCH] v4l-utils: update to 1.20.0

2021-03-03 Thread Ulrich Ölmann
Hi Khem, On Wed, Mar 03 2021 at 05:32 +0100, Khem Raj wrote: > I am seeing some packaging errors > > https://autobuilder.yoctoproject.org/typhoon/#/builders/88/builds/988 now it's getting interesting as I did not see this problem when testing my package upgrade. Digging deeper reveals that

Re: [oe] [meta-python2][dunfell][PATCH] python: Add fix for CVE-2019-9674

2021-03-03 Thread Martin Jansa
On Wed, Mar 3, 2021 at 4:26 PM Rahul Taya wrote: > Hi Martin, > > No i run devtool modify python only once and it applies the patch in > source file. > Then you had to run "git am" manually in this directory and never finish? you need to finish it or all git am --abort when you give up. What

Re: [oe] [meta-oe][PATCH] grpc: Upgrade 1.24.3 -> 1.35.0

2021-03-03 Thread Anatol Belski
Hi, On 3/2/2021 8:13 PM, Clément Péron wrote: Hi Stefan, Le mar. 2 mars 2021 à 19:38, Stefan Herbrechtsmeier mailto:ste...@herbrechtsmeier.net>> a écrit : Hi, Am 02.03.21 um 19:22 schrieb Anatol Belski: > > On 3/2/2021 5:06 PM, Clément Péron wrote: >>> I don't use this

Re: [oe] [meta-multimedia][PATCH] srt: Backport fix for missing header

2021-03-03 Thread Khem Raj
On Wed, Mar 3, 2021 at 5:39 AM Jose Quaresma wrote: > > Hi Khem, > > Khem Raj escreveu no dia terça, 2/03/2021 à(s) 20:09: >> >> Signed-off-by: Khem Raj >> Cc: Jose Quaresma >> Cc: Andreas Müller >> --- >> ...001-core-Fix-build-with-GCC-11.-1806.patch | 26 +++ >>

[oe] [meta-multimedia][PATCH v2 1/2] mpich: Upgrade to 3.4.1

2021-03-03 Thread Khem Raj
Add fixes to work with/with-out X Signed-off-by: Khem Raj Cc: Jose Quaresma Cc: Andreas Müller --- meta-oe/recipes-devtools/mpich/mpich_3.2.bb | 47 meta-oe/recipes-devtools/mpich/mpich_3.4.1.bb | 54 +++ 2 files changed, 54 insertions(+), 47 deletions(-)

[oe] [meta-multimedia][PATCH v2 2/2] srt: Backport fix for missing header

2021-03-03 Thread Khem Raj
Signed-off-by: Khem Raj Cc: Jose Quaresma Cc: Andreas Müller --- ...001-core-Fix-build-with-GCC-11.-1806.patch | 26 +++ .../recipes-support/srt/srt_1.4.2.bb | 1 + 2 files changed, 27 insertions(+) create mode 100644

Re: [oe] [meta-python2][dunfell][PATCH] python: Add fix for CVE-2019-9674

2021-03-03 Thread Martin Jansa
Did you run "devtool modify python" twice? If the first call failed to apply patches you need to go into workspace/sources/python and finish applying it manually. But as said in previous e-mails I've already updated your python patch to apply cleanly (and it's in meta-python2/master-next), so I'm

Re: [oe] [meta-python2][dunfell][PATCH] python: Add fix for CVE-2019-9674

2021-03-03 Thread Rahul Taya
Hi Martin, Firstlty i run : devtool modify python this command applied all the patches in the source code. After this when i run : devtool finish --force-patch-refresh where recipe = python and layer path = /workspace/sources/python i'm getting message: workspace/sources/python

Re: [oe] [meta-multimedia][PATCH] srt: Backport fix for missing header

2021-03-03 Thread Jose Quaresma
Hi Khem, Khem Raj escreveu no dia terça, 2/03/2021 à(s) 20:09: > Signed-off-by: Khem Raj > Cc: Jose Quaresma > Cc: Andreas Müller > --- > ...001-core-Fix-build-with-GCC-11.-1806.patch | 26 +++ > .../recipes-support/srt/srt_1.4.2.bb | 1 + >

Re: [oe] [meta-python][PATCH 1/2] python3-aiohue: Integrate the hue control python module

2021-03-03 Thread Andrei Gherzan
On Tue, 2 Mar 2021, at 18:19, Khem Raj wrote: > can you send a followup to add these new packages to > packagegroup-meta-python as well ? Sure, it is now part of a v2 including all the 6 patches I've sent. https://lists.openembedded.org/g/openembedded-devel/message/89832 I have: * fixed a typo

[oe] [meta-python][PATCH v2 5/6] python3-pep8: Fix HOMEPAGE

2021-03-03 Thread Andrei Gherzan
Signed-off-by: Andrei Gherzan Signed-off-by: Khem Raj --- meta-python/recipes-devtools/python/python3-pep8_1.7.1.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-python/recipes-devtools/python/python3-pep8_1.7.1.bb

[oe] [meta-python][PATCH v2 4/6] packagegroup-meta-python: Add new modules (aiohue, ifaddr, pysonos)

2021-03-03 Thread Andrei Gherzan
Signed-off-by: Andrei Gherzan --- .../recipes-core/packagegroups/packagegroup-meta-python.bb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb b/meta-python/recipes-core/packagegroups/packagegroup-meta-python.bb index

[oe] [meta-python][PATCH v2 6/6] python3-mccabe: Fix HOMEPAGE

2021-03-03 Thread Andrei Gherzan
Signed-off-by: Andrei Gherzan Signed-off-by: Khem Raj --- meta-python/recipes-devtools/python/python3-mccabe_0.6.1.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-python/recipes-devtools/python/python3-mccabe_0.6.1.bb

[oe] [meta-python][PATCH v2 3/6] python3-aiohue: Integrate the hue control python module

2021-03-03 Thread Andrei Gherzan
From: Andrei Gherzan Signed-off-by: Andrei Gherzan --- recipes-devtools/python/python3-aiohue_2.2.0.bb | 12 1 file changed, 12 insertions(+) create mode 100644 recipes-devtools/python/python3-aiohue_2.2.0.bb diff --git a/recipes-devtools/python/python3-aiohue_2.2.0.bb

[oe] [meta-python][PATCH v2 2/6] python3-pysonos: Integrate the SONOS control HomeAssistant module

2021-03-03 Thread Andrei Gherzan
From: Andrei Gherzan Signed-off-by: Andrei Gherzan --- recipes-devtools/python/python3-pysonos_0.0.40.bb | 15 +++ 1 file changed, 15 insertions(+) create mode 100644 recipes-devtools/python/python3-pysonos_0.0.40.bb diff --git a/recipes-devtools/python/python3-pysonos_0.0.40.bb

[oe] [meta-python][PATCH v2 1/6] python3-ifaddr: Integrate a dependency of pysonos

2021-03-03 Thread Andrei Gherzan
From: Andrei Gherzan Signed-off-by: Andrei Gherzan --- .../python3-ifaddr/python3-ifaddr_0.1.7.bb | 10 ++ 1 file changed, 10 insertions(+) create mode 100644 recipes-connectivity/python3-ifaddr/python3-ifaddr_0.1.7.bb diff --git

[oe] [meta-multimedia][PATCH 2/2] pipewire: Rework 0.3 recipe and upgrade to 0.3.22

2021-03-03 Thread Carlos Rafael Giani via lists.openembedded.org
* Use a versioned recipe instead of _git * Add more packageconfigs: alsa, docs, sdl2, sndfile, v4l2, pipewire-alsa, pipewire-jack * Split SPA and module packages dynamically to generate one package for each SPA plugin and for each module * Split pipewire library, shim PulseAudio daemon, main

[oe] [meta-multimedia][PATCH 1/2] pipewire: Move to meta-multimedia

2021-03-03 Thread Carlos Rafael Giani via lists.openembedded.org
Signed-off-by: Carlos Rafael Giani --- .../recipes-multimedia/pipewire/pipewire-0.2_git.bb | 0 .../recipes-multimedia/pipewire/pipewire_git.bb | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename {meta-oe =>

Re: [oe][meta-oe][dunfell][PATCH] jsoncpp: Upgrade to 1.9.4

2021-03-03 Thread Andrej Valek
Hi Armin, Did you have some time to look at that? Regards, Andrej > Hi Armin > > Regarding to OBJS_LIBS, it was added here > https://github.com/open-source-parsers/jsoncpp/pull/1197/ . But why to > install it? Aren't the headers and libs enough? Previous versions don't have > this "feature".