From patchwork Fri Dec 30 14:12:10 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markus Volk X-Patchwork-Id: 17379 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 CCD6CC4167B for ; Fri, 30 Dec 2022 14:12:23 +0000 (UTC) Received: from mailout09.t-online.de (mailout09.t-online.de [194.25.134.84]) by mx.groups.io with SMTP id smtpd.web10.18697.1672409539969342882 for ; Fri, 30 Dec 2022 06:12:20 -0800 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=SPF record not found (domain: t-online.de, ip: 194.25.134.84, mailfrom: f_l_k@t-online.de) Received: from fwd81.dcpf.telekom.de (fwd81.aul.t-online.de [10.223.144.107]) by mailout09.t-online.de (Postfix) with SMTP id C572D1B34C for ; Fri, 30 Dec 2022 15:12:17 +0100 (CET) Received: from flk-MS-7C91.fritz.box ([79.219.234.94]) by fwd81.t-online.de with (TLSv1.3:TLS_AES_256_GCM_SHA384 encrypted) esmtp id 1pBG7N-14qG5B0; Fri, 30 Dec 2022 15:12:17 +0100 From: Markus Volk To: openembedded-devel@lists.openembedded.org Cc: Markus Volk Subject: [meta-gnome][PATCHv2] gnome-shell: add missing RDEPENDS Date: Fri, 30 Dec 2022 15:12:10 +0100 Message-Id: <20221230141210.811193-1-f_l_k@t-online.de> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 X-TOI-EXPURGATEID: 150726::1672409537-EFFE97E2-7946BA63/0/0 CLEAN NORMAL X-TOI-MSGID: edd46f67-8ede-415a-bfcd-db116fc89e9c List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Fri, 30 Dec 2022 14:12:23 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/100313 Add enough runtime dependencies to make gnome-shell start from the terminal Signed-off-by: Markus Volk --- .../gnome-shell/gnome-shell_43.1.bb | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/meta-gnome/recipes-gnome/gnome-shell/gnome-shell_43.1.bb b/meta-gnome/recipes-gnome/gnome-shell/gnome-shell_43.1.bb index 980a7b583..f75bad28b 100644 --- a/meta-gnome/recipes-gnome/gnome-shell/gnome-shell_43.1.bb +++ b/meta-gnome/recipes-gnome/gnome-shell/gnome-shell_43.1.bb @@ -37,7 +37,7 @@ SRC_URI += "file://0001-Introduce-options-gjs_path-to-optionally-set-path-to.pat PACKAGECONFIG ??= "bluetooth nm ${@bb.utils.filter('DISTRO_FEATURES', 'systemd', d)}" PACKAGECONFIG[bluetooth] = ",,gnome-bluetooth" -PACKAGECONFIG[nm] = "-Dnetworkmanager=true, -Dnetworkmanager=false, networkmanager" +PACKAGECONFIG[nm] = "-Dnetworkmanager=true, -Dnetworkmanager=false,networkmanager,networkmanager" PACKAGECONFIG[systemd] = "-Dsystemd=true, -Dsystemd=false, systemd" EXTRA_OEMESON = " \ @@ -65,7 +65,19 @@ FILES:${PN} += " \ ${systemd_user_unitdir} \ " -RDEPENDS:${PN} += "gnome-desktop gsettings-desktop-schemas gdm-base librsvg-gtk ${PN}-gsettings" +RDEPENDS:${PN} += " \ + accountsservice \ + gdm-base \ + gnome-control-center \ + gnome-backgrounds \ + gnome-bluetooth \ + gnome-desktop \ + gnome-session \ + gnome-settings-daemon \ + gnome-shell-gsettings \ + gsettings-desktop-schemas \ + librsvg-gtk \ +" PACKAGES =+ "${PN}-tools ${PN}-gsettings" FILES:${PN}-tools = "${bindir}/*-tool"