Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package libid3tag for openSUSE:Factory 
checked in at 2023-11-13 22:15:49
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/libid3tag (Old)
 and      /work/SRC/openSUSE:Factory/.libid3tag.new.17445 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "libid3tag"

Mon Nov 13 22:15:49 2023 rev:29 rq:1125224 version:0.16.3

Changes:
--------
--- /work/SRC/openSUSE:Factory/libid3tag/libid3tag.changes      2022-05-12 
22:57:40.596580605 +0200
+++ /work/SRC/openSUSE:Factory/.libid3tag.new.17445/libid3tag.changes   
2023-11-13 22:15:59.636729023 +0100
@@ -1,0 +2,8 @@
+Sat Nov 11 16:25:29 UTC 2023 - Dirk Müller <[email protected]>
+
+- update to 0.16.3:
+  * new upstream location
+  * Define a separate library soversion, which is set to 0 to
+    preserve ABI compatibility.
+
+-------------------------------------------------------------------

Old:
----
  libid3tag-0.16.2.tar.gz

New:
----
  libid3tag-0.16.3.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ libid3tag.spec ++++++
--- /var/tmp/diff_new_pack.QQDzhe/_old  2023-11-13 22:16:00.300753472 +0100
+++ /var/tmp/diff_new_pack.QQDzhe/_new  2023-11-13 22:16:00.300753472 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libid3tag
 #
-# Copyright (c) 2022 SUSE LLC
+# Copyright (c) 2023 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,15 +16,15 @@
 #
 
 
-%define lver 0_16_2
+%define lver 0
 Name:           libid3tag
-Version:        0.16.2
+Version:        0.16.3
 Release:        0
 Summary:        ID3 Tag Manipulation Library
 License:        GPL-2.0-or-later
 Group:          Development/Libraries/C and C++
-URL:            https://github.com/tenacityteam/libid3tag
-Source0:        
%{url}/archive/refs/tags/%{version}.tar.gz#/%{name}-%{version}.tar.gz
+URL:            https://codeberg.org/tenacityteam/libid3tag
+Source0:        %{url}/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
 Source1:        baselibs.conf
 BuildRequires:  c++_compiler
 BuildRequires:  cmake
@@ -54,7 +54,7 @@
 develop applications with libid3tag.
 
 %prep
-%setup -q
+%setup -q -n %{name}
 
 %build
 %cmake

++++++ libid3tag-0.16.2.tar.gz -> libid3tag-0.16.3.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libid3tag-0.16.2/CHANGES new/libid3tag/CHANGES
--- old/libid3tag-0.16.2/CHANGES        2022-05-03 05:56:29.000000000 +0200
+++ new/libid3tag/CHANGES       2023-09-24 03:52:54.000000000 +0200
@@ -6,6 +6,9 @@
 
 ===============================================================================
 
+Version 0.16.3
+  * Fix backward compatibility with libid3tag 0.15.1b.
+
 Version 0.16.2
   * Fix null pointer dereference in id3_ucs4_length (CVE-2017-11550)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libid3tag-0.16.2/CMakeLists.txt 
new/libid3tag/CMakeLists.txt
--- old/libid3tag-0.16.2/CMakeLists.txt 2022-05-03 05:56:29.000000000 +0200
+++ new/libid3tag/CMakeLists.txt        2023-09-24 03:52:54.000000000 +0200
@@ -1,8 +1,14 @@
 cmake_minimum_required(VERSION 3.1.0)
-project(id3tag VERSION 0.16.2)
+project(id3tag VERSION 0.16.3)
 
 option(BUILD_SHARED_LIBS "Build dynamic library" ON)
 
+# The new SOVERSION. This is 0.16.2 by default
+# The general policy is that minor versions of the library (e.g., 0.16.1,
+# 0.16.2) don't constitute an ABI breakage. Major versions (e.g., 0.17, 0.18)
+# do constitute an ABI breakage.
+set(LIBRARY_SOVERSION 0)
+
 include(GNUInstallDirs)
 
 #
@@ -40,7 +46,7 @@
 
 set_target_properties(id3tag PROPERTIES
   VERSION ${CMAKE_PROJECT_VERSION}
-  SOVERSION ${CMAKE_PROJECT_VERSION}
+  SOVERSION ${LIBRARY_SOVERSION}
 )
 
 include(CheckIncludeFile)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libid3tag-0.16.2/README new/libid3tag/README
--- old/libid3tag-0.16.2/README 2022-05-03 05:56:29.000000000 +0200
+++ new/libid3tag/README        2023-09-24 03:52:54.000000000 +0200
@@ -33,11 +33,11 @@
 
   Send inquiries, comments, bug reports, suggestions, patches, etc. to:
 
-      Underbit Technologies, Inc. <[email protected]>
+      https://codeberg.org/tenacityteam/libid3tag
 
-  See also the MAD home page on the Web:
+  See also Tenacity's homepage on the Web:
 
-      http://www.underbit.com/products/mad/
+      http://tenacityaudio.org
 
 ===============================================================================
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libid3tag-0.16.2/packaging/id3tag.pc.in 
new/libid3tag/packaging/id3tag.pc.in
--- old/libid3tag-0.16.2/packaging/id3tag.pc.in 2022-05-03 05:56:29.000000000 
+0200
+++ new/libid3tag/packaging/id3tag.pc.in        2023-09-24 03:52:54.000000000 
+0200
@@ -5,6 +5,6 @@
 Name: libid3tag
 Description: ID3 tag manipulation library for MP3 files
 Version: @CMAKE_PROJECT_VERSION@
-URL: https://github.com/tenacityteam/libid3tag
+URL: https://codeberg.org/tenacityteam/libid3tag
 Libs: -L${libdir} -lid3tag -lz
 Cflags: -I${includedir}

Reply via email to