Compare commits
No commits in common. 'i8ce' and 'epel9' have entirely different histories.
@ -1 +1 @@
|
|||||||
SOURCES/rubberband-1.9.0.tar.bz2
|
/rubberband-*.*.*.tar.bz2
|
||||||
|
@ -1 +0,0 @@
|
|||||||
fa6e69b1fabada44cd270cea2911f989c1071f15 SOURCES/rubberband-1.9.0.tar.bz2
|
|
@ -1,64 +0,0 @@
|
|||||||
# HG changeset patch
|
|
||||||
# User 'Michel Alexandre Salim <salimma@fedoraproject.org>'
|
|
||||||
# Date 1605661509 28800
|
|
||||||
# Tue Nov 17 17:05:09 2020 -0800
|
|
||||||
# Node ID a5ac0c9466c59d232d77ac2f82be55a1fb76d1d5
|
|
||||||
# Parent 9df2a19b93a3c4076f2c87cae5022d2b6ae6580e
|
|
||||||
Make INSTALL_LIBDIR configurable
|
|
||||||
|
|
||||||
Some Linux distributions have INSTALL_LIBDIR set to $(PREFIX)/lib64 rather
|
|
||||||
than $(PREFIX)/lib. Allow overriding this; @libdir@ defaults to '${exec_prefix}/lib'
|
|
||||||
so this is a no-op unless overridden.
|
|
||||||
|
|
||||||
Also use `INSTALL_LIBDIR` to configure `INSTALL_VAMPDIR`, `INSTALL_LADSPADIR` and
|
|
||||||
`INSTALL_PKGDIR`
|
|
||||||
|
|
||||||
diff -r 9df2a19b93a3 -r a5ac0c9466c5 Makefile.in
|
|
||||||
--- a/Makefile.in Tue Nov 17 16:48:50 2020 -0800
|
|
||||||
+++ b/Makefile.in Tue Nov 17 17:05:09 2020 -0800
|
|
||||||
@@ -23,11 +23,11 @@
|
|
||||||
|
|
||||||
INSTALL_BINDIR := $(PREFIX)/bin
|
|
||||||
INSTALL_INCDIR := $(PREFIX)/include/rubberband
|
|
||||||
-INSTALL_LIBDIR := $(PREFIX)/lib
|
|
||||||
-INSTALL_VAMPDIR := $(PREFIX)/lib/vamp
|
|
||||||
-INSTALL_LADSPADIR := $(PREFIX)/lib/ladspa
|
|
||||||
+INSTALL_LIBDIR := @libdir@
|
|
||||||
+INSTALL_VAMPDIR := $(INSTALL_LIBDIR)/vamp
|
|
||||||
+INSTALL_LADSPADIR := $(INSTALL_LIBDIR)/ladspa
|
|
||||||
INSTALL_LRDFDIR := $(PREFIX)/share/ladspa/rdf
|
|
||||||
-INSTALL_PKGDIR := $(PREFIX)/lib/pkgconfig
|
|
||||||
+INSTALL_PKGDIR := $(INSTALL_LIBDIR)/pkgconfig
|
|
||||||
|
|
||||||
LIBNAME := librubberband
|
|
||||||
JNINAME := librubberband-jni
|
|
||||||
@@ -196,6 +196,7 @@
|
|
||||||
ln -s $(LIBNAME)$(DYNAMIC_EXTENSION).$(DYNAMIC_FULL_VERSION) $(DESTDIR)$(INSTALL_LIBDIR)/$(LIBNAME)$(DYNAMIC_EXTENSION)
|
|
||||||
test -f $(JNI_TARGET) && cp -fp $(JNI_TARGET) $(DESTDIR)$(INSTALL_LIBDIR)/$(JNINAME)$(DYNAMIC_EXTENSION) || true
|
|
||||||
sed "s,%PREFIX%,$(PREFIX)," rubberband.pc.in \
|
|
||||||
+ | sed "s,%LIBDIR%,$(INSTALL_LIBDIR)," \
|
|
||||||
> $(DESTDIR)$(INSTALL_PKGDIR)/rubberband.pc
|
|
||||||
ifeq ($(WITH_PROGRAMS), yes)
|
|
||||||
$(MKDIR) -p $(DESTDIR)$(INSTALL_BINDIR)
|
|
||||||
diff -r 9df2a19b93a3 -r a5ac0c9466c5 Makefile.osx
|
|
||||||
--- a/Makefile.osx Tue Nov 17 16:48:50 2020 -0800
|
|
||||||
+++ b/Makefile.osx Tue Nov 17 17:05:09 2020 -0800
|
|
||||||
@@ -177,6 +177,7 @@
|
|
||||||
cp ladspa/ladspa-rubberband.cat $(DESTDIR)$(INSTALL_LADSPADIR)
|
|
||||||
cp ladspa/ladspa-rubberband.rdf $(DESTDIR)$(INSTALL_LRDFDIR)
|
|
||||||
sed "s,%PREFIX%,$(PREFIX)," rubberband.pc.in \
|
|
||||||
+ | sed "s,%LIBDIR%,$(INSTALL_LIBDIR)," \
|
|
||||||
> $(DESTDIR)$(INSTALL_PKGDIR)/rubberband.pc
|
|
||||||
|
|
||||||
clean:
|
|
||||||
diff -r 9df2a19b93a3 -r a5ac0c9466c5 rubberband.pc.in
|
|
||||||
--- a/rubberband.pc.in Tue Nov 17 16:48:50 2020 -0800
|
|
||||||
+++ b/rubberband.pc.in Tue Nov 17 17:05:09 2020 -0800
|
|
||||||
@@ -1,6 +1,6 @@
|
|
||||||
prefix=%PREFIX%
|
|
||||||
exec_prefix=${prefix}
|
|
||||||
-libdir=${exec_prefix}/lib
|
|
||||||
+libdir=%LIBDIR%
|
|
||||||
includedir=${prefix}/include
|
|
||||||
|
|
||||||
Name: rubberband
|
|
@ -1,56 +0,0 @@
|
|||||||
# HG changeset patch
|
|
||||||
# User 'Michel Alexandre Salim <salimma@fedoraproject.org>'
|
|
||||||
# Date 1605660530 28800
|
|
||||||
# Tue Nov 17 16:48:50 2020 -0800
|
|
||||||
# Node ID 9df2a19b93a3c4076f2c87cae5022d2b6ae6580e
|
|
||||||
# Parent 8f1295fa2ed4178ef84812b9909d2fc90cfa5bff
|
|
||||||
Preserve permissions when installing files
|
|
||||||
|
|
||||||
Use `cp -p` rather than `cp`
|
|
||||||
|
|
||||||
diff -r 8f1295fa2ed4 -r 9df2a19b93a3 Makefile.in
|
|
||||||
--- a/Makefile.in Thu Oct 08 11:20:52 2020 +0100
|
|
||||||
+++ b/Makefile.in Tue Nov 17 16:48:50 2020 -0800
|
|
||||||
@@ -186,32 +186,32 @@
|
|
||||||
$(MKDIR) -p $(DESTDIR)$(INSTALL_INCDIR)
|
|
||||||
$(MKDIR) -p $(DESTDIR)$(INSTALL_LIBDIR)
|
|
||||||
$(MKDIR) -p $(DESTDIR)$(INSTALL_PKGDIR)
|
|
||||||
- cp $(PUBLIC_INCLUDES) $(DESTDIR)$(INSTALL_INCDIR)
|
|
||||||
- cp $(STATIC_TARGET) $(DESTDIR)$(INSTALL_LIBDIR)
|
|
||||||
+ cp -p $(PUBLIC_INCLUDES) $(DESTDIR)$(INSTALL_INCDIR)
|
|
||||||
+ cp -p $(STATIC_TARGET) $(DESTDIR)$(INSTALL_LIBDIR)
|
|
||||||
rm -f $(DESTDIR)$(INSTALL_LIBDIR)/$(LIBNAME)$(DYNAMIC_EXTENSION).$(DYNAMIC_ABI_VERSION)
|
|
||||||
rm -f $(DESTDIR)$(INSTALL_LIBDIR)/$(LIBNAME)$(DYNAMIC_EXTENSION)
|
|
||||||
rm -f $(DESTDIR)$(INSTALL_LIBDIR)/$(JNINAME)$(DYNAMIC_EXTENSION)
|
|
||||||
- cp $(DYNAMIC_TARGET) $(DESTDIR)$(INSTALL_LIBDIR)/$(LIBNAME)$(DYNAMIC_EXTENSION).$(DYNAMIC_FULL_VERSION)
|
|
||||||
+ cp -p $(DYNAMIC_TARGET) $(DESTDIR)$(INSTALL_LIBDIR)/$(LIBNAME)$(DYNAMIC_EXTENSION).$(DYNAMIC_FULL_VERSION)
|
|
||||||
ln -s $(LIBNAME)$(DYNAMIC_EXTENSION).$(DYNAMIC_FULL_VERSION) $(DESTDIR)$(INSTALL_LIBDIR)/$(LIBNAME)$(DYNAMIC_EXTENSION).$(DYNAMIC_ABI_VERSION)
|
|
||||||
ln -s $(LIBNAME)$(DYNAMIC_EXTENSION).$(DYNAMIC_FULL_VERSION) $(DESTDIR)$(INSTALL_LIBDIR)/$(LIBNAME)$(DYNAMIC_EXTENSION)
|
|
||||||
- test -f $(JNI_TARGET) && cp -f $(JNI_TARGET) $(DESTDIR)$(INSTALL_LIBDIR)/$(JNINAME)$(DYNAMIC_EXTENSION) || true
|
|
||||||
+ test -f $(JNI_TARGET) && cp -fp $(JNI_TARGET) $(DESTDIR)$(INSTALL_LIBDIR)/$(JNINAME)$(DYNAMIC_EXTENSION) || true
|
|
||||||
sed "s,%PREFIX%,$(PREFIX)," rubberband.pc.in \
|
|
||||||
> $(DESTDIR)$(INSTALL_PKGDIR)/rubberband.pc
|
|
||||||
ifeq ($(WITH_PROGRAMS), yes)
|
|
||||||
$(MKDIR) -p $(DESTDIR)$(INSTALL_BINDIR)
|
|
||||||
- cp $(PROGRAM_TARGET) $(DESTDIR)$(INSTALL_BINDIR)
|
|
||||||
+ cp -p $(PROGRAM_TARGET) $(DESTDIR)$(INSTALL_BINDIR)
|
|
||||||
endif
|
|
||||||
ifeq ($(WITH_VAMP), yes)
|
|
||||||
$(MKDIR) -p $(DESTDIR)$(INSTALL_VAMPDIR)
|
|
||||||
- cp $(VAMP_TARGET) $(DESTDIR)$(INSTALL_VAMPDIR)
|
|
||||||
- cp vamp/vamp-rubberband.cat $(DESTDIR)$(INSTALL_VAMPDIR)
|
|
||||||
+ cp -p $(VAMP_TARGET) $(DESTDIR)$(INSTALL_VAMPDIR)
|
|
||||||
+ cp -p vamp/vamp-rubberband.cat $(DESTDIR)$(INSTALL_VAMPDIR)
|
|
||||||
endif
|
|
||||||
ifeq ($(WITH_LADSPA), yes)
|
|
||||||
$(MKDIR) -p $(DESTDIR)$(INSTALL_LADSPADIR)
|
|
||||||
$(MKDIR) -p $(DESTDIR)$(INSTALL_LRDFDIR)
|
|
||||||
- cp $(LADSPA_TARGET) $(DESTDIR)$(INSTALL_LADSPADIR)
|
|
||||||
- cp ladspa/ladspa-rubberband.cat $(DESTDIR)$(INSTALL_LADSPADIR)
|
|
||||||
- cp ladspa/ladspa-rubberband.rdf $(DESTDIR)$(INSTALL_LRDFDIR)
|
|
||||||
+ cp -p $(LADSPA_TARGET) $(DESTDIR)$(INSTALL_LADSPADIR)
|
|
||||||
+ cp -p ladspa/ladspa-rubberband.cat $(DESTDIR)$(INSTALL_LADSPADIR)
|
|
||||||
+ cp -p ladspa/ladspa-rubberband.rdf $(DESTDIR)$(INSTALL_LRDFDIR)
|
|
||||||
endif
|
|
||||||
|
|
||||||
clean:
|
|
@ -1,75 +1,37 @@
|
|||||||
Name: rubberband
|
* Thu Jan 06 2022 Michel Alexandre Salim <salimma@fedoraproject.org> - 2.0.0-2
|
||||||
Version: 1.9.0
|
- Opt in to rpmautospec
|
||||||
Release: 1%{?dist}
|
|
||||||
Summary: Audio time-stretching and pitch-shifting library
|
|
||||||
|
|
||||||
License: GPLv2+
|
* Sat Oct 23 2021 Uwe Klotz <uwe.klotz@gmail.com> - 2.0.0-1
|
||||||
URL: http://www.breakfastquay.com/rubberband/
|
- Update to 2.0.0 (#2016650)
|
||||||
Source0: https://breakfastquay.com/files/releases/%{name}-%{version}.tar.bz2
|
|
||||||
Patch0: %{name}-1.9.0-permissions.patch
|
|
||||||
Patch1: %{name}-1.9.0-libdir.patch
|
|
||||||
|
|
||||||
BuildRequires: gcc-c++
|
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.2-2
|
||||||
BuildRequires: ladspa-devel
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||||
BuildRequires: pkgconfig(fftw3)
|
|
||||||
BuildRequires: pkgconfig(samplerate)
|
|
||||||
BuildRequires: pkgconfig(sndfile)
|
|
||||||
BuildRequires: vamp-plugin-sdk-devel
|
|
||||||
|
|
||||||
Requires: ladspa
|
* Wed Jun 09 2021 Uwe Klotz <uwe.klotz@gmail.com> - 1.9.2-1
|
||||||
|
- Update to 1.9.2
|
||||||
|
|
||||||
%description
|
* Thu Apr 08 2021 Uwe Klotz <uwe.klotz@gmail.com> - 1.9.1-2
|
||||||
Rubber Band is a library and utility program that permits you to change the
|
- Use FFTW instead of KissFFT: https://github.com/breakfastquay/rubberband/issues/37
|
||||||
tempo and pitch of an audio recording independently of one another.
|
- Explicitly enable libsamplerate
|
||||||
|
|
||||||
|
* Wed Mar 17 2021 Michel Alexandre Salim <salimma@fedoraproject.org> - 1.9.1-1
|
||||||
|
- Update to 1.9.1
|
||||||
|
|
||||||
%package devel
|
* Wed Jan 27 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.0-2
|
||||||
Summary: Development files for %{name}
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
|
||||||
Requires: pkgconfig
|
|
||||||
|
|
||||||
%description devel
|
* Tue Nov 17 2020 Michel Alexandre Salim <salimma@fedoraproject.org> - 1.9.0-1
|
||||||
The %{name}-devel package contains libraries and header files for
|
- Update to 1.9.0
|
||||||
developing applications that use %{name}.
|
|
||||||
|
|
||||||
|
|
||||||
%prep
|
|
||||||
%autosetup -p1
|
|
||||||
|
|
||||||
|
|
||||||
%build
|
|
||||||
%configure --disable-static
|
|
||||||
%make_build
|
|
||||||
|
|
||||||
|
|
||||||
%install
|
|
||||||
%make_install
|
|
||||||
find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
|
|
||||||
rm -rf $RPM_BUILD_ROOT%{_libdir}/*.a
|
|
||||||
|
|
||||||
|
|
||||||
%files
|
|
||||||
%license COPYING
|
|
||||||
%doc README.md
|
|
||||||
%{_bindir}/rubberband
|
|
||||||
%{_libdir}/*.so.*
|
|
||||||
%{_libdir}/ladspa/ladspa-rubberband.*
|
|
||||||
%{_datadir}/ladspa/rdf/ladspa-rubberband.rdf
|
|
||||||
%{_libdir}/vamp/vamp-rubberband.*
|
|
||||||
|
|
||||||
%files devel
|
|
||||||
%doc CHANGELOG
|
|
||||||
%{_includedir}/*
|
|
||||||
%{_libdir}/*.so
|
|
||||||
%{_libdir}/pkgconfig/rubberband.pc
|
|
||||||
|
|
||||||
|
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.2-6
|
||||||
|
- Second attempt - Rebuilt for
|
||||||
|
https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
%changelog
|
* Wed Jul 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.2-5
|
||||||
* Wed Feb 28 2024 Sergey Cherevko <s.cherevko@msvsphere-os.ru> - 1.9.0-1
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
- Rebuilt for MSVSphere 8.9
|
|
||||||
|
|
||||||
* Tue Nov 17 2020 Michel Alexandre Salim <salimma@fedoraproject.org> - 1.9.0-1
|
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.2-4
|
||||||
- Update to 1.9.0
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.2-3
|
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.8.2-3
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
@ -0,0 +1,90 @@
|
|||||||
|
%bcond_without check
|
||||||
|
|
||||||
|
%global so_version 2
|
||||||
|
|
||||||
|
Name: rubberband
|
||||||
|
Version: 3.1.3
|
||||||
|
Release: %autorelease
|
||||||
|
Summary: Audio time-stretching and pitch-shifting library
|
||||||
|
|
||||||
|
License: GPLv2+
|
||||||
|
URL: http://www.breakfastquay.com/rubberband/
|
||||||
|
Source0: https://breakfastquay.com/files/releases/%{name}-%{version}.tar.bz2
|
||||||
|
|
||||||
|
BuildRequires: meson
|
||||||
|
BuildRequires: gcc-c++
|
||||||
|
BuildRequires: ladspa-devel
|
||||||
|
BuildRequires: pkgconfig(fftw3)
|
||||||
|
BuildRequires: pkgconfig(lv2)
|
||||||
|
BuildRequires: pkgconfig(samplerate)
|
||||||
|
BuildRequires: pkgconfig(sndfile)
|
||||||
|
BuildRequires: vamp-plugin-sdk-devel
|
||||||
|
%if %{with check}
|
||||||
|
BuildRequires: boost-devel
|
||||||
|
%endif
|
||||||
|
|
||||||
|
Requires: ladspa
|
||||||
|
Requires: lv2
|
||||||
|
|
||||||
|
%global _description %{expand:
|
||||||
|
Rubber Band is a library and utility program that permits you to change the
|
||||||
|
tempo and pitch of an audio recording independently of one another.}
|
||||||
|
|
||||||
|
%description %{_description}
|
||||||
|
|
||||||
|
%package devel
|
||||||
|
Summary: Development files for %{name}
|
||||||
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||||
|
Requires: pkgconfig
|
||||||
|
|
||||||
|
%description devel %{_description}
|
||||||
|
|
||||||
|
The %{name}-devel package contains libraries and header files for
|
||||||
|
developing applications that use %{name}.
|
||||||
|
|
||||||
|
|
||||||
|
%prep
|
||||||
|
%autosetup -p1
|
||||||
|
|
||||||
|
|
||||||
|
%build
|
||||||
|
%meson \
|
||||||
|
-Dfft=fftw \
|
||||||
|
-Djni=disabled \
|
||||||
|
-Dresampler=libsamplerate
|
||||||
|
%meson_build
|
||||||
|
|
||||||
|
|
||||||
|
%install
|
||||||
|
%meson_install
|
||||||
|
find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
|
||||||
|
rm -rf $RPM_BUILD_ROOT%{_libdir}/*.a
|
||||||
|
|
||||||
|
|
||||||
|
%if %{with check}
|
||||||
|
%check
|
||||||
|
%meson_test
|
||||||
|
%endif
|
||||||
|
|
||||||
|
|
||||||
|
%files
|
||||||
|
%license COPYING
|
||||||
|
%doc README.md
|
||||||
|
%{_bindir}/rubberband
|
||||||
|
%{_bindir}/rubberband-r3
|
||||||
|
%{_libdir}/*.so.%{so_version}*
|
||||||
|
%{_libdir}/ladspa/ladspa-rubberband.*
|
||||||
|
%dir %{_libdir}/lv2/rubberband.lv2
|
||||||
|
%{_libdir}/lv2/rubberband.lv2/*
|
||||||
|
%{_datadir}/ladspa/rdf/ladspa-rubberband.rdf
|
||||||
|
%{_libdir}/vamp/vamp-rubberband.*
|
||||||
|
|
||||||
|
%files devel
|
||||||
|
%doc CHANGELOG
|
||||||
|
%{_includedir}/*
|
||||||
|
%{_libdir}/*.so
|
||||||
|
%{_libdir}/pkgconfig/rubberband.pc
|
||||||
|
|
||||||
|
|
||||||
|
%changelog
|
||||||
|
%autochangelog
|
Loading…
Reference in new issue