import CS libisoburn-1.5.4-5.el9_5
This commit is contained in:
parent
5a5bc24cc6
commit
d9d32a82f0
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,2 +1,3 @@
|
||||
SOURCES/gpgkey-44BC9FD0D688EB007C4DD029E9CBDFC0ABC0A854.gpg
|
||||
SOURCES/libisoburn-1.5.4.tar.gz
|
||||
SOURCES/libisoburn-1.5.4.tar.gz.sig
|
||||
|
@ -1,2 +1,3 @@
|
||||
896ddcb0c8d6e8b60a82642331350d7fde7ab737 SOURCES/gpgkey-44BC9FD0D688EB007C4DD029E9CBDFC0ABC0A854.gpg
|
||||
e0adbfb01487b5f5c1b28554a027e15309977f00 SOURCES/libisoburn-1.5.4.tar.gz
|
||||
15d89d2250f4c60f3780fb419cf475b12bf17759 SOURCES/libisoburn-1.5.4.tar.gz.sig
|
||||
|
Binary file not shown.
@ -3,7 +3,7 @@
|
||||
Summary: Library to enable creation and expansion of ISO-9660 filesystems
|
||||
Name: libisoburn
|
||||
Version: 1.5.4
|
||||
Release: 4%{?dist}
|
||||
Release: 5%{?dist}
|
||||
License: GPLv2+
|
||||
URL: https://libburnia-project.org/
|
||||
Source0: https://files.libburnia-project.org/releases/%{pkgname}-%{version}.tar.gz
|
||||
@ -69,6 +69,7 @@ Requires: kf5-filesystem >= 5
|
||||
Requires(post): /sbin/install-info
|
||||
Requires(preun): /sbin/install-info
|
||||
%endif
|
||||
Requires(pre): %{_sbindir}/alternatives, coreutils
|
||||
Requires(post): %{_sbindir}/alternatives, coreutils
|
||||
Requires(preun): %{_sbindir}/alternatives
|
||||
Provides: cdrecord
|
||||
@ -178,6 +179,16 @@ cd releng
|
||||
|
||||
%ldconfig_scriptlets
|
||||
|
||||
%pre -n xorriso%{?variant}
|
||||
# remove alternativized files if they are not symlinks
|
||||
# otherwise upgrades from non-alternativized versions do not work
|
||||
# the list of files should be kept in sync with the "alternatives"
|
||||
# commands in %%post
|
||||
for f in cdrecord wodim mkisofs genisoimage ; do
|
||||
[ -L %{_bindir}/$f ] || %{__rm} -f %{_bindir}/$f || :
|
||||
[ -L %{_mandir}/man1/$f.1.gz ] || %{__rm} -f %{_mandir}/man1/$f.1.gz || :
|
||||
done
|
||||
|
||||
%post -n xorriso%{?variant}
|
||||
%if 0%{?rhel} == 7
|
||||
/sbin/install-info %{_infodir}/xorrecord.info.gz %{_infodir}/dir || :
|
||||
@ -250,6 +261,9 @@ fi
|
||||
%endif
|
||||
|
||||
%changelog
|
||||
* Wed Jan 15 2025 Pavel Cahyna <pcahyna@redhat.com> - 1.5.4-5
|
||||
- Fix upgrades from non-alternativized versions/packages
|
||||
|
||||
* Tue Feb 08 2022 Jiri Kucera <jkucera@redhat.com> - 1.5.4-4
|
||||
- Provide alternatives
|
||||
Resolves: #1967484
|
||||
|
Loading…
Reference in New Issue
Block a user