Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package AppStream for openSUSE:Factory checked in at 2023-03-14 18:15:53 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/AppStream (Old) and /work/SRC/openSUSE:Factory/.AppStream.new.31432 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "AppStream" Tue Mar 14 18:15:53 2023 rev:34 rq:1071181 version:0.16.1 Changes: -------- --- /work/SRC/openSUSE:Factory/AppStream/AppStream.changes 2023-03-01 16:13:50.502534531 +0100 +++ /work/SRC/openSUSE:Factory/.AppStream.new.31432/AppStream.changes 2023-03-14 18:16:04.055546720 +0100 @@ -1,0 +2,6 @@ +Mon Mar 13 10:23:15 UTC 2023 - Bjørn Lie <bjorn....@gmail.com> + +- Add upstream fix for new glib-2.76: + * bfa8fa6ac4ef645368a93384a6c16ac551a40922.patch + +------------------------------------------------------------------- New: ---- bfa8fa6ac4ef645368a93384a6c16ac551a40922.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ AppStream.spec ++++++ --- /var/tmp/diff_new_pack.lRHll5/_old 2023-03-14 18:16:04.755550462 +0100 +++ /var/tmp/diff_new_pack.lRHll5/_new 2023-03-14 18:16:04.779550590 +0100 @@ -33,6 +33,7 @@ Source1: http://www.freedesktop.org/software/appstream/releases/%{name}-%{version}.tar.xz.asc Source2: %{name}.keyring Patch0: support-meson0.59.patch +Patch1: https://github.com/ximion/appstream/commit/bfa8fa6ac4ef645368a93384a6c16ac551a40922.patch BuildRequires: cairo-devel BuildRequires: docbook-xsl-stylesheets BuildRequires: gdk-pixbuf-loader-rsvg ++++++ bfa8fa6ac4ef645368a93384a6c16ac551a40922.patch ++++++ >From bfa8fa6ac4ef645368a93384a6c16ac551a40922 Mon Sep 17 00:00:00 2001 From: Matthias Klumpp <matth...@tenstral.net> Date: Sun, 12 Mar 2023 17:36:11 +0100 Subject: [PATCH] Add missing standard::is-hidden attribute to file search enumerator Resolves: #470 --- src/as-utils.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/as-utils.c b/src/as-utils.c index 260f3cbf..b983e7ec 100644 --- a/src/as-utils.c +++ b/src/as-utils.c @@ -511,7 +511,12 @@ as_utils_find_files_matching (const gchar* dir, const gchar* pattern, gboolean r list = g_ptr_array_new_with_free_func (g_free); fdir = g_file_new_for_path (dir); - enumerator = g_file_enumerate_children (fdir, G_FILE_ATTRIBUTE_STANDARD_NAME, 0, NULL, &tmp_error); + enumerator = g_file_enumerate_children (fdir, + G_FILE_ATTRIBUTE_STANDARD_NAME "," + G_FILE_ATTRIBUTE_STANDARD_IS_HIDDEN, + 0, + NULL, + &tmp_error); if (tmp_error != NULL) goto out;