Compare commits

...
Sign in to create a new pull request.

9 commits

Author SHA1 Message Date
Fedora Release Engineering
574bd0e90b Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild 2026-07-17 09:01:57 +00:00
Fedora Release Engineering
a416a64004 Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild 2026-01-17 20:28:32 +00:00
Fedora Release Engineering
2be9544835 Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild 2025-07-25 20:38:38 +00:00
Tom spot Callaway
e3bffcd366 fix empty function declarations to fix compile against C23 (gcc15) 2025-02-24 16:58:41 -05:00
Fedora Release Engineering
321c2680b6 Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild 2025-01-19 15:27:31 +00:00
Miroslav Suchý
976984775b convert GPLv2+ license to SPDX
This is part of https://fedoraproject.org/wiki/Changes/SPDX_Licenses_Phase_4
2024-07-26 03:45:49 +02:00
Fedora Release Engineering
f2ec6094c4 Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild 2024-07-20 09:44:27 +00:00
Software Management Team
cd8018c869 Eliminate use of obsolete %patchN syntax (#2283636) 2024-05-30 12:46:50 +02:00
Fedora Release Engineering
81a2ae0f9d Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild 2024-01-27 09:21:18 +00:00
2 changed files with 69 additions and 6 deletions

36
xbiso-c23.patch Normal file
View file

@ -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;

View file

@ -1,14 +1,16 @@
Name: xbiso
Version: 0.6.1
Release: 31%{?dist}
Release: 39%{?dist}
Summary: ISO extraction utility for xdvdfs images
License: GPLv2+
# Automatically converted from old format: GPLv2+ - review is highly recommended.
License: GPL-2.0-or-later
URL: http://sourceforge.net/projects/xbiso/
Source0: http://downloads.sourceforge.net/xbiso/%{name}-%{version}.tar.gz
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
@ -18,10 +20,11 @@ xbiso is an ISO extraction utility for xdvdfs images.
%prep
%setup -q
%patch0 -p1
%patch1 -p1 -b .ftplib4
%patch2 -p1
%patch3 -p1
%patch -P0 -p1
%patch -P1 -p1 -b .ftplib4
%patch -P2 -p1
%patch -P3 -p1
%patch -P4 -p1
%build
%configure
@ -38,6 +41,30 @@ make DESTDIR=$RPM_BUILD_ROOT install
%{_bindir}/xbiso
%changelog
* Fri Jul 17 2026 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.1-39
- Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild
* Sat Jan 17 2026 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.1-38
- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild
* Fri Jul 25 2025 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.1-37
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
* Mon Feb 24 2025 Tom Callaway <spot@fedoraproject.org> - 0.6.1-36
- fix empty function declarations to fix compile against C23 (gcc15)
* Sun Jan 19 2025 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.1-35
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
* Fri Jul 26 2024 Miroslav Suchý <msuchy@redhat.com> - 0.6.1-34
- convert license to SPDX
* Sat Jul 20 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.1-33
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
* Sat Jan 27 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.1-32
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
* Sat Jul 22 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.6.1-31
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild