From f900bb4721294125efda44a703da406470df4afe Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sat, 1 Apr 2006 18:01:18 +0000 Subject: [PATCH 01/42] Setup of module libmpcdec --- .cvsignore | 0 Makefile | 21 +++++++++++++++++++++ sources | 0 3 files changed, 21 insertions(+) create mode 100644 .cvsignore create mode 100644 Makefile create mode 100644 sources diff --git a/.cvsignore b/.cvsignore new file mode 100644 index 0000000..e69de29 diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..e868c43 --- /dev/null +++ b/Makefile @@ -0,0 +1,21 @@ +# Makefile for source rpm: libmpcdec +# $Id$ +NAME := libmpcdec +SPECFILE = $(firstword $(wildcard *.spec)) + +define find-makefile-common +for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done +endef + +MAKEFILE_COMMON := $(shell $(find-makefile-common)) + +ifeq ($(MAKEFILE_COMMON),) +# attept a checkout +define checkout-makefile-common +test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 +endef + +MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) +endif + +include $(MAKEFILE_COMMON) diff --git a/sources b/sources new file mode 100644 index 0000000..e69de29 From e0fe11cb5b933eacd6e72d65e7850c9ecb1654e4 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sat, 1 Apr 2006 18:02:00 +0000 Subject: [PATCH 02/42] auto-import libmpcdec-1.2.2-1 on branch devel from libmpcdec-1.2.2-1.src.rpm --- .cvsignore | 1 + libmpcdec.spec | 86 ++++++++++++++++++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 88 insertions(+) create mode 100644 libmpcdec.spec diff --git a/.cvsignore b/.cvsignore index e69de29..bcea35b 100644 --- a/.cvsignore +++ b/.cvsignore @@ -0,0 +1 @@ +libmpcdec-1.2.2.tar.bz2 diff --git a/libmpcdec.spec b/libmpcdec.spec new file mode 100644 index 0000000..9178e8b --- /dev/null +++ b/libmpcdec.spec @@ -0,0 +1,86 @@ + +Summary: Musepack audio decoding library +Name: libmpcdec +Version: 1.2.2 +Release: 1%{?dist} + +License: LGPL +Group: System Environment/Libraries +URL: http://www.musepack.net/ +Source: http://files2.musepack.net/source/libmpcdec-1.2.2.tar.bz2 +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) + +%description +Musepack is an audio compression format with a strong emphasis on high quality. +It's not lossless, but it is designed for transparency, so that you won't be +able to hear differences between the original wave file and the much smaller +MPC file. +It is based on the MPEG-1 Layer-2 / MP2 algorithms, but has rapidly developed +and vastly improved and is now at an advanced stage in which it contains +heavily optimized and patentless code. + + +%package devel +Summary: Development files for the Musepack audio decoding library +Group: Development/Libraries +Requires: %{name} = %{version}-%{release} +%description devel +%{summary}. + + +%prep +%setup -q + + +%build +%configure --disable-static + +make %{?_smp_mflags} + + +%install +rm -rf $RPM_BUILD_ROOT + +make install DESTDIR=$RPM_BUILD_ROOT + +#Unpackaged files +rm -f $RPM_BUILD_ROOT%{_libdir}/lib*.la + + +%clean +rm -rf $RPM_BUILD_ROOT + + +%post -p /sbin/ldconfig + +%postun -p /sbin/ldconfig + + +%files +%defattr(-,root,root,-) +%doc AUTHORS ChangeLog COPYING README +%{_libdir}/lib*.so.* + +%files devel +%defattr(-,root,root,-) +%doc docs/html/* +%{_includedir}/* +%{_libdir}/lib*.so + + +%changelog +* Thu Jan 19 2006 Rex Dieter 1.2.2-1 +- libmpcdec-1.2.2 + +* Thu Jan 19 2006 Rex Dieter 1.1-2 +- cleanup + +* Fri Jun 17 2005 Mihai Maties 1.1-1 +- update to 1.1 +- changed license to BSD +- updated the spec to use autotools + +* Fri Nov 26 2004 Matthias Saou 1.0.2-1 +- Initial RPM release. +- Include the mandatory copy of the LGPL (there is none in the sources...). + diff --git a/sources b/sources index e69de29..4706fd6 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +f14e07285b9b102a806649074c1d779b libmpcdec-1.2.2.tar.bz2 From 7e4f214d25cc76d9e2cdf2d94be49d5a7b14ef6c Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sat, 1 Apr 2006 18:08:13 +0000 Subject: [PATCH 03/42] - License: BSD --- libmpcdec.spec | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/libmpcdec.spec b/libmpcdec.spec index 9178e8b..268e2ac 100644 --- a/libmpcdec.spec +++ b/libmpcdec.spec @@ -2,9 +2,9 @@ Summary: Musepack audio decoding library Name: libmpcdec Version: 1.2.2 -Release: 1%{?dist} +Release: 2%{?dist} -License: LGPL +License: BSD Group: System Environment/Libraries URL: http://www.musepack.net/ Source: http://files2.musepack.net/source/libmpcdec-1.2.2.tar.bz2 @@ -19,7 +19,6 @@ It is based on the MPEG-1 Layer-2 / MP2 algorithms, but has rapidly developed and vastly improved and is now at an advanced stage in which it contains heavily optimized and patentless code. - %package devel Summary: Development files for the Musepack audio decoding library Group: Development/Libraries @@ -69,6 +68,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Apr 01 2006 Rex Dieter 1.2.2-2 +- License: BSD + * Thu Jan 19 2006 Rex Dieter 1.2.2-1 - libmpcdec-1.2.2 From 4c727d187d1aac660aaa78a63c76715f73f2fbf4 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Wed, 9 Aug 2006 17:45:12 +0000 Subject: [PATCH 04/42] - fc6 respin --- libmpcdec.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libmpcdec.spec b/libmpcdec.spec index 268e2ac..bc44f60 100644 --- a/libmpcdec.spec +++ b/libmpcdec.spec @@ -2,7 +2,7 @@ Summary: Musepack audio decoding library Name: libmpcdec Version: 1.2.2 -Release: 2%{?dist} +Release: 3%{?dist} License: BSD Group: System Environment/Libraries @@ -68,6 +68,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Aug 09 2006 Rex Dieter 1.2.2-3 +- fc6 respin + * Sat Apr 01 2006 Rex Dieter 1.2.2-2 - License: BSD From 0abb4e899f0faf880a968e6b18d18a6420770710 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Sun, 27 Aug 2006 20:36:31 +0000 Subject: [PATCH 05/42] http://fedoraproject.org/wiki/Extras/Schedule/FC6MassRebuild --- needs.rebuild | 1 + 1 file changed, 1 insertion(+) create mode 100644 needs.rebuild diff --git a/needs.rebuild b/needs.rebuild new file mode 100644 index 0000000..815fd29 --- /dev/null +++ b/needs.rebuild @@ -0,0 +1 @@ +http://fedoraproject.org/wiki/Extras/Schedule/FC6MassRebuild From cdd08592af93e586f56d9acac94b71d502c7c338 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Tue, 29 Aug 2006 18:08:41 +0000 Subject: [PATCH 06/42] - fc6 respin --- libmpcdec.spec | 7 +++++-- needs.rebuild | 1 - 2 files changed, 5 insertions(+), 3 deletions(-) delete mode 100644 needs.rebuild diff --git a/libmpcdec.spec b/libmpcdec.spec index bc44f60..cf40cb2 100644 --- a/libmpcdec.spec +++ b/libmpcdec.spec @@ -2,12 +2,12 @@ Summary: Musepack audio decoding library Name: libmpcdec Version: 1.2.2 -Release: 3%{?dist} +Release: 4%{?dist} License: BSD Group: System Environment/Libraries URL: http://www.musepack.net/ -Source: http://files2.musepack.net/source/libmpcdec-1.2.2.tar.bz2 +Source: http://files2.musepack.net/source/libmpcdec-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) %description @@ -68,6 +68,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Aug 29 2006 Rex Dieter 1.2.2-4 +- fc6 respin + * Wed Aug 09 2006 Rex Dieter 1.2.2-3 - fc6 respin diff --git a/needs.rebuild b/needs.rebuild deleted file mode 100644 index 815fd29..0000000 --- a/needs.rebuild +++ /dev/null @@ -1 +0,0 @@ -http://fedoraproject.org/wiki/Extras/Schedule/FC6MassRebuild From 3562a4e7d16ab290fdb4e72351a9d73347b6e886 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Wed, 6 Jun 2007 15:00:07 +0000 Subject: [PATCH 07/42] - libmpcdec-1.2.6 --- .cvsignore | 1 + libmpcdec.spec | 9 ++++++--- sources | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.cvsignore b/.cvsignore index bcea35b..9b448ba 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1,2 @@ libmpcdec-1.2.2.tar.bz2 +libmpcdec-1.2.6.tar.bz2 diff --git a/libmpcdec.spec b/libmpcdec.spec index cf40cb2..7325a1d 100644 --- a/libmpcdec.spec +++ b/libmpcdec.spec @@ -1,13 +1,13 @@ Summary: Musepack audio decoding library Name: libmpcdec -Version: 1.2.2 -Release: 4%{?dist} +Version: 1.2.6 +Release: 1%{?dist} License: BSD Group: System Environment/Libraries URL: http://www.musepack.net/ -Source: http://files2.musepack.net/source/libmpcdec-%{version}.tar.bz2 +Source0: http://files.musepack.net/source/libmpcdec-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) %description @@ -68,6 +68,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jun 06 2007 Rex Dieter 1.2.6-1 +- libmpcdec-1.2.6 + * Tue Aug 29 2006 Rex Dieter 1.2.2-4 - fc6 respin diff --git a/sources b/sources index 4706fd6..d102dc9 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -f14e07285b9b102a806649074c1d779b libmpcdec-1.2.2.tar.bz2 +7f7a060e83b4278acf4b77d7a7b9d2c0 libmpcdec-1.2.6.tar.bz2 From 1879586bb79eb0c926f9a572f0026d3a628f82d7 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Wed, 6 Jun 2007 15:31:01 +0000 Subject: [PATCH 08/42] - fix %files (docs/html is no more) --- libmpcdec.spec | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/libmpcdec.spec b/libmpcdec.spec index 7325a1d..93c5629 100644 --- a/libmpcdec.spec +++ b/libmpcdec.spec @@ -2,7 +2,7 @@ Summary: Musepack audio decoding library Name: libmpcdec Version: 1.2.6 -Release: 1%{?dist} +Release: 2%{?dist} License: BSD Group: System Environment/Libraries @@ -62,12 +62,14 @@ rm -rf $RPM_BUILD_ROOT %files devel %defattr(-,root,root,-) -%doc docs/html/* %{_includedir}/* %{_libdir}/lib*.so %changelog +* Wed Jun 06 2007 Rex Dieter 1.2.6-2 +- fix %%files (docs/html is no more) + * Wed Jun 06 2007 Rex Dieter 1.2.6-1 - libmpcdec-1.2.6 From de8106593f3f99dbf4e616adbe8167e992ec8782 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Sat, 25 Aug 2007 12:55:05 +0000 Subject: [PATCH 09/42] - respin (BuildID) --- libmpcdec.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libmpcdec.spec b/libmpcdec.spec index 93c5629..7421b81 100644 --- a/libmpcdec.spec +++ b/libmpcdec.spec @@ -2,7 +2,7 @@ Summary: Musepack audio decoding library Name: libmpcdec Version: 1.2.6 -Release: 2%{?dist} +Release: 3%{?dist} License: BSD Group: System Environment/Libraries @@ -67,6 +67,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Aug 25 2007 Rex Dieter 1.2.6-3 +- respin (BuildID) + * Wed Jun 06 2007 Rex Dieter 1.2.6-2 - fix %%files (docs/html is no more) From 751e5438a21868dc985dc6aef99e774a853b7b55 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Fri, 8 Feb 2008 21:26:56 +0000 Subject: [PATCH 10/42] - respin (gcc43) --- libmpcdec.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libmpcdec.spec b/libmpcdec.spec index 7421b81..382fa9f 100644 --- a/libmpcdec.spec +++ b/libmpcdec.spec @@ -2,7 +2,7 @@ Summary: Musepack audio decoding library Name: libmpcdec Version: 1.2.6 -Release: 3%{?dist} +Release: 4%{?dist} License: BSD Group: System Environment/Libraries @@ -67,6 +67,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Feb 08 2008 Rex Dieter 1.2.6-4 +- respin (gcc43) + * Sat Aug 25 2007 Rex Dieter 1.2.6-3 - respin (BuildID) From e7d10cd7ed48f0b97d0e942b22af6ecc333fa751 Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Wed, 25 Feb 2009 16:23:48 +0000 Subject: [PATCH 11/42] - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild --- libmpcdec.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libmpcdec.spec b/libmpcdec.spec index 382fa9f..9607214 100644 --- a/libmpcdec.spec +++ b/libmpcdec.spec @@ -2,7 +2,7 @@ Summary: Musepack audio decoding library Name: libmpcdec Version: 1.2.6 -Release: 4%{?dist} +Release: 5%{?dist} License: BSD Group: System Environment/Libraries @@ -67,6 +67,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Feb 25 2009 Fedora Release Engineering - 1.2.6-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Fri Feb 08 2008 Rex Dieter 1.2.6-4 - respin (gcc43) From 75c3cc5db82f3d9507bdc25ab34fde0bddb344cd Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Sat, 25 Jul 2009 06:08:16 +0000 Subject: [PATCH 12/42] - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild --- libmpcdec.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libmpcdec.spec b/libmpcdec.spec index 9607214..12921c5 100644 --- a/libmpcdec.spec +++ b/libmpcdec.spec @@ -2,7 +2,7 @@ Summary: Musepack audio decoding library Name: libmpcdec Version: 1.2.6 -Release: 5%{?dist} +Release: 6%{?dist} License: BSD Group: System Environment/Libraries @@ -67,6 +67,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.2.6-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 1.2.6-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From c92d04bf1826df1adb324236c0eda5d56b18a1b4 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Wed, 25 Nov 2009 23:51:05 +0000 Subject: [PATCH 13/42] Fix typo that causes a failure to update the common directory. (releng #2781) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e868c43..4a82ed8 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ NAME := libmpcdec SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done +for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) From 49bd96e2d39b9d4502218648804a63a07d3c5601 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 28 Jul 2010 21:18:35 +0000 Subject: [PATCH 14/42] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- 2 files changed, 21 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile diff --git a/.cvsignore b/.gitignore similarity index 100% rename from .cvsignore rename to .gitignore diff --git a/Makefile b/Makefile deleted file mode 100644 index 4a82ed8..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: libmpcdec -# $Id$ -NAME := libmpcdec -SPECFILE = $(firstword $(wildcard *.spec)) - -define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done -endef - -MAKEFILE_COMMON := $(shell $(find-makefile-common)) - -ifeq ($(MAKEFILE_COMMON),) -# attept a checkout -define checkout-makefile-common -test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 -endef - -MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) -endif - -include $(MAKEFILE_COMMON) From b6b7ca674d29748e85db30de676d5b09aba8632c Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Tue, 8 Feb 2011 02:25:59 -0600 Subject: [PATCH 15/42] - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild --- libmpcdec.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libmpcdec.spec b/libmpcdec.spec index 12921c5..0ac185a 100644 --- a/libmpcdec.spec +++ b/libmpcdec.spec @@ -2,7 +2,7 @@ Summary: Musepack audio decoding library Name: libmpcdec Version: 1.2.6 -Release: 6%{?dist} +Release: 7%{?dist} License: BSD Group: System Environment/Libraries @@ -67,6 +67,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Feb 08 2011 Fedora Release Engineering - 1.2.6-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + * Fri Jul 24 2009 Fedora Release Engineering - 1.2.6-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From c5a7d58e8f5ef8c5a0fde663abb137998e9f68aa Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Fri, 13 Jan 2012 02:04:07 -0600 Subject: [PATCH 16/42] - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild --- libmpcdec.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libmpcdec.spec b/libmpcdec.spec index 0ac185a..31d974b 100644 --- a/libmpcdec.spec +++ b/libmpcdec.spec @@ -2,7 +2,7 @@ Summary: Musepack audio decoding library Name: libmpcdec Version: 1.2.6 -Release: 7%{?dist} +Release: 8%{?dist} License: BSD Group: System Environment/Libraries @@ -67,6 +67,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jan 13 2012 Fedora Release Engineering - 1.2.6-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + * Tue Feb 08 2011 Fedora Release Engineering - 1.2.6-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild From 9976936f15760390b417a60a404652880ec665d9 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 19 Jul 2012 15:29:43 -0500 Subject: [PATCH 17/42] - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild --- libmpcdec.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libmpcdec.spec b/libmpcdec.spec index 31d974b..888fa05 100644 --- a/libmpcdec.spec +++ b/libmpcdec.spec @@ -2,7 +2,7 @@ Summary: Musepack audio decoding library Name: libmpcdec Version: 1.2.6 -Release: 8%{?dist} +Release: 9%{?dist} License: BSD Group: System Environment/Libraries @@ -67,6 +67,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 19 2012 Fedora Release Engineering - 1.2.6-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + * Fri Jan 13 2012 Fedora Release Engineering - 1.2.6-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild From 6070e9a3d9b66cf3c4f1732233546cb7c4161076 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Wed, 13 Feb 2013 22:46:19 -0600 Subject: [PATCH 18/42] - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild --- libmpcdec.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libmpcdec.spec b/libmpcdec.spec index 888fa05..d9af171 100644 --- a/libmpcdec.spec +++ b/libmpcdec.spec @@ -2,7 +2,7 @@ Summary: Musepack audio decoding library Name: libmpcdec Version: 1.2.6 -Release: 9%{?dist} +Release: 10%{?dist} License: BSD Group: System Environment/Libraries @@ -67,6 +67,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Feb 14 2013 Fedora Release Engineering - 1.2.6-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + * Thu Jul 19 2012 Fedora Release Engineering - 1.2.6-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild From b6533ae117ddcfe6149ae1cadccdf70999968a9e Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Tue, 4 Jun 2013 16:24:04 -0500 Subject: [PATCH 19/42] devel: tighten dep using %{?_isa} - %files: tighten file lists --- libmpcdec.spec | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/libmpcdec.spec b/libmpcdec.spec index d9af171..b1bf7bb 100644 --- a/libmpcdec.spec +++ b/libmpcdec.spec @@ -2,7 +2,7 @@ Summary: Musepack audio decoding library Name: libmpcdec Version: 1.2.6 -Release: 10%{?dist} +Release: 11%{?dist} License: BSD Group: System Environment/Libraries @@ -22,7 +22,7 @@ heavily optimized and patentless code. %package devel Summary: Development files for the Musepack audio decoding library Group: Development/Libraries -Requires: %{name} = %{version}-%{release} +Requires: %{name}%{?_isa} = %{version}-%{release} %description devel %{summary}. @@ -43,7 +43,7 @@ rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT #Unpackaged files -rm -f $RPM_BUILD_ROOT%{_libdir}/lib*.la +rm -fv $RPM_BUILD_ROOT%{_libdir}/lib*.la %clean @@ -51,22 +51,24 @@ rm -rf $RPM_BUILD_ROOT %post -p /sbin/ldconfig - %postun -p /sbin/ldconfig - %files %defattr(-,root,root,-) %doc AUTHORS ChangeLog COPYING README -%{_libdir}/lib*.so.* +%{_libdir}/libmpcdec.so.5* %files devel %defattr(-,root,root,-) -%{_includedir}/* -%{_libdir}/lib*.so +%{_includedir}/libmpcdec/ +%{_libdir}/libmpcdec.so %changelog +* Tue Jun 04 2013 Rex Dieter 1.2.6-11 +- -devel: tighten dep using %%{?_isa} +- %%files: tighten file lists + * Thu Feb 14 2013 Fedora Release Engineering - 1.2.6-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild From 90b70ecf639e2b96f94f3194ac27391ff4b339ef Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Tue, 4 Jun 2013 16:34:58 -0500 Subject: [PATCH 20/42] fix %%files note to self: if replacing globs with explicit file lists, make sure they're corect --- libmpcdec.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libmpcdec.spec b/libmpcdec.spec index b1bf7bb..08517c8 100644 --- a/libmpcdec.spec +++ b/libmpcdec.spec @@ -60,7 +60,7 @@ rm -rf $RPM_BUILD_ROOT %files devel %defattr(-,root,root,-) -%{_includedir}/libmpcdec/ +%{_includedir}/mpcdec/ %{_libdir}/libmpcdec.so From d1737f18b3b2a2e6770fc4ab25a1994a83b85770 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 3 Aug 2013 01:15:21 -0500 Subject: [PATCH 21/42] - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild --- libmpcdec.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libmpcdec.spec b/libmpcdec.spec index 08517c8..1f9ebc9 100644 --- a/libmpcdec.spec +++ b/libmpcdec.spec @@ -2,7 +2,7 @@ Summary: Musepack audio decoding library Name: libmpcdec Version: 1.2.6 -Release: 11%{?dist} +Release: 12%{?dist} License: BSD Group: System Environment/Libraries @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Aug 03 2013 Fedora Release Engineering - 1.2.6-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + * Tue Jun 04 2013 Rex Dieter 1.2.6-11 - -devel: tighten dep using %%{?_isa} - %%files: tighten file lists From a374fd313693b2d05b5ae964a4ea722372726d1a Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Fri, 6 Jun 2014 23:28:38 -0500 Subject: [PATCH 22/42] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild --- libmpcdec.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libmpcdec.spec b/libmpcdec.spec index 1f9ebc9..25895b5 100644 --- a/libmpcdec.spec +++ b/libmpcdec.spec @@ -2,7 +2,7 @@ Summary: Musepack audio decoding library Name: libmpcdec Version: 1.2.6 -Release: 12%{?dist} +Release: 13%{?dist} License: BSD Group: System Environment/Libraries @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jun 07 2014 Fedora Release Engineering - 1.2.6-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + * Sat Aug 03 2013 Fedora Release Engineering - 1.2.6-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild From 71508787875131fff899528e27c1be6a4b41689c Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Sun, 17 Aug 2014 04:40:26 +0000 Subject: [PATCH 23/42] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild --- libmpcdec.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libmpcdec.spec b/libmpcdec.spec index 25895b5..4483be5 100644 --- a/libmpcdec.spec +++ b/libmpcdec.spec @@ -2,7 +2,7 @@ Summary: Musepack audio decoding library Name: libmpcdec Version: 1.2.6 -Release: 13%{?dist} +Release: 14%{?dist} License: BSD Group: System Environment/Libraries @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Aug 17 2014 Fedora Release Engineering - 1.2.6-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + * Sat Jun 07 2014 Fedora Release Engineering - 1.2.6-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild From 32066b12491ca86e0a45e6203f1ab90d6e446c09 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Wed, 17 Jun 2015 16:07:42 +0000 Subject: [PATCH 24/42] - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild --- libmpcdec.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libmpcdec.spec b/libmpcdec.spec index 4483be5..630f30e 100644 --- a/libmpcdec.spec +++ b/libmpcdec.spec @@ -2,7 +2,7 @@ Summary: Musepack audio decoding library Name: libmpcdec Version: 1.2.6 -Release: 14%{?dist} +Release: 15%{?dist} License: BSD Group: System Environment/Libraries @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jun 17 2015 Fedora Release Engineering - 1.2.6-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + * Sun Aug 17 2014 Fedora Release Engineering - 1.2.6-14 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild From 5584b82790c340b446f1889baf33364d7845fe0d Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 4 Feb 2016 03:33:36 +0000 Subject: [PATCH 25/42] - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild --- libmpcdec.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libmpcdec.spec b/libmpcdec.spec index 630f30e..772bd31 100644 --- a/libmpcdec.spec +++ b/libmpcdec.spec @@ -2,7 +2,7 @@ Summary: Musepack audio decoding library Name: libmpcdec Version: 1.2.6 -Release: 15%{?dist} +Release: 16%{?dist} License: BSD Group: System Environment/Libraries @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Feb 04 2016 Fedora Release Engineering - 1.2.6-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + * Wed Jun 17 2015 Fedora Release Engineering - 1.2.6-15 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild From fcaa23bb4287610ac17b2681a58eb9d4c3378e3e Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 10 Feb 2017 19:04:31 +0000 Subject: [PATCH 26/42] - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild --- libmpcdec.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libmpcdec.spec b/libmpcdec.spec index 772bd31..4497df4 100644 --- a/libmpcdec.spec +++ b/libmpcdec.spec @@ -2,7 +2,7 @@ Summary: Musepack audio decoding library Name: libmpcdec Version: 1.2.6 -Release: 16%{?dist} +Release: 17%{?dist} License: BSD Group: System Environment/Libraries @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Feb 10 2017 Fedora Release Engineering - 1.2.6-17 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + * Thu Feb 04 2016 Fedora Release Engineering - 1.2.6-16 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild From ef6d078e4c199bc34fa0a57fea28a5e55c61b9ab Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 26 Jul 2017 19:17:23 +0000 Subject: [PATCH 27/42] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild --- libmpcdec.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libmpcdec.spec b/libmpcdec.spec index 4497df4..00efeab 100644 --- a/libmpcdec.spec +++ b/libmpcdec.spec @@ -2,7 +2,7 @@ Summary: Musepack audio decoding library Name: libmpcdec Version: 1.2.6 -Release: 17%{?dist} +Release: 18%{?dist} License: BSD Group: System Environment/Libraries @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 26 2017 Fedora Release Engineering - 1.2.6-18 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + * Fri Feb 10 2017 Fedora Release Engineering - 1.2.6-17 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild From b544ec7214a4aa17fae4d9fa432613efbcf1ec46 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 3 Aug 2017 01:52:30 +0000 Subject: [PATCH 28/42] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild --- libmpcdec.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libmpcdec.spec b/libmpcdec.spec index 00efeab..5c354a7 100644 --- a/libmpcdec.spec +++ b/libmpcdec.spec @@ -2,7 +2,7 @@ Summary: Musepack audio decoding library Name: libmpcdec Version: 1.2.6 -Release: 18%{?dist} +Release: 19%{?dist} License: BSD Group: System Environment/Libraries @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Aug 03 2017 Fedora Release Engineering - 1.2.6-19 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + * Wed Jul 26 2017 Fedora Release Engineering - 1.2.6-18 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild From 5f86b51bba10d915fe3ca1bb4814b44936d49ecb Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 7 Feb 2018 22:43:39 +0000 Subject: [PATCH 29/42] - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- libmpcdec.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libmpcdec.spec b/libmpcdec.spec index 5c354a7..971f355 100644 --- a/libmpcdec.spec +++ b/libmpcdec.spec @@ -2,7 +2,7 @@ Summary: Musepack audio decoding library Name: libmpcdec Version: 1.2.6 -Release: 19%{?dist} +Release: 20%{?dist} License: BSD Group: System Environment/Libraries @@ -65,6 +65,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Feb 07 2018 Fedora Release Engineering - 1.2.6-20 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + * Thu Aug 03 2017 Fedora Release Engineering - 1.2.6-19 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild From a5535665ca552f8aa523d9df3bf2fb8e69af0787 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Tue, 13 Feb 2018 23:40:50 +0100 Subject: [PATCH 30/42] Remove BuildRoot definition None of currently supported distributions need that. It was needed last for EL5 which is EOL now Signed-off-by: Igor Gnatenko --- libmpcdec.spec | 1 - 1 file changed, 1 deletion(-) diff --git a/libmpcdec.spec b/libmpcdec.spec index 971f355..19a5156 100644 --- a/libmpcdec.spec +++ b/libmpcdec.spec @@ -8,7 +8,6 @@ License: BSD Group: System Environment/Libraries URL: http://www.musepack.net/ Source0: http://files.musepack.net/source/libmpcdec-%{version}.tar.bz2 -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) %description Musepack is an audio compression format with a strong emphasis on high quality. From 7dc053e6dc310f71f45f499fcc994c39ec2a6916 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Wed, 14 Feb 2018 09:56:01 +0100 Subject: [PATCH 31/42] Remove %clean section None of currently supported distributions need that. Last one was EL5 which is EOL for a while. Signed-off-by: Igor Gnatenko --- libmpcdec.spec | 3 --- 1 file changed, 3 deletions(-) diff --git a/libmpcdec.spec b/libmpcdec.spec index 19a5156..8b7f5b2 100644 --- a/libmpcdec.spec +++ b/libmpcdec.spec @@ -45,9 +45,6 @@ make install DESTDIR=$RPM_BUILD_ROOT rm -fv $RPM_BUILD_ROOT%{_libdir}/lib*.la -%clean -rm -rf $RPM_BUILD_ROOT - %post -p /sbin/ldconfig %postun -p /sbin/ldconfig From 0ab967bcfaec4b2a50486d67e22bf163cb9b1af9 Mon Sep 17 00:00:00 2001 From: Rex Dieter Date: Wed, 7 Mar 2018 10:34:38 -0600 Subject: [PATCH 32/42] .spec cleanup BR: gcc use %ldconfig_scriptlets %license %make_build %make_install drop undesirable cflags --- libmpcdec.spec | 31 ++++++++++++++++++------------- 1 file changed, 18 insertions(+), 13 deletions(-) diff --git a/libmpcdec.spec b/libmpcdec.spec index 8b7f5b2..c3d060c 100644 --- a/libmpcdec.spec +++ b/libmpcdec.spec @@ -2,13 +2,15 @@ Summary: Musepack audio decoding library Name: libmpcdec Version: 1.2.6 -Release: 20%{?dist} +Release: 21%{?dist} License: BSD -Group: System Environment/Libraries URL: http://www.musepack.net/ Source0: http://files.musepack.net/source/libmpcdec-%{version}.tar.bz2 +BuildRequires: gcc +BuildRequires: sed + %description Musepack is an audio compression format with a strong emphasis on high quality. It's not lossless, but it is designed for transparency, so that you won't be @@ -20,7 +22,6 @@ heavily optimized and patentless code. %package devel Summary: Development files for the Musepack audio decoding library -Group: Development/Libraries Requires: %{name}%{?_isa} = %{version}-%{release} %description devel %{summary}. @@ -29,38 +30,42 @@ Requires: %{name}%{?_isa} = %{version}-%{release} %prep %setup -q +#hack out hard-coded undesirable compiler flags +sed -i.cflags -e 's|-O3 -fomit-frame-pointer||g' configure + %build %configure --disable-static -make %{?_smp_mflags} +%make_build %install -rm -rf $RPM_BUILD_ROOT - -make install DESTDIR=$RPM_BUILD_ROOT +%make_install #Unpackaged files rm -fv $RPM_BUILD_ROOT%{_libdir}/lib*.la - -%post -p /sbin/ldconfig -%postun -p /sbin/ldconfig +%ldconfig_scriptlets %files -%defattr(-,root,root,-) -%doc AUTHORS ChangeLog COPYING README +%doc AUTHORS ChangeLog README +%license COPYING %{_libdir}/libmpcdec.so.5* %files devel -%defattr(-,root,root,-) %{_includedir}/mpcdec/ %{_libdir}/libmpcdec.so %changelog +* Wed Mar 07 2018 Rex Dieter - 1.2.6-21 +- .spec cleanup +- BR: gcc +- use %%ldconfig_scriptlets %%license %%make_build %%make_install +- drop undesirable cflags + * Wed Feb 07 2018 Fedora Release Engineering - 1.2.6-20 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild From ca7624fc3ab97f05a83fb45b71bb857f03294d94 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 13 Jul 2018 08:27:46 +0000 Subject: [PATCH 33/42] - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- libmpcdec.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libmpcdec.spec b/libmpcdec.spec index c3d060c..4bd694b 100644 --- a/libmpcdec.spec +++ b/libmpcdec.spec @@ -2,7 +2,7 @@ Summary: Musepack audio decoding library Name: libmpcdec Version: 1.2.6 -Release: 21%{?dist} +Release: 22%{?dist} License: BSD URL: http://www.musepack.net/ @@ -60,6 +60,9 @@ rm -fv $RPM_BUILD_ROOT%{_libdir}/lib*.la %changelog +* Fri Jul 13 2018 Fedora Release Engineering - 1.2.6-22 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + * Wed Mar 07 2018 Rex Dieter - 1.2.6-21 - .spec cleanup - BR: gcc From 3107d4fa06098eb39a26a4ea09d43e9afd9c6073 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Thu, 19 Jul 2018 20:56:42 +0200 Subject: [PATCH 34/42] add BuildRequires: gcc-c++ Reference: https://fedoraproject.org/wiki/Changes/Remove_GCC_from_BuildRoot --- libmpcdec.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/libmpcdec.spec b/libmpcdec.spec index 4bd694b..a7e854c 100644 --- a/libmpcdec.spec +++ b/libmpcdec.spec @@ -8,6 +8,7 @@ License: BSD URL: http://www.musepack.net/ Source0: http://files.musepack.net/source/libmpcdec-%{version}.tar.bz2 +BuildRequires: gcc-c++ BuildRequires: gcc BuildRequires: sed From 240b931adbdd08279b3493d819a26438e3abba3f Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 1 Feb 2019 07:40:45 +0000 Subject: [PATCH 35/42] - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- libmpcdec.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libmpcdec.spec b/libmpcdec.spec index a7e854c..609e785 100644 --- a/libmpcdec.spec +++ b/libmpcdec.spec @@ -2,7 +2,7 @@ Summary: Musepack audio decoding library Name: libmpcdec Version: 1.2.6 -Release: 22%{?dist} +Release: 23%{?dist} License: BSD URL: http://www.musepack.net/ @@ -61,6 +61,9 @@ rm -fv $RPM_BUILD_ROOT%{_libdir}/lib*.la %changelog +* Fri Feb 01 2019 Fedora Release Engineering - 1.2.6-23 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + * Fri Jul 13 2018 Fedora Release Engineering - 1.2.6-22 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild From c922d1dfccae7f66024f8a23403bfd24884caa0b Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 25 Jul 2019 13:49:42 +0000 Subject: [PATCH 36/42] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- libmpcdec.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libmpcdec.spec b/libmpcdec.spec index 609e785..ab00c6b 100644 --- a/libmpcdec.spec +++ b/libmpcdec.spec @@ -2,7 +2,7 @@ Summary: Musepack audio decoding library Name: libmpcdec Version: 1.2.6 -Release: 23%{?dist} +Release: 24%{?dist} License: BSD URL: http://www.musepack.net/ @@ -61,6 +61,9 @@ rm -fv $RPM_BUILD_ROOT%{_libdir}/lib*.la %changelog +* Thu Jul 25 2019 Fedora Release Engineering - 1.2.6-24 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Fri Feb 01 2019 Fedora Release Engineering - 1.2.6-23 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild From 430e191195aea193c71f5ccd1e2ac6c40c162508 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 29 Jan 2020 09:46:30 +0000 Subject: [PATCH 37/42] - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- libmpcdec.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libmpcdec.spec b/libmpcdec.spec index ab00c6b..f09008b 100644 --- a/libmpcdec.spec +++ b/libmpcdec.spec @@ -2,7 +2,7 @@ Summary: Musepack audio decoding library Name: libmpcdec Version: 1.2.6 -Release: 24%{?dist} +Release: 25%{?dist} License: BSD URL: http://www.musepack.net/ @@ -61,6 +61,9 @@ rm -fv $RPM_BUILD_ROOT%{_libdir}/lib*.la %changelog +* Wed Jan 29 2020 Fedora Release Engineering - 1.2.6-25 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + * Thu Jul 25 2019 Fedora Release Engineering - 1.2.6-24 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild From 2361910dc21c5c494f8bc30a4746f4cdea8b9b46 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 28 Jul 2020 05:07:52 +0000 Subject: [PATCH 38/42] - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- libmpcdec.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libmpcdec.spec b/libmpcdec.spec index f09008b..38b75ad 100644 --- a/libmpcdec.spec +++ b/libmpcdec.spec @@ -2,7 +2,7 @@ Summary: Musepack audio decoding library Name: libmpcdec Version: 1.2.6 -Release: 25%{?dist} +Release: 26%{?dist} License: BSD URL: http://www.musepack.net/ @@ -61,6 +61,9 @@ rm -fv $RPM_BUILD_ROOT%{_libdir}/lib*.la %changelog +* Tue Jul 28 2020 Fedora Release Engineering - 1.2.6-26 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Wed Jan 29 2020 Fedora Release Engineering - 1.2.6-25 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild From d2baabf711daafd29670f9d7456fab03de57ec57 Mon Sep 17 00:00:00 2001 From: Tom Stellard Date: Tue, 5 Jan 2021 02:16:02 +0000 Subject: [PATCH 39/42] Add BuildRequires: make https://fedoraproject.org/wiki/Changes/Remove_make_from_BuildRoot --- libmpcdec.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/libmpcdec.spec b/libmpcdec.spec index 38b75ad..ebd73c0 100644 --- a/libmpcdec.spec +++ b/libmpcdec.spec @@ -11,6 +11,7 @@ Source0: http://files.musepack.net/source/libmpcdec-%{version}.tar.bz2 BuildRequires: gcc-c++ BuildRequires: gcc BuildRequires: sed +BuildRequires: make %description Musepack is an audio compression format with a strong emphasis on high quality. From 382acbc0bf670831e46ccc404804ca2d91d4c3db Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 26 Jan 2021 17:32:47 +0000 Subject: [PATCH 40/42] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- libmpcdec.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libmpcdec.spec b/libmpcdec.spec index ebd73c0..d008242 100644 --- a/libmpcdec.spec +++ b/libmpcdec.spec @@ -2,7 +2,7 @@ Summary: Musepack audio decoding library Name: libmpcdec Version: 1.2.6 -Release: 26%{?dist} +Release: 27%{?dist} License: BSD URL: http://www.musepack.net/ @@ -62,6 +62,9 @@ rm -fv $RPM_BUILD_ROOT%{_libdir}/lib*.la %changelog +* Tue Jan 26 2021 Fedora Release Engineering - 1.2.6-27 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Tue Jul 28 2020 Fedora Release Engineering - 1.2.6-26 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild From 0dee448706507fa22a7d06303af616e1e673a6c2 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 22 Jul 2021 11:52:48 +0000 Subject: [PATCH 41/42] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- libmpcdec.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/libmpcdec.spec b/libmpcdec.spec index d008242..1ed8d20 100644 --- a/libmpcdec.spec +++ b/libmpcdec.spec @@ -2,7 +2,7 @@ Summary: Musepack audio decoding library Name: libmpcdec Version: 1.2.6 -Release: 27%{?dist} +Release: 28%{?dist} License: BSD URL: http://www.musepack.net/ @@ -62,6 +62,9 @@ rm -fv $RPM_BUILD_ROOT%{_libdir}/lib*.la %changelog +* Thu Jul 22 2021 Fedora Release Engineering - 1.2.6-28 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Tue Jan 26 2021 Fedora Release Engineering - 1.2.6-27 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild From 6bc9d722adc68a8e114e269551495fe2e8dc4f2d Mon Sep 17 00:00:00 2001 From: MSVSphere Packaging Team Date: Mon, 30 Oct 2023 23:12:03 +0300 Subject: [PATCH 42/42] Remove unnecessary files --- sources | 1 - 1 file changed, 1 deletion(-) delete mode 100644 sources diff --git a/sources b/sources deleted file mode 100644 index d102dc9..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -7f7a060e83b4278acf4b77d7a7b9d2c0 libmpcdec-1.2.6.tar.bz2