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 94460158090 for ; Sat, 28 May 2022 15:51:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C8CAFE0769; Sat, 28 May 2022 15:51:49 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 962BBE0769 for ; Sat, 28 May 2022 15:51:49 +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 6DD3A34161D for ; Sat, 28 May 2022 15:51:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8DFB7326 for ; Sat, 28 May 2022 15:51:46 +0000 (UTC) From: "Sebastian Pipping" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sebastian Pipping" Message-ID: <1653753023.115d217d14dd98783c3c6131708955c06e12f63b.sping@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-plugins/ladspa-bs2b/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-plugins/ladspa-bs2b/ladspa-bs2b-0.9.1-r2.ebuild X-VCS-Directories: media-plugins/ladspa-bs2b/ X-VCS-Committer: sping X-VCS-Committer-Name: Sebastian Pipping X-VCS-Revision: 115d217d14dd98783c3c6131708955c06e12f63b X-VCS-Branch: master Date: Sat, 28 May 2022 15:51:46 +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: 06ff4039-39c0-4f03-ad10-124d4601dc30 X-Archives-Hash: 1ad953ed7cadf328f54ba4fa3eef4646 commit: 115d217d14dd98783c3c6131708955c06e12f63b Author: Sebastian Pipping gentoo org> AuthorDate: Sat May 28 15:50:23 2022 +0000 Commit: Sebastian Pipping gentoo org> CommitDate: Sat May 28 15:50:23 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=115d217d media-plugins/ladspa-bs2b: Address .la files + EAPI 8 Closes: https://bugs.gentoo.org/847646 Signed-off-by: Sebastian Pipping gentoo.org> Package-Manager: Portage-3.0.30, Repoman-3.0.3 .../ladspa-bs2b/ladspa-bs2b-0.9.1-r2.ebuild | 23 ++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/media-plugins/ladspa-bs2b/ladspa-bs2b-0.9.1-r2.ebuild b/media-plugins/ladspa-bs2b/ladspa-bs2b-0.9.1-r2.ebuild new file mode 100644 index 000000000000..335c9aee6c76 --- /dev/null +++ b/media-plugins/ladspa-bs2b/ladspa-bs2b-0.9.1-r2.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="8" + +DESCRIPTION="LADSPA plugin for bs2b headphone filter" +HOMEPAGE="http://bs2b.sourceforge.net/" +SRC_URI="mirror://sourceforge/bs2b/plugins/LADSPA%20plugin/${PV}/${P}.tar.bz2" + +LICENSE="|| ( GPL-2 GPL-3 )" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="media-libs/ladspa-sdk + >=media-libs/libbs2b-3.1.0" + +RDEPEND="${DEPEND}" + +src_install() { + default + find "${D}" -name '*.la' -delete || die +}