Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package gnome-software for openSUSE:Factory checked in at 2023-02-11 22:20:16 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/gnome-software (Old) and /work/SRC/openSUSE:Factory/.gnome-software.new.1848 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "gnome-software" Sat Feb 11 22:20:16 2023 rev:104 rq:1064286 version:43.4 Changes: -------- --- /work/SRC/openSUSE:Factory/gnome-software/gnome-software.changes 2023-01-20 17:38:01.080301465 +0100 +++ /work/SRC/openSUSE:Factory/.gnome-software.new.1848/gnome-software.changes 2023-02-11 22:20:17.340111008 +0100 @@ -1,0 +2,7 @@ +Fri Feb 10 08:43:20 UTC 2023 - Bjørn Lie <bjorn....@gmail.com> + +- Update to version 43.4: + + Stop cancelled search in appstream data early. + + Lookup for appstream-provided icons in more directories. + +------------------------------------------------------------------- Old: ---- gnome-software-43.3.tar.xz New: ---- gnome-software-43.4.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ gnome-software.spec ++++++ --- /var/tmp/diff_new_pack.cGr2LN/_old 2023-02-11 22:20:18.808119992 +0100 +++ /var/tmp/diff_new_pack.cGr2LN/_new 2023-02-11 22:20:18.812120016 +0100 @@ -19,7 +19,7 @@ %define gs_plugin_api 19 Name: gnome-software -Version: 43.3 +Version: 43.4 Release: 0 Summary: GNOME Software Store License: GPL-2.0-or-later ++++++ gnome-software-43.3.tar.xz -> gnome-software-43.4.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gnome-software-43.3/NEWS new/gnome-software-43.4/NEWS --- old/gnome-software-43.3/NEWS 2023-01-06 18:04:47.000000000 +0100 +++ new/gnome-software-43.4/NEWS 2023-02-10 08:57:26.000000000 +0100 @@ -1,3 +1,11 @@ +Version 43.4 +~~~~~~~~~~~~ +Released: 2023-02-10 + +This is a stable release with the following changes: + * Stop cancelled search in appstream data early + * Lookup for appstream-provided icons in more directories + Version 43.3 ~~~~~~~~~~~~ Released: 2023-01-06 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gnome-software-43.3/data/metainfo/org.gnome.Software.metainfo.xml.in new/gnome-software-43.4/data/metainfo/org.gnome.Software.metainfo.xml.in --- old/gnome-software-43.3/data/metainfo/org.gnome.Software.metainfo.xml.in 2023-01-06 18:04:47.000000000 +0100 +++ new/gnome-software-43.4/data/metainfo/org.gnome.Software.metainfo.xml.in 2023-02-10 08:57:26.000000000 +0100 @@ -66,6 +66,15 @@ Validate with `appstreamcli validate *.metainfo.xml` --> <releases> + <release date="2023-02-10" version="43.4" type="stable"> + <description> + <p>This is a stable release with the following changes:</p> + <ul> + <li>Stop cancelled search in appstream data early</li> + <li>Lookup for appstream-provided icons in more directories</li> + </ul> + </description> + </release> <release date="2023-01-06" version="43.3" type="stable"> <description> <p>This is a stable release with the following changes:</p> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gnome-software-43.3/lib/gs-appstream.c new/gnome-software-43.4/lib/gs-appstream.c --- old/gnome-software-43.3/lib/gs-appstream.c 2023-01-06 18:04:47.000000000 +0100 +++ new/gnome-software-43.4/lib/gs-appstream.c 2023-02-10 08:57:26.000000000 +0100 @@ -203,7 +203,10 @@ /* check format */ path = g_strsplit (tmp, "/", -1); npath = g_strv_length (path); - if (npath < 3 || !(g_strcmp0 (path[npath-2], "xmls") == 0 || g_strcmp0 (path[npath-2], "yaml") == 0)) + if (npath < 3 || + !(g_strcmp0 (path[npath-2], "xmls") == 0 || + g_strcmp0 (path[npath-2], "yaml") == 0 || + g_strcmp0 (path[npath-2], "xml") == 0)) return NULL; /* fix the new path */ @@ -1530,6 +1533,9 @@ } } } + + if (g_cancellable_set_error_if_cancelled (cancellable, error)) + return FALSE; } g_debug ("search took %fms", g_timer_elapsed (timer, NULL) * 1000); return TRUE; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gnome-software-43.3/lib/gs-plugin.c new/gnome-software-43.4/lib/gs-plugin.c --- old/gnome-software-43.3/lib/gs-plugin.c 2023-01-06 18:04:47.000000000 +0100 +++ new/gnome-software-43.4/lib/gs-plugin.c 2023-02-10 08:57:26.000000000 +0100 @@ -1092,7 +1092,7 @@ void gs_plugin_reload (GsPlugin *plugin) { - g_debug ("emitting ::reload in idle"); + g_debug ("emitting %s::reload in idle", gs_plugin_get_name (plugin)); g_idle_add_full (G_PRIORITY_DEFAULT_IDLE, gs_plugin_reload_cb, weak_ref_new (plugin), (GDestroyNotify) weak_ref_free); } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/gnome-software-43.3/meson.build new/gnome-software-43.4/meson.build --- old/gnome-software-43.3/meson.build 2023-01-06 18:04:47.000000000 +0100 +++ new/gnome-software-43.4/meson.build 2023-02-10 08:57:26.000000000 +0100 @@ -1,5 +1,5 @@ project('gnome-software', 'c', - version : '43.3', + version : '43.4', license : 'GPL-2.0+', default_options : ['warning_level=1', 'c_std=c11'], meson_version : '>=0.58.0'