source: projects/specs/branches/6/p/python-mutagen/python-mutagen-vl.spec @ 5795

Revision 5795, 4.1 KB checked in by Takemikaduchi, 12 years ago (diff)

rebuild package

Line 
1Name:           python-mutagen
2Version:        1.18
3Release:        2%{?_dist_release}
4Summary:        Mutagen is a Python module to handle audio metadata
5Summary(ja):    Mutagen は音楽のメタデータを扱うためのpythonモジュールです
6
7Group:          Development/Languages
8License:        GPLv2
9URL:            http://code.google.com/p/mutagen
10Source0:        http://mutagen.googlecode.com/files/mutagen-%{version}.tar.gz
11BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root
12
13BuildArch:      noarch
14BuildRequires:  python-devel
15
16%description
17Mutagen is a Python module to handle audio metadata. It supports
18reading ID3 (all versions), APEv2, FLAC, and Ogg Vorbis/FLAC/Theora.
19It can write ID3v1.1, ID3v2.4, APEv2, FLAC, and Ogg Vorbis/FLAC/Theora
20comments. It can also read MPEG audio and Xing headers, FLAC stream
21info blocks, and Ogg Vorbis/FLAC/Theora stream headers. Finally, it
22includes a module to handle generic Ogg bitstreams.
23
24%prep
25%setup -q -n mutagen-%{version}
26# Fix non-executable-script error
27sed -i '/^#! \/usr\/bin\/env python/,+1 d' mutagen/__init__.py
28# Fix wrong-file-end-of-line-encoding warning
29sed -i 's/\r//' TUTORIAL
30
31%build
32%{__python} setup.py build
33
34%install
35rm -rf %{buildroot}
36%{__python} setup.py install -O1 --skip-build --root %{buildroot}
37
38%clean
39rm -rf %{buildroot}
40
41%files
42%defattr(-,root,root,-)
43%doc API-NOTES COPYING NEWS README TODO TUTORIAL
44%{_bindir}/*
45%{_mandir}/man*/*gz
46%{python_sitelib}/mutagen
47%{python_sitelib}/mutagen-%{version}-*.egg-info
48
49%changelog
50* Thu Mar 01 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.18-2
51- rebuild with Vine6 environment
52
53* Sat Jun 26 2010 Daisuke SUZUKI <daisuke@linux.or.jp> 1.18-1
54- initial build for Vine Linux
55
56* Thu Feb 18 2010 Silas Sewell <silas@sewell.ch> - 1.18-1
57- Update to 1.18
58
59* Thu Oct 22 2009 Silas Sewell <silas@sewell.ch> - 1.17-1
60- Update to 1.17
61
62* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.16-2
63- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
64
65* Thu Jul 02 2009 Silas Sewell <silas@sewell.ch> - 1.16-1
66- Update to 1.16
67- New project URLs
68
69* Sun Apr 12 2009 Silas Sewell <silas@sewell.ch> - 1.15-3
70- Normalize spec
71
72* Fri Apr 10 2009 Silas Sewell <silas@sewell.ch> - 1.15-2
73- Make sed safer
74- Add back in removed changelogs
75
76* Sun Mar 29 2009 Silas Sewell <silas@sewell.ch> - 1.15-1
77- Update to 1.15
78
79* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.13-4
80- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
81
82* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 1.13-3
83- Rebuild for Python 2.6
84
85* Mon Dec 31 2007 Michał Bentkowski <mr.ecik at gmail.com> - 1.13-2
86- Add egg-info to package
87
88* Mon Dec 31 2007 Michał Bentkowski <mr.ecik at gmail.com> - 1.13-1
89- 1.13
90
91* Sat Aug 25 2007 Michał Bentkowski <mr.ecik at gmail.com> - 1.12-1
92- Update to 1.12
93- License tag fix
94
95* Sat Apr 28 2007 Michał Bentkowski <mr.ecik at gmail.com> - 1.11-1
96- Update to 1.11
97
98* Wed Jan 31 2007 Michał Bentkowski <mr.ecik at gmail.com> - 1.10.1-1
99- Update to 1.10.1
100
101* Wed Dec 20 2006 Michał Bentkowski <mr.ecik at gmail.com> - 1.9-1
102- Bump to 1.9
103
104* Tue Dec 12 2006 Michał Bentkowski <mr.ecik at gmail.com> - 1.8-2
105- Python 2.5 rebuild
106
107* Sun Oct 29 2006 Michał Bentkowski <mr.ecik at gmail.com> - 1.8-1
108- Bump to 1.8
109
110* Fri Sep 29 2006 Michał Bentkowski <mr.ecik at gmail.com> - 1.6-2
111- .pyo files no longer ghosted
112
113* Fri Aug 11 2006 Michał Bentkowski <mr.ecik at gmail.com> - 1.6-1
114- Update upstream to 1.6
115
116* Fri Jul 21 2006 Michał Bentkowski <mr.ecik at gmail.com> - 1.5.1-5
117- Some fixes in preamble.
118- Change name from mutagen to python-mutagen.
119- Delete CFLAGS declaration.
120
121* Thu Jul 20 2006 Michał Bentkowski <mr.ecik at gmail.com> - 1.5.1-4
122- Add BuildArch: noarch to preamble.
123
124* Sat Jul 15 2006 Michał Bentkowski <mr.ecik at gmail.com> - 1.5.1-3
125- Remove python-abi dependency.
126- Prep section deletes first two lines in __init__.py file due to rpmlint error.
127
128* Sat Jul 15 2006 Michał Bentkowski <mr.ecik at gmail.com> - 1.5.1-2
129- Clean at files section.
130- Fix charset in TUTORIAL file.
131
132* Fri Jul 14 2006 Michał Bentkowski <mr.ecik at gmail.com> - 1.5.1-1
133- First build.
Note: See TracBrowser for help on using the repository browser.