Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package amtk for openSUSE:Factory checked in at 2023-05-03 12:56:30 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/amtk (Old) and /work/SRC/openSUSE:Factory/.amtk.new.1533 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "amtk" Wed May 3 12:56:30 2023 rev:13 rq:1084080 version:5.6.1 Changes: -------- --- /work/SRC/openSUSE:Factory/amtk/amtk.changes 2022-11-07 13:52:27.164058320 +0100 +++ /work/SRC/openSUSE:Factory/.amtk.new.1533/amtk.changes 2023-05-03 12:56:37.927605054 +0200 @@ -1,0 +2,6 @@ +Tue May 2 14:23:49 UTC 2023 - Dominique Leuenberger <[email protected]> + +- Update to version 5.6.1: + + Revert unintentional soname bump, set 'soversion' back to 0. + +------------------------------------------------------------------- Old: ---- amtk-5.6.0.tar.xz New: ---- amtk-5.6.1.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ amtk.spec ++++++ --- /var/tmp/diff_new_pack.VSrChe/_old 2023-05-03 12:56:38.503608439 +0200 +++ /var/tmp/diff_new_pack.VSrChe/_new 2023-05-03 12:56:38.511608486 +0200 @@ -1,7 +1,7 @@ # # spec file for package amtk # -# Copyright (c) 2022 SUSE LLC +# Copyright (c) 2023 SUSE LLC # Copyright (c) 2018 Luciano Santos, [email protected]. # # All modifications and additions to the file contributed by third parties @@ -18,9 +18,9 @@ %define api_ver 5 -%define libamtk libamtk-%{api_ver}-1 +%define libamtk libamtk-%{api_ver}-0 Name: amtk -Version: 5.6.0 +Version: 5.6.1 Release: 0 Summary: An Actions, Menus and Toolbars Kit License: LGPL-3.0-or-later ++++++ amtk-5.6.0.tar.xz -> amtk-5.6.1.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/amtk-5.6.0/NEWS new/amtk-5.6.1/NEWS --- old/amtk-5.6.0/NEWS 2022-11-02 23:20:04.000000000 +0100 +++ new/amtk-5.6.1/NEWS 2022-11-17 01:31:03.000000000 +0100 @@ -1,3 +1,7 @@ +News in 5.6.1, 2022-11-17 +------------------------- +* Revert unintentional soname bump, set 'soversion' back to 0. + News in 5.6.0, 2022-11-02 ------------------------- * No changes. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/amtk-5.6.0/amtk/meson.build new/amtk-5.6.1/amtk/meson.build --- old/amtk-5.6.0/amtk/meson.build 2022-11-02 23:20:04.000000000 +0100 +++ new/amtk-5.6.1/amtk/meson.build 2022-11-17 01:31:03.000000000 +0100 @@ -74,7 +74,7 @@ link_depends: symbol_map, # link_whole is not supported with MSVC, so we use extract_all_objects(). objects: amtk_static_lib.extract_all_objects(recursive: false), - version: AMTK_LT_VERSION, + soversion: 0, install: true ) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/amtk-5.6.0/meson.build new/amtk-5.6.1/meson.build --- old/amtk-5.6.0/meson.build 2022-11-02 23:20:04.000000000 +0100 +++ new/amtk-5.6.1/meson.build 2022-11-17 01:31:03.000000000 +0100 @@ -6,7 +6,7 @@ project( 'amtk', 'c', meson_version: '>= 0.53', - version: '5.6.0', + version: '5.6.1', default_options: ['warning_level=2'] ) @@ -14,30 +14,6 @@ PKG_CONFIG = import('pkgconfig') I18N = import('i18n') -# Libtool versioning -# -# For development releases (if the minor package version is odd), keep the same -# Libtool version. -# -# For a new minor stable release (when incrementing the minor package version -# to an even number), apply the following algorithm step by step: -# 1. If the library source code has changed at all since the last -# update, then increment REVISION. -# 2. If any exported functions or data have been added, removed, or -# changed since the last update, increment CURRENT and set REVISION -# to 0. -# 3. If any exported functions or data have been added since the last -# public release, increment AGE. -# 4. If any exported functions or data have been removed since the last -# public release, set AGE to 0. -# -# When incrementing the API version (usually for a new major package version), -# set CURRENT, REVISION and AGE to 0 since it's like a new library. -lt_current = 1 -lt_revision = 0 -lt_age = 1 -AMTK_LT_VERSION = '@0@.@1@.@2@'.format(lt_current, lt_revision, lt_age) - # API version, used for parallel installability. AMTK_API_VERSION = '5'
