From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 85A61158090 for ; Fri, 6 May 2022 06:21:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BE571E0896; Fri, 6 May 2022 06:21:54 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A1049E0896 for ; Fri, 6 May 2022 06:21:54 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 947FA341477 for ; Fri, 6 May 2022 06:21:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D8BA7287 for ; Fri, 6 May 2022 06:21:51 +0000 (UTC) From: "Miroslav Šulc" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Miroslav Šulc" Message-ID: <1651818104.2038703a878d7761237905499c60adbbf40f00c2.fordfrog@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/chromaprint/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/chromaprint/chromaprint-1.5.1.ebuild X-VCS-Directories: media-libs/chromaprint/ X-VCS-Committer: fordfrog X-VCS-Committer-Name: Miroslav Šulc X-VCS-Revision: 2038703a878d7761237905499c60adbbf40f00c2 X-VCS-Branch: master Date: Fri, 6 May 2022 06:21:51 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: a7cfe49a-9a3e-4063-8544-402d730680d1 X-Archives-Hash: 9e7dfea0a4c6a11b7bf4bee8b0e013be commit: 2038703a878d7761237905499c60adbbf40f00c2 Author: Miroslav Šulc gentoo org> AuthorDate: Fri May 6 06:21:44 2022 +0000 Commit: Miroslav Šulc gentoo org> CommitDate: Fri May 6 06:21:44 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2038703a media-libs/chromaprint: dropped obsolete 1.5.1 Bug: https://bugs.gentoo.org/842690 Signed-off-by: Miroslav Šulc gentoo.org> media-libs/chromaprint/chromaprint-1.5.1.ebuild | 44 ------------------------- 1 file changed, 44 deletions(-) diff --git a/media-libs/chromaprint/chromaprint-1.5.1.ebuild b/media-libs/chromaprint/chromaprint-1.5.1.ebuild deleted file mode 100644 index 77fd5792ba01..000000000000 --- a/media-libs/chromaprint/chromaprint-1.5.1.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -CMAKE_ECLASS=cmake -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 ppc ppc64 ~riscv sparc x86" -IUSE="test tools" -RESTRICT="!test? ( test )" - -# note: use ffmpeg instead of fftw because it's recommended and required for tools -RDEPEND="media-video/ffmpeg:0=[${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_TOOLS=$(multilib_native_usex tools ON OFF) - -DBUILD_TESTS=$(usex test ON OFF) - -DFFT_LIB=avfft - -DAUDIO_PROCESSOR_LIB="swresample" - ) - cmake_src_configure -} - -multilib_src_test() { - cd tests && (./all_tests || die "Tests failed") -}