media-plugins/caps-plugins: removed obsolete 0.9.24

Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
This commit is contained in:
Miroslav Šulc
2020-10-09 14:27:02 +02:00
parent 2f5cc4e65f
commit fc6e2aa294
4 changed files with 0 additions and 117 deletions

View File

@@ -1,2 +1 @@
DIST caps_0.9.24.tar.bz2 181200 BLAKE2B a26ffd543696de11d1a21d4049944df64540cfe01c138e06815c84dc01e5541ad02c7d1ead1bf46a6296ad450acbe6ba30a8083850afcd697c05cf0f05ac4d3c SHA512 051d59c50302e45cec011a573385665e96b3bb0b6f0328e6b1e4f8fa26515d5cb4c2cc8230ea5bd242b1b8f62c86545997da2ab995e953a89d8de715807fc20d
DIST caps_0.9.26.tar.bz2 182334 BLAKE2B 3ab75dc1ab6c5ecebe7c4983f5eb8e540396f7bacba147e1f2877c4e3e699c62d1f6af36af16eb9feac537acd9946eec40c3c90de59f6e740f6ce04c8bc0fa71 SHA512 ce9a7219ef0c6c33a5debb407e9b6ea7432c3f50ab32c1915cf91c40cda541a812da887bf57ee536d653195158939889c4baf5fcbe3ded551abc676517e1da7a

View File

@@ -1,51 +0,0 @@
# Copyright 1999-2018 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit toolchain-funcs multilib-minimal
MY_P=caps-${PV}
DESCRIPTION="The CAPS Audio Plugin Suite - LADSPA plugin suite"
HOMEPAGE="http://quitte.de/dsp/caps.html"
SRC_URI="http://quitte.de/dsp/caps_${PV}.tar.bz2"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
DEPEND="media-libs/ladspa-sdk"
RDEPEND=""
S="${WORKDIR}/${MY_P}"
PATCHES=(
"${FILESDIR}/${PN}-0.9.15-fix-c++14.patch"
"${FILESDIR}/${P}-glibc-2.27.patch" # bug 647874
)
src_prepare() {
default
multilib_copy_sources
}
multilib_src_compile() {
emake \
ARCH="" \
CC="$(tc-getCXX)" \
CFLAGS="${CXXFLAGS} -fPIC -DPIC" \
_LDFLAGS="-shared ${LDFLAGS}"
}
multilib_src_install() {
insinto /usr/$(get_libdir)/ladspa
insopts -m0755
doins *.so
}
multilib_src_install_all() {
insinto /usr/share/ladspa/rdf
insopts -m0644
doins *.rdf
}

View File

@@ -1,23 +0,0 @@
From: Felipe Sateler <fsateler@debian.org>
Date: Fri, 1 Jul 2016 19:06:31 -0400
Subject: Avoid ambiguity in div invocation
Be specific and use int version.
Fixes build failure with gcc >= 6
---
AutoFilter.cc | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/AutoFilter.cc b/AutoFilter.cc
index fc087d0..bd6b12f 100644
--- a/AutoFilter.cc
+++ b/AutoFilter.cc
@@ -69,7 +69,7 @@ AutoFilter::activate()
void
AutoFilter::cycle (uint frames)
{
- div_t qr = div (frames, blocksize);
+ div_t qr = div ((int)frames, (int)blocksize);
int blocks = qr.quot;
if (qr.rem) ++blocks;
double over_blocks = 1./blocks;

View File

@@ -1,42 +0,0 @@
From: Aurelien Jarno <aurel32@debian.org>
Date: Tue, 20 Mar 2018 18:29:34 -0300
Subject: Use standard exp10f instead of pow10f
Starting with glibc 2.27, the latter is no longer supported
Bug-Debian: https://bugs.debian.org/890633
---
dsp/v4f_IIR2.h | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/dsp/v4f_IIR2.h b/dsp/v4f_IIR2.h
index a68ecf5..9682f7b 100644
--- a/dsp/v4f_IIR2.h
+++ b/dsp/v4f_IIR2.h
@@ -33,7 +33,7 @@
namespace DSP {
#ifdef __APPLE__
-inline float pow10f(float f) {return pow(10,f);}
+inline float exp10f(float f) {return pow(10,f);}
#endif
class RBJv4
@@ -142,7 +142,7 @@ class IIR2v4
/* A = pow (10, gain / 40) */
v4f_t A = (v4f_t) {.025,.025,.025,.025};
A *= gain;
- A = v4f_map<pow10f> (A);
+ A = v4f_map<exp10f> (A);
RBJv4 p (f, Q);
@@ -429,7 +429,7 @@ class IIR2v4Bank
/* A = pow (10, gain / 40) */
v4f_t A = (v4f_t) {.025,.025,.025,.025};
A *= gain[i];
- A = v4f_map<pow10f> (A);
+ A = v4f_map<exp10f> (A);
RBJv4 p (f[i], Q[i]);