Gentoo Archives: gentoo-commits

From: "Miroslav Šulc" <fordfrog@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/liblrdf/
Date: Sat, 28 Aug 2021 06:01:33
Message-Id: 1630130478.20b2ec2d78fa047b36d71bd4b118e0c50b6daf57.fordfrog@gentoo
1 commit: 20b2ec2d78fa047b36d71bd4b118e0c50b6daf57
2 Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
3 AuthorDate: Sat Aug 28 06:01:18 2021 +0000
4 Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
5 CommitDate: Sat Aug 28 06:01:18 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20b2ec2d
7
8 media-libs/liblrdf: removed obsolete 0.6.1
9
10 Package-Manager: Portage-3.0.22, Repoman-3.0.3
11 Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
12
13 media-libs/liblrdf/liblrdf-0.6.1.ebuild | 45 ---------------------------------
14 1 file changed, 45 deletions(-)
15
16 diff --git a/media-libs/liblrdf/liblrdf-0.6.1.ebuild b/media-libs/liblrdf/liblrdf-0.6.1.ebuild
17 deleted file mode 100644
18 index 33e94d1cda1..00000000000
19 --- a/media-libs/liblrdf/liblrdf-0.6.1.ebuild
20 +++ /dev/null
21 @@ -1,45 +0,0 @@
22 -# Copyright 1999-2018 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=7
26 -
27 -inherit autotools
28 -
29 -DESCRIPTION="Library for manipulation of RDF files in LADSPA plugins"
30 -HOMEPAGE="https://github.com/swh/LRDF"
31 -SRC_URI="https://github.com/swh/LRDF/archive/v${PV}.tar.gz -> ${P}.tar.gz"
32 -
33 -LICENSE="GPL-2"
34 -SLOT="0"
35 -KEYWORDS="amd64 ~hppa ppc ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos"
36 -IUSE="static-libs"
37 -
38 -RDEPEND="
39 - media-libs/ladspa-sdk
40 - media-libs/raptor:2
41 -"
42 -DEPEND="${RDEPEND}
43 - virtual/pkgconfig"
44 -
45 -DOCS=( AUTHORS ChangeLog README )
46 -
47 -S="${WORKDIR}/LRDF-${PV}"
48 -
49 -src_prepare() {
50 - default
51 - sed -i -e 's:usr/local:usr:' examples/{instances,remove}_test.c || die #392221
52 - eautoreconf
53 -}
54 -
55 -src_configure() {
56 - econf $(use_enable static-libs static)
57 -}
58 -
59 -src_test() {
60 - has_version media-plugins/swh-plugins && default #392221
61 -}
62 -
63 -src_install() {
64 - default
65 - find "${D}" -name '*.la' -delete || die
66 -}