Compare commits

...

11 Commits

Author SHA1 Message Date
Simone Caronni f206e8cb9d Use RPM macros everywhere
3 months ago
Fedora Release Engineering 545a484095 Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
5 months ago
Michel Lind 2416c5a5e3
Fix directory ownership (rhbz#2283761)
7 months ago
Michel Lind a2f17b684b
Enable Packit
7 months ago
Marie Loise Nolden d9b1256a60 boost-devel is needed even without check
9 months ago
Fedora Release Engineering c7a798abb9 Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
11 months ago
Fedora Release Engineering 63700fec42 Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
11 months ago
Michel Alexandre Salim 7876dc0ad9
Update to 3.3.0
1 year ago
Fedora Release Engineering b7c35e57fd Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
1 year ago
Michel Alexandre Salim b409dcc8a5
Disable failed tests on ppc64le
2 years ago
Michel Alexandre Salim 69db6e39d5
Update to 3.2.1
2 years ago

@ -0,0 +1,18 @@
# See the documentation for more information:
# https://packit.dev/docs/configuration/
upstream_project_url: https://github.com/breakfastquay/rubberband.git
upstream_tag_template: v{version}
copy_upstream_release_description: false
jobs:
- job: pull_from_upstream
trigger: release
dist_git_branches:
- fedora-rawhide
- job: koji_build
trigger: commit
allowed_committers: ['packit']
dist_git_branches:
- fedora-rawhide

@ -0,0 +1,34 @@
--- a/src/test/TestStretcher.cpp
+++ b/src/test/TestStretcher.cpp
@@ -1007,6 +1007,7 @@ BOOST_AUTO_TEST_CASE(impulses_slow_highe
false);
}
+#ifndef __PPC64__
BOOST_AUTO_TEST_CASE(impulses_slow_lower_realtime_finer)
{
impulses_realtime(RubberBandStretcher::OptionEngineFiner |
@@ -1014,6 +1015,7 @@ BOOST_AUTO_TEST_CASE(impulses_slow_lower
8.0, 0.5,
false);
}
+#endif
BOOST_AUTO_TEST_CASE(impulses_slow_lower_realtime_finer_hqpitch)
{
@@ -1024,6 +1026,7 @@ BOOST_AUTO_TEST_CASE(impulses_slow_lower
false);
}
+#ifndef __PPC64__
BOOST_AUTO_TEST_CASE(impulses_slow_lower_realtime_finer_hcpitch)
{
impulses_realtime(RubberBandStretcher::OptionEngineFiner |
@@ -1032,6 +1035,7 @@ BOOST_AUTO_TEST_CASE(impulses_slow_lower
8.0, 0.5,
false);
}
+#endif
static void final_realtime(RubberBandStretcher::Options options,
double timeRatio,

@ -3,13 +3,15 @@
%global so_version 2
Name: rubberband
Version: 3.1.2
Version: 3.3.0
Release: %autorelease
Summary: Audio time-stretching and pitch-shifting library
License: GPLv2+
License: GPL-2.0-or-later
URL: http://www.breakfastquay.com/rubberband/
Source0: https://breakfastquay.com/files/releases/%{name}-%{version}.tar.bz2
# Two tests fail on ppc64le: https://todo.sr.ht/~breakfastquay/rubberband/29
Patch: %{name}-disable-failed-ppc64le-tests.diff
BuildRequires: meson
BuildRequires: gcc-c++
@ -19,9 +21,7 @@ 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
@ -57,8 +57,8 @@ developing applications that use %{name}.
%install
%meson_install
find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
rm -rf $RPM_BUILD_ROOT%{_libdir}/*.a
find %{buildroot} -name '*.la' -exec rm -f {} ';'
rm -rf %{buildroot}%{_libdir}/*.a
%if %{with check}
@ -74,6 +74,7 @@ rm -rf $RPM_BUILD_ROOT%{_libdir}/*.a
%{_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.*

@ -1 +1 @@
SHA512 (rubberband-3.1.2.tar.bz2) = b21605a0cf882e34fc2eada38a446220257e4b067475e36dfeef00d491425ad51398fbb49773dbd162683531b70f7c864ab02bff744d7e0dde7ed1d64aa1d327
SHA512 (rubberband-3.3.0.tar.bz2) = 0216c33a250d52d539ad7a0ec28ea94e6d4684a308a9cb62509221b3861f74717021bd79196a1f58a7715799757491f32e0475ad2ddb7884683bb9130c676591

Loading…
Cancel
Save