From 7b103a3c6a65fcaa8e3c4f981f3bdb783e46aff7 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 31 Jan 2008 04:48:43 +0000 Subject: [PATCH 01/51] Setup of module vamp-plugin-sdk --- .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..882f694 --- /dev/null +++ b/Makefile @@ -0,0 +1,21 @@ +# Makefile for source rpm: vamp-plugin-sdk +# $Id$ +NAME := vamp-plugin-sdk +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 a63d19293db1f4776fb95f1eca2388ef38347df9 Mon Sep 17 00:00:00 2001 From: Michel Alexandre Salim Date: Thu, 31 Jan 2008 14:25:56 +0000 Subject: [PATCH 02/51] vamp-plugin-sdk, initial commit --- .cvsignore | 1 + sources | 1 + vamp-plugin-sdk-1.1b-Makefile.patch | 74 +++++++++++++++++++ vamp-plugin-sdk.spec | 108 ++++++++++++++++++++++++++++ 4 files changed, 184 insertions(+) create mode 100644 vamp-plugin-sdk-1.1b-Makefile.patch create mode 100644 vamp-plugin-sdk.spec diff --git a/.cvsignore b/.cvsignore index e69de29..8b391d8 100644 --- a/.cvsignore +++ b/.cvsignore @@ -0,0 +1 @@ +vamp-plugin-sdk-1.1b.tar.gz diff --git a/sources b/sources index e69de29..6e6e813 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +aeda086f10227e6ca473f714ac025807 vamp-plugin-sdk-1.1b.tar.gz diff --git a/vamp-plugin-sdk-1.1b-Makefile.patch b/vamp-plugin-sdk-1.1b-Makefile.patch new file mode 100644 index 0000000..f9746cd --- /dev/null +++ b/vamp-plugin-sdk-1.1b-Makefile.patch @@ -0,0 +1,74 @@ +--- vamp-plugin-sdk-v1.1b/Makefile.orig 2007-10-19 08:52:34.000000000 -0400 ++++ vamp-plugin-sdk-v1.1b/Makefile 2008-01-28 14:13:24.000000000 -0500 +@@ -28,7 +28,7 @@ + + # Compile flags + # +-CXXFLAGS := $(CXXFLAGS) -O2 -Wall -I. -fpic ++CXXFLAGS := $(CXXFLAGS) -I. -fpic + + # ar, ranlib + # +@@ -57,11 +57,13 @@ + # editing for non-Linux platforms. Of course you don't necessarily + # have to use "make install". + # +-INSTALL_PREFIX := /usr ++PREFIX := /usr ++LIBDIR := /lib ++INSTALL_PREFIX := $(DESTDIR)$(PREFIX) + INSTALL_API_HEADERS := $(INSTALL_PREFIX)/include/vamp + INSTALL_SDK_HEADERS := $(INSTALL_PREFIX)/include/vamp-sdk + INSTALL_HOSTEXT_HEADERS := $(INSTALL_PREFIX)/include/vamp-sdk/hostext +-INSTALL_SDK_LIBS := $(INSTALL_PREFIX)/lib ++INSTALL_SDK_LIBS := $(DESTDIR)$(LIBDIR) + + INSTALL_SDK_LIBNAME := libvamp-sdk.so.1.1.0 + INSTALL_SDK_LINK_ABI := libvamp-sdk.so.1 +@@ -75,7 +77,7 @@ + INSTALL_HOSTSDK_STATIC := libvamp-hostsdk.a + INSTALL_HOSTSDK_LA := libvamp-hostsdk.la + +-INSTALL_PKGCONFIG := $(INSTALL_PREFIX)/lib/pkgconfig ++INSTALL_PKGCONFIG := $(INSTALL_SDK_LIBS)/pkgconfig + + # Flags required to tell the compiler to create a dynamically loadable object + # +@@ -212,14 +214,14 @@ + mkdir -p $(INSTALL_HOSTEXT_HEADERS) + mkdir -p $(INSTALL_SDK_LIBS) + mkdir -p $(INSTALL_PKGCONFIG) +- cp $(API_HEADERS) $(INSTALL_API_HEADERS) +- cp $(SDK_HEADERS) $(INSTALL_SDK_HEADERS) +- cp $(HOSTSDK_HEADERS) $(INSTALL_SDK_HEADERS) +- cp $(HOSTEXT_HEADERS) $(INSTALL_HOSTEXT_HEADERS) +- cp $(SDK_STATIC) $(INSTALL_SDK_LIBS) +- cp $(HOSTSDK_STATIC) $(INSTALL_SDK_LIBS) +- cp $(SDK_DYNAMIC) $(INSTALL_SDK_LIBS)/$(INSTALL_SDK_LIBNAME) +- cp $(HOSTSDK_DYNAMIC) $(INSTALL_SDK_LIBS)/$(INSTALL_HOSTSDK_LIBNAME) ++ cp -p $(API_HEADERS) $(INSTALL_API_HEADERS) ++ cp -p $(SDK_HEADERS) $(INSTALL_SDK_HEADERS) ++ cp -p $(HOSTSDK_HEADERS) $(INSTALL_SDK_HEADERS) ++ cp -p $(HOSTEXT_HEADERS) $(INSTALL_HOSTEXT_HEADERS) ++ cp -p $(SDK_STATIC) $(INSTALL_SDK_LIBS) ++ cp -p $(HOSTSDK_STATIC) $(INSTALL_SDK_LIBS) ++ cp -p $(SDK_DYNAMIC) $(INSTALL_SDK_LIBS)/$(INSTALL_SDK_LIBNAME) ++ cp -p $(HOSTSDK_DYNAMIC) $(INSTALL_SDK_LIBS)/$(INSTALL_HOSTSDK_LIBNAME) + rm -f $(INSTALL_SDK_LIBS)/$(INSTALL_SDK_LINK_ABI) + ln -s $(INSTALL_SDK_LIBNAME) $(INSTALL_SDK_LIBS)/$(INSTALL_SDK_LINK_ABI) + rm -f $(INSTALL_SDK_LIBS)/$(INSTALL_HOSTSDK_LINK_ABI) +@@ -228,11 +230,11 @@ + ln -s $(INSTALL_SDK_LIBNAME) $(INSTALL_SDK_LIBS)/$(INSTALL_SDK_LINK_DEV) + rm -f $(INSTALL_SDK_LIBS)/$(INSTALL_HOSTSDK_LINK_DEV) + ln -s $(INSTALL_HOSTSDK_LIBNAME) $(INSTALL_SDK_LIBS)/$(INSTALL_HOSTSDK_LINK_DEV) +- sed "s,%PREFIX%,$(INSTALL_PREFIX)," $(APIDIR)/vamp.pc.in \ ++ sed "s,%PREFIX%,$(PREFIX)," $(APIDIR)/vamp.pc.in \ + > $(INSTALL_PKGCONFIG)/vamp.pc +- sed "s,%PREFIX%,$(INSTALL_PREFIX)," $(SDKDIR)/vamp-sdk.pc.in \ ++ sed "s,%PREFIX%,$(PREFIX)," $(SDKDIR)/vamp-sdk.pc.in \ + > $(INSTALL_PKGCONFIG)/vamp-sdk.pc +- sed "s,%PREFIX%,$(INSTALL_PREFIX)," $(SDKDIR)/vamp-hostsdk.pc.in \ ++ sed "s,%PREFIX%,$(PREFIX)," $(SDKDIR)/vamp-hostsdk.pc.in \ + > $(INSTALL_PKGCONFIG)/vamp-hostsdk.pc + sed -e "s,%LIBNAME%,$(INSTALL_SDK_LIBNAME),g" \ + -e "s,%LINK_ABI%,$(INSTALL_SDK_LINK_ABI),g" \ diff --git a/vamp-plugin-sdk.spec b/vamp-plugin-sdk.spec new file mode 100644 index 0000000..d9595b1 --- /dev/null +++ b/vamp-plugin-sdk.spec @@ -0,0 +1,108 @@ +Name: vamp-plugin-sdk +Version: 1.1b +Release: 3%{?dist} +Summary: An API for audio analysis and feature extraction plugins + +Group: System Environment/Libraries +License: BSD +URL: http://www.vamp-plugins.org/ +Source0: http://downloads.sourceforge.net/vamp/vamp-plugin-sdk-%{version}.tar.gz +Patch0: %{name}-1.1b-Makefile.patch +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) + +BuildRequires: libsndfile-devel +#Requires: + +%description +Vamp is an API for C and C++ plugins that process sampled audio data +to produce descriptive output (measurements or semantic observations). + +%package devel +Summary: Development files for %{name} +Group: Development/Libraries +Requires: %{name} = %{version}-%{release} +Requires: pkgconfig + +%description devel +The %{name}-devel package contains libraries and header files for +developing applications that use %{name}. + +%package static +Summary: Static libraries for %{name} +Group: Development/Libraries +Requires: %{name}-devel = %{version}-%{release} + +%description static +The %{name}-static package contains library files for +developing static applications that use %{name}. + + +%prep +%setup -q -n %{name}-v%{version} +%patch0 -p1 -b .mk + + +%build +CXXFLAGS=$RPM_OPT_FLAGS make %{?_smp_mflags} + + +%install +rm -rf $RPM_BUILD_ROOT +# fix libdir +find . -name '*.pc.in' -exec sed -i 's|/lib|/%{_lib}|' {} ';' +make install DESTDIR=$RPM_BUILD_ROOT LIBDIR=%{_libdir} + +find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' + +# create Makefile for examples +cd examples +echo CXXFLAGS=$RPM_OPT_FLAGS -fpic >> Makefile +echo bundle: `ls *.o` >> Makefile +echo -e "\t"g++ \$\(CXXFLAGS\) -shared -Wl,-Bsymbolic \ + -o vamp-example-plugins.so \ + *.o \$\(pkg-config --libs vamp-sdk\) >> Makefile +echo `ls *.cpp`: >> Makefile +echo -e "\t"g++ \$\(CXXFLAGS\) -c $*.cpp >> Makefile +echo clean: >> Makefile +echo -e "\t"-rm *.o *.so >> Makefile +# clean directory up so we can package the sources +make clean + + +%clean +rm -rf $RPM_BUILD_ROOT + + +%post -p /sbin/ldconfig + +%postun -p /sbin/ldconfig + + +%files +%defattr(-,root,root,-) +%doc COPYING README +%{_libdir}/*.so.* + +%files devel +%defattr(-,root,root,-) +%doc examples +%{_includedir}/* +%{_libdir}/*.so +%{_libdir}/pkgconfig/*.pc + +%files static +%defattr(-,root,root,-) +%{_libdir}/*.a + + +%changelog +* Mon Jan 28 2008 Michel Salim - 1.1b-3 +- Add examples to -devel subpackage +- Fix .pc files +- Preserve timestamps when installing + +* Sun Jan 27 2008 Michel Salim - 1.1b-2 +- Add missing build requirement on libsndfile-devel + +* Wed Jan 16 2008 Michel Salim - 1.1b-1 +- Initial Fedora package From 220dea135fefef531624debec122bc65a1f47d90 Mon Sep 17 00:00:00 2001 From: Michel Alexandre Salim Date: Thu, 31 Jan 2008 16:35:32 +0000 Subject: [PATCH 03/51] Add #includes needed to compile with gcc-4.3 --- vamp-plugin-sdk-1.1b-gcc43.patch | 33 ++++++++++++++++++++++++++++++++ vamp-plugin-sdk.spec | 7 ++++++- 2 files changed, 39 insertions(+), 1 deletion(-) create mode 100644 vamp-plugin-sdk-1.1b-gcc43.patch diff --git a/vamp-plugin-sdk-1.1b-gcc43.patch b/vamp-plugin-sdk-1.1b-gcc43.patch new file mode 100644 index 0000000..0036894 --- /dev/null +++ b/vamp-plugin-sdk-1.1b-gcc43.patch @@ -0,0 +1,33 @@ +--- vamp-plugin-sdk-v1.1b/vamp-sdk/PluginAdapter.h.gcc43 2007-10-19 08:52:33.000000000 -0400 ++++ vamp-plugin-sdk-v1.1b/vamp-sdk/PluginAdapter.h 2008-01-31 11:26:58.000000000 -0500 +@@ -41,8 +41,6 @@ + + #include "Plugin.h" + +-#include +- + namespace Vamp { + + /** +--- vamp-plugin-sdk-v1.1b/vamp-sdk/Plugin.h.gcc43 2007-10-19 08:52:33.000000000 -0400 ++++ vamp-plugin-sdk-v1.1b/vamp-sdk/Plugin.h 2008-01-31 11:20:46.000000000 -0500 +@@ -40,6 +40,8 @@ + #include "PluginBase.h" + #include "RealTime.h" + ++#include ++#include + #include + #include + #include +--- vamp-plugin-sdk-v1.1b/vamp-sdk/PluginHostAdapter.h.gcc43 2007-10-19 08:52:33.000000000 -0400 ++++ vamp-plugin-sdk-v1.1b/vamp-sdk/PluginHostAdapter.h 2008-01-31 11:17:59.000000000 -0500 +@@ -40,8 +40,6 @@ + #include + #include + +-#include +- + namespace Vamp { + + /** diff --git a/vamp-plugin-sdk.spec b/vamp-plugin-sdk.spec index d9595b1..ef80caf 100644 --- a/vamp-plugin-sdk.spec +++ b/vamp-plugin-sdk.spec @@ -1,6 +1,6 @@ Name: vamp-plugin-sdk Version: 1.1b -Release: 3%{?dist} +Release: 4%{?dist} Summary: An API for audio analysis and feature extraction plugins Group: System Environment/Libraries @@ -8,6 +8,7 @@ License: BSD URL: http://www.vamp-plugins.org/ Source0: http://downloads.sourceforge.net/vamp/vamp-plugin-sdk-%{version}.tar.gz Patch0: %{name}-1.1b-Makefile.patch +Patch1: %{name}-1.1b-gcc43.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libsndfile-devel @@ -40,6 +41,7 @@ developing static applications that use %{name}. %prep %setup -q -n %{name}-v%{version} %patch0 -p1 -b .mk +%patch1 -p1 -b .gcc43 %build @@ -96,6 +98,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jan 31 2008 Michel Salim - 1.1b-4 +- Add some #includes, needed due to GCC 4.3's header dependency cleanup + * Mon Jan 28 2008 Michel Salim - 1.1b-3 - Add examples to -devel subpackage - Fix .pc files From 4ea15c0c8b3a4ab386476981100f12ef1e4f8db0 Mon Sep 17 00:00:00 2001 From: Michel Alexandre Salim Date: Thu, 17 Jul 2008 23:39:54 +0000 Subject: [PATCH 04/51] - Update to 1.3 --- .cvsignore | 2 +- sources | 2 +- vamp-plugin-sdk-1.1b-Makefile.patch | 74 ----------------------------- vamp-plugin-sdk-1.1b-gcc43.patch | 33 ------------- vamp-plugin-sdk-1.3-mk.patch | 44 +++++++++++++++++ vamp-plugin-sdk.spec | 15 +++--- 6 files changed, 54 insertions(+), 116 deletions(-) delete mode 100644 vamp-plugin-sdk-1.1b-Makefile.patch delete mode 100644 vamp-plugin-sdk-1.1b-gcc43.patch create mode 100644 vamp-plugin-sdk-1.3-mk.patch diff --git a/.cvsignore b/.cvsignore index 8b391d8..3799a20 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1 @@ -vamp-plugin-sdk-1.1b.tar.gz +vamp-plugin-sdk-1.3.tar.gz diff --git a/sources b/sources index 6e6e813..007f993 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -aeda086f10227e6ca473f714ac025807 vamp-plugin-sdk-1.1b.tar.gz +d0bc2c066776310631a02cd192735da7 vamp-plugin-sdk-1.3.tar.gz diff --git a/vamp-plugin-sdk-1.1b-Makefile.patch b/vamp-plugin-sdk-1.1b-Makefile.patch deleted file mode 100644 index f9746cd..0000000 --- a/vamp-plugin-sdk-1.1b-Makefile.patch +++ /dev/null @@ -1,74 +0,0 @@ ---- vamp-plugin-sdk-v1.1b/Makefile.orig 2007-10-19 08:52:34.000000000 -0400 -+++ vamp-plugin-sdk-v1.1b/Makefile 2008-01-28 14:13:24.000000000 -0500 -@@ -28,7 +28,7 @@ - - # Compile flags - # --CXXFLAGS := $(CXXFLAGS) -O2 -Wall -I. -fpic -+CXXFLAGS := $(CXXFLAGS) -I. -fpic - - # ar, ranlib - # -@@ -57,11 +57,13 @@ - # editing for non-Linux platforms. Of course you don't necessarily - # have to use "make install". - # --INSTALL_PREFIX := /usr -+PREFIX := /usr -+LIBDIR := /lib -+INSTALL_PREFIX := $(DESTDIR)$(PREFIX) - INSTALL_API_HEADERS := $(INSTALL_PREFIX)/include/vamp - INSTALL_SDK_HEADERS := $(INSTALL_PREFIX)/include/vamp-sdk - INSTALL_HOSTEXT_HEADERS := $(INSTALL_PREFIX)/include/vamp-sdk/hostext --INSTALL_SDK_LIBS := $(INSTALL_PREFIX)/lib -+INSTALL_SDK_LIBS := $(DESTDIR)$(LIBDIR) - - INSTALL_SDK_LIBNAME := libvamp-sdk.so.1.1.0 - INSTALL_SDK_LINK_ABI := libvamp-sdk.so.1 -@@ -75,7 +77,7 @@ - INSTALL_HOSTSDK_STATIC := libvamp-hostsdk.a - INSTALL_HOSTSDK_LA := libvamp-hostsdk.la - --INSTALL_PKGCONFIG := $(INSTALL_PREFIX)/lib/pkgconfig -+INSTALL_PKGCONFIG := $(INSTALL_SDK_LIBS)/pkgconfig - - # Flags required to tell the compiler to create a dynamically loadable object - # -@@ -212,14 +214,14 @@ - mkdir -p $(INSTALL_HOSTEXT_HEADERS) - mkdir -p $(INSTALL_SDK_LIBS) - mkdir -p $(INSTALL_PKGCONFIG) -- cp $(API_HEADERS) $(INSTALL_API_HEADERS) -- cp $(SDK_HEADERS) $(INSTALL_SDK_HEADERS) -- cp $(HOSTSDK_HEADERS) $(INSTALL_SDK_HEADERS) -- cp $(HOSTEXT_HEADERS) $(INSTALL_HOSTEXT_HEADERS) -- cp $(SDK_STATIC) $(INSTALL_SDK_LIBS) -- cp $(HOSTSDK_STATIC) $(INSTALL_SDK_LIBS) -- cp $(SDK_DYNAMIC) $(INSTALL_SDK_LIBS)/$(INSTALL_SDK_LIBNAME) -- cp $(HOSTSDK_DYNAMIC) $(INSTALL_SDK_LIBS)/$(INSTALL_HOSTSDK_LIBNAME) -+ cp -p $(API_HEADERS) $(INSTALL_API_HEADERS) -+ cp -p $(SDK_HEADERS) $(INSTALL_SDK_HEADERS) -+ cp -p $(HOSTSDK_HEADERS) $(INSTALL_SDK_HEADERS) -+ cp -p $(HOSTEXT_HEADERS) $(INSTALL_HOSTEXT_HEADERS) -+ cp -p $(SDK_STATIC) $(INSTALL_SDK_LIBS) -+ cp -p $(HOSTSDK_STATIC) $(INSTALL_SDK_LIBS) -+ cp -p $(SDK_DYNAMIC) $(INSTALL_SDK_LIBS)/$(INSTALL_SDK_LIBNAME) -+ cp -p $(HOSTSDK_DYNAMIC) $(INSTALL_SDK_LIBS)/$(INSTALL_HOSTSDK_LIBNAME) - rm -f $(INSTALL_SDK_LIBS)/$(INSTALL_SDK_LINK_ABI) - ln -s $(INSTALL_SDK_LIBNAME) $(INSTALL_SDK_LIBS)/$(INSTALL_SDK_LINK_ABI) - rm -f $(INSTALL_SDK_LIBS)/$(INSTALL_HOSTSDK_LINK_ABI) -@@ -228,11 +230,11 @@ - ln -s $(INSTALL_SDK_LIBNAME) $(INSTALL_SDK_LIBS)/$(INSTALL_SDK_LINK_DEV) - rm -f $(INSTALL_SDK_LIBS)/$(INSTALL_HOSTSDK_LINK_DEV) - ln -s $(INSTALL_HOSTSDK_LIBNAME) $(INSTALL_SDK_LIBS)/$(INSTALL_HOSTSDK_LINK_DEV) -- sed "s,%PREFIX%,$(INSTALL_PREFIX)," $(APIDIR)/vamp.pc.in \ -+ sed "s,%PREFIX%,$(PREFIX)," $(APIDIR)/vamp.pc.in \ - > $(INSTALL_PKGCONFIG)/vamp.pc -- sed "s,%PREFIX%,$(INSTALL_PREFIX)," $(SDKDIR)/vamp-sdk.pc.in \ -+ sed "s,%PREFIX%,$(PREFIX)," $(SDKDIR)/vamp-sdk.pc.in \ - > $(INSTALL_PKGCONFIG)/vamp-sdk.pc -- sed "s,%PREFIX%,$(INSTALL_PREFIX)," $(SDKDIR)/vamp-hostsdk.pc.in \ -+ sed "s,%PREFIX%,$(PREFIX)," $(SDKDIR)/vamp-hostsdk.pc.in \ - > $(INSTALL_PKGCONFIG)/vamp-hostsdk.pc - sed -e "s,%LIBNAME%,$(INSTALL_SDK_LIBNAME),g" \ - -e "s,%LINK_ABI%,$(INSTALL_SDK_LINK_ABI),g" \ diff --git a/vamp-plugin-sdk-1.1b-gcc43.patch b/vamp-plugin-sdk-1.1b-gcc43.patch deleted file mode 100644 index 0036894..0000000 --- a/vamp-plugin-sdk-1.1b-gcc43.patch +++ /dev/null @@ -1,33 +0,0 @@ ---- vamp-plugin-sdk-v1.1b/vamp-sdk/PluginAdapter.h.gcc43 2007-10-19 08:52:33.000000000 -0400 -+++ vamp-plugin-sdk-v1.1b/vamp-sdk/PluginAdapter.h 2008-01-31 11:26:58.000000000 -0500 -@@ -41,8 +41,6 @@ - - #include "Plugin.h" - --#include -- - namespace Vamp { - - /** ---- vamp-plugin-sdk-v1.1b/vamp-sdk/Plugin.h.gcc43 2007-10-19 08:52:33.000000000 -0400 -+++ vamp-plugin-sdk-v1.1b/vamp-sdk/Plugin.h 2008-01-31 11:20:46.000000000 -0500 -@@ -40,6 +40,8 @@ - #include "PluginBase.h" - #include "RealTime.h" - -+#include -+#include - #include - #include - #include ---- vamp-plugin-sdk-v1.1b/vamp-sdk/PluginHostAdapter.h.gcc43 2007-10-19 08:52:33.000000000 -0400 -+++ vamp-plugin-sdk-v1.1b/vamp-sdk/PluginHostAdapter.h 2008-01-31 11:17:59.000000000 -0500 -@@ -40,8 +40,6 @@ - #include - #include - --#include -- - namespace Vamp { - - /** diff --git a/vamp-plugin-sdk-1.3-mk.patch b/vamp-plugin-sdk-1.3-mk.patch new file mode 100644 index 0000000..14f6483 --- /dev/null +++ b/vamp-plugin-sdk-1.3-mk.patch @@ -0,0 +1,44 @@ +--- vamp-plugin-sdk-1.3/Makefile.mk 2008-07-09 06:42:49.000000000 -0400 ++++ vamp-plugin-sdk-1.3/Makefile 2008-07-17 18:21:02.000000000 -0400 +@@ -28,7 +28,7 @@ + + # Compile flags + # +-CXXFLAGS := $(CXXFLAGS) -O2 -Wall -I. -fPIC ++CXXFLAGS := $(CXXFLAGS) -I. -fPIC + + # ar, ranlib + # +@@ -40,8 +40,8 @@ + # because our plugin exposes only a C API so there are no boundary + # compatibility problems.) + # +-#PLUGIN_LIBS = $(SDKDIR)/libvamp-sdk.a +-PLUGIN_LIBS = $(SDKDIR)/libvamp-sdk.a $(shell g++ -print-file-name=libstdc++.a) ++PLUGIN_LIBS = $(SDKDIR)/libvamp-sdk.a ++#PLUGIN_LIBS = $(SDKDIR)/libvamp-sdk.a $(shell g++ -print-file-name=libstdc++.a) + + # File extension for a dynamically loadable object + # +@@ -58,10 +58,11 @@ + # have to use "make install". + # + INSTALL_PREFIX := /usr/local ++LIB := /lib + INSTALL_API_HEADERS := $(INSTALL_PREFIX)/include/vamp + INSTALL_SDK_HEADERS := $(INSTALL_PREFIX)/include/vamp-sdk + INSTALL_HOSTEXT_HEADERS := $(INSTALL_PREFIX)/include/vamp-sdk/hostext +-INSTALL_SDK_LIBS := $(INSTALL_PREFIX)/lib ++INSTALL_SDK_LIBS := $(INSTALL_PREFIX)$(LIB) + + INSTALL_SDK_LIBNAME := libvamp-sdk.so.1.1.1 + INSTALL_SDK_LINK_ABI := libvamp-sdk.so.1 +@@ -75,7 +76,7 @@ + INSTALL_HOSTSDK_STATIC := libvamp-hostsdk.a + INSTALL_HOSTSDK_LA := libvamp-hostsdk.la + +-INSTALL_PKGCONFIG := $(INSTALL_PREFIX)/lib/pkgconfig ++INSTALL_PKGCONFIG := $(INSTALL_PREFIX)$(LIB)/pkgconfig + + # Flags required to tell the compiler to create a dynamically loadable object + # diff --git a/vamp-plugin-sdk.spec b/vamp-plugin-sdk.spec index ef80caf..37bbbd3 100644 --- a/vamp-plugin-sdk.spec +++ b/vamp-plugin-sdk.spec @@ -1,14 +1,13 @@ Name: vamp-plugin-sdk -Version: 1.1b -Release: 4%{?dist} +Version: 1.3 +Release: 1%{?dist} Summary: An API for audio analysis and feature extraction plugins Group: System Environment/Libraries License: BSD URL: http://www.vamp-plugins.org/ Source0: http://downloads.sourceforge.net/vamp/vamp-plugin-sdk-%{version}.tar.gz -Patch0: %{name}-1.1b-Makefile.patch -Patch1: %{name}-1.1b-gcc43.patch +Patch0: %{name}-1.3-mk.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libsndfile-devel @@ -39,9 +38,8 @@ developing static applications that use %{name}. %prep -%setup -q -n %{name}-v%{version} +%setup -q %patch0 -p1 -b .mk -%patch1 -p1 -b .gcc43 %build @@ -52,7 +50,7 @@ CXXFLAGS=$RPM_OPT_FLAGS make %{?_smp_mflags} rm -rf $RPM_BUILD_ROOT # fix libdir find . -name '*.pc.in' -exec sed -i 's|/lib|/%{_lib}|' {} ';' -make install DESTDIR=$RPM_BUILD_ROOT LIBDIR=%{_libdir} +make install DESTDIR=$RPM_BUILD_ROOT INSTALL_PREFIX=%{_prefix} LIB=/%{_lib} find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' @@ -98,6 +96,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 17 2008 Michel Alexandre Salim - 1.3-1 +- Update to 1.3 + * Thu Jan 31 2008 Michel Salim - 1.1b-4 - Add some #includes, needed due to GCC 4.3's header dependency cleanup From b516465cc15fe966a10ba6ce49f8dfaa85433602 Mon Sep 17 00:00:00 2001 From: Michel Alexandre Salim Date: Sun, 14 Dec 2008 23:16:33 +0000 Subject: [PATCH 05/51] - Update to 2.0 --- .cvsignore | 2 +- sources | 2 +- vamp-plugin-sdk-1.3-mk.patch | 44 -------------------------------- vamp-plugin-sdk-2.0-libdir.patch | 22 ++++++++++++++++ vamp-plugin-sdk.spec | 16 ++++++++---- 5 files changed, 35 insertions(+), 51 deletions(-) delete mode 100644 vamp-plugin-sdk-1.3-mk.patch create mode 100644 vamp-plugin-sdk-2.0-libdir.patch diff --git a/.cvsignore b/.cvsignore index 3799a20..8fa6f55 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1 @@ -vamp-plugin-sdk-1.3.tar.gz +vamp-plugin-sdk-2.0.tar.gz diff --git a/sources b/sources index 007f993..3be1637 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -d0bc2c066776310631a02cd192735da7 vamp-plugin-sdk-1.3.tar.gz +6f52328254330389d130a61f8def8afc vamp-plugin-sdk-2.0.tar.gz diff --git a/vamp-plugin-sdk-1.3-mk.patch b/vamp-plugin-sdk-1.3-mk.patch deleted file mode 100644 index 14f6483..0000000 --- a/vamp-plugin-sdk-1.3-mk.patch +++ /dev/null @@ -1,44 +0,0 @@ ---- vamp-plugin-sdk-1.3/Makefile.mk 2008-07-09 06:42:49.000000000 -0400 -+++ vamp-plugin-sdk-1.3/Makefile 2008-07-17 18:21:02.000000000 -0400 -@@ -28,7 +28,7 @@ - - # Compile flags - # --CXXFLAGS := $(CXXFLAGS) -O2 -Wall -I. -fPIC -+CXXFLAGS := $(CXXFLAGS) -I. -fPIC - - # ar, ranlib - # -@@ -40,8 +40,8 @@ - # because our plugin exposes only a C API so there are no boundary - # compatibility problems.) - # --#PLUGIN_LIBS = $(SDKDIR)/libvamp-sdk.a --PLUGIN_LIBS = $(SDKDIR)/libvamp-sdk.a $(shell g++ -print-file-name=libstdc++.a) -+PLUGIN_LIBS = $(SDKDIR)/libvamp-sdk.a -+#PLUGIN_LIBS = $(SDKDIR)/libvamp-sdk.a $(shell g++ -print-file-name=libstdc++.a) - - # File extension for a dynamically loadable object - # -@@ -58,10 +58,11 @@ - # have to use "make install". - # - INSTALL_PREFIX := /usr/local -+LIB := /lib - INSTALL_API_HEADERS := $(INSTALL_PREFIX)/include/vamp - INSTALL_SDK_HEADERS := $(INSTALL_PREFIX)/include/vamp-sdk - INSTALL_HOSTEXT_HEADERS := $(INSTALL_PREFIX)/include/vamp-sdk/hostext --INSTALL_SDK_LIBS := $(INSTALL_PREFIX)/lib -+INSTALL_SDK_LIBS := $(INSTALL_PREFIX)$(LIB) - - INSTALL_SDK_LIBNAME := libvamp-sdk.so.1.1.1 - INSTALL_SDK_LINK_ABI := libvamp-sdk.so.1 -@@ -75,7 +76,7 @@ - INSTALL_HOSTSDK_STATIC := libvamp-hostsdk.a - INSTALL_HOSTSDK_LA := libvamp-hostsdk.la - --INSTALL_PKGCONFIG := $(INSTALL_PREFIX)/lib/pkgconfig -+INSTALL_PKGCONFIG := $(INSTALL_PREFIX)$(LIB)/pkgconfig - - # Flags required to tell the compiler to create a dynamically loadable object - # diff --git a/vamp-plugin-sdk-2.0-libdir.patch b/vamp-plugin-sdk-2.0-libdir.patch new file mode 100644 index 0000000..b0e0bd1 --- /dev/null +++ b/vamp-plugin-sdk-2.0-libdir.patch @@ -0,0 +1,22 @@ +--- vamp-plugin-sdk-2.0/Makefile.in.libdir 2008-12-01 06:48:41.000000000 -0500 ++++ vamp-plugin-sdk-2.0/Makefile.in 2008-12-14 17:04:13.000000000 -0500 +@@ -71,8 +71,8 @@ + INSTALL_API_HEADERS := $(INSTALL_PREFIX)/include/vamp + INSTALL_SDK_HEADERS := $(INSTALL_PREFIX)/include/vamp-sdk + INSTALL_HOSTSDK_HEADERS := $(INSTALL_PREFIX)/include/vamp-hostsdk +-INSTALL_SDK_LIBS := $(INSTALL_PREFIX)/lib +-INSTALL_PLUGINS := $(INSTALL_PREFIX)/lib/vamp ++INSTALL_SDK_LIBS := @libdir@ ++INSTALL_PLUGINS := $(INSTALL_SDK_LIBS)/vamp + INSTALL_BINARIES := $(INSTALL_PREFIX)/bin + + INSTALL_SDK_LIBNAME := libvamp-sdk.so.2.0.0 +@@ -87,7 +87,7 @@ + INSTALL_HOSTSDK_STATIC := libvamp-hostsdk.a + INSTALL_HOSTSDK_LA := libvamp-hostsdk.la + +-INSTALL_PKGCONFIG := $(INSTALL_PREFIX)/lib/pkgconfig ++INSTALL_PKGCONFIG := $(INSTALL_SDK_LIBS)/pkgconfig + + # Flags required to tell the compiler to create a dynamically loadable object + # diff --git a/vamp-plugin-sdk.spec b/vamp-plugin-sdk.spec index 37bbbd3..91d9c1b 100644 --- a/vamp-plugin-sdk.spec +++ b/vamp-plugin-sdk.spec @@ -1,5 +1,5 @@ Name: vamp-plugin-sdk -Version: 1.3 +Version: 2.0 Release: 1%{?dist} Summary: An API for audio analysis and feature extraction plugins @@ -7,7 +7,7 @@ Group: System Environment/Libraries License: BSD URL: http://www.vamp-plugins.org/ Source0: http://downloads.sourceforge.net/vamp/vamp-plugin-sdk-%{version}.tar.gz -Patch0: %{name}-1.3-mk.patch +Patch0: %{name}-2.0-libdir.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libsndfile-devel @@ -39,18 +39,19 @@ developing static applications that use %{name}. %prep %setup -q -%patch0 -p1 -b .mk +%patch0 -p1 -b .libdir %build -CXXFLAGS=$RPM_OPT_FLAGS make %{?_smp_mflags} +%configure +make %{?_smp_mflags} %install rm -rf $RPM_BUILD_ROOT # fix libdir find . -name '*.pc.in' -exec sed -i 's|/lib|/%{_lib}|' {} ';' -make install DESTDIR=$RPM_BUILD_ROOT INSTALL_PREFIX=%{_prefix} LIB=/%{_lib} +make install DESTDIR=$RPM_BUILD_ROOT find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' @@ -82,10 +83,12 @@ rm -rf $RPM_BUILD_ROOT %defattr(-,root,root,-) %doc COPYING README %{_libdir}/*.so.* +%{_libdir}/vamp %files devel %defattr(-,root,root,-) %doc examples +%{_bindir}/vamp-* %{_includedir}/* %{_libdir}/*.so %{_libdir}/pkgconfig/*.pc @@ -96,6 +99,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Dec 14 2008 Michel Salim - 2.0-1 +- Update to 2.0 + * Thu Jul 17 2008 Michel Alexandre Salim - 1.3-1 - Update to 1.3 From e2d0e95681a7f812818d76508dad474e8bf7d03d Mon Sep 17 00:00:00 2001 From: Michel Alexandre Salim Date: Tue, 30 Dec 2008 06:26:39 +0000 Subject: [PATCH 06/51] - More libdir fixes (bug #469777) --- vamp-plugin-sdk.spec | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/vamp-plugin-sdk.spec b/vamp-plugin-sdk.spec index 91d9c1b..6e480a1 100644 --- a/vamp-plugin-sdk.spec +++ b/vamp-plugin-sdk.spec @@ -1,6 +1,6 @@ Name: vamp-plugin-sdk Version: 2.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: An API for audio analysis and feature extraction plugins Group: System Environment/Libraries @@ -40,6 +40,7 @@ developing static applications that use %{name}. %prep %setup -q %patch0 -p1 -b .libdir +sed -i 's|/lib/vamp|/%{_lib}/vamp|g' src/vamp-hostsdk/PluginHostAdapter.cpp %build @@ -51,7 +52,7 @@ make %{?_smp_mflags} rm -rf $RPM_BUILD_ROOT # fix libdir find . -name '*.pc.in' -exec sed -i 's|/lib|/%{_lib}|' {} ';' -make install DESTDIR=$RPM_BUILD_ROOT +make install DESTDIR=$RPM_BUILD_ROOT #INSTALL_PREFIX=%{_prefix} LIB=/%{_lib} find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' @@ -99,6 +100,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Dec 30 2008 Michel Salim - 2.0-2 +- More libdir fixes (bug #469777) + * Sun Dec 14 2008 Michel Salim - 2.0-1 - Update to 2.0 From b68cf60d76d899e04ee33b757c3e798f53bee400 Mon Sep 17 00:00:00 2001 From: Michel Alexandre Salim Date: Sun, 8 Feb 2009 05:38:59 +0000 Subject: [PATCH 07/51] - Fix compilation problem with GCC 4.4 --- vamp-plugin-sdk-2.0-gcc44.patch | 10 ++++++++++ vamp-plugin-sdk.spec | 7 ++++++- 2 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 vamp-plugin-sdk-2.0-gcc44.patch diff --git a/vamp-plugin-sdk-2.0-gcc44.patch b/vamp-plugin-sdk-2.0-gcc44.patch new file mode 100644 index 0000000..c737a01 --- /dev/null +++ b/vamp-plugin-sdk-2.0-gcc44.patch @@ -0,0 +1,10 @@ +--- vamp-plugin-sdk-2.0/examples/FixedTempoEstimator.cpp.gcc44 2008-12-01 06:48:41.000000000 -0500 ++++ vamp-plugin-sdk-2.0/examples/FixedTempoEstimator.cpp 2009-02-08 00:31:38.751861057 -0500 +@@ -44,6 +44,7 @@ + using Vamp::RealTime; + + #include ++#include + + + class FixedTempoEstimator::D diff --git a/vamp-plugin-sdk.spec b/vamp-plugin-sdk.spec index 6e480a1..e272215 100644 --- a/vamp-plugin-sdk.spec +++ b/vamp-plugin-sdk.spec @@ -1,6 +1,6 @@ Name: vamp-plugin-sdk Version: 2.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: An API for audio analysis and feature extraction plugins Group: System Environment/Libraries @@ -8,6 +8,7 @@ License: BSD URL: http://www.vamp-plugins.org/ Source0: http://downloads.sourceforge.net/vamp/vamp-plugin-sdk-%{version}.tar.gz Patch0: %{name}-2.0-libdir.patch +Patch1: %{name}-2.0-gcc44.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libsndfile-devel @@ -40,6 +41,7 @@ developing static applications that use %{name}. %prep %setup -q %patch0 -p1 -b .libdir +%patch1 -p1 -b .gcc44 sed -i 's|/lib/vamp|/%{_lib}/vamp|g' src/vamp-hostsdk/PluginHostAdapter.cpp @@ -100,6 +102,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Feb 8 2009 Michel Salim - 2.0-3 +- Fix compilation problem with GCC 4.4 + * Tue Dec 30 2008 Michel Salim - 2.0-2 - More libdir fixes (bug #469777) From 246bbce2677561e34f494eb422aa873dc6c22c74 Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Wed, 25 Feb 2009 23:46:09 +0000 Subject: [PATCH 08/51] - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild --- vamp-plugin-sdk.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vamp-plugin-sdk.spec b/vamp-plugin-sdk.spec index e272215..30b3ed6 100644 --- a/vamp-plugin-sdk.spec +++ b/vamp-plugin-sdk.spec @@ -1,6 +1,6 @@ Name: vamp-plugin-sdk Version: 2.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: An API for audio analysis and feature extraction plugins Group: System Environment/Libraries @@ -102,6 +102,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Feb 25 2009 Fedora Release Engineering - 2.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + * Sun Feb 8 2009 Michel Salim - 2.0-3 - Fix compilation problem with GCC 4.4 From 3bccd4039140d58739a010c5dfd43a0393e6d107 Mon Sep 17 00:00:00 2001 From: Michael Schwendt Date: Tue, 31 Mar 2009 19:39:30 +0000 Subject: [PATCH 09/51] - Add another sed libdir fix for PluginLoader.cpp (#469777) plus a check section to scan for libdir issues --- vamp-plugin-sdk.spec | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/vamp-plugin-sdk.spec b/vamp-plugin-sdk.spec index 30b3ed6..36a5d11 100644 --- a/vamp-plugin-sdk.spec +++ b/vamp-plugin-sdk.spec @@ -1,6 +1,6 @@ Name: vamp-plugin-sdk Version: 2.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: An API for audio analysis and feature extraction plugins Group: System Environment/Libraries @@ -43,6 +43,7 @@ developing static applications that use %{name}. %patch0 -p1 -b .libdir %patch1 -p1 -b .gcc44 sed -i 's|/lib/vamp|/%{_lib}/vamp|g' src/vamp-hostsdk/PluginHostAdapter.cpp +sed -i 's|/lib/|/%{_lib}/|g' src/vamp-hostsdk/PluginLoader.cpp %build @@ -73,6 +74,12 @@ echo -e "\t"-rm *.o *.so >> Makefile make clean +%check +# Scan shared libs for unpatched '/lib' strings to prevent issues +# on 64-bit multilib platforms. +[ $(strings ${RPM_BUILD_ROOT}%{_libdir}/lib*.so.?|grep /lib|sed -e 's!/%{_lib}!/__FEDORA-LIB__!g'|grep -c /lib) -eq 0 ] + + %clean rm -rf $RPM_BUILD_ROOT @@ -102,6 +109,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Mar 31 2009 Michael Schwendt - 2.0-5 +- Add another sed libdir fix for PluginLoader.cpp (#469777) + plus a check section to scan for libdir issues + * Wed Feb 25 2009 Fedora Release Engineering - 2.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From 9d40e763b61e1c2fefcc7197ef1f6bbe2fe715e1 Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Mon, 27 Jul 2009 06:43:47 +0000 Subject: [PATCH 10/51] - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild --- vamp-plugin-sdk.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vamp-plugin-sdk.spec b/vamp-plugin-sdk.spec index 36a5d11..476b398 100644 --- a/vamp-plugin-sdk.spec +++ b/vamp-plugin-sdk.spec @@ -1,6 +1,6 @@ Name: vamp-plugin-sdk Version: 2.0 -Release: 5%{?dist} +Release: 6%{?dist} Summary: An API for audio analysis and feature extraction plugins Group: System Environment/Libraries @@ -109,6 +109,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 2.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Mar 31 2009 Michael Schwendt - 2.0-5 - Add another sed libdir fix for PluginLoader.cpp (#469777) plus a check section to scan for libdir issues From 16e500b4c3833f67d3b7ef503af057810eabc057 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Wed, 25 Nov 2009 22:43:18 +0000 Subject: [PATCH 11/51] 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 882f694..4f35bfc 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ # Makefile for source rpm: vamp-plugin-sdk -# $Id$ +# $Id: Makefile,v 1.1 2008/01/31 04:48:43 ausil Exp $ NAME := vamp-plugin-sdk 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 d9cecd962710f53504136e0d0ee91fae28958f71 Mon Sep 17 00:00:00 2001 From: Michel Alexandre Salim Date: Thu, 3 Jun 2010 16:21:09 +0000 Subject: [PATCH 12/51] - Update to 2.1 - multilib fix: Makefile for examples is now arch-tagged --- .cvsignore | 2 +- sources | 2 +- vamp-plugin-sdk-2.0-libdir.patch | 22 ---------------------- vamp-plugin-sdk-2.1-libdir.patch | 22 ++++++++++++++++++++++ vamp-plugin-sdk.spec | 12 ++++++++---- 5 files changed, 32 insertions(+), 28 deletions(-) delete mode 100644 vamp-plugin-sdk-2.0-libdir.patch create mode 100644 vamp-plugin-sdk-2.1-libdir.patch diff --git a/.cvsignore b/.cvsignore index 8fa6f55..d8522cf 100644 --- a/.cvsignore +++ b/.cvsignore @@ -1 +1 @@ -vamp-plugin-sdk-2.0.tar.gz +vamp-plugin-sdk-2.1.tar.gz diff --git a/sources b/sources index 3be1637..bc1234d 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -6f52328254330389d130a61f8def8afc vamp-plugin-sdk-2.0.tar.gz +13252077a73987dae72a9174e529b6b9 vamp-plugin-sdk-2.1.tar.gz diff --git a/vamp-plugin-sdk-2.0-libdir.patch b/vamp-plugin-sdk-2.0-libdir.patch deleted file mode 100644 index b0e0bd1..0000000 --- a/vamp-plugin-sdk-2.0-libdir.patch +++ /dev/null @@ -1,22 +0,0 @@ ---- vamp-plugin-sdk-2.0/Makefile.in.libdir 2008-12-01 06:48:41.000000000 -0500 -+++ vamp-plugin-sdk-2.0/Makefile.in 2008-12-14 17:04:13.000000000 -0500 -@@ -71,8 +71,8 @@ - INSTALL_API_HEADERS := $(INSTALL_PREFIX)/include/vamp - INSTALL_SDK_HEADERS := $(INSTALL_PREFIX)/include/vamp-sdk - INSTALL_HOSTSDK_HEADERS := $(INSTALL_PREFIX)/include/vamp-hostsdk --INSTALL_SDK_LIBS := $(INSTALL_PREFIX)/lib --INSTALL_PLUGINS := $(INSTALL_PREFIX)/lib/vamp -+INSTALL_SDK_LIBS := @libdir@ -+INSTALL_PLUGINS := $(INSTALL_SDK_LIBS)/vamp - INSTALL_BINARIES := $(INSTALL_PREFIX)/bin - - INSTALL_SDK_LIBNAME := libvamp-sdk.so.2.0.0 -@@ -87,7 +87,7 @@ - INSTALL_HOSTSDK_STATIC := libvamp-hostsdk.a - INSTALL_HOSTSDK_LA := libvamp-hostsdk.la - --INSTALL_PKGCONFIG := $(INSTALL_PREFIX)/lib/pkgconfig -+INSTALL_PKGCONFIG := $(INSTALL_SDK_LIBS)/pkgconfig - - # Flags required to tell the compiler to create a dynamically loadable object - # diff --git a/vamp-plugin-sdk-2.1-libdir.patch b/vamp-plugin-sdk-2.1-libdir.patch new file mode 100644 index 0000000..4c3f4f9 --- /dev/null +++ b/vamp-plugin-sdk-2.1-libdir.patch @@ -0,0 +1,22 @@ +--- vamp-plugin-sdk-2.1/Makefile.in.libdir 2009-09-24 14:05:26.000000000 +0200 ++++ vamp-plugin-sdk-2.1/Makefile.in 2010-06-03 18:18:18.404376697 +0200 +@@ -71,8 +71,8 @@ + INSTALL_API_HEADERS = $(INSTALL_PREFIX)/include/vamp + INSTALL_SDK_HEADERS = $(INSTALL_PREFIX)/include/vamp-sdk + INSTALL_HOSTSDK_HEADERS = $(INSTALL_PREFIX)/include/vamp-hostsdk +-INSTALL_SDK_LIBS = $(INSTALL_PREFIX)/lib +-INSTALL_PLUGINS = $(INSTALL_PREFIX)/lib/vamp ++INSTALL_SDK_LIBS = @libdir@ ++INSTALL_PLUGINS = $(INSTALL_SDK_LIBS)/vamp + INSTALL_BINARIES = $(INSTALL_PREFIX)/bin + + INSTALL_SDK_LIBNAME = libvamp-sdk.so.2.1.0 +@@ -87,7 +87,7 @@ + INSTALL_HOSTSDK_STATIC = libvamp-hostsdk.a + INSTALL_HOSTSDK_LA = libvamp-hostsdk.la + +-INSTALL_PKGCONFIG = $(INSTALL_PREFIX)/lib/pkgconfig ++INSTALL_PKGCONFIG = $(INSTALL_SDK_LIBS)/pkgconfig + + # Flags required to tell the compiler to create a dynamically loadable object + # diff --git a/vamp-plugin-sdk.spec b/vamp-plugin-sdk.spec index 476b398..56c5673 100644 --- a/vamp-plugin-sdk.spec +++ b/vamp-plugin-sdk.spec @@ -1,13 +1,13 @@ Name: vamp-plugin-sdk -Version: 2.0 -Release: 6%{?dist} +Version: 2.1 +Release: 1%{?dist} Summary: An API for audio analysis and feature extraction plugins Group: System Environment/Libraries License: BSD URL: http://www.vamp-plugins.org/ Source0: http://downloads.sourceforge.net/vamp/vamp-plugin-sdk-%{version}.tar.gz -Patch0: %{name}-2.0-libdir.patch +Patch0: %{name}-2.1-libdir.patch Patch1: %{name}-2.0-gcc44.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) @@ -61,7 +61,7 @@ find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' # create Makefile for examples cd examples -echo CXXFLAGS=$RPM_OPT_FLAGS -fpic >> Makefile +echo CXXFLAGS=$RPM_OPT_FLAGS -fpic >> Makefile-%{_arch} echo bundle: `ls *.o` >> Makefile echo -e "\t"g++ \$\(CXXFLAGS\) -shared -Wl,-Bsymbolic \ -o vamp-example-plugins.so \ @@ -109,6 +109,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri May 28 2010 Michel Salim - 2.1-1 +- Update to 2.1 +- multilib fix: Makefile for examples is now arch-tagged + * Sun Jul 26 2009 Fedora Release Engineering - 2.0-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From 6a715b6f23872f96b76ce05275a6b1687b4a2a6a Mon Sep 17 00:00:00 2001 From: Michel Alexandre Salim Date: Sun, 13 Jun 2010 21:17:43 +0000 Subject: [PATCH 13/51] vamp-plugin-sdk: update F-1{2,3} to 2.1 --- vamp-plugin-sdk.spec | 2 ++ 1 file changed, 2 insertions(+) diff --git a/vamp-plugin-sdk.spec b/vamp-plugin-sdk.spec index 56c5673..461ccb8 100644 --- a/vamp-plugin-sdk.spec +++ b/vamp-plugin-sdk.spec @@ -7,7 +7,9 @@ Group: System Environment/Libraries License: BSD URL: http://www.vamp-plugins.org/ Source0: http://downloads.sourceforge.net/vamp/vamp-plugin-sdk-%{version}.tar.gz +# https://sourceforge.net/tracker/?func=detail&aid=1884043&group_id=192001&atid=939644 Patch0: %{name}-2.1-libdir.patch +# https://sourceforge.net/tracker/?func=detail&aid=1884030&group_id=192001&atid=939644 Patch1: %{name}-2.0-gcc44.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) From af843443476c17cd4c69ed5e45b8472299cbe481 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 14:53:31 +0000 Subject: [PATCH 14/51] 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 4f35bfc..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: vamp-plugin-sdk -# $Id: Makefile,v 1.1 2008/01/31 04:48:43 ausil Exp $ -NAME := vamp-plugin-sdk -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 5085f4d1547c512b63d5f0808c6b4e790dac6a34 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Mon, 7 Feb 2011 18:55:18 -0600 Subject: [PATCH 15/51] - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild --- vamp-plugin-sdk.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vamp-plugin-sdk.spec b/vamp-plugin-sdk.spec index 461ccb8..3b43d38 100644 --- a/vamp-plugin-sdk.spec +++ b/vamp-plugin-sdk.spec @@ -1,6 +1,6 @@ Name: vamp-plugin-sdk Version: 2.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: An API for audio analysis and feature extraction plugins Group: System Environment/Libraries @@ -111,6 +111,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Feb 07 2011 Fedora Release Engineering - 2.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + * Fri May 28 2010 Michel Salim - 2.1-1 - Update to 2.1 - multilib fix: Makefile for examples is now arch-tagged From d3caa6608c3f385aaa2c8e435f1dcbfecbbcbb9a Mon Sep 17 00:00:00 2001 From: Michel Alexandre Salim Date: Thu, 14 Jul 2011 15:56:42 +0200 Subject: [PATCH 16/51] Update to 2.2.1 --- .gitignore | 2 +- sources | 2 +- vamp-plugin-sdk-2.0-gcc44.patch | 10 ---------- ...ir.patch => vamp-plugin-sdk-v2.2.1-libdir.patch | 6 +++--- vamp-plugin-sdk.spec | 14 +++++++------- 5 files changed, 12 insertions(+), 22 deletions(-) delete mode 100644 vamp-plugin-sdk-2.0-gcc44.patch rename vamp-plugin-sdk-2.1-libdir.patch => vamp-plugin-sdk-v2.2.1-libdir.patch (78%) diff --git a/.gitignore b/.gitignore index d8522cf..a400efa 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -vamp-plugin-sdk-2.1.tar.gz +/vamp-plugin-sdk-2.2.1.tar.gz diff --git a/sources b/sources index bc1234d..b3e27af 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -13252077a73987dae72a9174e529b6b9 vamp-plugin-sdk-2.1.tar.gz +d31e0d891bebdff75d4f4c709d5b2cab vamp-plugin-sdk-2.2.1.tar.gz diff --git a/vamp-plugin-sdk-2.0-gcc44.patch b/vamp-plugin-sdk-2.0-gcc44.patch deleted file mode 100644 index c737a01..0000000 --- a/vamp-plugin-sdk-2.0-gcc44.patch +++ /dev/null @@ -1,10 +0,0 @@ ---- vamp-plugin-sdk-2.0/examples/FixedTempoEstimator.cpp.gcc44 2008-12-01 06:48:41.000000000 -0500 -+++ vamp-plugin-sdk-2.0/examples/FixedTempoEstimator.cpp 2009-02-08 00:31:38.751861057 -0500 -@@ -44,6 +44,7 @@ - using Vamp::RealTime; - - #include -+#include - - - class FixedTempoEstimator::D diff --git a/vamp-plugin-sdk-2.1-libdir.patch b/vamp-plugin-sdk-v2.2.1-libdir.patch similarity index 78% rename from vamp-plugin-sdk-2.1-libdir.patch rename to vamp-plugin-sdk-v2.2.1-libdir.patch index 4c3f4f9..c6cf171 100644 --- a/vamp-plugin-sdk-2.1-libdir.patch +++ b/vamp-plugin-sdk-v2.2.1-libdir.patch @@ -1,5 +1,5 @@ ---- vamp-plugin-sdk-2.1/Makefile.in.libdir 2009-09-24 14:05:26.000000000 +0200 -+++ vamp-plugin-sdk-2.1/Makefile.in 2010-06-03 18:18:18.404376697 +0200 +--- vamp-plugin-sdk-v2.2.1/Makefile.in.libdir 2011-04-05 14:30:52.000000000 +0200 ++++ vamp-plugin-sdk-v2.2.1/Makefile.in 2011-07-14 14:52:41.975364051 +0200 @@ -71,8 +71,8 @@ INSTALL_API_HEADERS = $(INSTALL_PREFIX)/include/vamp INSTALL_SDK_HEADERS = $(INSTALL_PREFIX)/include/vamp-sdk @@ -10,7 +10,7 @@ +INSTALL_PLUGINS = $(INSTALL_SDK_LIBS)/vamp INSTALL_BINARIES = $(INSTALL_PREFIX)/bin - INSTALL_SDK_LIBNAME = libvamp-sdk.so.2.1.0 + INSTALL_SDK_LIBNAME = libvamp-sdk.so.2.2.0 @@ -87,7 +87,7 @@ INSTALL_HOSTSDK_STATIC = libvamp-hostsdk.a INSTALL_HOSTSDK_LA = libvamp-hostsdk.la diff --git a/vamp-plugin-sdk.spec b/vamp-plugin-sdk.spec index 3b43d38..237ef38 100644 --- a/vamp-plugin-sdk.spec +++ b/vamp-plugin-sdk.spec @@ -1,6 +1,6 @@ Name: vamp-plugin-sdk -Version: 2.1 -Release: 2%{?dist} +Version: 2.2.1 +Release: 1%{?dist} Summary: An API for audio analysis and feature extraction plugins Group: System Environment/Libraries @@ -8,9 +8,7 @@ License: BSD URL: http://www.vamp-plugins.org/ Source0: http://downloads.sourceforge.net/vamp/vamp-plugin-sdk-%{version}.tar.gz # https://sourceforge.net/tracker/?func=detail&aid=1884043&group_id=192001&atid=939644 -Patch0: %{name}-2.1-libdir.patch -# https://sourceforge.net/tracker/?func=detail&aid=1884030&group_id=192001&atid=939644 -Patch1: %{name}-2.0-gcc44.patch +Patch0: %{name}-v2.2.1-libdir.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libsndfile-devel @@ -41,9 +39,8 @@ developing static applications that use %{name}. %prep -%setup -q +%setup -q -n %{name}-v%{version} %patch0 -p1 -b .libdir -%patch1 -p1 -b .gcc44 sed -i 's|/lib/vamp|/%{_lib}/vamp|g' src/vamp-hostsdk/PluginHostAdapter.cpp sed -i 's|/lib/|/%{_lib}/|g' src/vamp-hostsdk/PluginLoader.cpp @@ -111,6 +108,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 14 2011 Michel Salim - 2.2.1-1 +- Update to 2.2.1 + * Mon Feb 07 2011 Fedora Release Engineering - 2.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild From 877accd09142bce863dbee28aab460bb1deb2130 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 14 Jan 2012 01:44:46 -0600 Subject: [PATCH 17/51] - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild --- vamp-plugin-sdk.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vamp-plugin-sdk.spec b/vamp-plugin-sdk.spec index 237ef38..e610346 100644 --- a/vamp-plugin-sdk.spec +++ b/vamp-plugin-sdk.spec @@ -1,6 +1,6 @@ Name: vamp-plugin-sdk Version: 2.2.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: An API for audio analysis and feature extraction plugins Group: System Environment/Libraries @@ -108,6 +108,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jan 14 2012 Fedora Release Engineering - 2.2.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + * Thu Jul 14 2011 Michel Salim - 2.2.1-1 - Update to 2.2.1 From cd6c6e9ab1f5f973f6f84db4178f67baaaf303ab Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Tue, 28 Feb 2012 14:29:15 -0600 Subject: [PATCH 18/51] - Rebuilt for c++ ABI breakage --- vamp-plugin-sdk.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vamp-plugin-sdk.spec b/vamp-plugin-sdk.spec index e610346..3342411 100644 --- a/vamp-plugin-sdk.spec +++ b/vamp-plugin-sdk.spec @@ -1,6 +1,6 @@ Name: vamp-plugin-sdk Version: 2.2.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: An API for audio analysis and feature extraction plugins Group: System Environment/Libraries @@ -108,6 +108,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Feb 28 2012 Fedora Release Engineering - 2.2.1-3 +- Rebuilt for c++ ABI breakage + * Sat Jan 14 2012 Fedora Release Engineering - 2.2.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild From 6bb75d446bfe08314a241ed32e66cd8543694884 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 21 Jul 2012 21:24:56 -0500 Subject: [PATCH 19/51] - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild --- vamp-plugin-sdk.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vamp-plugin-sdk.spec b/vamp-plugin-sdk.spec index 3342411..3f8590a 100644 --- a/vamp-plugin-sdk.spec +++ b/vamp-plugin-sdk.spec @@ -1,6 +1,6 @@ Name: vamp-plugin-sdk Version: 2.2.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: An API for audio analysis and feature extraction plugins Group: System Environment/Libraries @@ -108,6 +108,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 22 2012 Fedora Release Engineering - 2.2.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + * Tue Feb 28 2012 Fedora Release Engineering - 2.2.1-3 - Rebuilt for c++ ABI breakage From c282e7010f53a603dba1c904999571b9ebe84249 Mon Sep 17 00:00:00 2001 From: Michel Alexandre Salim Date: Mon, 10 Sep 2012 15:43:19 +0700 Subject: [PATCH 20/51] Update to 2.4 --- .gitignore | 2 +- sources | 2 +- ...bdir.patch => vamp-plugin-sdk-2.4-libdir.patch | 6 +++--- vamp-plugin-sdk.spec | 15 ++++++++------- 4 files changed, 13 insertions(+), 12 deletions(-) rename vamp-plugin-sdk-v2.2.1-libdir.patch => vamp-plugin-sdk-2.4-libdir.patch (78%) diff --git a/.gitignore b/.gitignore index a400efa..c36939f 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -/vamp-plugin-sdk-2.2.1.tar.gz +/vamp-plugin-sdk-2.4.tar.gz diff --git a/sources b/sources index b3e27af..aded909 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -d31e0d891bebdff75d4f4c709d5b2cab vamp-plugin-sdk-2.2.1.tar.gz +4bd75ca4515c141cd8776bdb59066261 vamp-plugin-sdk-2.4.tar.gz diff --git a/vamp-plugin-sdk-v2.2.1-libdir.patch b/vamp-plugin-sdk-2.4-libdir.patch similarity index 78% rename from vamp-plugin-sdk-v2.2.1-libdir.patch rename to vamp-plugin-sdk-2.4-libdir.patch index c6cf171..6209a45 100644 --- a/vamp-plugin-sdk-v2.2.1-libdir.patch +++ b/vamp-plugin-sdk-2.4-libdir.patch @@ -1,5 +1,5 @@ ---- vamp-plugin-sdk-v2.2.1/Makefile.in.libdir 2011-04-05 14:30:52.000000000 +0200 -+++ vamp-plugin-sdk-v2.2.1/Makefile.in 2011-07-14 14:52:41.975364051 +0200 +--- vamp-plugin-sdk-2.4/Makefile.in.libdir 2012-07-12 20:59:34.000000000 +0700 ++++ vamp-plugin-sdk-2.4/Makefile.in 2012-09-10 15:33:15.803174097 +0700 @@ -71,8 +71,8 @@ INSTALL_API_HEADERS = $(INSTALL_PREFIX)/include/vamp INSTALL_SDK_HEADERS = $(INSTALL_PREFIX)/include/vamp-sdk @@ -10,7 +10,7 @@ +INSTALL_PLUGINS = $(INSTALL_SDK_LIBS)/vamp INSTALL_BINARIES = $(INSTALL_PREFIX)/bin - INSTALL_SDK_LIBNAME = libvamp-sdk.so.2.2.0 + INSTALL_SDK_LIBNAME = libvamp-sdk.so.2.4.0 @@ -87,7 +87,7 @@ INSTALL_HOSTSDK_STATIC = libvamp-hostsdk.a INSTALL_HOSTSDK_LA = libvamp-hostsdk.la diff --git a/vamp-plugin-sdk.spec b/vamp-plugin-sdk.spec index 3f8590a..f423039 100644 --- a/vamp-plugin-sdk.spec +++ b/vamp-plugin-sdk.spec @@ -1,15 +1,14 @@ Name: vamp-plugin-sdk -Version: 2.2.1 -Release: 4%{?dist} +Version: 2.4 +Release: 1%{?dist} Summary: An API for audio analysis and feature extraction plugins Group: System Environment/Libraries License: BSD URL: http://www.vamp-plugins.org/ -Source0: http://downloads.sourceforge.net/vamp/vamp-plugin-sdk-%{version}.tar.gz +Source0: http://code.soundsoftware.ac.uk/attachments/download/517/vamp-plugin-sdk-2.4.tar.gz # https://sourceforge.net/tracker/?func=detail&aid=1884043&group_id=192001&atid=939644 -Patch0: %{name}-v2.2.1-libdir.patch -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +Patch0: %{name}-2.4-libdir.patch BuildRequires: libsndfile-devel #Requires: @@ -39,7 +38,7 @@ developing static applications that use %{name}. %prep -%setup -q -n %{name}-v%{version} +%setup -q %patch0 -p1 -b .libdir sed -i 's|/lib/vamp|/%{_lib}/vamp|g' src/vamp-hostsdk/PluginHostAdapter.cpp sed -i 's|/lib/|/%{_lib}/|g' src/vamp-hostsdk/PluginLoader.cpp @@ -51,7 +50,6 @@ make %{?_smp_mflags} %install -rm -rf $RPM_BUILD_ROOT # fix libdir find . -name '*.pc.in' -exec sed -i 's|/lib|/%{_lib}|' {} ';' make install DESTDIR=$RPM_BUILD_ROOT #INSTALL_PREFIX=%{_prefix} LIB=/%{_lib} @@ -108,6 +106,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Sep 9 2012 Michel Salim - 2.4-1 +- Update to 2.4 + * Sun Jul 22 2012 Fedora Release Engineering - 2.2.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild From 3e0c8d3b07c2c4739ce1cf6bf8345cdba51b690e Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 14 Feb 2013 20:37:51 -0600 Subject: [PATCH 21/51] - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild --- vamp-plugin-sdk.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vamp-plugin-sdk.spec b/vamp-plugin-sdk.spec index f423039..d74b3c8 100644 --- a/vamp-plugin-sdk.spec +++ b/vamp-plugin-sdk.spec @@ -1,6 +1,6 @@ Name: vamp-plugin-sdk Version: 2.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: An API for audio analysis and feature extraction plugins Group: System Environment/Libraries @@ -106,6 +106,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Feb 15 2013 Fedora Release Engineering - 2.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + * Sun Sep 9 2012 Michel Salim - 2.4-1 - Update to 2.4 From 5122477cf4a54861cea3eab3d3be81088cd00610 Mon Sep 17 00:00:00 2001 From: Michel Alexandre Salim Date: Wed, 19 Jun 2013 18:20:15 +0700 Subject: [PATCH 22/51] Update to 2.5 --- .gitignore | 2 +- sources | 2 +- ...4-libdir.patch => vamp-plugin-sdk-2.5-libdir.patch | 10 +++++----- vamp-plugin-sdk.spec | 11 +++++++---- 4 files changed, 14 insertions(+), 11 deletions(-) rename vamp-plugin-sdk-2.4-libdir.patch => vamp-plugin-sdk-2.5-libdir.patch (76%) diff --git a/.gitignore b/.gitignore index c36939f..16067e7 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -/vamp-plugin-sdk-2.4.tar.gz +/vamp-plugin-sdk-2.5.tar.gz diff --git a/sources b/sources index aded909..3b030fb 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -4bd75ca4515c141cd8776bdb59066261 vamp-plugin-sdk-2.4.tar.gz +199872997f74951f6769b982bf0d0646 vamp-plugin-sdk-2.5.tar.gz diff --git a/vamp-plugin-sdk-2.4-libdir.patch b/vamp-plugin-sdk-2.5-libdir.patch similarity index 76% rename from vamp-plugin-sdk-2.4-libdir.patch rename to vamp-plugin-sdk-2.5-libdir.patch index 6209a45..eee5f02 100644 --- a/vamp-plugin-sdk-2.4-libdir.patch +++ b/vamp-plugin-sdk-2.5-libdir.patch @@ -1,6 +1,6 @@ ---- vamp-plugin-sdk-2.4/Makefile.in.libdir 2012-07-12 20:59:34.000000000 +0700 -+++ vamp-plugin-sdk-2.4/Makefile.in 2012-09-10 15:33:15.803174097 +0700 -@@ -71,8 +71,8 @@ +--- vamp-plugin-sdk-2.5/Makefile.in.libdir 2013-05-08 16:36:02.000000000 +0700 ++++ vamp-plugin-sdk-2.5/Makefile.in 2013-06-19 18:11:42.065277534 +0700 +@@ -73,8 +73,8 @@ INSTALL_API_HEADERS = $(INSTALL_PREFIX)/include/vamp INSTALL_SDK_HEADERS = $(INSTALL_PREFIX)/include/vamp-sdk INSTALL_HOSTSDK_HEADERS = $(INSTALL_PREFIX)/include/vamp-hostsdk @@ -10,8 +10,8 @@ +INSTALL_PLUGINS = $(INSTALL_SDK_LIBS)/vamp INSTALL_BINARIES = $(INSTALL_PREFIX)/bin - INSTALL_SDK_LIBNAME = libvamp-sdk.so.2.4.0 -@@ -87,7 +87,7 @@ + INSTALL_SDK_LIBNAME = libvamp-sdk.so.2.5.0 +@@ -89,7 +89,7 @@ INSTALL_HOSTSDK_STATIC = libvamp-hostsdk.a INSTALL_HOSTSDK_LA = libvamp-hostsdk.la diff --git a/vamp-plugin-sdk.spec b/vamp-plugin-sdk.spec index d74b3c8..35022ec 100644 --- a/vamp-plugin-sdk.spec +++ b/vamp-plugin-sdk.spec @@ -1,14 +1,14 @@ Name: vamp-plugin-sdk -Version: 2.4 -Release: 2%{?dist} +Version: 2.5 +Release: 1%{?dist} Summary: An API for audio analysis and feature extraction plugins Group: System Environment/Libraries License: BSD URL: http://www.vamp-plugins.org/ -Source0: http://code.soundsoftware.ac.uk/attachments/download/517/vamp-plugin-sdk-2.4.tar.gz +Source0: http://code.soundsoftware.ac.uk/attachments/download/690/vamp-plugin-sdk-2.5.tar.gz # https://sourceforge.net/tracker/?func=detail&aid=1884043&group_id=192001&atid=939644 -Patch0: %{name}-2.4-libdir.patch +Patch0: %{name}-2.5-libdir.patch BuildRequires: libsndfile-devel #Requires: @@ -106,6 +106,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jun 18 2013 Michel Salim - 2.5-1 +- Update to 2.5 + * Fri Feb 15 2013 Fedora Release Engineering - 2.4-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild From 60f26c9b8b0bb345af3186970b8cf89eb31bd235 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sun, 4 Aug 2013 00:55:15 -0500 Subject: [PATCH 23/51] - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild --- vamp-plugin-sdk.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vamp-plugin-sdk.spec b/vamp-plugin-sdk.spec index 35022ec..ac20de4 100644 --- a/vamp-plugin-sdk.spec +++ b/vamp-plugin-sdk.spec @@ -1,6 +1,6 @@ Name: vamp-plugin-sdk Version: 2.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: An API for audio analysis and feature extraction plugins Group: System Environment/Libraries @@ -106,6 +106,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Aug 04 2013 Fedora Release Engineering - 2.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + * Tue Jun 18 2013 Michel Salim - 2.5-1 - Update to 2.5 From d9b31585d5df1f2e8a1194909dc4032d7f819ed4 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 7 Jun 2014 22:16:07 -0500 Subject: [PATCH 24/51] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild --- vamp-plugin-sdk.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vamp-plugin-sdk.spec b/vamp-plugin-sdk.spec index ac20de4..cebc0f9 100644 --- a/vamp-plugin-sdk.spec +++ b/vamp-plugin-sdk.spec @@ -1,6 +1,6 @@ Name: vamp-plugin-sdk Version: 2.5 -Release: 2%{?dist} +Release: 3%{?dist} Summary: An API for audio analysis and feature extraction plugins Group: System Environment/Libraries @@ -106,6 +106,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jun 08 2014 Fedora Release Engineering - 2.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + * Sun Aug 04 2013 Fedora Release Engineering - 2.5-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild From 56e1fa049e8206254ea10780f866f17a7ccf4104 Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Mon, 18 Aug 2014 07:29:18 +0000 Subject: [PATCH 25/51] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild --- vamp-plugin-sdk.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vamp-plugin-sdk.spec b/vamp-plugin-sdk.spec index cebc0f9..a6ae633 100644 --- a/vamp-plugin-sdk.spec +++ b/vamp-plugin-sdk.spec @@ -1,6 +1,6 @@ Name: vamp-plugin-sdk Version: 2.5 -Release: 3%{?dist} +Release: 4%{?dist} Summary: An API for audio analysis and feature extraction plugins Group: System Environment/Libraries @@ -106,6 +106,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Aug 18 2014 Fedora Release Engineering - 2.5-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + * Sun Jun 08 2014 Fedora Release Engineering - 2.5-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild From 0f8bc13e0f584db51d648792b3ce7e1077e6def7 Mon Sep 17 00:00:00 2001 From: Orion Poplawski Date: Wed, 1 Apr 2015 09:05:50 -0600 Subject: [PATCH 26/51] Rebuild for gcc 5.0.0 C++ ABI change --- vamp-plugin-sdk.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vamp-plugin-sdk.spec b/vamp-plugin-sdk.spec index a6ae633..0978704 100644 --- a/vamp-plugin-sdk.spec +++ b/vamp-plugin-sdk.spec @@ -1,6 +1,6 @@ Name: vamp-plugin-sdk Version: 2.5 -Release: 4%{?dist} +Release: 5%{?dist} Summary: An API for audio analysis and feature extraction plugins Group: System Environment/Libraries @@ -106,6 +106,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Apr 1 2015 Orion Poplawski - 2.5-5 +- Rebuild for gcc 5.0.0 C++ ABI change + * Mon Aug 18 2014 Fedora Release Engineering - 2.5-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild From 249e6898ad6bfb5e1b3d0afe753bfc6a5af041e1 Mon Sep 17 00:00:00 2001 From: Orion Poplawski Date: Wed, 1 Apr 2015 09:06:18 -0600 Subject: [PATCH 27/51] Drop %defattr() --- vamp-plugin-sdk.spec | 3 --- 1 file changed, 3 deletions(-) diff --git a/vamp-plugin-sdk.spec b/vamp-plugin-sdk.spec index 0978704..df10624 100644 --- a/vamp-plugin-sdk.spec +++ b/vamp-plugin-sdk.spec @@ -87,13 +87,11 @@ rm -rf $RPM_BUILD_ROOT %files -%defattr(-,root,root,-) %doc COPYING README %{_libdir}/*.so.* %{_libdir}/vamp %files devel -%defattr(-,root,root,-) %doc examples %{_bindir}/vamp-* %{_includedir}/* @@ -101,7 +99,6 @@ rm -rf $RPM_BUILD_ROOT %{_libdir}/pkgconfig/*.pc %files static -%defattr(-,root,root,-) %{_libdir}/*.a From 442ee69d35d716097f98c63e66053f2655fb6f46 Mon Sep 17 00:00:00 2001 From: Nils Philippsen Date: Mon, 27 Apr 2015 14:58:24 +0200 Subject: [PATCH 28/51] Rebuild for gcc 5.1.0 C++ ABI change --- vamp-plugin-sdk.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vamp-plugin-sdk.spec b/vamp-plugin-sdk.spec index df10624..ff8c66c 100644 --- a/vamp-plugin-sdk.spec +++ b/vamp-plugin-sdk.spec @@ -1,6 +1,6 @@ Name: vamp-plugin-sdk Version: 2.5 -Release: 5%{?dist} +Release: 6%{?dist} Summary: An API for audio analysis and feature extraction plugins Group: System Environment/Libraries @@ -103,6 +103,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Apr 27 2015 Nils Philippsen - 2.5-6 +- Rebuild for gcc 5.1.0 C++ ABI change + * Wed Apr 1 2015 Orion Poplawski - 2.5-5 - Rebuild for gcc 5.0.0 C++ ABI change From 02967bb54f4cc4667b917be2d7014c5a7ee6ecd6 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Fri, 19 Jun 2015 01:49:07 +0000 Subject: [PATCH 29/51] - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild --- vamp-plugin-sdk.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vamp-plugin-sdk.spec b/vamp-plugin-sdk.spec index ff8c66c..957b250 100644 --- a/vamp-plugin-sdk.spec +++ b/vamp-plugin-sdk.spec @@ -1,6 +1,6 @@ Name: vamp-plugin-sdk Version: 2.5 -Release: 6%{?dist} +Release: 7%{?dist} Summary: An API for audio analysis and feature extraction plugins Group: System Environment/Libraries @@ -103,6 +103,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jun 19 2015 Fedora Release Engineering - 2.5-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + * Mon Apr 27 2015 Nils Philippsen - 2.5-6 - Rebuild for gcc 5.1.0 C++ ABI change From c12e05b2aeab06576c3da1e311ef2859cae89ccb Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 5 Feb 2016 02:33:10 +0000 Subject: [PATCH 30/51] - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild --- vamp-plugin-sdk.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vamp-plugin-sdk.spec b/vamp-plugin-sdk.spec index 957b250..2b2dbc1 100644 --- a/vamp-plugin-sdk.spec +++ b/vamp-plugin-sdk.spec @@ -1,6 +1,6 @@ Name: vamp-plugin-sdk Version: 2.5 -Release: 7%{?dist} +Release: 8%{?dist} Summary: An API for audio analysis and feature extraction plugins Group: System Environment/Libraries @@ -103,6 +103,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Feb 05 2016 Fedora Release Engineering - 2.5-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + * Fri Jun 19 2015 Fedora Release Engineering - 2.5-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild From 9bd2774517456fbb1b4daeb3e8be1c30f5f17076 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 11 Feb 2017 16:56:11 +0000 Subject: [PATCH 31/51] - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild --- vamp-plugin-sdk.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vamp-plugin-sdk.spec b/vamp-plugin-sdk.spec index 2b2dbc1..cd8384e 100644 --- a/vamp-plugin-sdk.spec +++ b/vamp-plugin-sdk.spec @@ -1,6 +1,6 @@ Name: vamp-plugin-sdk Version: 2.5 -Release: 8%{?dist} +Release: 9%{?dist} Summary: An API for audio analysis and feature extraction plugins Group: System Environment/Libraries @@ -103,6 +103,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Feb 11 2017 Fedora Release Engineering - 2.5-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + * Fri Feb 05 2016 Fedora Release Engineering - 2.5-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild From 72dff9f86298331eac16633a41393ea1540470b4 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 27 Jul 2017 21:10:43 +0000 Subject: [PATCH 32/51] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild --- vamp-plugin-sdk.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vamp-plugin-sdk.spec b/vamp-plugin-sdk.spec index cd8384e..5dfcdff 100644 --- a/vamp-plugin-sdk.spec +++ b/vamp-plugin-sdk.spec @@ -1,6 +1,6 @@ Name: vamp-plugin-sdk Version: 2.5 -Release: 9%{?dist} +Release: 10%{?dist} Summary: An API for audio analysis and feature extraction plugins Group: System Environment/Libraries @@ -103,6 +103,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jul 27 2017 Fedora Release Engineering - 2.5-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + * Sat Feb 11 2017 Fedora Release Engineering - 2.5-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild From 7ac5b000805a64895fe2bef90b57a07d431c5008 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 3 Aug 2017 09:58:01 +0000 Subject: [PATCH 33/51] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild --- vamp-plugin-sdk.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vamp-plugin-sdk.spec b/vamp-plugin-sdk.spec index 5dfcdff..bf59c70 100644 --- a/vamp-plugin-sdk.spec +++ b/vamp-plugin-sdk.spec @@ -1,6 +1,6 @@ Name: vamp-plugin-sdk Version: 2.5 -Release: 10%{?dist} +Release: 11%{?dist} Summary: An API for audio analysis and feature extraction plugins Group: System Environment/Libraries @@ -103,6 +103,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Aug 03 2017 Fedora Release Engineering - 2.5-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + * Thu Jul 27 2017 Fedora Release Engineering - 2.5-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild From 9a9991a81b4c1cc493bc39f852c378fcb631a0e2 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 9 Feb 2018 20:18:50 +0000 Subject: [PATCH 34/51] - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- vamp-plugin-sdk.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vamp-plugin-sdk.spec b/vamp-plugin-sdk.spec index bf59c70..6d367c4 100644 --- a/vamp-plugin-sdk.spec +++ b/vamp-plugin-sdk.spec @@ -1,6 +1,6 @@ Name: vamp-plugin-sdk Version: 2.5 -Release: 11%{?dist} +Release: 12%{?dist} Summary: An API for audio analysis and feature extraction plugins Group: System Environment/Libraries @@ -103,6 +103,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Feb 09 2018 Fedora Release Engineering - 2.5-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + * Thu Aug 03 2017 Fedora Release Engineering - 2.5-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild From 809a4e426e7b5f22bec376d8e9067aba0e0eed13 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Wed, 14 Feb 2018 08:57:33 +0100 Subject: [PATCH 35/51] 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 --- vamp-plugin-sdk.spec | 3 --- 1 file changed, 3 deletions(-) diff --git a/vamp-plugin-sdk.spec b/vamp-plugin-sdk.spec index 6d367c4..f7c7540 100644 --- a/vamp-plugin-sdk.spec +++ b/vamp-plugin-sdk.spec @@ -77,9 +77,6 @@ make clean [ $(strings ${RPM_BUILD_ROOT}%{_libdir}/lib*.so.?|grep /lib|sed -e 's!/%{_lib}!/__FEDORA-LIB__!g'|grep -c /lib) -eq 0 ] -%clean -rm -rf $RPM_BUILD_ROOT - %post -p /sbin/ldconfig From 8afc255d48231977157ab9e2c9a8f077d582f08f Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Tue, 10 Jul 2018 16:09:19 +0200 Subject: [PATCH 36/51] add BuildRequires: gcc-c++ Reference: https://fedoraproject.org/wiki/Changes/Remove_GCC_from_BuildRoot --- vamp-plugin-sdk.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/vamp-plugin-sdk.spec b/vamp-plugin-sdk.spec index f7c7540..9cf64a5 100644 --- a/vamp-plugin-sdk.spec +++ b/vamp-plugin-sdk.spec @@ -10,6 +10,7 @@ Source0: http://code.soundsoftware.ac.uk/attachments/download/690/vamp-pl # https://sourceforge.net/tracker/?func=detail&aid=1884043&group_id=192001&atid=939644 Patch0: %{name}-2.5-libdir.patch +BuildRequires: gcc-c++ BuildRequires: libsndfile-devel #Requires: From b58e88a0cec8a1da513f45c53884aecc34cf76fb Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 14 Jul 2018 08:24:52 +0000 Subject: [PATCH 37/51] - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- vamp-plugin-sdk.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vamp-plugin-sdk.spec b/vamp-plugin-sdk.spec index 9cf64a5..a64e912 100644 --- a/vamp-plugin-sdk.spec +++ b/vamp-plugin-sdk.spec @@ -1,6 +1,6 @@ Name: vamp-plugin-sdk Version: 2.5 -Release: 12%{?dist} +Release: 13%{?dist} Summary: An API for audio analysis and feature extraction plugins Group: System Environment/Libraries @@ -101,6 +101,9 @@ make clean %changelog +* Sat Jul 14 2018 Fedora Release Engineering - 2.5-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + * Fri Feb 09 2018 Fedora Release Engineering - 2.5-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild From daa41865b84b473f89cb5cbc97ff152c26c388bd Mon Sep 17 00:00:00 2001 From: Michel Alexandre Salim Date: Wed, 17 Oct 2018 20:59:45 -0700 Subject: [PATCH 38/51] Update to 2.7.1 --- .gitignore | 2 +- sources | 2 +- ...atch => vamp-plugin-sdk-2.7.1-libdir.patch | 10 +++---- vamp-plugin-sdk.spec | 26 +++++++++---------- 4 files changed, 20 insertions(+), 20 deletions(-) rename vamp-plugin-sdk-2.5-libdir.patch => vamp-plugin-sdk-2.7.1-libdir.patch (74%) diff --git a/.gitignore b/.gitignore index 16067e7..463befc 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -/vamp-plugin-sdk-2.5.tar.gz +/vamp-plugin-sdk-2.7.1.tar.gz diff --git a/sources b/sources index 3b030fb..56e6a08 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -199872997f74951f6769b982bf0d0646 vamp-plugin-sdk-2.5.tar.gz +SHA512 (vamp-plugin-sdk-2.7.1.tar.gz) = 91dd7cae72334718dcbdac06b1ffa3f3ba76e977b82b928ab634d9982aa15ca4e30978a7778215753c61e56831077d7634d24e65e468ab6a8a87a5957fb09bf3 diff --git a/vamp-plugin-sdk-2.5-libdir.patch b/vamp-plugin-sdk-2.7.1-libdir.patch similarity index 74% rename from vamp-plugin-sdk-2.5-libdir.patch rename to vamp-plugin-sdk-2.7.1-libdir.patch index eee5f02..d665984 100644 --- a/vamp-plugin-sdk-2.5-libdir.patch +++ b/vamp-plugin-sdk-2.7.1-libdir.patch @@ -1,6 +1,6 @@ ---- vamp-plugin-sdk-2.5/Makefile.in.libdir 2013-05-08 16:36:02.000000000 +0700 -+++ vamp-plugin-sdk-2.5/Makefile.in 2013-06-19 18:11:42.065277534 +0700 -@@ -73,8 +73,8 @@ +--- vamp-plugin-sdk-2.7.1/Makefile.in.libdir 2017-03-06 05:27:24.000000000 -0800 ++++ vamp-plugin-sdk-2.7.1/Makefile.in 2018-10-17 20:58:05.590946737 -0700 +@@ -74,8 +74,8 @@ INSTALL_API_HEADERS = $(INSTALL_PREFIX)/include/vamp INSTALL_SDK_HEADERS = $(INSTALL_PREFIX)/include/vamp-sdk INSTALL_HOSTSDK_HEADERS = $(INSTALL_PREFIX)/include/vamp-hostsdk @@ -10,8 +10,8 @@ +INSTALL_PLUGINS = $(INSTALL_SDK_LIBS)/vamp INSTALL_BINARIES = $(INSTALL_PREFIX)/bin - INSTALL_SDK_LIBNAME = libvamp-sdk.so.2.5.0 -@@ -89,7 +89,7 @@ + INSTALL_SDK_LIBNAME = libvamp-sdk.so.2.7.0 +@@ -90,7 +90,7 @@ INSTALL_HOSTSDK_STATIC = libvamp-hostsdk.a INSTALL_HOSTSDK_LA = libvamp-hostsdk.la diff --git a/vamp-plugin-sdk.spec b/vamp-plugin-sdk.spec index a64e912..206f724 100644 --- a/vamp-plugin-sdk.spec +++ b/vamp-plugin-sdk.spec @@ -1,14 +1,12 @@ Name: vamp-plugin-sdk -Version: 2.5 -Release: 13%{?dist} +Version: 2.7.1 +Release: 1%{?dist} Summary: An API for audio analysis and feature extraction plugins -Group: System Environment/Libraries License: BSD URL: http://www.vamp-plugins.org/ -Source0: http://code.soundsoftware.ac.uk/attachments/download/690/vamp-plugin-sdk-2.5.tar.gz -# https://sourceforge.net/tracker/?func=detail&aid=1884043&group_id=192001&atid=939644 -Patch0: %{name}-2.5-libdir.patch +Source0: https://code.soundsoftware.ac.uk/attachments/download/2206/%{name}-%{version}.tar.gz +Patch0: %{name}-2.7.1-libdir.patch BuildRequires: gcc-c++ BuildRequires: libsndfile-devel @@ -21,7 +19,7 @@ to produce descriptive output (measurements or semantic observations). %package devel Summary: Development files for %{name} Group: Development/Libraries -Requires: %{name} = %{version}-%{release} +Requires: %{name}%{?_isa} = %{version}-%{release} Requires: pkgconfig %description devel @@ -39,21 +37,20 @@ developing static applications that use %{name}. %prep -%setup -q -%patch0 -p1 -b .libdir +%autosetup -p1 sed -i 's|/lib/vamp|/%{_lib}/vamp|g' src/vamp-hostsdk/PluginHostAdapter.cpp sed -i 's|/lib/|/%{_lib}/|g' src/vamp-hostsdk/PluginLoader.cpp %build %configure -make %{?_smp_mflags} +%make_build %install # fix libdir find . -name '*.pc.in' -exec sed -i 's|/lib|/%{_lib}|' {} ';' -make install DESTDIR=$RPM_BUILD_ROOT #INSTALL_PREFIX=%{_prefix} LIB=/%{_lib} +%make_install find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' @@ -78,14 +75,14 @@ make clean [ $(strings ${RPM_BUILD_ROOT}%{_libdir}/lib*.so.?|grep /lib|sed -e 's!/%{_lib}!/__FEDORA-LIB__!g'|grep -c /lib) -eq 0 ] - %post -p /sbin/ldconfig %postun -p /sbin/ldconfig %files -%doc COPYING README +%license COPYING +%doc README %{_libdir}/*.so.* %{_libdir}/vamp @@ -101,6 +98,9 @@ make clean %changelog +* Wed Oct 17 2018 Michel Alexandre Salim - 2.7.1-1 +- Update to 2.7.1 + * Sat Jul 14 2018 Fedora Release Engineering - 2.5-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild From 2e4be7bac0a9e58b390d73b5ff4635facf5388f5 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Tue, 22 Jan 2019 18:41:16 +0100 Subject: [PATCH 39/51] Remove obsolete ldconfig scriptlets References: https://fedoraproject.org/wiki/Changes/RemoveObsoleteScriptlets Signed-off-by: Igor Gnatenko --- vamp-plugin-sdk.spec | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/vamp-plugin-sdk.spec b/vamp-plugin-sdk.spec index 206f724..38ebf57 100644 --- a/vamp-plugin-sdk.spec +++ b/vamp-plugin-sdk.spec @@ -75,9 +75,7 @@ make clean [ $(strings ${RPM_BUILD_ROOT}%{_libdir}/lib*.so.?|grep /lib|sed -e 's!/%{_lib}!/__FEDORA-LIB__!g'|grep -c /lib) -eq 0 ] -%post -p /sbin/ldconfig - -%postun -p /sbin/ldconfig +%ldconfig_scriptlets %files From ecee6932356bd1a37a5e3ae046cc32cea1b4a180 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Mon, 28 Jan 2019 20:18:29 +0100 Subject: [PATCH 40/51] Remove obsolete Group tag References: https://fedoraproject.org/wiki/Changes/Remove_Group_Tag --- vamp-plugin-sdk.spec | 2 -- 1 file changed, 2 deletions(-) diff --git a/vamp-plugin-sdk.spec b/vamp-plugin-sdk.spec index 38ebf57..86ffdcc 100644 --- a/vamp-plugin-sdk.spec +++ b/vamp-plugin-sdk.spec @@ -18,7 +18,6 @@ to produce descriptive output (measurements or semantic observations). %package devel Summary: Development files for %{name} -Group: Development/Libraries Requires: %{name}%{?_isa} = %{version}-%{release} Requires: pkgconfig @@ -28,7 +27,6 @@ developing applications that use %{name}. %package static Summary: Static libraries for %{name} -Group: Development/Libraries Requires: %{name}-devel = %{version}-%{release} %description static From ee1c4f9b45c7030c8dc7fe86625d41d5827d08c8 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sun, 3 Feb 2019 11:05:31 +0000 Subject: [PATCH 41/51] - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- vamp-plugin-sdk.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vamp-plugin-sdk.spec b/vamp-plugin-sdk.spec index 86ffdcc..ece78d9 100644 --- a/vamp-plugin-sdk.spec +++ b/vamp-plugin-sdk.spec @@ -1,6 +1,6 @@ Name: vamp-plugin-sdk Version: 2.7.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: An API for audio analysis and feature extraction plugins License: BSD @@ -94,6 +94,9 @@ make clean %changelog +* Sun Feb 03 2019 Fedora Release Engineering - 2.7.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + * Wed Oct 17 2018 Michel Alexandre Salim - 2.7.1-1 - Update to 2.7.1 From 3bb407cc265266f4a27dcb766ea019be80f8c790 Mon Sep 17 00:00:00 2001 From: Michel Alexandre Salim Date: Mon, 1 Jul 2019 20:11:21 -0700 Subject: [PATCH 42/51] Update to 2.8.0 --- .gitignore | 2 +- sources | 2 +- ...libdir.patch => vamp-plugin-sdk-2.8.0-libdir.patch | 6 +++--- vamp-plugin-sdk.spec | 11 +++++++---- 4 files changed, 12 insertions(+), 9 deletions(-) rename vamp-plugin-sdk-2.7.1-libdir.patch => vamp-plugin-sdk-2.8.0-libdir.patch (80%) diff --git a/.gitignore b/.gitignore index 463befc..8afb069 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -/vamp-plugin-sdk-2.7.1.tar.gz +/vamp-plugin-sdk-2.8.0.tar.gz diff --git a/sources b/sources index 56e6a08..76ec4b3 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (vamp-plugin-sdk-2.7.1.tar.gz) = 91dd7cae72334718dcbdac06b1ffa3f3ba76e977b82b928ab634d9982aa15ca4e30978a7778215753c61e56831077d7634d24e65e468ab6a8a87a5957fb09bf3 +SHA512 (vamp-plugin-sdk-2.8.0.tar.gz) = abc009dab8d1ae4549640aba4a1341942b5a868479b4a9b2a435556a1bf1ce350d8aec94ee5b403fe8fff4175f40778a8fc12ceaf602dd0f176f9215e4a3f8f8 diff --git a/vamp-plugin-sdk-2.7.1-libdir.patch b/vamp-plugin-sdk-2.8.0-libdir.patch similarity index 80% rename from vamp-plugin-sdk-2.7.1-libdir.patch rename to vamp-plugin-sdk-2.8.0-libdir.patch index d665984..7a81afc 100644 --- a/vamp-plugin-sdk-2.7.1-libdir.patch +++ b/vamp-plugin-sdk-2.8.0-libdir.patch @@ -1,5 +1,5 @@ ---- vamp-plugin-sdk-2.7.1/Makefile.in.libdir 2017-03-06 05:27:24.000000000 -0800 -+++ vamp-plugin-sdk-2.7.1/Makefile.in 2018-10-17 20:58:05.590946737 -0700 +--- vamp-plugin-sdk-2.8.0/Makefile.in.libdir 2019-02-07 02:19:39.000000000 -0800 ++++ vamp-plugin-sdk-2.8.0/Makefile.in 2019-07-01 20:08:23.155170842 -0700 @@ -74,8 +74,8 @@ INSTALL_API_HEADERS = $(INSTALL_PREFIX)/include/vamp INSTALL_SDK_HEADERS = $(INSTALL_PREFIX)/include/vamp-sdk @@ -10,7 +10,7 @@ +INSTALL_PLUGINS = $(INSTALL_SDK_LIBS)/vamp INSTALL_BINARIES = $(INSTALL_PREFIX)/bin - INSTALL_SDK_LIBNAME = libvamp-sdk.so.2.7.0 + INSTALL_SDK_LIBNAME = libvamp-sdk.so.2.8.0 @@ -90,7 +90,7 @@ INSTALL_HOSTSDK_STATIC = libvamp-hostsdk.a INSTALL_HOSTSDK_LA = libvamp-hostsdk.la diff --git a/vamp-plugin-sdk.spec b/vamp-plugin-sdk.spec index ece78d9..d8ab042 100644 --- a/vamp-plugin-sdk.spec +++ b/vamp-plugin-sdk.spec @@ -1,12 +1,12 @@ Name: vamp-plugin-sdk -Version: 2.7.1 -Release: 2%{?dist} +Version: 2.8.0 +Release: 1%{?dist} Summary: An API for audio analysis and feature extraction plugins License: BSD URL: http://www.vamp-plugins.org/ -Source0: https://code.soundsoftware.ac.uk/attachments/download/2206/%{name}-%{version}.tar.gz -Patch0: %{name}-2.7.1-libdir.patch +Source0: https://code.soundsoftware.ac.uk/attachments/download/2450/%{name}-%{version}.tar.gz +Patch0: %{name}-2.8.0-libdir.patch BuildRequires: gcc-c++ BuildRequires: libsndfile-devel @@ -94,6 +94,9 @@ make clean %changelog +* Mon Jul 1 2019 Michel Alexandre Salim - 2.8.0-1 +- Update to 2.8.0 + * Sun Feb 03 2019 Fedora Release Engineering - 2.7.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild From 0806dba392f6f66d18725be456cb7d295757ecb0 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 27 Jul 2019 02:47:07 +0000 Subject: [PATCH 43/51] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- vamp-plugin-sdk.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vamp-plugin-sdk.spec b/vamp-plugin-sdk.spec index d8ab042..d05894c 100644 --- a/vamp-plugin-sdk.spec +++ b/vamp-plugin-sdk.spec @@ -1,6 +1,6 @@ Name: vamp-plugin-sdk Version: 2.8.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: An API for audio analysis and feature extraction plugins License: BSD @@ -94,6 +94,9 @@ make clean %changelog +* Sat Jul 27 2019 Fedora Release Engineering - 2.8.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Mon Jul 1 2019 Michel Alexandre Salim - 2.8.0-1 - Update to 2.8.0 From d379b1d23a3b028d6618717f5b15aeb5f423e740 Mon Sep 17 00:00:00 2001 From: Jeff Law Date: Sat, 14 Dec 2019 17:06:09 -0700 Subject: [PATCH 44/51] Tighten string for grep to search for --- vamp-plugin-sdk.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vamp-plugin-sdk.spec b/vamp-plugin-sdk.spec index d05894c..2c29ecc 100644 --- a/vamp-plugin-sdk.spec +++ b/vamp-plugin-sdk.spec @@ -70,7 +70,7 @@ make clean %check # Scan shared libs for unpatched '/lib' strings to prevent issues # on 64-bit multilib platforms. -[ $(strings ${RPM_BUILD_ROOT}%{_libdir}/lib*.so.?|grep /lib|sed -e 's!/%{_lib}!/__FEDORA-LIB__!g'|grep -c /lib) -eq 0 ] +[ $(strings ${RPM_BUILD_ROOT}%{_libdir}/lib*.so.?|grep /lib/|sed -e 's!/%{_lib}!/__FEDORA-LIB__!g'|grep -c /lib/) -eq 0 ] %ldconfig_scriptlets From adc818786e7bee7cbc22fe33f79bab5db16bbffd Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 31 Jan 2020 02:55:29 +0000 Subject: [PATCH 45/51] - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- vamp-plugin-sdk.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vamp-plugin-sdk.spec b/vamp-plugin-sdk.spec index 2c29ecc..dd1014d 100644 --- a/vamp-plugin-sdk.spec +++ b/vamp-plugin-sdk.spec @@ -1,6 +1,6 @@ Name: vamp-plugin-sdk Version: 2.8.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: An API for audio analysis and feature extraction plugins License: BSD @@ -94,6 +94,9 @@ make clean %changelog +* Fri Jan 31 2020 Fedora Release Engineering - 2.8.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + * Sat Jul 27 2019 Fedora Release Engineering - 2.8.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild From 3af2aed502191353bf98528831e78acb21edf367 Mon Sep 17 00:00:00 2001 From: Michel Alexandre Salim Date: Sun, 2 Feb 2020 12:14:09 -0800 Subject: [PATCH 46/51] Update to 2.9.0 --- .gitignore | 2 +- sources | 2 +- ...bdir.patch => vamp-plugin-sdk-2.9.0-libdir.patch | 6 +++--- vamp-plugin-sdk.spec | 13 ++++++++----- 4 files changed, 13 insertions(+), 10 deletions(-) rename vamp-plugin-sdk-2.8.0-libdir.patch => vamp-plugin-sdk-2.9.0-libdir.patch (80%) diff --git a/.gitignore b/.gitignore index 8afb069..9c9ba02 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -/vamp-plugin-sdk-2.8.0.tar.gz +/vamp-plugin-sdk-2.9.0.tar.gz diff --git a/sources b/sources index 76ec4b3..9297493 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (vamp-plugin-sdk-2.8.0.tar.gz) = abc009dab8d1ae4549640aba4a1341942b5a868479b4a9b2a435556a1bf1ce350d8aec94ee5b403fe8fff4175f40778a8fc12ceaf602dd0f176f9215e4a3f8f8 +SHA512 (vamp-plugin-sdk-2.9.0.tar.gz) = 7ef7f837d19a08048b059e0da408373a7964ced452b290fae40b85d6d70ca9000bcfb3302cd0b4dc76cf2a848528456f78c1ce1ee0c402228d812bd347b6983b diff --git a/vamp-plugin-sdk-2.8.0-libdir.patch b/vamp-plugin-sdk-2.9.0-libdir.patch similarity index 80% rename from vamp-plugin-sdk-2.8.0-libdir.patch rename to vamp-plugin-sdk-2.9.0-libdir.patch index 7a81afc..5cb5d43 100644 --- a/vamp-plugin-sdk-2.8.0-libdir.patch +++ b/vamp-plugin-sdk-2.9.0-libdir.patch @@ -1,5 +1,5 @@ ---- vamp-plugin-sdk-2.8.0/Makefile.in.libdir 2019-02-07 02:19:39.000000000 -0800 -+++ vamp-plugin-sdk-2.8.0/Makefile.in 2019-07-01 20:08:23.155170842 -0700 +--- vamp-plugin-sdk-2.9.0/Makefile.in.libdir 2019-11-12 06:17:03.000000000 -0800 ++++ vamp-plugin-sdk-2.9.0/Makefile.in 2020-02-02 12:12:44.394371184 -0800 @@ -74,8 +74,8 @@ INSTALL_API_HEADERS = $(INSTALL_PREFIX)/include/vamp INSTALL_SDK_HEADERS = $(INSTALL_PREFIX)/include/vamp-sdk @@ -10,7 +10,7 @@ +INSTALL_PLUGINS = $(INSTALL_SDK_LIBS)/vamp INSTALL_BINARIES = $(INSTALL_PREFIX)/bin - INSTALL_SDK_LIBNAME = libvamp-sdk.so.2.8.0 + INSTALL_SDK_LIBNAME = libvamp-sdk.so.2.9.0 @@ -90,7 +90,7 @@ INSTALL_HOSTSDK_STATIC = libvamp-hostsdk.a INSTALL_HOSTSDK_LA = libvamp-hostsdk.la diff --git a/vamp-plugin-sdk.spec b/vamp-plugin-sdk.spec index dd1014d..34f2c04 100644 --- a/vamp-plugin-sdk.spec +++ b/vamp-plugin-sdk.spec @@ -1,12 +1,12 @@ Name: vamp-plugin-sdk -Version: 2.8.0 -Release: 3%{?dist} +Version: 2.9.0 +Release: 1%{?dist} Summary: An API for audio analysis and feature extraction plugins License: BSD -URL: http://www.vamp-plugins.org/ -Source0: https://code.soundsoftware.ac.uk/attachments/download/2450/%{name}-%{version}.tar.gz -Patch0: %{name}-2.8.0-libdir.patch +URL: https://vamp-plugins.org/ +Source0: https://code.soundsoftware.ac.uk/attachments/download/2588/%{name}-%{version}.tar.gz +Patch0: %{name}-2.9.0-libdir.patch BuildRequires: gcc-c++ BuildRequires: libsndfile-devel @@ -94,6 +94,9 @@ make clean %changelog +* Sun Feb 2 2020 Michel Alexandre Salim - 2.9.0-1 +- Update to 2.9.0 + * Fri Jan 31 2020 Fedora Release Engineering - 2.8.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild From c88f1626cdf41166e8cc984083a84ca7df6705a0 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 29 Jul 2020 13:32:32 +0000 Subject: [PATCH 47/51] - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- vamp-plugin-sdk.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vamp-plugin-sdk.spec b/vamp-plugin-sdk.spec index 34f2c04..87d9ec7 100644 --- a/vamp-plugin-sdk.spec +++ b/vamp-plugin-sdk.spec @@ -1,6 +1,6 @@ Name: vamp-plugin-sdk Version: 2.9.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: An API for audio analysis and feature extraction plugins License: BSD @@ -94,6 +94,9 @@ make clean %changelog +* Wed Jul 29 2020 Fedora Release Engineering - 2.9.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Sun Feb 2 2020 Michel Alexandre Salim - 2.9.0-1 - Update to 2.9.0 From a7bc1e199e40d76dae9651558d2a735514b5babe Mon Sep 17 00:00:00 2001 From: Tom Stellard Date: Sat, 9 Jan 2021 00:34:10 +0000 Subject: [PATCH 48/51] Add BuildRequires: make https://fedoraproject.org/wiki/Changes/Remove_make_from_BuildRoot --- vamp-plugin-sdk.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/vamp-plugin-sdk.spec b/vamp-plugin-sdk.spec index 87d9ec7..cb16662 100644 --- a/vamp-plugin-sdk.spec +++ b/vamp-plugin-sdk.spec @@ -8,6 +8,7 @@ URL: https://vamp-plugins.org/ Source0: https://code.soundsoftware.ac.uk/attachments/download/2588/%{name}-%{version}.tar.gz Patch0: %{name}-2.9.0-libdir.patch +BuildRequires: make BuildRequires: gcc-c++ BuildRequires: libsndfile-devel #Requires: From 732f72cd2a7b44f040a6e2c035d2d2aec9e24992 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 27 Jan 2021 22:54:15 +0000 Subject: [PATCH 49/51] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- vamp-plugin-sdk.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vamp-plugin-sdk.spec b/vamp-plugin-sdk.spec index cb16662..927f555 100644 --- a/vamp-plugin-sdk.spec +++ b/vamp-plugin-sdk.spec @@ -1,6 +1,6 @@ Name: vamp-plugin-sdk Version: 2.9.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: An API for audio analysis and feature extraction plugins License: BSD @@ -95,6 +95,9 @@ make clean %changelog +* Wed Jan 27 2021 Fedora Release Engineering - 2.9.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Wed Jul 29 2020 Fedora Release Engineering - 2.9.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild From 16e57e2068113b1aba0581538ea2dacdea3193e6 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 23 Jul 2021 20:17:56 +0000 Subject: [PATCH 50/51] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- vamp-plugin-sdk.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/vamp-plugin-sdk.spec b/vamp-plugin-sdk.spec index 927f555..c900369 100644 --- a/vamp-plugin-sdk.spec +++ b/vamp-plugin-sdk.spec @@ -1,6 +1,6 @@ Name: vamp-plugin-sdk Version: 2.9.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: An API for audio analysis and feature extraction plugins License: BSD @@ -95,6 +95,9 @@ make clean %changelog +* Fri Jul 23 2021 Fedora Release Engineering - 2.9.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Wed Jan 27 2021 Fedora Release Engineering - 2.9.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild From 70de889bb32440e1ceb6ccf7a0e7a8c047d9cd41 Mon Sep 17 00:00:00 2001 From: MSVSphere Packaging Team Date: Tue, 31 Oct 2023 00:25:09 +0300 Subject: [PATCH 51/51] 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 9297493..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -SHA512 (vamp-plugin-sdk-2.9.0.tar.gz) = 7ef7f837d19a08048b059e0da408373a7964ced452b290fae40b85d6d70ca9000bcfb3302cd0b4dc76cf2a848528456f78c1ce1ee0c402228d812bd347b6983b