Hello community, here is the log from the commit of package libdazzle for openSUSE:Factory checked in at 2019-04-17 10:06:20 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libdazzle (Old) and /work/SRC/openSUSE:Factory/.libdazzle.new.17052 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libdazzle" Wed Apr 17 10:06:20 2019 rev:14 rq:693294 version:3.32.1 Changes: -------- --- /work/SRC/openSUSE:Factory/libdazzle/libdazzle.changes 2019-04-01 12:30:33.341749247 +0200 +++ /work/SRC/openSUSE:Factory/.libdazzle.new.17052/libdazzle.changes 2019-04-17 10:06:21.822641165 +0200 @@ -1,0 +2,9 @@ +Thu Apr 11 09:29:19 UTC 2019 - Bjørn Lie <[email protected]> + +- Update to version 3.32.1: + + Fix subproject builds. + + Fix macOS symbol versioning. + + Fix missing error propagation for reaper task. + + Fix adwaita menu padding. + +------------------------------------------------------------------- Old: ---- libdazzle-3.32.0.tar.xz New: ---- libdazzle-3.32.1.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libdazzle.spec ++++++ --- /var/tmp/diff_new_pack.vmVnK0/_old 2019-04-17 10:06:23.986643663 +0200 +++ /var/tmp/diff_new_pack.vmVnK0/_new 2019-04-17 10:06:23.986643663 +0200 @@ -17,7 +17,7 @@ Name: libdazzle -Version: 3.32.0 +Version: 3.32.1 Release: 0 Summary: Collection of fancy features for GLib and Gtk+ License: GPL-3.0-or-later AND LGPL-2.1-or-later ++++++ libdazzle-3.32.0.tar.xz -> libdazzle-3.32.1.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libdazzle-3.32.0/NEWS new/libdazzle-3.32.1/NEWS --- old/libdazzle-3.32.0/NEWS 2019-03-13 08:10:57.000000000 +0100 +++ new/libdazzle-3.32.1/NEWS 2019-04-11 02:46:01.000000000 +0200 @@ -1,4 +1,15 @@ ============== +Version 3.32.1 +============== + +Changes in this release: + + • Fix subproject builds + • Fix macOS symbol versioning + • Fix missing error propagation for reaper task + • Fix adwaita menu padding + +============== Version 3.32.0 ============== diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libdazzle-3.32.0/data/themes/shared/shared-menus.css new/libdazzle-3.32.1/data/themes/shared/shared-menus.css --- old/libdazzle-3.32.0/data/themes/shared/shared-menus.css 2019-03-13 08:10:57.000000000 +0100 +++ new/libdazzle-3.32.1/data/themes/shared/shared-menus.css 2019-04-11 02:46:01.000000000 +0200 @@ -6,7 +6,7 @@ margin-left: 3px; } popover.dzlmenubutton > box { - margin: 15px 15px 15px 12px; + margin: 8px; } dzlmenubuttonsection:first-child separator { background: none; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libdazzle-3.32.0/meson.build new/libdazzle-3.32.1/meson.build --- old/libdazzle-3.32.0/meson.build 2019-03-13 08:10:57.000000000 +0100 +++ new/libdazzle-3.32.1/meson.build 2019-04-11 02:46:01.000000000 +0200 @@ -1,7 +1,7 @@ project('libdazzle', 'c', - version: '3.32.0', + version: '3.32.1', license: 'GPLv3+', - meson_version: '>= 0.47.2', + meson_version: '>= 0.49.0', default_options: [ 'warning_level=1', 'buildtype=debugoptimized', 'c_std=gnu11' ], ) @@ -26,6 +26,8 @@ revision = dazzle_interface_age libversion = '@0@.@1@.@2@'.format(soversion, current, revision) +darwin_versions = [current + 1, '@0@.@1@'.format(current + 1, revision)] + config_h = configuration_data() config_h.set_quoted('GETTEXT_PACKAGE', 'libdazzle') config_h.set_quoted('LOCALEDIR', join_paths(get_option('prefix'), get_option('localedir'))) @@ -135,8 +137,7 @@ ] if not get_option('buildtype').startswith('debug') # TODO: Maybe reuse 'b_ndebug' option - add_global_arguments(['-DG_DISABLE_CAST_CHECKS'], language: 'c') - release_args += [ '-DG_DISABLE_ASSERT' ] + release_args += [ '-DG_DISABLE_ASSERT', '-DG_DISABLE_CAST_CHECKS' ] test_link_args += [ '-Wl,-Bsymbolic', '-fno-plt', diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libdazzle-3.32.0/src/files/dzl-directory-reaper.c new/libdazzle-3.32.1/src/files/dzl-directory-reaper.c --- old/libdazzle-3.32.0/src/files/dzl-directory-reaper.c 2019-03-13 08:10:57.000000000 +0100 +++ new/libdazzle-3.32.1/src/files/dzl-directory-reaper.c 2019-04-11 02:46:01.000000000 +0200 @@ -254,6 +254,7 @@ /* If the directory does not exist, nothing to do */ if (g_error_matches (enum_error, G_IO_ERROR, G_IO_ERROR_NOT_FOUND)) return TRUE; + g_propagate_error (error, g_steal_pointer (&enum_error)); return FALSE; } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libdazzle-3.32.0/src/meson.build new/libdazzle-3.32.1/src/meson.build --- old/libdazzle-3.32.0/src/meson.build 2019-03-13 08:10:57.000000000 +0100 +++ new/libdazzle-3.32.1/src/meson.build 2019-04-11 02:46:01.000000000 +0200 @@ -100,7 +100,7 @@ libdazzle = shared_library( 'dazzle-' + apiversion, libdazzle_sources, - + darwin_versions: darwin_versions, soversion: 0, c_args: libdazzle_args + release_args, dependencies: libdazzle_deps, diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libdazzle-3.32.0/src/shortcuts/dzl-shortcut-chord.c new/libdazzle-3.32.1/src/shortcuts/dzl-shortcut-chord.c --- old/libdazzle-3.32.0/src/shortcuts/dzl-shortcut-chord.c 2019-03-13 08:10:57.000000000 +0100 +++ new/libdazzle-3.32.1/src/shortcuts/dzl-shortcut-chord.c 2019-04-11 02:46:01.000000000 +0200 @@ -86,7 +86,7 @@ } static gboolean -dzl_shortcut_chord_is_valid (DzlShortcutChord *self) +dzl_shortcut_chord_is_valid (const DzlShortcutChord *self) { g_assert (IS_SHORTCUT_CHORD (self));
