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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id ADBE4158042 for ; Sun, 10 Nov 2024 09:31:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 61EB6E092C; Sun, 10 Nov 2024 09:31:03 +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 46140E092C for ; Sun, 10 Nov 2024 09:31:03 +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 1AD2E34027D for ; Sun, 10 Nov 2024 09:31:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2BE3E18DD for ; Sun, 10 Nov 2024 09:31:00 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1731231044.4d283d31408709330806ccc6c932f59e683d347e.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/soxr/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/soxr/soxr-0.1.3-r1.ebuild X-VCS-Directories: media-libs/soxr/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 4d283d31408709330806ccc6c932f59e683d347e X-VCS-Branch: master Date: Sun, 10 Nov 2024 09:31:00 +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: f8e9a090-2b95-4e8e-87ca-cd484ca3dc83 X-Archives-Hash: ced58109abad45bfbe3f5e2a2a517fa0 commit: 4d283d31408709330806ccc6c932f59e683d347e Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat Nov 9 19:51:28 2024 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Nov 10 09:30:44 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d283d31 media-libs/soxr: drop 0.1.3-r1 Signed-off-by: Andreas Sturmlechner gentoo.org> media-libs/soxr/soxr-0.1.3-r1.ebuild | 47 ------------------------------------ 1 file changed, 47 deletions(-) diff --git a/media-libs/soxr/soxr-0.1.3-r1.ebuild b/media-libs/soxr/soxr-0.1.3-r1.ebuild deleted file mode 100644 index ec602f3abda1..000000000000 --- a/media-libs/soxr/soxr-0.1.3-r1.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake-multilib - -MY_P="${P}-Source" -DESCRIPTION="SoX Resampler library" -HOMEPAGE="https://sourceforge.net/p/soxr/wiki/Home/" -SRC_URI="https://downloads.sourceforge.net/soxr/${MY_P}.tar.xz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv sparc x86" -IUSE="examples test" - -# CMakeLists.txt builds examples if either test or examples USE flag is enabled. -REQUIRED_USE="test? ( examples )" -RESTRICT="!test? ( test )" - -S="${WORKDIR}/${MY_P}" - -PATCHES=( - "${FILESDIR}/${PN}-0.1.1-nodoc.patch" - "${FILESDIR}/${P}-fix-pkgconfig.patch" -) - -src_configure() { - local mycmakeargs=( - -DBUILD_EXAMPLES="$(usex examples)" - -DBUILD_TESTS="$(usex test)" - ) - if use examples ; then - mycmakeargs+=( - -DDOC_INSTALL_DIR="/usr/share/doc/${PF}" - ) - fi - cmake-multilib_src_configure -} - -src_install() { - cmake-multilib_src_install - if use examples ; then - docompress -x /usr/share/doc/${PF}/examples - fi -}