Compare commits

...

No commits in common. 'epel9' and 'i10ce' have entirely different histories.
epel9 ... i10ce

2
.gitignore vendored

@ -1 +1 @@
/rubberband-*.*.*.tar.bz2
SOURCES/rubberband-3.3.0.tar.bz2

@ -0,0 +1 @@
dda24039840a83cb359eff689f2304519649dea8 SOURCES/rubberband-3.3.0.tar.bz2

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

@ -1,3 +1,171 @@
## START: Set by rpmautospec
## (rpmautospec version 0.7.2)
## RPMAUTOSPEC: autorelease, autochangelog
%define autorelease(e:s:pb:n) %{?-p:0.}%{lua:
release_number = 8;
base_release_number = tonumber(rpm.expand("%{?-b*}%{!?-b:1}"));
print(release_number + base_release_number - 1);
}%{?-e:.%{-e*}}%{?-s:.%{-s*}}%{!?-n:%{?dist}}
## END: Set by rpmautospec
%bcond_without check
%global so_version 2
Name: rubberband
Version: 3.3.0
Release: %autorelease
Summary: Audio time-stretching and pitch-shifting library
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++
BuildRequires: ladspa-devel
BuildRequires: pkgconfig(fftw3)
BuildRequires: pkgconfig(lv2)
BuildRequires: pkgconfig(samplerate)
BuildRequires: pkgconfig(sndfile)
BuildRequires: vamp-plugin-sdk-devel
BuildRequires: boost-devel
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 %{buildroot} -name '*.la' -exec rm -f {} ';'
rm -rf %{buildroot}%{_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
* Mon Dec 23 2024 MSVSphere Packaging Team <packager@msvsphere-os.ru> - 3.3.0-8
- Rebuilt for MSVSphere 10
## START: Generated by rpmautospec
* Mon Sep 23 2024 Simone Caronni <negativo17@gmail.com> - 3.3.0-8
- Use RPM macros everywhere
* Fri Jul 19 2024 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.0-7
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
* Wed Jun 12 2024 Michel Lind <salimma@fedoraproject.org> - 3.3.0-6
- Fix directory ownership (rhbz#2283761)
* Wed Jun 12 2024 Michel Lind <salimma@fedoraproject.org> - 3.3.0-5
- Enable Packit
* Thu Mar 28 2024 Marie Loise Nolden <loise@kde.org> - 3.3.0-4
- boost-devel is needed even without check
* Fri Jan 26 2024 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.0-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
* Mon Jan 22 2024 Fedora Release Engineering <releng@fedoraproject.org> - 3.3.0-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
* Mon Aug 21 2023 Michel Alexandre Salim <salimma@fedoraproject.org> - 3.3.0-1
- Update to 3.3.0
- Use SPDX license identifier
* Fri Jul 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 3.2.1-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
* Wed May 10 2023 Michel Alexandre Salim <salimma@fedoraproject.org> - 3.2.1-2
- Disable failed tests on ppc64le
* Wed May 10 2023 Michel Alexandre Salim <salimma@fedoraproject.org> - 3.2.1-1
- Update to 3.2.1
* Fri Jan 20 2023 Fedora Release Engineering <releng@fedoraproject.org> - 3.1.2-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
* Wed Jan 11 2023 Michel Alexandre Salim <salimma@fedoraproject.org> - 3.1.2-1
- Update to 3.1.2 (fixes: rhbz#2136895)
* Sun Oct 02 2022 Michel Alexandre Salim <salimma@fedoraproject.org> - 3.1.0-2
- Enable tests
* Sun Oct 02 2022 Michel Alexandre Salim <salimma@fedoraproject.org> - 3.1.0-1
- Update to 3.1.0
* Fri Jul 29 2022 Michel Alexandre Salim <salimma@fedoraproject.org> - 3.0.0-2
- Explicitly mark so_version so we know when there's an API compatibility
break
* Fri Jul 29 2022 Uwe Klotz <uwe.klotz@gmail.com> - 3.0.0-1
- Update to 3.0.0
* Sat Jul 23 2022 Fedora Release Engineering <releng@fedoraproject.org> - 2.0.2-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
* Mon Jan 31 2022 Uwe Klotz <uwe.klotz@gmail.com> - 2.0.2-2
- Add LV2 plugin and runtime dependencies
* Sat Jan 29 2022 Michel Alexandre Salim <salimma@fedoraproject.org> - 2.0.2-1
- Update to 2.0.2 (resolves: rhbz#2046184)
* Thu Jan 20 2022 Michel Alexandre Salim <salimma@fedoraproject.org> - 2.0.1-1
- Update to 2.0.1
* Thu Jan 06 2022 Michel Alexandre Salim <salimma@fedoraproject.org> - 2.0.0-2
- Opt in to rpmautospec
@ -124,3 +292,5 @@
* Sun Mar 30 2008 Michel Salim <michel.sylvan@gmail.com> - 1.0.1-1
- Initial package
## END: Generated by rpmautospec

@ -1,90 +0,0 @@
%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

@ -1 +0,0 @@
SHA512 (rubberband-3.1.3.tar.bz2) = c7e42020c543b1741e1d3e7ad79f92081177953f63a8b7b1c302a185cb7a0b828d9519e03a6df39c1cff356b324370313501df54bc74be32dcdb955c789b6485
Loading…
Cancel
Save