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 E19AC15800A for ; Sun, 27 Aug 2023 06:37:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2CE0A2BC0AC; Sun, 27 Aug 2023 06:37:17 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 38B9D2BC0AC for ; Sun, 27 Aug 2023 06:37:16 +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 89BD4335C7D for ; Sun, 27 Aug 2023 06:37:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CA41A10B2 for ; Sun, 27 Aug 2023 06:37:12 +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: <1693118219.905468fbd0fe46162687b664a37edce31e236bd4.fordfrog@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/ladspa-sdk/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/ladspa-sdk/ladspa-sdk-1.17-r1.ebuild X-VCS-Directories: media-libs/ladspa-sdk/ X-VCS-Committer: fordfrog X-VCS-Committer-Name: Miroslav Šulc X-VCS-Revision: 905468fbd0fe46162687b664a37edce31e236bd4 X-VCS-Branch: master Date: Sun, 27 Aug 2023 06:37:12 +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: ff533fb8-3dce-4568-93e7-7e5c8cd5905a X-Archives-Hash: cac4f5671e0ef569912772ce24870e77 commit: 905468fbd0fe46162687b664a37edce31e236bd4 Author: Miroslav Šulc gentoo org> AuthorDate: Sun Aug 27 06:36:59 2023 +0000 Commit: Miroslav Šulc gentoo org> CommitDate: Sun Aug 27 06:36:59 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=905468fb media-libs/ladspa-sdk: dropped obsolete 1.17-r1 Bug: https://bugs.gentoo.org/913042 Signed-off-by: Miroslav Šulc gentoo.org> media-libs/ladspa-sdk/ladspa-sdk-1.17-r1.ebuild | 64 ------------------------- 1 file changed, 64 deletions(-) diff --git a/media-libs/ladspa-sdk/ladspa-sdk-1.17-r1.ebuild b/media-libs/ladspa-sdk/ladspa-sdk-1.17-r1.ebuild deleted file mode 100644 index e2f8e23dd7fa..000000000000 --- a/media-libs/ladspa-sdk/ladspa-sdk-1.17-r1.ebuild +++ /dev/null @@ -1,64 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit toolchain-funcs portability multilib-minimal - -MY_PN=${PN/-/_} -MY_P=${MY_PN}_${PV} - -DESCRIPTION="The Linux Audio Developer's Simple Plugin API" -HOMEPAGE="https://www.ladspa.org/" -SRC_URI="https://www.ladspa.org/download/${MY_P}.tgz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ppc ppc64 ~riscv sparc x86" -IUSE="" - -RDEPEND="media-libs/libsndfile[${MULTILIB_USEDEP}]" -DEPEND="${RDEPEND}" - -S="${WORKDIR}/${MY_P}" - -PATCHES=( - "${FILESDIR}/${P}-properbuild.patch" -) - -HTML_DOCS="doc/*.html" - -src_prepare() { - default - - multilib_copy_sources -} - -multilib_src_compile() { - cd src - emake CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" \ - DYNAMIC_LD_LIBS="$(dlopen_lib)" \ - CC="$(tc-getCC)" CXX="$(tc-getCXX)" \ - targets -} - -multilib_src_test() { - cd src - emake test -} - -multilib_src_install() { - cd src - emake INSTALL_PLUGINS_DIR="/usr/$(get_libdir)/ladspa" \ - DESTDIR="${ED}" \ - MKDIR_P="mkdir -p" \ - install -} - -multilib_src_install_all() { - einstalldocs - - # Needed for apps like rezound - dodir /etc/env.d - echo "LADSPA_PATH=${EPREFIX}/usr/$(get_libdir)/ladspa" > "${ED}/etc/env.d/60ladspa" -}