Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package libburn for openSUSE:Factory checked in at 2025-04-11 16:45:47 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/libburn (Old) and /work/SRC/openSUSE:Factory/.libburn.new.1907 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "libburn" Fri Apr 11 16:45:47 2025 rev:10 rq:1268427 version:1.5.6 Changes: -------- --- /work/SRC/openSUSE:Factory/libburn/libburn.changes 2023-09-01 14:21:56.910094590 +0200 +++ /work/SRC/openSUSE:Factory/.libburn.new.1907/libburn.changes 2025-04-11 16:46:28.850472062 +0200 @@ -1,0 +2,6 @@ +Tue Apr 8 17:35:12 UTC 2025 - Friedrich Haubensak <hs...@mail.de> + +- add libburn-1.5.6-c23.patch from upstream to fix gcc15 compile + time error + +------------------------------------------------------------------- New: ---- libburn-1.5.6-c23.patch BETA DEBUG BEGIN: New: - add libburn-1.5.6-c23.patch from upstream to fix gcc15 compile time error BETA DEBUG END: ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ libburn.spec ++++++ --- /var/tmp/diff_new_pack.t8NSKJ/_old 2025-04-11 16:46:31.450581373 +0200 +++ /var/tmp/diff_new_pack.t8NSKJ/_new 2025-04-11 16:46:31.466582045 +0200 @@ -28,6 +28,8 @@ Source0: http://files.libburnia-project.org/releases/%{name}-%{version}.tar.gz Source1: http://files.libburnia-project.org/releases/%{name}-%{version}.tar.gz.asc Source2: %{name}.keyring +# PATCH-FIX-UPSTREAM +Patch1: libburn-1.5.6-c23.patch BuildRequires: doxygen BuildRequires: fdupes BuildRequires: pkgconfig @@ -63,7 +65,7 @@ its drives without using the normal block device I/O. %prep -%autosetup -n %{name}-%{basever} +%autosetup -n %{name}-%{basever} -p1 %build %configure --disable-static ++++++ libburn-1.5.6-c23.patch ++++++ bugs.gentoo.org/943701 dev.lovelyhq.com/libburnia/libburn/commit/d537f9d >From d537f9dd35282df834a311ead5f113af67d223b3 Mon Sep 17 00:00:00 2001 From: Thomas Schmitt <scdbac...@gmx.net> Date: Tue, 26 Nov 2024 23:02:03 +0100 Subject: [PATCH] Bug fix: Faulty signal handler prototype spoiled compilation under C23 --- test/poll.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/poll.c b/test/poll.c index 660f384..cd5ff90 100644 --- a/test/poll.c +++ b/test/poll.c @@ -14,7 +14,7 @@ static struct burn_drive_info *drives; static unsigned int n_drives; int NEXT; -static void catch_int () +static void catch_int (int signum) { NEXT = 1; }