Re: [OE-core] [PATCH v2] meson.bbclass: Split into meson-env and meson classes

2023-03-24 Thread Alexander Kanavin
It would help if you explain why existing meson class can't be used directly, and what the meson class adds compared to meson-env that gets in the way of that. Alex On Fri, 24 Mar 2023 at 04:13, Zoltan Boszormenyi wrote: > > The new meson-env class will be used by a new PEP517 python > build cla

[OE-core] [meta][dunfell][PATCH 1/2] curl: Add fix for CVE-2023-23914, CVE-2023-23915

2023-03-24 Thread Pawan Badganchi
From: Pawan Badganchi Add below patches to fix CVE-2023-23914, CVE-2023-23915 CVE-2023-23914_5-1.patch CVE-2023-23914_5-2.patch CVE-2023-23914_5-3.patch CVE-2023-23914_5-4.patch CVE-2023-23914_5-5.patch Link: https://curl.se/docs/CVE-2023-23914.html https://curl.se/docs/CVE-2023-23915.html Sig

[OE-core] [meta][dunfell][PATCH 2/2] curl: Add fix for CVE-2023-23916

2023-03-24 Thread Pawan Badganchi
From: Pawan Badganchi Add below patch to fix CVE-2023-23916 CVE-2023-23916.patch Link: https://curl.se/docs/CVE-2023-23916.html Signed-off-by: Pawan Badganchi Signed-off-by: Pawan Badganchi --- .../curl/curl/CVE-2023-23916.patch| 222 ++ meta/recipes-support/curl

[OE-core] [meta][kirkstone][PATCH 1/2] curl: Add fix for CVE-2023-23914, CVE-2023-23915

2023-03-24 Thread Pawan Badganchi
From: Pawan Badganchi Add below patches to fix CVE-2023-23914, CVE-2023-23915 CVE-2023-23914_5-1.patch CVE-2023-23914_5-2.patch CVE-2023-23914_5-3.patch CVE-2023-23914_5-4.patch CVE-2023-23914_5-5.patch Link: https://curl.se/docs/CVE-2023-23914.html https://curl.se/docs/CVE-2023-23915.html Sig

[OE-core] [meta][kirkstone][PATCH 2/2] curl: Add fix for CVE-2023-23916

2023-03-24 Thread Pawan Badganchi
From: Pawan Badganchi Add below patch to fix CVE-2023-23916 CVE-2023-23916.patch Link: https://curl.se/docs/CVE-2023-23916.html Signed-off-by: Pawan Badganchi Signed-off-by: Pawan Badganchi --- .../curl/curl/CVE-2023-23916.patch| 222 ++ meta/recipes-support/curl

Re: [OE-core] [meta][dunfell][PATCH 2/2] curl: Add fix for CVE-2023-23916

2023-03-24 Thread Pawan Badganchi
Please ignore this patch. -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#179017): https://lists.openembedded.org/g/openembedded-core/message/179017 Mute This Topic: https://lists.openembedded.org/mt/97818981/21656 Group Owner: openembedded-core+ow.

Re: [OE-core] [meta][dunfell][PATCH 1/2] curl: Add fix for CVE-2023-23914, CVE-2023-23915

2023-03-24 Thread Pawan Badganchi
Please ignore this patch. -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#179018): https://lists.openembedded.org/g/openembedded-core/message/179018 Mute This Topic: https://lists.openembedded.org/mt/97818979/21656 Group Owner: openembedded-core+ow.

[OE-core][PATCH v2] package: moving field data process before variable process in process_pkgconfig

2023-03-24 Thread Xiangyu Chen
From: Xiangyu Chen Currently, the latest version abseil-cpp contains a new library named "absl_log_internal_format", it's basic package config(.pc file) as below: prefix=/usr exec_prefix=${prefix} .. Requires: absl_config = 20230125, absl_core_headers = 20230125, absl_log_internal_append

Re: [OE-core] [PATCH v2] meson.bbclass: Split into meson-env and meson classes

2023-03-24 Thread Zoltan Boszormenyi
2023. 03. 24. 8:47 keltezéssel, Alexander Kanavin írta: It would help if you explain why existing meson class can't be used directly, and what the meson class adds compared to meson-env that gets in the way of that. The email thread for the mesonpy bbclass in openembedded-devel lists all the pr

Re: [OE-core] [PATCH v2] meson.bbclass: Split into meson-env and meson classes

2023-03-24 Thread Alexander Kanavin
Cam you please place this information into the commit message? At some point someone will need to find out why this was done this way, and email thread would by then be hopelessly undiscoverable. Alex On Fri, 24 Mar 2023 at 09:43, Böszörményi Zoltán wrote: > > 2023. 03. 24. 8:47 keltezéssel, Ale

[OE-core] Reduce dependency chain when gobject-introspection disabled

2023-03-24 Thread Petr Kubizňák
I have extended the patch reducing the dependency chain when g-i is disabled. It was possible to also condition the dependency on gobject-introspection-native. I did not manage to condition the dependency on qemu-native, as that leads to too many failures that I did not manage to resolve. Anyway, I

[OE-core][PATCH v2 1/3] gobject-introspection: check for GI_DATA_ENABLED

2023-03-24 Thread Petr Kubizňák
When GI_DATA_ENABLED is 'False' (e.g. because 'gobject-introspection-data' is not in DISTRO_FEATURES), gobject-introspection and gobject-introspection-native should not be added to DEPENDS. This is to reduce dependency chain when g-i is disabled. Signed-off-by: Petr Kubizňák --- meta/classes-rec

[OE-core][PATCH v2 2/3] graphene: add glib PACKAGECONFIG

2023-03-24 Thread Petr Kubizňák
When gobject-introspection is enabled, glib dependency is pulled in automatically. When it is disabled, glib dependency should be optional via PACKAGECONFIG. Default is to enable glib so that graphene-gobject is built (dependency of gtk4). Signed-off-by: Petr Kubizňák --- meta/recipes-graphics/

[OE-core][PATCH v2 3/3] python3-pygobject: depend on gobject-introspection

2023-03-24 Thread Petr Kubizňák
When g-i feature is disabled, the gobject-introspection package dependency is not pulled in but pygobject has a hard dependency on it. Signed-off-by: Petr Kubizňák --- meta/recipes-devtools/python/python3-pygobject_3.42.2.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/met

Re: [OE-core][PATCH v2] package: moving field data process before variable process in process_pkgconfig

2023-03-24 Thread Richard Purdie
On Fri, 2023-03-24 at 16:36 +0800, Xiangyu Chen wrote: > From: Xiangyu Chen > > Currently, the latest version abseil-cpp contains a new library named > "absl_log_internal_format", it's > basic package config(.pc file) as below: > > prefix=/usr > exec_prefix=${prefix} > > .. > > Requires:

[OE-core][kirkstone][PATCH] OpenSSL: Security fix for CVE-2023-0464

2023-03-24 Thread Siddharth
From: Siddharth Doshi Upstream-Status: Backport from [https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=959c59c7a0164117e7f8366466a32bb1f8d77ff1] Signed-off-by: Siddharth Doshi --- .../openssl/openssl/CVE-2023-0464.patch | 226 ++ .../openssl/openssl_3.0.8.bb

Re: [OE-core][dunfell][PATCH 1/5] classes/create-spdx: Backport

2023-03-24 Thread Ernst Sjöstrand
Right that makes sense, LGTM then! Den tors 23 mars 2023 kl 21:53 skrev Richard Purdie : > > On Thu, 2023-03-23 at 14:42 +0100, Ernst Sjöstrand wrote: > > Den ons 22 mars 2023 kl 21:46 skrev Joshua Watt : > > > > > > Backports the create-spdx classes from the latest versions on master. > > > This

[OE-core][langdale][PATCH] OpenSSL: Security fix for CVE-2023-0464

2023-03-24 Thread Siddharth
From: Siddharth Doshi Upstream-Status: Backport from [https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=959c59c7a0164117e7f8366466a32bb1f8d77ff1] Signed-off-by: Siddharth Doshi --- .../openssl/openssl/CVE-2023-0464.patch | 226 ++ .../openssl/openssl_3.0.8.bb

Re: [OE-core] [PATCH v2] meson.bbclass: Split into meson-env and meson classes

2023-03-24 Thread Zoltan Boszormenyi
Sure, I will send v3 shortly. 2023. 03. 24. 10:31 keltezéssel, Alexander Kanavin írta: Cam you please place this information into the commit message? At some point someone will need to find out why this was done this way, and email thread would by then be hopelessly undiscoverable. Alex On Fri

Re: [OE-core] [PATCH] oeqa/selftest/imagefeatures: set a test for mutliubi in test_image_fstypes

2023-03-24 Thread Alexandre Belloni via lists.openembedded.org
Hello Romuald, This doesn't apply cleanly on master anymore, can you rebase? On 20/03/2023 14:48:18+0100, Romuald Jeanne via lists.openembedded.org wrote: > From: Romuald Jeanne > > Allow 'multiubi' fstype image. > Set 'MULTIUBI_BUILD' with two entries to allow configuration for two > different

Re: [OE-core][PATCH v2 1/3] gobject-introspection: check for GI_DATA_ENABLED

2023-03-24 Thread Alexander Kanavin
On Fri, 24 Mar 2023 at 10:36, Petr Kubizňák wrote: > # Generating introspection data depends on a combination of native and target > # introspection tools, and qemu to run the target tools. > -DEPENDS:append:class-target = " gobject-introspection > gobject-introspection-native qemu-native" > +D

Re: [OE-core][PATCH v2 2/3] graphene: add glib PACKAGECONFIG

2023-03-24 Thread Alexander Kanavin
Shouldn't this be something like PACKAGECONFIG[gobject-types] = "-Dgobject_types=true,-Dgobject_types=false,glib-2.0" ? Alex On Fri, 24 Mar 2023 at 10:36, Petr Kubizňák wrote: > > When gobject-introspection is enabled, glib dependency is pulled in > automatically. When it is disabled, glib depe

[OE-core][master][PATCH] OpenSSL: Security fix for CVE-2023-0464

2023-03-24 Thread Siddharth
From: Siddharth Doshi Upstream-Status: Backport from [https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=2017771e2db3e2b96f89bbe8766c3209f6a99545] Signed-off-by: Siddharth Doshi --- .../openssl/openssl/CVE-2023-0464.patch | 226 ++ .../openssl/openssl_3.1.0.bb

[OE-core] [PATCH] scripts/yocto_testresults_query.py: fix regression reports for branches with slashes

2023-03-24 Thread Alexis Lothoré via lists . openembedded . org
From: Alexis Lothoré Regression reports are not generated on some integration branches because yocto_testresults_query.py truncates branches names with slashes when it passes it to resulttool. For example, "abelloni/master-next" is truncated to "abelloni" Fix this unwanted branch truncation by f

[OE-core] [PATCH] python3-scons: upgrade to v4.5.2

2023-03-24 Thread Martin Jansa
* fixes: https://github.com/SCons/scons/issues/4231 which caused e.g. iotifity to fail in do_compile Signed-off-by: Martin Jansa --- .../python/{python3-scons_4.5.1.bb => python3-scons_4.5.2.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-devtools/python/{pyt

[OE-core][dunfell 00/14] Pull request (cover letter only)

2023-03-24 Thread Steve Sakoman
The following changes since commit efb1a73a13907bed3acac8e06053aef3e2ef57f5: build-appliance-image: Update to dunfell head revision (2023-03-15 23:09:39 +) are available in the Git repository at: https://git.openembedded.org/openembedded-core-contrib stable/dunfell-next http://cgit.o

Re: [OE-core] [PATCH] systemtap: Disable dangling-pointer warning

2023-03-24 Thread Martin Jansa
On Tue, Mar 14, 2023 at 7:00 PM Khem Raj wrote: > This is to fix build in RISCV64 > > | In constructor > 'symresolution_info::symresolution_info(systemtap_session&, bool)', > | inlined from 'int semantic_pass_symbols(systemtap_session&)' at > ../git/elaborate.cxx:1884:28: > | ../git/elaborate

Re: [OE-core][kirkstone][PATCH] OpenSSL: Security fix for CVE-2023-0464

2023-03-24 Thread Tim Orling
On Fri, Mar 24, 2023 at 3:01 AM Siddharth wrote: > From: Siddharth Doshi > > Upstream-Status: Backport from [ > https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff;h=959c59c7a0164117e7f8366466a32bb1f8d77ff1 > ] > Rather than backport, we should instead upgrade to 3.0.9 https://www.cve.or

[OE-core] [PATCH] change the default behavior of bitbake-layers and oe-setup-builddir to rel paths

2023-03-24 Thread Thomas Roos via lists.openembedded.org
From: Thomas Roos This patch will use the $TOPDIR variable to create layer entries in bblayers.conf. Instead of an absolute path this will create an relative path to $TOPDIR, which will allow to move the bblayers.conf to different paths without modification of it. Signed-off-by: Thomas Roos -

[OE-core] [PATCH 1/7] linux-yocto/6.1: update to v6.1.15

2023-03-24 Thread Bruce Ashfield
From: Bruce Ashfield Updating to the latest korg -stable release that comprises the following commits: 42616e0f09fb Linux 6.1.15 c87fb861ec18 USB: core: Don't hold device lock while reading the "descriptors" sysfs file c49bd6c2dd1b scripts/tags.sh: fix incompatibility with PCRE2

[OE-core] [PATCH 2/7] linux-yocto/5.15: update to v5.15.98

2023-03-24 Thread Bruce Ashfield
From: Bruce Ashfield Updating to the latest korg -stable release that comprises the following commits: d9b4a0c83a2d Linux 5.15.98 937c15e27a63 io_uring: ensure that io_init_req() passes in the right issue_flags bf7123dd26a0 Linux 5.15.97 cf7f9cd50013 io_uring: add missing lock

[OE-core] [PATCH 5/7] kernel-devsrc: fix mismatched compiler warning

2023-03-24 Thread Bruce Ashfield
From: Bruce Ashfield When building a module on target, we use the native compiler (always "gcc") versus the same compiler, but named in a cross compiler manner, for the kernel build. The kernel captures the compiler string in several places, some of which we are already fixing, but others we are

[OE-core] [PATCH 3/7] linux-yocto/6.1: update to v6.1.20

2023-03-24 Thread Bruce Ashfield
From: Bruce Ashfield Updating to the latest korg -stable release that comprises the following commits: 7eaef76fbc46 Linux 6.1.20 05650b267e67 UML: define RUNTIME_DISCARD_EXIT bf899a4b1220 Revert "bpf, test_run: fix &xdp_frame misplacement for LIVE_FRAMES" d663e13ca866 filelocks

[OE-core] [PATCH 7/7] kernel/kernel-devsrc: powerpc: add elfutils dependency

2023-03-24 Thread Bruce Ashfield
From: Bruce Ashfield When working on 6.3+ kernel support powerpc started to fail when doing on target kerne module builds, and in some cases when building the kernel itself. This was due to crtsavres requiring objtool to build, which was missing required development headers. So in a similar man

[OE-core] [PATCH 0/7] kernel: consolidated pull request

2023-03-24 Thread Bruce Ashfield
From: Bruce Ashfield Richard, Here's the latest round of -stable updates. Along with them, there's some fixes for on-target/SDK builds with kernel-devsrc and fixes to ensure that 6.3+ works against the upcoming release. I was out of the office last week, or these would have been avialable soone

[OE-core] [PATCH 6/7] linux-yocto-dev: bump to v6.3

2023-03-24 Thread Bruce Ashfield
From: Bruce Ashfield Signed-off-by: Bruce Ashfield --- meta/recipes-kernel/linux/linux-yocto-dev.bb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta/recipes-kernel/linux/linux-yocto-dev.bb b/meta/recipes-kernel/linux/linux-yocto-dev.bb index 8039a52324..4f3d4a5c3c 1

[OE-core] [PATCH 4/7] linux-yocto/5.15: update to v5.15.103

2023-03-24 Thread Bruce Ashfield
From: Bruce Ashfield Updating to the latest korg -stable release that comprises the following commits: 8020ae3c051d Linux 5.15.103 10a72c677bce Makefile: use -gdwarf-{4|5} for assembler for DEBUG_INFO_DWARF{4|5} 6e7bc50f97c9 KVM: VMX: Fix crash due to uninitialized current_vmcs

[OE-core] [PATCH 1/4][dunfell] linux-yocto/5.4: update to v5.4.231

2023-03-24 Thread Bruce Ashfield
From: Bruce Ashfield Updating to the latest korg -stable release that comprises the following commits: 59342376e8f0 Linux 5.4.231 268d595d4da3 Revert "xprtrdma: Fix regbuf data not freed in rpcrdma_req_create()" 6c24a20223db usb: host: xhci-plat: add wakeup entry at sysfs 1c129

[OE-core] [PATCH 2/4][dunfell] linux-yocto/5.4: update to v5.4.233

2023-03-24 Thread Bruce Ashfield
From: Bruce Ashfield Updating to the latest korg -stable release that comprises the following commits: 69f65d442efe Linux 5.4.233 c6cc0121d44d bpf: add missing header file include 5d873a6c658f Revert "net/sched: taprio: make qdisc_leaf() see the per-netdev-queue pfifo child qdiscs"

[OE-core] [PATCH 3/4][dunfell] linux-yocto/5.4: update to v5.4.234

2023-03-24 Thread Bruce Ashfield
From: Bruce Ashfield Updating to the latest korg -stable release that comprises the following commits: a103859aaa71 Linux 5.4.234 a1e89c8b29d0 USB: core: Don't hold device lock while reading the "descriptors" sysfs file 96d380d2ae98 USB: serial: option: add support for VW/Skoda "Ca

[OE-core] [PATCH 4/4][dunfell] linux-yocto/5.4: update to v5.4.237

2023-03-24 Thread Bruce Ashfield
From: Bruce Ashfield Updating to the latest korg -stable release that comprises the following commits: e4b5c766f505 Linux 5.4.237 6a16810068e7 s390/dasd: add missing discipline function 7a934a77f11a UML: define RUNTIME_DISCARD_EXIT 87fcce7a6f86 sh: define RUNTIME_DISCARD_EXIT

[OE-core] [[PATCH][kirkstone] 3/7] linux-yocto/5.10: update to v5.10.166

2023-03-24 Thread Bruce Ashfield
From: Bruce Ashfield Updating to the latest korg -stable release that comprises the following commits: 8d823aaa220e Linux 5.10.166 19f1f99be371 clk: Fix pointer casting to prevent oops in devm_clk_release() f84c9b72fb20 perf/x86/amd: fix potential integer overflow on shift of a int

[OE-core] [[PATCH][kirkstone] 1/7] linux-yocto/5.10: update to v5.10.162

2023-03-24 Thread Bruce Ashfield
From: Bruce Ashfield Updating to the latest korg -stable release that comprises the following commits: 0fe4548663f7 Linux 5.10.162 189556b05e17 io_uring: pass in EPOLL_URING_WAKE for eventfd signaling and wakeups 4ef66581d7fd eventfd: provide a eventfd_signal_mask() helper 2f09

[OE-core] [[PATCH][kirkstone] 5/7] linux-yocto/5.10: update to v5.10.170

2023-03-24 Thread Bruce Ashfield
From: Bruce Ashfield Updating to the latest korg -stable release that comprises the following commits: 22d269bb30db Linux 5.10.170 12e3119a8762 bpf: add missing header file include c44e96d6c31a Revert "net/sched: taprio: make qdisc_leaf() see the per-netdev-queue pfifo child qdiscs

[OE-core] [[PATCH][kirkstone] 2/7] linux-yocto/5.10: update to v5.10.164

2023-03-24 Thread Bruce Ashfield
From: Bruce Ashfield Updating to the latest korg -stable release that comprises the following commits: 3a9f1b907bc4 Linux 5.10.164 74985c575767 Revert "usb: ulpi: defer ulpi_register on ulpi_read_id timeout" a88a0d16e18f io_uring/io-wq: only free worker if it was allocated for crea

[OE-core] [[PATCH][kirkstone] 6/7] linux-yocto/5.10: update to v5.10.172

2023-03-24 Thread Bruce Ashfield
From: Bruce Ashfield Updating to the latest korg -stable release that comprises the following commits: 9fd42770b507 Linux 5.10.172 da24142b1ef9 io_uring: ensure that io_init_req() passes in the right issue_flags a25aa776b0c4 Linux 5.10.171 08681391b84d io_uring: add missing loc

[OE-core] [[PATCH][kirkstone] 4/7] linux-yocto/5.10: update to v5.10.168

2023-03-24 Thread Bruce Ashfield
From: Bruce Ashfield Updating to the latest korg -stable release that comprises the following commits: 707c48210a53 Linux 5.10.168 0a626e27f984 Fix page corruption caused by racy check in __free_pages 0ef2490a876b arm64: dts: meson-axg: Make mmc host controller interrupts level-sen

[OE-core] [[PATCH][kirkstone] 7/7] linux-yocto/5.10: update to v5.10.175

2023-03-24 Thread Bruce Ashfield
From: Bruce Ashfield Updating to the latest korg -stable release that comprises the following commits: de26e1b2103b Linux 5.10.175 aa8579bc0846 s390/dasd: add missing discipline function 6baebcecf09a KVM: VMX: Fix crash due to uninitialized current_vmcs 685ed0a277f1 KVM: VMX: In

Re: [OE-core] [PATCH] change the default behavior of bitbake-layers and oe-setup-builddir to rel paths

2023-03-24 Thread Alexander Kanavin
Build directories are not meant to be relocatable, and will likely break in all kinds of ways if you try. Can you explain the use case? Alex On Fri 24. Mar 2023 at 16.00, Thomas Roos via lists.openembedded.org wrote: > From: Thomas Roos > > This patch will use the $TOPDIR variable to create la

Re: [OE-core] [PATCH] change the default behavior of bitbake-layers and oe-setup-builddir to rel paths

2023-03-24 Thread Alexander Kanavin
Also, this will break build templates, as they can’t contain paths relative to build dirs. Alex On Fri 24. Mar 2023 at 16.00, Thomas Roos via lists.openembedded.org wrote: > From: Thomas Roos > > This patch will use the $TOPDIR variable to create layer entries in > bblayers.conf. > Instead of

[OE-core][PATCH v3 2/6] graphene: add gobject-types PACKAGECONFIG

2023-03-24 Thread Petr Kubizňák
Add an option to enable/disable build of graphene-gobject. When enabled, add glib dependency (not pulled in implicitly if the gobject-introspection feature is disabled). Default is to enable gobject-types so that graphene-gobject is built (dependency of gtk4). Signed-off-by: Petr Kubizňák --- m

[OE-core][PATCH v3 1/6] gobject-introspection: reduce dependencies

2023-03-24 Thread Petr Kubizňák
When GI_DATA_ENABLED is 'False' (e.g. because 'gobject-introspection-data' is not in DISTRO_FEATURES), gobject-introspection, gobject-introspection-native and qemu-native should not be added to DEPENDS. This is to reduce dependency chain when g-i is disabled. Signed-off-by: Petr Kubizňák --- met

[OE-core][PATCH v3 4/6] gconf: depend on glib-2.0-native

2023-03-24 Thread Petr Kubizňák
When gobject-introspection feature is disabled, glib-2.0-native package dependency is not pulled in, which causes a failure in do_configure due to missing glib-gettextize. Signed-off-by: Petr Kubizňák --- meta/recipes-gnome/gnome/gconf_3.2.6.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(

[OE-core][PATCH v3 5/6] avahi: depend on glib-2.0-native

2023-03-24 Thread Petr Kubizňák
When gobject-introspection feature is disabled, glib-2.0-native package dependency is not pulled in, which causes a failure in do_compile due to missing glib-mkenums. Signed-off-by: Petr Kubizňák --- meta/recipes-connectivity/avahi/avahi_0.8.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(

[OE-core][PATCH v3 3/6] python3-pygobject: depend on gobject-introspection

2023-03-24 Thread Petr Kubizňák
When g-i feature is disabled, the gobject-introspection package dependency is not pulled in but pygobject has a hard dependency on it. Signed-off-by: Petr Kubizňák --- meta/recipes-devtools/python/python3-pygobject_3.42.2.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/met

[OE-core][PATCH v3 6/6] webkitgtk: add missing dependencies

2023-03-24 Thread Petr Kubizňák
When gobject-introspection feature is disabled, gettext and glib-2.0-native dependencies are not pulled in, which causes failures in do_compile due to missing xgettext and gdbus-codegen. Signed-off-by: Petr Kubizňák --- meta/recipes-sato/webkit/webkitgtk_2.38.5.bb | 3 ++- 1 file changed, 2 inse

[OE-core] [PATCH] stress-ng: upgrade 0.15.04 -> 0.15.06

2023-03-24 Thread Alexandre Belloni via lists.openembedded.org
From: Alexandre Belloni Signed-off-by: Alexandre Belloni --- .../stress-ng/{stress-ng_0.15.04.bb => stress-ng_0.15.06.bb}| 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-extended/stress-ng/{stress-ng_0.15.04.bb => stress-ng_0.15.06.bb} (94%) diff --git a/meta/rec

Re: [OE-core] [meta][kirkstone][PATCH 2/2] curl: Add fix for CVE-2023-23916

2023-03-24 Thread Steve Sakoman
On Thu, Mar 23, 2023 at 9:57 PM Pawan Badganchi wrote: > > From: Pawan Badganchi > > Add below patch to fix CVE-2023-23916 > > CVE-2023-23916.patch I'm getting fuzz errors with this patch: Applying patch CVE-2023-23916.patch patching file lib/content_encoding.c patching file lib/urldata.h patch

Re: [OE-core] [meta][dunfell][PATCH 1/2] curl: Add fix for CVE-2023-23914, CVE-2023-23915

2023-03-24 Thread Steve Sakoman
Is this different from your patch that is currently out for review? https://lists.openembedded.org/g/openembedded-core/message/178995 Please advise! Steve On Thu, Mar 23, 2023 at 9:55 PM Pawan Badganchi wrote: > > From: Pawan Badganchi > > Add below patches to fix CVE-2023-23914, CVE-2023-239

Re: [OE-core] [meta][kirkstone][PATCH 2/2] curl: Add fix for CVE-2023-23916

2023-03-24 Thread Pawan Badganchi
Hello Steve, Could you please build again including CVE-2023-23914 And CVE-2023-23195. On Fri, 24 Mar, 2023, 9:10 pm Steve Sakoman, wrote: > On Thu, Mar 23, 2023 at 9:57 PM Pawan Badganchi > wrote: > > > > From: Pawan Badganchi > > > > Add below patch to fix CVE-2023-23916 > > > > CVE-2023-239

Re: [OE-core][PATCH v3 3/6] python3-pygobject: depend on gobject-introspection

2023-03-24 Thread Tim Orling
On Fri, Mar 24, 2023 at 8:24 AM Petr Kubizňák wrote: > When g-i feature is disabled, the gobject-introspection package > dependency is not pulled in but pygobject has a hard dependency on it. > > Signed-off-by: Petr Kubizňák > --- > meta/recipes-devtools/python/python3-pygobject_3.42.2.bb | 2 +

Re: [OE-core][PATCH v3 3/6] python3-pygobject: depend on gobject-introspection

2023-03-24 Thread Tim Orling
On Fri, Mar 24, 2023 at 8:47 AM Tim Orling via lists.openembedded.org wrote: > > > On Fri, Mar 24, 2023 at 8:24 AM Petr Kubizňák wrote: > >> When g-i feature is disabled, the gobject-introspection package >> dependency is not pulled in but pygobject has a hard dependency on it. >> >> Signed-off-

Re: [oe-core][PATCH] Remove usage of /var/volatile/tmp

2023-03-24 Thread Markus Volk
Am Mi, 22. Mär 2023 um 20:11:34 +0100 schrieb Alexander Kanavin : If it does not fail, then submit the patch again with a revised commit message It fails, but in the same way even without this patch being applied. It looks like the tmpfs runs full and from then on the rest of the tests are un

Re: [oe-core][PATCH] Remove usage of /var/volatile/tmp

2023-03-24 Thread Markus Volk
Am Fr, 24. Mär 2023 um 18:34:13 +0100 schrieb Markus Volk : It fails, but in the same way even without this patch being applied Meanwhile I edited 'core-image-sato-sdk-qemux86-64-20230324174311.qemuboot.conf' and increased qb_mem = -m 2048 Lets see if this helps -=-=-=-=-=-=-=-=-=-=-=- Lin

[OE-core] [PATCH] buildstats-summary: add an option to disable bold

2023-03-24 Thread Jose Quaresma
Signed-off-by: Jose Quaresma --- scripts/buildstats-summary | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/buildstats-summary b/scripts/buildstats-summary index 89348318af..f521d78650 100755 --- a/scripts/buildstats-summary +++ b/scripts/buildstats-summary @@ -75,

Re: [oe-core][PATCH] Remove usage of /var/volatile/tmp

2023-03-24 Thread Alexander Kanavin
On Fri, 24 Mar 2023 at 18:34, Markus Volk wrote: > RESULTS - ptest.PtestRunnerTest.test_ptestrunner_expectsuccess: FAILED > (8407.07s) This test is executed only if the image includes ptest-runner package, and requires special setup. Do you have something in your local setup that pulls it in? co

Re: [OE-core] [kirkstone][PATCH] OpenSSL: Security fix for CVE-2023-0464

2023-03-24 Thread Siddharth
Hi Tim, > > Rather than backport, we should instead upgrade to 3.0.9 > https://www.cve.org/CVERecord?id=CVE-2023-0464 > - Yes, upgrade is the ideal scenario we would be looking at. Even as per openssl.org the issue is solved in 3.0.9, 1.1.1u and 3.1.1, but those versions of OpenSSL (3.0.9, 3.

[OE-core] [PATCH] filemap.py: enforce maximum of 4kb block size

2023-03-24 Thread Andrew Geissler
The logic in this script validates that the length of data sections are evenly divisible by the block size. On most systems the block size is 4KB and all is good. Some systems though, such as ppc64le, have a block size larger then 4KB. For example on a POWER9 based ppc64le system, the block size is

Re: [oe-core][PATCH] Remove usage of /var/volatile/tmp

2023-03-24 Thread Markus Volk
Am Fr, 24. Mär 2023 um 20:53:22 +0100 schrieb Alexander Kanavin : Do you have something in your local setup that pulls it in? core-image-sato-sdk does not by default add it. True, thanks for the hint. I still had this lines in local.conf because of the glib ptest issue. DISTRO_FEATURES:appen

[oe-core][PATCHv2] Remove usage of /var/volatile/tmp

2023-03-24 Thread Markus Volk
Glib-2.0 uses ptest to ensure that /tmp is not a symlink. This commit tries to align tmpdir usage. The symlinks for /tmp and /var/tmp are replaced by directories and by default a tmpfs is mounted in /tmp. /var/volatile/tmp is removed. Signed-off-by: Markus Volk --- meta/conf/bitbake.conf

[oe-core][PATCH 3/7] glib-networking: update 2.74.0 -> 2.76.0

2023-03-24 Thread Markus Volk
Signed-off-by: Markus Volk --- .../{glib-networking_2.74.0.bb => glib-networking_2.76.0.bb}| 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-core/glib-networking/{glib-networking_2.74.0.bb => glib-networking_2.76.0.bb} (93%) diff --git a/meta/recipes-core/glib-netwo

[oe-core][PATCH 5/7] adwaita-icon-theme: update 43 -> 44.0

2023-03-24 Thread Markus Volk
- fix patch-fuzz Signed-off-by: Markus Volk --- .../0001-Don-t-use-AC_CANONICAL_HOST.patch | 6 +++--- ...{adwaita-icon-theme_43.bb => adwaita-icon-theme_44.0.bb} | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) rename meta/recipes-gnome/gnome/{adwaita-icon-theme_43.bb

[oe-core][PATCH 4/7] gsettings-desktop-schemas: update 43.0 -> 44.0

2023-03-24 Thread Markus Volk
Signed-off-by: Markus Volk --- ...esktop-schemas_43.0.bb => gsettings-desktop-schemas_44.0.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta/recipes-gnome/gsettings-desktop-schemas/{gsettings-desktop-schemas_43.0.bb => gsettings-desktop-schemas_44.0.bb} (85%) diff --git a

[oe-core][PATCH 6/7] epiphany: update 43.1 -> 44.0

2023-03-24 Thread Markus Volk
Signed-off-by: Markus Volk --- .../{epiphany_43.1.bb => epiphany_44.0.bb}| 37 +++ 1 file changed, 22 insertions(+), 15 deletions(-) rename meta/recipes-gnome/epiphany/{epiphany_43.1.bb => epiphany_44.0.bb} (72%) diff --git a/meta/recipes-gnome/epiphany/epiphany_43.1.bb b/m

[oe-core][PATCH 1/7] glib-2.0: update 2.74.6 -> 2.76.1

2023-03-24 Thread Markus Volk
--- ...-info-don-t-assume-million-in-one-ev.patch | 50 ...build-do-not-use-can_run_host_binari.patch | 48 .../glib-2.0/glib-2.0/cpp-null.patch | 77 --- .../glib-2.0/glib-2.0/cpp-null2.patch | 31 .../glib-2.0/glib-2.0/relocate-

[oe-core][PATCH 7/7] webkitgtk: update 2.38.5 -> 2.40.0

2023-03-24 Thread Markus Volk
- added PACKAGECONFIGs for av1 support, gamepad and sandboxing - cmake tries to find where bwrap and xdg-dbus-proxy are located on target and reads the path from ${STAGING_BINDIR_NATIVE}. This breaks reproducibility and runtime. Fix by adding the needed paths manually. - ccache seems to be work