From b858948f3275966dee8ceeaa148e0fd25b610557 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Sat, 3 Oct 2009 21:25:47 +0000 Subject: [PATCH 01/56] Initialize branch F-12 for alure --- branch | 1 + 1 file changed, 1 insertion(+) create mode 100644 branch diff --git a/branch b/branch new file mode 100644 index 0000000..06de2d2 --- /dev/null +++ b/branch @@ -0,0 +1 @@ +F-12 From ad33d30f5a6a46726e2b680758363da99d1d39ff Mon Sep 17 00:00:00 2001 From: Guido Grazioli Date: Sun, 4 Oct 2009 22:04:03 +0000 Subject: [PATCH 02/56] - Fixed license for -devel subpackage - Included sample code in -devel subpackage - Sanitized %%files Tue Sep 29 2009 Guido Grazioli - 1.0-3 - Renamed from libalure to alure - Fixed license Mon Sep 28 2009 Guido Grazioli - 1.0-2 - Fix multilib pkgconfig path Sat Sep 26 2009 Guido Grazioli - 1.0-1 - Initial packaging --- .cvsignore | 1 + alure.spec | 97 ++++++++++++++++++++++++++++++++++ alure_compile_with_gcc44.patch | 10 ++++ alure_multilib_pkgconfig.patch | 11 ++++ import.log | 1 + sources | 1 + 6 files changed, 121 insertions(+) create mode 100644 alure.spec create mode 100644 alure_compile_with_gcc44.patch create mode 100644 alure_multilib_pkgconfig.patch create mode 100644 import.log diff --git a/.cvsignore b/.cvsignore index e69de29..d9722c6 100644 --- a/.cvsignore +++ b/.cvsignore @@ -0,0 +1 @@ +alure-1.0-src.tar.bz2 diff --git a/alure.spec b/alure.spec new file mode 100644 index 0000000..2032287 --- /dev/null +++ b/alure.spec @@ -0,0 +1,97 @@ +Name: alure +Version: 1.0 +Release: 4%{?dist} +Summary: Audio Library Tools REloaded +Group: System Environment/Libraries +# ALURE code is LGPLv2+; note -devel subpackage has its own license tag +License: LGPLv2+ +URL: http://kcat.strangesoft.net/alure.html +Source0: http://kcat.strangesoft.net/%{name}-releases/%{name}-%{version}-src.tar.bz2 +# patch to compile with GCC 4.4 +Patch0: alure_compile_with_gcc44.patch +# set correct pkgconfig path for multilib +Patch1: alure_multilib_pkgconfig.patch +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +# flac-devel not BRed as build against flac currently fails +BuildRequires: cmake, libvorbis-devel, libsndfile-devel, openal-devel + + +%description +ALURE is a utility library to help manage common tasks with OpenAL +applications. This includes device enumeration and initialization, +file loading, and streaming. + + +%package devel +Summary: Development files for %{name} +Group: Development/Libraries +# Devel doc includes some files under GPLv2+ from NaturalDocs +License: LGPLv2+ and GPLv2+ +Requires: %{name} = %{version}-%{release} +Requires: pkgconfig + + +%description devel +The %{name}-devel package contains libraries and header files for +developing applications that use %{name}. + + +%prep +%setup -q +%patch0 -p1 +%patch1 -p1 + + +%build +# disable build against FLAC (currently fails) +%cmake . -DFLAC:BOOL=OFF +make VERBOSE=1 %{?_smp_mflags} + + +%install +rm -rf %{buildroot} +make install DESTDIR=%{buildroot} +find %{buildroot} -name '*.la' -exec rm -f {} ';' +# strip installed html doc +rm -rf %{buildroot}%{_docdir}/alure/html + + +%clean +rm -rf %{buildroot} + + +%post -p /sbin/ldconfig + + +%postun -p /sbin/ldconfig + + +%files +%defattr(-,root,root,-) +%doc COPYING +%{_libdir}/*.so.* + + +%files devel +%defattr(-,root,root,-) +%doc docs/html examples +%{_includedir}/AL/ +%{_libdir}/*.so +%{_libdir}/pkgconfig/*.pc + + +%changelog +* Thu Oct 01 2009 Guido Grazioli - 1.0-4 +- Fixed license for -devel subpackage +- Included sample code in -devel subpackage +- Sanitized %%files + +* Tue Sep 29 2009 Guido Grazioli - 1.0-3 +- Renamed from libalure to alure +- Fixed license + +* Mon Sep 28 2009 Guido Grazioli - 1.0-2 +- Fix multilib pkgconfig path + +* Sat Sep 26 2009 Guido Grazioli - 1.0-1 +- Initial packaging diff --git a/alure_compile_with_gcc44.patch b/alure_compile_with_gcc44.patch new file mode 100644 index 0000000..1add56a --- /dev/null +++ b/alure_compile_with_gcc44.patch @@ -0,0 +1,10 @@ +--- A/src/stream.cpp 2009-09-28 04:17:12.511762978 +0200 ++++ B/src/stream.cpp 2009-09-28 04:17:25.200016279 +0200 +@@ -10,6 +10,7 @@ + #include + #include + #include ++#include + + + struct nullStream : public alureStream { diff --git a/alure_multilib_pkgconfig.patch b/alure_multilib_pkgconfig.patch new file mode 100644 index 0000000..47ae88e --- /dev/null +++ b/alure_multilib_pkgconfig.patch @@ -0,0 +1,11 @@ +--- A/CMakeLists.txt 2009-09-28 15:55:01.864452396 +0200 ++++ B/CMakeLists.txt 2009-09-28 15:55:28.513440879 +0200 +@@ -323,7 +323,7 @@ + DESTINATION "include/${INCPATH}" + ) + INSTALL(FILES "${ALURE_BINARY_DIR}/alure.pc" +- DESTINATION lib/pkgconfig ++ DESTINATION ${LIB_INSTALL_DIR}/pkgconfig + ) + + diff --git a/import.log b/import.log new file mode 100644 index 0000000..8c8fb7a --- /dev/null +++ b/import.log @@ -0,0 +1 @@ +alure-1_0-4_fc11:HEAD:alure-1.0-4.fc11.src.rpm:1254693813 diff --git a/sources b/sources index e69de29..7065638 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +48a81287f2caf2adc5870cd075e70c9c alure-1.0-src.tar.bz2 From 0133e9cc25010648bef365ec47a3b2b95aa983de Mon Sep 17 00:00:00 2001 From: Guido Grazioli Date: Sun, 4 Oct 2009 22:14:41 +0000 Subject: [PATCH 03/56] - Fixed license for -devel subpackage - Included sample code in -devel subpackage - Sanitized %%files Tue Sep 29 2009 Guido Grazioli - 1.0-3 - Renamed from libalure to alure - Fixed license Mon Sep 28 2009 Guido Grazioli - 1.0-2 - Fix multilib pkgconfig path Sat Sep 26 2009 Guido Grazioli - 1.0-1 - Initial packaging --- .cvsignore | 1 + alure.spec | 97 ++++++++++++++++++++++++++++++++++ alure_compile_with_gcc44.patch | 10 ++++ alure_multilib_pkgconfig.patch | 11 ++++ import.log | 1 + sources | 1 + 6 files changed, 121 insertions(+) create mode 100644 alure.spec create mode 100644 alure_compile_with_gcc44.patch create mode 100644 alure_multilib_pkgconfig.patch create mode 100644 import.log diff --git a/.cvsignore b/.cvsignore index e69de29..d9722c6 100644 --- a/.cvsignore +++ b/.cvsignore @@ -0,0 +1 @@ +alure-1.0-src.tar.bz2 diff --git a/alure.spec b/alure.spec new file mode 100644 index 0000000..2032287 --- /dev/null +++ b/alure.spec @@ -0,0 +1,97 @@ +Name: alure +Version: 1.0 +Release: 4%{?dist} +Summary: Audio Library Tools REloaded +Group: System Environment/Libraries +# ALURE code is LGPLv2+; note -devel subpackage has its own license tag +License: LGPLv2+ +URL: http://kcat.strangesoft.net/alure.html +Source0: http://kcat.strangesoft.net/%{name}-releases/%{name}-%{version}-src.tar.bz2 +# patch to compile with GCC 4.4 +Patch0: alure_compile_with_gcc44.patch +# set correct pkgconfig path for multilib +Patch1: alure_multilib_pkgconfig.patch +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +# flac-devel not BRed as build against flac currently fails +BuildRequires: cmake, libvorbis-devel, libsndfile-devel, openal-devel + + +%description +ALURE is a utility library to help manage common tasks with OpenAL +applications. This includes device enumeration and initialization, +file loading, and streaming. + + +%package devel +Summary: Development files for %{name} +Group: Development/Libraries +# Devel doc includes some files under GPLv2+ from NaturalDocs +License: LGPLv2+ and GPLv2+ +Requires: %{name} = %{version}-%{release} +Requires: pkgconfig + + +%description devel +The %{name}-devel package contains libraries and header files for +developing applications that use %{name}. + + +%prep +%setup -q +%patch0 -p1 +%patch1 -p1 + + +%build +# disable build against FLAC (currently fails) +%cmake . -DFLAC:BOOL=OFF +make VERBOSE=1 %{?_smp_mflags} + + +%install +rm -rf %{buildroot} +make install DESTDIR=%{buildroot} +find %{buildroot} -name '*.la' -exec rm -f {} ';' +# strip installed html doc +rm -rf %{buildroot}%{_docdir}/alure/html + + +%clean +rm -rf %{buildroot} + + +%post -p /sbin/ldconfig + + +%postun -p /sbin/ldconfig + + +%files +%defattr(-,root,root,-) +%doc COPYING +%{_libdir}/*.so.* + + +%files devel +%defattr(-,root,root,-) +%doc docs/html examples +%{_includedir}/AL/ +%{_libdir}/*.so +%{_libdir}/pkgconfig/*.pc + + +%changelog +* Thu Oct 01 2009 Guido Grazioli - 1.0-4 +- Fixed license for -devel subpackage +- Included sample code in -devel subpackage +- Sanitized %%files + +* Tue Sep 29 2009 Guido Grazioli - 1.0-3 +- Renamed from libalure to alure +- Fixed license + +* Mon Sep 28 2009 Guido Grazioli - 1.0-2 +- Fix multilib pkgconfig path + +* Sat Sep 26 2009 Guido Grazioli - 1.0-1 +- Initial packaging diff --git a/alure_compile_with_gcc44.patch b/alure_compile_with_gcc44.patch new file mode 100644 index 0000000..1add56a --- /dev/null +++ b/alure_compile_with_gcc44.patch @@ -0,0 +1,10 @@ +--- A/src/stream.cpp 2009-09-28 04:17:12.511762978 +0200 ++++ B/src/stream.cpp 2009-09-28 04:17:25.200016279 +0200 +@@ -10,6 +10,7 @@ + #include + #include + #include ++#include + + + struct nullStream : public alureStream { diff --git a/alure_multilib_pkgconfig.patch b/alure_multilib_pkgconfig.patch new file mode 100644 index 0000000..47ae88e --- /dev/null +++ b/alure_multilib_pkgconfig.patch @@ -0,0 +1,11 @@ +--- A/CMakeLists.txt 2009-09-28 15:55:01.864452396 +0200 ++++ B/CMakeLists.txt 2009-09-28 15:55:28.513440879 +0200 +@@ -323,7 +323,7 @@ + DESTINATION "include/${INCPATH}" + ) + INSTALL(FILES "${ALURE_BINARY_DIR}/alure.pc" +- DESTINATION lib/pkgconfig ++ DESTINATION ${LIB_INSTALL_DIR}/pkgconfig + ) + + diff --git a/import.log b/import.log new file mode 100644 index 0000000..5c37e72 --- /dev/null +++ b/import.log @@ -0,0 +1 @@ +alure-1_0-4_fc11:F-12:alure-1.0-4.fc11.src.rpm:1254694400 diff --git a/sources b/sources index e69de29..7065638 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +48a81287f2caf2adc5870cd075e70c9c alure-1.0-src.tar.bz2 From 67d4572ffc5d325613047e7b45c8892090ac0e0d Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Wed, 25 Nov 2009 22:39:28 +0000 Subject: [PATCH 04/56] Fix typo that causes a failure to update the common directory. (releng #2781) --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 4e2ce38..54e2bf3 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ # Makefile for source rpm: alure -# $Id$ +# $Id: Makefile,v 1.1 2009/10/03 21:25:45 kevin Exp $ NAME := alure 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 f95a38151db2ca432ebdfa59f17a9ca161dfee70 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Thu, 26 Nov 2009 01:27:04 +0000 Subject: [PATCH 05/56] Fix typo that causes a failure to update the common directory. (releng #2781) --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 4e2ce38..54e2bf3 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ # Makefile for source rpm: alure -# $Id$ +# $Id: Makefile,v 1.1 2009/10/03 21:25:45 kevin Exp $ NAME := alure 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 b991a57373cd91cac34c61347117cb5fa3fa8311 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 28 Jul 2010 09:46:50 +0000 Subject: [PATCH 06/56] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- branch | 1 - import.log | 1 - 4 files changed, 23 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile delete mode 100644 branch delete mode 100644 import.log 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 54e2bf3..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: alure -# $Id: Makefile,v 1.1 2009/10/03 21:25:45 kevin Exp $ -NAME := alure -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) diff --git a/branch b/branch deleted file mode 100644 index 06de2d2..0000000 --- a/branch +++ /dev/null @@ -1 +0,0 @@ -F-12 diff --git a/import.log b/import.log deleted file mode 100644 index 5c37e72..0000000 --- a/import.log +++ /dev/null @@ -1 +0,0 @@ -alure-1_0-4_fc11:F-12:alure-1.0-4.fc11.src.rpm:1254694400 From f59d24425d59fa59562c5bf50c544e0054238f3e Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 28 Jul 2010 09:46:51 +0000 Subject: [PATCH 07/56] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- import.log | 1 - 3 files changed, 22 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile delete mode 100644 import.log 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 54e2bf3..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: alure -# $Id: Makefile,v 1.1 2009/10/03 21:25:45 kevin Exp $ -NAME := alure -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) diff --git a/import.log b/import.log deleted file mode 100644 index 8c8fb7a..0000000 --- a/import.log +++ /dev/null @@ -1 +0,0 @@ -alure-1_0-4_fc11:HEAD:alure-1.0-4.fc11.src.rpm:1254693813 From a8aa94363520155e5ce108c4318ef82edb6c1e33 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Mon, 7 Feb 2011 19:02:18 -0600 Subject: [PATCH 08/56] - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild --- alure.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/alure.spec b/alure.spec index 2032287..3b240fe 100644 --- a/alure.spec +++ b/alure.spec @@ -1,6 +1,6 @@ Name: alure Version: 1.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Audio Library Tools REloaded Group: System Environment/Libraries # ALURE code is LGPLv2+; note -devel subpackage has its own license tag @@ -81,6 +81,9 @@ rm -rf %{buildroot} %changelog +* Mon Feb 07 2011 Fedora Release Engineering - 1.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + * Thu Oct 01 2009 Guido Grazioli - 1.0-4 - Fixed license for -devel subpackage - Included sample code in -devel subpackage From 8c1529c62fabf889f11ebe3960b7a6ec0054b7f9 Mon Sep 17 00:00:00 2001 From: Julian Aloofi Date: Sat, 28 May 2011 12:55:58 +0200 Subject: [PATCH 09/56] update to latest upstream version --- .gitignore | 1 + alure.spec | 22 +++++++++------------- alure_compile_with_gcc44.patch | 10 ---------- alure_multilib_pkgconfig.patch | 11 ----------- sources | 2 +- 5 files changed, 11 insertions(+), 35 deletions(-) delete mode 100644 alure_compile_with_gcc44.patch delete mode 100644 alure_multilib_pkgconfig.patch diff --git a/.gitignore b/.gitignore index d9722c6..8e0dc18 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ alure-1.0-src.tar.bz2 +/alure-1.1.tar.bz2 diff --git a/alure.spec b/alure.spec index 3b240fe..4541a17 100644 --- a/alure.spec +++ b/alure.spec @@ -1,19 +1,14 @@ Name: alure -Version: 1.0 -Release: 5%{?dist} +Version: 1.1 +Release: 1%{?dist} Summary: Audio Library Tools REloaded Group: System Environment/Libraries # ALURE code is LGPLv2+; note -devel subpackage has its own license tag License: LGPLv2+ URL: http://kcat.strangesoft.net/alure.html -Source0: http://kcat.strangesoft.net/%{name}-releases/%{name}-%{version}-src.tar.bz2 -# patch to compile with GCC 4.4 -Patch0: alure_compile_with_gcc44.patch -# set correct pkgconfig path for multilib -Patch1: alure_multilib_pkgconfig.patch +Source0: http://kcat.strangesoft.net/%{name}-releases/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -# flac-devel not BRed as build against flac currently fails -BuildRequires: cmake, libvorbis-devel, libsndfile-devel, openal-devel +BuildRequires: cmake, libvorbis-devel, libsndfile-devel, openal-soft-devel, flac-devel, dumb-devel, fluidsynth-devel %description @@ -38,13 +33,10 @@ developing applications that use %{name}. %prep %setup -q -%patch0 -p1 -%patch1 -p1 %build -# disable build against FLAC (currently fails) -%cmake . -DFLAC:BOOL=OFF +%cmake . -DBUILD_STATIC:BOOL=OFF make VERBOSE=1 %{?_smp_mflags} @@ -81,6 +73,10 @@ rm -rf %{buildroot} %changelog +* Sat May 28 2011 Julian Aloofi - 1.1-1 +- update to latest upstream release +- enabled FLAC, DUMB and fluidsynth support + * Mon Feb 07 2011 Fedora Release Engineering - 1.0-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild diff --git a/alure_compile_with_gcc44.patch b/alure_compile_with_gcc44.patch deleted file mode 100644 index 1add56a..0000000 --- a/alure_compile_with_gcc44.patch +++ /dev/null @@ -1,10 +0,0 @@ ---- A/src/stream.cpp 2009-09-28 04:17:12.511762978 +0200 -+++ B/src/stream.cpp 2009-09-28 04:17:25.200016279 +0200 -@@ -10,6 +10,7 @@ - #include - #include - #include -+#include - - - struct nullStream : public alureStream { diff --git a/alure_multilib_pkgconfig.patch b/alure_multilib_pkgconfig.patch deleted file mode 100644 index 47ae88e..0000000 --- a/alure_multilib_pkgconfig.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- A/CMakeLists.txt 2009-09-28 15:55:01.864452396 +0200 -+++ B/CMakeLists.txt 2009-09-28 15:55:28.513440879 +0200 -@@ -323,7 +323,7 @@ - DESTINATION "include/${INCPATH}" - ) - INSTALL(FILES "${ALURE_BINARY_DIR}/alure.pc" -- DESTINATION lib/pkgconfig -+ DESTINATION ${LIB_INSTALL_DIR}/pkgconfig - ) - - diff --git a/sources b/sources index 7065638..81251cc 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -48a81287f2caf2adc5870cd075e70c9c alure-1.0-src.tar.bz2 +a2f6934d3783c8478c460965a13e4e12 alure-1.1.tar.bz2 From 82723ad2b22aefb12ab7f3369469abcd7f324808 Mon Sep 17 00:00:00 2001 From: Julian Aloofi Date: Fri, 29 Jul 2011 19:06:42 +0200 Subject: [PATCH 10/56] update to latest upstream release --- .gitignore | 1 + alure.spec | 6 +++++- sources | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 8e0dc18..933a615 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ alure-1.0-src.tar.bz2 /alure-1.1.tar.bz2 +/alure-1.2.tar.bz2 diff --git a/alure.spec b/alure.spec index 4541a17..0469362 100644 --- a/alure.spec +++ b/alure.spec @@ -1,5 +1,5 @@ Name: alure -Version: 1.1 +Version: 1.2 Release: 1%{?dist} Summary: Audio Library Tools REloaded Group: System Environment/Libraries @@ -62,6 +62,7 @@ rm -rf %{buildroot} %defattr(-,root,root,-) %doc COPYING %{_libdir}/*.so.* +%{_bindir}/alure* %files devel @@ -73,6 +74,9 @@ rm -rf %{buildroot} %changelog +* Fri Jul 29 2011 Julian Aloofi - 1.2-1 +- update to latest upstream release + * Sat May 28 2011 Julian Aloofi - 1.1-1 - update to latest upstream release - enabled FLAC, DUMB and fluidsynth support diff --git a/sources b/sources index 81251cc..dc1176c 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -a2f6934d3783c8478c460965a13e4e12 alure-1.1.tar.bz2 +3088aba074ad02d95ea51e705053b9f5 alure-1.2.tar.bz2 From 0c0126a0d83d0b13419ac323c39b4a3cf6ac8d34 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 12 Jan 2012 15:12:46 -0600 Subject: [PATCH 11/56] - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild --- alure.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/alure.spec b/alure.spec index 0469362..2634654 100644 --- a/alure.spec +++ b/alure.spec @@ -1,6 +1,6 @@ Name: alure Version: 1.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Audio Library Tools REloaded Group: System Environment/Libraries # ALURE code is LGPLv2+; note -devel subpackage has its own license tag @@ -74,6 +74,9 @@ rm -rf %{buildroot} %changelog +* Thu Jan 12 2012 Fedora Release Engineering - 1.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + * Fri Jul 29 2011 Julian Aloofi - 1.2-1 - update to latest upstream release From 3545ee1b85ee1157d7878487b8fe60cd4dfc1f3f Mon Sep 17 00:00:00 2001 From: Bruno Wolff III Date: Mon, 30 Jan 2012 23:31:42 -0600 Subject: [PATCH 12/56] Fix for gcc 4.7 unistd.h isn't included in some places that it was in previous versions of gcc. --- alure-gcc47.patch | 11 +++++++++++ alure.spec | 7 ++++++- 2 files changed, 17 insertions(+), 1 deletion(-) create mode 100644 alure-gcc47.patch diff --git a/alure-gcc47.patch b/alure-gcc47.patch new file mode 100644 index 0000000..175b2c1 --- /dev/null +++ b/alure-gcc47.patch @@ -0,0 +1,11 @@ +--- include/main.h.orig 2012-01-30 23:27:53.230334632 -0600 ++++ include/main.h 2012-01-30 23:28:26.241530184 -0600 +@@ -4,6 +4,8 @@ + #include "AL/alure.h" + #include "alext.h" + ++#include ++ + #ifdef HAVE_SYS_TYPES_H + #include + #endif diff --git a/alure.spec b/alure.spec index 2634654..de53aac 100644 --- a/alure.spec +++ b/alure.spec @@ -1,12 +1,13 @@ Name: alure Version: 1.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Audio Library Tools REloaded Group: System Environment/Libraries # ALURE code is LGPLv2+; note -devel subpackage has its own license tag License: LGPLv2+ URL: http://kcat.strangesoft.net/alure.html Source0: http://kcat.strangesoft.net/%{name}-releases/%{name}-%{version}.tar.bz2 +Patch0: alure-gcc47.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: cmake, libvorbis-devel, libsndfile-devel, openal-soft-devel, flac-devel, dumb-devel, fluidsynth-devel @@ -33,6 +34,7 @@ developing applications that use %{name}. %prep %setup -q +%patch0 %build @@ -74,6 +76,9 @@ rm -rf %{buildroot} %changelog +* Mon Jan 30 2012 Bruno Wolff III - 1.2-3 +- Fix for gcc 4.7 + * Thu Jan 12 2012 Fedora Release Engineering - 1.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild From d1e2c1d08c48c8094b2adc4e03ed9a6a380ebc0c Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Wed, 18 Jul 2012 10:54:32 -0500 Subject: [PATCH 13/56] - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild --- alure.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/alure.spec b/alure.spec index de53aac..83e0acd 100644 --- a/alure.spec +++ b/alure.spec @@ -1,6 +1,6 @@ Name: alure Version: 1.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Audio Library Tools REloaded Group: System Environment/Libraries # ALURE code is LGPLv2+; note -devel subpackage has its own license tag @@ -76,6 +76,9 @@ rm -rf %{buildroot} %changelog +* Wed Jul 18 2012 Fedora Release Engineering - 1.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + * Mon Jan 30 2012 Bruno Wolff III - 1.2-3 - Fix for gcc 4.7 From a40120650d1b555d14cc45ade6adbe293c854cb8 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Wed, 13 Feb 2013 10:29:52 -0600 Subject: [PATCH 14/56] - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild --- alure.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/alure.spec b/alure.spec index 83e0acd..9ca88c1 100644 --- a/alure.spec +++ b/alure.spec @@ -1,6 +1,6 @@ Name: alure Version: 1.2 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Audio Library Tools REloaded Group: System Environment/Libraries # ALURE code is LGPLv2+; note -devel subpackage has its own license tag @@ -76,6 +76,9 @@ rm -rf %{buildroot} %changelog +* Wed Feb 13 2013 Fedora Release Engineering - 1.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + * Wed Jul 18 2012 Fedora Release Engineering - 1.2-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild From f90765b33fa23d3d21b145bcd0adcc603906272c Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Fri, 2 Aug 2013 19:40:49 -0500 Subject: [PATCH 15/56] - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild --- alure.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/alure.spec b/alure.spec index 9ca88c1..c972045 100644 --- a/alure.spec +++ b/alure.spec @@ -1,6 +1,6 @@ Name: alure Version: 1.2 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Audio Library Tools REloaded Group: System Environment/Libraries # ALURE code is LGPLv2+; note -devel subpackage has its own license tag @@ -76,6 +76,9 @@ rm -rf %{buildroot} %changelog +* Sat Aug 03 2013 Fedora Release Engineering - 1.2-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + * Wed Feb 13 2013 Fedora Release Engineering - 1.2-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild From 238b436df83fb2adccb7b85450d65d860ad155e5 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Fri, 6 Jun 2014 19:33:23 -0500 Subject: [PATCH 16/56] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild --- alure.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/alure.spec b/alure.spec index c972045..467605d 100644 --- a/alure.spec +++ b/alure.spec @@ -1,6 +1,6 @@ Name: alure Version: 1.2 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Audio Library Tools REloaded Group: System Environment/Libraries # ALURE code is LGPLv2+; note -devel subpackage has its own license tag @@ -76,6 +76,9 @@ rm -rf %{buildroot} %changelog +* Sat Jun 07 2014 Fedora Release Engineering - 1.2-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + * Sat Aug 03 2013 Fedora Release Engineering - 1.2-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild From b547519e55487483c54c106e5be394f90fd398e4 Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Fri, 15 Aug 2014 20:25:35 +0000 Subject: [PATCH 17/56] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild --- alure.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/alure.spec b/alure.spec index 467605d..0866e2a 100644 --- a/alure.spec +++ b/alure.spec @@ -1,6 +1,6 @@ Name: alure Version: 1.2 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Audio Library Tools REloaded Group: System Environment/Libraries # ALURE code is LGPLv2+; note -devel subpackage has its own license tag @@ -76,6 +76,9 @@ rm -rf %{buildroot} %changelog +* Fri Aug 15 2014 Fedora Release Engineering - 1.2-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + * Sat Jun 07 2014 Fedora Release Engineering - 1.2-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild From 3f44c3b749fce46adf8931341acc87bcf1754e83 Mon Sep 17 00:00:00 2001 From: Kalev Lember Date: Sat, 2 May 2015 12:30:06 +0200 Subject: [PATCH 18/56] Rebuilt for GCC 5 C++11 ABI change --- alure.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/alure.spec b/alure.spec index 0866e2a..0f10d58 100644 --- a/alure.spec +++ b/alure.spec @@ -1,6 +1,6 @@ Name: alure Version: 1.2 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Audio Library Tools REloaded Group: System Environment/Libraries # ALURE code is LGPLv2+; note -devel subpackage has its own license tag @@ -76,6 +76,9 @@ rm -rf %{buildroot} %changelog +* Sat May 02 2015 Kalev Lember - 1.2-9 +- Rebuilt for GCC 5 C++11 ABI change + * Fri Aug 15 2014 Fedora Release Engineering - 1.2-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild From e6f20c42b0940ce691ff195d1ad1f7d0c3797882 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Tue, 16 Jun 2015 23:49:58 +0000 Subject: [PATCH 19/56] - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild --- alure.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/alure.spec b/alure.spec index 0f10d58..36fd8cb 100644 --- a/alure.spec +++ b/alure.spec @@ -1,6 +1,6 @@ Name: alure Version: 1.2 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Audio Library Tools REloaded Group: System Environment/Libraries # ALURE code is LGPLv2+; note -devel subpackage has its own license tag @@ -76,6 +76,9 @@ rm -rf %{buildroot} %changelog +* Tue Jun 16 2015 Fedora Release Engineering - 1.2-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + * Sat May 02 2015 Kalev Lember - 1.2-9 - Rebuilt for GCC 5 C++11 ABI change From 21e0da1c40394742905f18cf3a606c35344a5cb5 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Wed, 3 Feb 2016 16:08:04 +0000 Subject: [PATCH 20/56] - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild --- alure.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/alure.spec b/alure.spec index 36fd8cb..1df1e4c 100644 --- a/alure.spec +++ b/alure.spec @@ -1,6 +1,6 @@ Name: alure Version: 1.2 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Audio Library Tools REloaded Group: System Environment/Libraries # ALURE code is LGPLv2+; note -devel subpackage has its own license tag @@ -76,6 +76,9 @@ rm -rf %{buildroot} %changelog +* Wed Feb 03 2016 Fedora Release Engineering - 1.2-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + * Tue Jun 16 2015 Fedora Release Engineering - 1.2-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild From 18a58cf8b1e569b81bb4a0dc878ade9889fcfed0 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 10 Feb 2017 05:54:49 +0000 Subject: [PATCH 21/56] - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild --- alure.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/alure.spec b/alure.spec index 1df1e4c..ba9c889 100644 --- a/alure.spec +++ b/alure.spec @@ -1,6 +1,6 @@ Name: alure Version: 1.2 -Release: 11%{?dist} +Release: 12%{?dist} Summary: Audio Library Tools REloaded Group: System Environment/Libraries # ALURE code is LGPLv2+; note -devel subpackage has its own license tag @@ -76,6 +76,9 @@ rm -rf %{buildroot} %changelog +* Fri Feb 10 2017 Fedora Release Engineering - 1.2-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + * Wed Feb 03 2016 Fedora Release Engineering - 1.2-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild From bb9f73452806101bf9eff33b82305d34003db448 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 26 Jul 2017 02:47:52 +0000 Subject: [PATCH 22/56] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild --- alure.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/alure.spec b/alure.spec index ba9c889..d933c31 100644 --- a/alure.spec +++ b/alure.spec @@ -1,6 +1,6 @@ Name: alure Version: 1.2 -Release: 12%{?dist} +Release: 13%{?dist} Summary: Audio Library Tools REloaded Group: System Environment/Libraries # ALURE code is LGPLv2+; note -devel subpackage has its own license tag @@ -76,6 +76,9 @@ rm -rf %{buildroot} %changelog +* Wed Jul 26 2017 Fedora Release Engineering - 1.2-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + * Fri Feb 10 2017 Fedora Release Engineering - 1.2-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild From 328a8064e5629fec185a4d4ede3b027ca44aaf99 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 2 Aug 2017 17:32:17 +0000 Subject: [PATCH 23/56] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild --- alure.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/alure.spec b/alure.spec index d933c31..cf01004 100644 --- a/alure.spec +++ b/alure.spec @@ -1,6 +1,6 @@ Name: alure Version: 1.2 -Release: 13%{?dist} +Release: 14%{?dist} Summary: Audio Library Tools REloaded Group: System Environment/Libraries # ALURE code is LGPLv2+; note -devel subpackage has its own license tag @@ -76,6 +76,9 @@ rm -rf %{buildroot} %changelog +* Wed Aug 02 2017 Fedora Release Engineering - 1.2-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + * Wed Jul 26 2017 Fedora Release Engineering - 1.2-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild From 7cc669eccd226030e75c411b073ff4a39e417053 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 7 Feb 2018 02:10:24 +0000 Subject: [PATCH 24/56] - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- alure.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/alure.spec b/alure.spec index cf01004..02435c1 100644 --- a/alure.spec +++ b/alure.spec @@ -1,6 +1,6 @@ Name: alure Version: 1.2 -Release: 14%{?dist} +Release: 15%{?dist} Summary: Audio Library Tools REloaded Group: System Environment/Libraries # ALURE code is LGPLv2+; note -devel subpackage has its own license tag @@ -76,6 +76,9 @@ rm -rf %{buildroot} %changelog +* Wed Feb 07 2018 Fedora Release Engineering - 1.2-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + * Wed Aug 02 2017 Fedora Release Engineering - 1.2-14 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild From 0df147d91901152d5802b61ae863bcab6a347553 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Tue, 13 Feb 2018 23:01:30 +0100 Subject: [PATCH 25/56] 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 --- alure.spec | 1 - 1 file changed, 1 deletion(-) diff --git a/alure.spec b/alure.spec index 02435c1..f3cd5d7 100644 --- a/alure.spec +++ b/alure.spec @@ -8,7 +8,6 @@ License: LGPLv2+ URL: http://kcat.strangesoft.net/alure.html Source0: http://kcat.strangesoft.net/%{name}-releases/%{name}-%{version}.tar.bz2 Patch0: alure-gcc47.patch -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: cmake, libvorbis-devel, libsndfile-devel, openal-soft-devel, flac-devel, dumb-devel, fluidsynth-devel From f864cab597b5f98dbdc6098e664a57b9652f7429 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Wed, 14 Feb 2018 07:01:40 +0100 Subject: [PATCH 26/56] 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 --- alure.spec | 3 --- 1 file changed, 3 deletions(-) diff --git a/alure.spec b/alure.spec index f3cd5d7..d189fff 100644 --- a/alure.spec +++ b/alure.spec @@ -49,9 +49,6 @@ find %{buildroot} -name '*.la' -exec rm -f {} ';' rm -rf %{buildroot}%{_docdir}/alure/html -%clean -rm -rf %{buildroot} - %post -p /sbin/ldconfig From ee24c6646fa7a4084528af34a8cd2a40c8f5f6c5 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Mon, 9 Jul 2018 19:06:42 +0200 Subject: [PATCH 27/56] add BuildRequires: gcc-c++,gcc Reference: https://fedoraproject.org/wiki/Changes/Remove_GCC_from_BuildRoot --- alure.spec | 2 ++ 1 file changed, 2 insertions(+) diff --git a/alure.spec b/alure.spec index d189fff..532f74e 100644 --- a/alure.spec +++ b/alure.spec @@ -8,6 +8,8 @@ License: LGPLv2+ URL: http://kcat.strangesoft.net/alure.html Source0: http://kcat.strangesoft.net/%{name}-releases/%{name}-%{version}.tar.bz2 Patch0: alure-gcc47.patch +BuildRequires: gcc +BuildRequires: gcc-c++ BuildRequires: cmake, libvorbis-devel, libsndfile-devel, openal-soft-devel, flac-devel, dumb-devel, fluidsynth-devel From 040f91fc7171c62fd2b6ba86000cf74c6be0d8b2 Mon Sep 17 00:00:00 2001 From: Jason Tibbitts Date: Tue, 10 Jul 2018 00:10:21 -0500 Subject: [PATCH 28/56] Remove needless use of %defattr --- alure.spec | 2 -- 1 file changed, 2 deletions(-) diff --git a/alure.spec b/alure.spec index 532f74e..9f6239d 100644 --- a/alure.spec +++ b/alure.spec @@ -59,14 +59,12 @@ rm -rf %{buildroot}%{_docdir}/alure/html %files -%defattr(-,root,root,-) %doc COPYING %{_libdir}/*.so.* %{_bindir}/alure* %files devel -%defattr(-,root,root,-) %doc docs/html examples %{_includedir}/AL/ %{_libdir}/*.so From 764d8db637791e1206b14426288643536f56ca2e Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 12 Jul 2018 20:10:16 +0000 Subject: [PATCH 29/56] - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- alure.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/alure.spec b/alure.spec index 9f6239d..88871e2 100644 --- a/alure.spec +++ b/alure.spec @@ -1,6 +1,6 @@ Name: alure Version: 1.2 -Release: 15%{?dist} +Release: 16%{?dist} Summary: Audio Library Tools REloaded Group: System Environment/Libraries # ALURE code is LGPLv2+; note -devel subpackage has its own license tag @@ -72,6 +72,9 @@ rm -rf %{buildroot}%{_docdir}/alure/html %changelog +* Thu Jul 12 2018 Fedora Release Engineering - 1.2-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + * Wed Feb 07 2018 Fedora Release Engineering - 1.2-15 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild From 9df81ee250314be311dcd017d8d76fdde6fb69c1 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Tue, 22 Jan 2019 18:38:30 +0100 Subject: [PATCH 30/56] Remove obsolete ldconfig scriptlets References: https://fedoraproject.org/wiki/Changes/RemoveObsoleteScriptlets Signed-off-by: Igor Gnatenko --- alure.spec | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/alure.spec b/alure.spec index 88871e2..429767f 100644 --- a/alure.spec +++ b/alure.spec @@ -52,10 +52,7 @@ rm -rf %{buildroot}%{_docdir}/alure/html -%post -p /sbin/ldconfig - - -%postun -p /sbin/ldconfig +%ldconfig_scriptlets %files From 859e3e9c3081d014fe302ac32ec7155ffc3efd60 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Mon, 28 Jan 2019 20:17:38 +0100 Subject: [PATCH 31/56] Remove obsolete Group tag References: https://fedoraproject.org/wiki/Changes/Remove_Group_Tag --- alure.spec | 2 -- 1 file changed, 2 deletions(-) diff --git a/alure.spec b/alure.spec index 429767f..c7cd3d4 100644 --- a/alure.spec +++ b/alure.spec @@ -2,7 +2,6 @@ Name: alure Version: 1.2 Release: 16%{?dist} Summary: Audio Library Tools REloaded -Group: System Environment/Libraries # ALURE code is LGPLv2+; note -devel subpackage has its own license tag License: LGPLv2+ URL: http://kcat.strangesoft.net/alure.html @@ -21,7 +20,6 @@ file loading, and streaming. %package devel Summary: Development files for %{name} -Group: Development/Libraries # Devel doc includes some files under GPLv2+ from NaturalDocs License: LGPLv2+ and GPLv2+ Requires: %{name} = %{version}-%{release} From 0954d83334ec893daeca52c59f95951fc153ed8b Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 31 Jan 2019 13:14:04 +0000 Subject: [PATCH 32/56] - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- alure.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/alure.spec b/alure.spec index c7cd3d4..1e2936e 100644 --- a/alure.spec +++ b/alure.spec @@ -1,6 +1,6 @@ Name: alure Version: 1.2 -Release: 16%{?dist} +Release: 17%{?dist} Summary: Audio Library Tools REloaded # ALURE code is LGPLv2+; note -devel subpackage has its own license tag License: LGPLv2+ @@ -67,6 +67,9 @@ rm -rf %{buildroot}%{_docdir}/alure/html %changelog +* Thu Jan 31 2019 Fedora Release Engineering - 1.2-17 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + * Thu Jul 12 2018 Fedora Release Engineering - 1.2-16 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild From 14f6690ade90e618b8fbd8e7799ed722b18a3e07 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 24 Jul 2019 17:48:53 +0000 Subject: [PATCH 33/56] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- alure.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/alure.spec b/alure.spec index 1e2936e..3530a03 100644 --- a/alure.spec +++ b/alure.spec @@ -1,6 +1,6 @@ Name: alure Version: 1.2 -Release: 17%{?dist} +Release: 18%{?dist} Summary: Audio Library Tools REloaded # ALURE code is LGPLv2+; note -devel subpackage has its own license tag License: LGPLv2+ @@ -67,6 +67,9 @@ rm -rf %{buildroot}%{_docdir}/alure/html %changelog +* Wed Jul 24 2019 Fedora Release Engineering - 1.2-18 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Thu Jan 31 2019 Fedora Release Engineering - 1.2-17 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild From c203278571f3caf4ade91aaf793881cb1b34d91f Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 28 Jan 2020 11:28:54 +0000 Subject: [PATCH 34/56] - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- alure.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/alure.spec b/alure.spec index 3530a03..81b4e16 100644 --- a/alure.spec +++ b/alure.spec @@ -1,6 +1,6 @@ Name: alure Version: 1.2 -Release: 18%{?dist} +Release: 19%{?dist} Summary: Audio Library Tools REloaded # ALURE code is LGPLv2+; note -devel subpackage has its own license tag License: LGPLv2+ @@ -67,6 +67,9 @@ rm -rf %{buildroot}%{_docdir}/alure/html %changelog +* Tue Jan 28 2020 Fedora Release Engineering - 1.2-19 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + * Wed Jul 24 2019 Fedora Release Engineering - 1.2-18 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild From 189e886f382d3c5b3c0bfb6715487823a6170cdc Mon Sep 17 00:00:00 2001 From: Neal Gompa Date: Sat, 18 Jul 2020 14:37:40 -0400 Subject: [PATCH 35/56] Update to new out-of-source build mechanism --- alure.spec | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/alure.spec b/alure.spec index 81b4e16..33c84db 100644 --- a/alure.spec +++ b/alure.spec @@ -1,3 +1,6 @@ +# Force out of source build +%undefine __cmake_in_source_build + Name: alure Version: 1.2 Release: 19%{?dist} @@ -37,13 +40,13 @@ developing applications that use %{name}. %build -%cmake . -DBUILD_STATIC:BOOL=OFF -make VERBOSE=1 %{?_smp_mflags} +%cmake -DBUILD_STATIC:BOOL=OFF +%cmake_build %install -rm -rf %{buildroot} -make install DESTDIR=%{buildroot} +%cmake_install + find %{buildroot} -name '*.la' -exec rm -f {} ';' # strip installed html doc rm -rf %{buildroot}%{_docdir}/alure/html From 6a882ec0d7d0edd5528e3dea25f393ce38aa3004 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Mon, 27 Jul 2020 11:58:29 +0000 Subject: [PATCH 36/56] - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- alure.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/alure.spec b/alure.spec index 33c84db..47881ed 100644 --- a/alure.spec +++ b/alure.spec @@ -3,7 +3,7 @@ Name: alure Version: 1.2 -Release: 19%{?dist} +Release: 20%{?dist} Summary: Audio Library Tools REloaded # ALURE code is LGPLv2+; note -devel subpackage has its own license tag License: LGPLv2+ @@ -70,6 +70,9 @@ rm -rf %{buildroot}%{_docdir}/alure/html %changelog +* Mon Jul 27 2020 Fedora Release Engineering - 1.2-20 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Tue Jan 28 2020 Fedora Release Engineering - 1.2-19 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild From 507b16a4d0fbc2235ae325666c6e6d49c14a75b0 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 31 Jul 2020 23:56:27 +0000 Subject: [PATCH 37/56] - Second attempt - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- alure.spec | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/alure.spec b/alure.spec index 47881ed..5d795f9 100644 --- a/alure.spec +++ b/alure.spec @@ -3,7 +3,7 @@ Name: alure Version: 1.2 -Release: 20%{?dist} +Release: 21%{?dist} Summary: Audio Library Tools REloaded # ALURE code is LGPLv2+; note -devel subpackage has its own license tag License: LGPLv2+ @@ -70,6 +70,10 @@ rm -rf %{buildroot}%{_docdir}/alure/html %changelog +* Fri Jul 31 2020 Fedora Release Engineering - 1.2-21 +- Second attempt - Rebuilt for + https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Mon Jul 27 2020 Fedora Release Engineering - 1.2-20 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild From b24cc73449b335e1201b53ca7f22430c37917121 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 26 Jan 2021 00:01:42 +0000 Subject: [PATCH 38/56] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- alure.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/alure.spec b/alure.spec index 5d795f9..8891ec1 100644 --- a/alure.spec +++ b/alure.spec @@ -3,7 +3,7 @@ Name: alure Version: 1.2 -Release: 21%{?dist} +Release: 22%{?dist} Summary: Audio Library Tools REloaded # ALURE code is LGPLv2+; note -devel subpackage has its own license tag License: LGPLv2+ @@ -70,6 +70,9 @@ rm -rf %{buildroot}%{_docdir}/alure/html %changelog +* Tue Jan 26 2021 Fedora Release Engineering - 1.2-22 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Fri Jul 31 2020 Fedora Release Engineering - 1.2-21 - Second attempt - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild From b5ea7c76dbb5835cf5f542dac46dc77927485084 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 21 Jul 2021 12:33:55 +0000 Subject: [PATCH 39/56] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering From 9b93bb1e04b80ba9257053537802db2c7b270ee7 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 21 Jul 2021 17:29:20 +0000 Subject: [PATCH 40/56] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- alure.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/alure.spec b/alure.spec index 8891ec1..d5440f8 100644 --- a/alure.spec +++ b/alure.spec @@ -3,7 +3,7 @@ Name: alure Version: 1.2 -Release: 22%{?dist} +Release: 23%{?dist} Summary: Audio Library Tools REloaded # ALURE code is LGPLv2+; note -devel subpackage has its own license tag License: LGPLv2+ @@ -70,6 +70,9 @@ rm -rf %{buildroot}%{_docdir}/alure/html %changelog +* Wed Jul 21 2021 Fedora Release Engineering - 1.2-23 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Tue Jan 26 2021 Fedora Release Engineering - 1.2-22 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild From e49bb9ec022bb6617957caf60b81689ced7645c6 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 19 Jan 2022 21:10:27 +0000 Subject: [PATCH 41/56] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- alure.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/alure.spec b/alure.spec index d5440f8..daa9cca 100644 --- a/alure.spec +++ b/alure.spec @@ -3,7 +3,7 @@ Name: alure Version: 1.2 -Release: 23%{?dist} +Release: 24%{?dist} Summary: Audio Library Tools REloaded # ALURE code is LGPLv2+; note -devel subpackage has its own license tag License: LGPLv2+ @@ -70,6 +70,9 @@ rm -rf %{buildroot}%{_docdir}/alure/html %changelog +* Wed Jan 19 2022 Fedora Release Engineering - 1.2-24 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Wed Jul 21 2021 Fedora Release Engineering - 1.2-23 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild From 9251cc784fcbf3027279042eade5b57f6b546233 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 20 Jul 2022 20:42:13 +0000 Subject: [PATCH 42/56] Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- alure.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/alure.spec b/alure.spec index daa9cca..e18bbcf 100644 --- a/alure.spec +++ b/alure.spec @@ -3,7 +3,7 @@ Name: alure Version: 1.2 -Release: 24%{?dist} +Release: 25%{?dist} Summary: Audio Library Tools REloaded # ALURE code is LGPLv2+; note -devel subpackage has its own license tag License: LGPLv2+ @@ -70,6 +70,9 @@ rm -rf %{buildroot}%{_docdir}/alure/html %changelog +* Wed Jul 20 2022 Fedora Release Engineering - 1.2-25 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + * Wed Jan 19 2022 Fedora Release Engineering - 1.2-24 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild From 601364e484149ce34a9f30c70377e5ed9442e1c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Tue, 10 Jan 2023 19:19:06 +0100 Subject: [PATCH 43/56] Orphaned for 6+ weeks --- .gitignore | 3 - alure-gcc47.patch | 11 --- alure.spec | 169 ---------------------------------------------- dead.package | 1 + sources | 1 - 5 files changed, 1 insertion(+), 184 deletions(-) delete mode 100644 .gitignore delete mode 100644 alure-gcc47.patch delete mode 100644 alure.spec create mode 100644 dead.package delete mode 100644 sources diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 933a615..0000000 --- a/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -alure-1.0-src.tar.bz2 -/alure-1.1.tar.bz2 -/alure-1.2.tar.bz2 diff --git a/alure-gcc47.patch b/alure-gcc47.patch deleted file mode 100644 index 175b2c1..0000000 --- a/alure-gcc47.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- include/main.h.orig 2012-01-30 23:27:53.230334632 -0600 -+++ include/main.h 2012-01-30 23:28:26.241530184 -0600 -@@ -4,6 +4,8 @@ - #include "AL/alure.h" - #include "alext.h" - -+#include -+ - #ifdef HAVE_SYS_TYPES_H - #include - #endif diff --git a/alure.spec b/alure.spec deleted file mode 100644 index e18bbcf..0000000 --- a/alure.spec +++ /dev/null @@ -1,169 +0,0 @@ -# Force out of source build -%undefine __cmake_in_source_build - -Name: alure -Version: 1.2 -Release: 25%{?dist} -Summary: Audio Library Tools REloaded -# ALURE code is LGPLv2+; note -devel subpackage has its own license tag -License: LGPLv2+ -URL: http://kcat.strangesoft.net/alure.html -Source0: http://kcat.strangesoft.net/%{name}-releases/%{name}-%{version}.tar.bz2 -Patch0: alure-gcc47.patch -BuildRequires: gcc -BuildRequires: gcc-c++ -BuildRequires: cmake, libvorbis-devel, libsndfile-devel, openal-soft-devel, flac-devel, dumb-devel, fluidsynth-devel - - -%description -ALURE is a utility library to help manage common tasks with OpenAL -applications. This includes device enumeration and initialization, -file loading, and streaming. - - -%package devel -Summary: Development files for %{name} -# Devel doc includes some files under GPLv2+ from NaturalDocs -License: LGPLv2+ and GPLv2+ -Requires: %{name} = %{version}-%{release} -Requires: pkgconfig - - -%description devel -The %{name}-devel package contains libraries and header files for -developing applications that use %{name}. - - -%prep -%setup -q -%patch0 - - -%build -%cmake -DBUILD_STATIC:BOOL=OFF -%cmake_build - - -%install -%cmake_install - -find %{buildroot} -name '*.la' -exec rm -f {} ';' -# strip installed html doc -rm -rf %{buildroot}%{_docdir}/alure/html - - - -%ldconfig_scriptlets - - -%files -%doc COPYING -%{_libdir}/*.so.* -%{_bindir}/alure* - - -%files devel -%doc docs/html examples -%{_includedir}/AL/ -%{_libdir}/*.so -%{_libdir}/pkgconfig/*.pc - - -%changelog -* Wed Jul 20 2022 Fedora Release Engineering - 1.2-25 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild - -* Wed Jan 19 2022 Fedora Release Engineering - 1.2-24 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild - -* Wed Jul 21 2021 Fedora Release Engineering - 1.2-23 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild - -* Tue Jan 26 2021 Fedora Release Engineering - 1.2-22 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild - -* Fri Jul 31 2020 Fedora Release Engineering - 1.2-21 -- Second attempt - Rebuilt for - https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild - -* Mon Jul 27 2020 Fedora Release Engineering - 1.2-20 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild - -* Tue Jan 28 2020 Fedora Release Engineering - 1.2-19 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild - -* Wed Jul 24 2019 Fedora Release Engineering - 1.2-18 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild - -* Thu Jan 31 2019 Fedora Release Engineering - 1.2-17 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild - -* Thu Jul 12 2018 Fedora Release Engineering - 1.2-16 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild - -* Wed Feb 07 2018 Fedora Release Engineering - 1.2-15 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild - -* Wed Aug 02 2017 Fedora Release Engineering - 1.2-14 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild - -* Wed Jul 26 2017 Fedora Release Engineering - 1.2-13 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild - -* Fri Feb 10 2017 Fedora Release Engineering - 1.2-12 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild - -* Wed Feb 03 2016 Fedora Release Engineering - 1.2-11 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild - -* Tue Jun 16 2015 Fedora Release Engineering - 1.2-10 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild - -* Sat May 02 2015 Kalev Lember - 1.2-9 -- Rebuilt for GCC 5 C++11 ABI change - -* Fri Aug 15 2014 Fedora Release Engineering - 1.2-8 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild - -* Sat Jun 07 2014 Fedora Release Engineering - 1.2-7 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild - -* Sat Aug 03 2013 Fedora Release Engineering - 1.2-6 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild - -* Wed Feb 13 2013 Fedora Release Engineering - 1.2-5 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild - -* Wed Jul 18 2012 Fedora Release Engineering - 1.2-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild - -* Mon Jan 30 2012 Bruno Wolff III - 1.2-3 -- Fix for gcc 4.7 - -* Thu Jan 12 2012 Fedora Release Engineering - 1.2-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild - -* Fri Jul 29 2011 Julian Aloofi - 1.2-1 -- update to latest upstream release - -* Sat May 28 2011 Julian Aloofi - 1.1-1 -- update to latest upstream release -- enabled FLAC, DUMB and fluidsynth support - -* Mon Feb 07 2011 Fedora Release Engineering - 1.0-5 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild - -* Thu Oct 01 2009 Guido Grazioli - 1.0-4 -- Fixed license for -devel subpackage -- Included sample code in -devel subpackage -- Sanitized %%files - -* Tue Sep 29 2009 Guido Grazioli - 1.0-3 -- Renamed from libalure to alure -- Fixed license - -* Mon Sep 28 2009 Guido Grazioli - 1.0-2 -- Fix multilib pkgconfig path - -* Sat Sep 26 2009 Guido Grazioli - 1.0-1 -- Initial packaging diff --git a/dead.package b/dead.package new file mode 100644 index 0000000..5204a84 --- /dev/null +++ b/dead.package @@ -0,0 +1 @@ +Orphaned for 6+ weeks diff --git a/sources b/sources deleted file mode 100644 index dc1176c..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -3088aba074ad02d95ea51e705053b9f5 alure-1.2.tar.bz2 From e23c4b51e4359c77b193d887ed370ff44bb40a32 Mon Sep 17 00:00:00 2001 From: Tomas Hrcka Date: Fri, 13 Jan 2023 11:03:50 +0100 Subject: [PATCH 44/56] Unretirement request: https://pagure.io/releng/issue/11211 --- .gitignore | 3 + alure-gcc47.patch | 11 +++ alure.spec | 169 ++++++++++++++++++++++++++++++++++++++++++++++ dead.package | 1 - sources | 1 + 5 files changed, 184 insertions(+), 1 deletion(-) create mode 100644 .gitignore create mode 100644 alure-gcc47.patch create mode 100644 alure.spec delete mode 100644 dead.package create mode 100644 sources diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..933a615 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +alure-1.0-src.tar.bz2 +/alure-1.1.tar.bz2 +/alure-1.2.tar.bz2 diff --git a/alure-gcc47.patch b/alure-gcc47.patch new file mode 100644 index 0000000..175b2c1 --- /dev/null +++ b/alure-gcc47.patch @@ -0,0 +1,11 @@ +--- include/main.h.orig 2012-01-30 23:27:53.230334632 -0600 ++++ include/main.h 2012-01-30 23:28:26.241530184 -0600 +@@ -4,6 +4,8 @@ + #include "AL/alure.h" + #include "alext.h" + ++#include ++ + #ifdef HAVE_SYS_TYPES_H + #include + #endif diff --git a/alure.spec b/alure.spec new file mode 100644 index 0000000..e18bbcf --- /dev/null +++ b/alure.spec @@ -0,0 +1,169 @@ +# Force out of source build +%undefine __cmake_in_source_build + +Name: alure +Version: 1.2 +Release: 25%{?dist} +Summary: Audio Library Tools REloaded +# ALURE code is LGPLv2+; note -devel subpackage has its own license tag +License: LGPLv2+ +URL: http://kcat.strangesoft.net/alure.html +Source0: http://kcat.strangesoft.net/%{name}-releases/%{name}-%{version}.tar.bz2 +Patch0: alure-gcc47.patch +BuildRequires: gcc +BuildRequires: gcc-c++ +BuildRequires: cmake, libvorbis-devel, libsndfile-devel, openal-soft-devel, flac-devel, dumb-devel, fluidsynth-devel + + +%description +ALURE is a utility library to help manage common tasks with OpenAL +applications. This includes device enumeration and initialization, +file loading, and streaming. + + +%package devel +Summary: Development files for %{name} +# Devel doc includes some files under GPLv2+ from NaturalDocs +License: LGPLv2+ and GPLv2+ +Requires: %{name} = %{version}-%{release} +Requires: pkgconfig + + +%description devel +The %{name}-devel package contains libraries and header files for +developing applications that use %{name}. + + +%prep +%setup -q +%patch0 + + +%build +%cmake -DBUILD_STATIC:BOOL=OFF +%cmake_build + + +%install +%cmake_install + +find %{buildroot} -name '*.la' -exec rm -f {} ';' +# strip installed html doc +rm -rf %{buildroot}%{_docdir}/alure/html + + + +%ldconfig_scriptlets + + +%files +%doc COPYING +%{_libdir}/*.so.* +%{_bindir}/alure* + + +%files devel +%doc docs/html examples +%{_includedir}/AL/ +%{_libdir}/*.so +%{_libdir}/pkgconfig/*.pc + + +%changelog +* Wed Jul 20 2022 Fedora Release Engineering - 1.2-25 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + +* Wed Jan 19 2022 Fedora Release Engineering - 1.2-24 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + +* Wed Jul 21 2021 Fedora Release Engineering - 1.2-23 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + +* Tue Jan 26 2021 Fedora Release Engineering - 1.2-22 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + +* Fri Jul 31 2020 Fedora Release Engineering - 1.2-21 +- Second attempt - Rebuilt for + https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Mon Jul 27 2020 Fedora Release Engineering - 1.2-20 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Tue Jan 28 2020 Fedora Release Engineering - 1.2-19 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Wed Jul 24 2019 Fedora Release Engineering - 1.2-18 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Thu Jan 31 2019 Fedora Release Engineering - 1.2-17 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Thu Jul 12 2018 Fedora Release Engineering - 1.2-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Wed Feb 07 2018 Fedora Release Engineering - 1.2-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Wed Aug 02 2017 Fedora Release Engineering - 1.2-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + +* Wed Jul 26 2017 Fedora Release Engineering - 1.2-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Fri Feb 10 2017 Fedora Release Engineering - 1.2-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Wed Feb 03 2016 Fedora Release Engineering - 1.2-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Tue Jun 16 2015 Fedora Release Engineering - 1.2-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Sat May 02 2015 Kalev Lember - 1.2-9 +- Rebuilt for GCC 5 C++11 ABI change + +* Fri Aug 15 2014 Fedora Release Engineering - 1.2-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + +* Sat Jun 07 2014 Fedora Release Engineering - 1.2-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Sat Aug 03 2013 Fedora Release Engineering - 1.2-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + +* Wed Feb 13 2013 Fedora Release Engineering - 1.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Wed Jul 18 2012 Fedora Release Engineering - 1.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Mon Jan 30 2012 Bruno Wolff III - 1.2-3 +- Fix for gcc 4.7 + +* Thu Jan 12 2012 Fedora Release Engineering - 1.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Fri Jul 29 2011 Julian Aloofi - 1.2-1 +- update to latest upstream release + +* Sat May 28 2011 Julian Aloofi - 1.1-1 +- update to latest upstream release +- enabled FLAC, DUMB and fluidsynth support + +* Mon Feb 07 2011 Fedora Release Engineering - 1.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Thu Oct 01 2009 Guido Grazioli - 1.0-4 +- Fixed license for -devel subpackage +- Included sample code in -devel subpackage +- Sanitized %%files + +* Tue Sep 29 2009 Guido Grazioli - 1.0-3 +- Renamed from libalure to alure +- Fixed license + +* Mon Sep 28 2009 Guido Grazioli - 1.0-2 +- Fix multilib pkgconfig path + +* Sat Sep 26 2009 Guido Grazioli - 1.0-1 +- Initial packaging diff --git a/dead.package b/dead.package deleted file mode 100644 index 5204a84..0000000 --- a/dead.package +++ /dev/null @@ -1 +0,0 @@ -Orphaned for 6+ weeks diff --git a/sources b/sources new file mode 100644 index 0000000..dc1176c --- /dev/null +++ b/sources @@ -0,0 +1 @@ +3088aba074ad02d95ea51e705053b9f5 alure-1.2.tar.bz2 From 5c907646ce69ca36519c9f29e12bda95f54d0fd0 Mon Sep 17 00:00:00 2001 From: Tom Callaway Date: Tue, 17 Jan 2023 09:32:45 -0500 Subject: [PATCH 45/56] fix FTBFS, license tags --- alure-1.2-fluidsynth-cflags-fix.patch | 14 +++++++++++++ alure.spec | 30 +++++++++++---------------- 2 files changed, 26 insertions(+), 18 deletions(-) create mode 100644 alure-1.2-fluidsynth-cflags-fix.patch diff --git a/alure-1.2-fluidsynth-cflags-fix.patch b/alure-1.2-fluidsynth-cflags-fix.patch new file mode 100644 index 0000000..5a3d21e --- /dev/null +++ b/alure-1.2-fluidsynth-cflags-fix.patch @@ -0,0 +1,14 @@ +diff -up alure-1.2/CMakeLists.txt.fluidsynth-cflags-fix alure-1.2/CMakeLists.txt +--- alure-1.2/CMakeLists.txt.fluidsynth-cflags-fix 2011-07-29 04:37:48.000000000 -0400 ++++ alure-1.2/CMakeLists.txt 2023-01-11 15:40:29.823041640 -0500 +@@ -375,8 +375,8 @@ IF(FLUIDSYNTH) + ELSE(NOT FLUIDSYNTH_FOUND) + SET(HAS_FLUIDSYNTH 1) + LINK_DIRECTORIES(${FLUIDSYNTH_LIBRARY_DIRS}) +- SET_SOURCE_FILES_PROPERTIES(src/codec_fluidsynth.cpp PROPERTIES +- COMPILE_FLAGS "${FLUIDSYNTH_CFLAGS}") ++ STRING(REPLACE ";" " " FLUIDSYNTH_PROPER_CFLAGS "${FLUIDSYNTH_CFLAGS}") ++ SET_PROPERTY(SOURCE src/codec_fluidsynth.cpp PROPERTY COMPILE_FLAGS ${FLUIDSYNTH_PROPER_CFLAGS}) + ENDIF(NOT FLUIDSYNTH_FOUND) + IF(HAS_FLUIDSYNTH) + SET(ALURE_OBJS ${ALURE_OBJS} src/codec_fluidsynth.cpp) diff --git a/alure.spec b/alure.spec index e18bbcf..1634ec9 100644 --- a/alure.spec +++ b/alure.spec @@ -3,47 +3,43 @@ Name: alure Version: 1.2 -Release: 25%{?dist} +Release: 26%{?dist} Summary: Audio Library Tools REloaded # ALURE code is LGPLv2+; note -devel subpackage has its own license tag -License: LGPLv2+ +License: LGPL-2.1-or-later URL: http://kcat.strangesoft.net/alure.html Source0: http://kcat.strangesoft.net/%{name}-releases/%{name}-%{version}.tar.bz2 Patch0: alure-gcc47.patch +Patch1: alure-1.2-fluidsynth-cflags-fix.patch BuildRequires: gcc BuildRequires: gcc-c++ BuildRequires: cmake, libvorbis-devel, libsndfile-devel, openal-soft-devel, flac-devel, dumb-devel, fluidsynth-devel - %description -ALURE is a utility library to help manage common tasks with OpenAL -applications. This includes device enumeration and initialization, -file loading, and streaming. - +ALURE is a utility library to help manage common tasks with OpenAL +applications. This includes device enumeration and initialization, +file loading, and streaming. %package devel Summary: Development files for %{name} # Devel doc includes some files under GPLv2+ from NaturalDocs -License: LGPLv2+ and GPLv2+ +License: LGPL-2.1-or-later AND GPL-2.0-or-later Requires: %{name} = %{version}-%{release} Requires: pkgconfig - %description devel The %{name}-devel package contains libraries and header files for developing applications that use %{name}. - %prep -%setup -q +%setup -q %patch0 - +%patch1 -p1 -b .fluidsynth-cflags-fix %build %cmake -DBUILD_STATIC:BOOL=OFF %cmake_build - %install %cmake_install @@ -51,25 +47,23 @@ find %{buildroot} -name '*.la' -exec rm -f {} ';' # strip installed html doc rm -rf %{buildroot}%{_docdir}/alure/html - - %ldconfig_scriptlets - %files %doc COPYING %{_libdir}/*.so.* %{_bindir}/alure* - %files devel %doc docs/html examples %{_includedir}/AL/ %{_libdir}/*.so %{_libdir}/pkgconfig/*.pc - %changelog +* Tue Jan 17 2023 Tom Callaway - 1.2-26 +- fix FTBFS + * Wed Jul 20 2022 Fedora Release Engineering - 1.2-25 - Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild From cc2ab6b018bac87b4eaaecfcf208306b5065aadf Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 18 Jan 2023 21:39:02 +0000 Subject: [PATCH 46/56] Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- alure.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/alure.spec b/alure.spec index 1634ec9..7757fec 100644 --- a/alure.spec +++ b/alure.spec @@ -3,7 +3,7 @@ Name: alure Version: 1.2 -Release: 26%{?dist} +Release: 27%{?dist} Summary: Audio Library Tools REloaded # ALURE code is LGPLv2+; note -devel subpackage has its own license tag License: LGPL-2.1-or-later @@ -61,6 +61,9 @@ rm -rf %{buildroot}%{_docdir}/alure/html %{_libdir}/pkgconfig/*.pc %changelog +* Wed Jan 18 2023 Fedora Release Engineering - 1.2-27 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + * Tue Jan 17 2023 Tom Callaway - 1.2-26 - fix FTBFS From eb67d3ac5cecfe8e06a026ec44560eff7b3e840e Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 19 Jul 2023 13:11:04 +0000 Subject: [PATCH 47/56] Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- alure.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/alure.spec b/alure.spec index 7757fec..e744992 100644 --- a/alure.spec +++ b/alure.spec @@ -3,7 +3,7 @@ Name: alure Version: 1.2 -Release: 27%{?dist} +Release: 28%{?dist} Summary: Audio Library Tools REloaded # ALURE code is LGPLv2+; note -devel subpackage has its own license tag License: LGPL-2.1-or-later @@ -61,6 +61,9 @@ rm -rf %{buildroot}%{_docdir}/alure/html %{_libdir}/pkgconfig/*.pc %changelog +* Wed Jul 19 2023 Fedora Release Engineering - 1.2-28 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + * Wed Jan 18 2023 Fedora Release Engineering - 1.2-27 - Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild From cacdff4676a57c2b91a67435917b4c4d250a1a71 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 19 Jan 2024 12:47:18 +0000 Subject: [PATCH 48/56] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild --- alure.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/alure.spec b/alure.spec index e744992..dd4dfb0 100644 --- a/alure.spec +++ b/alure.spec @@ -3,7 +3,7 @@ Name: alure Version: 1.2 -Release: 28%{?dist} +Release: 29%{?dist} Summary: Audio Library Tools REloaded # ALURE code is LGPLv2+; note -devel subpackage has its own license tag License: LGPL-2.1-or-later @@ -61,6 +61,9 @@ rm -rf %{buildroot}%{_docdir}/alure/html %{_libdir}/pkgconfig/*.pc %changelog +* Fri Jan 19 2024 Fedora Release Engineering - 1.2-29 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + * Wed Jul 19 2023 Fedora Release Engineering - 1.2-28 - Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild From 81087ef9881b6abb573110d85fe0093ed4587c22 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Mon, 22 Jan 2024 22:57:39 +0000 Subject: [PATCH 49/56] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild --- alure.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/alure.spec b/alure.spec index dd4dfb0..06e215d 100644 --- a/alure.spec +++ b/alure.spec @@ -3,7 +3,7 @@ Name: alure Version: 1.2 -Release: 29%{?dist} +Release: 30%{?dist} Summary: Audio Library Tools REloaded # ALURE code is LGPLv2+; note -devel subpackage has its own license tag License: LGPL-2.1-or-later @@ -61,6 +61,9 @@ rm -rf %{buildroot}%{_docdir}/alure/html %{_libdir}/pkgconfig/*.pc %changelog +* Mon Jan 22 2024 Fedora Release Engineering - 1.2-30 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + * Fri Jan 19 2024 Fedora Release Engineering - 1.2-29 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild From e7d5ac5edbb7d8160eecd4ac51e9b3fc02da6b93 Mon Sep 17 00:00:00 2001 From: Software Management Team Date: Thu, 30 May 2024 12:46:46 +0200 Subject: [PATCH 50/56] Eliminate use of obsolete %patchN syntax (#2283636) --- alure.spec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/alure.spec b/alure.spec index 06e215d..b7c27e5 100644 --- a/alure.spec +++ b/alure.spec @@ -33,8 +33,8 @@ developing applications that use %{name}. %prep %setup -q -%patch0 -%patch1 -p1 -b .fluidsynth-cflags-fix +%patch -P0 +%patch -P1 -p1 -b .fluidsynth-cflags-fix %build %cmake -DBUILD_STATIC:BOOL=OFF From 66b83eefa2c1cd178e2af0a6067bd426fc8dbdc4 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 17 Jul 2024 16:54:10 +0000 Subject: [PATCH 51/56] Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild --- alure.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/alure.spec b/alure.spec index b7c27e5..b3fd01b 100644 --- a/alure.spec +++ b/alure.spec @@ -3,7 +3,7 @@ Name: alure Version: 1.2 -Release: 30%{?dist} +Release: 31%{?dist} Summary: Audio Library Tools REloaded # ALURE code is LGPLv2+; note -devel subpackage has its own license tag License: LGPL-2.1-or-later @@ -61,6 +61,9 @@ rm -rf %{buildroot}%{_docdir}/alure/html %{_libdir}/pkgconfig/*.pc %changelog +* Wed Jul 17 2024 Fedora Release Engineering - 1.2-31 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + * Mon Jan 22 2024 Fedora Release Engineering - 1.2-30 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild From 869c112cbacd62ca749d95be245bcaaf43a166ee Mon Sep 17 00:00:00 2001 From: Tom Callaway Date: Tue, 22 Oct 2024 09:15:10 -0400 Subject: [PATCH 52/56] fix FTBFS, apply a minor C++ cleanup --- alure-1.2-sndfile-cflags-fix.patch | 15 ++++++ alure-1.2-use-unique_ptr.patch | 85 ++++++++++++++++++++++++++++++ alure.spec | 13 +++-- 3 files changed, 110 insertions(+), 3 deletions(-) create mode 100644 alure-1.2-sndfile-cflags-fix.patch create mode 100644 alure-1.2-use-unique_ptr.patch diff --git a/alure-1.2-sndfile-cflags-fix.patch b/alure-1.2-sndfile-cflags-fix.patch new file mode 100644 index 0000000..8ac0ebe --- /dev/null +++ b/alure-1.2-sndfile-cflags-fix.patch @@ -0,0 +1,15 @@ +diff -up alure-1.2/CMakeLists.txt.sndfile-cflags-fix alure-1.2/CMakeLists.txt +--- alure-1.2/CMakeLists.txt.sndfile-cflags-fix 2024-10-22 09:12:33.559930694 -0400 ++++ alure-1.2/CMakeLists.txt 2024-10-22 09:12:39.122009443 -0400 +@@ -214,8 +214,9 @@ IF(SNDFILE) + IF(SNDFILE_FOUND) + SET(HAS_SNDFILE 1) + LINK_DIRECTORIES(${SNDFILE_LIBRARY_DIRS}) +- SET_SOURCE_FILES_PROPERTIES(src/codec_sndfile.cpp PROPERTIES +- COMPILE_FLAGS "${SNDFILE_CFLAGS}") ++ STRING(REPLACE ";" " " SNDFILE_PROPER_CFLAGS "${SNDFILE_CFLAGS}") ++ SET_PROPERTY(SOURCE src/codec_sndfile.cpp PROPERTY ++ COMPILE_FLAGS "${SNDFILE_PROPER_CFLAGS}") + ELSE(SNDFILE_FOUND) + FIND_PACKAGE(SndFile) + IF(SNDFILE_FOUND) diff --git a/alure-1.2-use-unique_ptr.patch b/alure-1.2-use-unique_ptr.patch new file mode 100644 index 0000000..548a24c --- /dev/null +++ b/alure-1.2-use-unique_ptr.patch @@ -0,0 +1,85 @@ +diff -up alure-1.2/include/main.h.unique_ptr alure-1.2/include/main.h +--- alure-1.2/include/main.h.unique_ptr 2024-10-22 09:03:09.652946816 -0400 ++++ alure-1.2/include/main.h 2024-10-22 09:03:28.493213559 -0400 +@@ -312,7 +312,7 @@ T1 SearchSecond(T1 start, T1 end, T2 val + } + + struct Decoder { +- typedef std::auto_ptr(*FactoryType)(std::istream*); ++ typedef std::unique_ptr(*FactoryType)(std::istream*); + typedef std::multimap ListType; + + static const ListType& GetList(); +@@ -336,11 +336,11 @@ struct DecoderDecl : public Decoder { + } + + private: +- static std::auto_ptr Factory(std::istream *file) ++ static std::unique_ptr Factory(std::istream *file) + { +- std::auto_ptr ret(new T(file)); ++ std::unique_ptr ret(new T(file)); + if(ret->IsValid()) return ret; +- return std::auto_ptr(); ++ return std::unique_ptr(); + } + }; + +diff -up alure-1.2/src/buffer.cpp.unique_ptr alure-1.2/src/buffer.cpp +--- alure-1.2/src/buffer.cpp.unique_ptr 2024-10-22 09:03:37.423339989 -0400 ++++ alure-1.2/src/buffer.cpp 2024-10-22 09:03:52.266550135 -0400 +@@ -38,8 +38,8 @@ static bool load_stream(alureStream *_st + if(!_stream) + return false; + +- std::auto_ptr fstream(_stream->fstream); +- std::auto_ptr stream(_stream); ++ std::unique_ptr fstream(_stream->fstream); ++ std::unique_ptr stream(_stream); + + ALenum format; + ALuint freq, blockAlign; +diff -up alure-1.2/src/stream.cpp.unique_ptr alure-1.2/src/stream.cpp +--- alure-1.2/src/stream.cpp.unique_ptr 2024-10-22 09:04:00.044660257 -0400 ++++ alure-1.2/src/stream.cpp 2024-10-22 09:04:17.381905734 -0400 +@@ -35,8 +35,8 @@ static bool SizeIsUS = false; + + static alureStream *InitStream(alureStream *instream, ALsizei chunkLength, ALsizei numBufs, ALuint *bufs) + { +- std::auto_ptr fstream(instream->fstream); +- std::auto_ptr stream(instream); ++ std::unique_ptr fstream(instream->fstream); ++ std::unique_ptr stream(instream); + ALenum format; + ALuint freq, blockAlign; + +diff -up alure-1.2/src/streamdec.cpp.unique_ptr alure-1.2/src/streamdec.cpp +--- alure-1.2/src/streamdec.cpp.unique_ptr 2024-10-22 09:04:24.078000540 -0400 ++++ alure-1.2/src/streamdec.cpp 2024-10-22 09:04:38.803209018 -0400 +@@ -124,7 +124,7 @@ static alureStream *get_stream_decoder(c + std::map::iterator i = InstalledCallbacks.begin(); + while(i != InstalledCallbacks.end() && i->first < 0) + { +- std::auto_ptr stream(new customStream(fdata, i->second)); ++ std::unique_ptr stream(new customStream(fdata, i->second)); + if(stream->IsValid()) return stream.release(); + i++; + } +@@ -140,7 +140,7 @@ static alureStream *get_stream_decoder(c + file->clear(); + file->seekg(0, std::ios_base::beg); + +- std::auto_ptr stream(factory->second(file)); ++ std::unique_ptr stream(factory->second(file)); + if(stream.get() != NULL) return stream.release(); + + factory++; +@@ -157,7 +157,7 @@ static alureStream *get_stream_decoder(c + + while(i != InstalledCallbacks.end()) + { +- std::auto_ptr stream(new customStream(fdata, i->second)); ++ std::unique_ptr stream(new customStream(fdata, i->second)); + if(stream->IsValid()) return stream.release(); + i++; + } diff --git a/alure.spec b/alure.spec index 1634ec9..d9eac69 100644 --- a/alure.spec +++ b/alure.spec @@ -3,7 +3,7 @@ Name: alure Version: 1.2 -Release: 26%{?dist} +Release: 27%{?dist} Summary: Audio Library Tools REloaded # ALURE code is LGPLv2+; note -devel subpackage has its own license tag License: LGPL-2.1-or-later @@ -11,6 +11,8 @@ URL: http://kcat.strangesoft.net/alure.html Source0: http://kcat.strangesoft.net/%{name}-releases/%{name}-%{version}.tar.bz2 Patch0: alure-gcc47.patch Patch1: alure-1.2-fluidsynth-cflags-fix.patch +Patch2: alure-1.2-use-unique_ptr.patch +Patch3: alure-1.2-sndfile-cflags-fix.patch BuildRequires: gcc BuildRequires: gcc-c++ BuildRequires: cmake, libvorbis-devel, libsndfile-devel, openal-soft-devel, flac-devel, dumb-devel, fluidsynth-devel @@ -33,8 +35,10 @@ developing applications that use %{name}. %prep %setup -q -%patch0 -%patch1 -p1 -b .fluidsynth-cflags-fix +%patch -P0 +%patch -P1 -p1 -b .fluidsynth-cflags-fix +%patch -P2 -p1 -b .unique_ptr +%patch -P3 -p1 -b .sndfile-cflags-fix %build %cmake -DBUILD_STATIC:BOOL=OFF @@ -61,6 +65,9 @@ rm -rf %{buildroot}%{_docdir}/alure/html %{_libdir}/pkgconfig/*.pc %changelog +* Tue Oct 22 2024 Tom Callaway - 1.2-27 +- fix FTBFS, apply a minor C++ cleanup + * Tue Jan 17 2023 Tom Callaway - 1.2-26 - fix FTBFS From 38914b5bd78b326726c05ef668e7e3875b24c5d4 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 16 Jan 2025 10:55:56 +0000 Subject: [PATCH 53/56] Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild --- alure.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/alure.spec b/alure.spec index 8f4c2a4..acd1356 100644 --- a/alure.spec +++ b/alure.spec @@ -3,7 +3,7 @@ Name: alure Version: 1.2 -Release: 32%{?dist} +Release: 33%{?dist} Summary: Audio Library Tools REloaded # ALURE code is LGPLv2+; note -devel subpackage has its own license tag License: LGPL-2.1-or-later @@ -65,6 +65,9 @@ rm -rf %{buildroot}%{_docdir}/alure/html %{_libdir}/pkgconfig/*.pc %changelog +* Thu Jan 16 2025 Fedora Release Engineering - 1.2-33 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild + * Tue Oct 22 2024 Tom Callaway - 1.2-32 - fix FTBFS, apply a minor C++ cleanup From aabdc448f83b03e9461e1fa405bc7f76181344bc Mon Sep 17 00:00:00 2001 From: Cristian Le Date: Fri, 30 May 2025 17:10:33 +0200 Subject: [PATCH 54/56] Allow to build with CMake 4.0 --- alure.spec | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/alure.spec b/alure.spec index acd1356..80dd30a 100644 --- a/alure.spec +++ b/alure.spec @@ -1,9 +1,6 @@ -# Force out of source build -%undefine __cmake_in_source_build - Name: alure Version: 1.2 -Release: 33%{?dist} +Release: 34%{?dist} Summary: Audio Library Tools REloaded # ALURE code is LGPLv2+; note -devel subpackage has its own license tag License: LGPL-2.1-or-later @@ -41,7 +38,12 @@ developing applications that use %{name}. %patch -P3 -p1 -b .sndfile-cflags-fix %build -%cmake -DBUILD_STATIC:BOOL=OFF +export CMAKE_POLICY_VERSION_MINIMUM=3.5 +%cmake \ + %if "%{?_lib}" == "lib64" + %{?_cmake_lib_suffix64} \ + %endif + -DBUILD_STATIC:BOOL=OFF %cmake_build %install @@ -65,6 +67,9 @@ rm -rf %{buildroot}%{_docdir}/alure/html %{_libdir}/pkgconfig/*.pc %changelog +* Fri May 30 2025 Cristian Le - 1.2-34 +- Allow to build with CMake 4.0 + * Thu Jan 16 2025 Fedora Release Engineering - 1.2-33 - Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild From a6dc43f892434ce37bb268c716f63247ea44b8de Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 23 Jul 2025 16:55:54 +0000 Subject: [PATCH 55/56] Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild --- alure.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/alure.spec b/alure.spec index 80dd30a..73d5a54 100644 --- a/alure.spec +++ b/alure.spec @@ -1,6 +1,6 @@ Name: alure Version: 1.2 -Release: 34%{?dist} +Release: 35%{?dist} Summary: Audio Library Tools REloaded # ALURE code is LGPLv2+; note -devel subpackage has its own license tag License: LGPL-2.1-or-later @@ -67,6 +67,9 @@ rm -rf %{buildroot}%{_docdir}/alure/html %{_libdir}/pkgconfig/*.pc %changelog +* Wed Jul 23 2025 Fedora Release Engineering - 1.2-35 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild + * Fri May 30 2025 Cristian Le - 1.2-34 - Allow to build with CMake 4.0 From b6cadfd5c5e57516fc4fe897c15f3750e9adc18d Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 16 Jan 2026 03:37:24 +0000 Subject: [PATCH 56/56] Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild --- alure.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/alure.spec b/alure.spec index 73d5a54..18ccdde 100644 --- a/alure.spec +++ b/alure.spec @@ -1,6 +1,6 @@ Name: alure Version: 1.2 -Release: 35%{?dist} +Release: 36%{?dist} Summary: Audio Library Tools REloaded # ALURE code is LGPLv2+; note -devel subpackage has its own license tag License: LGPL-2.1-or-later @@ -67,6 +67,9 @@ rm -rf %{buildroot}%{_docdir}/alure/html %{_libdir}/pkgconfig/*.pc %changelog +* Fri Jan 16 2026 Fedora Release Engineering - 1.2-36 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild + * Wed Jul 23 2025 Fedora Release Engineering - 1.2-35 - Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild