Compare commits
No commits in common. "c8" and "c9-beta" have entirely different histories.
3
.gitignore
vendored
3
.gitignore
vendored
@ -1 +1,2 @@
|
|||||||
SOURCES/libdvdnav-5.0.3.tar.bz2
|
SOURCES/7180713BE58D1ADC.asc
|
||||||
|
SOURCES/libdvdnav-6.1.0.tar.bz2
|
||||||
|
@ -1 +1,2 @@
|
|||||||
e3ec3277e37dd1714e7dc7d205b8fd084125b51a SOURCES/libdvdnav-5.0.3.tar.bz2
|
3fa7801d9562cc43e08dcd784e9442723ce11230 SOURCES/7180713BE58D1ADC.asc
|
||||||
|
b0597e9d11393e17b57f784c0dcba33a499e80b0 SOURCES/libdvdnav-6.1.0.tar.bz2
|
||||||
|
6
SOURCES/libdvdnav-6.1.0.tar.bz2.asc
Normal file
6
SOURCES/libdvdnav-6.1.0.tar.bz2.asc
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
-----BEGIN PGP SIGNATURE-----
|
||||||
|
|
||||||
|
iF0EABECAB0WIQRl98a0IGvQV6frc3hxgHE75Y0a3AUCXnZZKQAKCRBxgHE75Y0a
|
||||||
|
3GkxAJ9B0d2L43YUMMeyLdOorYmFWelkOACfWvMyihcv4kYLHVYgGmjspsSI2Ys=
|
||||||
|
=iEAQ
|
||||||
|
-----END PGP SIGNATURE-----
|
@ -1,12 +1,19 @@
|
|||||||
|
%global abi 4
|
||||||
|
|
||||||
Name: libdvdnav
|
Name: libdvdnav
|
||||||
Version: 5.0.3
|
Version: 6.1.0
|
||||||
Release: 8%{?dist}
|
Release: 4%{?dist}
|
||||||
Summary: A library for reading DVD video discs based on Ogle code
|
Summary: A library for reading DVD video discs based on Ogle code
|
||||||
License: GPLv2+
|
License: GPLv2+
|
||||||
URL: http://dvdnav.mplayerhq.hu/
|
URL: http://dvdnav.mplayerhq.hu/
|
||||||
Source0: https://download.videolan.org/pub/videolan/libdvdnav/%{version}/libdvdnav-%{version}.tar.bz2
|
Source0: https://download.videolan.org/pub/videolan/libdvdnav/%{version}/libdvdnav-%{version}.tar.bz2
|
||||||
|
Source1: https://download.videolan.org/pub/videolan/libdvdnav/%{version}/libdvdnav-%{version}.tar.bz2.asc
|
||||||
|
Source2: https://download.videolan.org/pub/keys/7180713BE58D1ADC.asc
|
||||||
BuildRequires: doxygen
|
BuildRequires: doxygen
|
||||||
BuildRequires: libdvdread-devel >= 5.0.2
|
BuildRequires: gcc
|
||||||
|
BuildRequires: gnupg2
|
||||||
|
BuildRequires: libdvdread-devel >= 6.0.0
|
||||||
|
BuildRequires: make
|
||||||
|
|
||||||
%description
|
%description
|
||||||
libdvdnav provides a simple library for reading DVD video discs.
|
libdvdnav provides a simple library for reading DVD video discs.
|
||||||
@ -15,7 +22,7 @@ The code is based on Ogle and used in, among others, the Xine dvdnav plug-in.
|
|||||||
%package devel
|
%package devel
|
||||||
Summary: Development files for libdvdnav
|
Summary: Development files for libdvdnav
|
||||||
Requires: %{name} = %{version}-%{release}
|
Requires: %{name} = %{version}-%{release}
|
||||||
Requires: libdvdread-devel >= 5.0.2
|
Requires: libdvdread-devel >= 6.0.0
|
||||||
Requires: pkgconfig
|
Requires: pkgconfig
|
||||||
|
|
||||||
%description devel
|
%description devel
|
||||||
@ -23,29 +30,28 @@ libdvdnav-devel contains the files necessary to build packages that use the
|
|||||||
libdvdnav library.
|
libdvdnav library.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
|
%{gpgverify} --keyring='%{S:2}' --signature='%{S:1}' --data='%{S:0}'
|
||||||
%setup -q
|
%setup -q
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%configure --disable-static
|
%configure --disable-static
|
||||||
|
|
||||||
%{__make} %{?_smp_mflags}
|
%{__make} V=1 %{?_smp_mflags}
|
||||||
pushd doc
|
pushd doc
|
||||||
doxygen doxy.conf
|
doxygen doxy.conf
|
||||||
popd
|
popd
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%{__make} install DESTDIR=%{buildroot}
|
%make_install
|
||||||
rm %{buildroot}%{_libdir}/libdvdnav.la
|
rm %{buildroot}%{_libdir}/libdvdnav.la
|
||||||
rm %{buildroot}%{_pkgdocdir}/{COPYING,TODO}
|
rm %{buildroot}%{_pkgdocdir}/{COPYING,TODO}
|
||||||
|
|
||||||
%post -p /sbin/ldconfig
|
%ldconfig_scriptlets
|
||||||
|
|
||||||
%postun -p /sbin/ldconfig
|
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%license COPYING
|
%license COPYING
|
||||||
%doc AUTHORS ChangeLog README
|
%doc AUTHORS ChangeLog README
|
||||||
%{_libdir}/libdvdnav.so.*
|
%{_libdir}/libdvdnav.so.%{abi}*
|
||||||
|
|
||||||
%files devel
|
%files devel
|
||||||
%doc TODO doc/html/*
|
%doc TODO doc/html/*
|
||||||
@ -54,6 +60,48 @@ rm %{buildroot}%{_pkgdocdir}/{COPYING,TODO}
|
|||||||
%{_libdir}/pkgconfig/dvdnav.pc
|
%{_libdir}/pkgconfig/dvdnav.pc
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 6.1.0-4
|
||||||
|
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
||||||
|
Related: rhbz#1991688
|
||||||
|
|
||||||
|
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 6.1.0-3
|
||||||
|
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
||||||
|
|
||||||
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 6.1.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Oct 15 2020 Dominik Mierzejewski <rpm@greysector.net> 6.1.0-1
|
||||||
|
- update to 6.1.0 (#1815805)
|
||||||
|
|
||||||
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 6.0.1-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 6.0.1-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Nov 15 2019 Dominik 'Rathann' Mierzejewski <rpm@greysector.net> - 6.0.1-2
|
||||||
|
- rebuild for libdvdread ABI bump
|
||||||
|
|
||||||
|
* Sat Oct 26 2019 Dominik Mierzejewski <rpm@greysector.net> 6.0.1-1
|
||||||
|
- update to 6.0.1 (#1761253)
|
||||||
|
- use gpgverify macro
|
||||||
|
|
||||||
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 6.0.0-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 6.0.0-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jul 23 2018 Dominik Mierzejewski <rpm@greysector.net> 6.0.0-1
|
||||||
|
- update to 6.0.0
|
||||||
|
- add BR: gcc for https://fedoraproject.org/wiki/Changes/Remove_GCC_from_BuildRoot
|
||||||
|
- verify tarball GPG signature
|
||||||
|
- use modern macros
|
||||||
|
- show gcc command line in make output
|
||||||
|
|
||||||
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 5.0.3-9
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||||
|
|
||||||
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 5.0.3-8
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 5.0.3-8
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user