Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package folks for openSUSE:Factory checked in at 2022-03-28 16:58:18 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/folks (Old) and /work/SRC/openSUSE:Factory/.folks.new.1900 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "folks" Mon Mar 28 16:58:18 2022 rev:58 rq:964531 version:0.15.5 Changes: -------- --- /work/SRC/openSUSE:Factory/folks/folks.changes 2022-02-13 19:50:43.390161622 +0100 +++ /work/SRC/openSUSE:Factory/.folks.new.1900/folks.changes 2022-03-28 16:58:23.156792071 +0200 @@ -1,0 +2,10 @@ +Wed Mar 23 14:57:46 UTC 2022 - Bj??rn Lie <bjorn....@gmail.com> + +- Update to version 0.15.5: + + Bugs fixed: vapi: Add missing generic type argument. +- Drop glib2_gsettings_schema_requires macro from folks-data + sub-package, no longer needed. +- Drop c44d8e323affd7f1043f300f3325b358cd5b5f0b.patch: Fixed + upstream. + +------------------------------------------------------------------- Old: ---- c44d8e323affd7f1043f300f3325b358cd5b5f0b.patch folks-0.15.4.tar.xz New: ---- folks-0.15.5.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ folks.spec ++++++ --- /var/tmp/diff_new_pack.C4JmUr/_old 2022-03-28 16:58:24.712794184 +0200 +++ /var/tmp/diff_new_pack.C4JmUr/_new 2022-03-28 16:58:24.720794195 +0200 @@ -22,15 +22,13 @@ %define with_zeitgeist 0 Name: folks -Version: 0.15.4 +Version: 0.15.5 Release: 0 Summary: Library to create metacontacts from multiple sources License: LGPL-2.1-or-later Group: Development/Libraries/C and C++ URL: http://telepathy.freedesktop.org/wiki/Folks Source: https://download.gnome.org/sources/folks/0.15/%{name}-%{version}.tar.xz -# PATCH-FIX-UPSTREAM c44d8e323affd7f1043f300f3325b358cd5b5f0b.patch -- folks-generics: Add missing generic type argument -Patch: https://gitlab.gnome.org/GNOME/folks/-/commit/c44d8e323affd7f1043f300f3325b358cd5b5f0b.patch BuildRequires: gettext BuildRequires: gobject-introspection-devel @@ -73,7 +71,6 @@ %package data Summary: Data files for libfolks, a library to create metacontacts from many sources Group: System/Libraries -%glib2_gsettings_schema_requires Obsoletes: libfolks-data < %{version} Provides: libfolks-data = %{version} ++++++ folks-0.15.4.tar.xz -> folks-0.15.5.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/folks-0.15.4/NEWS new/folks-0.15.5/NEWS --- old/folks-0.15.4/NEWS 2022-01-17 22:10:43.000000000 +0100 +++ new/folks-0.15.5/NEWS 2022-03-23 13:39:19.000000000 +0100 @@ -1,3 +1,9 @@ +Overview of changes from libfolks 0.15.4 to libfolks 0.15.5 +=========================================================== + +Bugs fixed: + * vapi: Add missing generic type argument + Overview of changes from libfolks 0.15.3 to libfolks 0.15.4 =========================================================== diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/folks-0.15.4/folks/folks-generics.vapi new/folks-0.15.5/folks/folks-generics.vapi --- old/folks-0.15.4/folks/folks-generics.vapi 2022-01-17 22:10:43.000000000 +0100 +++ new/folks-0.15.5/folks/folks-generics.vapi 2022-03-23 13:39:19.000000000 +0100 @@ -37,7 +37,7 @@ internal SmallSet (owned Gee.HashDataFunc<G>? item_hash = null, owned Gee.EqualDataFunc<G>? item_equals = null); - internal static SmallSet<G> copy (Gee.Iterable<G> iterable, + internal static SmallSet<G> copy<G> (Gee.Iterable<G> iterable, owned Gee.HashDataFunc<G>? item_hash = null, owned Gee.EqualDataFunc<G>? item_equals = null); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/folks-0.15.4/folks/small-set.c new/folks-0.15.5/folks/small-set.c --- old/folks-0.15.4/folks/small-set.c 2022-01-17 22:10:43.000000000 +0100 +++ new/folks-0.15.5/folks/small-set.c 2022-03-23 13:39:19.000000000 +0100 @@ -337,7 +337,10 @@ * Returns: (transfer full): */ FolksSmallSet * -folks_small_set_copy (GeeIterable *iterable, +folks_small_set_copy (GType item_type, + GBoxedCopyFunc item_dup, + GDestroyNotify item_free, + GeeIterable *iterable, GeeHashDataFunc item_hash, gpointer item_hash_data, GDestroyNotify item_hash_data_free, @@ -347,10 +350,6 @@ { FolksSmallSet *self; GeeIterator *iter; - GeeTraversableIface *traversable_iface; - GType item_type; - GBoxedCopyFunc item_dup; - GDestroyNotify item_free; /* Deliberately not allowing for subclasses here: this class is not * subclassable, and it's slower if we do check for subclasses. */ @@ -376,12 +375,6 @@ return self; } - traversable_iface = GEE_TRAVERSABLE_GET_INTERFACE (iterable); - g_assert (traversable_iface != NULL); - item_type = traversable_iface->get_g_type ((GeeTraversable *) iterable); - item_dup = traversable_iface->get_g_dup_func ((GeeTraversable *) iterable); - item_free = traversable_iface->get_g_destroy_func ((GeeTraversable *) iterable); - self = folks_small_set_new (item_type, item_dup, item_free, item_hash, item_hash_data, item_hash_data_free, item_equals, item_equals_data, item_equals_data_free); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/folks-0.15.4/folks/small-set.h new/folks-0.15.5/folks/small-set.h --- old/folks-0.15.4/folks/small-set.h 2022-01-17 22:10:43.000000000 +0100 +++ new/folks-0.15.5/folks/small-set.h 2022-03-23 13:39:19.000000000 +0100 @@ -68,7 +68,10 @@ GBoxedCopyFunc item_dup, GDestroyNotify item_free); -FolksSmallSet *folks_small_set_copy (GeeIterable *iterable, +FolksSmallSet *folks_small_set_copy (GType item_type, + GBoxedCopyFunc item_dup, + GDestroyNotify item_free, + GeeIterable *iterable, GeeHashDataFunc item_hash, gpointer item_hash_data, GDestroyNotify item_hash_data_free, diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/folks-0.15.4/meson.build new/folks-0.15.5/meson.build --- old/folks-0.15.4/meson.build 2022-01-17 22:10:43.000000000 +0100 +++ new/folks-0.15.5/meson.build 2022-03-23 13:39:19.000000000 +0100 @@ -1,5 +1,5 @@ project('folks', [ 'vala', 'c' ], - version: '0.15.4', + version: '0.15.5', license: 'LGPL2.1+', meson_version: '>= 0.51', )