From 3f09bd76edb04409d2a70c2576286952d896d0a1 Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Sat, 6 Jan 2024 11:08:08 +0100 Subject: [PATCH] python 2.7 mass rebuild [release 0.6.18-2mamba;Fri May 17 2013] --- README.md | 4 +++ python-eyeD3.spec | 62 +++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 66 insertions(+) create mode 100644 python-eyeD3.spec diff --git a/README.md b/README.md index baea895..ec7e6cc 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,6 @@ # python-eyeD3 +python-eyed3 is a python module for the manipulation of ID3 tags. +It supports versions 1.0, 1.1, 2.3, and 2.4 of the ID3 standard. +It can also retrieve information, such as length and bit rate, from an MP3 file. + diff --git a/python-eyeD3.spec b/python-eyeD3.spec new file mode 100644 index 0000000..5c38a79 --- /dev/null +++ b/python-eyeD3.spec @@ -0,0 +1,62 @@ +Name: python-eyeD3 +Version: 0.6.18 +Release: 2mamba +Summary: Python Module for ID3 Tag Manipulation +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Automatic Build System +URL: http://eyed3.nicfit.net/ +Source: http://eyed3.nicfit.net/releases/eyeD3-%{version}.tar.gz +License: GPL +## AUTOBUILDREQ-BEGIN +BuildRequires: libpython-devel +## AUTOBUILDREQ-END +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +python-eyed3 is a python module for the manipulation of ID3 tags. +It supports versions 1.0, 1.1, 2.3, and 2.4 of the ID3 standard. +It can also retrieve information, such as length and bit rate, from an MP3 file. + +%prep + +%setup -q -n eyeD3-%{version} + +%build +%configure +%{__python} setup.py build + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%{__python} setup.py install -O1 --skip-build --root="%{buildroot}" --prefix="%{_prefix}" + +%{__install} -Dp -m755 bin/eyeD3 %{buildroot}%{_bindir}/eyeD3 + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + + +%files +%defattr(-, root, root, 0755) +%{_bindir}/eyeD3 +%dir %{python_sitearch}/eyeD3 +%{python_sitearch}/eyeD3/*.py +%{python_sitearch}/eyeD3/*.pyc +%{python_sitearch}/eyeD3/*.pyo +%{python_sitearch}/eyeD3-%{version}-py*.egg-info +%doc AUTHORS COPYING +# ChangeLog NEWS README README.html TODO + +%changelog +* Fri May 17 2013 Silvan Calarco 0.6.18-2mamba +- python 2.7 mass rebuild + +* Thu Dec 22 2011 Automatic Build System 0.6.18-1mamba +- automatic version update by autodist + +* Mon Mar 02 2009 Silvan Calarco 0.6.17-1mamba +- automatic update by autodist + +* Thu Jul 24 2008 gil 0.6.16-1mamba +- package created by autospec