public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Miroslav Šulc" <fordfrog@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/ladspa-sdk/, media-libs/ladspa-sdk/files/
Date: Wed, 27 Oct 2021 06:44:23 +0000 (UTC)	[thread overview]
Message-ID: <1635317061.1873a860173edad6bb461ea6a175c0b90620c344.fordfrog@gentoo> (raw)

commit:     1873a860173edad6bb461ea6a175c0b90620c344
Author:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
AuthorDate: Wed Oct 27 06:44:14 2021 +0000
Commit:     Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
CommitDate: Wed Oct 27 06:44:21 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1873a860

media-libs/ladspa-sdk: removed obsolete 1.15-r1

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>

 media-libs/ladspa-sdk/Manifest                     |   1 -
 .../files/ladspa-sdk-1.15-properbuild.patch        | 118 ---------------------
 media-libs/ladspa-sdk/ladspa-sdk-1.15-r1.ebuild    |  64 -----------
 3 files changed, 183 deletions(-)

diff --git a/media-libs/ladspa-sdk/Manifest b/media-libs/ladspa-sdk/Manifest
index 94d76bad5d7..35f7514ef12 100644
--- a/media-libs/ladspa-sdk/Manifest
+++ b/media-libs/ladspa-sdk/Manifest
@@ -1,2 +1 @@
-DIST ladspa_sdk_1.15.tgz 71179 BLAKE2B 7a201fd968433241fda190874d51b835f425c8f35270dc8fac9acf4e9e1546fa20d48f85e894b9eb263dd5d84c2b407481d168e18256dfe2cdd026fe0c805a65 SHA512 a521622e23d988284244003e4ccfc3b42f6ddc7944cb00e7949b87e09d7f39a0cbb64b6d8b5a5af0a5ccf7179f88815416a88f02d3912957167e54b74accfc65
 DIST ladspa_sdk_1.17.tgz 71052 BLAKE2B cfb80e8ced314d5cc62fcb7f0b82e58f572503f2a732b2bb8a58343e8f69e417c0b0a2919bbb40629567fb331bf60a7f0c6f186db47e5b2651725b039526cdbb SHA512 37f94aa52b5a2f8709528989dea289eb01342f3bcb9e85d0f4829ddd9d90b2934a113db11100f09375a50f6612122b78156fec916f2c78a22406253d5cb394c7

diff --git a/media-libs/ladspa-sdk/files/ladspa-sdk-1.15-properbuild.patch b/media-libs/ladspa-sdk/files/ladspa-sdk-1.15-properbuild.patch
deleted file mode 100644
index 709ec7c8456..00000000000
--- a/media-libs/ladspa-sdk/files/ladspa-sdk-1.15-properbuild.patch
+++ /dev/null
@@ -1,118 +0,0 @@
-diff --git a/src/Makefile b/src/Makefile
-index c339524..2166624 100644
---- a/src/Makefile
-+++ b/src/Makefile
-@@ -13,12 +13,12 @@ INSTALL_BINARY_DIR	=	/usr/bin/
- # GENERAL
- #
- 
-+CFLAGS		=	-Wall -Werror -O3
-+CXXFLAGS	=	-Wall -Werror -O3
-+
- INCLUDES	=	-I.
--LIBRARIES	=	-ldl -lm
--CFLAGS		=	$(INCLUDES) -Wall -Werror -O2 -fPIC 		\
--			-DDEFAULT_LADSPA_PATH=$(INSTALL_PLUGINS_DIR)
--BINFLAGS	=	-fPIE -pie
--CXXFLAGS	=	$(CFLAGS)
-+DYNAMIC_LD_LIBS =	-ldl
-+LIBRARIES	=	$(DYNAMIC_LD_LIBS) -lm
- PLUGINS		=	../plugins/amp.so				\
- 			../plugins/delay.so				\
- 			../plugins/filter.so				\
-@@ -28,34 +28,25 @@ PROGRAMS	=	../bin/analyseplugin				\
- 			../bin/applyplugin 				\
- 			../bin/listplugins
- CC		=	cc
--CPP		=	c++
-+CXX		=	c++
-+MKDIR_P		=	mkdirhier
- 
- ###############################################################################
- #
- # RULES TO BUILD PLUGINS FROM C OR C++ CODE
- #
- 
-+../plugins/filter.so:	plugins/filter.c ladspa.h gcc_exports.map
-+	$(CC) $(CFLAGS) $(INCLUDES) -fPIC -o plugins/filter.o -c plugins/filter.c
-+	$(CC) $(CFLAGS) $(LDFLAGS) -o ../plugins/filter.so plugins/filter.o -nostartfiles -shared -lm
-+
- ../plugins/%.so:	plugins/%.c ladspa.h gcc_exports.map
--	$(CC) $(CFLAGS) -o plugins/$*.o -c plugins/$*.c
--	$(CC)	-o ../plugins/$*.so					\
--		plugins/$*.o						\
--		-shared							\
--		$(CFLAGS)						\
--		-fvisibility=hidden					\
--		-fvisibility-inlines-hidden				\
--		-s							\
--		-Wl,--version-script=gcc_exports.map			
-+	$(CC) $(CFLAGS) $(INCLUDES) -fPIC -o plugins/$*.o -c plugins/$*.c
-+	$(CC) $(CFLAGS) $(LDFLAGS) -o ../plugins/$*.so plugins/$*.o -nostartfiles -shared
- 
- ../plugins/%.so:	plugins/%.cpp ladspa.h gcc_exports.map
--	$(CPP) $(CXXFLAGS) -o plugins/$*.o -c plugins/$*.cpp
--	$(CPP)	-o ../plugins/$*.so					\
--		plugins/$*.o						\
--		-shared							\
--		$(CXXFLAGS)						\
--		-fvisibility=hidden					\
--		-fvisibility-inlines-hidden				\
--		-s							\
--		-Wl,--version-script=gcc_exports.map			
-+	$(CXX) $(CXXFLAGS) $(INCLUDES) -fPIC -o plugins/$*.o -c plugins/$*.cpp
-+	$(CXX) $(LDFLAGS) -o ../plugins/$*.so plugins/$*.o -shared
- 
- ###############################################################################
- #
-@@ -66,7 +57,7 @@ test:	/tmp/test.wav ../snd/noise.wav always
- 	@echo ---------------------------------------------
- 	@echo First listen to the white noise input signal:
- 	@echo ---------------------------------------------
--	-sndfile-play ../snd/noise.wav
-+	@echo -sndfile-play ../snd/noise.wav
- 	@echo -------------------------
- 	@echo Compare to plugin output.
- 	@echo -------------------------
-@@ -75,12 +66,12 @@ test:	/tmp/test.wav ../snd/noise.wav always
- 	@echo Test complete.
- 
- install:	targets
--	-mkdir -p $(INSTALL_PLUGINS_DIR)
--	-mkdir -p $(INSTALL_INCLUDE_DIR)
--	-mkdir -p $(INSTALL_BINARY_DIR)
--	cp ../plugins/* $(INSTALL_PLUGINS_DIR)
--	cp ladspa.h $(INSTALL_INCLUDE_DIR)
--	cp ../bin/* $(INSTALL_BINARY_DIR)
-+	-$(MKDIR_P) $(DESTDIR)$(INSTALL_PLUGINS_DIR)
-+	-$(MKDIR_P) $(DESTDIR)$(INSTALL_INCLUDE_DIR)
-+	-$(MKDIR_P) $(DESTDIR)$(INSTALL_BINARY_DIR)
-+	cp ../plugins/* $(DESTDIR)$(INSTALL_PLUGINS_DIR)
-+	cp ladspa.h $(DESTDIR)$(INSTALL_INCLUDE_DIR)
-+	cp ../bin/* $(DESTDIR)$(INSTALL_BINARY_DIR)
- 
- /tmp/test.wav:	targets ../snd/noise.wav
- 	../bin/listplugins
-@@ -106,19 +97,19 @@ targets:	$(PLUGINS) $(PROGRAMS)
- #
- 
- ../bin/applyplugin:	applyplugin.o load.o default.o
--	$(CC) $(CFLAGS) $(BINFLAGS)					\
-+	$(CC) $(CFLAGS) $(INCLUDES) $(LDFLAGS)					\
- 		-o ../bin/applyplugin					\
- 		applyplugin.o load.o default.o				\
- 		$(LIBRARIES)
- 
- ../bin/analyseplugin:	analyseplugin.o load.o default.o
--	$(CC) $(CFLAGS) $(BINFLAGS)					\
-+	$(CC) $(CFLAGS) $(INCLUDES) $(LDFLAGS)					\
- 		-o ../bin/analyseplugin 				\
- 		analyseplugin.o load.o default.o			\
- 		$(LIBRARIES)
- 
- ../bin/listplugins:	listplugins.o search.o
--	$(CC) $(CFLAGS) $(BINFLAGS)					\
-+	$(CC) $(CFLAGS) $(INCLUDES) $(LDFLAGS)					\
- 		-o ../bin/listplugins	 				\
- 		listplugins.o search.o					\
- 		$(LIBRARIES)

diff --git a/media-libs/ladspa-sdk/ladspa-sdk-1.15-r1.ebuild b/media-libs/ladspa-sdk/ladspa-sdk-1.15-r1.ebuild
deleted file mode 100644
index afdb5ca22d9..00000000000
--- a/media-libs/ladspa-sdk/ladspa-sdk-1.15-r1.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit multilib toolchain-funcs portability flag-o-matic 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 ppc ppc64 ~riscv sparc x86"
-IUSE=""
-
-RDEPEND=""
-DEPEND=">=sys-apps/sed-4"
-
-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"
-}


             reply	other threads:[~2021-10-27  6:44 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-10-27  6:44 Miroslav Šulc [this message]
  -- strict thread matches above, loose matches on Subject: below --
2021-09-21  6:17 [gentoo-commits] repo/gentoo:master commit in: media-libs/ladspa-sdk/, media-libs/ladspa-sdk/files/ Miroslav Šulc
2020-09-08  6:59 Miroslav Šulc

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1635317061.1873a860173edad6bb461ea6a175c0b90620c344.fordfrog@gentoo \
    --to=fordfrog@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox