Re: [oe] [meta-*][PATCH] reproducibility: move repro excludes from AB config.json to meta-oe

2024-04-24 Thread Khem Raj
On Wed, Apr 24, 2024 at 2:48 PM Richard Purdie < richard.pur...@linuxfoundation.org> wrote: > On Wed, 2024-04-24 at 13:41 +0200, Yoann Congal wrote: > > For now, the known non-reproducible packages list is stored inside > > the > > autobuilder config.json file. This is not ideal. Let's move this

[oe] [meta-*][PATCH] reproducibility: move repro excludes from AB config.json to meta-oe

2024-04-24 Thread Yoann Congal
For now, the known non-reproducible packages list is stored inside the autobuilder config.json file. This is not ideal. Let's move this list into each layers of meta-openembedded. These lists can be used with, in local.conf: include conf/include/non-repro-meta-oe.inc

[oe] [meta-gnome][PATCH] gnome-control-center: update 46.0.1 -> 46.1

2024-04-24 Thread Markus Volk
- add PACKAGECONFIGS for file-share and media-share 46.1 * Accessibility - Improve accessibility of "Typing" settings sliders * Display - Fix crash when pressing Escape in the display settings * Network - Add stable-ssid support for cloned-mac * Privacy - Add build option to enable

[oe] [meta-gnome][PATCH 2/3] rygel: update 0.42.4 -> 0.42.5

2024-04-24 Thread Markus Volk
- dont convert to systemd system service. rygel is meant to be started as a user service. This is also a requirement to get it working in gnome-control-center - build with PACKAGECONFIG media-export to make rygel work out of the box Signed-off-by: Markus Volk ---

[oe] [meta-gnome][PATCH 1/3] gupnp: dont package source

2024-04-24 Thread Markus Volk
Source code contains reference to tmpdir. Dont package to avoid reproducibility issue Signed-off-by: Markus Volk --- meta-multimedia/recipes-connectivity/gupnp/gssdp_1.6.3.bb | 1 + meta-multimedia/recipes-connectivity/gupnp/gupnp_1.6.6.bb | 1 + 2 files changed, 2 insertions(+) diff --git

[oe] [meta-gnome][PATCHv2] gnome-control-center: update 46.0.1 -> 46.1

2024-04-24 Thread Markus Volk
- add PACKAGECONFIGS for file-share and media-share 46.1 * Accessibility - Improve accessibility of "Typing" settings sliders * Display - Fix crash when pressing Escape in the display settings * Network - Add stable-ssid support for cloned-mac * Privacy - Add build option to enable

Re: [oe] [meta-*][PATCH] reproducibility: move repro excludes from AB config.json to meta-oe

2024-04-24 Thread Richard Purdie
On Wed, 2024-04-24 at 13:41 +0200, Yoann Congal wrote: > For now, the known non-reproducible packages list is stored inside > the > autobuilder config.json file. This is not ideal. Let's move this list > into each layers of meta-openembedded. > > These lists can be used with, in local.conf: >  

Re: [oe] [meta-gnome][PATCH] gnome-control-center: update 46.0.1 -> 46.1

2024-04-24 Thread Markus Volk
sorry, there is a a rebase problem with this patch. I'll send v2 On Wed, Apr 24 2024 at 03:28:16 PM +02:00:00, Markus Volk wrote: - add PACKAGECONFIGS for file-share and media-share 46.1 * Accessibility - Improve accessibility of "Typing" settings sliders * Display - Fix crash when

Re: [oe] [master][scarthgap][meta-filesystems][PATCH] fuse3: remove sysv init script and install fuse kernel module explictly

2024-04-24 Thread Khem Raj
On Wed, Apr 24, 2024 at 10:09 AM Changqing Li via lists.openembedded.org < changqing.li=eng.windriver@lists.openembedded.org> wrote: > From: Changqing Li > > For systemd, there is not a fuse.service since systemd provides > sys-fs-fuse-connections.mount to mount the fuse control filesystem,

Re: [oe] [meta-gnome][PATCH 1/3] gupnp: dont package source

2024-04-24 Thread Khem Raj
On Wed, Apr 24, 2024 at 3:23 PM Markus Volk via lists.openembedded.org wrote: > Source code contains reference to tmpdir. Dont package to avoid > reproducibility issue Can we root cause it instead ? Removing sources from debug info might fix this issue but degrade debugging experience > > >

[oe] [meta-multimedia][PATCH 2/2] gssdp: fix a reproducibility issue

2024-04-24 Thread Markus Volk
- add a patch to fix a buildpath leakage SRC_URI += did not work, therefore use SRC_URI:append Signed-off-by: Markus Volk --- ...mplate-use-basename-instead-of-filen.patch | 32 +++ .../recipes-connectivity/gupnp/gssdp_1.6.3.bb | 1 + 2 files changed, 33 insertions(+) create

[oe] [meta-multimedia][PATCH 1/2] gupnp: fix reproducibility issue

2024-04-24 Thread Markus Volk
- add a patch to fix a buildpath leakage Signed-off-by: Markus Volk --- ...mplate-use-basename-instead-of-filen.patch | 32 +++ .../recipes-connectivity/gupnp/gupnp_1.6.6.bb | 2 ++ 2 files changed, 34 insertions(+) create mode 100644

[oe] [meta-multimedia][PATCH] rygel: update 0.42.4 -> 0.42.5

2024-04-24 Thread Markus Volk
- dont convert to systemd system service. rygel should be started as a user service. This is also a requirement to get it working in gnome-control-center - build with PACKAGECONFIG media-export to make rygel work out of the box Signed-off-by: Markus Volk --- .../rygel/{rygel_0.42.4.bb =>

Re: [oe] [meta-gnome][PATCH 1/3] gupnp: dont package source

2024-04-24 Thread Markus Volk
On Wed, Apr 24 2024 at 04:40:21 PM +02:00:00, Khem Raj wrote: Can we root cause it instead ? Removing sources from debug info might fix this issue but degrade debugging experience I will take a look at it -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply

Re: [oe] [meta-gnome][PATCH 1/3] gupnp: dont package source

2024-04-24 Thread Markus Volk
On Wed, Apr 24 2024 at 03:42:47 PM +00:00:00, Ross Burton wrote: The usual culprit is build paths in generated files (like glib-generated headers), which is often a trivial fix to use basename instead. Ross Thats right, But it looks like basename wouldn't help here. glib-mkenums adds

Re: [oe] [meta-gnome][PATCH 1/3] gupnp: dont package source

2024-04-24 Thread Ross Burton
> On 24 Apr 2024, at 16:14, Markus Volk via lists.openembedded.org > wrote: > > On Wed, Apr 24 2024 at 04:40:21 PM +02:00:00, Khem Raj > wrote: >> Can we root cause it instead ? Removing sources from debug info might fix >> this issue but degrade debugging experience > > > I will take a

Re: [oe] [meta-gnome][PATCH 1/3] gupnp: dont package source

2024-04-24 Thread Markus Volk
On Wed, Apr 24 2024 at 06:03:18 PM +02:00:00, Markus Volk wrote: I guess build will break No it doesn't, using @basename@ fixes the issue. Now it looks like: /* enumerations from "gupnp-error.h" */ #include "gupnp-error.h" I'll send this to upstream first. Lets see if this would work for

Re: [oe] [meta-gnome][PATCH 1/3] gupnp: dont package source

2024-04-24 Thread Ross Burton
On 24 Apr 2024, at 17:31, Markus Volk wrote: > > On Wed, Apr 24 2024 at 06:03:18 PM +02:00:00, Markus Volk > wrote: >> I guess build will break > > > No it doesn't, using @basename@ fixes the issue. > > Now it looks like: > /* enumerations from "gupnp-error.h" */ > #include "gupnp-error.h"

Re: [oe] [meta-multimedia][PATCH] rygel: update 0.42.4 -> 0.42.5

2024-04-24 Thread Markus Volk
Resent this without changes because it looks like the first one got lost in nirvana On Wed, Apr 24 2024 at 08:02:33 PM +02:00:00, Markus Volk wrote: - dont convert to systemd system service. rygel should be started as a user service. This is also a requirement to get it working in

[oe] [PATCH v2] apache2: fix multilib files confliction

2024-04-24 Thread Kai Kang
From: Kai Kang There are files confliction of apache2 when multilib enabled: Error: Transaction test error: file /usr/share/apache2/build/config.nice conflicts between attempted installs of apache2-dev-2.4.58-r0.cortexa57 and lib32-apache2-dev-2.4.58-r0.armv7vet2hf_vfp file

Re: [oe] [master][scarthgap][meta-filesystems][PATCH] fuse3: remove sysv init script and install fuse kernel module explictly

2024-04-24 Thread Changqing Li
On 4/24/24 22:59, Khem Raj wrote: ** *CAUTION: This email comes from a non Wind River email account!* Do not click links or open attachments unless you recognize the sender and know the content is safe. On Wed, Apr 24, 2024 at 10:09 AM Changqing Li via lists.openembedded.org

Re: [oe] [meta-gnome][PATCH 1/3] gupnp: dont package source

2024-04-24 Thread Khem Raj
On Wed, Apr 24, 2024 at 6:31 PM Markus Volk wrote: > > On Wed, Apr 24 2024 at 06:03:18 PM +02:00:00, Markus Volk > wrote: > > I guess build will break > > > No it doesn't, using @basename@ fixes the issue. > > Now it looks like: > /* enumerations from "gupnp-error.h" */ > #include

Re: [oe] [meta-gnome][PATCHv2] gnome-control-center: update 46.0.1 -> 46.1

2024-04-24 Thread Khem Raj
I can apply either v1 or v2, Can you rebase on top of master-next and resend please. On Wed, Apr 24, 2024 at 3:32 PM Markus Volk via lists.openembedded.org wrote: > > - add PACKAGECONFIGS for file-share and media-share > > 46.1 > > * Accessibility > - Improve accessibility of "Typing" settings

Re: [oe] [meta-networking][kirkstone][PATCHv2] wireshark: fix CVE-2023-6175

2024-04-24 Thread Hitendra Prajapati via lists.openembedded.org
Hi Team, any update on this ?? Regards, Hitendra -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#110146): https://lists.openembedded.org/g/openembedded-devel/message/110146 Mute This Topic: https://lists.openembedded.org/mt/105213134/21656 Group

Re: [oe] [meta-networking][dunfell][PATCH] wireshark: fix CVE-2023-6175

2024-04-24 Thread Hitendra Prajapati via lists.openembedded.org
Hi Team, any update on this ?? Regards, Hitendra -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#110145): https://lists.openembedded.org/g/openembedded-devel/message/110145 Mute This Topic: https://lists.openembedded.org/mt/105323917/21656 Group

[oe] [master][scarthgap][meta-filesystems][PATCH] fuse3: remove sysv init script and install fuse kernel module explictly

2024-04-24 Thread Changqing Li
From: Changqing Li For systemd, there is not a fuse.service since systemd provides sys-fs-fuse-connections.mount to mount the fuse control filesystem, so instead, only fuse.conf is added to modules-load.d to load the required fuse kernel module. Signed-off-by: Changqing Li ---