parent
6fd38e9b6f
commit
1c0980f25e
@ -0,0 +1 @@
|
||||
mutagen-1.5.1.tar.gz
|
@ -0,0 +1,69 @@
|
||||
%{!?python_sitelib: %define python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
|
||||
%{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
|
||||
|
||||
Name: python-mutagen
|
||||
Version: 1.5.1
|
||||
Release: 5%{?dist}
|
||||
Summary: Mutagen is a Python module to handle audio metadata
|
||||
Group: Development/Languages
|
||||
License: GPL
|
||||
URL: http://www.sacredchao.net/quodlibet/wiki/Development/Mutagen
|
||||
Source0: http://www.sacredchao.net/~piman/software/mutagen-%{version}.tar.gz
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||
BuildRequires: python-devel
|
||||
BuildArch: noarch
|
||||
|
||||
%description
|
||||
Mutagen is a Python module to handle audio metadata. It supports
|
||||
reading ID3 (all versions), APEv2, FLAC, and Ogg Vorbis/FLAC/Theora.
|
||||
It can write ID3v1.1, ID3v2.4, APEv2, FLAC, and Ogg Vorbis/FLAC/Theora
|
||||
comments. It can also read MPEG audio and Xing headers, FLAC stream
|
||||
info blocks, and Ogg Vorbis/FLAC/Theora stream headers. Finally, it
|
||||
includes a module to handle generic Ogg bitstreams.
|
||||
|
||||
%prep
|
||||
%setup -q -n mutagen-%{version}
|
||||
sed -e 1d -e 2d -i mutagen/__init__.py
|
||||
|
||||
%build
|
||||
%{__python} setup.py build
|
||||
mv TUTORIAL TUTORIAL.old
|
||||
cat TUTORIAL.old | tr -d "\r" > TUTORIAL
|
||||
rm -rf TUTORIAL.old
|
||||
|
||||
%install
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
%{__python} setup.py install -O1 --skip-build --root $RPM_BUILD_ROOT
|
||||
|
||||
%clean
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
%files
|
||||
%defattr(-,root,root,-)
|
||||
%doc COPYING NEWS README TUTORIAL
|
||||
%{_bindir}/*
|
||||
%{_mandir}/man*/*gz
|
||||
%dir %{python_sitelib}/mutagen
|
||||
%{python_sitelib}/mutagen/*.py
|
||||
%{python_sitelib}/mutagen/*.pyc
|
||||
%ghost %{python_sitelib}/mutagen/*.pyo
|
||||
|
||||
%changelog
|
||||
* Fri Jul 21 2006 Michał Bentkowski <mr.ecik at gmail.com> - 1.5.1-5
|
||||
- Some fixes in preable.
|
||||
- Change name from mutagen to python-mutagen.
|
||||
- Delete CFLAGS declaration.
|
||||
|
||||
* Thu Jul 20 2006 Michał Bentkowski <mr.ecik at gmail.com> - 1.5.1-4
|
||||
- Add BuildArch: noarch to preamble.
|
||||
|
||||
* Sat Jul 15 2006 Michał Bentkowski <mr.ecik at gmail.com> - 1.5.1-3
|
||||
- Remove python-abi dependency.
|
||||
- Prep section deletes first two lines in __init__.py file due to rpmlint error.
|
||||
|
||||
* Sat Jul 15 2006 Michał Bentkowski <mr.ecik at gmail.com> - 1.5.1-2
|
||||
- Clean at files section.
|
||||
- Fix charset in TUTORIAL file.
|
||||
|
||||
* Fri Jul 14 2006 Michał Bentkowski <mr.ecik at gmail.com> - 1.5.1-1
|
||||
- First build.
|
Loading…
Reference in new issue