2008-01-02 13:29:13 +00:00
|
|
|
|
2014-05-06 12:41:33 +00:00
|
|
|
%bcond_without tests
|
2013-10-09 04:27:36 +00:00
|
|
|
#bcond_without doc
|
2009-08-23 18:28:26 +00:00
|
|
|
%global apidocdir __api-doc_fedora
|
|
|
|
|
2005-01-18 19:13:31 +00:00
|
|
|
Name: taglib
|
2005-03-05 19:43:17 +00:00
|
|
|
Summary: Audio Meta-Data Library
|
2013-10-09 04:27:36 +00:00
|
|
|
Version: 1.9.1
|
2015-03-21 13:27:01 +00:00
|
|
|
Release: 8%{?dist}
|
2004-11-08 05:24:27 +00:00
|
|
|
|
2014-04-25 12:25:19 +00:00
|
|
|
License: LGPLv2 or MPLv1.1
|
2012-12-15 18:42:50 +00:00
|
|
|
#URL: http://launchpad.net/taglib
|
|
|
|
URL: http://taglib.github.com/
|
|
|
|
%if 0%{?snap:1}
|
|
|
|
Source0: taglib-%{version}-%{snap}.tar.gz
|
|
|
|
%else
|
2013-10-07 02:33:31 +00:00
|
|
|
Source0: http://taglib.github.io/releases/taglib-%{version}.tar.gz
|
2012-12-15 18:42:50 +00:00
|
|
|
%endif
|
|
|
|
# The snapshot tarballs generated with the following script:
|
|
|
|
Source1: taglib-snapshot.sh
|
2004-11-08 05:24:27 +00:00
|
|
|
|
2008-01-16 13:12:22 +00:00
|
|
|
# http://bugzilla.redhat.com/343241
|
2008-02-13 12:45:45 +00:00
|
|
|
# try 1, use pkg-config
|
2008-02-04 15:16:57 +00:00
|
|
|
Patch1: taglib-1.5b1-multilib.patch
|
2008-02-13 12:45:45 +00:00
|
|
|
# try 2, kiss omit -L%_libdir
|
|
|
|
Patch2: taglib-1.5rc1-multilib.patch
|
2004-11-08 05:24:27 +00:00
|
|
|
|
2013-11-26 15:02:03 +00:00
|
|
|
## upstream patches
|
|
|
|
Patch1002: 0002-Fixed-ABI-breakage-in-TagLib-String.patch
|
|
|
|
Patch1003: 0003-Rewrote-ByteVector-replace-simpler.patch
|
2014-05-15 09:33:02 +00:00
|
|
|
# https://github.com/taglib/taglib/issues/384
|
|
|
|
Patch1004: 0001-Fixed-a-wrong-byte-order-handling-on-big-endian-mach.patch
|
|
|
|
Patch1005: 0001-Added-some-missing-deletes-to-test_flac.cpp.patch
|
2013-11-26 15:02:03 +00:00
|
|
|
|
2007-09-27 20:12:07 +00:00
|
|
|
BuildRequires: cmake
|
2008-12-12 20:20:32 +00:00
|
|
|
BuildRequires: pkgconfig
|
2007-09-27 20:25:47 +00:00
|
|
|
BuildRequires: zlib-devel
|
2009-08-22 10:45:42 +00:00
|
|
|
%if %{with tests}
|
|
|
|
BuildRequires: cppunit-devel
|
|
|
|
%endif
|
2009-08-23 18:28:26 +00:00
|
|
|
%if %{with doc}
|
|
|
|
BuildRequires: doxygen
|
|
|
|
BuildRequires: graphviz
|
|
|
|
%endif
|
2009-08-22 10:45:42 +00:00
|
|
|
|
2004-11-08 05:24:27 +00:00
|
|
|
%description
|
2005-03-05 19:43:17 +00:00
|
|
|
TagLib is a library for reading and editing the meta-data of several
|
2009-08-22 10:41:49 +00:00
|
|
|
popular audio formats. Currently it supports both ID3v1 and ID3v2 for MP3
|
|
|
|
files, Ogg Vorbis comments and ID3 tags and Vorbis comments in FLAC, MPC,
|
|
|
|
Speex, WavPack, TrueAudio files, as well as APE Tags.
|
|
|
|
|
2009-08-23 18:28:26 +00:00
|
|
|
%package doc
|
|
|
|
Summary: API Documentation for %{name}
|
2009-08-23 18:30:10 +00:00
|
|
|
BuildArch: noarch
|
2009-08-23 18:28:26 +00:00
|
|
|
%description doc
|
|
|
|
This is API documentation generated from the TagLib source code.
|
|
|
|
|
2004-11-08 05:24:27 +00:00
|
|
|
%package devel
|
2008-02-21 02:48:39 +00:00
|
|
|
Summary: Development files for %{name}
|
2012-12-15 18:42:50 +00:00
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
2009-08-23 18:28:26 +00:00
|
|
|
%if ! %{with doc}
|
|
|
|
Obsoletes: %{name}-doc
|
|
|
|
%endif
|
2004-11-08 05:24:27 +00:00
|
|
|
%description devel
|
2009-08-22 10:41:49 +00:00
|
|
|
Files needed when building software with %{name}.
|
2004-11-08 05:24:27 +00:00
|
|
|
|
|
|
|
|
|
|
|
%prep
|
2011-02-20 01:35:51 +00:00
|
|
|
%setup -q -n taglib-%{version}%{?pre}
|
2008-01-16 13:12:22 +00:00
|
|
|
|
2009-08-22 10:42:57 +00:00
|
|
|
# patch1 not applied
|
2008-02-13 12:45:45 +00:00
|
|
|
## omit for now
|
|
|
|
%patch2 -p1 -b .multilib
|
2004-11-08 05:24:27 +00:00
|
|
|
|
2013-11-26 15:02:03 +00:00
|
|
|
%patch1002 -p1 -b .0002
|
|
|
|
%patch1003 -p1 -b .0003
|
2014-05-15 09:33:02 +00:00
|
|
|
%patch1004 -p1 -b .bigendian
|
|
|
|
%patch1005 -p1 -b .delete
|
2013-11-26 15:02:03 +00:00
|
|
|
|
2007-09-27 20:12:07 +00:00
|
|
|
|
2004-11-08 05:24:27 +00:00
|
|
|
%build
|
2007-09-27 20:12:07 +00:00
|
|
|
mkdir -p %{_target_platform}
|
|
|
|
pushd %{_target_platform}
|
2012-09-07 01:12:33 +00:00
|
|
|
%{cmake} \
|
2012-12-15 18:42:50 +00:00
|
|
|
%{?with_tests:-DBUILD_TESTS:BOOL=ON} \
|
2012-09-07 01:12:33 +00:00
|
|
|
..
|
2007-09-27 20:12:07 +00:00
|
|
|
popd
|
|
|
|
|
|
|
|
make %{?_smp_mflags} -C %{_target_platform}
|
2007-09-24 13:36:35 +00:00
|
|
|
|
2009-08-23 18:28:26 +00:00
|
|
|
%if %{with doc}
|
2012-03-19 17:17:19 +00:00
|
|
|
make docs -C %{_target_platform}
|
2009-08-23 18:28:26 +00:00
|
|
|
%endif
|
|
|
|
|
2004-11-08 05:24:27 +00:00
|
|
|
|
|
|
|
%install
|
2012-09-07 01:12:33 +00:00
|
|
|
make install/fast DESTDIR=%{buildroot} -C %{_target_platform}
|
2004-11-08 05:24:27 +00:00
|
|
|
|
2009-08-23 18:28:26 +00:00
|
|
|
%if %{with doc}
|
|
|
|
rm -fr %{apidocdir} ; mkdir %{apidocdir}
|
2012-03-19 17:17:19 +00:00
|
|
|
cp -a %{_target_platform}/doc/html/ %{apidocdir}/
|
2009-08-23 18:28:26 +00:00
|
|
|
ln -s html/index.html %{apidocdir}
|
2010-04-19 14:28:15 +00:00
|
|
|
find %{apidocdir} -name '*.md5' | xargs rm -fv
|
2009-08-23 18:28:26 +00:00
|
|
|
%endif
|
|
|
|
|
2012-12-15 18:42:50 +00:00
|
|
|
|
2009-08-22 10:42:57 +00:00
|
|
|
%check
|
2012-12-15 18:42:50 +00:00
|
|
|
export PKG_CONFIG_PATH=%{buildroot}%{_datadir}/pkgconfig:%{buildroot}%{_libdir}/pkgconfig
|
2013-10-09 15:52:06 +00:00
|
|
|
test "$(pkg-config --modversion taglib)" = "%{version}"
|
|
|
|
test "$(pkg-config --modversion taglib_c)" = "%{version}"
|
2012-12-15 18:42:50 +00:00
|
|
|
%if %{with tests}
|
|
|
|
#ln -s ../../tests/data %{_target_platform}/tests/
|
|
|
|
#LD_LIBRARY_PATH=%{buildroot}%{_libdir}:$LD_LIBRARY_PATH \
|
|
|
|
make check -C %{_target_platform}
|
2009-08-22 10:42:57 +00:00
|
|
|
%endif
|
|
|
|
|
|
|
|
|
2005-08-01 18:54:16 +00:00
|
|
|
%post -p /sbin/ldconfig
|
|
|
|
%postun -p /sbin/ldconfig
|
|
|
|
|
2004-11-08 05:24:27 +00:00
|
|
|
%files
|
2013-10-08 11:54:47 +00:00
|
|
|
%doc AUTHORS NEWS
|
|
|
|
%doc COPYING.LGPL COPYING.MPL
|
2010-04-19 14:28:15 +00:00
|
|
|
%{_libdir}/libtag.so.1*
|
|
|
|
%{_libdir}/libtag_c.so.0*
|
2004-11-08 05:24:27 +00:00
|
|
|
|
|
|
|
%files devel
|
2007-09-24 13:36:35 +00:00
|
|
|
%doc examples
|
2010-04-19 14:28:15 +00:00
|
|
|
%{_bindir}/taglib-config
|
|
|
|
%{_includedir}/taglib/
|
|
|
|
%{_libdir}/libtag.so
|
|
|
|
%{_libdir}/libtag_c.so
|
|
|
|
%{_libdir}/pkgconfig/taglib.pc
|
|
|
|
%{_libdir}/pkgconfig/taglib_c.pc
|
2004-11-08 05:24:27 +00:00
|
|
|
|
2009-08-23 18:28:26 +00:00
|
|
|
%if %{with doc}
|
|
|
|
%files doc
|
|
|
|
%doc %{apidocdir}/*
|
|
|
|
%endif
|
|
|
|
|
2004-11-08 05:24:27 +00:00
|
|
|
|
|
|
|
%changelog
|
2015-03-21 13:27:01 +00:00
|
|
|
* Sat Mar 21 2015 Rex Dieter <rdieter@fedoraproject.org> 1.9.1-8
|
|
|
|
- gcc5 rebuild (#1204372)
|
|
|
|
|
2014-08-18 04:46:05 +00:00
|
|
|
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.9.1-7
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-06-08 08:04:43 +00:00
|
|
|
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.9.1-6
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2014-05-15 09:33:02 +00:00
|
|
|
* Thu May 15 2014 Dan Horák <dan[at]danny.cz> 1.9.1-5
|
|
|
|
- big endian fixes (#1097109)
|
|
|
|
|
2014-05-06 12:41:33 +00:00
|
|
|
* Tue May 06 2014 Rex Dieter <rdieter@fedoraproject.org> 1.9.1-4
|
|
|
|
- enable tests (#1094759)
|
|
|
|
|
2014-04-25 12:25:19 +00:00
|
|
|
* Fri Apr 25 2014 Rex Dieter <rdieter@fedoraproject.org> 1.9.1-3
|
|
|
|
- License: GPLv2 or MPLv1.1 (#1091089)
|
|
|
|
|
2013-11-26 15:02:03 +00:00
|
|
|
* Tue Nov 26 2013 Rex Dieter <rdieter@fedoraproject.org> 1.9.1-2
|
|
|
|
- backport fixes for ABI breakage (wrt taglib-1.8) (#1026080, #1027164)
|
|
|
|
|
2013-10-09 04:27:36 +00:00
|
|
|
* Tue Oct 08 2013 Rex Dieter <rdieter@fedoraproject.org> 1.9.1-1
|
|
|
|
- taglib-1.9.1
|
|
|
|
|
2013-10-08 11:54:47 +00:00
|
|
|
* Tue Oct 08 2013 Rex Dieter <rdieter@fedoraproject.org> 1.9-2
|
|
|
|
- License: +MPL
|
|
|
|
|
2013-10-07 02:33:31 +00:00
|
|
|
* Sun Oct 06 2013 Rex Dieter <rdieter@fedoraproject.org> 1.9-1
|
|
|
|
- taglib-1.9
|
|
|
|
|
2013-08-04 03:16:03 +00:00
|
|
|
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8-6.20130218git
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-02-18 16:44:18 +00:00
|
|
|
* Mon Feb 18 2013 Rex Dieter <rdieter@fedoraproject.org> 1.8-5.20130218git
|
|
|
|
- 20120218git snapshot
|
|
|
|
|
2013-02-15 01:16:15 +00:00
|
|
|
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8-4.20121215git
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2012-12-15 18:42:50 +00:00
|
|
|
* Sat Dec 15 2012 Rex Dieter <rdieter@fedoraproject.org> 1.8-3.20121215git
|
|
|
|
- 20121215git snapshot
|
|
|
|
- .spec cleanup
|
|
|
|
|
2012-09-13 13:33:58 +00:00
|
|
|
* Thu Sep 13 2012 Rex Dieter <rdieter@fedoraproject.org> 1.8-2
|
|
|
|
- taglib.h: fix TAGLIB_MINOR_VERSION
|
|
|
|
|
2012-09-07 01:12:33 +00:00
|
|
|
* Thu Sep 06 2012 Rex Dieter <rdieter@fedoraproject.org> 1.8-1
|
|
|
|
- taglib-1.8
|
|
|
|
|
|
|
|
-* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.7.2-2
|
|
|
|
-- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
2012-07-21 22:43:54 +00:00
|
|
|
|
2012-04-21 20:13:55 +00:00
|
|
|
* Sat Apr 21 2012 Rex Dieter <rdieter@fedoraproject.org> 1.7.2-1
|
|
|
|
- taglib-1.7.2
|
|
|
|
|
2012-03-19 17:17:19 +00:00
|
|
|
* Mon Mar 19 2012 Rex Dieter <rdieter@fedoraproject.org> 1.7.1-1
|
|
|
|
- taglib-1.7.1
|
|
|
|
|
2012-02-28 20:19:05 +00:00
|
|
|
* Tue Feb 28 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.7-4
|
|
|
|
- Rebuilt for c++ ABI breakage
|
|
|
|
|
2012-02-04 16:43:20 +00:00
|
|
|
* Sat Feb 04 2012 Orcan Ogetbil <oget[dot]fedora[at]gmail[dot]com> - 1.7-3
|
|
|
|
- Backported fix for a crash in .ape file parsing RHBZ#700727
|
|
|
|
|
2012-01-14 06:18:11 +00:00
|
|
|
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.7-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
2011-03-14 13:37:25 +00:00
|
|
|
* Mon Mar 14 2011 Rex Dieter <rdieter@fedoraproject.org> 1.7-1
|
|
|
|
- taglib-1.7 (final)
|
|
|
|
|
2011-02-20 01:35:51 +00:00
|
|
|
* Sat Feb 19 2011 Rex Dieter <rdieter@fedoraproject.org> - 1.7-0.1.rc1
|
|
|
|
- taglib-1.7rc1
|
|
|
|
|
2011-02-09 17:59:41 +00:00
|
|
|
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.6.3-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2010-04-20 15:52:55 +00:00
|
|
|
* Tue Apr 20 2010 Rex Dieter <rdieter@fedoraproject.org> - 1.6.3-1
|
|
|
|
- taglib-1.6.3
|
|
|
|
|
2010-04-19 14:28:15 +00:00
|
|
|
* Mon Apr 19 2010 Rex Dieter <rdieter@fedoraproject.org> - 1.6.2-3
|
|
|
|
- cosmetics, tighten %%files
|
|
|
|
|
2010-04-12 17:51:25 +00:00
|
|
|
* Mon Apr 12 2010 Rex Dieter <rdieter@fedoraproject.org> - 1.6.2-2
|
|
|
|
- fix version in taglib-config, taglib.pc
|
|
|
|
|
2010-04-12 17:32:19 +00:00
|
|
|
* Fri Apr 09 2010 Rex Dieter <rdieter@fedoraproject.org> - 1.6.2-1
|
|
|
|
- taglib-1.6.2
|
|
|
|
|
2010-01-26 20:37:10 +00:00
|
|
|
* Tue Jan 26 2010 Michael Schwendt <mschwendt@fedoraproject.org> - 1.6.1-3
|
|
|
|
- Update with four post-1.6.1 fixes from 20100126
|
|
|
|
(r1056922, r1062026, r1062426, r1078611).
|
|
|
|
|
2009-11-06 12:21:47 +00:00
|
|
|
* Fri Nov 6 2009 Michael Schwendt <mschwendt@fedoraproject.org> - 1.6.1-2
|
|
|
|
- Update with two post-1.6.1 changes from 20091103.
|
|
|
|
|
2009-10-31 11:51:55 +00:00
|
|
|
* Sat Oct 31 2009 Michael Schwendt <mschwendt@fedoraproject.org> - 1.6.1-1
|
|
|
|
- Update to 1.6.1 (bug-fixes, of which one is considered a fix for
|
|
|
|
a serious bug: saving of Ogg FLAC comments).
|
|
|
|
|
2009-09-17 12:44:55 +00:00
|
|
|
* Thu Sep 17 2009 Michael Schwendt <mschwendt@fedoraproject.org> - 1.6-2
|
|
|
|
- Include the new NEWS file as %%doc.
|
|
|
|
|
2009-09-14 07:57:43 +00:00
|
|
|
* Mon Sep 14 2009 Michael Schwendt <mschwendt@fedoraproject.org> - 1.6-1
|
2009-09-14 13:13:25 +00:00
|
|
|
- Add patch to fix MP4 test on ppc/ppc64.
|
2009-09-14 07:57:43 +00:00
|
|
|
- Update to 1.6 final.
|
|
|
|
|
|
|
|
* Sun Sep 6 2009 Michael Schwendt <mschwendt@fedoraproject.org> - 1.6-0.1.rc1
|
|
|
|
- Update to 1.6rc1 (further bug-fixes and support for AIFF and WAV).
|
|
|
|
- Build optional support for MP4 and ASF/WMA files.
|
|
|
|
|
2009-09-04 10:21:32 +00:00
|
|
|
* Fri Sep 4 2009 Michael Schwendt <mschwendt@fedoraproject.org> - 1.5-8
|
|
|
|
- Merge another bug-fix from 1.6rc1 (this adds 3 symbols) and
|
|
|
|
really add tstring bug-fix:
|
|
|
|
* Split Ogg packets larger than 64k into multiple pages. (BUG:171957)
|
|
|
|
* Fixed a possible crash in the non-const version of String::operator[]
|
|
|
|
and in String::operator+=. (BUG:169389)
|
|
|
|
|
2009-08-23 18:28:26 +00:00
|
|
|
* Sun Aug 23 2009 Michael Schwendt <mschwendt@fedoraproject.org> - 1.5-7
|
|
|
|
- Build API documentation into -doc package.
|
|
|
|
|
2009-08-22 10:41:49 +00:00
|
|
|
* Sat Aug 22 2009 Michael Schwendt <mschwendt@fedoraproject.org> - 1.5-6
|
2009-08-22 10:42:57 +00:00
|
|
|
- Add %%check section and conditionally build with tests.
|
2009-08-22 10:41:49 +00:00
|
|
|
- Update descriptions (and mention the additional file formats).
|
2009-08-22 10:44:21 +00:00
|
|
|
- Cherry-pick bug-fix patches from 1.6 development (also replaces the
|
|
|
|
old taglib-1.5-kde#161721.patch):
|
|
|
|
* Fixed crash when saving a Locator APEv2 tag. (BUG:169810)
|
|
|
|
* TagLib can now use FLAC padding block. (BUG:107659)
|
|
|
|
* Fixed overflow while calculating bitrate of FLAC files with a very
|
|
|
|
high bitrate.
|
|
|
|
* XiphComment::year() now falls back to YEAR if DATE doesn't exist
|
|
|
|
and XiphComment::year() falls back to TRACKNUM if TRACKNUMBER doesn't
|
|
|
|
exist. (BUG:144396)
|
|
|
|
* Fixed a bug in ByteVectorList::split().
|
|
|
|
* Fixed a possible crash in the non-const version of String::operator[]
|
|
|
|
and in String::operator+=. (BUG:169389)
|
|
|
|
* ID3v2.2 frames are now not incorrectly saved. (BUG:176373)
|
|
|
|
* Support for ID3v2.2 PIC frames. (BUG:167786)
|
|
|
|
* Improved ID3v2.3 genre parsing. (BUG:188578)
|
|
|
|
* Better checking of corrupted ID3v2 APIC data. (BUG:168382)
|
|
|
|
* Bitrate calculating using the Xing header now uses floating point
|
|
|
|
numbers. (BUG:172556)
|
|
|
|
* Added support for PRIV ID3v2 frames.
|
|
|
|
* Empty ID3v2 genres are no longer treated as numeric ID3v1 genres.
|
|
|
|
* Added support for the POPM (rating/playcount) ID3v2 frame.
|
|
|
|
* Fixed crash on handling unsupported ID3v2 frames, e.g. on encrypted
|
|
|
|
frames. (BUG:161721)
|
2009-08-22 10:41:49 +00:00
|
|
|
|
2009-07-27 05:29:32 +00:00
|
|
|
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-02-25 18:20:14 +00:00
|
|
|
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2008-12-12 20:20:32 +00:00
|
|
|
* Fri Dec 12 2008 Rex Dieter <rdieter@fedoraproject.org> 1.5-3
|
|
|
|
- rebuild for pkgconfig deps
|
|
|
|
|
2008-10-06 20:54:30 +00:00
|
|
|
* Mon Oct 06 2008 Rex Dieter <rdieter@fedoraproject.org> 1.5-2
|
|
|
|
- Encrypted frames taglib/Amarok crash (kde#161721)
|
|
|
|
|
2008-02-21 02:44:59 +00:00
|
|
|
* Wed Feb 20 2008 Rex Dieter <rdieter@fedoraproject.org> 1.5-1
|
|
|
|
- taglib-1.5
|
|
|
|
|
2008-02-13 12:45:45 +00:00
|
|
|
* Wed Feb 13 2008 Rex Dieter <rdieter@fedoraproject.org> 1.5-0.9.rc1
|
|
|
|
- taglib-1.5rc1
|
|
|
|
- omit taglib-1.4_wchar.diff (for now)
|
|
|
|
|
2008-02-04 15:16:57 +00:00
|
|
|
* Mon Feb 04 2008 Rex Dieter <rdieter@fedoraproject.org> 1.5-0.8.b1
|
|
|
|
- taglib-1.5b1
|
|
|
|
|
2008-01-16 13:12:22 +00:00
|
|
|
* Wed Jan 16 2008 Rex Dieter <rdieter[AT]fedoraproject.org> 1.5-0.7.20080116svn
|
|
|
|
- svn20080116 snapshot
|
|
|
|
- multiarch conflicts (#343241)
|
|
|
|
|
2007-11-12 02:52:34 +00:00
|
|
|
* Sun Nov 11 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 1.5-0.6.20071111svn
|
|
|
|
- svn20071111 snapshot (#376241)
|
|
|
|
|
2007-09-27 20:25:47 +00:00
|
|
|
* Thu Sep 27 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 1.5-0.5.20070924svn
|
|
|
|
- -BR: automake
|
|
|
|
- +BR: zlib-devel
|
|
|
|
|
2007-09-27 20:12:07 +00:00
|
|
|
* Thu Sep 27 2007 Rex Dieter <rdieter[AT]fedoraproject.org> 1.5-0.4.20070924svn
|
|
|
|
- use cmake, fixes "taglib_export.h not included" (#272361#c7)
|
|
|
|
|
2007-09-24 14:22:03 +00:00
|
|
|
* Mon Sep 24 2007 Aurelien Bompard <abompard@fedoraproject.org> 1.5-0.3.20070924svn
|
|
|
|
- rebuild
|
|
|
|
|
2007-09-24 14:01:05 +00:00
|
|
|
* Mon Sep 24 2007 Aurelien Bompard <abompard@fedoraproject.org> 1.5-0.2.20070924svn
|
2007-09-24 14:10:15 +00:00
|
|
|
- BR: automake
|
2007-09-24 14:01:05 +00:00
|
|
|
|
2007-09-24 13:36:35 +00:00
|
|
|
* Mon Sep 24 2007 Aurelien Bompard <abompard@fedoraproject.org> 1.5-0.1.20070924svn
|
|
|
|
- update to svn version
|
|
|
|
|
2007-08-26 10:06:15 +00:00
|
|
|
* Sun Aug 26 2007 Aurelien Bompard <abompard@fedoraproject.org> 1.4-6
|
|
|
|
- fix license tag
|
|
|
|
- rebuild for BuildID
|
|
|
|
|
2006-12-18 22:19:13 +00:00
|
|
|
* Thu Dec 14 2006 Aurelien Bompard <abompard@fedoraproject.org> 1.4-5
|
|
|
|
- add patch for multi-language support
|
|
|
|
|
2006-09-14 15:07:54 +00:00
|
|
|
* Thu Sep 14 2006 Aurelien Bompard <abompard@fedoraproject.org> 1.4-4
|
|
|
|
- have the devel package require pkgconfig (#206443)
|
|
|
|
|
2006-08-31 14:58:22 +00:00
|
|
|
* Thu Aug 31 2006 Aurelien Bompard <abompard@fedoraproject.org> 1.4-3
|
|
|
|
- rebuild
|
|
|
|
|
2006-02-21 19:03:31 +00:00
|
|
|
* Tue Feb 21 2006 Aurelien Bompard <gauret[AT]free.fr> 1.4-2
|
|
|
|
- rebuild for FC5
|
|
|
|
|
2005-08-01 18:54:16 +00:00
|
|
|
* Mon Aug 01 2005 Aurelien Bompard <gauret[AT]free.fr> 1.4-1
|
|
|
|
- version 1.4
|
|
|
|
|
2005-03-25 16:20:43 +00:00
|
|
|
* Fri Mar 25 2005 Michael Schwendt <mschwendt[AT]users.sf.net> 1.3.1-2
|
|
|
|
- rebuild with g++4
|
|
|
|
|
2005-01-18 19:13:31 +00:00
|
|
|
* Mon Jan 10 2005 Aurelien Bompard <gauret[AT]free.fr> 0:1.3.1-1
|
|
|
|
- version 1.3.1
|
|
|
|
- drop patch0
|
|
|
|
- don't nuke every .la files, only the useless ones
|
|
|
|
- spec improvements thanks to Rex Dieter
|
|
|
|
|
2004-11-10 16:12:03 +00:00
|
|
|
* Thu Nov 04 2004 Aurelien Bompard <gauret[AT]free.fr> 0:1.3-0.fdr.2
|
|
|
|
- add apeitem.h to the include files in -devel
|
|
|
|
|
2004-11-08 05:24:36 +00:00
|
|
|
* Mon Oct 04 2004 Aurelien Bompard <gauret[AT]free.fr> 0:1.3-0.fdr.1
|
|
|
|
- version 1.3
|
|
|
|
|
2004-11-08 05:24:27 +00:00
|
|
|
* Sun Jun 06 2004 Aurelien Bompard <gauret[AT]free.fr> 0:1.1-0.fdr.5
|
|
|
|
- Changed license to LGPL
|
|
|
|
- include examples only in -devel
|
|
|
|
- remove Makefile* from examples
|
|
|
|
- remove *.la files
|
|
|
|
|
|
|
|
* Fri Jun 04 2004 Mihai Maties <mihai[AT]xcyb.org> 0:1.1-0.fdr.4
|
|
|
|
- included .la files as well
|
|
|
|
- compiled doc and included in -devel
|
|
|
|
- included examples in -devel
|
|
|
|
|
|
|
|
* Thu Jun 03 2004 Aurelien Bompard <gauret[AT]free.fr> 0:1.1-0.fdr.3
|
|
|
|
- provide the libtool files in the -devel subpackage
|
|
|
|
- include exemples in doc
|
|
|
|
|
|
|
|
* Thu Jun 03 2004 Aurelien Bompard <gauret[AT]free.fr> 0:1.1-0.fdr.2
|
|
|
|
- remove empty README
|
|
|
|
- add Requires(post,postun): /sbin/ldconfig
|
|
|
|
- remove --disable-static, it was useless anyway
|
|
|
|
|
|
|
|
* Tue Jun 01 2004 Aurelien Bompard <gauret[AT]free.fr> 0:1.1-0.fdr.1
|
|
|
|
- Fedora submission (shamelessly borrowed from Rex -- kde-redhat.sf.net)
|
|
|
|
|
|
|
|
* Sun Apr 04 2004 Rex Dieter <rexdieter at sf.net> 0:1.1-0.fdr.1
|
|
|
|
- 1.1
|
|
|
|
|
|
|
|
* Thu Feb 12 2004 Rex Dieter <rexdieter at sf.net> 0:1.0-0.fdr.1
|
|
|
|
- fix for rh73
|
|
|
|
|
|
|
|
* Fri Feb 06 2004 Rex Dieter <rexdieter at sf.net> 0:1.0-0.fdr.0
|
2005-03-05 19:43:17 +00:00
|
|
|
- first try
|