Switch off bootstrap mode

- Simplify bootstrap mode logic
This commit is contained in:
Neal Gompa 2023-03-25 19:24:38 -04:00
parent 27fa385b38
commit 95cdc147d9
1 changed files with 6 additions and 8 deletions

View File

@ -1,18 +1,12 @@
%bcond_without bootstrap
%if %{with bootstrap}
%bcond_with ffmpeg
%else
%if 0%{?fedora} >= 36
%if 0%{?fedora} >= 36 || 0%{!?with_bootstrap}
%bcond_without ffmpeg
%else
%bcond_with ffmpeg
%endif
%endif
Name: chromaprint
Version: 1.5.1
Release: 9%{?with_bootstrap:_bootstrap}%{?dist}
Release: 10%{?dist}
Summary: Library implementing the AcoustID fingerprinting
License: GPLv2+
@ -113,6 +107,10 @@ rm -f %{buildroot}%{_libdir}/lib*.la
%endif
%changelog
* Sat Mar 25 2023 Neal Gompa <ngompa@fedoraproject.org> - 1.5.1-10
- Switch off bootstrap mode
- Simplify bootstrap mode logic
* Tue Mar 14 2023 Sérgio Basto <sergio@serjux.com> - 1.5.1-9_bootstrap
- Add a bootstrap package as suggests in
https://github.com/acoustid/chromaprint/issues/129#issuecomment-1468612507