Compare commits

...
Sign in to create a new pull request.

4 commits

Author SHA1 Message Date
Fedora Release Engineering
7e4d269659 dist-git conversion 2010-07-29 14:53:32 +00:00
a659d3533c Build vamp-plugin-sdk for EL-6 2010-07-03 18:50:44 +00:00
0328b14123 Initialize branch EL-6 for vamp-plugin-sdk 2010-05-08 02:27:09 +00:00
Bill Nottingham
f691821751 Fix typo that causes a failure to update the common directory. (releng
#2781)
2009-11-26 01:11:47 +00:00
7 changed files with 34 additions and 49 deletions

View file

@ -1 +0,0 @@
vamp-plugin-sdk-2.0.tar.gz

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
vamp-plugin-sdk-2.1.tar.gz

View file

@ -1,21 +0,0 @@
# 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)

View file

@ -1 +1 @@
6f52328254330389d130a61f8def8afc vamp-plugin-sdk-2.0.tar.gz
13252077a73987dae72a9174e529b6b9 vamp-plugin-sdk-2.1.tar.gz

View file

@ -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
#

View file

@ -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
#

View file

@ -1,13 +1,15 @@
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
# 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)
@ -61,7 +63,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 +111,10 @@ rm -rf $RPM_BUILD_ROOT
%changelog
* Fri May 28 2010 Michel Salim <salimma@fedoraproject.org> - 2.1-1
- Update to 2.1
- multilib fix: Makefile for examples is now arch-tagged
* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0-6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild