From patchwork Sat Mar 25 08:02:25 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Markus Volk X-Patchwork-Id: 21745 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 24217C7619A for ; Sat, 25 Mar 2023 08:03:20 +0000 (UTC) Received: from mailout04.t-online.de (mailout04.t-online.de [194.25.134.18]) by mx.groups.io with SMTP id smtpd.web11.17397.1679731391892220575 for ; Sat, 25 Mar 2023 01:03:12 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=SPF record not found (domain: t-online.de, ip: 194.25.134.18, mailfrom: f_l_k@t-online.de) Received: from fwd74.dcpf.telekom.de (fwd74.aul.t-online.de [10.223.144.100]) by mailout04.t-online.de (Postfix) with SMTP id 62C7A1896E for ; Sat, 25 Mar 2023 09:03:09 +0100 (CET) Received: from flk-MS-7C91.fritz.box ([84.154.174.49]) by fwd74.t-online.de with (TLSv1.3:TLS_AES_256_GCM_SHA384 encrypted) esmtp id 1pfyrl-0RoPhJ0; Sat, 25 Mar 2023 09:03:09 +0100 From: Markus Volk To: openembedded-devel@lists.openembedded.org Cc: Markus Volk Subject: [meta-gnome][PATCH 01/32] polkit-gnome: add recipe Date: Sat, 25 Mar 2023 09:02:25 +0100 Message-Id: <20230325080256.923752-1-f_l_k@t-online.de> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 X-TOI-EXPURGATEID: 150726::1679731389-8556AC08-755EA57D/0/0 CLEAN NORMAL X-TOI-MSGID: 6d283777-6929-48de-a9ed-934d1ac7c02f 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, 25 Mar 2023 08:03:20 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/101714 Signed-off-by: Markus Volk --- ...nt-user-to-authenticate-with-by-defa.patch | 78 ++++++++++ ...alog-Make-the-label-wrap-at-70-chars.patch | 32 +++++ ...om-accountsservice-instead-of-lookin.patch | 135 ++++++++++++++++++ ...mestamps-when-displaying-authenticat.patch | 45 ++++++ ...able-gnome-tools-that-are-not-provid.patch | 28 ++++ ...olkit-gnome-authentication-agent-1.desktop | 87 +++++++++++ .../polkit-gnome/polkit-gnome_0.105.bb | 29 ++++ 7 files changed, 434 insertions(+) create mode 100644 meta-gnome/recipes-extended/polkit-gnome/polkit-gnome/0001-Select-the-current-user-to-authenticate-with-by-defa.patch create mode 100644 meta-gnome/recipes-extended/polkit-gnome/polkit-gnome/0002-Auth-dialog-Make-the-label-wrap-at-70-chars.patch create mode 100644 meta-gnome/recipes-extended/polkit-gnome/polkit-gnome/0003-Get-user-icon-from-accountsservice-instead-of-lookin.patch create mode 100644 meta-gnome/recipes-extended/polkit-gnome/polkit-gnome/0004-Use-fresh-X11-timestamps-when-displaying-authenticat.patch create mode 100644 meta-gnome/recipes-extended/polkit-gnome/polkit-gnome/0005-configure.ac-disable-gnome-tools-that-are-not-provid.patch create mode 100644 meta-gnome/recipes-extended/polkit-gnome/polkit-gnome/polkit-gnome-authentication-agent-1.desktop create mode 100644 meta-gnome/recipes-extended/polkit-gnome/polkit-gnome_0.105.bb diff --git a/meta-gnome/recipes-extended/polkit-gnome/polkit-gnome/0001-Select-the-current-user-to-authenticate-with-by-defa.patch b/meta-gnome/recipes-extended/polkit-gnome/polkit-gnome/0001-Select-the-current-user-to-authenticate-with-by-defa.patch new file mode 100644 index 000000000..91f67bbc8 --- /dev/null +++ b/meta-gnome/recipes-extended/polkit-gnome/polkit-gnome/0001-Select-the-current-user-to-authenticate-with-by-defa.patch @@ -0,0 +1,78 @@ +From: Utopia Maintenance Team + +Date: Mon, 30 Apr 2018 17:56:52 +0000 +Subject: Select the current user to authenticate with by default + +Bug: http://bugzilla.gnome.org/show_bug.cgi?id=596188 +Bug-Ubuntu: https://launchpad.net/bugs/435227 +--- + src/polkitgnomeauthenticationdialog.c | 23 ++++++++++++++--------- + 1 file changed, 14 insertions(+), 9 deletions(-) + +diff --git a/src/polkitgnomeauthenticationdialog.c b/src/polkitgnomeauthenticationdialog.c +index 743cc96..d307516 100644 +--- a/src/polkitgnomeauthenticationdialog.c ++++ b/src/polkitgnomeauthenticationdialog.c +@@ -138,7 +138,7 @@ user_combobox_changed (GtkComboBox *widget, + static void + create_user_combobox (PolkitGnomeAuthenticationDialog *dialog) + { +- int n; ++ int n, i, selected_index = 0; + GtkComboBox *combo; + GtkTreeIter iter; + GtkCellRenderer *renderer; +@@ -162,7 +162,7 @@ create_user_combobox (PolkitGnomeAuthenticationDialog *dialog) + + + /* For each user */ +- for (n = 0; dialog->priv->users[n] != NULL; n++) ++ for (i = 0, n = 0; dialog->priv->users[n] != NULL; n++) + { + gchar *gecos; + gchar *real_name; +@@ -224,6 +224,14 @@ create_user_combobox (PolkitGnomeAuthenticationDialog *dialog) + USERNAME_COL, dialog->priv->users[n], + -1); + ++ i++; ++ if (passwd->pw_uid == getuid ()) ++ { ++ selected_index = i; ++ g_free (dialog->priv->selected_user); ++ dialog->priv->selected_user = g_strdup (dialog->priv->users[n]); ++ } ++ + g_free (real_name); + g_object_unref (pixbuf); + } +@@ -252,8 +260,8 @@ create_user_combobox (PolkitGnomeAuthenticationDialog *dialog) + user_combobox_set_sensitive, + NULL, NULL); + +- /* Initially select the "Select user..." ... */ +- gtk_combo_box_set_active (GTK_COMBO_BOX (combo), 0); ++ /* Select the default user */ ++ gtk_combo_box_set_active (GTK_COMBO_BOX (combo), selected_index); + + /* Listen when a new user is selected */ + g_signal_connect (GTK_WIDGET (combo), +@@ -719,16 +727,13 @@ polkit_gnome_authentication_dialog_constructed (GObject *object) + gtk_widget_set_tooltip_markup (label, s); + g_free (s); + +- if (have_user_combobox) ++ /* Disable password entry and authenticate until have a user selected */ ++ if (have_user_combobox && gtk_combo_box_get_active (GTK_COMBO_BOX (dialog->priv->user_combobox)) == 0) + { +- /* ... and make the password entry and "Authenticate" button insensitive */ + gtk_widget_set_sensitive (dialog->priv->prompt_label, FALSE); + gtk_widget_set_sensitive (dialog->priv->password_entry, FALSE); + gtk_widget_set_sensitive (dialog->priv->auth_button, FALSE); + } +- else +- { +- } + + gtk_widget_realize (GTK_WIDGET (dialog)); + diff --git a/meta-gnome/recipes-extended/polkit-gnome/polkit-gnome/0002-Auth-dialog-Make-the-label-wrap-at-70-chars.patch b/meta-gnome/recipes-extended/polkit-gnome/polkit-gnome/0002-Auth-dialog-Make-the-label-wrap-at-70-chars.patch new file mode 100644 index 000000000..76b96f47d --- /dev/null +++ b/meta-gnome/recipes-extended/polkit-gnome/polkit-gnome/0002-Auth-dialog-Make-the-label-wrap-at-70-chars.patch @@ -0,0 +1,32 @@ +From: Lars Uebernickel +Date: Fri, 17 Oct 2014 15:35:25 +0200 +Subject: Auth dialog: Make the label wrap at 70 chars + +Because GtkWindow doesn't have a default width anymore. + +Bug: https://bugzilla.gnome.org/show_bug.cgi?id=738688 +Bug-Ubuntu: https://launchpad.net/bugs/1382566 +--- + src/polkitgnomeauthenticationdialog.c | 2 ++ + 1 file changed, 2 insertions(+) + +diff --git a/src/polkitgnomeauthenticationdialog.c b/src/polkitgnomeauthenticationdialog.c +index d307516..efd4185 100644 +--- a/src/polkitgnomeauthenticationdialog.c ++++ b/src/polkitgnomeauthenticationdialog.c +@@ -574,6 +574,7 @@ polkit_gnome_authentication_dialog_constructed (GObject *object) + g_free (s); + gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5); + gtk_label_set_line_wrap (GTK_LABEL (label), TRUE); ++ gtk_label_set_max_width_chars (GTK_LABEL (label), 70); + gtk_box_pack_start (GTK_BOX (main_vbox), label, FALSE, FALSE, 0); + + /* secondary message */ +@@ -601,6 +602,7 @@ polkit_gnome_authentication_dialog_constructed (GObject *object) + } + gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5); + gtk_label_set_line_wrap (GTK_LABEL (label), TRUE); ++ gtk_label_set_max_width_chars (GTK_LABEL (label), 70); + gtk_box_pack_start (GTK_BOX (main_vbox), label, FALSE, FALSE, 0); + + /* user combobox */ diff --git a/meta-gnome/recipes-extended/polkit-gnome/polkit-gnome/0003-Get-user-icon-from-accountsservice-instead-of-lookin.patch b/meta-gnome/recipes-extended/polkit-gnome/polkit-gnome/0003-Get-user-icon-from-accountsservice-instead-of-lookin.patch new file mode 100644 index 000000000..431493906 --- /dev/null +++ b/meta-gnome/recipes-extended/polkit-gnome/polkit-gnome/0003-Get-user-icon-from-accountsservice-instead-of-lookin.patch @@ -0,0 +1,135 @@ +From: Marc Deslauriers +Date: Mon, 30 Apr 2018 18:03:22 +0000 +Subject: Get user icon from accountsservice instead of looking in ~/.face + +Bug: https://bugzilla.gnome.org/show_bug.cgi?id=669857 +Bug-Ubuntu: https://launchpad.net/bugs/928249 +--- + src/polkitgnomeauthenticationdialog.c | 107 ++++++++++++++++++++++++++++++---- + 1 file changed, 97 insertions(+), 10 deletions(-) + +diff --git a/src/polkitgnomeauthenticationdialog.c b/src/polkitgnomeauthenticationdialog.c +index efd4185..565da87 100644 +--- a/src/polkitgnomeauthenticationdialog.c ++++ b/src/polkitgnomeauthenticationdialog.c +@@ -135,6 +135,102 @@ user_combobox_changed (GtkComboBox *widget, + } + } + ++static GdkPixbuf * ++get_user_icon (char *username) ++{ ++ GError *error; ++ GDBusConnection *connection; ++ GVariant *find_user_result; ++ GVariant *get_icon_result; ++ GVariant *icon_result_variant; ++ const gchar *user_path; ++ const gchar *icon_filename; ++ GdkPixbuf *pixbuf; ++ ++ error = NULL; ++ connection = g_bus_get_sync (G_BUS_TYPE_SYSTEM, NULL, &error); ++ ++ if (connection == NULL) ++ { ++ g_warning ("Unable to connect to system bus: %s", error->message); ++ g_error_free (error); ++ return NULL; ++ } ++ ++ find_user_result = g_dbus_connection_call_sync (connection, ++ "org.freedesktop.Accounts", ++ "/org/freedesktop/Accounts", ++ "org.freedesktop.Accounts", ++ "FindUserByName", ++ g_variant_new ("(s)", ++ username), ++ G_VARIANT_TYPE ("(o)"), ++ G_DBUS_CALL_FLAGS_NONE, ++ -1, ++ NULL, ++ &error); ++ ++ if (find_user_result == NULL) ++ { ++ g_warning ("Accounts couldn't find user: %s", error->message); ++ g_error_free (error); ++ return NULL; ++ } ++ ++ user_path = g_variant_get_string (g_variant_get_child_value (find_user_result, 0), ++ NULL); ++ ++ get_icon_result = g_dbus_connection_call_sync (connection, ++ "org.freedesktop.Accounts", ++ user_path, ++ "org.freedesktop.DBus.Properties", ++ "Get", ++ g_variant_new ("(ss)", ++ "org.freedesktop.Accounts.User", ++ "IconFile"), ++ G_VARIANT_TYPE ("(v)"), ++ G_DBUS_CALL_FLAGS_NONE, ++ -1, ++ NULL, ++ &error); ++ ++ g_variant_unref (find_user_result); ++ ++ if (get_icon_result == NULL) ++ { ++ g_warning ("Accounts couldn't find user icon: %s", error->message); ++ g_error_free (error); ++ return NULL; ++ } ++ ++ g_variant_get_child (get_icon_result, 0, "v", &icon_result_variant); ++ icon_filename = g_variant_get_string (icon_result_variant, NULL); ++ ++ if (icon_filename == NULL) ++ { ++ g_warning ("Accounts didn't return a valid filename for user icon"); ++ pixbuf = NULL; ++ } ++ else ++ { ++ /* TODO: we probably shouldn't hard-code the size to 16x16 */ ++ pixbuf = gdk_pixbuf_new_from_file_at_size (icon_filename, ++ 16, ++ 16, ++ &error); ++ if (pixbuf == NULL) ++ { ++ g_warning ("Couldn't open user icon: %s", error->message); ++ g_error_free (error); ++ } ++ } ++ ++ g_variant_unref (icon_result_variant); ++ g_variant_unref (get_icon_result); ++ ++ return pixbuf; ++} ++ + static void + create_user_combobox (PolkitGnomeAuthenticationDialog *dialog) + { +@@ -197,16 +293,7 @@ create_user_combobox (PolkitGnomeAuthenticationDialog *dialog) + g_free (gecos); + + /* Load users face */ +- pixbuf = NULL; +- if (passwd->pw_dir != NULL) +- { +- gchar *path; +- path = g_strdup_printf ("%s/.face", passwd->pw_dir); +- /* TODO: we probably shouldn't hard-code the size to 16x16 */ +- pixbuf = gdk_pixbuf_new_from_file_at_scale (path, 16, 16, TRUE, NULL); +- g_free (path); +- } +- ++ pixbuf = get_user_icon (dialog->priv->users[n]); + /* fall back to avatar-default icon */ + if (pixbuf == NULL) + { diff --git a/meta-gnome/recipes-extended/polkit-gnome/polkit-gnome/0004-Use-fresh-X11-timestamps-when-displaying-authenticat.patch b/meta-gnome/recipes-extended/polkit-gnome/polkit-gnome/0004-Use-fresh-X11-timestamps-when-displaying-authenticat.patch new file mode 100644 index 000000000..83ad38d83 --- /dev/null +++ b/meta-gnome/recipes-extended/polkit-gnome/polkit-gnome/0004-Use-fresh-X11-timestamps-when-displaying-authenticat.patch @@ -0,0 +1,45 @@ +From: Jeffrey Knockel +Date: Mon, 30 Apr 2018 18:05:20 +0000 +Subject: Use fresh X11 timestamps when displaying authentication dialog + +This circumvents focus-stealing prevention. + +Bug: https://bugzilla.gnome.org/show_bug.cgi?id=676076 +Bug-Debian: https://bugs.debian.org/684300 +Bug-Ubuntu: https://launchpad.net/bugs/946171 +--- + src/polkitgnomeauthenticator.c | 4 +++- + 1 file changed, 3 insertions(+), 1 deletion(-) + +diff --git a/src/polkitgnomeauthenticator.c b/src/polkitgnomeauthenticator.c +index 23163b4..e57d76e 100644 +--- a/src/polkitgnomeauthenticator.c ++++ b/src/polkitgnomeauthenticator.c +@@ -26,6 +26,7 @@ + #include + #include + #include ++#include + + #include + #include +@@ -306,7 +307,17 @@ session_request (PolkitAgentSession *session, + } + + gtk_widget_show_all (GTK_WIDGET (authenticator->dialog)); +- gtk_window_present (GTK_WINDOW (authenticator->dialog)); ++ GdkWindow *window = gtk_widget_get_window (GTK_WIDGET (authenticator->dialog)); ++ ++ if (GDK_IS_X11_WINDOW (window)) ++ { ++ gtk_window_present_with_time (GTK_WINDOW (authenticator->dialog), gdk_x11_get_server_time (window)); ++ } ++ else ++ { ++ gtk_window_present (GTK_WINDOW (authenticator->dialog)); ++ } ++ + password = polkit_gnome_authentication_dialog_run_until_response_for_prompt (POLKIT_GNOME_AUTHENTICATION_DIALOG (authenticator->dialog), + modified_request, + echo_on, + diff --git a/meta-gnome/recipes-extended/polkit-gnome/polkit-gnome/0005-configure.ac-disable-gnome-tools-that-are-not-provid.patch b/meta-gnome/recipes-extended/polkit-gnome/polkit-gnome/0005-configure.ac-disable-gnome-tools-that-are-not-provid.patch new file mode 100644 index 000000000..153cca25e --- /dev/null +++ b/meta-gnome/recipes-extended/polkit-gnome/polkit-gnome/0005-configure.ac-disable-gnome-tools-that-are-not-provid.patch @@ -0,0 +1,28 @@ +From 334abb04ff953dabec63a91094de43e3cf064d7d Mon Sep 17 00:00:00 2001 +From: Markus Volk +Date: Fri, 24 Feb 2023 17:29:24 +0100 +Subject: [PATCH] configure.ac: disable gnome-tools that are not provided + +Signed-off-by: Markus Volk +--- + configure.ac | 4 ++-- + 1 file changed, 2 insertions(+), 2 deletions(-) + +diff --git a/configure.ac b/configure.ac +index 24eb724..02fccbd 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -33,8 +33,8 @@ LT_INIT + # GNOME + # ***** + +-GNOME_DEBUG_CHECK +-GNOME_COMPILE_WARNINGS([maximum]) ++#GNOME_DEBUG_CHECK ++#GNOME_COMPILE_WARNINGS([maximum]) + + #### gcc warning flags + +-- +2.34.1 + diff --git a/meta-gnome/recipes-extended/polkit-gnome/polkit-gnome/polkit-gnome-authentication-agent-1.desktop b/meta-gnome/recipes-extended/polkit-gnome/polkit-gnome/polkit-gnome-authentication-agent-1.desktop new file mode 100644 index 000000000..c45acfa54 --- /dev/null +++ b/meta-gnome/recipes-extended/polkit-gnome/polkit-gnome/polkit-gnome-authentication-agent-1.desktop @@ -0,0 +1,87 @@ +[Desktop Entry] +Name=PolicyKit Authentication Agent +Name[ar]=مدير الاستيثاق PolicyKit +Name[be]=PolicyKit - аґент аўтэнтыфікацыі +Name[bn_IN]=PolicyKit অনুমোদনের এজেন্ট +Name[ca]=Agent d'autenticació del PolicyKit +Name[cs]=Ověřovací agent PolicyKit +Name[da]=Godkendelsesprogrammet PolicyKit +Name[de]=Legitimationsdienst von PolicyKit +Name[el]=Πράκτορας πιστοποίησης PolicyKit +Name[en_GB]=PolicyKit Authentication Agent +Name[es]=Agente de autenticación de PolicyKit +Name[eu]=PolicyKit autentifikatzeko agentea +Name[fi]=PolicytKit-tunnistautumisohjelma +Name[fr]=Agent d'authentification de PolicyKit +Name[gl]=Axente de autenticación PolicyKit +Name[gu]=PolicyKit સત્તાધિકરણ એજન્ટ +Name[hi]=PolicyKit प्रमाणीकरण प्रतिनिधि +Name[hu]=PolicyKit hitelesítési ügynök +Name[it]=Agente di autenticazione per PolicyKit +Name[ja]=PolicyKit 認証エージェント +Name[kn]=PolicyKit ದೃಢೀಕರಣ ಮಧ್ಯವರ್ತಿ +Name[lt]=PolicyKit tapatybės nustatymo agentas +Name[ml]=പോളിസിക്കിറ്റ് ഓഥന്റിക്കേഷന്‍ ഏജന്റ് +Name[mr]=PolicyKit ऑथेंटीकेशन एजेंट +Name[or]=PolicyKit ବୈଧିକରଣ ସଦସ୍ୟ +Name[pa]=ਪਾਲਸੀਕਿੱਟ ਪਰਮਾਣਕਿਤਾ ਏਜੰਟ +Name[pl]=Agent uwierzytelniania PolicyKit +Name[pt]=Agente de Autenticação PolicyKit +Name[pt_BR]=Agente de autenticação PolicyKit +Name[ro]=Agent de autentificare PolicyKit +Name[sk]=Agent PolicyKit na overovanie totožnosti +Name[sl]=PolicyKit program overjanja +Name[sv]=Autentiseringsagent för PolicyKit +Name[ta]=PolicyKit அங்கீகார முகவர் +Name[te]=పాలసీకిట్ ధృవీకరణ ప్రతినిధి +Name[th]=ตัวกลางสำหรับยืนยันตัวบุคคล PolicyKit +Name[uk]=Агент автентифікації PolicyKit +Name[zh_CN]=PolicyKit 认证代理 +Name[zh_HK]=PolicyKit 驗證代理程式 +Name[zh_TW]=PolicyKit 驗證代理程式 +Comment=PolicyKit Authentication Agent +Comment[ar]=مدير الاستيثاق PolicyKit +Comment[be]=PolicyKit - аґент аўтэнтыфікацыі +Comment[bn_IN]=PolicyKit অনুমোদনের এজেন্ট +Comment[ca]=Agent d'autenticació del PolicyKit +Comment[cs]=Ověřovací agent PolicyKit +Comment[da]=Godkendelsesprogrammet PolicyKit +Comment[de]=Legitimationsdienst von PolicyKit +Comment[el]=Πράκτορας πιστοποίησης PolicyKit +Comment[en_GB]=PolicyKit Authentication Agent +Comment[es]=Agente de autenticación de PolicyKit +Comment[eu]=PolicyKit autentifikatzeko agentea +Comment[fi]=PolicytKit-tunnistautumisohjelma +Comment[fr]=Agent d'authentification de PolicyKit +Comment[gl]=Axente de autenticación PolicyKit +Comment[gu]=PolicyKit સત્તાધિકરણ એજન્ટ +Comment[hi]=PolicyKit प्रमाणीकरण प्रतिनिधि +Comment[hu]=PolicyKit hitelesítési ügynök +Comment[it]=Agente di autenticazione per PolicyKit +Comment[ja]=PolicyKit 認証エージェント +Comment[kn]=PolicyKit ದೃಢೀಕರಣ ಮಧ್ಯವರ್ತಿ +Comment[lt]=PolicyKit tapatybės nustatymo agentas +Comment[ml]=പോളിസിക്കിറ്റ് ഓഥന്റിക്കേഷന്‍ ഏജന്റ് +Comment[mr]=PolicyKit ऑथेंटीकेशन एजेंट +Comment[or]=PolicyKit ବୈଧିକରଣ ସଦସ୍ୟ +Comment[pa]=ਪਾਲਸੀਕਿੱਟ ਪਰਮਾਣਕਿਤਾ ਏਜੰਟ +Comment[pl]=Agent uwierzytelniania PolicyKit +Comment[pt]=Agente de Autenticação PolicyKit +Comment[pt_BR]=Agente de autenticação PolicyKit +Comment[ro]=Agent de autentificare PolicyKit +Comment[sk]=Agent PolicyKit na overovanie totožnosti +Comment[sl]=PolicyKit program overjanja +Comment[sv]=Autentiseringsagent för PolicyKit +Comment[ta]=PolicyKit அங்கீகார முகவர் +Comment[te]=పాలసీకిట్ ధృవీకరణ ప్రతినిధి +Comment[th]=ตัวกลางสำหรับยืนยันตัวบุคคล PolicyKit +Comment[uk]=Агент автентифікації PolicyKit +Comment[zh_CN]=PolicyKit 认证代理 +Comment[zh_HK]=PolicyKit 驗證代理程式 +Comment[zh_TW]=PolicyKit 驗證代理程式 +Exec=/usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1 +Terminal=false +Type=Application +Categories= +NoDisplay=true +OnlyShowIn=GNOME; diff --git a/meta-gnome/recipes-extended/polkit-gnome/polkit-gnome_0.105.bb b/meta-gnome/recipes-extended/polkit-gnome/polkit-gnome_0.105.bb new file mode 100644 index 000000000..e0e4a59d2 --- /dev/null +++ b/meta-gnome/recipes-extended/polkit-gnome/polkit-gnome_0.105.bb @@ -0,0 +1,29 @@ +SUMMARY = "PolicyKit-gnome provides an Authentication Agent for PolicyKit" +HOMEPAGE = "https://gitlab.gnome.org/Archive/policykit-gnome" +LICENSE = "GPL-2.0-only" +LIC_FILES_CHKSUM = "file://COPYING;md5=74579fab173e4c5e12aac0cd83ee98ec" + +DEPENDS = "glib-2.0-native glib-2.0 gtk+3 polkit intltool-native" + +inherit autotools pkgconfig features_check + +REQUIRED_DISTRO_FEATURES = "polkit" + +SRC_URI = " \ + git://gitlab.gnome.org/Archive/policykit-gnome.git;protocol=https;branch=master \ + file://0001-Select-the-current-user-to-authenticate-with-by-defa.patch \ + file://0002-Auth-dialog-Make-the-label-wrap-at-70-chars.patch \ + file://0003-Get-user-icon-from-accountsservice-instead-of-lookin.patch \ + file://0004-Use-fresh-X11-timestamps-when-displaying-authenticat.patch \ + file://0005-configure.ac-disable-gnome-tools-that-are-not-provid.patch \ + file://polkit-gnome-authentication-agent-1.desktop \ +" +SRCREV = "a0763a246a81188f60b0f9810143e49224dc752f" +S = "${WORKDIR}/git" + + +do_install:append() { + install -d ${D}${datadir}/applications + install -m644 ${WORKDIR}/polkit-gnome-authentication-agent-1.desktop \ + ${D}${datadir}/applications +} From patchwork Sat Mar 25 08:02:26 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markus Volk X-Patchwork-Id: 21744 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 11CE5C6FD1C for ; Sat, 25 Mar 2023 08:03:20 +0000 (UTC) Received: from mailout06.t-online.de (mailout06.t-online.de [194.25.134.19]) by mx.groups.io with SMTP id smtpd.web11.17396.1679731391373333741 for ; Sat, 25 Mar 2023 01:03:11 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=SPF record not found (domain: t-online.de, ip: 194.25.134.19, mailfrom: f_l_k@t-online.de) Received: from fwd74.dcpf.telekom.de (fwd74.aul.t-online.de [10.223.144.100]) by mailout06.t-online.de (Postfix) with SMTP id B585212DB6 for ; Sat, 25 Mar 2023 09:03:09 +0100 (CET) Received: from flk-MS-7C91.fritz.box ([84.154.174.49]) by fwd74.t-online.de with (TLSv1.3:TLS_AES_256_GCM_SHA384 encrypted) esmtp id 1pfyrl-0RoPhK0; Sat, 25 Mar 2023 09:03:09 +0100 From: Markus Volk To: openembedded-devel@lists.openembedded.org Cc: Markus Volk Subject: [meta-gnome][PATCH 02/32] eog: update 43.2 -> 44.0 Date: Sat, 25 Mar 2023 09:02:26 +0100 Message-Id: <20230325080256.923752-2-f_l_k@t-online.de> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230325080256.923752-1-f_l_k@t-online.de> References: <20230325080256.923752-1-f_l_k@t-online.de> MIME-Version: 1.0 X-TOI-EXPURGATEID: 150726::1679731389-8556AC08-9DCE6DB7/0/0 CLEAN NORMAL X-TOI-MSGID: 0961c64d-a7f6-4ce6-95a2-db956a2bb82c 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, 25 Mar 2023 08:03:20 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/101713 Signed-off-by: Markus Volk --- meta-gnome/recipes-gnome/eog/{eog_43.2.bb => eog_44.0.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-gnome/recipes-gnome/eog/{eog_43.2.bb => eog_44.0.bb} (86%) diff --git a/meta-gnome/recipes-gnome/eog/eog_43.2.bb b/meta-gnome/recipes-gnome/eog/eog_44.0.bb similarity index 86% rename from meta-gnome/recipes-gnome/eog/eog_43.2.bb rename to meta-gnome/recipes-gnome/eog/eog_44.0.bb index 7dbc0ecf2..c95d0e653 100644 --- a/meta-gnome/recipes-gnome/eog/eog_43.2.bb +++ b/meta-gnome/recipes-gnome/eog/eog_44.0.bb @@ -21,7 +21,7 @@ inherit gnomebase pkgconfig gsettings gobject-introspection gettext mime-xdg fea REQUIRED_DISTRO_FEATURES = "opengl" -SRC_URI[archive.sha256sum] = "9dcfdce5585a90e2bb1cf57e377cb1eb12d41bd9bcb9bbacdf506bc1b1354ef9" +SRC_URI[archive.sha256sum] = "41d85fab05c430898dbfd847e48e1f5b4935dc3cbcee546e759a907eda671054" GTKDOC_MESON_OPTION = "gtk_doc" From patchwork Sat Mar 25 08:02:27 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markus Volk X-Patchwork-Id: 21763 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 C6E09C77B7E for ; Sat, 25 Mar 2023 08:03:20 +0000 (UTC) Received: from mailout04.t-online.de (mailout04.t-online.de [194.25.134.18]) by mx.groups.io with SMTP id smtpd.web10.17454.1679731392506598193 for ; Sat, 25 Mar 2023 01:03:12 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=SPF record not found (domain: t-online.de, ip: 194.25.134.18, mailfrom: f_l_k@t-online.de) Received: from fwd74.dcpf.telekom.de (fwd74.aul.t-online.de [10.223.144.100]) by mailout04.t-online.de (Postfix) with SMTP id BD0EE18972 for ; Sat, 25 Mar 2023 09:03:09 +0100 (CET) Received: from flk-MS-7C91.fritz.box ([84.154.174.49]) by fwd74.t-online.de with (TLSv1.3:TLS_AES_256_GCM_SHA384 encrypted) esmtp id 1pfyrl-0RoPhL0; Sat, 25 Mar 2023 09:03:09 +0100 From: Markus Volk To: openembedded-devel@lists.openembedded.org Cc: Markus Volk Subject: [meta-gnome][PATCH 03/32] evince: update 43.1 -> 44.0 Date: Sat, 25 Mar 2023 09:02:27 +0100 Message-Id: <20230325080256.923752-3-f_l_k@t-online.de> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230325080256.923752-1-f_l_k@t-online.de> References: <20230325080256.923752-1-f_l_k@t-online.de> MIME-Version: 1.0 X-TOI-EXPURGATEID: 150726::1679731389-8556AC08-88C6130D/0/0 CLEAN NORMAL X-TOI-MSGID: 7cd8ad7b-ba06-4311-8e4a-ed0305958565 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, 25 Mar 2023 08:03:20 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/101716 Signed-off-by: Markus Volk --- .../recipes-gnome/evince/{evince_43.1.bb => evince_44.0.bb} | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) rename meta-gnome/recipes-gnome/evince/{evince_43.1.bb => evince_44.0.bb} (91%) diff --git a/meta-gnome/recipes-gnome/evince/evince_43.1.bb b/meta-gnome/recipes-gnome/evince/evince_44.0.bb similarity index 91% rename from meta-gnome/recipes-gnome/evince/evince_43.1.bb rename to meta-gnome/recipes-gnome/evince/evince_44.0.bb index b83c41192..1c7103c90 100644 --- a/meta-gnome/recipes-gnome/evince/evince_43.1.bb +++ b/meta-gnome/recipes-gnome/evince/evince_44.0.bb @@ -6,6 +6,7 @@ DEPENDS = " \ adwaita-icon-theme \ appstream-glib \ cairo \ + desktop-file-utils-native \ dbus \ gdk-pixbuf \ glib-2.0 \ @@ -33,7 +34,7 @@ REQUIRED_DISTRO_FEATURES = "${@bb.utils.contains('DISTRO_FEATURES', 'x11', 'open def gnome_verdir(v): return oe.utils.trim_version(v, 1) -SRC_URI[archive.sha256sum] = "6d75ca62b73bfbb600f718a098103dc6b813f9050b9594be929e29b4589d2335" +SRC_URI[archive.sha256sum] = "339ee9e005dd7823a13fe21c71c2ec6d2c4cb74548026e4741eee7b2703e09da" GTKDOC_MESON_OPTION = "gtk_doc" From patchwork Sat Mar 25 08:02:28 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markus Volk X-Patchwork-Id: 21761 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 AA79EC77B79 for ; Sat, 25 Mar 2023 08:03:20 +0000 (UTC) Received: from mailout04.t-online.de (mailout04.t-online.de [194.25.134.18]) by mx.groups.io with SMTP id smtpd.web10.17453.1679731392506410050 for ; Sat, 25 Mar 2023 01:03:12 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=SPF record not found (domain: t-online.de, ip: 194.25.134.18, mailfrom: f_l_k@t-online.de) Received: from fwd74.dcpf.telekom.de (fwd74.aul.t-online.de [10.223.144.100]) by mailout04.t-online.de (Postfix) with SMTP id EE18118978 for ; Sat, 25 Mar 2023 09:03:09 +0100 (CET) Received: from flk-MS-7C91.fritz.box ([84.154.174.49]) by fwd74.t-online.de with (TLSv1.3:TLS_AES_256_GCM_SHA384 encrypted) esmtp id 1pfyrl-0RoPhM0; Sat, 25 Mar 2023 09:03:09 +0100 From: Markus Volk To: openembedded-devel@lists.openembedded.org Cc: Markus Volk Subject: [meta-gnome][PATCH 04/32] evolution-data-server: update 3.46.3 -> 3.48.0 Date: Sat, 25 Mar 2023 09:02:28 +0100 Message-Id: <20230325080256.923752-4-f_l_k@t-online.de> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230325080256.923752-1-f_l_k@t-online.de> References: <20230325080256.923752-1-f_l_k@t-online.de> MIME-Version: 1.0 X-TOI-EXPURGATEID: 150726::1679731389-8556AC08-B50F97A8/0/0 CLEAN NORMAL X-TOI-MSGID: 2c0f9f69-a2c4-4883-8015-13744eebbb75 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, 25 Mar 2023 08:03:20 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/101717 Signed-off-by: Markus Volk --- .../evolution-data-server/evolution-data-server.bb | 3 +-- .../evolution-data-server/evolution-data-server.inc | 4 ++-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/meta-gnome/recipes-gnome/evolution-data-server/evolution-data-server.bb b/meta-gnome/recipes-gnome/evolution-data-server/evolution-data-server.bb index a27115267..d6f6d7c23 100644 --- a/meta-gnome/recipes-gnome/evolution-data-server/evolution-data-server.bb +++ b/meta-gnome/recipes-gnome/evolution-data-server/evolution-data-server.bb @@ -37,8 +37,7 @@ EXTRA_OECMAKE:append:class-target = " -DG_IR_SCANNER=${STAGING_BINDIR}/g-ir-scan PACKAGECONFIG ?= "oauth" PACKAGECONFIG[canberra] = "-DENABLE_CANBERRA=ON,-DENABLE_CANBERRA=OFF,libcanberra" -# ENABLE_OAUTH2_WEBKITGTK4 would require webkit to be built with gtk4 -PACKAGECONFIG[oauth] = "-DENABLE_OAUTH2_WEBKITGTK=ON -DENABLE_OAUTH2_WEBKITGTK4=OFF,-DENABLE_OAUTH2_WEBKITGTK=OFF,webkitgtk json-glib" +PACKAGECONFIG[oauth] = "-DENABLE_OAUTH2_WEBKITGTK4=ON,-DENABLE_OAUTH2_WEBKITGTK4=OFF,webkitgtk json-glib" PACKAGECONFIG[goa] = "-DENABLE_GOA=ON,-DENABLE_GOA=OFF,gnome-online-accounts" PACKAGECONFIG[kerberos] = "-DWITH_KRB5=ON,-DWITH_KRB5=OFF,krb5" # BROKEN: due missing pkg-config in openldap eds' cmake finds host-libs when diff --git a/meta-gnome/recipes-gnome/evolution-data-server/evolution-data-server.inc b/meta-gnome/recipes-gnome/evolution-data-server/evolution-data-server.inc index 2b74b2e60..9db5e9011 100644 --- a/meta-gnome/recipes-gnome/evolution-data-server/evolution-data-server.inc +++ b/meta-gnome/recipes-gnome/evolution-data-server/evolution-data-server.inc @@ -9,5 +9,5 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=6a6e689d19255cf0557f3fe7d7068212 \ inherit gnomebase upstream-version-is-even -SRC_URI[archive.sha256sum] = "0938e2279e5cfbc2204766ca9d3fea570911699b07c10cbe01aca62a7e8b2bee" -PV = "3.46.3" +SRC_URI[archive.sha256sum] = "0f25f73331edf53909be40f412b2a86939270327517616303f322de157083c35" +PV = "3.48.0" From patchwork Sat Mar 25 08:02:29 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markus Volk X-Patchwork-Id: 21760 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 C4EDCC77B7C for ; Sat, 25 Mar 2023 08:03:20 +0000 (UTC) Received: from mailout04.t-online.de (mailout04.t-online.de [194.25.134.18]) by mx.groups.io with SMTP id smtpd.web10.17452.1679731392214700433 for ; Sat, 25 Mar 2023 01:03:12 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=SPF record not found (domain: t-online.de, ip: 194.25.134.18, mailfrom: f_l_k@t-online.de) Received: from fwd74.dcpf.telekom.de (fwd74.aul.t-online.de [10.223.144.100]) by mailout04.t-online.de (Postfix) with SMTP id F12C918979 for ; Sat, 25 Mar 2023 09:03:09 +0100 (CET) Received: from flk-MS-7C91.fritz.box ([84.154.174.49]) by fwd74.t-online.de with (TLSv1.3:TLS_AES_256_GCM_SHA384 encrypted) esmtp id 1pfyrl-0RoPhN0; Sat, 25 Mar 2023 09:03:09 +0100 From: Markus Volk To: openembedded-devel@lists.openembedded.org Cc: Markus Volk Subject: [meta-gnome][PATCH 05/32] gdm: update 43.0 -> 44.0 Date: Sat, 25 Mar 2023 09:02:29 +0100 Message-Id: <20230325080256.923752-5-f_l_k@t-online.de> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230325080256.923752-1-f_l_k@t-online.de> References: <20230325080256.923752-1-f_l_k@t-online.de> MIME-Version: 1.0 X-TOI-EXPURGATEID: 150726::1679731389-8556AC08-D5455129/0/0 CLEAN NORMAL X-TOI-MSGID: 2899f40d-fdeb-4c1b-8c81-a40af95dfdf2 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, 25 Mar 2023 08:03:20 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/101715 Signed-off-by: Markus Volk --- meta-gnome/recipes-gnome/gdm/{gdm_43.0.bb => gdm_44.0.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-gnome/recipes-gnome/gdm/{gdm_43.0.bb => gdm_44.0.bb} (94%) diff --git a/meta-gnome/recipes-gnome/gdm/gdm_43.0.bb b/meta-gnome/recipes-gnome/gdm/gdm_44.0.bb similarity index 94% rename from meta-gnome/recipes-gnome/gdm/gdm_43.0.bb rename to meta-gnome/recipes-gnome/gdm/gdm_44.0.bb index 1b09c20d4..09e8acc72 100644 --- a/meta-gnome/recipes-gnome/gdm/gdm_43.0.bb +++ b/meta-gnome/recipes-gnome/gdm/gdm_44.0.bb @@ -21,7 +21,7 @@ GNOMEBASEBUILDCLASS = "meson" inherit gnomebase gsettings pkgconfig gobject-introspection gettext systemd useradd itstool gnome-help features_check -SRC_URI[archive.sha256sum] = "94d70d6ed7df59fa7fde4fd02fed1168593a8adce10fcee113c148d52b392294" +SRC_URI[archive.sha256sum] = "ce20b0a221dbf8cde0064b501fd8f38f73839152857c4535337eb09cc52f7f6c" EXTRA_OEMESON = " \ -Dplymouth=disabled \ From patchwork Sat Mar 25 08:02:30 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markus Volk X-Patchwork-Id: 21759 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 AA8E1C77B7B for ; Sat, 25 Mar 2023 08:03:20 +0000 (UTC) Received: from mailout06.t-online.de (mailout06.t-online.de [194.25.134.19]) by mx.groups.io with SMTP id smtpd.web10.17456.1679731393857343085 for ; Sat, 25 Mar 2023 01:03:14 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=SPF record not found (domain: t-online.de, ip: 194.25.134.19, mailfrom: f_l_k@t-online.de) Received: from fwd74.dcpf.telekom.de (fwd74.aul.t-online.de [10.223.144.100]) by mailout06.t-online.de (Postfix) with SMTP id 3B91E12DC2 for ; Sat, 25 Mar 2023 09:03:12 +0100 (CET) Received: from flk-MS-7C91.fritz.box ([84.154.174.49]) by fwd74.t-online.de with (TLSv1.3:TLS_AES_256_GCM_SHA384 encrypted) esmtp id 1pfyrl-0RoPhO0; Sat, 25 Mar 2023 09:03:09 +0100 From: Markus Volk To: openembedded-devel@lists.openembedded.org Cc: Markus Volk Subject: [meta-gnome][PATCH 06/32] gedit: update 43.2 -> 44.2 Date: Sat, 25 Mar 2023 09:02:30 +0100 Message-Id: <20230325080256.923752-6-f_l_k@t-online.de> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230325080256.923752-1-f_l_k@t-online.de> References: <20230325080256.923752-1-f_l_k@t-online.de> MIME-Version: 1.0 X-TOI-EXPURGATEID: 150726::1679731390-8556AC08-36AEF7EE/0/0 CLEAN NORMAL X-TOI-MSGID: 0ec9d53a-aab2-4152-8f3b-bbf9c3037dcf 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, 25 Mar 2023 08:03:20 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/101719 --- meta-gnome/recipes-gnome/gedit/{gedit_43.2.bb => gedit_44.2.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-gnome/recipes-gnome/gedit/{gedit_43.2.bb => gedit_44.2.bb} (91%) diff --git a/meta-gnome/recipes-gnome/gedit/gedit_43.2.bb b/meta-gnome/recipes-gnome/gedit/gedit_44.2.bb similarity index 91% rename from meta-gnome/recipes-gnome/gedit/gedit_43.2.bb rename to meta-gnome/recipes-gnome/gedit/gedit_44.2.bb index 1c1803d5e..34c782297 100644 --- a/meta-gnome/recipes-gnome/gedit/gedit_43.2.bb +++ b/meta-gnome/recipes-gnome/gedit/gedit_44.2.bb @@ -21,7 +21,7 @@ inherit gnomebase gsettings itstool gnome-help gobject-introspection gtk-doc val def gnome_verdir(v): return oe.utils.trim_version(v, 1) -SRC_URI[archive.sha256sum] = "f950d2d35c594bb6c8dbc9f5440cad7788ca0a8688e2b07846f83de9a4e3fc25" +SRC_URI[archive.sha256sum] = "3bbb1b3775d4c277daf54aaab44b0eb83a4eb1f09f0391800041c9e56893ec11" # gobject-introspection is mandatory and cannot be configured REQUIRED_DISTRO_FEATURES = "gobject-introspection-data" From patchwork Sat Mar 25 08:02:31 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markus Volk X-Patchwork-Id: 21754 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 946DAC77B74 for ; Sat, 25 Mar 2023 08:03:20 +0000 (UTC) Received: from mailout06.t-online.de (mailout06.t-online.de [194.25.134.19]) by mx.groups.io with SMTP id smtpd.web11.17401.1679731393924622755 for ; Sat, 25 Mar 2023 01:03:14 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=SPF record not found (domain: t-online.de, ip: 194.25.134.19, mailfrom: f_l_k@t-online.de) Received: from fwd74.dcpf.telekom.de (fwd74.aul.t-online.de [10.223.144.100]) by mailout06.t-online.de (Postfix) with SMTP id 113B612DC1 for ; Sat, 25 Mar 2023 09:03:12 +0100 (CET) Received: from flk-MS-7C91.fritz.box ([84.154.174.49]) by fwd74.t-online.de with (TLSv1.3:TLS_AES_256_GCM_SHA384 encrypted) esmtp id 1pfyrm-0RoPhP0; Sat, 25 Mar 2023 09:03:10 +0100 From: Markus Volk To: openembedded-devel@lists.openembedded.org Cc: Markus Volk Subject: [meta-gnome][PATCH 07/32] gnome-calculator: update 43.0.1 -> 44.0 Date: Sat, 25 Mar 2023 09:02:31 +0100 Message-Id: <20230325080256.923752-7-f_l_k@t-online.de> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230325080256.923752-1-f_l_k@t-online.de> References: <20230325080256.923752-1-f_l_k@t-online.de> MIME-Version: 1.0 X-TOI-EXPURGATEID: 150726::1679731390-8556AC08-2739C546/0/0 CLEAN NORMAL X-TOI-MSGID: 60a90370-5572-42c4-b758-967d7c535399 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, 25 Mar 2023 08:03:20 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/101721 Signed-off-by: Markus Volk --- .../{gnome-calculator_43.0.1.bb => gnome-calculator_44.0.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-gnome/recipes-gnome/gnome-calculator/{gnome-calculator_43.0.1.bb => gnome-calculator_44.0.bb} (88%) diff --git a/meta-gnome/recipes-gnome/gnome-calculator/gnome-calculator_43.0.1.bb b/meta-gnome/recipes-gnome/gnome-calculator/gnome-calculator_44.0.bb similarity index 88% rename from meta-gnome/recipes-gnome/gnome-calculator/gnome-calculator_43.0.1.bb rename to meta-gnome/recipes-gnome/gnome-calculator/gnome-calculator_44.0.bb index 3459b6d5f..53dafba18 100644 --- a/meta-gnome/recipes-gnome/gnome-calculator/gnome-calculator_43.0.1.bb +++ b/meta-gnome/recipes-gnome/gnome-calculator/gnome-calculator_44.0.bb @@ -29,7 +29,7 @@ def gnome_verdir(v): REQUIRED_DISTRO_FEATURES = "x11 opengl" -SRC_URI[archive.sha256sum] = "02c12ded3cf5053d17537d95ec69587f4b919899d7726eceecdb4b47ffb1c90f" +SRC_URI[archive.sha256sum] = "14e763329f88309a7e152780d57361b543100e323906b34e0655fdc315b71043" FILES:${PN} += " \ ${datadir}/dbus-1 \ From patchwork Sat Mar 25 08:02:32 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markus Volk X-Patchwork-Id: 21752 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 5862AC77B71 for ; Sat, 25 Mar 2023 08:03:20 +0000 (UTC) Received: from mailout04.t-online.de (mailout04.t-online.de [194.25.134.18]) by mx.groups.io with SMTP id smtpd.web11.17400.1679731393528631899 for ; Sat, 25 Mar 2023 01:03:13 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=SPF record not found (domain: t-online.de, ip: 194.25.134.18, mailfrom: f_l_k@t-online.de) Received: from fwd74.dcpf.telekom.de (fwd74.aul.t-online.de [10.223.144.100]) by mailout04.t-online.de (Postfix) with SMTP id 2A4E71B9FF for ; Sat, 25 Mar 2023 09:03:12 +0100 (CET) Received: from flk-MS-7C91.fritz.box ([84.154.174.49]) by fwd74.t-online.de with (TLSv1.3:TLS_AES_256_GCM_SHA384 encrypted) esmtp id 1pfyrm-0RoPhQ0; Sat, 25 Mar 2023 09:03:10 +0100 From: Markus Volk To: openembedded-devel@lists.openembedded.org Cc: Markus Volk Subject: [meta-gnome][PATCH 08/32] gnome-calendar: update 43.1 -> 44.0 Date: Sat, 25 Mar 2023 09:02:32 +0100 Message-Id: <20230325080256.923752-8-f_l_k@t-online.de> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230325080256.923752-1-f_l_k@t-online.de> References: <20230325080256.923752-1-f_l_k@t-online.de> MIME-Version: 1.0 X-TOI-EXPURGATEID: 150726::1679731390-8556AC08-D37FCE93/0/0 CLEAN NORMAL X-TOI-MSGID: 6ad66730-e8b6-4d22-9ede-bb46773be79e 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, 25 Mar 2023 08:03:20 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/101718 Signed-off-by: Markus Volk --- .../{gnome-calendar_43.1.bb => gnome-calendar_44.0.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-gnome/recipes-gnome/gnome-calendar/{gnome-calendar_43.1.bb => gnome-calendar_44.0.bb} (86%) diff --git a/meta-gnome/recipes-gnome/gnome-calendar/gnome-calendar_43.1.bb b/meta-gnome/recipes-gnome/gnome-calendar/gnome-calendar_44.0.bb similarity index 86% rename from meta-gnome/recipes-gnome/gnome-calendar/gnome-calendar_43.1.bb rename to meta-gnome/recipes-gnome/gnome-calendar/gnome-calendar_44.0.bb index 06e06e9bd..dcf5ba7d6 100644 --- a/meta-gnome/recipes-gnome/gnome-calendar/gnome-calendar_43.1.bb +++ b/meta-gnome/recipes-gnome/gnome-calendar/gnome-calendar_44.0.bb @@ -23,7 +23,7 @@ inherit gnomebase gsettings gtk-icon-cache gettext features_check upstream-versi REQUIRED_DISTRO_FEATURES = "x11 opengl" -SRC_URI[archive.sha256sum] = "afa5fc66e2f691553cc7d517db2363cff2d62cd1b5df455e5f4f7133139d21f2" +SRC_URI[archive.sha256sum] = "96acd74cbf45652934515cc3447a3b895e933f86324ca92436f67ddd63c3a802" FILES:${PN} += " \ ${datadir}/gnome-shell \ From patchwork Sat Mar 25 08:02:33 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markus Volk X-Patchwork-Id: 21757 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 B8856C77B7A for ; Sat, 25 Mar 2023 08:03:20 +0000 (UTC) Received: from mailout04.t-online.de (mailout04.t-online.de [194.25.134.18]) by mx.groups.io with SMTP id smtpd.web10.17457.1679731394230868032 for ; Sat, 25 Mar 2023 01:03:14 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=SPF record not found (domain: t-online.de, ip: 194.25.134.18, mailfrom: f_l_k@t-online.de) Received: from fwd74.dcpf.telekom.de (fwd74.aul.t-online.de [10.223.144.100]) by mailout04.t-online.de (Postfix) with SMTP id 4289D1BA05 for ; Sat, 25 Mar 2023 09:03:12 +0100 (CET) Received: from flk-MS-7C91.fritz.box ([84.154.174.49]) by fwd74.t-online.de with (TLSv1.3:TLS_AES_256_GCM_SHA384 encrypted) esmtp id 1pfyrm-0RoPhR0; Sat, 25 Mar 2023 09:03:10 +0100 From: Markus Volk To: openembedded-devel@lists.openembedded.org Cc: Markus Volk Subject: [meta-gnome][PATCH 09/32] gnome-chess: update 43.2 -> 44.0 Date: Sat, 25 Mar 2023 09:02:33 +0100 Message-Id: <20230325080256.923752-9-f_l_k@t-online.de> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230325080256.923752-1-f_l_k@t-online.de> References: <20230325080256.923752-1-f_l_k@t-online.de> MIME-Version: 1.0 X-TOI-EXPURGATEID: 150726::1679731390-8556AC08-A4791BAF/0/0 CLEAN NORMAL X-TOI-MSGID: b37ceb37-08e4-4306-a327-979d019a7b7b 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, 25 Mar 2023 08:03:20 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/101722 Signed-off-by: Markus Volk --- .../{gnome-chess_43.2.bb => gnome-chess_44.0.bb} | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) rename meta-gnome/recipes-gnome/gnome-chess/{gnome-chess_43.2.bb => gnome-chess_44.0.bb} (70%) diff --git a/meta-gnome/recipes-gnome/gnome-chess/gnome-chess_43.2.bb b/meta-gnome/recipes-gnome/gnome-chess/gnome-chess_44.0.bb similarity index 70% rename from meta-gnome/recipes-gnome/gnome-chess/gnome-chess_43.2.bb rename to meta-gnome/recipes-gnome/gnome-chess/gnome-chess_44.0.bb index 343135bfa..d9727ec1c 100644 --- a/meta-gnome/recipes-gnome/gnome-chess/gnome-chess_43.2.bb +++ b/meta-gnome/recipes-gnome/gnome-chess/gnome-chess_44.0.bb @@ -22,13 +22,12 @@ DEPENDS = " \ RRECOMMENDS:${PN} = "gnuchess" -SRC_URI = "git://github.com/GNOME/gnome-chess.git;protocol=https;nobranch=1" +SRC_URI[archive.sha256sum] = "734f092d95fc60409eeaca3427b5a48cb9b599da11995119d85baa99653e0292" -inherit meson pkgconfig gobject-introspection gtk-icon-cache vala features_check mime-xdg gsettings +inherit gnomebase meson pkgconfig gobject-introspection gtk-icon-cache vala features_check mime-xdg gsettings +GNOMEBASEBUILDCLASS = "meson" +GTKIC_VERSION = '4' GIR_MESON_OPTION = "" -S = "${WORKDIR}/git" -SRCREV = "de47d07ec6fc828b2668ca6ee59fe9bdfa9dc1d6" - FILES:${PN} += "${datadir}" From patchwork Sat Mar 25 08:02:34 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markus Volk X-Patchwork-Id: 21753 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 6E7FBC77B73 for ; Sat, 25 Mar 2023 08:03:20 +0000 (UTC) Received: from mailout04.t-online.de (mailout04.t-online.de [194.25.134.18]) by mx.groups.io with SMTP id smtpd.web11.17406.1679731394360209187 for ; Sat, 25 Mar 2023 01:03:14 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=SPF record not found (domain: t-online.de, ip: 194.25.134.18, mailfrom: f_l_k@t-online.de) Received: from fwd74.dcpf.telekom.de (fwd74.aul.t-online.de [10.223.144.100]) by mailout04.t-online.de (Postfix) with SMTP id 431A61BA06 for ; Sat, 25 Mar 2023 09:03:12 +0100 (CET) Received: from flk-MS-7C91.fritz.box ([84.154.174.49]) by fwd74.t-online.de with (TLSv1.3:TLS_AES_256_GCM_SHA384 encrypted) esmtp id 1pfyrm-0RoPhS0; Sat, 25 Mar 2023 09:03:11 +0100 From: Markus Volk To: openembedded-devel@lists.openembedded.org Cc: Markus Volk Subject: [meta-gnome][PATCH 10/32] gnome-control-center: update 43.2 -> 44.0 Date: Sat, 25 Mar 2023 09:02:34 +0100 Message-Id: <20230325080256.923752-10-f_l_k@t-online.de> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230325080256.923752-1-f_l_k@t-online.de> References: <20230325080256.923752-1-f_l_k@t-online.de> MIME-Version: 1.0 X-TOI-EXPURGATEID: 150726::1679731391-85D6DC08-E5EC648E/0/0 CLEAN NORMAL X-TOI-MSGID: b79932a7-d3f4-4e50-9698-5d480843bb49 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, 25 Mar 2023 08:03:20 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/101725 Signed-off-by: Markus Volk --- ...ome-control-center_43.2.bb => gnome-control-center_44.0.bb} | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) rename meta-gnome/recipes-gnome/gnome-control-center/{gnome-control-center_43.2.bb => gnome-control-center_44.0.bb} (92%) diff --git a/meta-gnome/recipes-gnome/gnome-control-center/gnome-control-center_43.2.bb b/meta-gnome/recipes-gnome/gnome-control-center/gnome-control-center_44.0.bb similarity index 92% rename from meta-gnome/recipes-gnome/gnome-control-center/gnome-control-center_43.2.bb rename to meta-gnome/recipes-gnome/gnome-control-center/gnome-control-center_44.0.bb index 830f3ec68..96080ca89 100644 --- a/meta-gnome/recipes-gnome/gnome-control-center/gnome-control-center_43.2.bb +++ b/meta-gnome/recipes-gnome/gnome-control-center/gnome-control-center_44.0.bb @@ -37,9 +37,10 @@ inherit gtk-icon-cache pkgconfig gnomebase gsettings gettext upstream-version-is REQUIRED_DISTRO_FEATURES += "opengl polkit pulseaudio systemd x11" SRC_URI += "file://0001-Add-meson-option-to-pass-sysroot.patch" -SRC_URI[archive.sha256sum] = "d7f256aba80a92c727b329fd01c8602da4b78f0fddaec93fcd91096964700563" +SRC_URI[archive.sha256sum] = "bdbfab4cf23d05734096db1f9f6fac7eed3fcb9da32bf4b1f26ed3a04e5abc66" PACKAGECONFIG ??= "ibus ${@bb.utils.filter('DISTRO_FEATURES', 'wayland', d)}" +PACKAGECONFIG[cups] = ",,cups,cups" PACKAGECONFIG[ibus] = "-Dibus=true, -Dibus=false, ibus" PACKAGECONFIG[wayland] = "-Dwayland=true, -Dwayland=false, wayland" From patchwork Sat Mar 25 08:02:35 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markus Volk X-Patchwork-Id: 21751 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 7BFE2C77B70 for ; Sat, 25 Mar 2023 08:03:20 +0000 (UTC) Received: from mailout04.t-online.de (mailout04.t-online.de [194.25.134.18]) by mx.groups.io with SMTP id smtpd.web11.17403.1679731394320089381 for ; Sat, 25 Mar 2023 01:03:14 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=SPF record not found (domain: t-online.de, ip: 194.25.134.18, mailfrom: f_l_k@t-online.de) Received: from fwd74.dcpf.telekom.de (fwd74.aul.t-online.de [10.223.144.100]) by mailout04.t-online.de (Postfix) with SMTP id 484971BA08 for ; Sat, 25 Mar 2023 09:03:12 +0100 (CET) Received: from flk-MS-7C91.fritz.box ([84.154.174.49]) by fwd74.t-online.de with (TLSv1.3:TLS_AES_256_GCM_SHA384 encrypted) esmtp id 1pfyrn-0RoPhT0; Sat, 25 Mar 2023 09:03:11 +0100 From: Markus Volk To: openembedded-devel@lists.openembedded.org Cc: Markus Volk Subject: [meta-gnome][PATCH 11/32] gnome-desktop: update 43 -> 44.0 Date: Sat, 25 Mar 2023 09:02:35 +0100 Message-Id: <20230325080256.923752-11-f_l_k@t-online.de> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230325080256.923752-1-f_l_k@t-online.de> References: <20230325080256.923752-1-f_l_k@t-online.de> MIME-Version: 1.0 X-TOI-EXPURGATEID: 150726::1679731391-85D6DC08-8388965E/0/0 CLEAN NORMAL X-TOI-MSGID: 40988e6e-7d6a-4ca0-b10f-95d9d6026fdb 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, 25 Mar 2023 08:03:20 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/101723 Signed-off-by: Markus Volk --- .../{gnome-desktop_43.bb => gnome-desktop_44.0.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-gnome/recipes-gnome/gnome-desktop/{gnome-desktop_43.bb => gnome-desktop_44.0.bb} (93%) diff --git a/meta-gnome/recipes-gnome/gnome-desktop/gnome-desktop_43.bb b/meta-gnome/recipes-gnome/gnome-desktop/gnome-desktop_44.0.bb similarity index 93% rename from meta-gnome/recipes-gnome/gnome-desktop/gnome-desktop_43.bb rename to meta-gnome/recipes-gnome/gnome-desktop/gnome-desktop_44.0.bb index 254551884..eae9d9d06 100644 --- a/meta-gnome/recipes-gnome/gnome-desktop/gnome-desktop_43.bb +++ b/meta-gnome/recipes-gnome/gnome-desktop/gnome-desktop_44.0.bb @@ -18,7 +18,7 @@ GIR_MESON_OPTION = "" SRC_URI += "file://gnome-desktop-thumbnail-don-t-assume-time_t-is-long.patch \ file://0001-meson-Add-riscv32-to-seccomp-unsupported-list.patch" -SRC_URI[archive.sha256sum] = "3d6e153317486157596aa3802f87676414c570738f450a94a041fe8835420a69" +SRC_URI[archive.sha256sum] = "42c773745d84ba14bc1cf1c4c6f4606148803a5cd337941c63964795f3c59d42" DEPENDS += " \ fontconfig \ From patchwork Sat Mar 25 08:02:36 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markus Volk X-Patchwork-Id: 21756 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 7C4D3C77B75 for ; Sat, 25 Mar 2023 08:03:20 +0000 (UTC) Received: from mailout04.t-online.de (mailout04.t-online.de [194.25.134.18]) by mx.groups.io with SMTP id smtpd.web11.17404.1679731394334810396 for ; Sat, 25 Mar 2023 01:03:14 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=SPF record not found (domain: t-online.de, ip: 194.25.134.18, mailfrom: f_l_k@t-online.de) Received: from fwd74.dcpf.telekom.de (fwd74.aul.t-online.de [10.223.144.100]) by mailout04.t-online.de (Postfix) with SMTP id 487FF1BA09 for ; Sat, 25 Mar 2023 09:03:12 +0100 (CET) Received: from flk-MS-7C91.fritz.box ([84.154.174.49]) by fwd74.t-online.de with (TLSv1.3:TLS_AES_256_GCM_SHA384 encrypted) esmtp id 1pfyrn-0RoPhU0; Sat, 25 Mar 2023 09:03:11 +0100 From: Markus Volk To: openembedded-devel@lists.openembedded.org Cc: Markus Volk Subject: [meta-gnome][PATCH 12/32] gnome-disk-utility: update 43.0 -> 44.0 Date: Sat, 25 Mar 2023 09:02:36 +0100 Message-Id: <20230325080256.923752-12-f_l_k@t-online.de> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230325080256.923752-1-f_l_k@t-online.de> References: <20230325080256.923752-1-f_l_k@t-online.de> MIME-Version: 1.0 X-TOI-EXPURGATEID: 150726::1679731391-85D6DC08-28A8C9FA/0/0 CLEAN NORMAL X-TOI-MSGID: 2bcf7ea3-e0aa-4ef6-b050-924bef582781 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, 25 Mar 2023 08:03:20 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/101724 Signed-off-by: Markus Volk --- .../{gnome-disk-utility_43.0.bb => gnome-disk-utility_44.0.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-gnome/recipes-gnome/gnome-disk-utility/{gnome-disk-utility_43.0.bb => gnome-disk-utility_44.0.bb} (91%) diff --git a/meta-gnome/recipes-gnome/gnome-disk-utility/gnome-disk-utility_43.0.bb b/meta-gnome/recipes-gnome/gnome-disk-utility/gnome-disk-utility_44.0.bb similarity index 91% rename from meta-gnome/recipes-gnome/gnome-disk-utility/gnome-disk-utility_43.0.bb rename to meta-gnome/recipes-gnome/gnome-disk-utility/gnome-disk-utility_44.0.bb index 247bf141c..d8674fca2 100644 --- a/meta-gnome/recipes-gnome/gnome-disk-utility/gnome-disk-utility_43.0.bb +++ b/meta-gnome/recipes-gnome/gnome-disk-utility/gnome-disk-utility_44.0.bb @@ -30,7 +30,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] = "7afca9805a6b92db6933dd7efcec4af8386c01bbc1f871e2dae4def7e192a2c5" +SRC_URI[archive.sha256sum] = "02031097896cdb37d8717a5823f93e3723d4dfce7fdc4002c9dfcb16b7e7a3ef" EXTRA_OEMESON = "-Dman=false" From patchwork Sat Mar 25 08:02:37 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markus Volk X-Patchwork-Id: 21755 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 94B07C77B78 for ; Sat, 25 Mar 2023 08:03:20 +0000 (UTC) Received: from mailout06.t-online.de (mailout06.t-online.de [194.25.134.19]) by mx.groups.io with SMTP id smtpd.web11.17402.1679731393926980716 for ; Sat, 25 Mar 2023 01:03:14 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=SPF record not found (domain: t-online.de, ip: 194.25.134.19, mailfrom: f_l_k@t-online.de) Received: from fwd74.dcpf.telekom.de (fwd74.aul.t-online.de [10.223.144.100]) by mailout06.t-online.de (Postfix) with SMTP id 4A52112DC3 for ; Sat, 25 Mar 2023 09:03:12 +0100 (CET) Received: from flk-MS-7C91.fritz.box ([84.154.174.49]) by fwd74.t-online.de with (TLSv1.3:TLS_AES_256_GCM_SHA384 encrypted) esmtp id 1pfyrn-0RoPhV0; Sat, 25 Mar 2023 09:03:11 +0100 From: Markus Volk To: openembedded-devel@lists.openembedded.org Cc: Markus Volk Subject: [meta-gnome][PATCH 13/32] gnome-font-viewer: update 43.0 -> 44.0 Date: Sat, 25 Mar 2023 09:02:37 +0100 Message-Id: <20230325080256.923752-13-f_l_k@t-online.de> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230325080256.923752-1-f_l_k@t-online.de> References: <20230325080256.923752-1-f_l_k@t-online.de> MIME-Version: 1.0 X-TOI-EXPURGATEID: 150726::1679731391-85D6DC08-7AF79736/0/0 CLEAN NORMAL X-TOI-MSGID: 880ba9e6-a736-4dfc-ae61-433bf0efe565 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, 25 Mar 2023 08:03:20 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/101720 Signed-off-by: Markus Volk --- .../{gnome-font-viewer_43.0.bb => gnome-font-viewer_44.0.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-gnome/recipes-gnome/gnome-font-viewer/{gnome-font-viewer_43.0.bb => gnome-font-viewer_44.0.bb} (82%) diff --git a/meta-gnome/recipes-gnome/gnome-font-viewer/gnome-font-viewer_43.0.bb b/meta-gnome/recipes-gnome/gnome-font-viewer/gnome-font-viewer_44.0.bb similarity index 82% rename from meta-gnome/recipes-gnome/gnome-font-viewer/gnome-font-viewer_43.0.bb rename to meta-gnome/recipes-gnome/gnome-font-viewer/gnome-font-viewer_44.0.bb index 130c26924..ff5e1e2c8 100644 --- a/meta-gnome/recipes-gnome/gnome-font-viewer/gnome-font-viewer_43.0.bb +++ b/meta-gnome/recipes-gnome/gnome-font-viewer/gnome-font-viewer_44.0.bb @@ -16,7 +16,7 @@ inherit gnomebase gtk-icon-cache gettext features_check mime-xdg REQUIRED_DISTRO_FEATURES = "x11 opengl" -SRC_URI[archive.sha256sum] = "81c6bffb06d5332346e00eaecaec1bdcfd617c51dfd95bcd058d6c76c76dd2b9" +SRC_URI[archive.sha256sum] = "a1511df30b228cc2ef1175dd9d2b93438ea912e25913404b263cf3d457bb9f97" FILES:${PN} += " \ ${datadir}/dbus-1 \ From patchwork Sat Mar 25 08:02:38 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markus Volk X-Patchwork-Id: 21749 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 5E3A1C77B72 for ; Sat, 25 Mar 2023 08:03:20 +0000 (UTC) Received: from mailout04.t-online.de (mailout04.t-online.de [194.25.134.18]) by mx.groups.io with SMTP id smtpd.web11.17405.1679731394356898605 for ; Sat, 25 Mar 2023 01:03:14 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=SPF record not found (domain: t-online.de, ip: 194.25.134.18, mailfrom: f_l_k@t-online.de) Received: from fwd74.dcpf.telekom.de (fwd74.aul.t-online.de [10.223.144.100]) by mailout04.t-online.de (Postfix) with SMTP id 4A93B1CBEC for ; Sat, 25 Mar 2023 09:03:12 +0100 (CET) Received: from flk-MS-7C91.fritz.box ([84.154.174.49]) by fwd74.t-online.de with (TLSv1.3:TLS_AES_256_GCM_SHA384 encrypted) esmtp id 1pfyrn-0RoPhW0; Sat, 25 Mar 2023 09:03:11 +0100 From: Markus Volk To: openembedded-devel@lists.openembedded.org Cc: Markus Volk Subject: [meta-gnome][PATCH 14/32] gnome-online-accounts: update 3.46.0 -> 3.48.0 Date: Sat, 25 Mar 2023 09:02:38 +0100 Message-Id: <20230325080256.923752-14-f_l_k@t-online.de> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230325080256.923752-1-f_l_k@t-online.de> References: <20230325080256.923752-1-f_l_k@t-online.de> MIME-Version: 1.0 X-TOI-EXPURGATEID: 150726::1679731391-85D6DC08-BD9EC06A/0/0 CLEAN NORMAL X-TOI-MSGID: 1aadca18-424a-44ef-a715-7603666756cc 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, 25 Mar 2023 08:03:20 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/101726 Signed-off-by: Markus Volk --- ...se-the-appropriate-dependency-object.patch | 35 ------------------- ...6.0.bb => gnome-online-accounts_3.48.0.bb} | 12 +++---- 2 files changed, 5 insertions(+), 42 deletions(-) delete mode 100644 meta-gnome/recipes-gnome/gnome-online-accounts/gnome-online-accounts/0001-build-Use-the-appropriate-dependency-object.patch rename meta-gnome/recipes-gnome/gnome-online-accounts/{gnome-online-accounts_3.46.0.bb => gnome-online-accounts_3.48.0.bb} (69%) diff --git a/meta-gnome/recipes-gnome/gnome-online-accounts/gnome-online-accounts/0001-build-Use-the-appropriate-dependency-object.patch b/meta-gnome/recipes-gnome/gnome-online-accounts/gnome-online-accounts/0001-build-Use-the-appropriate-dependency-object.patch deleted file mode 100644 index 838ca1a7d..000000000 --- a/meta-gnome/recipes-gnome/gnome-online-accounts/gnome-online-accounts/0001-build-Use-the-appropriate-dependency-object.patch +++ /dev/null @@ -1,35 +0,0 @@ -From 06240574626eb21af37cf7dde5bf81e892dff467 Mon Sep 17 00:00:00 2001 -From: Emmanuele Bassi -Date: Wed, 5 Oct 2022 22:15:37 +0100 -Subject: [PATCH] build: Use the appropriate dependency object - -Just using `link_with` will not ensure that the GOA web extension shared -module is properly built against libgoa-backend and libgoa; the -generated headers must be transitively available by the time we build -the shared module. - -Fixes: #226 -Upstream-Status: Backport [https://gitlab.gnome.org/GNOME/gnome-online-accounts/-/commit/fe86bfb0271735c8130367c46536b08dad5c20d8] -Signed-off-by: Khem Raj ---- - src/goabackend/meson.build | 3 +-- - 1 file changed, 1 insertion(+), 2 deletions(-) - -diff --git a/src/goabackend/meson.build b/src/goabackend/meson.build -index f5382b3..865b2d2 100644 ---- a/src/goabackend/meson.build -+++ b/src/goabackend/meson.build -@@ -157,9 +157,8 @@ libgoa_web_extension = shared_module( - 'goawebextension', - libgoawebextension_sources, - include_directories: common_incs + [goa_inc], -- dependencies: deps, -+ dependencies: [deps, libgoa_backend_dep], - c_args: cflags, -- link_with: libgoa_backend, - install: true, - install_dir: join_paths(goa_pkglibdir, 'web-extensions') - ) --- -2.39.0 - diff --git a/meta-gnome/recipes-gnome/gnome-online-accounts/gnome-online-accounts_3.46.0.bb b/meta-gnome/recipes-gnome/gnome-online-accounts/gnome-online-accounts_3.48.0.bb similarity index 69% rename from meta-gnome/recipes-gnome/gnome-online-accounts/gnome-online-accounts_3.46.0.bb rename to meta-gnome/recipes-gnome/gnome-online-accounts/gnome-online-accounts_3.48.0.bb index ce02a507d..ddc039ec8 100644 --- a/meta-gnome/recipes-gnome/gnome-online-accounts/gnome-online-accounts_3.46.0.bb +++ b/meta-gnome/recipes-gnome/gnome-online-accounts/gnome-online-accounts_3.48.0.bb @@ -6,22 +6,20 @@ GNOMEBASEBUILDCLASS = "meson" inherit gnomebase gsettings gobject-introspection gtk-icon-cache vala features_check -DEPENDS = "gtk+3 gtk+3-native gdk-pixbuf dbus json-glib libxml2 webkitgtk glib-2.0 rest libsecret" +DEPENDS = "gdk-pixbuf dbus glib-2.0" -SRC_URI += "file://0001-build-Use-the-appropriate-dependency-object.patch" -SRC_URI[archive.sha256sum] = "5e7859ce4858a6b99d3995ed70527d66e297bb90bbf75ec8780fe9da22c1fcaa" +SRC_URI[archive.sha256sum] = "418bb9fcffdbd72a98205ad365137617fc1e3551a54de74f6a98d45d266175bf" -PACKAGECONFIG_SOUP ?= "soup3" -PACKAGECONFIG ?= "kerberos owncloud lastfm google windows_live ${PACKAGECONFIG_SOUP}" +PACKAGECONFIG ?= "goabackend kerberos owncloud lastfm google windows_live" +# goabackend requires webkitgtk to be built with gtk+3 and gcr3 +PACKAGECONFIG[goabackend] = "-Dgoabackend=true,-Dgoabackend=false,gtk+3 gtk+3-native json-glib libxml2 libsoup rest libsecret webkitgtk-4" PACKAGECONFIG[kerberos] = "-Dkerberos=true, -Dkerberos=false,krb5 gcr3" PACKAGECONFIG[exchange] = "-Dexchange=true, -Dexchange=false" PACKAGECONFIG[google] = "-Dgoogle=true, -Dgoogle=false" PACKAGECONFIG[owncloud] = "-Downcloud=true, -Downcloud=false" PACKAGECONFIG[windows_live] = "-Dwindows_live=true, -Dwindows_live=false" PACKAGECONFIG[lastfm] = "-Dlastfm=true, -Dlastfm=false" -PACKAGECONFIG[soup2] = ",,libsoup-2.4,,,soup3" -PACKAGECONFIG[soup3] = ",,libsoup-3.0,,,soup2" FILES:${PN} += " \ ${datadir}/dbus-1 \ From patchwork Sat Mar 25 08:02:39 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markus Volk X-Patchwork-Id: 21748 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 57B76C77B62 for ; Sat, 25 Mar 2023 08:03:20 +0000 (UTC) Received: from mailout04.t-online.de (mailout04.t-online.de [194.25.134.18]) by mx.groups.io with SMTP id smtpd.web11.17407.1679731394417246999 for ; Sat, 25 Mar 2023 01:03:14 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=SPF record not found (domain: t-online.de, ip: 194.25.134.18, mailfrom: f_l_k@t-online.de) Received: from fwd74.dcpf.telekom.de (fwd74.aul.t-online.de [10.223.144.100]) by mailout04.t-online.de (Postfix) with SMTP id 4BBE61CBED for ; Sat, 25 Mar 2023 09:03:12 +0100 (CET) Received: from flk-MS-7C91.fritz.box ([84.154.174.49]) by fwd74.t-online.de with (TLSv1.3:TLS_AES_256_GCM_SHA384 encrypted) esmtp id 1pfyrn-0RoPhX0; Sat, 25 Mar 2023 09:03:11 +0100 From: Markus Volk To: openembedded-devel@lists.openembedded.org Cc: Markus Volk Subject: [meta-gnome][PATCH 15/32] gnome-photos: update 43.0 -> 44.0 Date: Sat, 25 Mar 2023 09:02:39 +0100 Message-Id: <20230325080256.923752-15-f_l_k@t-online.de> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230325080256.923752-1-f_l_k@t-online.de> References: <20230325080256.923752-1-f_l_k@t-online.de> MIME-Version: 1.0 X-TOI-EXPURGATEID: 150726::1679731391-85D6DC08-6FB91435/0/0 CLEAN NORMAL X-TOI-MSGID: f821499e-85b9-498f-a41d-9f9b16a4998c 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, 25 Mar 2023 08:03:20 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/101728 Signed-off-by: Markus Volk --- .../gnome-photos/{gnome-photos_43.0.bb => gnome-photos_44.0.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-gnome/recipes-gnome/gnome-photos/{gnome-photos_43.0.bb => gnome-photos_44.0.bb} (93%) diff --git a/meta-gnome/recipes-gnome/gnome-photos/gnome-photos_43.0.bb b/meta-gnome/recipes-gnome/gnome-photos/gnome-photos_44.0.bb similarity index 93% rename from meta-gnome/recipes-gnome/gnome-photos/gnome-photos_43.0.bb rename to meta-gnome/recipes-gnome/gnome-photos/gnome-photos_44.0.bb index 72ab2eaaf..cdf9780ab 100644 --- a/meta-gnome/recipes-gnome/gnome-photos/gnome-photos_43.0.bb +++ b/meta-gnome/recipes-gnome/gnome-photos/gnome-photos_44.0.bb @@ -36,7 +36,7 @@ REQUIRED_DISTRO_FEATURES = "x11 opengl" PACKAGECONFIG ?= "" PACKAGECONFIG[doc] = "-Dmanuals=true,-Dmanuals=false,libxslt-native docbook-xsl-stylesheets-native" -SRC_URI[archive.sha256sum] = "c7ac7458d533f29d955011c74b76224d79ea31bcc12e9d6d0ce7b6c3704d08e1" +SRC_URI[archive.sha256sum] = "e78e210397d3c62809c6cd5521da6eccb4a11ddea5bf2af8632a47f4da5c829e" do_install:append() { # make gnome-photos available on all desktops From patchwork Sat Mar 25 08:02:40 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markus Volk X-Patchwork-Id: 21762 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 9FA9DC77B77 for ; Sat, 25 Mar 2023 08:03:20 +0000 (UTC) Received: from mailout04.t-online.de (mailout04.t-online.de [194.25.134.18]) by mx.groups.io with SMTP id smtpd.web10.17458.1679731394419506974 for ; Sat, 25 Mar 2023 01:03:14 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=SPF record not found (domain: t-online.de, ip: 194.25.134.18, mailfrom: f_l_k@t-online.de) Received: from fwd74.dcpf.telekom.de (fwd74.aul.t-online.de [10.223.144.100]) by mailout04.t-online.de (Postfix) with SMTP id 4C57A1CBEE for ; Sat, 25 Mar 2023 09:03:12 +0100 (CET) Received: from flk-MS-7C91.fritz.box ([84.154.174.49]) by fwd74.t-online.de with (TLSv1.3:TLS_AES_256_GCM_SHA384 encrypted) esmtp id 1pfyrn-0RoPhY0; Sat, 25 Mar 2023 09:03:12 +0100 From: Markus Volk To: openembedded-devel@lists.openembedded.org Cc: Markus Volk Subject: [meta-gnome][PATCH 16/32] gnome-session: update 43.0 -> 44.0 Date: Sat, 25 Mar 2023 09:02:40 +0100 Message-Id: <20230325080256.923752-16-f_l_k@t-online.de> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230325080256.923752-1-f_l_k@t-online.de> References: <20230325080256.923752-1-f_l_k@t-online.de> MIME-Version: 1.0 X-TOI-EXPURGATEID: 150726::1679731392-85D6DC08-FCA17177/0/0 CLEAN NORMAL X-TOI-MSGID: 2b66abff-1b90-47ae-bd39-6709b172e66b 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, 25 Mar 2023 08:03:20 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/101727 Signed-off-by: Markus Volk --- .../{gnome-session_43.0.bb => gnome-session_44.0.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-gnome/recipes-gnome/gnome-session/{gnome-session_43.0.bb => gnome-session_44.0.bb} (91%) diff --git a/meta-gnome/recipes-gnome/gnome-session/gnome-session_43.0.bb b/meta-gnome/recipes-gnome/gnome-session/gnome-session_44.0.bb similarity index 91% rename from meta-gnome/recipes-gnome/gnome-session/gnome-session_43.0.bb rename to meta-gnome/recipes-gnome/gnome-session/gnome-session_44.0.bb index 12f48bc82..3f642f401 100644 --- a/meta-gnome/recipes-gnome/gnome-session/gnome-session_43.0.bb +++ b/meta-gnome/recipes-gnome/gnome-session/gnome-session_44.0.bb @@ -22,7 +22,7 @@ inherit gnomebase gettext gsettings upstream-version-is-even features_check REQUIRED_DISTRO_FEATURES = "x11 polkit systemd pam gobject-introspection-data" -SRC_URI[archive.sha256sum] = "3fb9949501385c8c14618e78f178d952df98ad8c91080f4c5e1568c7393ae1f2" +SRC_URI[archive.sha256sum] = "ccf829a96526135e9e9f917526515d36a5092bdfa316f3737dd8c5a524dbf2c6" PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'systemd', 'consolekit',d)}" From patchwork Sat Mar 25 08:02:41 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markus Volk X-Patchwork-Id: 21747 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 43CFAC77B6E for ; Sat, 25 Mar 2023 08:03:20 +0000 (UTC) Received: from mailout04.t-online.de (mailout04.t-online.de [194.25.134.18]) by mx.groups.io with SMTP id smtpd.web11.17408.1679731394494397679 for ; Sat, 25 Mar 2023 01:03:14 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=SPF record not found (domain: t-online.de, ip: 194.25.134.18, mailfrom: f_l_k@t-online.de) Received: from fwd74.dcpf.telekom.de (fwd74.aul.t-online.de [10.223.144.100]) by mailout04.t-online.de (Postfix) with SMTP id 4E0371CBEF for ; Sat, 25 Mar 2023 09:03:12 +0100 (CET) Received: from flk-MS-7C91.fritz.box ([84.154.174.49]) by fwd74.t-online.de with (TLSv1.3:TLS_AES_256_GCM_SHA384 encrypted) esmtp id 1pfyro-0RoPhZ0; Sat, 25 Mar 2023 09:03:12 +0100 From: Markus Volk To: openembedded-devel@lists.openembedded.org Cc: Markus Volk Subject: [meta-gnome][PATCH 17/32] gnome-settings-daemon: update 43.0 -> 44.0 Date: Sat, 25 Mar 2023 09:02:41 +0100 Message-Id: <20230325080256.923752-17-f_l_k@t-online.de> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230325080256.923752-1-f_l_k@t-online.de> References: <20230325080256.923752-1-f_l_k@t-online.de> MIME-Version: 1.0 X-TOI-EXPURGATEID: 150726::1679731392-85D6DC08-76323136/0/0 CLEAN NORMAL X-TOI-MSGID: f928e652-a5d2-4714-8b07-3670b05ead6b 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, 25 Mar 2023 08:03:20 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/101729 Signed-off-by: Markus Volk --- ...-settings-daemon_43.0.bb => gnome-settings-daemon_44.0.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta-gnome/recipes-gnome/gnome-settings-daemon/{gnome-settings-daemon_43.0.bb => gnome-settings-daemon_44.0.bb} (89%) diff --git a/meta-gnome/recipes-gnome/gnome-settings-daemon/gnome-settings-daemon_43.0.bb b/meta-gnome/recipes-gnome/gnome-settings-daemon/gnome-settings-daemon_44.0.bb similarity index 89% rename from meta-gnome/recipes-gnome/gnome-settings-daemon/gnome-settings-daemon_43.0.bb rename to meta-gnome/recipes-gnome/gnome-settings-daemon/gnome-settings-daemon_44.0.bb index fe246953f..e8f2014bf 100644 --- a/meta-gnome/recipes-gnome/gnome-settings-daemon/gnome-settings-daemon_43.0.bb +++ b/meta-gnome/recipes-gnome/gnome-settings-daemon/gnome-settings-daemon_44.0.bb @@ -25,7 +25,7 @@ DEPENDS = " \ REQUIRED_DISTRO_FEATURES = "x11 polkit pulseaudio systemd gobject-introspection-data" GIR_MESON_OPTION = "" -SRC_URI[archive.sha256sum] = "3513bb24fc6f8181667223a64a067534fdccf3bf66326a9403d38b0f0d6013d0" +SRC_URI[archive.sha256sum] = "b417ada1c1342a8cf29837ecf2dec9bdcdb754235b1a161b6435c3d11f210999" PACKAGECONFIG ??= " \ cups nm \ @@ -42,5 +42,5 @@ PACKAGECONFIG[wayland] = "-Dwayland=true,-Dwayland=false,wayland" FILES:${PN} += " \ ${systemd_user_unitdir} \ - /usr/lib/gnome-settings-daemon-43/libgsd.so \ + /usr/lib/gnome-settings-daemon-44/libgsd.so \ " From patchwork Sat Mar 25 08:02:42 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markus Volk X-Patchwork-Id: 21743 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 2ED3FC77B6C for ; Sat, 25 Mar 2023 08:03:20 +0000 (UTC) Received: from mailout04.t-online.de (mailout04.t-online.de [194.25.134.18]) by mx.groups.io with SMTP id smtpd.web11.17410.1679731395419660655 for ; Sat, 25 Mar 2023 01:03:15 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=SPF record not found (domain: t-online.de, ip: 194.25.134.18, mailfrom: f_l_k@t-online.de) Received: from fwd74.dcpf.telekom.de (fwd74.aul.t-online.de [10.223.144.100]) by mailout04.t-online.de (Postfix) with SMTP id 71EC11CBF1 for ; Sat, 25 Mar 2023 09:03:12 +0100 (CET) Received: from flk-MS-7C91.fritz.box ([84.154.174.49]) by fwd74.t-online.de with (TLSv1.3:TLS_AES_256_GCM_SHA384 encrypted) esmtp id 1pfyro-0RoPha0; Sat, 25 Mar 2023 09:03:12 +0100 From: Markus Volk To: openembedded-devel@lists.openembedded.org Cc: Markus Volk Subject: [meta-gnome][PATCH 18/32] gnome-shell: update 43.2 -> 44.0 Date: Sat, 25 Mar 2023 09:02:42 +0100 Message-Id: <20230325080256.923752-18-f_l_k@t-online.de> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230325080256.923752-1-f_l_k@t-online.de> References: <20230325080256.923752-1-f_l_k@t-online.de> MIME-Version: 1.0 X-TOI-EXPURGATEID: 150726::1679731392-85D6DC08-B3CB7E4C/0/0 CLEAN NORMAL X-TOI-MSGID: 30cfaf2e-8fc3-475c-b885-373e6a5eda1b 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, 25 Mar 2023 08:03:20 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/101732 Signed-off-by: Markus Volk --- .../gnome-shell/{gnome-shell_43.2.bb => gnome-shell_44.0.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-gnome/recipes-gnome/gnome-shell/{gnome-shell_43.2.bb => gnome-shell_44.0.bb} (95%) diff --git a/meta-gnome/recipes-gnome/gnome-shell/gnome-shell_43.2.bb b/meta-gnome/recipes-gnome/gnome-shell/gnome-shell_44.0.bb similarity index 95% rename from meta-gnome/recipes-gnome/gnome-shell/gnome-shell_43.2.bb rename to meta-gnome/recipes-gnome/gnome-shell/gnome-shell_44.0.bb index d3bd357d5..148e7457e 100644 --- a/meta-gnome/recipes-gnome/gnome-shell/gnome-shell_43.2.bb +++ b/meta-gnome/recipes-gnome/gnome-shell/gnome-shell_44.0.bb @@ -32,7 +32,7 @@ GIR_MESON_OPTION = "" # gobject-introspection is mandatory and cannot be configured REQUIRED_DISTRO_FEATURES += "gobject-introspection-data" -SRC_URI[archive.sha256sum] = "e76fd4be9342410ee9fbdcdd6b2d81c6ff060e7c8cc5a0f1cae6a7aba25d1860" +SRC_URI[archive.sha256sum] = "3310adc1dd4e210998d59f3871bc31f7e04915428d9ced88c2a66b2b05d6c00a" SRC_URI += "file://0001-Introduce-options-gjs_path-to-optionally-set-path-to.patch" PACKAGECONFIG ??= "bluetooth nm ${@bb.utils.filter('DISTRO_FEATURES', 'systemd', d)}" From patchwork Sat Mar 25 08:02:43 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markus Volk X-Patchwork-Id: 21746 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 43B12C77B6D for ; Sat, 25 Mar 2023 08:03:20 +0000 (UTC) Received: from mailout04.t-online.de (mailout04.t-online.de [194.25.134.18]) by mx.groups.io with SMTP id smtpd.web10.17459.1679731395423297015 for ; Sat, 25 Mar 2023 01:03:15 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=SPF record not found (domain: t-online.de, ip: 194.25.134.18, mailfrom: f_l_k@t-online.de) Received: from fwd74.dcpf.telekom.de (fwd74.aul.t-online.de [10.223.144.100]) by mailout04.t-online.de (Postfix) with SMTP id A07421CBF3 for ; Sat, 25 Mar 2023 09:03:12 +0100 (CET) Received: from flk-MS-7C91.fritz.box ([84.154.174.49]) by fwd74.t-online.de with (TLSv1.3:TLS_AES_256_GCM_SHA384 encrypted) esmtp id 1pfyro-0RoPhb0; Sat, 25 Mar 2023 09:03:12 +0100 From: Markus Volk To: openembedded-devel@lists.openembedded.org Cc: Markus Volk Subject: [meta-gnome][PATCH 19/32] gnome-shell-extensions: update 43.1 -> 44.0 Date: Sat, 25 Mar 2023 09:02:43 +0100 Message-Id: <20230325080256.923752-19-f_l_k@t-online.de> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230325080256.923752-1-f_l_k@t-online.de> References: <20230325080256.923752-1-f_l_k@t-online.de> MIME-Version: 1.0 X-TOI-EXPURGATEID: 150726::1679731392-85D6DC08-9A884626/0/0 CLEAN NORMAL X-TOI-MSGID: 37ba7ca8-aacc-41c9-9cd4-5924c996c7c2 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, 25 Mar 2023 08:03:20 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/101731 Signed-off-by: Markus Volk --- ...-shell-extensions_43.1.bb => gnome-shell-extensions_44.0.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-gnome/recipes-gnome/gnome-shell/{gnome-shell-extensions_43.1.bb => gnome-shell-extensions_44.0.bb} (85%) diff --git a/meta-gnome/recipes-gnome/gnome-shell/gnome-shell-extensions_43.1.bb b/meta-gnome/recipes-gnome/gnome-shell/gnome-shell-extensions_44.0.bb similarity index 85% rename from meta-gnome/recipes-gnome/gnome-shell/gnome-shell-extensions_43.1.bb rename to meta-gnome/recipes-gnome/gnome-shell/gnome-shell-extensions_44.0.bb index 93d791a6b..126e5ef3f 100644 --- a/meta-gnome/recipes-gnome/gnome-shell/gnome-shell-extensions_43.1.bb +++ b/meta-gnome/recipes-gnome/gnome-shell/gnome-shell-extensions_44.0.bb @@ -8,7 +8,7 @@ inherit gnomebase gettext gsettings features_check REQUIRED_DISTRO_FEATURES = "x11 polkit systemd pam gobject-introspection-data" -SRC_URI[archive.sha256sum] = "adde04bd946a13113557e4c34c890bbe9077505a6a3f0755f17bea1c6e4a2d17" +SRC_URI[archive.sha256sum] = "8c345e72f31a1e37f55063e0b15997301b01194ed698772fd87aeb50cbb101ab" EXTRA_OEMESON += " \ -Dextension_set=all \ From patchwork Sat Mar 25 08:02:44 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markus Volk X-Patchwork-Id: 21750 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 474F7C77B6F for ; Sat, 25 Mar 2023 08:03:20 +0000 (UTC) Received: from mailout06.t-online.de (mailout06.t-online.de [194.25.134.19]) by mx.groups.io with SMTP id smtpd.web11.17409.1679731395170611887 for ; Sat, 25 Mar 2023 01:03:15 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=SPF record not found (domain: t-online.de, ip: 194.25.134.19, mailfrom: f_l_k@t-online.de) Received: from fwd74.dcpf.telekom.de (fwd74.aul.t-online.de [10.223.144.100]) by mailout06.t-online.de (Postfix) with SMTP id 00C7022355 for ; Sat, 25 Mar 2023 09:03:13 +0100 (CET) Received: from flk-MS-7C91.fritz.box ([84.154.174.49]) by fwd74.t-online.de with (TLSv1.3:TLS_AES_256_GCM_SHA384 encrypted) esmtp id 1pfyro-0RoPhc0; Sat, 25 Mar 2023 09:03:12 +0100 From: Markus Volk To: openembedded-devel@lists.openembedded.org Cc: Markus Volk Subject: [meta-gnome][PATCH 20/32] gnome-software: update 43.4 -> 44.0 Date: Sat, 25 Mar 2023 09:02:44 +0100 Message-Id: <20230325080256.923752-20-f_l_k@t-online.de> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230325080256.923752-1-f_l_k@t-online.de> References: <20230325080256.923752-1-f_l_k@t-online.de> MIME-Version: 1.0 X-TOI-EXPURGATEID: 150726::1679731392-85D6DC08-325D34D0/0/0 CLEAN NORMAL X-TOI-MSGID: a712b389-bcf4-4ac7-ae27-e92d0747299b 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, 25 Mar 2023 08:03:20 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/101730 Signed-off-by: Markus Volk --- .../{gnome-software_43.4.bb => gnome-software_44.0.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-gnome/recipes-gnome/gnome-software/{gnome-software_43.4.bb => gnome-software_44.0.bb} (93%) diff --git a/meta-gnome/recipes-gnome/gnome-software/gnome-software_43.4.bb b/meta-gnome/recipes-gnome/gnome-software/gnome-software_44.0.bb similarity index 93% rename from meta-gnome/recipes-gnome/gnome-software/gnome-software_43.4.bb rename to meta-gnome/recipes-gnome/gnome-software/gnome-software_44.0.bb index f941c4134..f497f5bcd 100644 --- a/meta-gnome/recipes-gnome/gnome-software/gnome-software_43.4.bb +++ b/meta-gnome/recipes-gnome/gnome-software/gnome-software_44.0.bb @@ -29,7 +29,7 @@ RDEPENDS:${PN} = "iso-codes" EXTRA_OEMESON += "-Dtests=false -Dsoup2=false" -SRC_URI[archive.sha256sum] = "e9df060ebab59f49697d5ef2630ec36de60454169dc191af60d3483720aadb3e" +SRC_URI[archive.sha256sum] = "619719f9529e0bb1dad30fadbb780d7b1d99940a6db1f71df51bc737341830af" PACKAGECONFIG ?= "flatpak" PACKAGECONFIG[flatpak] = "-Dflatpak=true,-Dflatpak=false,flatpak ostree" From patchwork Sat Mar 25 08:02:45 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markus Volk X-Patchwork-Id: 21742 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 29575C77B61 for ; Sat, 25 Mar 2023 08:03:20 +0000 (UTC) Received: from mailout04.t-online.de (mailout04.t-online.de [194.25.134.18]) by mx.groups.io with SMTP id smtpd.web10.17460.1679731396187517368 for ; Sat, 25 Mar 2023 01:03:16 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=SPF record not found (domain: t-online.de, ip: 194.25.134.18, mailfrom: f_l_k@t-online.de) Received: from fwd74.dcpf.telekom.de (fwd74.aul.t-online.de [10.223.144.100]) by mailout04.t-online.de (Postfix) with SMTP id 01BB01CBF7 for ; Sat, 25 Mar 2023 09:03:13 +0100 (CET) Received: from flk-MS-7C91.fritz.box ([84.154.174.49]) by fwd74.t-online.de with (TLSv1.3:TLS_AES_256_GCM_SHA384 encrypted) esmtp id 1pfyro-0RoPhd0; Sat, 25 Mar 2023 09:03:12 +0100 From: Markus Volk To: openembedded-devel@lists.openembedded.org Cc: Markus Volk Subject: [meta-gnome][PATCH 21/32] gnome-terminal: update 3.46.7 -> 3.48.0 Date: Sat, 25 Mar 2023 09:02:45 +0100 Message-Id: <20230325080256.923752-21-f_l_k@t-online.de> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230325080256.923752-1-f_l_k@t-online.de> References: <20230325080256.923752-1-f_l_k@t-online.de> MIME-Version: 1.0 X-TOI-EXPURGATEID: 150726::1679731392-85D6DC08-E22B5965/0/0 CLEAN NORMAL X-TOI-MSGID: f8b03d61-7a66-47ca-985b-0dd388fadb3a 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, 25 Mar 2023 08:03:20 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/101733 Signed-off-by: Markus Volk --- .../{gnome-terminal_3.46.7.bb => gnome-terminal_3.48.0.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-gnome/recipes-gnome/gnome-terminal/{gnome-terminal_3.46.7.bb => gnome-terminal_3.48.0.bb} (95%) diff --git a/meta-gnome/recipes-gnome/gnome-terminal/gnome-terminal_3.46.7.bb b/meta-gnome/recipes-gnome/gnome-terminal/gnome-terminal_3.48.0.bb similarity index 95% rename from meta-gnome/recipes-gnome/gnome-terminal/gnome-terminal_3.46.7.bb rename to meta-gnome/recipes-gnome/gnome-terminal/gnome-terminal_3.48.0.bb index d9afeec46..75e609d15 100644 --- a/meta-gnome/recipes-gnome/gnome-terminal/gnome-terminal_3.46.7.bb +++ b/meta-gnome/recipes-gnome/gnome-terminal/gnome-terminal_3.48.0.bb @@ -22,7 +22,7 @@ DEPENDS = " \ SRC_URI = "git://gitlab.gnome.org/GNOME/gnome-terminal.git;protocol=https;nobranch=1" SRC_URI += "file://0001-Add-W_EXITCODE-macro-for-non-glibc-systems.patch" -SRCREV = "816edf80cd7bf7f253366099ea9fcaf361676139" +SRCREV = "a85ecc959344ee2e0d345f7dd081dc781d95d364" S = "${WORKDIR}/git" PACKAGECONFIG ?= "" From patchwork Sat Mar 25 08:02:46 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markus Volk X-Patchwork-Id: 21740 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 F2EF3C6FD1F for ; Sat, 25 Mar 2023 08:03:19 +0000 (UTC) Received: from mailout04.t-online.de (mailout04.t-online.de [194.25.134.18]) by mx.groups.io with SMTP id smtpd.web11.17413.1679731399386958720 for ; Sat, 25 Mar 2023 01:03:19 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=SPF record not found (domain: t-online.de, ip: 194.25.134.18, mailfrom: f_l_k@t-online.de) Received: from fwd74.dcpf.telekom.de (fwd74.aul.t-online.de [10.223.144.100]) by mailout04.t-online.de (Postfix) with SMTP id 4EEDE1E81C for ; Sat, 25 Mar 2023 09:03:17 +0100 (CET) Received: from flk-MS-7C91.fritz.box ([84.154.174.49]) by fwd74.t-online.de with (TLSv1.3:TLS_AES_256_GCM_SHA384 encrypted) esmtp id 1pfyro-0RoPhe0; Sat, 25 Mar 2023 09:03:12 +0100 From: Markus Volk To: openembedded-devel@lists.openembedded.org Cc: Markus Volk Subject: [meta-gnome][PATCH 22/32] gnome-text-editor: update 43.1 -> 44.0 Date: Sat, 25 Mar 2023 09:02:46 +0100 Message-Id: <20230325080256.923752-22-f_l_k@t-online.de> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230325080256.923752-1-f_l_k@t-online.de> References: <20230325080256.923752-1-f_l_k@t-online.de> MIME-Version: 1.0 X-TOI-EXPURGATEID: 150726::1679731392-85D6DC08-99200EF6/0/0 CLEAN NORMAL X-TOI-MSGID: 5dde1310-e919-4b51-ab61-d0dec9b74cd4 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, 25 Mar 2023 08:03:19 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/101737 Signed-off-by: Markus Volk --- .../{gnome-text-editor_43.1.bb => gnome-text-editor_44.0.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-gnome/recipes-gnome/gnome-text-editor/{gnome-text-editor_43.1.bb => gnome-text-editor_44.0.bb} (84%) diff --git a/meta-gnome/recipes-gnome/gnome-text-editor/gnome-text-editor_43.1.bb b/meta-gnome/recipes-gnome/gnome-text-editor/gnome-text-editor_44.0.bb similarity index 84% rename from meta-gnome/recipes-gnome/gnome-text-editor/gnome-text-editor_43.1.bb rename to meta-gnome/recipes-gnome/gnome-text-editor/gnome-text-editor_44.0.bb index a2ac710a0..40bcd27d2 100644 --- a/meta-gnome/recipes-gnome/gnome-text-editor/gnome-text-editor_43.1.bb +++ b/meta-gnome/recipes-gnome/gnome-text-editor/gnome-text-editor_44.0.bb @@ -19,7 +19,7 @@ inherit gnomebase gtk-icon-cache itstool gnome-help mime-xdg features_check REQUIRED_DISTRO_FEATURES = "opengl" -SRC_URI[archive.sha256sum] = "973a4b0deb68f9f91a54a4dd415b6afde9b5ae3ee684bc761471f94290f9f6cb" +SRC_URI[archive.sha256sum] = "f67bc3780734ffa815fcc4c5daa7b555d24e459f81ea2b548e6a85c1612a31ca" FILES:${PN} += " \ ${datadir}/metainfo \ From patchwork Sat Mar 25 08:02:47 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markus Volk X-Patchwork-Id: 21758 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 8BEC6C77B76 for ; Sat, 25 Mar 2023 08:03:20 +0000 (UTC) Received: from mailout04.t-online.de (mailout04.t-online.de [194.25.134.18]) by mx.groups.io with SMTP id smtpd.web10.17461.1679731398838096358 for ; Sat, 25 Mar 2023 01:03:19 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=SPF record not found (domain: t-online.de, ip: 194.25.134.18, mailfrom: f_l_k@t-online.de) Received: from fwd74.dcpf.telekom.de (fwd74.aul.t-online.de [10.223.144.100]) by mailout04.t-online.de (Postfix) with SMTP id 50F561E81D for ; Sat, 25 Mar 2023 09:03:17 +0100 (CET) Received: from flk-MS-7C91.fritz.box ([84.154.174.49]) by fwd74.t-online.de with (TLSv1.3:TLS_AES_256_GCM_SHA384 encrypted) esmtp id 1pfyrp-0RoPhf0; Sat, 25 Mar 2023 09:03:13 +0100 From: Markus Volk To: openembedded-devel@lists.openembedded.org Cc: Markus Volk Subject: [meta-gnome][PATCH 23/32] gtksourceview5: update 5.6.1 -> 5.7.1 Date: Sat, 25 Mar 2023 09:02:47 +0100 Message-Id: <20230325080256.923752-23-f_l_k@t-online.de> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230325080256.923752-1-f_l_k@t-online.de> References: <20230325080256.923752-1-f_l_k@t-online.de> MIME-Version: 1.0 X-TOI-EXPURGATEID: 150726::1679731393-8656CC08-D4C470CF/0/0 CLEAN NORMAL X-TOI-MSGID: 873075c0-2464-4c95-88cb-c579e0d7fa9c 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, 25 Mar 2023 08:03:20 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/101734 Signed-off-by: Markus Volk --- .../{gtksourceview5_5.6.1.bb => gtksourceview5_5.7.1.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta-gnome/recipes-gnome/gtksourceview/{gtksourceview5_5.6.1.bb => gtksourceview5_5.7.1.bb} (85%) diff --git a/meta-gnome/recipes-gnome/gtksourceview/gtksourceview5_5.6.1.bb b/meta-gnome/recipes-gnome/gtksourceview/gtksourceview5_5.7.1.bb similarity index 85% rename from meta-gnome/recipes-gnome/gtksourceview/gtksourceview5_5.6.1.bb rename to meta-gnome/recipes-gnome/gtksourceview/gtksourceview5_5.7.1.bb index 2fb64325c..99826c594 100644 --- a/meta-gnome/recipes-gnome/gtksourceview/gtksourceview5_5.6.1.bb +++ b/meta-gnome/recipes-gnome/gtksourceview/gtksourceview5_5.7.1.bb @@ -25,8 +25,8 @@ inherit gnomebase lib_package gettext features_check gtk-doc gtk-icon-cache gobj REQUIRED_DISTRO_FEATURES = "opengl" -SRC_URI = "https://download.gnome.org/sources/gtksourceview/5.6/${PNAME}-${PV}.tar.xz" -SRC_URI[sha256sum] = "659d9cc9d034a114f07e7e134ee80d77dec0497cb1516ae5369119c2fcb9da16" +SRC_URI = "https://download.gnome.org/sources/gtksourceview/5.7/${PNAME}-${PV}.tar.xz" +SRC_URI[sha256sum] = "3b42541964db9c2fa50a9658d4886bdf77d023fe4e96c5b17bce51c9f58c48e6" GIR_MESON_ENABLE_FLAG = 'enabled' GIR_MESON_DISABLE_FLAG = 'disabled' From patchwork Sat Mar 25 08:02:48 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markus Volk X-Patchwork-Id: 21770 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 D66F0C6FD1F for ; Sat, 25 Mar 2023 08:03:30 +0000 (UTC) Received: from mailout04.t-online.de (mailout04.t-online.de [194.25.134.18]) by mx.groups.io with SMTP id smtpd.web11.17418.1679731407193407412 for ; Sat, 25 Mar 2023 01:03:27 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=SPF record not found (domain: t-online.de, ip: 194.25.134.18, mailfrom: f_l_k@t-online.de) Received: from fwd74.dcpf.telekom.de (fwd74.aul.t-online.de [10.223.144.100]) by mailout04.t-online.de (Postfix) with SMTP id 4AD441E822 for ; Sat, 25 Mar 2023 09:03:25 +0100 (CET) Received: from flk-MS-7C91.fritz.box ([84.154.174.49]) by fwd74.t-online.de with (TLSv1.3:TLS_AES_256_GCM_SHA384 encrypted) esmtp id 1pfyrp-0RoPhg0; Sat, 25 Mar 2023 09:03:13 +0100 From: Markus Volk To: openembedded-devel@lists.openembedded.org Cc: Markus Volk Subject: [meta-gnome][PATCH 24/32] libgtop: update 2.40.0 -> 2.41.1 Date: Sat, 25 Mar 2023 09:02:48 +0100 Message-Id: <20230325080256.923752-24-f_l_k@t-online.de> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230325080256.923752-1-f_l_k@t-online.de> References: <20230325080256.923752-1-f_l_k@t-online.de> MIME-Version: 1.0 X-TOI-EXPURGATEID: 150726::1679731393-8656CC08-A8158217/0/0 CLEAN NORMAL X-TOI-MSGID: 49763fc4-8b33-488b-96f8-efd21800b37e 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, 25 Mar 2023 08:03:30 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/101744 Signed-off-by: Markus Volk --- .../libgtop/0001-Pass-correct-parameter.patch | 29 ------------ ...-fix-compile-error-for-cross-compile.patch | 37 --------------- ...ude-libc-net-headers-unconditionally.patch | 46 ------------------- .../{libgtop_2.40.0.bb => libgtop_2.41.1.bb} | 6 +-- 4 files changed, 1 insertion(+), 117 deletions(-) delete mode 100644 meta-gnome/recipes-gnome/libgtop/libgtop/0001-Pass-correct-parameter.patch delete mode 100644 meta-gnome/recipes-gnome/libgtop/libgtop/0001-fix-compile-error-for-cross-compile.patch delete mode 100644 meta-gnome/recipes-gnome/libgtop/libgtop/0001-netload-Include-libc-net-headers-unconditionally.patch rename meta-gnome/recipes-gnome/libgtop/{libgtop_2.40.0.bb => libgtop_2.41.1.bb} (60%) diff --git a/meta-gnome/recipes-gnome/libgtop/libgtop/0001-Pass-correct-parameter.patch b/meta-gnome/recipes-gnome/libgtop/libgtop/0001-Pass-correct-parameter.patch deleted file mode 100644 index 5ea8eed51..000000000 --- a/meta-gnome/recipes-gnome/libgtop/libgtop/0001-Pass-correct-parameter.patch +++ /dev/null @@ -1,29 +0,0 @@ -From e969ac59335d3fb1cd228f8e7c4f6c2dda4fa536 Mon Sep 17 00:00:00 2001 -From: Avinash Sonawane -Date: Mon, 20 Dec 2021 13:33:42 +0530 -Subject: [PATCH] Pass correct parameter - -Upstream-Status: Backport [https://gitlab.gnome.org/GNOME/libgtop/-/merge_requests/35] -Signed-off-by: Khem Raj ---- - src/daemon/main.c | 3 ++- - 1 file changed, 2 insertions(+), 1 deletion(-) - -diff --git a/src/daemon/main.c b/src/daemon/main.c -index b51addf..eaee3b3 100644 ---- a/src/daemon/main.c -+++ b/src/daemon/main.c -@@ -222,8 +222,9 @@ handle_parent_connection (int s) - 0, NULL); - break; - case GLIBTOP_CMND_PROC_IO: -+ memcpy (&pid, parameter, sizeof (pid_t)); - glibtop_get_proc_io_l -- (server, &resp->u.data.proc_io, parameter); -+ (server, &resp->u.data.proc_io, pid); - do_output (s, resp, _offset_data (proc_io), - 0, NULL); - break; --- -2.37.2 - diff --git a/meta-gnome/recipes-gnome/libgtop/libgtop/0001-fix-compile-error-for-cross-compile.patch b/meta-gnome/recipes-gnome/libgtop/libgtop/0001-fix-compile-error-for-cross-compile.patch deleted file mode 100644 index 1bd6e101b..000000000 --- a/meta-gnome/recipes-gnome/libgtop/libgtop/0001-fix-compile-error-for-cross-compile.patch +++ /dev/null @@ -1,37 +0,0 @@ -From e865a93000913b4597607289356114cd159f4e28 Mon Sep 17 00:00:00 2001 -From: Your Name -Date: Fri, 21 May 2021 03:02:29 +0000 -Subject: [PATCH] fix compile error for cross compile - -On some distros, such as fedora32, cross compile failed with following -error since host library is used. undefined reference to -`stat64@GLIBC_2.33' - -According doc of ld, set searchdir begins with "=", but not hardcoded -locations. - -Upstream-Status: Submitted [https://gitlab.gnome.org/GNOME/libgtop/-/merge_requests/26] - -Signed-off-by: Changqing Li ---- - configure.ac | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/configure.ac b/configure.ac -index 472f44b..ed6a4d7 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -270,8 +270,8 @@ AC_ARG_ENABLE(fatal-warnings, - [Define to enable fatal warnings])) - - dnl These definitions are expanded in make. --LIBGTOP_LIBS='-L$(libdir)' --LIBGTOP_INCS='-I$(includedir)/libgtop-2.0' -+LIBGTOP_LIBS='-L=$(libdir)' -+LIBGTOP_INCS='-I=$(includedir)/libgtop-2.0' - - if test x$libgtop_have_sysinfo = xyes ; then - LIBGTOP_INCS="$LIBGTOP_INCS -DHAVE_LIBGTOP_SYSINFO" --- -2.26.2 - diff --git a/meta-gnome/recipes-gnome/libgtop/libgtop/0001-netload-Include-libc-net-headers-unconditionally.patch b/meta-gnome/recipes-gnome/libgtop/libgtop/0001-netload-Include-libc-net-headers-unconditionally.patch deleted file mode 100644 index c4f7da4bf..000000000 --- a/meta-gnome/recipes-gnome/libgtop/libgtop/0001-netload-Include-libc-net-headers-unconditionally.patch +++ /dev/null @@ -1,46 +0,0 @@ -From 3c6f70e50cb586ac4add4dea627c316242691040 Mon Sep 17 00:00:00 2001 -From: Khem Raj -Date: Thu, 13 Jul 2017 09:17:29 -0700 -Subject: [PATCH] netload: Include libc net headers unconditionally - -This fixes compile with musl, and this conditional -is not needed now a days if we are still using glibc < 1.0 -we have other bigger problems - -Signed-off-by: Khem Raj ---- - sysdeps/linux/netload.c | 11 ----------- - 1 file changed, 11 deletions(-) - -diff --git a/sysdeps/linux/netload.c b/sysdeps/linux/netload.c -index c275db2..446bddd 100644 ---- a/sysdeps/linux/netload.c -+++ b/sysdeps/linux/netload.c -@@ -34,8 +34,6 @@ - #include - #include - --#if !defined (_LIBC) && defined (__GNU_LIBRARY__) && __GNU_LIBRARY__ > 1 --/* GNU LibC */ - #include - #include - #include -@@ -43,15 +41,6 @@ - #include - #include - #include --#else /* Libc 5 */ --#include --#include --#include --#include --#include --#include --#endif -- - - #ifdef HAVE_IFADDRS_H - /* needed for IPV6 support */ --- -2.13.2 - diff --git a/meta-gnome/recipes-gnome/libgtop/libgtop_2.40.0.bb b/meta-gnome/recipes-gnome/libgtop/libgtop_2.41.1.bb similarity index 60% rename from meta-gnome/recipes-gnome/libgtop/libgtop_2.40.0.bb rename to meta-gnome/recipes-gnome/libgtop/libgtop_2.41.1.bb index fa95e0bee..9a50b5e82 100644 --- a/meta-gnome/recipes-gnome/libgtop/libgtop_2.40.0.bb +++ b/meta-gnome/recipes-gnome/libgtop/libgtop_2.41.1.bb @@ -6,10 +6,6 @@ inherit gnomebase lib_package gtk-doc gobject-introspection gettext upstream-ver ANY_OF_DISTRO_FEATURES = "${GTK3DISTROFEATURES}" -SRC_URI += "file://0001-fix-compile-error-for-cross-compile.patch \ - file://0001-Pass-correct-parameter.patch \ - " - -SRC_URI[archive.sha256sum] = "78f3274c0c79c434c03655c1b35edf7b95ec0421430897fb1345a98a265ed2d4" +SRC_URI[archive.sha256sum] = "43ea9ad13f7caf98303e64172b191be9b96bab340b019deeec72251ee140fe3b" DEPENDS = "glib-2.0 libxau" From patchwork Sat Mar 25 08:02:49 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markus Volk X-Patchwork-Id: 21741 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 16402C77B60 for ; Sat, 25 Mar 2023 08:03:20 +0000 (UTC) Received: from mailout04.t-online.de (mailout04.t-online.de [194.25.134.18]) by mx.groups.io with SMTP id smtpd.web11.17411.1679731398936176853 for ; Sat, 25 Mar 2023 01:03:19 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=SPF record not found (domain: t-online.de, ip: 194.25.134.18, mailfrom: f_l_k@t-online.de) Received: from fwd74.dcpf.telekom.de (fwd74.aul.t-online.de [10.223.144.100]) by mailout04.t-online.de (Postfix) with SMTP id 515451E81E for ; Sat, 25 Mar 2023 09:03:17 +0100 (CET) Received: from flk-MS-7C91.fritz.box ([84.154.174.49]) by fwd74.t-online.de with (TLSv1.3:TLS_AES_256_GCM_SHA384 encrypted) esmtp id 1pfyrp-0RoPhh0; Sat, 25 Mar 2023 09:03:13 +0100 From: Markus Volk To: openembedded-devel@lists.openembedded.org Cc: Markus Volk Subject: [meta-gnome][PATCH 25/32] mutter: update 43.1 -> 44.0 Date: Sat, 25 Mar 2023 09:02:49 +0100 Message-Id: <20230325080256.923752-25-f_l_k@t-online.de> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230325080256.923752-1-f_l_k@t-online.de> References: <20230325080256.923752-1-f_l_k@t-online.de> MIME-Version: 1.0 X-TOI-EXPURGATEID: 150726::1679731393-8656CC08-F73361AC/0/0 CLEAN NORMAL X-TOI-MSGID: 93c6af0a-0c44-4ae0-82a6-16c253936bd7 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, 25 Mar 2023 08:03:20 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/101735 Signed-off-by: Markus Volk --- .../recipes-gnome/mutter/{mutter_43.1.bb => mutter_44.0.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta-gnome/recipes-gnome/mutter/{mutter_43.1.bb => mutter_44.0.bb} (96%) diff --git a/meta-gnome/recipes-gnome/mutter/mutter_43.1.bb b/meta-gnome/recipes-gnome/mutter/mutter_44.0.bb similarity index 96% rename from meta-gnome/recipes-gnome/mutter/mutter_43.1.bb rename to meta-gnome/recipes-gnome/mutter/mutter_44.0.bb index 9b764c666..e8d4d84a4 100644 --- a/meta-gnome/recipes-gnome/mutter/mutter_43.1.bb +++ b/meta-gnome/recipes-gnome/mutter/mutter_44.0.bb @@ -25,7 +25,7 @@ GNOMEBASEBUILDCLASS = "meson" inherit gnomebase gsettings gobject-introspection gettext features_check -SRC_URI[archive.sha256sum] = "f2f08b252783948a5ecc82f00e9e935a61ebbf8564844bdd92788ab44aa78264" +SRC_URI[archive.sha256sum] = "7214b07e13589ef7c1df553c7ed11a02798e43ada6c228913f4e7a666eefbac4" # x11 is still manadatory - see meson.build REQUIRED_DISTRO_FEATURES = "wayland x11 polkit" @@ -60,7 +60,7 @@ PACKAGECONFIG[sm] = "-Dsm=true, -Dsm=false, libsm" PACKAGECONFIG[profiler] = "-Dprofiler=true,-Dprofiler=false,sysprof" PACKAGECONFIG[startup-notification] = "-Dstartup_notification=true, -Dstartup_notification=false, startup-notification, startup-notification" -MUTTER_API_NAME = "mutter-11" +MUTTER_API_NAME = "mutter-12" do_install:append() { # Add gir links in standard paths. That makes dependents life much easier From patchwork Sat Mar 25 08:02:50 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markus Volk X-Patchwork-Id: 21769 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 DA784C77B7F for ; Sat, 25 Mar 2023 08:03:20 +0000 (UTC) Received: from mailout04.t-online.de (mailout04.t-online.de [194.25.134.18]) by mx.groups.io with SMTP id smtpd.web11.17414.1679731399688411659 for ; Sat, 25 Mar 2023 01:03:20 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=SPF record not found (domain: t-online.de, ip: 194.25.134.18, mailfrom: f_l_k@t-online.de) Received: from fwd74.dcpf.telekom.de (fwd74.aul.t-online.de [10.223.144.100]) by mailout04.t-online.de (Postfix) with SMTP id 5273B1E81F for ; Sat, 25 Mar 2023 09:03:17 +0100 (CET) Received: from flk-MS-7C91.fritz.box ([84.154.174.49]) by fwd74.t-online.de with (TLSv1.3:TLS_AES_256_GCM_SHA384 encrypted) esmtp id 1pfyrp-0RoPhi0; Sat, 25 Mar 2023 09:03:14 +0100 From: Markus Volk To: openembedded-devel@lists.openembedded.org Cc: Markus Volk Subject: [meta-gnome][PATCH 26/32] tracker-miners: update 3.4.2 -> 3.5.0 Date: Sat, 25 Mar 2023 09:02:50 +0100 Message-Id: <20230325080256.923752-26-f_l_k@t-online.de> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230325080256.923752-1-f_l_k@t-online.de> References: <20230325080256.923752-1-f_l_k@t-online.de> MIME-Version: 1.0 X-TOI-EXPURGATEID: 150726::1679731394-8656CC08-70275AE0/0/0 CLEAN NORMAL X-TOI-MSGID: c2f4c4da-c644-4bb1-bf45-af1ad5ad259f 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, 25 Mar 2023 08:03:20 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/101740 Signed-off-by: Markus Volk --- ...to-a-fixed-path-instead-of-a-host-pa.patch | 18 ++-------------- ...iners_3.4.2.bb => tracker-miners_3.5.0.bb} | 21 ++++++++++++------- 2 files changed, 15 insertions(+), 24 deletions(-) rename meta-gnome/recipes-gnome/tracker/{tracker-miners_3.4.2.bb => tracker-miners_3.5.0.bb} (75%) diff --git a/meta-gnome/recipes-gnome/tracker/tracker-miners/0001-Set-header-file-to-a-fixed-path-instead-of-a-host-pa.patch b/meta-gnome/recipes-gnome/tracker/tracker-miners/0001-Set-header-file-to-a-fixed-path-instead-of-a-host-pa.patch index 1332a9582..7a40ae338 100644 --- a/meta-gnome/recipes-gnome/tracker/tracker-miners/0001-Set-header-file-to-a-fixed-path-instead-of-a-host-pa.patch +++ b/meta-gnome/recipes-gnome/tracker/tracker-miners/0001-Set-header-file-to-a-fixed-path-instead-of-a-host-pa.patch @@ -7,22 +7,8 @@ Upstream-Status: Inappropriate [embedded specific] Signed-off-by: Lei Maohui --- - src/libtracker-miner/tracker-miner-enum-types.c.template | 2 +- - .../tracker-miners-enum-types.c.template | 2 +- - 2 files changed, 2 insertions(+), 2 deletions(-) - -diff --git a/src/libtracker-miner/tracker-miner-enum-types.c.template b/src/libtracker-miner/tracker-miner-enum-types.c.template -index 7be7a01..46a4dc9 100644 ---- a/src/libtracker-miner/tracker-miner-enum-types.c.template -+++ b/src/libtracker-miner/tracker-miner-enum-types.c.template -@@ -7,7 +7,7 @@ - - /*** BEGIN file-production ***/ - /* enumerations from "@basename@" */ --#include "@filename@" -+#include "tracker-miner-enums.h" - /*** END file-production ***/ - + src/libtracker-miners-common/tracker-miner-enum-types.c.template | 1 +- + 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/libtracker-miners-common/tracker-miners-enum-types.c.template b/src/libtracker-miners-common/tracker-miners-enum-types.c.template index c712dda..cb449e2 100644 diff --git a/meta-gnome/recipes-gnome/tracker/tracker-miners_3.4.2.bb b/meta-gnome/recipes-gnome/tracker/tracker-miners_3.5.0.bb similarity index 75% rename from meta-gnome/recipes-gnome/tracker/tracker-miners_3.4.2.bb rename to meta-gnome/recipes-gnome/tracker/tracker-miners_3.5.0.bb index cbd1d0ddb..d093697c1 100644 --- a/meta-gnome/recipes-gnome/tracker/tracker-miners_3.4.2.bb +++ b/meta-gnome/recipes-gnome/tracker/tracker-miners_3.5.0.bb @@ -16,10 +16,9 @@ GNOMEBASEBUILDCLASS = "meson" inherit gnomebase gsettings gobject-introspection vala bash-completion features_check SRC_URI += "file://0001-meson.build-Just-warn-if-we-build-without-libseccomp.patch \ - file://0001-Set-header-file-to-a-fixed-path-instead-of-a-host-pa.patch \ + file://0001-Set-header-file-to-a-fixed-path-instead-of-a-host-pa.patch \ " - -SRC_URI[archive.sha256sum] = "101e3608f1c28bfed8ae25522f7a720b559f889a76e280afbe50a4d8b064f92c" +SRC_URI[archive.sha256sum] = "17966603dc432a98526b490586a48acd7f9f59935f7895dfc51729a46a6901a3" # gobject-introspection is mandatory and cannot be configured REQUIRED_DISTRO_FEATURES = "gobject-introspection-data" @@ -36,25 +35,31 @@ PACKAGECONFIG ??= " \ pdf \ png \ tiff \ + raw \ xml \ ${@bb.utils.filter('DISTRO_FEATURES', 'seccomp', d)} \ + battery \ + networkmanager \ " PACKAGECONFIG[battery] = "-Dbattery_detection=upower,-Dbattery_detection=none,upower" -PACKAGECONFIG[ffmpeg] = ",,ffmpeg" +PACKAGECONFIG[cue] = "-Dcue=enabled,-Dcue=disabled,libcue" +PACKAGECONFIG[ffmpeg] = "-Dgeneric_media_extractor=libav,,ffmpeg" PACKAGECONFIG[gexiv2] = ",,gexiv2" -PACKAGECONFIG[gstreamer] = ",,gstreamer1.0 gstreamer1.0-plugins-base" -PACKAGECONFIG[gupnp] = ",,gupnp-dlna" +PACKAGECONFIG[gstreamer] = "-Dgeneric_media_extractor=gstreamer,,gstreamer1.0 gstreamer1.0-plugins-base" +PACKAGECONFIG[gupnp] = "-Dgstreamer_backend=gupnp,,gupnp-dlna" PACKAGECONFIG[gif] = "-Dgif=enabled,-Dgif=disabled,giflib" -PACKAGECONFIG[icu] = ",,icu" +PACKAGECONFIG[icu] = "-Dcharset_detection=icu,,icu" +PACKAGECONFIG[iso] = "-Diso=enabled,-Diso=disabled,libosinfo" PACKAGECONFIG[jpeg] = "-Djpeg=enabled,-Djpeg=disabled,jpeg" PACKAGECONFIG[libexif] = "-Dexif=enabled,-Dexif=disabled,libexif" PACKAGECONFIG[libgsf] = "-Dgsf=enabled,-Dgsf=disabled,libgsf" PACKAGECONFIG[pdf] = "-Dpdf=enabled,-Dpdf=disabled,poppler" PACKAGECONFIG[png] = "-Dpng=enabled,-Dpng=disabled,libpng" PACKAGECONFIG[tiff] = "-Dtiff=enabled,-Dtiff=disabled,tiff" +PACKAGECONFIG[raw] = "-Draw=enabled,-Draw=disabled,libraw" PACKAGECONFIG[xml] = "-Dxml=enabled,-Dxml=disabled,libxml2" -PACKAGECONFIG[networkmanager] = "-Dnetwork_manager=enabled,-Dnetwork_manager=disabled,networkmanger" +PACKAGECONFIG[networkmanager] = "-Dnetwork_manager=enabled,-Dnetwork_manager=disabled,networkmanager" # For security reasons it is strongly recommended to set add meta-security in # your layers and 'libseccomp' to PACKAGECONFIG". From patchwork Sat Mar 25 08:02:51 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markus Volk X-Patchwork-Id: 21766 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 E3E05C7EE22 for ; Sat, 25 Mar 2023 08:03:20 +0000 (UTC) Received: from mailout04.t-online.de (mailout04.t-online.de [194.25.134.18]) by mx.groups.io with SMTP id smtpd.web10.17464.1679731399688605546 for ; Sat, 25 Mar 2023 01:03:20 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=SPF record not found (domain: t-online.de, ip: 194.25.134.18, mailfrom: f_l_k@t-online.de) Received: from fwd74.dcpf.telekom.de (fwd74.aul.t-online.de [10.223.144.100]) by mailout04.t-online.de (Postfix) with SMTP id 531691E820 for ; Sat, 25 Mar 2023 09:03:17 +0100 (CET) Received: from flk-MS-7C91.fritz.box ([84.154.174.49]) by fwd74.t-online.de with (TLSv1.3:TLS_AES_256_GCM_SHA384 encrypted) esmtp id 1pfyrq-0RoPhj0; Sat, 25 Mar 2023 09:03:14 +0100 From: Markus Volk To: openembedded-devel@lists.openembedded.org Cc: Markus Volk Subject: [meta-gnome][PATCH 27/32] zenity: update 3.43.0 -> 3.44.0 Date: Sat, 25 Mar 2023 09:02:51 +0100 Message-Id: <20230325080256.923752-27-f_l_k@t-online.de> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230325080256.923752-1-f_l_k@t-online.de> References: <20230325080256.923752-1-f_l_k@t-online.de> MIME-Version: 1.0 X-TOI-EXPURGATEID: 150726::1679731394-8656CC08-C5296D0D/0/0 CLEAN NORMAL X-TOI-MSGID: d2737e20-b222-4bc7-94cc-906423acdf33 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, 25 Mar 2023 08:03:20 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/101741 Signed-off-by: Markus Volk --- .../zenity/{zenity_3.43.0.bb => zenity_3.44.0.bb} | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) rename meta-gnome/recipes-gnome/zenity/{zenity_3.43.0.bb => zenity_3.44.0.bb} (62%) diff --git a/meta-gnome/recipes-gnome/zenity/zenity_3.43.0.bb b/meta-gnome/recipes-gnome/zenity/zenity_3.44.0.bb similarity index 62% rename from meta-gnome/recipes-gnome/zenity/zenity_3.43.0.bb rename to meta-gnome/recipes-gnome/zenity/zenity_3.44.0.bb index 195e139e5..72d93df42 100644 --- a/meta-gnome/recipes-gnome/zenity/zenity_3.43.0.bb +++ b/meta-gnome/recipes-gnome/zenity/zenity_3.44.0.bb @@ -5,21 +5,24 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c" GNOMEBASEBUILDCLASS = "meson" -inherit gnomebase pkgconfig itstool gnome-help features_check gettext +inherit gnomebase pkgconfig itstool gtk-icon-cache features_check gettext DEPENDS = " \ - yelp-tools-native \ + desktop-file-utils-native \ + hicolor-icon-theme \ gtk+3 \ + gtk+3-native \ " ANY_OF_DISTRO_FEATURES = "${GTK3DISTROFEATURES}" -SRC_URI[archive.sha256sum] = "b0d7ca1e0c1868fa18f05c210260d8a7be1f08ee13b7f5cfdbab9b61fa16f833" +SRC_URI[archive.sha256sum] = "c15582301ed90b9d42ce521dbccf99a989f22f12041bdd5279c6636da99ebf65" SRC_URI += "file://0001-Harcode-shebang-to-avoid-pointing-to-build-system-s-.patch" -PACKAGECONFIG[libnotify] = "-Dlibnotify=true,-Dlibnotify=false,libnotify" -PACKAGECONFIG[webkitgtk] = "-Dwebkitgtk=true,-Dwebkitgtk=false,webkitgtk" +PACKAGECONFIG ?= "webkitgtk" +PACKAGECONFIG[webkitgtk] = "-Dwebkitgtk=true,-Dwebkitgtk=false,webkitgtk-4" PACKAGES =+ "${PN}-gdialog" FILES:${PN}-gdialog = "${bindir}/gdialog" +FILES:${PN}-doc = "${datadir}/man ${datadir}/help" RDEPENDS:${PN}-gdialog += "perl" From patchwork Sat Mar 25 08:02:52 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markus Volk X-Patchwork-Id: 21739 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 0EFADC6FD20 for ; Sat, 25 Mar 2023 08:03:20 +0000 (UTC) Received: from mailout06.t-online.de (mailout06.t-online.de [194.25.134.19]) by mx.groups.io with SMTP id smtpd.web11.17412.1679731399134406471 for ; Sat, 25 Mar 2023 01:03:19 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=SPF record not found (domain: t-online.de, ip: 194.25.134.19, mailfrom: f_l_k@t-online.de) Received: from fwd74.dcpf.telekom.de (fwd74.aul.t-online.de [10.223.144.100]) by mailout06.t-online.de (Postfix) with SMTP id 5343222353 for ; Sat, 25 Mar 2023 09:03:17 +0100 (CET) Received: from flk-MS-7C91.fritz.box ([84.154.174.49]) by fwd74.t-online.de with (TLSv1.3:TLS_AES_256_GCM_SHA384 encrypted) esmtp id 1pfyrq-0RoPhk0; Sat, 25 Mar 2023 09:03:14 +0100 From: Markus Volk To: openembedded-devel@lists.openembedded.org Cc: Markus Volk Subject: [meta-gnome][PATCH 28/32] yelp: build with webkitgtk-4 Date: Sat, 25 Mar 2023 09:02:52 +0100 Message-Id: <20230325080256.923752-28-f_l_k@t-online.de> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230325080256.923752-1-f_l_k@t-online.de> References: <20230325080256.923752-1-f_l_k@t-online.de> MIME-Version: 1.0 X-TOI-EXPURGATEID: 150726::1679731394-8656CC08-D27EC600/0/0 CLEAN NORMAL X-TOI-MSGID: bf234fc1-bb54-4541-92d6-98f839f0845f 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, 25 Mar 2023 08:03:20 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/101736 Signed-off-by: Markus Volk --- meta-gnome/recipes-gnome/yelp/yelp_42.2.bb | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/meta-gnome/recipes-gnome/yelp/yelp_42.2.bb b/meta-gnome/recipes-gnome/yelp/yelp_42.2.bb index 200ed0f70..8064ab26e 100644 --- a/meta-gnome/recipes-gnome/yelp/yelp_42.2.bb +++ b/meta-gnome/recipes-gnome/yelp/yelp_42.2.bb @@ -16,18 +16,13 @@ DEPENDS += " \ glib-2.0-native \ gtk+3 \ appstream-glib \ + libsoup \ libxslt \ sqlite3 \ libhandy \ - webkitgtk \ + webkitgtk-4 \ yelp-xsl \ " -PACKAGECONFIG_SOUP ?= "soup3" -PACKAGECONFIG ??= "${PACKAGECONFIG_SOUP}" - -PACKAGECONFIG[soup2] = "--with-webkit2gtk-4-0,," -PACKAGECONFIG[soup3] = ",--with-webkit2gtk-4-0," - do_configure:prepend() { export ITSTOOL=${STAGING_BINDIR_NATIVE}/itstool From patchwork Sat Mar 25 08:02:53 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markus Volk X-Patchwork-Id: 21764 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 C943EC77B7D for ; Sat, 25 Mar 2023 08:03:20 +0000 (UTC) Received: from mailout06.t-online.de (mailout06.t-online.de [194.25.134.19]) by mx.groups.io with SMTP id smtpd.web10.17462.1679731399438666421 for ; Sat, 25 Mar 2023 01:03:19 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=SPF record not found (domain: t-online.de, ip: 194.25.134.19, mailfrom: f_l_k@t-online.de) Received: from fwd74.dcpf.telekom.de (fwd74.aul.t-online.de [10.223.144.100]) by mailout06.t-online.de (Postfix) with SMTP id 53DA922355 for ; Sat, 25 Mar 2023 09:03:17 +0100 (CET) Received: from flk-MS-7C91.fritz.box ([84.154.174.49]) by fwd74.t-online.de with (TLSv1.3:TLS_AES_256_GCM_SHA384 encrypted) esmtp id 1pfyrq-0RoPhl0; Sat, 25 Mar 2023 09:03:14 +0100 From: Markus Volk To: openembedded-devel@lists.openembedded.org Cc: Markus Volk Subject: [meta-gnome][PATCH 29/32] wxwidgets: build with webkitgtk-4 Date: Sat, 25 Mar 2023 09:02:53 +0100 Message-Id: <20230325080256.923752-29-f_l_k@t-online.de> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230325080256.923752-1-f_l_k@t-online.de> References: <20230325080256.923752-1-f_l_k@t-online.de> MIME-Version: 1.0 X-TOI-EXPURGATEID: 150726::1679731394-8656CC08-BB81B136/0/0 CLEAN NORMAL X-TOI-MSGID: ac7719d9-f784-4932-898c-28debf683276 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, 25 Mar 2023 08:03:20 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/101738 Signed-off-by: Markus Volk --- meta-oe/recipes-extended/wxwidgets/wxwidgets_3.2.1.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-oe/recipes-extended/wxwidgets/wxwidgets_3.2.1.bb b/meta-oe/recipes-extended/wxwidgets/wxwidgets_3.2.1.bb index 39b6a2bc7..159b28e73 100644 --- a/meta-oe/recipes-extended/wxwidgets/wxwidgets_3.2.1.bb +++ b/meta-oe/recipes-extended/wxwidgets/wxwidgets_3.2.1.bb @@ -74,7 +74,7 @@ PACKAGECONFIG[lzma] = "-DwxUSE_LIBLZMA=ON,-DwxUSE_LIBLZMA=OFF,xz" PACKAGECONFIG[mspack] = "-DwxUSE_LIBMSPACK=ON,-DwxUSE_LIBMSPACK=OFF,libmspack" PACKAGECONFIG[opengl] = "-DwxUSE_OPENGL=ON,-DwxUSE_OPENGL=OFF,libglu" PACKAGECONFIG[sdl_audio] = "-DwxUSE_LIBSDL=ON,-DwxUSE_LIBSDL=OFF,libsdl2" -PACKAGECONFIG[webkit] = "-DwxUSE_WEBVIEW_WEBKIT=ON,-DwxUSE_WEBVIEW_WEBKIT=OFF,webkitgtk,,,no_gui" +PACKAGECONFIG[webkit] = "-DwxUSE_WEBVIEW_WEBKIT=ON,-DwxUSE_WEBVIEW_WEBKIT=OFF,webkitgtk-4,,,no_gui" PACKAGECONFIG[curl] = "-DwxUSE_WEBREQUEST_CURL=ON,-DwxUSE_WEBREQUEST_CURL=OFF,curl" # Support LFS unconditionally From patchwork Sat Mar 25 08:02:54 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markus Volk X-Patchwork-Id: 21767 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 D3718C7EE20 for ; Sat, 25 Mar 2023 08:03:20 +0000 (UTC) Received: from mailout06.t-online.de (mailout06.t-online.de [194.25.134.19]) by mx.groups.io with SMTP id smtpd.web10.17463.1679731399519865179 for ; Sat, 25 Mar 2023 01:03:19 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=SPF record not found (domain: t-online.de, ip: 194.25.134.19, mailfrom: f_l_k@t-online.de) Received: from fwd74.dcpf.telekom.de (fwd74.aul.t-online.de [10.223.144.100]) by mailout06.t-online.de (Postfix) with SMTP id 5722E22357 for ; Sat, 25 Mar 2023 09:03:17 +0100 (CET) Received: from flk-MS-7C91.fritz.box ([84.154.174.49]) by fwd74.t-online.de with (TLSv1.3:TLS_AES_256_GCM_SHA384 encrypted) esmtp id 1pfyrq-0RoPhm0; Sat, 25 Mar 2023 09:03:14 +0100 From: Markus Volk To: openembedded-devel@lists.openembedded.org Cc: Markus Volk Subject: [meta-gnome][PATCH 30/32] surf: build with webkitgtk-4 Date: Sat, 25 Mar 2023 09:02:54 +0100 Message-Id: <20230325080256.923752-30-f_l_k@t-online.de> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230325080256.923752-1-f_l_k@t-online.de> References: <20230325080256.923752-1-f_l_k@t-online.de> MIME-Version: 1.0 X-TOI-EXPURGATEID: 150726::1679731394-85D6DC08-4A4CFD19/0/0 CLEAN NORMAL X-TOI-MSGID: 78b75102-256f-4475-944c-920b46147a0b 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, 25 Mar 2023 08:03:20 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/101739 Signed-off-by: Markus Volk --- meta-oe/recipes-graphics/surf/surf_2.1.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-oe/recipes-graphics/surf/surf_2.1.bb b/meta-oe/recipes-graphics/surf/surf_2.1.bb index 7523ed587..a3c270e0e 100644 --- a/meta-oe/recipes-graphics/surf/surf_2.1.bb +++ b/meta-oe/recipes-graphics/surf/surf_2.1.bb @@ -5,7 +5,7 @@ SECTION = "x11/graphics" LICENSE = "MIT" LIC_FILES_CHKSUM = "file://LICENSE;md5=2a6f86d002ae9ae1eb1ccc466289f146" -DEPENDS = "webkitgtk gtk+3 glib-2.0 gcr3" +DEPENDS = "webkitgtk-4 gtk+3 glib-2.0 gcr3" REQUIRED_DISTRO_FEATURES = "x11 opengl" From patchwork Sat Mar 25 08:02:55 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markus Volk X-Patchwork-Id: 21765 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 DB752C7619A for ; Sat, 25 Mar 2023 08:03:30 +0000 (UTC) Received: from mailout04.t-online.de (mailout04.t-online.de [194.25.134.18]) by mx.groups.io with SMTP id smtpd.web11.17415.1679731400715979555 for ; Sat, 25 Mar 2023 01:03:21 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=SPF record not found (domain: t-online.de, ip: 194.25.134.18, mailfrom: f_l_k@t-online.de) Received: from fwd74.dcpf.telekom.de (fwd74.aul.t-online.de [10.223.144.100]) by mailout04.t-online.de (Postfix) with SMTP id 5818A1E822 for ; Sat, 25 Mar 2023 09:03:17 +0100 (CET) Received: from flk-MS-7C91.fritz.box ([84.154.174.49]) by fwd74.t-online.de with (TLSv1.3:TLS_AES_256_GCM_SHA384 encrypted) esmtp id 1pfyrq-0RoPhn0; Sat, 25 Mar 2023 09:03:14 +0100 From: Markus Volk To: openembedded-devel@lists.openembedded.org Cc: Markus Volk Subject: [meta-gnome][PATCH 31/32] geary: build with webkitgtk-4 Date: Sat, 25 Mar 2023 09:02:55 +0100 Message-Id: <20230325080256.923752-31-f_l_k@t-online.de> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230325080256.923752-1-f_l_k@t-online.de> References: <20230325080256.923752-1-f_l_k@t-online.de> MIME-Version: 1.0 X-TOI-EXPURGATEID: 150726::1679731394-85D6DC08-F21F98D9/0/0 CLEAN NORMAL X-TOI-MSGID: c025dce2-9c0a-485f-a5d2-a1e0899a51c8 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, 25 Mar 2023 08:03:30 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/101742 Signed-off-by: Markus Volk --- meta-gnome/recipes-connectivity/geary/geary_43.0.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-gnome/recipes-connectivity/geary/geary_43.0.bb b/meta-gnome/recipes-connectivity/geary/geary_43.0.bb index 08899fd4a..edbf4032e 100644 --- a/meta-gnome/recipes-connectivity/geary/geary_43.0.bb +++ b/meta-gnome/recipes-connectivity/geary/geary_43.0.bb @@ -26,7 +26,7 @@ DEPENDS = " \ libstemmer \ libxml2 \ sqlite3 \ - webkitgtk \ + webkitgtk-4 \ " RDEPENDS:${PN} = "gnome-keyring" From patchwork Sat Mar 25 08:02:56 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markus Volk X-Patchwork-Id: 21768 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 D3AF2C6FD1C for ; Sat, 25 Mar 2023 08:03:30 +0000 (UTC) Received: from mailout04.t-online.de (mailout04.t-online.de [194.25.134.18]) by mx.groups.io with SMTP id smtpd.web11.17416.1679731400787586003 for ; Sat, 25 Mar 2023 01:03:21 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=SPF record not found (domain: t-online.de, ip: 194.25.134.18, mailfrom: f_l_k@t-online.de) Received: from fwd74.dcpf.telekom.de (fwd74.aul.t-online.de [10.223.144.100]) by mailout04.t-online.de (Postfix) with SMTP id 57A051E821 for ; Sat, 25 Mar 2023 09:03:17 +0100 (CET) Received: from flk-MS-7C91.fritz.box ([84.154.174.49]) by fwd74.t-online.de with (TLSv1.3:TLS_AES_256_GCM_SHA384 encrypted) esmtp id 1pfyrq-0RoPho0; Sat, 25 Mar 2023 09:03:15 +0100 From: Markus Volk To: openembedded-devel@lists.openembedded.org Cc: Markus Volk Subject: [meta-gnome][PATCH 32/32] xdg-desktop-portal-gnome: update 43.1 -> 44.0 Date: Sat, 25 Mar 2023 09:02:56 +0100 Message-Id: <20230325080256.923752-32-f_l_k@t-online.de> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230325080256.923752-1-f_l_k@t-online.de> References: <20230325080256.923752-1-f_l_k@t-online.de> MIME-Version: 1.0 X-TOI-EXPURGATEID: 150726::1679731395-85D6DC08-816C4200/0/0 CLEAN NORMAL X-TOI-MSGID: 8daf122f-3521-4aec-8c9e-14496c4b3f87 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, 25 Mar 2023 08:03:30 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/101743 Signed-off-by: Markus Volk --- ...portal-gnome_43.1.bb => xdg-desktop-portal-gnome_44.0.bb} | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) rename meta-gnome/recipes-support/xdg-desktop-portal/{xdg-desktop-portal-gnome_43.1.bb => xdg-desktop-portal-gnome_44.0.bb} (81%) diff --git a/meta-gnome/recipes-support/xdg-desktop-portal/xdg-desktop-portal-gnome_43.1.bb b/meta-gnome/recipes-support/xdg-desktop-portal/xdg-desktop-portal-gnome_44.0.bb similarity index 81% rename from meta-gnome/recipes-support/xdg-desktop-portal/xdg-desktop-portal-gnome_43.1.bb rename to meta-gnome/recipes-support/xdg-desktop-portal/xdg-desktop-portal-gnome_44.0.bb index 050ce1a04..c92037d6e 100644 --- a/meta-gnome/recipes-support/xdg-desktop-portal/xdg-desktop-portal-gnome_43.1.bb +++ b/meta-gnome/recipes-support/xdg-desktop-portal/xdg-desktop-portal-gnome_44.0.bb @@ -24,10 +24,11 @@ REQUIRED_DISTRO_FEATURES = "polkit" SRC_URI = "git://gitlab.gnome.org/GNOME/xdg-desktop-portal-gnome.git;protocol=https;nobranch=1" S = "${WORKDIR}/git" -SRCREV = "4fd5a8bf16b01c78ed19764415cb26d29aaf7eab" +SRCREV = "8e1c4fd928be500208ca1df62441a56e2569bfb8" -PACKAGECONFIG ?= "" +PACKAGECONFIG ?= "screenshot screencast ${@bb.utils.filter('DISTRO_FEATURES', 'wayland', d)}" +PACKAGECONFIG[wayland] = ",,wayland-native" PACKAGECONFIG[screenshot] = ",,,gnome-shell" PACKAGECONFIG[screencast] = ",,,mutter"