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: Wed, 29 Jun 2022 18:15:13
Message-Id: 1656526507.749cf0ec4c4cf434ab0182a242922a62a7e9c959.fordfrog@gentoo
1 commit: 749cf0ec4c4cf434ab0182a242922a62a7e9c959
2 Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jun 29 18:13:31 2022 +0000
4 Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
5 CommitDate: Wed Jun 29 18:15:07 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=749cf0ec
7
8 media-libs/lilv: dropped obsolete 0.24.12
9
10 Bug: https://bugs.gentoo.org/854975
11 Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
12
13 media-libs/lilv/Manifest | 1 -
14 media-libs/lilv/lilv-0.24.12.ebuild | 80 -------------------------------------
15 2 files changed, 81 deletions(-)
16
17 diff --git a/media-libs/lilv/Manifest b/media-libs/lilv/Manifest
18 index 5208e7ed087b..0f6d4447404d 100644
19 --- a/media-libs/lilv/Manifest
20 +++ b/media-libs/lilv/Manifest
21 @@ -1,2 +1 @@
22 -DIST lilv-0.24.12.tar.bz2 427404 BLAKE2B 47efe553c6fc249ed0cde47a47a01e0b3496ea4dfac88849b75d9720cb3a158fa1c95959ffc1a09e606f8ba3831e79382ba08ad100ee17cf19c7f1ffa186d6e2 SHA512 ea22db4e995792b62d60d793169c792549b8fb0255c2cf7a85780dd149811921e2fae5eaea0fb83465f01b14dfa66361af3be40bf7cb3733e98655b943f4faee
23 DIST lilv-0.24.14.tar.bz2 428004 BLAKE2B bc84fe5a4bf34f88ea7f9c09cb3168186f7f0fd2f3f23b08f55100502d959fd74fe7e1c6d9307772b1983fbeedde100f75d6751e9bf92a9663aaaa115ca0770c SHA512 f266e91f3cbc325c25dd7d08bde5033091cb3072c2dcb1490e9474f562b798dbc71c45ca7d971ed4dfd6bb16f5f6725ae242a58c4486684b71350e73f1469f47
24
25 diff --git a/media-libs/lilv/lilv-0.24.12.ebuild b/media-libs/lilv/lilv-0.24.12.ebuild
26 deleted file mode 100644
27 index 987842065f05..000000000000
28 --- a/media-libs/lilv/lilv-0.24.12.ebuild
29 +++ /dev/null
30 @@ -1,80 +0,0 @@
31 -# Copyright 1999-2021 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -PYTHON_COMPAT=( python3_{8..10} )
37 -PYTHON_REQ_USE='threads(+)'
38 -
39 -inherit python-single-r1 waf-utils bash-completion-r1 multilib-build multilib-minimal
40 -
41 -DESCRIPTION="Library to make the use of LV2 plugins as simple as possible for applications"
42 -HOMEPAGE="http://drobilla.net/software/lilv/"
43 -SRC_URI="http://download.drobilla.net/${P}.tar.bz2"
44 -
45 -LICENSE="ISC"
46 -SLOT="0"
47 -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~sparc x86"
48 -IUSE="doc +dyn-manifest static-libs test"
49 -REQUIRED_USE="${PYTHON_REQUIRED_USE}"
50 -RESTRICT="!test? ( test )"
51 -
52 -BDEPEND="
53 - virtual/pkgconfig
54 - doc? (
55 - app-doc/doxygen
56 - dev-python/sphinx
57 - dev-python/sphinx_lv2_theme
58 - )
59 -"
60 -RDEPEND="
61 - ${PYTHON_DEPS}
62 - dev-libs/serd[${MULTILIB_USEDEP}]
63 - dev-libs/sord[${MULTILIB_USEDEP}]
64 - media-libs/libsndfile
65 - media-libs/lv2[${MULTILIB_USEDEP}]
66 - media-libs/sratom[${MULTILIB_USEDEP}]
67 -"
68 -DEPEND="${RDEPEND}"
69 -
70 -pkg_setup() {
71 - python_setup
72 -}
73 -
74 -src_prepare() {
75 - default
76 - sed -i -e 's/^.*run_ldconfig/#\0/' wscript || die
77 - multilib_copy_sources
78 -}
79 -
80 -multilib_src_configure() {
81 - waf-utils_src_configure \
82 - --docdir="${EPREFIX}"/usr/share/doc/${PF} \
83 - --no-bash-completion \
84 - $(multilib_native_usex doc --docs "") \
85 - $(usex test --test "") \
86 - $(usex static-libs --static "") \
87 - $(usex dyn-manifest --dyn-manifest "")
88 -}
89 -
90 -multilib_src_compile() {
91 - ./waf build || die
92 -}
93 -
94 -multilib_src_test() {
95 - ./waf test || die
96 -}
97 -
98 -multilib_src_install() {
99 - waf-utils_src_install
100 -}
101 -
102 -multilib_src_install_all() {
103 - sed -i "/lv2jack/d" utils/lilv.bash_completion
104 - newbashcomp utils/lilv.bash_completion lv2info
105 -
106 - dodir /etc/env.d
107 - echo "LV2_PATH=${EPREFIX}/usr/$(get_libdir)/lv2" > "${ED}/etc/env.d/60lv2"
108 -
109 - python_optimize
110 -}