- Merge review cleanups (not finished, #225638)
This commit is contained in:
parent
eeb995d5ae
commit
d658d70539
@ -1,9 +1,11 @@
|
|||||||
|
Summary: A Compact Disc Digital Audio (CDDA) extraction tool (or ripper).
|
||||||
Name: cdparanoia
|
Name: cdparanoia
|
||||||
Version: 10.2
|
Version: 10.2
|
||||||
Release: 3%{?dist}
|
Release: 3%{?dist}
|
||||||
# the app is GPLv2, everything else is LGPLv2
|
# the app is GPLv2, everything else is LGPLv2
|
||||||
License: GPLv2 and LGPLv2
|
License: GPLv2 and LGPLv2
|
||||||
Group: Applications/Multimedia
|
Group: Applications/Multimedia
|
||||||
|
URL: http://www.xiph.org/paranoia/index.html
|
||||||
Source: http://downloads.xiph.org/releases/%{name}/%{name}-III-%{version}.src.tgz
|
Source: http://downloads.xiph.org/releases/%{name}/%{name}-III-%{version}.src.tgz
|
||||||
# Patch from upstream to fix cdda_interface.h C++ incompatibility ("private")
|
# Patch from upstream to fix cdda_interface.h C++ incompatibility ("private")
|
||||||
# https://trac.xiph.org/changeset/15338
|
# https://trac.xiph.org/changeset/15338
|
||||||
@ -11,11 +13,9 @@ Source: http://downloads.xiph.org/releases/%{name}/%{name}-III-%{version}.src.tg
|
|||||||
Patch0: cdparanoia-10.2-#463009.patch
|
Patch0: cdparanoia-10.2-#463009.patch
|
||||||
# #466659
|
# #466659
|
||||||
Patch1: cdparanoia-10.2-endian.patch
|
Patch1: cdparanoia-10.2-endian.patch
|
||||||
Url: http://www.xiph.org/paranoia/index.html
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
|
||||||
BuildRoot: %{_tmppath}/cdparanoia-%{version}-root
|
|
||||||
Requires: cdparanoia-libs = %{version}-%{release}
|
Requires: cdparanoia-libs = %{version}-%{release}
|
||||||
Obsoletes: cdparanoia-III
|
Obsoletes: cdparanoia-III
|
||||||
Summary: A Compact Disc Digital Audio (CDDA) extraction tool (or ripper).
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Cdparanoia (Paranoia III) reads digital audio directly from a CD, then
|
Cdparanoia (Paranoia III) reads digital audio directly from a CD, then
|
||||||
@ -27,22 +27,22 @@ drives prone to misalignment, frame jitter and loss of streaming during
|
|||||||
atomic reads. Cdparanoia is also good at reading and repairing data from
|
atomic reads. Cdparanoia is also good at reading and repairing data from
|
||||||
damaged CDs.
|
damaged CDs.
|
||||||
|
|
||||||
%package -n cdparanoia-devel
|
%package devel
|
||||||
Summary: Development tools for libcdda_paranoia (Paranoia III).
|
Summary: Development tools for libcdda_paranoia (Paranoia III).
|
||||||
Group: Development/Libraries
|
Group: Development/Libraries
|
||||||
Requires: cdparanoia-libs = %{version}-%{release}
|
Requires: cdparanoia-libs = %{version}-%{release}
|
||||||
License: LGPLv2
|
License: LGPLv2
|
||||||
|
|
||||||
%description -n cdparanoia-devel
|
%description devel
|
||||||
The cdparanoia-devel package contains the static libraries and header
|
The cdparanoia-devel package contains the static libraries and header
|
||||||
files needed for developing applications to read CD Digital Audio disks.
|
files needed for developing applications to read CD Digital Audio disks.
|
||||||
|
|
||||||
%package -n cdparanoia-libs
|
%package libs
|
||||||
Summary: Libraries for libcdda_paranoia (Paranoia III).
|
Summary: Libraries for libcdda_paranoia (Paranoia III).
|
||||||
Group: Development/Libraries
|
Group: Development/Libraries
|
||||||
License: LGPLv2
|
License: LGPLv2
|
||||||
|
|
||||||
%description -n cdparanoia-libs
|
%description libs
|
||||||
The cdparanoia-libs package contains the dynamic libraries needed for
|
The cdparanoia-libs package contains the dynamic libraries needed for
|
||||||
applications which read CD Digital Audio disks.
|
applications which read CD Digital Audio disks.
|
||||||
|
|
||||||
@ -92,22 +92,25 @@ fi
|
|||||||
%clean
|
%clean
|
||||||
[ "$RPM_BUILD_ROOT" != "/" -a -d "$RPM_BUILD_ROOT" ] && rm -rf "$RPM_BUILD_ROOT"
|
[ "$RPM_BUILD_ROOT" != "/" -a -d "$RPM_BUILD_ROOT" ] && rm -rf "$RPM_BUILD_ROOT"
|
||||||
|
|
||||||
%files -n cdparanoia
|
%files
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%doc README
|
%doc README
|
||||||
%{_bindir}/*
|
%{_bindir}/*
|
||||||
%{_mandir}/man1/*
|
%{_mandir}/man1/*
|
||||||
|
|
||||||
%files -n cdparanoia-libs
|
%files libs
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%{_libdir}/*.so*
|
%{_libdir}/*.so*
|
||||||
|
|
||||||
%files -n cdparanoia-devel
|
%files devel
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%{_includedir}/cdda
|
%{_includedir}/cdda
|
||||||
%{_libdir}/*.a
|
%{_libdir}/*.a
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Feb 10 2009 Adam Jackson <ajax@redhat.com>
|
||||||
|
- Merge review cleanups (not finished, #225638)
|
||||||
|
|
||||||
* Tue Feb 10 2009 Adam Jackson <ajax@redhat.com> 10.2-3
|
* Tue Feb 10 2009 Adam Jackson <ajax@redhat.com> 10.2-3
|
||||||
- cdparanoia-10.2-endian.patch: Backport a crash fix for host/drive
|
- cdparanoia-10.2-endian.patch: Backport a crash fix for host/drive
|
||||||
endianness mismatch. (#466659)
|
endianness mismatch. (#466659)
|
||||||
|
Loading…
Reference in New Issue
Block a user