diff options
author | Miroslav Šulc <fordfrog@gentoo.org> | 2024-01-20 09:01:48 +0100 |
---|---|---|
committer | Miroslav Šulc <fordfrog@gentoo.org> | 2024-01-20 09:01:48 +0100 |
commit | 84115c65399dc1a10f40f1b6a68cb28b9e88b07e (patch) | |
tree | 2dbd220ca0669edbf08e48a987f3c0b833f5e50f /media-libs/chromaprint | |
parent | dev-python/pydantic: Bump to 2.6.0_beta1 (diff) | |
download | gentoo-84115c65399dc1a10f40f1b6a68cb28b9e88b07e.tar.gz gentoo-84115c65399dc1a10f40f1b6a68cb28b9e88b07e.tar.bz2 gentoo-84115c65399dc1a10f40f1b6a68cb28b9e88b07e.zip |
media-libs/chromaprint: dropped obsolete 1.5.1-r2
Bug: https://bugs.gentoo.org/910313
Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
Diffstat (limited to 'media-libs/chromaprint')
-rw-r--r-- | media-libs/chromaprint/chromaprint-1.5.1-r2.ebuild | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/media-libs/chromaprint/chromaprint-1.5.1-r2.ebuild b/media-libs/chromaprint/chromaprint-1.5.1-r2.ebuild deleted file mode 100644 index 4dadc4a70ab4..000000000000 --- a/media-libs/chromaprint/chromaprint-1.5.1-r2.ebuild +++ /dev/null @@ -1,53 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -GTEST_VERSION="1.10.0" -GTEST_DIR_VERSION="1.10.x" -inherit cmake-multilib - -DESCRIPTION="Library implementing a custom algorithm for extracting audio fingerprints" -HOMEPAGE="https://acoustid.org/chromaprint" -SRC_URI="https://github.com/acoustid/${PN}/releases/download/v${PV}/${P}.tar.gz - test? ( https://github.com/google/googletest/archive/v$(ver_cut 1-2 ${GTEST_VERSION}).x.tar.gz -> gtest-${GTEST_VERSION}.tar.gz ) -" - -LICENSE="LGPL-2.1" -SLOT="0/1" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86" -IUSE="test tools" -RESTRICT="!test? ( test )" - -# - Default to fftw to avoid awkward circular dependency w/ ffmpeg -# See bug #833821 for an example -# - <ffmpeg-5 dep for 1.5.1 for bug #884393, newer versions likely have -# a hard requirement on >=ffmpeg-5 -RDEPEND="tools? ( <media-video/ffmpeg-5:=[${MULTILIB_USEDEP}] ) - !tools? ( sci-libs/fftw:=[${MULTILIB_USEDEP}] )" -DEPEND="${RDEPEND} - test? ( dev-cpp/gtest[${MULTILIB_USEDEP}] )" - -DOCS=( NEWS.txt README.md ) - -multilib_src_configure() { - export GTEST_ROOT="${WORKDIR}/googletest-${GTEST_DIR_VERSION}/googletest/" - - local mycmakeargs=( - -DBUILD_TESTS=$(usex test) - - -DBUILD_TOOLS=$(multilib_native_usex tools) - -DFFT_LIB=$(usex tools 'avfft' 'fftw3') - $(multilib_native_usex tools '-DAUDIO_PROCESSOR_LIB=swresample' '') - # Automagicallyish looks for ffmpeg, but there's no point - # even doing the check unless we're building with tools - # (=> without fftw3, and with ffmpeg). - -DCMAKE_DISABLE_FIND_PACKAGE_FFmpeg=$(multilib_native_usex !tools) - ) - - cmake_src_configure -} - -multilib_src_test() { - cd tests && (./all_tests || die "Tests failed") -} |