From patchwork Sat Mar 23 08:41:26 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markus Volk X-Patchwork-Id: 41395 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 D3A1BC54E67 for ; Sat, 23 Mar 2024 08:41:26 +0000 (UTC) Received: from mailout03.t-online.de (mailout03.t-online.de [194.25.134.81]) by mx.groups.io with SMTP id smtpd.web10.5241.1711183280372945127 for ; Sat, 23 Mar 2024 01:41:20 -0700 Authentication-Results: mx.groups.io; dkim=none (message not signed); spf=pass (domain: t-online.de, ip: 194.25.134.81, mailfrom: f_l_k@t-online.de) Received: from fwd75.aul.t-online.de (fwd75.aul.t-online.de [10.223.144.101]) by mailout03.t-online.de (Postfix) with SMTP id 3E3CC452E7 for ; Sat, 23 Mar 2024 09:41:18 +0100 (CET) Received: from intel-corei7-64.fritz.box ([84.154.167.162]) by fwd75.t-online.de with (TLSv1.3:TLS_AES_256_GCM_SHA384 encrypted) esmtp id 1rnwwD-1MMRGb0; Sat, 23 Mar 2024 09:41:13 +0100 From: Markus Volk To: openembedded-devel@lists.openembedded.org Subject: [meta-gnome][PATCH 01/13] gtk4mm: add recipe Date: Sat, 23 Mar 2024 09:41:26 +0100 Message-ID: <20240323084138.178281-1-f_l_k@t-online.de> X-Mailer: git-send-email 2.44.0 MIME-Version: 1.0 X-TOI-EXPURGATEID: 150726::1711183273-0CA7E850-FCFA4D5F/0/0 CLEAN NORMAL X-TOI-MSGID: bfa2f6d2-59b6-4df4-9a52-3f16dc823730 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 ; Sat, 23 Mar 2024 08:41:26 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/109534 the gtk4 variant of gtkmm is required for gnome-system-monitor Signed-off-by: Markus Volk --- meta-oe/recipes-gnome/gtk+/gtkmm4_4.14.0.bb | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 meta-oe/recipes-gnome/gtk+/gtkmm4_4.14.0.bb diff --git a/meta-oe/recipes-gnome/gtk+/gtkmm4_4.14.0.bb b/meta-oe/recipes-gnome/gtk+/gtkmm4_4.14.0.bb new file mode 100644 index 000000000..b0b51ed73 --- /dev/null +++ b/meta-oe/recipes-gnome/gtk+/gtkmm4_4.14.0.bb @@ -0,0 +1,21 @@ +SUMMARY = "C++ bindings for the GTK+ toolkit V4" +HOMEPAGE = "http://www.gtkmm.org/" +SECTION = "libs" + +LICENSE = "LGPL-2.1-only & GPL-2.0-only" +LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c \ + file://COPYING.tools;md5=751419260aa954499f7abaabaa882bbe" + +DEPENDS = "glib-2.0-native atkmm pangomm-2.48 glibmm gtk4 cairomm-1.16 gdk-pixbuf-native" + +BPN = "gtkmm" + +inherit gnomebase features_check + +REQUIRED_DISTRO_FEATURES = "opengl" + +SRC_URI[archive.sha256sum] = "9350a0444b744ca3dc69586ebd1b6707520922b6d9f4f232103ce603a271ecda" + +EXTRA_OEMESON = "-Dbuild-demos=false" + +FILES:${PN}-dev += "${libdir}/*/include ${libdir}/*/proc/m4" From patchwork Sat Mar 23 08:41:27 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Markus Volk X-Patchwork-Id: 41406 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 6428ACD1287 for ; Sat, 23 Mar 2024 08:41:27 +0000 (UTC) Received: from mailout03.t-online.de (mailout03.t-online.de [194.25.134.81]) by mx.groups.io with SMTP id smtpd.web11.5312.1711183280320002520 for ; Sat, 23 Mar 2024 01:41:20 -0700 Authentication-Results: mx.groups.io; dkim=none (message not signed); spf=pass (domain: t-online.de, ip: 194.25.134.81, mailfrom: f_l_k@t-online.de) Received: from fwd75.aul.t-online.de (fwd75.aul.t-online.de [10.223.144.101]) by mailout03.t-online.de (Postfix) with SMTP id 3FDA3452E8 for ; Sat, 23 Mar 2024 09:41:18 +0100 (CET) Received: from intel-corei7-64.fritz.box ([84.154.167.162]) by fwd75.t-online.de with (TLSv1.3:TLS_AES_256_GCM_SHA384 encrypted) esmtp id 1rnwwD-1MMRGc0; Sat, 23 Mar 2024 09:41:13 +0100 From: Markus Volk To: openembedded-devel@lists.openembedded.org Subject: [meta-gnome][PATCH 02/13] gnome-system-monitor: update 45.0.1 -> 46.0 Date: Sat, 23 Mar 2024 09:41:27 +0100 Message-ID: <20240323084138.178281-2-f_l_k@t-online.de> X-Mailer: git-send-email 2.44.0 In-Reply-To: <20240323084138.178281-1-f_l_k@t-online.de> References: <20240323084138.178281-1-f_l_k@t-online.de> MIME-Version: 1.0 X-TOI-EXPURGATEID: 150726::1711183273-0CA7E850-A810257C/0/0 CLEAN NORMAL X-TOI-MSGID: ef163739-20f6-4cbf-a2b7-e0ab29b9b247 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 ; Sat, 23 Mar 2024 08:41:27 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/109533 - gnome-system-monitor was ported to gtk4 New in 46.0 - 16 March 2024 * Updated translations * style: Blend header bar with window contents !126 (kramo) New in 46.rc - 2 March 2024 * Updated translations * interface: Readd Delete key as shortcut to end process !128 (Óscar Fernández Díaz) * Fixed memory leak in affinity change !129 (Yannis Gerlach) * Updated app links !130 (Óscar Fernández Díaz) * Metainformation improvements: correct developer and platform added (Sophie Herold) New in 46.beta - 11 February 2024 * Updated translations * Fixed several memory leaks (Barnabás Pőcze) * Fixed several plotting issues (Barnabás Pőcze) * Partial rework of graph class hierarchy (Robert Roth) * Remember window state #295 (Óscar Fernández Díaz) * Renamed appdata to match desktop file !124 (Óscar Fernández Díaz) New in 46.alpha - 6 January 2024 * Updated translations * Application ported to GTK4 (Ondřej Míchal) * Fixed shortcuts #262 (Robert Roth) * Fixed highcontrast graph labels #266 (Robert Roth) * Fixed argument type mismatch !82 (Barnabás Pőcze) * Updated UI to match Human Interface Guidelines !84 (Automeris Naranja) * Ported various application components to adwaita (Óscar Fernández Díaz) * Added flatpak build manifest !113 (Óscar Fernández Díaz) * Various code improvements (Óscar Fernández Díaz) * Appdata updates !114 (Sabri Ünal) Signed-off-by: Markus Volk --- ...stem-monitor_45.0.1.bb => gnome-system-monitor_46.0.bb} | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) rename meta-gnome/recipes-gnome/gnome-system-monitor/{gnome-system-monitor_45.0.1.bb => gnome-system-monitor_46.0.bb} (83%) diff --git a/meta-gnome/recipes-gnome/gnome-system-monitor/gnome-system-monitor_45.0.1.bb b/meta-gnome/recipes-gnome/gnome-system-monitor/gnome-system-monitor_46.0.bb similarity index 83% rename from meta-gnome/recipes-gnome/gnome-system-monitor/gnome-system-monitor_45.0.1.bb rename to meta-gnome/recipes-gnome/gnome-system-monitor/gnome-system-monitor_46.0.bb index b90bbb8e5..eaeaa2cb0 100644 --- a/meta-gnome/recipes-gnome/gnome-system-monitor/gnome-system-monitor_45.0.1.bb +++ b/meta-gnome/recipes-gnome/gnome-system-monitor/gnome-system-monitor_46.0.bb @@ -6,7 +6,10 @@ DEPENDS = " \ gnome-common-native \ libxml2-native \ glib-2.0-native \ - gtkmm3 \ + glibmm-2.68 \ + gtkmm4 \ + gtk4 \ + libadwaita \ libgtop \ librsvg \ polkit \ @@ -22,7 +25,7 @@ REQUIRED_DISTRO_FEATURES = "polkit" def gnome_verdir(v): return oe.utils.trim_version(v, 1) -SRC_URI[archive.sha256sum] = "43f6b7805c74532490edb8822ebdf8b3cf2c5ef842a51252a14c34715f5d49b4" +SRC_URI[archive.sha256sum] = "5376248158c686c308255472e8c2a9e4c17255642c149fc7198c6d034e547599" PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'systemd', d)}" PACKAGECONFIG[systemd] = "-Dsystemd=true, -Dsystemd=false, systemd" From patchwork Sat Mar 23 08:41:28 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markus Volk X-Patchwork-Id: 41404 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 48DE9CD1286 for ; Sat, 23 Mar 2024 08:41:27 +0000 (UTC) Received: from mailout03.t-online.de (mailout03.t-online.de [194.25.134.81]) by mx.groups.io with SMTP id smtpd.web11.5311.1711183280306041142 for ; Sat, 23 Mar 2024 01:41:20 -0700 Authentication-Results: mx.groups.io; dkim=none (message not signed); spf=pass (domain: t-online.de, ip: 194.25.134.81, mailfrom: f_l_k@t-online.de) Received: from fwd75.aul.t-online.de (fwd75.aul.t-online.de [10.223.144.101]) by mailout03.t-online.de (Postfix) with SMTP id 4185A452E9 for ; Sat, 23 Mar 2024 09:41:18 +0100 (CET) Received: from intel-corei7-64.fritz.box ([84.154.167.162]) by fwd75.t-online.de with (TLSv1.3:TLS_AES_256_GCM_SHA384 encrypted) esmtp id 1rnwwD-1MMRGd0; Sat, 23 Mar 2024 09:41:13 +0100 From: Markus Volk To: openembedded-devel@lists.openembedded.org Subject: [meta-gnome][PATCH 03/13] gnome-boxes: update 45.0 -> 46.0 Date: Sat, 23 Mar 2024 09:41:28 +0100 Message-ID: <20240323084138.178281-3-f_l_k@t-online.de> X-Mailer: git-send-email 2.44.0 In-Reply-To: <20240323084138.178281-1-f_l_k@t-online.de> References: <20240323084138.178281-1-f_l_k@t-online.de> MIME-Version: 1.0 X-TOI-EXPURGATEID: 150726::1711183273-0CA7E850-32CBF5BF/0/0 CLEAN NORMAL X-TOI-MSGID: 390ddbf9-9946-4070-a3b3-9b13412a3038 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 ; Sat, 23 Mar 2024 08:41:27 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/109532 46.0 - Mar 18, 2024 =================== Changes since 45.0 - Disable "secure-boot" for EFI virtual machines - Use libportal to call Background Portal - Fallback to default resources on error cases - Fix crash when processing a non bootable ISO image - Fix permissions when copying template files - Added/updated/fixed translations Signed-off-by: Markus Volk --- .../gnome-boxes/{gnome-boxes_45.0.bb => gnome-boxes_46.0.bb} | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) rename meta-gnome/dynamic-layers/meta-virtualization/recipes-gnome/gnome-boxes/{gnome-boxes_45.0.bb => gnome-boxes_46.0.bb} (88%) diff --git a/meta-gnome/dynamic-layers/meta-virtualization/recipes-gnome/gnome-boxes/gnome-boxes_45.0.bb b/meta-gnome/dynamic-layers/meta-virtualization/recipes-gnome/gnome-boxes/gnome-boxes_46.0.bb similarity index 88% rename from meta-gnome/dynamic-layers/meta-virtualization/recipes-gnome/gnome-boxes/gnome-boxes_45.0.bb rename to meta-gnome/dynamic-layers/meta-virtualization/recipes-gnome/gnome-boxes/gnome-boxes_46.0.bb index fc1235109..44fdd2dbe 100644 --- a/meta-gnome/dynamic-layers/meta-virtualization/recipes-gnome/gnome-boxes/gnome-boxes_45.0.bb +++ b/meta-gnome/dynamic-layers/meta-virtualization/recipes-gnome/gnome-boxes/gnome-boxes_46.0.bb @@ -14,6 +14,7 @@ DEPENDS = " \ libgudev \ libhandy \ libosinfo \ + libportal \ libsecret \ libsoup \ libvirt-glib \ @@ -30,7 +31,7 @@ RDEPENDS:${PN} = "glib-2.0-dev libvirt-virsh qemu-common qemu-system-x86-64 geni inherit gnomebase gsettings pkgconfig mime-xdg gtk-icon-cache gobject-introspection vala features_check -SRC_URI[archive.sha256sum] = "cc63080eefa147a8472ab1a5ff087b97a27ab723a4ee005ed41e8c9dd7798e41" +SRC_URI[archive.sha256sum] = "67eeb5e989294958b25c397cfc5615ff65f44315c700010f0b9e336e6f3407cb" GIR_MESON_OPTION = "" VALA_MESON_OPTION = "" From patchwork Sat Mar 23 08:41:29 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Markus Volk X-Patchwork-Id: 41402 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 2EEDDCD1282 for ; Sat, 23 Mar 2024 08:41:27 +0000 (UTC) Received: from mailout03.t-online.de (mailout03.t-online.de [194.25.134.81]) by mx.groups.io with SMTP id smtpd.web11.5313.1711183280495039044 for ; Sat, 23 Mar 2024 01:41:20 -0700 Authentication-Results: mx.groups.io; dkim=none (message not signed); spf=pass (domain: t-online.de, ip: 194.25.134.81, mailfrom: f_l_k@t-online.de) Received: from fwd75.aul.t-online.de (fwd75.aul.t-online.de [10.223.144.101]) by mailout03.t-online.de (Postfix) with SMTP id 43094452EA for ; Sat, 23 Mar 2024 09:41:18 +0100 (CET) Received: from intel-corei7-64.fritz.box ([84.154.167.162]) by fwd75.t-online.de with (TLSv1.3:TLS_AES_256_GCM_SHA384 encrypted) esmtp id 1rnwwD-1MMRGe0; Sat, 23 Mar 2024 09:41:13 +0100 From: Markus Volk To: openembedded-devel@lists.openembedded.org Subject: [meta-gnome][PATCH 04/13] eog: update 45.2 -> 45.3 Date: Sat, 23 Mar 2024 09:41:29 +0100 Message-ID: <20240323084138.178281-4-f_l_k@t-online.de> X-Mailer: git-send-email 2.44.0 In-Reply-To: <20240323084138.178281-1-f_l_k@t-online.de> References: <20240323084138.178281-1-f_l_k@t-online.de> MIME-Version: 1.0 X-TOI-EXPURGATEID: 150726::1711183273-0CA7E850-B992A5D6/0/0 CLEAN NORMAL X-TOI-MSGID: 84c1b52a-2383-4ecd-9416-f5ad3d619141 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 ; Sat, 23 Mar 2024 08:41:27 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/109535 Version 45.3 ------------ New and updated translations: - Daniel Mustieles [es] - Sveinn í Felli [is] - Aurimas Černius [lt] - Rūdolfs Mazurs [lv] - Martin Srebotnjak [sl] - Cheng-Chia Tseng [zh_TW] New and updated manual translations - Juliano de Souza Camargo [pt_BR] - Sabri Ünal [tr] Signed-off-by: Markus Volk --- meta-gnome/recipes-gnome/eog/{eog_45.2.bb => eog_45.3.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-gnome/recipes-gnome/eog/{eog_45.2.bb => eog_45.3.bb} (88%) diff --git a/meta-gnome/recipes-gnome/eog/eog_45.2.bb b/meta-gnome/recipes-gnome/eog/eog_45.3.bb similarity index 88% rename from meta-gnome/recipes-gnome/eog/eog_45.2.bb rename to meta-gnome/recipes-gnome/eog/eog_45.3.bb index f2295fdd5..00fe26669 100644 --- a/meta-gnome/recipes-gnome/eog/eog_45.2.bb +++ b/meta-gnome/recipes-gnome/eog/eog_45.3.bb @@ -21,7 +21,7 @@ inherit gnomebase pkgconfig gsettings gobject-introspection gettext mime-xdg fea # FIXME: whilst eog uses libpeas <2, g-i is needed. This can be removed when libpeas2 is used. REQUIRED_DISTRO_FEATURES = "opengl gobject-introspection-data" -SRC_URI[archive.sha256sum] = "d94cc39d82c80cee7281b82ace42c8225976ad5d0c3ef995c7e030f6bab2219c" +SRC_URI[archive.sha256sum] = "8650f662d4921d83a7904f6bb9ca245baf735f717b47fac5b37f0d90e5e891a8" GTKDOC_MESON_OPTION = "gtk_doc" From patchwork Sat Mar 23 08:41:30 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markus Volk X-Patchwork-Id: 41403 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 48C4FCD1285 for ; Sat, 23 Mar 2024 08:41:27 +0000 (UTC) Received: from mailout03.t-online.de (mailout03.t-online.de [194.25.134.81]) by mx.groups.io with SMTP id smtpd.web11.5314.1711183280540506865 for ; Sat, 23 Mar 2024 01:41:20 -0700 Authentication-Results: mx.groups.io; dkim=none (message not signed); spf=pass (domain: t-online.de, ip: 194.25.134.81, mailfrom: f_l_k@t-online.de) Received: from fwd75.aul.t-online.de (fwd75.aul.t-online.de [10.223.144.101]) by mailout03.t-online.de (Postfix) with SMTP id 4492E452EB for ; Sat, 23 Mar 2024 09:41:18 +0100 (CET) Received: from intel-corei7-64.fritz.box ([84.154.167.162]) by fwd75.t-online.de with (TLSv1.3:TLS_AES_256_GCM_SHA384 encrypted) esmtp id 1rnwwD-1MMRGf0; Sat, 23 Mar 2024 09:41:13 +0100 From: Markus Volk To: openembedded-devel@lists.openembedded.org Subject: [meta-gnome][PATCH 05/13] gparted: update 1.5.0 -> 1.6.0 Date: Sat, 23 Mar 2024 09:41:30 +0100 Message-ID: <20240323084138.178281-5-f_l_k@t-online.de> X-Mailer: git-send-email 2.44.0 In-Reply-To: <20240323084138.178281-1-f_l_k@t-online.de> References: <20240323084138.178281-1-f_l_k@t-online.de> MIME-Version: 1.0 X-TOI-EXPURGATEID: 150726::1711183274-0CA7E850-ADDD40D6/0/0 CLEAN NORMAL X-TOI-MSGID: 04864ea3-0faa-4935-b8e2-c908d0afdcab 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 ; Sat, 23 Mar 2024 08:41:27 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/109536 install missing metainfo files Signed-off-by: Markus Volk --- .../gparted/{gparted_1.5.0.bb => gparted_1.6.0.bb} | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) rename meta-gnome/recipes-extended/gparted/{gparted_1.5.0.bb => gparted_1.6.0.bb} (91%) diff --git a/meta-gnome/recipes-extended/gparted/gparted_1.5.0.bb b/meta-gnome/recipes-extended/gparted/gparted_1.6.0.bb similarity index 91% rename from meta-gnome/recipes-extended/gparted/gparted_1.5.0.bb rename to meta-gnome/recipes-extended/gparted/gparted_1.6.0.bb index fdfb1ef47..ab2890679 100644 --- a/meta-gnome/recipes-extended/gparted/gparted_1.5.0.bb +++ b/meta-gnome/recipes-extended/gparted/gparted_1.6.0.bb @@ -11,7 +11,7 @@ SRC_URI = " \ ${SOURCEFORGE_MIRROR}/project/${BPN}/${BPN}/${BPN}-${PV}/${BPN}-${PV}.tar.gz \ ${@bb.utils.contains('DISTRO_FEATURES', 'polkit', 'file://0001-Install-polkit-action-unconditionally-executable-pke.patch', '', d)} \ " -SRC_URI[sha256sum] = "3c95ea26a944083ff1d9b17639b1e2ad9758df225dc751ff407b2a6aa092a8de" +SRC_URI[sha256sum] = "9b9f51b3ce494ddcb59a55e1ae6679c09436604e331dbf5a536d60ded6c6ea5b" UPSTREAM_CHECK_URI = "https://sourceforge.net/projects/gparted/files/gparted/" UPSTREAM_CHECK_REGEX = "gparted-(?P\d+\.(\d+)+(\.\d+)+)" @@ -31,6 +31,7 @@ PACKAGECONFIG[polkit] = ",,polkit" FILES:${PN} += " \ ${datadir}/appdata \ ${datadir}/icons \ + ${datadir}/metainfo \ " PACKAGES += "${PN}-polkit" From patchwork Sat Mar 23 08:41:31 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markus Volk X-Patchwork-Id: 41401 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 2F121CD1284 for ; Sat, 23 Mar 2024 08:41:27 +0000 (UTC) Received: from mailout03.t-online.de (mailout03.t-online.de [194.25.134.81]) by mx.groups.io with SMTP id smtpd.web10.5242.1711183282109762068 for ; Sat, 23 Mar 2024 01:41:22 -0700 Authentication-Results: mx.groups.io; dkim=none (message not signed); spf=pass (domain: t-online.de, ip: 194.25.134.81, mailfrom: f_l_k@t-online.de) Received: from fwd75.aul.t-online.de (fwd75.aul.t-online.de [10.223.144.101]) by mailout03.t-online.de (Postfix) with SMTP id 46415452EC for ; Sat, 23 Mar 2024 09:41:18 +0100 (CET) Received: from intel-corei7-64.fritz.box ([84.154.167.162]) by fwd75.t-online.de with (TLSv1.3:TLS_AES_256_GCM_SHA384 encrypted) esmtp id 1rnwwE-1MMRGg0; Sat, 23 Mar 2024 09:41:14 +0100 From: Markus Volk To: openembedded-devel@lists.openembedded.org Subject: [meta-gnome][PATCH 06/13] libgtop: update 2.41.1 -> 2.41.3 Date: Sat, 23 Mar 2024 09:41:31 +0100 Message-ID: <20240323084138.178281-6-f_l_k@t-online.de> X-Mailer: git-send-email 2.44.0 In-Reply-To: <20240323084138.178281-1-f_l_k@t-online.de> References: <20240323084138.178281-1-f_l_k@t-online.de> MIME-Version: 1.0 X-TOI-EXPURGATEID: 150726::1711183274-0CA7E850-11833BEA/0/0 CLEAN NORMAL X-TOI-MSGID: d3d9880a-0660-451e-9251-5d4caf61e487 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 ; Sat, 23 Mar 2024 08:41:27 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/109537 This update is required for gnome-system-monitor-46.0 --- .../libgtop/{libgtop_2.41.1.bb => libgtop_2.41.3.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-gnome/recipes-gnome/libgtop/{libgtop_2.41.1.bb => libgtop_2.41.3.bb} (80%) diff --git a/meta-gnome/recipes-gnome/libgtop/libgtop_2.41.1.bb b/meta-gnome/recipes-gnome/libgtop/libgtop_2.41.3.bb similarity index 80% rename from meta-gnome/recipes-gnome/libgtop/libgtop_2.41.1.bb rename to meta-gnome/recipes-gnome/libgtop/libgtop_2.41.3.bb index a8483de1a..5587baa0f 100644 --- a/meta-gnome/recipes-gnome/libgtop/libgtop_2.41.1.bb +++ b/meta-gnome/recipes-gnome/libgtop/libgtop_2.41.3.bb @@ -7,6 +7,6 @@ inherit gnomebase lib_package gtk-doc gobject-introspection gettext upstream-ver ANY_OF_DISTRO_FEATURES = "${GTK3DISTROFEATURES}" -SRC_URI[archive.sha256sum] = "43ea9ad13f7caf98303e64172b191be9b96bab340b019deeec72251ee140fe3b" +SRC_URI[archive.sha256sum] = "775676df958e2ea2452f7568f28b2ea581063d312773dd5c0b7624c1b9b2da8c" DEPENDS = "glib-2.0 libxau" From patchwork Sat Mar 23 08:41:32 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markus Volk X-Patchwork-Id: 41397 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 0FA4ECD1281 for ; Sat, 23 Mar 2024 08:41:27 +0000 (UTC) Received: from mailout03.t-online.de (mailout03.t-online.de [194.25.134.81]) by mx.groups.io with SMTP id smtpd.web11.5316.1711183282141395568 for ; Sat, 23 Mar 2024 01:41:22 -0700 Authentication-Results: mx.groups.io; dkim=none (message not signed); spf=pass (domain: t-online.de, ip: 194.25.134.81, mailfrom: f_l_k@t-online.de) Received: from fwd75.aul.t-online.de (fwd75.aul.t-online.de [10.223.144.101]) by mailout03.t-online.de (Postfix) with SMTP id 47CB0452ED for ; Sat, 23 Mar 2024 09:41:18 +0100 (CET) Received: from intel-corei7-64.fritz.box ([84.154.167.162]) by fwd75.t-online.de with (TLSv1.3:TLS_AES_256_GCM_SHA384 encrypted) esmtp id 1rnwwE-1MMRGh0; Sat, 23 Mar 2024 09:41:14 +0100 From: Markus Volk To: openembedded-devel@lists.openembedded.org Subject: [meta-gnome][PATCH 07/13] gnome-bluetooth: update 42.8 -> 46.0 Date: Sat, 23 Mar 2024 09:41:32 +0100 Message-ID: <20240323084138.178281-7-f_l_k@t-online.de> X-Mailer: git-send-email 2.44.0 In-Reply-To: <20240323084138.178281-1-f_l_k@t-online.de> References: <20240323084138.178281-1-f_l_k@t-online.de> MIME-Version: 1.0 X-TOI-EXPURGATEID: 150726::1711183274-0CA7E850-FCF27F19/0/0 CLEAN NORMAL X-TOI-MSGID: 623596c1-858b-4c27-be36-c09c73a28176 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 ; Sat, 23 Mar 2024 08:41:27 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/109539 ver 46.0: This version contains translation updates. ver 46.beta: This version modernises the look of the properties dialogue. It also includes all the fixes available in version 42.8. Signed-off-by: Markus Volk --- .../{gnome-bluetooth_42.8.bb => gnome-bluetooth_46.0.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-gnome/recipes-gnome/gnome-bluetooth/{gnome-bluetooth_42.8.bb => gnome-bluetooth_46.0.bb} (91%) diff --git a/meta-gnome/recipes-gnome/gnome-bluetooth/gnome-bluetooth_42.8.bb b/meta-gnome/recipes-gnome/gnome-bluetooth/gnome-bluetooth_46.0.bb similarity index 91% rename from meta-gnome/recipes-gnome/gnome-bluetooth/gnome-bluetooth_42.8.bb rename to meta-gnome/recipes-gnome/gnome-bluetooth/gnome-bluetooth_46.0.bb index 6d4d84e1e..1b29e52c7 100644 --- a/meta-gnome/recipes-gnome/gnome-bluetooth/gnome-bluetooth_42.8.bb +++ b/meta-gnome/recipes-gnome/gnome-bluetooth/gnome-bluetooth_46.0.bb @@ -25,7 +25,7 @@ inherit features_check gnomebase gtk-icon-cache gtk-doc gobject-introspection REQUIRED_DISTRO_FEATURES = "x11 opengl" -SRC_URI[archive.sha256sum] = "76c241e8ca2c9b1035364535ca26084f89fc5c0e1829510f8909583115fcc2db" +SRC_URI[archive.sha256sum] = "13fe1e75f317acdbdf5e80c9029d2e0632d60a9ccf72a43ae36eb7545021fbef" BT_PULSE_PACKS = " \ pulseaudio-lib-bluez5-util \ From patchwork Sat Mar 23 08:41:33 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Markus Volk X-Patchwork-Id: 41405 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 561E1CD1283 for ; Sat, 23 Mar 2024 08:41:27 +0000 (UTC) Received: from mailout03.t-online.de (mailout03.t-online.de [194.25.134.81]) by mx.groups.io with SMTP id smtpd.web11.5315.1711183282130461436 for ; Sat, 23 Mar 2024 01:41:22 -0700 Authentication-Results: mx.groups.io; dkim=none (message not signed); spf=pass (domain: t-online.de, ip: 194.25.134.81, mailfrom: f_l_k@t-online.de) Received: from fwd75.aul.t-online.de (fwd75.aul.t-online.de [10.223.144.101]) by mailout03.t-online.de (Postfix) with SMTP id 493CA5AAC0 for ; Sat, 23 Mar 2024 09:41:18 +0100 (CET) Received: from intel-corei7-64.fritz.box ([84.154.167.162]) by fwd75.t-online.de with (TLSv1.3:TLS_AES_256_GCM_SHA384 encrypted) esmtp id 1rnwwE-1MMRGi0; Sat, 23 Mar 2024 09:41:14 +0100 From: Markus Volk To: openembedded-devel@lists.openembedded.org Subject: [meta-gnome][PATCH 08/13] gnome-text-editor: update 45.1 -> 46.0 Date: Sat, 23 Mar 2024 09:41:33 +0100 Message-ID: <20240323084138.178281-8-f_l_k@t-online.de> X-Mailer: git-send-email 2.44.0 In-Reply-To: <20240323084138.178281-1-f_l_k@t-online.de> References: <20240323084138.178281-1-f_l_k@t-online.de> MIME-Version: 1.0 X-TOI-EXPURGATEID: 150726::1711183274-0CA7E850-EC7A9838/0/0 CLEAN NORMAL X-TOI-MSGID: 28603dd6-24db-4fe1-a720-be892004bc1c 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 ; Sat, 23 Mar 2024 08:41:27 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/109538 • Various performance workarounds have been added to the overview map to improve rendering performance and quality with fractional scaling. • Translation updates Changes since 46.beta • Disable editing while document is loading • Discard still-loading documents when saving session • Fix some tab integration issues with libadwaita Changes since 46.alpha • Use AdwAboutDialog • Fix keyboard access to light/dark/follow theme selectors • Use GtkFontDialog instead of deprecated GtkFontChooserDialog • Check for files on disk before restoring drafts to avoid displaying deleted files. • Performance improvements to the minimap on GTKs new renderer • Avoid draft auto-save file the document is still loading • The language selection dialog is now modal • A new-window action was added to .desktop file for GNOME Shell • Improve support for closing a page while it is still loading • Updated translations Changes since 45.0 • Make various UI elements conform better to GNOME HIG • Fix etag usage when comparing changes from GFileMonitor • Cancel document loading when tab or window closes. This fixes an issue where you could have 100% CPU doing Pango line breaking on extremely large files even after closing a window or tab. • Improve margin for RTL languages • Updated appdata/metainfo • Fix memory leak in usage of GtkNativeDialog • Work around some broken user configurations for XDG special directories • Translation updates Signed-off-by: Markus Volk --- .../{gnome-text-editor_45.1.bb => gnome-text-editor_46.0.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-gnome/recipes-gnome/gnome-text-editor/{gnome-text-editor_45.1.bb => gnome-text-editor_46.0.bb} (83%) diff --git a/meta-gnome/recipes-gnome/gnome-text-editor/gnome-text-editor_45.1.bb b/meta-gnome/recipes-gnome/gnome-text-editor/gnome-text-editor_46.0.bb similarity index 83% rename from meta-gnome/recipes-gnome/gnome-text-editor/gnome-text-editor_45.1.bb rename to meta-gnome/recipes-gnome/gnome-text-editor/gnome-text-editor_46.0.bb index 2d310bd05..967182aea 100644 --- a/meta-gnome/recipes-gnome/gnome-text-editor/gnome-text-editor_45.1.bb +++ b/meta-gnome/recipes-gnome/gnome-text-editor/gnome-text-editor_46.0.bb @@ -18,7 +18,7 @@ inherit gnomebase gtk-icon-cache itstool gnome-help mime-xdg features_check REQUIRED_DISTRO_FEATURES = "opengl" -SRC_URI[archive.sha256sum] = "6a86ec9920f466b6ed92695524d3b507b1e84272dafa5341d06a157de868af71" +SRC_URI[archive.sha256sum] = "c018d0b3792c044c1558d1d0dd92b09fb0a96c9e2d25e1ae1f4cf91f7eab4614" FILES:${PN} += " \ ${datadir}/metainfo \ From patchwork Sat Mar 23 08:41:34 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Markus Volk X-Patchwork-Id: 41400 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 0034BCD1280 for ; Sat, 23 Mar 2024 08:41:26 +0000 (UTC) Received: from mailout03.t-online.de (mailout03.t-online.de [194.25.134.81]) by mx.groups.io with SMTP id smtpd.web11.5317.1711183282200049697 for ; Sat, 23 Mar 2024 01:41:22 -0700 Authentication-Results: mx.groups.io; dkim=none (message not signed); spf=pass (domain: t-online.de, ip: 194.25.134.81, mailfrom: f_l_k@t-online.de) Received: from fwd75.aul.t-online.de (fwd75.aul.t-online.de [10.223.144.101]) by mailout03.t-online.de (Postfix) with SMTP id 4ADA25AAC1 for ; Sat, 23 Mar 2024 09:41:18 +0100 (CET) Received: from intel-corei7-64.fritz.box ([84.154.167.162]) by fwd75.t-online.de with (TLSv1.3:TLS_AES_256_GCM_SHA384 encrypted) esmtp id 1rnwwE-1MMRGj0; Sat, 23 Mar 2024 09:41:14 +0100 From: Markus Volk To: openembedded-devel@lists.openembedded.org Subject: [meta-gnome][PATCH 09/13] gnome-chess: update 43.2 -> 46.0 Date: Sat, 23 Mar 2024 09:41:34 +0100 Message-ID: <20240323084138.178281-9-f_l_k@t-online.de> X-Mailer: git-send-email 2.44.0 In-Reply-To: <20240323084138.178281-1-f_l_k@t-online.de> References: <20240323084138.178281-1-f_l_k@t-online.de> MIME-Version: 1.0 X-TOI-EXPURGATEID: 150726::1711183274-0CA7E850-F8A1D631/0/0 CLEAN NORMAL X-TOI-MSGID: d047d0c2-1fcc-4127-9f28-c1686a057d7b 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 ; Sat, 23 Mar 2024 08:41:26 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/109541 46.0 - March 14, 2024 ===================== - Updated translations 46.beta - February 9, 2024 ========================== - Highlight relevant pieces when king is checked (#46, #78, Mohammadreza Shabani) - Change keyboard shortcut for viewing previous/next moves (#67, Vancha) - Change tooltips to follow HIG guidelines (#75, Automeris naranja) - Improve style of message dialogs (#77, Felipe Kinoshita) - Fix "Time Limit" not translated in new game window (!47, Sabri Ünal) - Improvements to main menu (!48, Automeris naranja) - Improve shortcut names in help overlay (!51, Automeris naranja) - Updated appstream metainfo (!54, Sabri Ünal) - Fix broken links in user help (Andre Klapper) - Updated translations Signed-off-by: Markus Volk --- .../gnome-chess/{gnome-chess_43.2.bb => gnome-chess_46.0.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-gnome/recipes-gnome/gnome-chess/{gnome-chess_43.2.bb => gnome-chess_46.0.bb} (94%) diff --git a/meta-gnome/recipes-gnome/gnome-chess/gnome-chess_43.2.bb b/meta-gnome/recipes-gnome/gnome-chess/gnome-chess_46.0.bb similarity index 94% rename from meta-gnome/recipes-gnome/gnome-chess/gnome-chess_43.2.bb rename to meta-gnome/recipes-gnome/gnome-chess/gnome-chess_46.0.bb index 58e72efb7..bb53b58df 100644 --- a/meta-gnome/recipes-gnome/gnome-chess/gnome-chess_43.2.bb +++ b/meta-gnome/recipes-gnome/gnome-chess/gnome-chess_46.0.bb @@ -29,6 +29,6 @@ inherit meson pkgconfig gobject-introspection gtk-icon-cache vala features_check GIR_MESON_OPTION = "" S = "${WORKDIR}/git" -SRCREV = "de47d07ec6fc828b2668ca6ee59fe9bdfa9dc1d6" +SRCREV = "c3625ee59ab3acfd7566ef04300b15ddbadaaac3" FILES:${PN} += "${datadir}" From patchwork Sat Mar 23 08:41:35 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markus Volk X-Patchwork-Id: 41398 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 F4105CD11DD for ; Sat, 23 Mar 2024 08:41:26 +0000 (UTC) Received: from mailout03.t-online.de (mailout03.t-online.de [194.25.134.81]) by mx.groups.io with SMTP id smtpd.web10.5243.1711183282149701772 for ; Sat, 23 Mar 2024 01:41:22 -0700 Authentication-Results: mx.groups.io; dkim=none (message not signed); spf=pass (domain: t-online.de, ip: 194.25.134.81, mailfrom: f_l_k@t-online.de) Received: from fwd75.aul.t-online.de (fwd75.aul.t-online.de [10.223.144.101]) by mailout03.t-online.de (Postfix) with SMTP id 4C7305AAC2 for ; Sat, 23 Mar 2024 09:41:18 +0100 (CET) Received: from intel-corei7-64.fritz.box ([84.154.167.162]) by fwd75.t-online.de with (TLSv1.3:TLS_AES_256_GCM_SHA384 encrypted) esmtp id 1rnwwE-1MMRGk0; Sat, 23 Mar 2024 09:41:14 +0100 From: Markus Volk To: openembedded-devel@lists.openembedded.org Subject: [meta-gnome][PATCH 10/13] gnome-disk-utility: update 45.0 -> 46.0 Date: Sat, 23 Mar 2024 09:41:35 +0100 Message-ID: <20240323084138.178281-10-f_l_k@t-online.de> X-Mailer: git-send-email 2.44.0 In-Reply-To: <20240323084138.178281-1-f_l_k@t-online.de> References: <20240323084138.178281-1-f_l_k@t-online.de> MIME-Version: 1.0 X-TOI-EXPURGATEID: 150726::1711183274-0CA7E850-7307A164/0/0 CLEAN NORMAL X-TOI-MSGID: fc475483-bea7-4982-bd2d-bd1dde46c72a 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 ; Sat, 23 Mar 2024 08:41:26 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/109540 Signed-off-by: Markus Volk --- .../{gnome-disk-utility_45.0.bb => gnome-disk-utility_46.0.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-gnome/recipes-gnome/gnome-disk-utility/{gnome-disk-utility_45.0.bb => gnome-disk-utility_46.0.bb} (91%) diff --git a/meta-gnome/recipes-gnome/gnome-disk-utility/gnome-disk-utility_45.0.bb b/meta-gnome/recipes-gnome/gnome-disk-utility/gnome-disk-utility_46.0.bb similarity index 91% rename from meta-gnome/recipes-gnome/gnome-disk-utility/gnome-disk-utility_45.0.bb rename to meta-gnome/recipes-gnome/gnome-disk-utility/gnome-disk-utility_46.0.bb index 856d29e7c..e4998f627 100644 --- a/meta-gnome/recipes-gnome/gnome-disk-utility/gnome-disk-utility_45.0.bb +++ b/meta-gnome/recipes-gnome/gnome-disk-utility/gnome-disk-utility_46.0.bb @@ -29,7 +29,7 @@ PACKAGECONFIG[systemd] = "-Dlogind=libsystemd,-Dlogind=none,systemd" PACKAGECONFIG[x11] = ",,libcanberra" SRC_URI:append = " ${@bb.utils.contains('DISTRO_FEATURES', 'wayland', 'file://0001-gnome-disk-utility-remove-libcanberra-dependency.patch', '', d)}" -SRC_URI[archive.sha256sum] = "3d8625faa99047bc4aefd29921ad728ab4d700cff86e0f2ec67e8dba877d0dd3" +SRC_URI[archive.sha256sum] = "464649148c6d6771f1ac2ebfe43a4e519205b11c2d914a09f2a001821d06957d" EXTRA_OEMESON = "-Dman=false" From patchwork Sat Mar 23 08:41:36 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Markus Volk X-Patchwork-Id: 41394 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 E4CF5CD11DF for ; Sat, 23 Mar 2024 08:41:26 +0000 (UTC) Received: from mailout03.t-online.de (mailout03.t-online.de [194.25.134.81]) by mx.groups.io with SMTP id smtpd.web10.5244.1711183282393499526 for ; Sat, 23 Mar 2024 01:41:22 -0700 Authentication-Results: mx.groups.io; dkim=none (message not signed); spf=pass (domain: t-online.de, ip: 194.25.134.81, mailfrom: f_l_k@t-online.de) Received: from fwd75.aul.t-online.de (fwd75.aul.t-online.de [10.223.144.101]) by mailout03.t-online.de (Postfix) with SMTP id 4E60C5AAC3 for ; Sat, 23 Mar 2024 09:41:18 +0100 (CET) Received: from intel-corei7-64.fritz.box ([84.154.167.162]) by fwd75.t-online.de with (TLSv1.3:TLS_AES_256_GCM_SHA384 encrypted) esmtp id 1rnwwE-1MMRGl0; Sat, 23 Mar 2024 09:41:14 +0100 From: Markus Volk To: openembedded-devel@lists.openembedded.org Subject: [meta-gnome][PATCH 11/13] gnome-shell-extensions: update 45.2 -> 46.0 Date: Sat, 23 Mar 2024 09:41:36 +0100 Message-ID: <20240323084138.178281-11-f_l_k@t-online.de> X-Mailer: git-send-email 2.44.0 In-Reply-To: <20240323084138.178281-1-f_l_k@t-online.de> References: <20240323084138.178281-1-f_l_k@t-online.de> MIME-Version: 1.0 X-TOI-EXPURGATEID: 150726::1711183274-0CA7E850-89752E9D/0/0 CLEAN NORMAL X-TOI-MSGID: 58d77cf0-3138-4676-b9d6-f5a353db127d 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 ; Sat, 23 Mar 2024 08:41:26 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/109542 46.0 ==== * system-monitor: Fix net speed [Florian; !313] * Misc. bug fixes and cleanups [Aral; !311] Contributors: Aral Balkan, Florian Müllner Translators: Anders Jonsson [sv], Piotr Drąg [pl], Balázs Úr [hu], Milo Casagrande [it], Quentin PAGÈS [oc], Athmane MOKRAOUI [kab], Changwoo Ryu [ko], Ask Hjorth Larsen [da] 46.rc ===== * Fix window previews in workspace indicator [Florian; !304] * Fix menu ornament in workspace indicator [Florian; !305] * Misc. bug fixes and cleanups [Florian; !306, !309] Contributors: Florian Müllner Translators: Danial Behzadi [fa], Ekaterine Papava [ka], Sabri Ünal [tr], Artur S0 [ru], Yuri Chornoivan [uk], Vasil Pupkin [be], Asier Sarasua Garmendia [eu], Yaron Shahrabani [he], Brage Fuglseth [nb], Nathan Follens [nl], Aurimas Černius [lt], Matej Urbančič [sl], Boyuan Yang [zh_CN], Kukuh Syafaat [id], Fran Dieguez [gl], Andi Chandler [en_GB], Baurzhan Muftakhidinov [kk], Rūdolfs Mazurs [lv], Guillaume Bernard [fr], Daniel Mustieles [es], Jiri Grönroos [fi] 46.beta ======= * apps-menu: Rename Applications to Apps [Allan; !299] * Misc. bug fixes and cleanups [Florian; !296, !297, !300, !301, !302] Contributors: Allan Day, Florian Müllner Translators: Gabriel Brand [de], Daniel Rusek [cs], Fran Dieguez [gl], Aefgh Threenine [th], Vasil Pupkin [be], Artur S0 [ru], Yosef Or Boczko [he], Sabri Ünal [tr] 46.alpha ======== * workspace-indicator: Fix initial preview visibility [Florian; !280, !292] * screenshot-window-sizer: Fix cycling between sizes backwards [Florian; !284] * Add back overview in Classic session [Florian; !287] * Allow running Classic session headless [Jonas; !289] * window-list: Fix buttons not being clickable at the screen edge [Florian; !291] * Add system-monitor extension [Florian; !277] * Fixed crash [Florian; !290] * Misc. bug fixes and cleanups [Florian; !276, !275, !278, !281, !286, !288] Contributors: Jonas Ådahl, Florian Müllner Translators: Kristjan SCHMIDT [eo], Brage Fuglseth [nb] Signed-off-by: Markus Volk --- ...-shell-extensions_45.2.bb => gnome-shell-extensions_46.0.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-gnome/recipes-gnome/gnome-shell/{gnome-shell-extensions_45.2.bb => gnome-shell-extensions_46.0.bb} (84%) diff --git a/meta-gnome/recipes-gnome/gnome-shell/gnome-shell-extensions_45.2.bb b/meta-gnome/recipes-gnome/gnome-shell/gnome-shell-extensions_46.0.bb similarity index 84% rename from meta-gnome/recipes-gnome/gnome-shell/gnome-shell-extensions_45.2.bb rename to meta-gnome/recipes-gnome/gnome-shell/gnome-shell-extensions_46.0.bb index 49cd6b810..eff5fecff 100644 --- a/meta-gnome/recipes-gnome/gnome-shell/gnome-shell-extensions_45.2.bb +++ b/meta-gnome/recipes-gnome/gnome-shell/gnome-shell-extensions_46.0.bb @@ -6,7 +6,7 @@ inherit gnomebase gettext gsettings features_check REQUIRED_DISTRO_FEATURES = "x11 polkit systemd pam gobject-introspection-data" -SRC_URI[archive.sha256sum] = "ee32f6387a2d18adbff7a956689bc747866b4a8712d73790c002abeae4ccaaaf" +SRC_URI[archive.sha256sum] = "d8138f88cd92df9f932309149c236fbdd77c1bc095445036ab7eb0ecda53c01a" EXTRA_OEMESON += " \ -Dextension_set=all \ From patchwork Sat Mar 23 08:41:37 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markus Volk X-Patchwork-Id: 41396 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 D559CC54E58 for ; Sat, 23 Mar 2024 08:41:26 +0000 (UTC) Received: from mailout03.t-online.de (mailout03.t-online.de [194.25.134.81]) by mx.groups.io with SMTP id smtpd.web11.5318.1711183282453421599 for ; Sat, 23 Mar 2024 01:41:22 -0700 Authentication-Results: mx.groups.io; dkim=none (message not signed); spf=pass (domain: t-online.de, ip: 194.25.134.81, mailfrom: f_l_k@t-online.de) Received: from fwd75.aul.t-online.de (fwd75.aul.t-online.de [10.223.144.101]) by mailout03.t-online.de (Postfix) with SMTP id 500F25AAC4 for ; Sat, 23 Mar 2024 09:41:18 +0100 (CET) Received: from intel-corei7-64.fritz.box ([84.154.167.162]) by fwd75.t-online.de with (TLSv1.3:TLS_AES_256_GCM_SHA384 encrypted) esmtp id 1rnwwE-1MMRGm0; Sat, 23 Mar 2024 09:41:14 +0100 From: Markus Volk To: openembedded-devel@lists.openembedded.org Subject: [meta-gnome][PATCH 12/13] msgraph: add recipe Date: Sat, 23 Mar 2024 09:41:37 +0100 Message-ID: <20240323084138.178281-12-f_l_k@t-online.de> X-Mailer: git-send-email 2.44.0 In-Reply-To: <20240323084138.178281-1-f_l_k@t-online.de> References: <20240323084138.178281-1-f_l_k@t-online.de> MIME-Version: 1.0 X-TOI-EXPURGATEID: 150726::1711183274-0CA7E850-1B1183B6/0/0 CLEAN NORMAL X-TOI-MSGID: d4868cc1-ea3e-4aa4-ab2a-c2690bd734d0 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 ; Sat, 23 Mar 2024 08:41:26 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/109543 libmsgraph would be required for onedrive support in gvfs Signed-off-by: Markus Volk --- .../recipes-gnome/msgraph/msgraph_0.2.1.bb | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 meta-gnome/recipes-gnome/msgraph/msgraph_0.2.1.bb diff --git a/meta-gnome/recipes-gnome/msgraph/msgraph_0.2.1.bb b/meta-gnome/recipes-gnome/msgraph/msgraph_0.2.1.bb new file mode 100644 index 000000000..220571a9c --- /dev/null +++ b/meta-gnome/recipes-gnome/msgraph/msgraph_0.2.1.bb @@ -0,0 +1,18 @@ +SUMMARY = "libmsgraph is a GLib-based library for accessing online serive APIs using MS Graph protocol." +LICENSE = "LGPL-3.0-only" +LIC_FILES_CHKSUM = "file://COPYING;md5=3000208d539ec061b899bce1d9ce9404" + +inherit gnomebase gobject-introspection gi-docgen + +SRC_URI[archive.sha256sum] = "e0e59eaa8ae3e0a48ec0a6c2fed0470856a709248e9212b6a1d037de5792ecbb" + +GTKDOC_MESON_OPTION = "gtk_doc" + +EXTRA_OEMESON = "-Dtests=false" + +DEPENDS = " \ + glib-2.0\ + json-glib \ + librest \ + gnome-online-accounts \ +" From patchwork Sat Mar 23 08:41:38 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Markus Volk X-Patchwork-Id: 41399 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 D4566CD11DB for ; Sat, 23 Mar 2024 08:41:26 +0000 (UTC) Received: from mailout03.t-online.de (mailout03.t-online.de [194.25.134.81]) by mx.groups.io with SMTP id smtpd.web10.5245.1711183282510481783 for ; Sat, 23 Mar 2024 01:41:22 -0700 Authentication-Results: mx.groups.io; dkim=none (message not signed); spf=pass (domain: t-online.de, ip: 194.25.134.81, mailfrom: f_l_k@t-online.de) Received: from fwd75.aul.t-online.de (fwd75.aul.t-online.de [10.223.144.101]) by mailout03.t-online.de (Postfix) with SMTP id 51ACE5AAC5 for ; Sat, 23 Mar 2024 09:41:18 +0100 (CET) Received: from intel-corei7-64.fritz.box ([84.154.167.162]) by fwd75.t-online.de with (TLSv1.3:TLS_AES_256_GCM_SHA384 encrypted) esmtp id 1rnwwF-1MMRGn0; Sat, 23 Mar 2024 09:41:15 +0100 From: Markus Volk To: openembedded-devel@lists.openembedded.org Subject: [meta-gnome][PATCH 13/13] gvfs: update 1.52.2 -> 1.54.0 Date: Sat, 23 Mar 2024 09:41:38 +0100 Message-ID: <20240323084138.178281-13-f_l_k@t-online.de> X-Mailer: git-send-email 2.44.0 In-Reply-To: <20240323084138.178281-1-f_l_k@t-online.de> References: <20240323084138.178281-1-f_l_k@t-online.de> MIME-Version: 1.0 X-TOI-EXPURGATEID: 150726::1711183275-0CA7E850-84759BC4/0/0 CLEAN NORMAL X-TOI-MSGID: 2003063d-189e-490a-8069-d03d7b650c96 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 ; Sat, 23 Mar 2024 08:41:26 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/109544 - add PACKAGECONFIG for onedrive Major changes in 1.54.0 ======================= * Translation updates (GNOME Translation Project contributors) Major changes in 1.53.91 ======================== * onedrive: Fix several issues (Jan-Michael Brummer) * wsdd: List just devices of pub:Computer type to filter out unwanted devices (Ondrej Holy) * Translation updates (GNOME Translation Project contributors) Major changes in 1.53.90 ======================== * daemon: Add OneDrive support based on msgraph library (Jan-Michael Brummer) * client: Reduce synchronous metadata methods calls to improve performance (Corey Berla) * network: Provide standard::content-type and access::can-rename attributes (António Fernandes) * build: Fix unknown arguments error on systems that don't use GNU C library (Ondrej Holy) * udisks2: Fix unmounting of mount paths that contain non-ASCII characters (Ondrej Holy) * Translation updates (GNOME Translation Project contributors) Major changes in 1.53.1 ======================= * daemon: Add WS-Discovery support based on wsdd daemon (Ondrej Holy) * network: Hide Windows Network folder and show the servers merged by default (Ondrej Holy) * network: Various other fixes and enhancements (Ondrej Holy) * daemon: Port to gcr4 (Ondrej Holy) * smb: Fix livelock when mounting share without enough permissions (Ondrej Holy) * smb: Fix moving files across filesystem boundaries (Ondrej Holy) * Translation updates (GNOME Translation Project contributors) Signed-off-by: Markus Volk --- .../recipes-gnome/gvfs/{gvfs_1.52.2.bb => gvfs_1.54.0.bb} | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) rename meta-gnome/recipes-gnome/gvfs/{gvfs_1.52.2.bb => gvfs_1.54.0.bb} (95%) diff --git a/meta-gnome/recipes-gnome/gvfs/gvfs_1.52.2.bb b/meta-gnome/recipes-gnome/gvfs/gvfs_1.54.0.bb similarity index 95% rename from meta-gnome/recipes-gnome/gvfs/gvfs_1.52.2.bb rename to meta-gnome/recipes-gnome/gvfs/gvfs_1.54.0.bb index 519cc0924..525f8fe7e 100644 --- a/meta-gnome/recipes-gnome/gvfs/gvfs_1.52.2.bb +++ b/meta-gnome/recipes-gnome/gvfs/gvfs_1.54.0.bb @@ -19,7 +19,7 @@ RDEPENDS:${PN} += "gsettings-desktop-schemas" SRC_URI = "https://download.gnome.org/sources/${BPN}/${@gnome_verdir("${PV}")}/${BPN}-${PV}.tar.xz;name=archive" -SRC_URI[archive.sha256sum] = "a643aceaa053caac0d8eff9a015f636e4bd1bb09cfe27864e347db67460e7b91" +SRC_URI[archive.sha256sum] = "f53d81df86c2e86cdd25182c2d8a669a22371e83623ded1b9d5416dcfc6de366" ANY_OF_DISTRO_FEATURES = "${GTK3DISTROFEATURES}" @@ -67,6 +67,7 @@ PACKAGECONFIG[libmtp] = "-Dmtp=true, -Dmtp=false, libmtp" PACKAGECONFIG[logind] = "-Dlogind=true, -Dlogind=false, systemd" PACKAGECONFIG[libgphoto2] = "-Dgphoto2=true, -Dgphoto2=false, libgphoto2" PACKAGECONFIG[nfs] = "-Dnfs=true, -Dnfs=false,libnfs" +PACKAGECONFIG[onedrive] = "-Donedrive=true, -Donedrive=false, msgraph" PACKAGECONFIG[samba] = "-Dsmb=true, -Dsmb=false, samba" PACKAGECONFIG[systemd] = "-Dsystemduserunitdir=${systemd_user_unitdir} -Dtmpfilesdir=${libdir}/tmpfiles.d, -Dsystemduserunitdir=no -Dtmpfilesdir=no, systemd"