From 321c2680b6eaf24e170a5b3fd06e1493fd1b5ba0 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sun, 19 Jan 2025 15:27:31 +0000 Subject: [PATCH 1/5] Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild --- xbiso.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xbiso.spec b/xbiso.spec index 9b4bd30..1fc5d0c 100644 --- a/xbiso.spec +++ b/xbiso.spec @@ -1,6 +1,6 @@ Name: xbiso Version: 0.6.1 -Release: 34%{?dist} +Release: 35%{?dist} Summary: ISO extraction utility for xdvdfs images # Automatically converted from old format: GPLv2+ - review is highly recommended. License: GPL-2.0-or-later @@ -39,6 +39,9 @@ make DESTDIR=$RPM_BUILD_ROOT install %{_bindir}/xbiso %changelog +* Sun Jan 19 2025 Fedora Release Engineering - 0.6.1-35 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild + * Fri Jul 26 2024 Miroslav Suchý - 0.6.1-34 - convert license to SPDX From e3bffcd366a1a13325e2c7e2448846718252c4aa Mon Sep 17 00:00:00 2001 From: Tom spot Callaway Date: Mon, 24 Feb 2025 16:58:41 -0500 Subject: [PATCH 2/5] fix empty function declarations to fix compile against C23 (gcc15) --- xbiso-c23.patch | 36 ++++++++++++++++++++++++++++++++++++ xbiso.spec | 7 ++++++- 2 files changed, 42 insertions(+), 1 deletion(-) create mode 100644 xbiso-c23.patch diff --git a/xbiso-c23.patch b/xbiso-c23.patch new file mode 100644 index 0000000..c378ea1 --- /dev/null +++ b/xbiso-c23.patch @@ -0,0 +1,36 @@ +diff -up xbiso-0.6.1/xbiso.c.c23 xbiso-0.6.1/xbiso.c +--- xbiso-0.6.1/xbiso.c.c23 2025-02-24 16:53:04.512018181 -0500 ++++ xbiso-0.6.1/xbiso.c 2025-02-24 16:56:34.622066472 -0500 +@@ -116,8 +116,8 @@ int main(int argc, char *argv[]) { + xbfseek = fseeko; + xbftell = ftello; + #else +- int (*xbfseek)(); +- OFFT (*xbftell)(); ++ int (*xbfseek)(FILE *, __off64_t, int); ++ OFFT (*xbftell)(FILE *); + xbfseek = fseeko64; + xbftell = ftello64; + #endif +@@ -285,8 +285,8 @@ handlefile(OFFT offset, int dtable) { + xbfseek = fseeko; + xbftell = ftello; + #else +- int (*xbfseek)(); +- OFFT (*xbftell)(); ++ int (*xbfseek)(FILE *, __off64_t, int); ++ OFFT (*xbftell)(FILE *); + xbfseek = fseeko64; + xbftell = ftello64; + #endif +@@ -455,8 +455,8 @@ void extract(TABLE *dirent) { + xbfseek = fseeko; + xbftell = ftello; + #else +- int (*xbfseek)(); +- off64_t (*xbftell)(); ++ int (*xbfseek)(FILE *, __off64_t, int); ++ off64_t (*xbftell)(FILE *); + xbfseek = fseeko64; + xbftell = ftello64; + diff --git a/xbiso.spec b/xbiso.spec index 1fc5d0c..b1cd0fc 100644 --- a/xbiso.spec +++ b/xbiso.spec @@ -1,6 +1,6 @@ Name: xbiso Version: 0.6.1 -Release: 35%{?dist} +Release: 36%{?dist} Summary: ISO extraction utility for xdvdfs images # Automatically converted from old format: GPLv2+ - review is highly recommended. License: GPL-2.0-or-later @@ -10,6 +10,7 @@ Patch0: xbiso-0.6.1-destdir.patch Patch1: xbiso-0.6.1-ftplib4.patch Patch2: xbiso-configure-c99.patch Patch3: xbiso-c99.patch +Patch4: xbiso-c23.patch BuildRequires: make BuildRequires: gcc BuildRequires: ftplib-devel @@ -23,6 +24,7 @@ xbiso is an ISO extraction utility for xdvdfs images. %patch -P1 -p1 -b .ftplib4 %patch -P2 -p1 %patch -P3 -p1 +%patch -P4 -p1 %build %configure @@ -39,6 +41,9 @@ make DESTDIR=$RPM_BUILD_ROOT install %{_bindir}/xbiso %changelog +* Mon Feb 24 2025 Tom Callaway - 0.6.1-36 +- fix empty function declarations to fix compile against C23 (gcc15) + * Sun Jan 19 2025 Fedora Release Engineering - 0.6.1-35 - Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild From 2be95448350420336a1b6a291f7b330e8bd47d9b Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 25 Jul 2025 20:38:38 +0000 Subject: [PATCH 3/5] Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild --- xbiso.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xbiso.spec b/xbiso.spec index b1cd0fc..4c69240 100644 --- a/xbiso.spec +++ b/xbiso.spec @@ -1,6 +1,6 @@ Name: xbiso Version: 0.6.1 -Release: 36%{?dist} +Release: 37%{?dist} Summary: ISO extraction utility for xdvdfs images # Automatically converted from old format: GPLv2+ - review is highly recommended. License: GPL-2.0-or-later @@ -41,6 +41,9 @@ make DESTDIR=$RPM_BUILD_ROOT install %{_bindir}/xbiso %changelog +* Fri Jul 25 2025 Fedora Release Engineering - 0.6.1-37 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild + * Mon Feb 24 2025 Tom Callaway - 0.6.1-36 - fix empty function declarations to fix compile against C23 (gcc15) From a416a64004fabeaa4ef903aebedfa19987d5e0b6 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 17 Jan 2026 20:28:32 +0000 Subject: [PATCH 4/5] Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild --- xbiso.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xbiso.spec b/xbiso.spec index 4c69240..11287e8 100644 --- a/xbiso.spec +++ b/xbiso.spec @@ -1,6 +1,6 @@ Name: xbiso Version: 0.6.1 -Release: 37%{?dist} +Release: 38%{?dist} Summary: ISO extraction utility for xdvdfs images # Automatically converted from old format: GPLv2+ - review is highly recommended. License: GPL-2.0-or-later @@ -41,6 +41,9 @@ make DESTDIR=$RPM_BUILD_ROOT install %{_bindir}/xbiso %changelog +* Sat Jan 17 2026 Fedora Release Engineering - 0.6.1-38 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild + * Fri Jul 25 2025 Fedora Release Engineering - 0.6.1-37 - Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild From 574bd0e90b89b85ceffbbf26a670809ad63e8751 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 17 Jul 2026 09:01:57 +0000 Subject: [PATCH 5/5] Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild --- xbiso.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xbiso.spec b/xbiso.spec index 11287e8..86087b8 100644 --- a/xbiso.spec +++ b/xbiso.spec @@ -1,6 +1,6 @@ Name: xbiso Version: 0.6.1 -Release: 38%{?dist} +Release: 39%{?dist} Summary: ISO extraction utility for xdvdfs images # Automatically converted from old format: GPLv2+ - review is highly recommended. License: GPL-2.0-or-later @@ -41,6 +41,9 @@ make DESTDIR=$RPM_BUILD_ROOT install %{_bindir}/xbiso %changelog +* Fri Jul 17 2026 Fedora Release Engineering - 0.6.1-39 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild + * Sat Jan 17 2026 Fedora Release Engineering - 0.6.1-38 - Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild