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/lilv/
Date: Fri, 08 Jan 2021 13:05:10
Message-Id: 1610111100.c40f05f3eeea8d72f41629b2fd26482d765518fe.fordfrog@gentoo
1 commit: c40f05f3eeea8d72f41629b2fd26482d765518fe
2 Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 8 13:04:43 2021 +0000
4 Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 8 13:05:00 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c40f05f3
7
8 media-libs/lilv: removed obsolete 0.24.10
9
10 Package-Manager: Portage-3.0.12, Repoman-3.0.2
11 Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
12
13 media-libs/lilv/lilv-0.24.10.ebuild | 72 -------------------------------------
14 1 file changed, 72 deletions(-)
15
16 diff --git a/media-libs/lilv/lilv-0.24.10.ebuild b/media-libs/lilv/lilv-0.24.10.ebuild
17 deleted file mode 100644
18 index 24f31b85a9e..00000000000
19 --- a/media-libs/lilv/lilv-0.24.10.ebuild
20 +++ /dev/null
21 @@ -1,72 +0,0 @@
22 -# Copyright 1999-2020 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=6
26 -
27 -PYTHON_COMPAT=( python3_{6,7,8} )
28 -PYTHON_REQ_USE='threads(+)'
29 -
30 -inherit python-any-r1 waf-utils bash-completion-r1 multilib-build multilib-minimal
31 -
32 -DESCRIPTION="Library to make the use of LV2 plugins as simple as possible for applications"
33 -HOMEPAGE="http://drobilla.net/software/lilv/"
34 -SRC_URI="http://download.drobilla.net/${P}.tar.bz2"
35 -
36 -LICENSE="ISC"
37 -SLOT="0"
38 -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~sparc x86"
39 -IUSE="doc +dyn-manifest static-libs test"
40 -RESTRICT="!test? ( test )"
41 -
42 -RDEPEND="
43 - dev-libs/serd[${MULTILIB_USEDEP}]
44 - dev-libs/sord[${MULTILIB_USEDEP}]
45 - media-libs/libsndfile
46 - media-libs/lv2[${MULTILIB_USEDEP}]
47 - media-libs/sratom[${MULTILIB_USEDEP}]
48 -"
49 -DEPEND="
50 - ${RDEPEND}
51 - ${PYTHON_DEPS}
52 - virtual/pkgconfig
53 - doc? ( app-doc/doxygen )
54 - test? ( dev-python/unittest2 )
55 -"
56 -
57 -src_prepare() {
58 - default
59 - sed -i -e 's/^.*run_ldconfig/#\0/' wscript || die
60 - multilib_copy_sources
61 -}
62 -
63 -multilib_src_configure() {
64 - waf-utils_src_configure \
65 - --docdir="${EPREFIX}"/usr/share/doc/${PF} \
66 - --no-bash-completion \
67 - $(multilib_native_usex doc --docs "") \
68 - $(usex test --test "") \
69 - $(usex static-libs --static "") \
70 - $(usex dyn-manifest --dyn-manifest "")
71 -}
72 -
73 -multilib_src_compile() {
74 - ./waf build || die
75 -}
76 -
77 -multilib_src_test() {
78 - ./waf test || die
79 -}
80 -
81 -multilib_src_install() {
82 - waf-utils_src_install
83 -}
84 -
85 -multilib_src_install_all() {
86 - sed -i "/lv2jack/d" utils/lilv.bash_completion
87 - newbashcomp utils/lilv.bash_completion lv2info
88 -
89 - dodir /etc/env.d
90 - echo "LV2_PATH=${EPREFIX}/usr/$(get_libdir)/lv2" > "${ED}/etc/env.d/60lv2"
91 -
92 - python_optimize
93 -}