diff --git a/.gitignore b/.gitignore index e69de29..dcc4f6a 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1,7 @@ +/chromaprint-0.5.tar.gz +/chromaprint-0.6.tar.gz +/chromaprint-0.7.tar.gz +/chromaprint-1.0.tar.gz +/chromaprint-1.1.tar.gz +/chromaprint-1.2.tar.gz +/chromaprint-1.4.2.tar.gz diff --git a/chromaprint.spec b/chromaprint.spec new file mode 100644 index 0000000..f450f0f --- /dev/null +++ b/chromaprint.spec @@ -0,0 +1,182 @@ +Name: chromaprint +Version: 1.4.2 +Release: 6%{?dist} +Summary: Library implementing the AcoustID fingerprinting + +License: GPLv2+ +URL: http://www.acoustid.org/chromaprint +Source: https://github.com/acoustid/%{name}/releases/download/v%{version}/%{name}-%{version}.tar.gz + +BuildRequires: gcc +BuildRequires: gcc-c++ +BuildRequires: cmake +BuildRequires: fftw-devel >= 3 + +%description +Chromaprint library is the core component of the AcoustID project. It's a +client-side library that implements a custom algorithm for extracting +fingerprints from raw audio sources. + +The library exposes a simple C API. The documentation for the C API can be +found in the main header file. + +License for binaries is GPLv2+ but source code is MIT + LGPLv2+ + + +%package -n libchromaprint +Summary: Library implementing the AcoustID fingerprinting +Obsoletes: python-chromaprint < 0.6-3 + +%description -n libchromaprint +Chromaprint library is the core component of the AcoustID project. It's a +client-side library that implements a custom algorithm for extracting +fingerprints from raw audio sources. + +The library exposes a simple C API. The documentation for the C API can be +found in the main header file. + +License for binaries is GPLv2+ but source code is MIT + LGPLv2+ + +%package -n libchromaprint-devel +Summary: Headers for developing programs that will use %{name} +Requires: libchromaprint%{?_isa} = %{version}-%{release} + +%description -n libchromaprint-devel +This package contains the headers that programmers will need to develop +applications which will use %{name}. + +The library exposes a simple C API. The documentation for the C API can be +found in the main header file. + + +%prep +%setup -q + +# examples and cli tools equire ffmpeg, so turn off; test depend of external artifact so turn off. +%{cmake} -DBUILD_EXAMPLES=OFF -DBUILD_TESTS=OFF -DCMAKE_BUILD_TYPE=Release -DBUILD_TOOLS=OFF . + + +%build +make %{?_smp_mflags} + + +%install +make install DESTDIR=%{buildroot} +rm -f %{buildroot}%{_libdir}/lib*.la + + +%ldconfig_scriptlets -n libchromaprint + +%files -n libchromaprint +%doc NEWS.txt README.md +%license LICENSE.md + +%{_libdir}/lib*.so.* + +%files -n libchromaprint-devel +%{_includedir}/chromaprint.h +%{_libdir}/lib*.so +%{_libdir}/pkgconfig/*.pc + +%changelog +* Wed Jul 24 2019 Fedora Release Engineering - 1.4.2-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Thu Jan 31 2019 Fedora Release Engineering - 1.4.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Wed Jan 23 2019 Björn Esser - 1.4.2-4 +- Append curdir to CMake invokation. (#1668512) + +* Thu Jul 12 2018 Fedora Release Engineering - 1.4.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Wed Feb 07 2018 Fedora Release Engineering - 1.4.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Thu Jan 04 2018 smael Olea - 1.4.2 +- upstream URL changed to github +- updating to 1.4.2 +- renamed COPYING.txt LICENSE.md +- binary licenses should be GPLv2+ because linking with fftw (which uses GPLv2+) + +* Wed Aug 02 2017 Fedora Release Engineering - 1.2-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + +* Wed Jul 26 2017 Fedora Release Engineering - 1.2-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Mon May 15 2017 Fedora Release Engineering - 1.2-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_27_Mass_Rebuild + +* Fri Feb 10 2017 Fedora Release Engineering - 1.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Wed Feb 03 2016 Fedora Release Engineering - 1.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Wed Jun 17 2015 Fedora Release Engineering - 1.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Sat May 02 2015 Kalev Lember - 1.2-2 +- Rebuilt for GCC 5 C++11 ABI change + +* Tue Mar 17 2015 Ismael Olea - 1.2-1 +- update to 1.2 + +* Sat Aug 16 2014 Fedora Release Engineering - 1.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + +* Sat Jun 07 2014 Fedora Release Engineering - 1.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Sat Nov 23 2013 Ismael Olea - 1.1-1 +- update to 1.1 +- CHANGES.txt file removed in upstream + +* Mon Sep 16 2013 Ismael Olea - 1.0-1 +- update to 1.0 + +* Sat Aug 03 2013 Fedora Release Engineering - 0.7-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + +* Wed Feb 13 2013 Fedora Release Engineering - 0.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Thu Sep 6 2012 Ismael Olea - 0.7-1 +- update to 0.7 + +* Wed Jul 18 2012 Fedora Release Engineering - 0.6-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Tue Feb 7 2012 Ismael Olea - 0.6-4 +- moved the obsoletes python-chromaprint to libchromaprint + +* Mon Feb 6 2012 Ismael Olea - 0.6-3 +- cosmetic SPEC changes +- obsoleting python-chromaprint (see #786946) + +* Thu Jan 12 2012 Fedora Release Engineering - 0.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Tue Dec 27 2011 Ismael Olea - 0.6-1 +- update to 0.6 +- python bindings removed +- python not a requirment now + +* Wed Dec 07 2011 Ismael Olea - 0.5-4 +- minor spec enhancements + +* Mon Dec 05 2011 Ismael Olea - 0.5-3 +- Macro cleaning at spec + +* Fri Nov 18 2011 Ismael Olea - 0.5-2 +- first version for Fedora + +* Thu Nov 10 2011 Ismael Olea - 0.5-1 +- update to 0.5 +- subpackage for fpcalc + +* Sat Aug 06 2011 Thomas Vander Stichele +- 0.4-1 +- Initial package diff --git a/sources b/sources index e69de29..003ad92 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +SHA512 (chromaprint-1.4.2.tar.gz) = 69449adf1c95c1395a5545d36877afe95b409d045357cc675e9ac58aee2955b3a9a245f37805192804a9b7fddc792b9e9289bf6448fa3393131048d28e06d7e2