From patchwork Tue Sep 8 15:06:20 2026 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Markus Volk X-Patchwork-Id: 97628 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from aws-us-west-2-korg-lkml-1.web.codeaurora.org (localhost.localdomain [127.0.0.1]) by smtp.lore.kernel.org (Postfix) with ESMTP id 43E4BC79F9E for ; Tue, 8 Sep 2026 15:06:39 +0000 (UTC) Received: from mailout04.t-online.de (mailout04.t-online.de [194.25.134.18]) by mx.groups.io with SMTP id smtpd.msgproc02-g2.9714.1788879994991802167 for ; Tue, 08 Sep 2026 08:06:35 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="dkim: body hash did not verify" header.i=f_l_k@t-online.de header.s=20260216 header.b=KFNM1vQa; spf=pass (domain: t-online.de, ip: 194.25.134.18, mailfrom: f_l_k@t-online.de) Received: from fwd93.aul.t-online.de (fwd93.aul.t-online.de [10.223.144.119]) by mailout04.t-online.de (Postfix) with SMTP id A3A87DE4 for ; Tue, 8 Sep 2026 17:06:32 +0200 (CEST) Received: from intel-corei7-64.fritz.box ([79.219.237.236]) by fwd93.t-online.de with (TLSv1.3:TLS_AES_256_GCM_SHA384 encrypted) esmtp id 1x3xP6-0czMwa0; Tue, 8 Sep 2026 17:06:32 +0200 From: Markus Volk To: openembedded-devel@lists.openembedded.org Subject: [meta-gnome][PATCH 1/3] gnome-keyring: upgrade 46.2 -> 50.0 Date: Tue, 8 Sep 2026 17:06:20 +0200 Message-ID: <20260908150627.2940117-1-f_l_k@t-online.de> X-Mailer: git-send-email 2.55.0 MIME-Version: 1.0 X-TOI-EXPURGATEID: 150726::1788879992-D2FFA95A-5AD72356/0/0 CLEAN NORMAL X-TOI-MSGID: 10c2f80e-b016-4133-886e-50b91625ea13 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=t-online.de; s=20260216; t=1788879992; i=f_l_k@t-online.de; bh=1NzFyjvkWln4b/YjbSvIMvZiXDKVy4C8/+GkwzgCJ/A=; h=From:To:Subject:Date; b=KFNM1vQaq9E1RxYyoqHbis2rPr53uwwt78BpzvNbX3cM2MuLsdVjk3OGh2Sw7S98S PtlzZlexntrbvdZ+5+fdno21v4veQC1hMdAC3v1jbjT9wWX+WFGzpv8667Idaw13Zx 4yrfvZDHbhfCe8jD3d3UOzu/3v6vEulHHtB/8Fy0OtDcnGT9f1ILy6jjbcGJS3JJtk 6L5gIbOpzNVYiO3tu9UkCW8TL6+nm0PaNnJkjL8dO7VP3n4YEmOuhCOnV4enwdqAX4 nuVIXLSbrFspkt+L9psPOfxeT2xuNWLaK8Vh/4LGkrPj1+Sj+gMSr4PAaphcPRYL4+ MZuXAbGHZdWiw== List-Id: X-Webhook-Received: from 45-33-107-173.ip.linodeusercontent.com [45.33.107.173] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Tue, 08 Sep 2026 15:06:39 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/129864 gnome-keyring switched from autotools to meson in 48.alpha, so the recipe is converted to the gnomebase meson default. The configure.ac patch for the ssh-agent and ssh-add paths is replaced by an equivalent meson patch that adds ssh-agent-path and ssh-add-path options, because find_program() cannot locate target executables in the sysroot. The musl patch is dropped, sys/select.h is included upstream since 48. Other changes: - gcr-ui-3 is no longer used, so the gtk+3 dependency and the GTK3DISTROFEATURES check go away. - libcap-ng, pam, selinux and systemd are now explicit PACKAGECONFIGs instead of being auto-detected from whatever is in the sysroot. libcap-ng was picked up implicitly before and stays enabled. - The PKCS#11 module and config directories are passed explicitly instead of being read from the p11-kit pkg-config file. - Man pages need xsltproc and docbook and are disabled like the docs were before. Build tested on corei7-64, the packaged file list is unchanged. AI-Generated: Uses Claude Code (Claude Fable 5.1) Signed-off-by: Markus Volk --- ...-agent-and-ssh-add-by-configure-opti.patch | 40 ---------- ...s-to-ssh-agent-and-ssh-add-by-option.patch | 77 +++++++++++++++++++ .../gnome-keyring/gnome-keyring/musl.patch | 17 ---- .../gnome-keyring/gnome-keyring_46.2.bb | 53 ------------- .../gnome-keyring/gnome-keyring_50.0.bb | 55 +++++++++++++ 5 files changed, 132 insertions(+), 110 deletions(-) delete mode 100644 meta-gnome/recipes-gnome/gnome-keyring/gnome-keyring/0001-Set-paths-to-ssh-agent-and-ssh-add-by-configure-opti.patch create mode 100644 meta-gnome/recipes-gnome/gnome-keyring/gnome-keyring/0001-meson-allow-setting-the-paths-to-ssh-agent-and-ssh-add-by-option.patch delete mode 100644 meta-gnome/recipes-gnome/gnome-keyring/gnome-keyring/musl.patch delete mode 100644 meta-gnome/recipes-gnome/gnome-keyring/gnome-keyring_46.2.bb create mode 100644 meta-gnome/recipes-gnome/gnome-keyring/gnome-keyring_50.0.bb diff --git a/meta-gnome/recipes-gnome/gnome-keyring/gnome-keyring/0001-Set-paths-to-ssh-agent-and-ssh-add-by-configure-opti.patch b/meta-gnome/recipes-gnome/gnome-keyring/gnome-keyring/0001-Set-paths-to-ssh-agent-and-ssh-add-by-configure-opti.patch deleted file mode 100644 index c3c3050924..0000000000 --- a/meta-gnome/recipes-gnome/gnome-keyring/gnome-keyring/0001-Set-paths-to-ssh-agent-and-ssh-add-by-configure-opti.patch +++ /dev/null @@ -1,40 +0,0 @@ -From 647f3d946ec3fe4800b2bec89371f85a1a4b15cf Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Andreas=20M=C3=BCller?= -Date: Thu, 23 May 2019 23:44:06 +0200 -Subject: [PATCH] Set paths to ssh-agent and ssh-add by configure options -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -We have no executables in our sysroot so configuration won't find them. - -Upstream-Status: Inappropriate [OE specific] - -Signed-off-by: Andreas Müller - ---- - configure.ac | 11 +++++++++-- - 1 file changed, 9 insertions(+), 2 deletions(-) - -diff --git a/configure.ac b/configure.ac -index f4f793c..5194e5d 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -356,8 +356,15 @@ if test "$enable_ssh_agent" = "no"; then - SSH_AGENT=false - SSH_ADD=false - else -- AC_PATH_PROG([SSH_AGENT], [ssh-agent], [no]) -- AC_PATH_PROG([SSH_ADD], [ssh-add], [no]) -+ AC_ARG_WITH([ssh-agent-path], -+ [AC_HELP_STRING([--with-ssh-agent-path=PATH], -+ [path to ssh-agent])], -+ [SSH_AGENT=$with_ssh_agent_path], [SSH_AGENT=no]) -+ AC_ARG_WITH([ssh-add-path], -+ [AC_HELP_STRING([--with-ssh-add-path=PATH], -+ [path to ssh-add])], -+ [SSH_ADD=$with_ssh_add_path], [SSH_ADD=no]) -+ - if test "$SSH_AGENT" = "no" -o "$SSH_ADD" = "no"; then - AC_MSG_ERROR([the ssh-agent and ssh-add commands were not found]) - else diff --git a/meta-gnome/recipes-gnome/gnome-keyring/gnome-keyring/0001-meson-allow-setting-the-paths-to-ssh-agent-and-ssh-add-by-option.patch b/meta-gnome/recipes-gnome/gnome-keyring/gnome-keyring/0001-meson-allow-setting-the-paths-to-ssh-agent-and-ssh-add-by-option.patch new file mode 100644 index 0000000000..270fda75e0 --- /dev/null +++ b/meta-gnome/recipes-gnome/gnome-keyring/gnome-keyring/0001-meson-allow-setting-the-paths-to-ssh-agent-and-ssh-add-by-option.patch @@ -0,0 +1,77 @@ +From ed91fc1a7fabd32055442204291db39bb73a603e Mon Sep 17 00:00:00 2001 +From: Markus Volk +Date: Mon, 7 Sep 2026 09:20:06 +0200 +Subject: [PATCH] meson: allow setting the paths to ssh-agent and ssh-add by + option + +When cross compiling there are no target executables in the sysroot, so +find_program() cannot locate ssh-agent and ssh-add although they will be +available at runtime. Add string options that take the paths directly +and fall back to the lookup when they are not set. + +Upstream-Status: Inappropriate [OE specific] + +AI-Generated: Uses Claude Code (Claude Fable 5.1) +--- + meson.build | 14 ++++++++++---- + meson_options.txt | 12 ++++++++++++ + 2 files changed, 22 insertions(+), 4 deletions(-) + +diff --git a/meson.build b/meson.build +index 001ed81..10e8f9a 100644 +--- a/meson.build ++++ b/meson.build +@@ -48,8 +48,14 @@ if libsystemd_dep.found() + endif + + if get_option('ssh-agent') +- ssh_agent_bin = find_program('ssh-agent') +- ssh_add_bin = find_program('ssh-add') ++ ssh_agent_path = get_option('ssh-agent-path') ++ if ssh_agent_path == '' ++ ssh_agent_path = find_program('ssh-agent').full_path() ++ endif ++ ssh_add_path = get_option('ssh-add-path') ++ if ssh_add_path == '' ++ ssh_add_path = find_program('ssh-add').full_path() ++ endif + endif + + if get_option('pam') +@@ -97,8 +103,8 @@ conf.set('WITH_SELINUX', libselinux_dep.found()) + conf.set('WITH_SYSTEMD', libsystemd_dep.found()) + if get_option('ssh-agent') + conf.set('WITH_SSH', true) +- conf.set_quoted('SSH_AGENT', ssh_agent_bin.full_path()) +- conf.set_quoted('SSH_ADD', ssh_add_bin.full_path()) ++ conf.set_quoted('SSH_AGENT', ssh_agent_path) ++ conf.set_quoted('SSH_ADD', ssh_add_path) + endif + conf.set('DOTLOCK_USE_PTHREAD', true) + conf.set('DOTLOCK_GLIB_LOGGING', true) +diff --git a/meson_options.txt b/meson_options.txt +index 55d9a3f..ed860fb 100644 +--- a/meson_options.txt ++++ b/meson_options.txt +@@ -10,6 +10,18 @@ option('ssh-agent', + description: 'Include SSH agent in gnome-keyring', + ) + ++option('ssh-agent-path', ++ type: 'string', ++ value: '', ++ description: 'Path to the ssh-agent binary (skips the build time lookup)', ++) ++ ++option('ssh-add-path', ++ type: 'string', ++ value: '', ++ description: 'Path to the ssh-add binary (skips the build time lookup)', ++) ++ + option('selinux', + type: 'feature', + value: 'auto', +-- +2.55.0 + diff --git a/meta-gnome/recipes-gnome/gnome-keyring/gnome-keyring/musl.patch b/meta-gnome/recipes-gnome/gnome-keyring/gnome-keyring/musl.patch deleted file mode 100644 index 050b87ab24..0000000000 --- a/meta-gnome/recipes-gnome/gnome-keyring/gnome-keyring/musl.patch +++ /dev/null @@ -1,17 +0,0 @@ -include sys/select.h for FD_* macros - -Signed-off-by: Khem Raj -Upstream-Status: Pending - -Index: gnome-keyring-2.32.1/pkcs11/rpc-layer/gkm-rpc-daemon-standalone.c -=================================================================== ---- gnome-keyring-2.32.1.orig/pkcs11/rpc-layer/gkm-rpc-daemon-standalone.c -+++ gnome-keyring-2.32.1/pkcs11/rpc-layer/gkm-rpc-daemon-standalone.c -@@ -32,6 +32,7 @@ - #include - #include - #include -+#include - - #include - #include diff --git a/meta-gnome/recipes-gnome/gnome-keyring/gnome-keyring_46.2.bb b/meta-gnome/recipes-gnome/gnome-keyring/gnome-keyring_46.2.bb deleted file mode 100644 index fcff02a4b3..0000000000 --- a/meta-gnome/recipes-gnome/gnome-keyring/gnome-keyring_46.2.bb +++ /dev/null @@ -1,53 +0,0 @@ -SUMMARY = "Password and keyring managing daemon" -HOMEPAGE = "http://www.gnome.org/" -BUGTRACKER = "https://bugzilla.gnome.org/" -SECTION = "x11/gnome" - -LICENSE = "GPL-2.0-or-later AND LGPL-2.0-or-later AND LGPL-2.1-or-later" -LIC_FILES_CHKSUM = " \ - file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263 \ - file://COPYING.LIB;md5=4fbd65380cdd255951079008b364516c \ -" - -CVE_PRODUCT = "gnome-keyring gnome_keyring" - -DEPENDS = " \ - glib-2.0-native \ - gtk+3 \ - gcr3 \ - libgcrypt \ - ${@bb.utils.contains('DISTRO_FEATURES', 'pam', 'libpam', '', d)} \ -" - -GNOMEBASEBUILDCLASS = "autotools" -inherit gnomebase gsettings features_check gettext - -ANY_OF_DISTRO_FEATURES = "${GTK3DISTROFEATURES}" - -SRC_URI[archive.sha256sum] = "bf26c966b8a8b7f3285ecc8bb3e467b9c20f9535b94dc451c9c559ddcff61925" -SRC_URI += " \ - file://0001-Set-paths-to-ssh-agent-and-ssh-add-by-configure-opti.patch \ - file://musl.patch \ -" - -PACKAGECONFIG ??= "ssh-agent" -PACKAGECONFIG[ssh-agent] = "--enable-ssh-agent --with-ssh-agent-path=${bindir}/ssh-agent --with-ssh-add-path=${bindir}/ssh-add,--disable-ssh-agent,,openssh-misc" - -EXTRA_OECONF = " \ - --disable-doc \ - ${@bb.utils.contains('DISTRO_FEATURES', 'pam', '--enable-pam --with-pam-dir=${base_libdir}/security', '--disable-pam', d)} \ -" - -FILES:${PN} += " \ - ${datadir}/dbus-1/services \ - ${datadir}/p11-kit \ - ${datadir}/xdg-desktop-portal \ - ${base_libdir}/security/*${SOLIBSDEV} \ - ${libdir}/pkcs11/gnome-keyring-pkcs11.so \ - ${systemd_user_unitdir} \ -" -# fix | gnome-keyring-daemon: insufficient process capabilities, unsecure memory might get used -pkg_postinst:${PN} () { - setcap cap_ipc_lock+ep $D/${bindir}/gnome-keyring-daemon -} -PACKAGE_WRITE_DEPS += "libcap-native" diff --git a/meta-gnome/recipes-gnome/gnome-keyring/gnome-keyring_50.0.bb b/meta-gnome/recipes-gnome/gnome-keyring/gnome-keyring_50.0.bb new file mode 100644 index 0000000000..215397ffd3 --- /dev/null +++ b/meta-gnome/recipes-gnome/gnome-keyring/gnome-keyring_50.0.bb @@ -0,0 +1,55 @@ +SUMMARY = "Password and keyring managing daemon" +HOMEPAGE = "http://www.gnome.org/" +BUGTRACKER = "https://bugzilla.gnome.org/" +SECTION = "x11/gnome" + +LICENSE = "GPL-2.0-or-later AND LGPL-2.0-or-later AND LGPL-2.1-or-later" +LIC_FILES_CHKSUM = " \ + file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263 \ + file://COPYING.LIB;md5=4fbd65380cdd255951079008b364516c \ +" + +CVE_PRODUCT = "gnome-keyring gnome_keyring" + +DEPENDS = " \ + glib-2.0-native \ + gcr3 \ + libgcrypt \ + p11-kit \ +" + +inherit gnomebase gsettings gettext + +SRC_URI[archive.sha256sum] = "cbd72062c53c9702bc2c4733991ad5f051ca682882b30905a2829bcf1a8ecc7c" +SRC_URI += "file://0001-meson-allow-setting-the-paths-to-ssh-agent-and-ssh-add-by-option.patch" + +PACKAGECONFIG ??= " \ + libcap-ng \ + ssh-agent \ + ${@bb.utils.filter('DISTRO_FEATURES', 'pam selinux systemd', d)} \ +" +PACKAGECONFIG[libcap-ng] = "-Dlibcap-ng=enabled,-Dlibcap-ng=disabled,libcap-ng" +PACKAGECONFIG[pam] = "-Dpam=true,-Dpam=false,libpam" +PACKAGECONFIG[selinux] = "-Dselinux=enabled,-Dselinux=disabled,libselinux" +PACKAGECONFIG[ssh-agent] = "-Dssh-agent=true -Dssh-agent-path=${bindir}/ssh-agent -Dssh-add-path=${bindir}/ssh-add,-Dssh-agent=false,,openssh-misc" +PACKAGECONFIG[systemd] = "-Dsystemd=enabled,-Dsystemd=disabled,systemd" + +EXTRA_OEMESON = " \ + -Dmanpage=false \ + -Dpkcs11-config=${datadir}/p11-kit/modules \ + -Dpkcs11-modules=${libdir}/pkcs11 \ +" + +FILES:${PN} += " \ + ${datadir}/dbus-1/services \ + ${datadir}/p11-kit \ + ${datadir}/xdg-desktop-portal \ + ${libdir}/security/*${SOLIBSDEV} \ + ${libdir}/pkcs11/gnome-keyring-pkcs11.so \ + ${systemd_user_unitdir} \ +" +# fix | gnome-keyring-daemon: insufficient process capabilities, unsecure memory might get used +pkg_postinst:${PN} () { + setcap cap_ipc_lock+ep $D/${bindir}/gnome-keyring-daemon +} +PACKAGE_WRITE_DEPS += "libcap-native" From patchwork Tue Sep 8 15:06:21 2026 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markus Volk X-Patchwork-Id: 97629 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from aws-us-west-2-korg-lkml-1.web.codeaurora.org (localhost.localdomain [127.0.0.1]) by smtp.lore.kernel.org (Postfix) with ESMTP id 524B3C79F82 for ; Tue, 8 Sep 2026 15:06:39 +0000 (UTC) Received: from mailout04.t-online.de (mailout04.t-online.de [194.25.134.18]) by mx.groups.io with SMTP id smtpd.msgproc02-g2.9715.1788879994992156736 for ; Tue, 08 Sep 2026 08:06:35 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="dkim: body hash did not verify" header.i=f_l_k@t-online.de header.s=20260216 header.b=nm7Eqaz6; spf=pass (domain: t-online.de, ip: 194.25.134.18, mailfrom: f_l_k@t-online.de) Received: from fwd93.aul.t-online.de (fwd93.aul.t-online.de [10.223.144.119]) by mailout04.t-online.de (Postfix) with SMTP id B13211061 for ; Tue, 8 Sep 2026 17:06:32 +0200 (CEST) Received: from intel-corei7-64.fritz.box ([79.219.237.236]) by fwd93.t-online.de with (TLSv1.3:TLS_AES_256_GCM_SHA384 encrypted) esmtp id 1x3xP6-0czMwb0; Tue, 8 Sep 2026 17:06:32 +0200 From: Markus Volk To: openembedded-devel@lists.openembedded.org Subject: [meta-gnome][PATCH 2/3] gimp: add librsvg-gtk to RDEPENDS Date: Tue, 8 Sep 2026 17:06:21 +0200 Message-ID: <20260908150627.2940117-2-f_l_k@t-online.de> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260908150627.2940117-1-f_l_k@t-online.de> References: <20260908150627.2940117-1-f_l_k@t-online.de> MIME-Version: 1.0 X-TOI-EXPURGATEID: 150726::1788879992-EB7FD95A-98DFC5EE/0/0 CLEAN NORMAL X-TOI-MSGID: 2e7f322d-a749-4b47-b3c2-fcc12a0dc785 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=t-online.de; s=20260216; t=1788879992; i=f_l_k@t-online.de; bh=LmYaFk+/VbwbViBKJfoO/JNTtB2Yalbqca6b/8GlF2E=; h=From:To:Subject:Date:In-Reply-To:References; b=nm7Eqaz6GylwnBFmx2xgBC+E3XdoBPaMrO2KWLd/CL18DJ4Oi2IdCD2bG3cDs6mFa U5V62ytc0O+glVVraUwjA+rgf3BqwlVO1MyvTGLGvM1FehLwY0gOWocIj84rfZCS52 F2RjD3/8dlnZlgEvAjySmxCiya6NBFNiebYQuGABJdn5rGA5WEhPZwDRomwATNBEs+ QUAnFBnBs7pDwli5wMKYQE6vxKVQmwx9HMcU0+QLGWjhVRUh0YPV4nQ1sOuFZhwg8h OThuMGrGIlakARgPpVrU757RjxVOU/4iMjV4+IzCPQnsTwLTYUrymZRi28rf7nYTNr vsInZixZyyEPQ== List-Id: X-Webhook-Received: from 45-33-107-173.ip.linodeusercontent.com [45.33.107.173] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Tue, 08 Sep 2026 15:06:39 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/129863 The icon themes gimp ships are SVG only. Without the gdk-pixbuf SVG loader GTK cannot load a single icon and gimp aborts at startup with "Icon 'image-missing' not present in theme Default". Images built with the GTK tooling usually carry the loader for other reasons, a Plasma image does not. Tested on a Plasma image on corei7-64, gimp starts with the loader installed. AI-Generated: Uses Claude Code (Claude Fable 5.1) Signed-off-by: Markus Volk --- meta-gnome/recipes-gimp/gimp/gimp_3.2.4.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-gnome/recipes-gimp/gimp/gimp_3.2.4.bb b/meta-gnome/recipes-gimp/gimp/gimp_3.2.4.bb index cfb0c3a67f..bcd69985fb 100644 --- a/meta-gnome/recipes-gimp/gimp/gimp_3.2.4.bb +++ b/meta-gnome/recipes-gimp/gimp/gimp_3.2.4.bb @@ -135,7 +135,7 @@ do_install:prepend() { FILES:${PN} += "${datadir}/metainfo" -RDEPENDS:${PN} = "mypaint-brushes glib-networking python3-pygobject python3-pycairo" +RDEPENDS:${PN} = "mypaint-brushes glib-networking librsvg-gtk python3-pygobject python3-pycairo" CVE_STATUS[CVE-2007-3741] = "not-applicable-platform: This only applies for Mandriva Linux" CVE_STATUS[CVE-2025-8672] = "not-applicable-config: the vulnerability only affects MacOS" From patchwork Tue Sep 8 15:06:22 2026 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markus Volk X-Patchwork-Id: 97627 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from aws-us-west-2-korg-lkml-1.web.codeaurora.org (localhost.localdomain [127.0.0.1]) by smtp.lore.kernel.org (Postfix) with ESMTP id 45131C79FAA for ; Tue, 8 Sep 2026 15:06:39 +0000 (UTC) Received: from mailout01.t-online.de (mailout01.t-online.de [194.25.134.80]) by mx.groups.io with SMTP id smtpd.msgproc01-g2.9711.1788879994996288766 for ; Tue, 08 Sep 2026 08:06:35 -0700 Authentication-Results: mx.groups.io; dkim=fail reason="dkim: body hash did not verify" header.i=f_l_k@t-online.de header.s=20260216 header.b=iPuKtr6y; spf=pass (domain: t-online.de, ip: 194.25.134.80, mailfrom: f_l_k@t-online.de) Received: from fwd93.aul.t-online.de (fwd93.aul.t-online.de [10.223.144.119]) by mailout01.t-online.de (Postfix) with SMTP id B61F91C529 for ; Tue, 8 Sep 2026 17:06:32 +0200 (CEST) Received: from intel-corei7-64.fritz.box ([79.219.237.236]) by fwd93.t-online.de with (TLSv1.3:TLS_AES_256_GCM_SHA384 encrypted) esmtp id 1x3xP6-0czMwc0; Tue, 8 Sep 2026 17:06:32 +0200 From: Markus Volk To: openembedded-devel@lists.openembedded.org Subject: [meta-gnome][PATCH 3/3] gdm: remove dbus-broker from RCONFLICTS Date: Tue, 8 Sep 2026 17:06:22 +0200 Message-ID: <20260908150627.2940117-3-f_l_k@t-online.de> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260908150627.2940117-1-f_l_k@t-online.de> References: <20260908150627.2940117-1-f_l_k@t-online.de> MIME-Version: 1.0 X-TOI-EXPURGATEID: 150726::1788879992-E9FF895A-C4E992C8/0/0 CLEAN NORMAL X-TOI-MSGID: 9beaf14a-2237-4f60-971a-9b12514d8d47 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=t-online.de; s=20260216; t=1788879992; i=f_l_k@t-online.de; bh=DW5PrGn3z5PTAassoGbpq97FucXRvqTIibIjQ2+KOQY=; h=From:To:Subject:Date:In-Reply-To:References; b=iPuKtr6y2McXdEKT5pznDXVZ4zJC3CJrAkywBF8PzrDXdkMj/pCqA9KRhC1UkAsos PRhgpoUUT9xDFH7O2ACXxVtp8CovQmHmIrBGRljef1pC/KUIKk8Ij0quh5uMhpJvB1 ZHAjqIGPKjfzLLT5TZP+3IJynIxwudwhOwTnG2Gyhc5pVTl2M2LTCQXC7OfO/NaNLJ 2JPIfe9uKV2P5f/TUP494cDBRXnyHKR2sSd2t5dn3xkwGwY35vpnBnZJHxdfE7f6oB LX6T24UYw8uY9I5Lmmoecazawd37CFDjK6Kr8LWYdxMKawzlTxUaKB//d8jBSm6jjH tbqqTlI0zkFYg== List-Id: X-Webhook-Received: from 45-33-107-173.ip.linodeusercontent.com [45.33.107.173] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Tue, 08 Sep 2026 15:06:39 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/129862 After further debugging it turned out that the root cause of my issue was a race condition between gdm and kmscon and switching to dbus just changed the condition to my favour. gdm itself can work with dbus-broker, so this statement is false Signed-off-by: Markus Volk --- meta-gnome/recipes-gnome/gdm/gdm_50.2.bb | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/meta-gnome/recipes-gnome/gdm/gdm_50.2.bb b/meta-gnome/recipes-gnome/gdm/gdm_50.2.bb index 8b4470ec98..c87b958fcd 100644 --- a/meta-gnome/recipes-gnome/gdm/gdm_50.2.bb +++ b/meta-gnome/recipes-gnome/gdm/gdm_50.2.bb @@ -78,7 +78,4 @@ FILES:${PN} += " \ ${systemd_unitdir} ${systemd_user_unitdir} \ " -RDEPENDS:${PN} += "${PN}-base" -# gdm relies on dbus-run-session provided by dbus -RCONFLICTS:${PN} += "dbus-broker" -RDEPENDS:${PN} += "dbus" +RDEPENDS:${PN} += "${PN}-base ${VIRTUAL-RUNTIME_dbus}"