Re: [OE-core] [hardknott][PATCH 1/3] expat: fix CVE-2022-25313

2022-04-14 Thread Anuj Mittal
I had tried building these three fixes but it looks like they are causing a ptest to fail in libxml-parser-perl for qemuarm64: https://autobuilder.yocto.io/pub/non-release/20220414-11/testresults/qemuarm64-ptest/libxml-parser-perl.log Thanks, Anuj On Thu, 2022-03-31 at 13:51 +0800, kai wrote

Re: [OE-core] License mismatched for libxshmfence_1.3.bb and recipeutils-test_1.2.bb

2022-04-14 Thread Robert Yang
On 4/15/22 11:55 AM, Robert Yang wrote: Hello, The following two recipes use the similar sources, but their LICENSE are different in the recipe: meta-selftest/recipes-test/recipeutils/recipeutils-test_1.2.bb SRC_URI =

[OE-core] License mismatched for libxshmfence_1.3.bb and recipeutils-test_1.2.bb

2022-04-14 Thread Robert Yang
Hello, The following two recipes use the similar sources, but their LICENSE are different in the recipe: meta-selftest/recipes-test/recipeutils/recipeutils-test_1.2.bb SRC_URI = "http://xorg.freedesktop.org/releases/individual/lib/libxshmfence-1.2.tar.bz2; LICENSE = "Proprietary"

Re: [OE-core] bitbake.conf: reason for assignment of deprecated variable

2022-04-14 Thread Peter Kjellerstedt
> -Original Message- > From: openembedded-core@lists.openembedded.org c...@lists.openembedded.org> On Behalf Of Markus Niebel > Sent: den 11 april 2022 17:07 > To: openembedded-core@lists.openembedded.org > Subject: [OE-core] bitbake.conf: reason for assignment of deprecated > variable >

[OE-core] [PATCH] runqemu: Do not auto detect graphics if publicvnc is specified

2022-04-14 Thread Scott Murray
The graphics option auto detection logic added in 7f78bb7a was not checking if the publicvnc option had been specified, meaning that it would be ignored and the auto detection result used instead. Add setting a flag variable in the argument parsing and check it along with the ones for the other

[OE-core] [PATCH] shadow: Disable the use of syslog() for the native tools

2022-04-14 Thread Peter Kjellerstedt
An attempt to disable the use of syslog() was made in commit 8f181686 (shadow-native: Simplify and fix syslog disable patch). However, because the code checks if USE_SYSLOG is defined rather than checking if it evaluates to TRUE the patch did not work as intended. Signed-off-by: Peter

[OE-core] [PATCH v2] bluez5: Add fix for startup issues under systemd

2022-04-14 Thread Richard Purdie
The systemd bluetooth service failed to start. Add a workaround for this whilst the final fix is discussed upstream, https://github.com/bluez/bluez/issues/329. Signed-off-by: Richard Purdie --- v2: Add ProtectSystem=strict meta/recipes-connectivity/bluez5/bluez5.inc | 1 +

[OE-core] [PATCH] bitbake: fetch2: crate: fix logger.debug line

2022-04-14 Thread Ricardo Salveti
logger.debug was giving an integer value (2) as event message, causing knotty to crash when running with debug enabled. bitbake/lib/bb/ui/knotty.py", line 685, in main event.msg = taskinfo['title'] + ': ' + event.msg TypeError: can only concatenate str (not "int") to str Same issue also

Re: [OE-core] [PATCH 2/4] python3-psutil: enable ptest

2022-04-14 Thread Alexandre Belloni via lists.openembedded.org
Hello Alex, new ptest failures with this: https://autobuilder.yoctoproject.org/typhoon/#builders/82/builds/3125/steps/12/logs/stdio https://autobuilder.yoctoproject.org/typhoon/#builders/81/builds/3376/steps/13/logs/stdio On 14/04/2022 10:57:08+0200, Alexander Kanavin wrote: > Also, replace a

[OE-core] [PATCH] bluez5: Add fix for startup issues under systemd

2022-04-14 Thread Richard Purdie
The systemd bluetooth service failed to start. Add a workaround for this whilst the final fix is discussed upstream, https://github.com/bluez/bluez/issues/329. Signed-off-by: Richard Purdie --- meta/recipes-connectivity/bluez5/bluez5.inc | 1 + .../bluez5/bluez5/fix_service.patch

Re: [OE-core] [PATCH] bluez5: install /var/lib/bluetooth directory

2022-04-14 Thread Richard Purdie
On Wed, 2022-04-13 at 10:21 +0200, Stefan Herbrechtsmeier wrote: > Hi, > > Am 11.04.2022 um 09:17 schrieb Stefan Herbrechtsmeier via > lists.openembedded.org: > > Am 08.04.2022 um 22:03 schrieb Markus Volk via lists.openembedded.org: > > > also had this issue and found out, that the bluetooth

[OE-core] [PATCH] create-spdx: fix error when symlink cannot be created

2022-04-14 Thread Davide Gardenal
If IMAGE_NAME and IMAGE_LINK_NAME are the same an exception is raised in image_combine_spdx because it cannot create a symlink with the same exact path of the original file. In that case there is no point in creating a link in the first place. Refactor image_combine_spdx to avoid code duplication

[OE-core] [PATCH] recipetool: Do not use mutable default arguments in Python

2022-04-14 Thread Stefan Herbrechtsmeier
From: Stefan Herbrechtsmeier Remove mutable default arguments in Python because they can lead to all sorts of nasty and horrible bugs. https://florimond.dev/en/posts/2018/08/python-mutable-defaults-are-the-source-of-all-evil/ Revert `recipetool: Change default paramter fallback_licenses of

[OE-core] [PATCH] cmake: update license hashes

2022-04-14 Thread Alexandre Belloni via lists.openembedded.org
From: Alexandre Belloni The cmjsoncpp license changes are only whitespaces while the cmlibuv license dropped: """ - android-ifaddrs.h, android-ifaddrs.c, copyright Berkeley Software Design Inc, Kenneth MacKay and Emergya (Cloud4all, FP7/2007-2013, grant agreement n° 289016). Three

[OE-core] [PATCH 1/2] rxvt-unicode: Fix icon name

2022-04-14 Thread Richard Purdie
There was no icon being displayed for this, fix the name so that is corrected. Signed-off-by: Richard Purdie --- meta/recipes-sato/rxvt-unicode/rxvt-unicode/rxvt.desktop | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-sato/rxvt-unicode/rxvt-unicode/rxvt.desktop

[OE-core] [PATCH 2/2] puzzles: Drop broken icon

2022-04-14 Thread Richard Purdie
The renaming left a broken desktop file behind (the others are overwritten). Fix this by removing it. Signed-off-by: Richard Purdie --- meta/recipes-sato/puzzles/puzzles_git.bb | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/recipes-sato/puzzles/puzzles_git.bb

Re: [OE-core] [PATCH 4/4] adwaita-icon-theme: upgrade 41.0 -> 42.0

2022-04-14 Thread Alexander Kanavin
Kind of. Hold this off please, RP has a better plan. Alex On Thu, 14 Apr 2022 at 11:19, Alexandre Belloni wrote: > > On 14/04/2022 11:07:07+0200, Alexandre Belloni wrote: > > Hello Alex, > > > > This has been reverted in master and requires fixing > > And I see you actually fixed it... > > > >

Re: [OE-core] [PATCH 4/4] adwaita-icon-theme: upgrade 41.0 -> 42.0

2022-04-14 Thread Alexandre Belloni via lists.openembedded.org
On 14/04/2022 11:07:07+0200, Alexandre Belloni wrote: > Hello Alex, > > This has been reverted in master and requires fixing And I see you actually fixed it... > > On 14/04/2022 10:57:10+0200, Alexander Kanavin wrote: > > From: wangmy > > > > 0001-Don-t-use-AC_CANONICAL_HOST.patch > >

Re: [OE-core] [PATCH 4/4] adwaita-icon-theme: upgrade 41.0 -> 42.0

2022-04-14 Thread Alexandre Belloni via lists.openembedded.org
Hello Alex, This has been reverted in master and requires fixing On 14/04/2022 10:57:10+0200, Alexander Kanavin wrote: > From: wangmy > > 0001-Don-t-use-AC_CANONICAL_HOST.patch > refreshed for version 42.0 > > 0001-Run-installation-commands-as-shell-jobs.patch > removed since it's included in

[OE-core] [PATCH 4/4] adwaita-icon-theme: upgrade 41.0 -> 42.0

2022-04-14 Thread Alexander Kanavin
From: wangmy 0001-Don-t-use-AC_CANONICAL_HOST.patch refreshed for version 42.0 0001-Run-installation-commands-as-shell-jobs.patch removed since it's included in 42.o (From OE-Core rev: 17a08277854eb1e8776cf7790f6255ea68bf0568) Signed-off-by: Wang Mingyu Signed-off-by: Alexandre Belloni

[OE-core] [PATCH 3/4] sato: work around missing icons

2022-04-14 Thread Alexander Kanavin
adwaita icon theme upstream has done significant trimming around app category icons (fullcolour versions gone completely, 'symbolic' b versions still around but marked as legacy). We can use the symbolic icons for now, but going forwards, apps would need to provide their own icons. Given that

[OE-core] [PATCH 2/4] python3-psutil: enable ptest

2022-04-14 Thread Alexander Kanavin
Also, replace a mass-test-disabling patch with more targeted fixes and submit them upstream. Signed-off-by: Alexander Kanavin --- .../distro/include/ptest-packagelists.inc | 1 + .../0001-fix-failure-test-cases.patch | 197 --

[OE-core] [PATCH 1/4] webkitgtk: adjust patch status

2022-04-14 Thread Alexander Kanavin
Signed-off-by: Alexander Kanavin --- ...indGObjectIntrospection.cmake-prefix-variables-obta.patch | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/meta/recipes-sato/webkit/webkitgtk/0001-FindGObjectIntrospection.cmake-prefix-variables-obta.patch

Re: [OE-core] [PATCH v2] ccache: Fix build with gcc12/mips

2022-04-14 Thread Richard Purdie
On Wed, 2022-04-13 at 22:48 -0700, Khem Raj wrote: > Please drop this patch, since it was a gcc bug which has been now > fixed in gcc trunk [1] and we will have this fix in gcc 12 > > [1] https://gcc.gnu.org/bugzilla/show_bug.cgi?id=105234 Gone from master-next. Cheers, Richard

[OE-core] [PATCH v2] runqemu: Allow auto detection of the correct graphics options

2022-04-14 Thread Richard Purdie
Running "runqemu qemux86 kvm" when qemu is configured for sdl and/or gtk display output currently leads to a poor user experience with no cursor and corrupted fonts in the gtk case. This is due to no options being passed to qemu which leads to the loss of the font envirornment variable and the

Re: [OE-core] [PATCH 1/6] riscv: Add tunes for rv64 without compressed instructions

2022-04-14 Thread Khem Raj
On 4/14/22 00:32, Alistair Francis wrote: On Thu, Apr 14, 2022 at 12:52 PM Khem Raj wrote: Signed-off-by: Khem Raj --- meta/conf/machine/include/riscv/arch-riscv.inc | 2 ++ meta/conf/machine/include/riscv/tune-riscv.inc | 8 2 files changed, 10 insertions(+) diff --git

Re: [OE-core] [PATCH 1/6] riscv: Add tunes for rv64 without compressed instructions

2022-04-14 Thread Alistair Francis
On Thu, Apr 14, 2022 at 12:52 PM Khem Raj wrote: > > Signed-off-by: Khem Raj > --- > meta/conf/machine/include/riscv/arch-riscv.inc | 2 ++ > meta/conf/machine/include/riscv/tune-riscv.inc | 8 > 2 files changed, 10 insertions(+) > > diff --git

[OE-core] [PATCH v2 1/4] git: correct license

2022-04-14 Thread Konrad Weihmann
by default git pulls in several code fragments not being licensed under just GPL-2.0-only. obstack and poll are licensed under GPL-2.0-or-later reftable being BSD-3-Clause sha1dc and inet_ntop being MIT netmalloc being Bosst-1.0 aka BSL-1.0 regex being LGPL-2.1-or-later Signed-off-by: Konrad

[OE-core] [PATCH v2 2/4] ncurses: use COPYING file

2022-04-14 Thread Konrad Weihmann
which has the same info as the in-file header used in before Signed-off-by: Konrad Weihmann --- v2: - strip control codes at the end of the copying file meta/recipes-core/ncurses/ncurses.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git