Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package libmirage for openSUSE:Factory checked in at 2024-08-18 18:20:16 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libmirage (Old) and /work/SRC/openSUSE:Factory/.libmirage.new.2698 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libmirage" Sun Aug 18 18:20:16 2024 rev:27 rq:1194551 version:3.2.8 Changes: -------- --- /work/SRC/openSUSE:Factory/libmirage/libmirage.changes 2023-12-28 23:05:24.867106528 +0100 +++ /work/SRC/openSUSE:Factory/.libmirage.new.2698/libmirage.changes 2024-08-18 18:20:37.687811629 +0200 @@ -1,0 +2,6 @@ +Sun Aug 18 13:00:04 UTC 2024 - Dirk Müller <dmuel...@suse.com> + +- update to 3.2.8: + * crash fix in cue filter + +------------------------------------------------------------------- Old: ---- libmirage-3.2.7.tar.xz New: ---- libmirage-3.2.8.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libmirage.spec ++++++ --- /var/tmp/diff_new_pack.mPdLDP/_old 2024-08-18 18:20:38.343838819 +0200 +++ /var/tmp/diff_new_pack.mPdLDP/_new 2024-08-18 18:20:38.347838985 +0200 @@ -1,7 +1,7 @@ # # spec file for package libmirage # -# Copyright (c) 2023 SUSE LLC +# Copyright (c) 2024 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -22,7 +22,7 @@ Summary: A CD-ROM image access library License: GPL-2.0-or-later Group: Development/Libraries/C and C++ -Version: 3.2.7 +Version: 3.2.8 Release: 0 URL: https://cdemu.sourceforge.io/about/libmirage/ #Git-Clone: https://github.com/cdemu/cdemu.git @@ -108,7 +108,7 @@ Summary: MIME type definitions and documentation for libmirage Group: Development/Libraries/C and C++ Requires(post): shared-mime-info -Requires(postun):shared-mime-info +Requires(postun): shared-mime-info BuildArch: noarch %description data ++++++ libmirage-3.2.7.tar.xz -> libmirage-3.2.8.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libmirage-3.2.7/CMakeLists.txt new/libmirage-3.2.8/CMakeLists.txt --- old/libmirage-3.2.7/CMakeLists.txt 2023-11-29 17:39:11.000000000 +0100 +++ new/libmirage-3.2.8/CMakeLists.txt 2024-07-08 20:43:55.000000000 +0200 @@ -1,5 +1,5 @@ cmake_minimum_required(VERSION 3.7) -project(libmirage VERSION 3.2.7 LANGUAGES C) +project(libmirage VERSION 3.2.8 LANGUAGES C) # Semantic versioning 2.0.0 (semver.org): # MAJOR is increased when backwards-incompatible changes are made to diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libmirage-3.2.7/README new/libmirage-3.2.8/README --- old/libmirage-3.2.7/README 2023-11-29 17:39:11.000000000 +0100 +++ new/libmirage-3.2.8/README 2024-07-08 20:43:55.000000000 +0200 @@ -1,5 +1,5 @@ libMirage -3.2.7 +3.2.8 ~~~~~ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libmirage-3.2.7/debian/changelog new/libmirage-3.2.8/debian/changelog --- old/libmirage-3.2.7/debian/changelog 2023-11-29 17:39:11.000000000 +0100 +++ new/libmirage-3.2.8/debian/changelog 2024-07-08 20:43:55.000000000 +0200 @@ -1,3 +1,3 @@ -libmirage (3.2.7-1) debian; urgency=low +libmirage (3.2.8-1) debian; urgency=low * Initial Release. Closes: #705409 -- Henrik Stokseth <hstok...@users.sourceforge.net> Sat, 05 Apr 2014 12:00:00 +0100 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/libmirage-3.2.7/images/image-cue/parser.c new/libmirage-3.2.8/images/image-cue/parser.c --- old/libmirage-3.2.7/images/image-cue/parser.c 2023-11-29 17:39:11.000000000 +0100 +++ new/libmirage-3.2.8/images/image-cue/parser.c 2024-07-08 20:43:55.000000000 +0200 @@ -468,6 +468,12 @@ which isn't indicated because only index 01 is used) */ self->priv->leadout_correction = leadout_length + 150; + GError *local_error = NULL; + if (!mirage_parser_cue_finish_last_track(self, &local_error)) { + MIRAGE_DEBUG(self, MIRAGE_DEBUG_WARNING, "%s: failed to finish last track for session previous to #%i: %s\n!", __debug__, number, local_error->message); + g_error_free(local_error); + } + /* Add new session, store the pointer but release the reference */ self->priv->cur_session = g_object_new(MIRAGE_TYPE_SESSION, NULL); mirage_disc_add_session_by_index(self->priv->disc, -1, self->priv->cur_session);