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/suil/
Date: Sun, 31 Jul 2022 06:45:34
Message-Id: 1659249929.2aab7482540d683b30263c6dac7ef4ce6b99881e.fordfrog@gentoo
1 commit: 2aab7482540d683b30263c6dac7ef4ce6b99881e
2 Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jul 31 06:45:20 2022 +0000
4 Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
5 CommitDate: Sun Jul 31 06:45:29 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2aab7482
7
8 media-libs/suil: bump to 0.10.14
9
10 Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
11
12 media-libs/suil/Manifest | 1 +
13 media-libs/suil/suil-0.10.14.ebuild | 58 +++++++++++++++++++++++++++++++++++++
14 2 files changed, 59 insertions(+)
15
16 diff --git a/media-libs/suil/Manifest b/media-libs/suil/Manifest
17 index bfd1005aa438..1c5dd36b779a 100644
18 --- a/media-libs/suil/Manifest
19 +++ b/media-libs/suil/Manifest
20 @@ -1 +1,2 @@
21 DIST suil-0.10.12.tar.bz2 339666 BLAKE2B f70bbc18f5fa1a9263fe5c0a9241e966e124a855273bc6fe863375aef8505193e49b67d3b9d7ff6d4e4cf50cb6c2cb2b2d53dccab06005f82725e024cc8347d5 SHA512 f2b9ca36cc35d6b51c6e4ae144d61b1ba5e3b51113cca48d0535f6346ff918bdc7e299f0036ea1431c0ef59b1a02f1f4086a95db552d0a06bffb54567ab4a278
22 +DIST suil-0.10.14.tar.xz 33620 BLAKE2B 8ad873ade71ee6f5ba9c8560e116d8de86d8a919c24eed83ba2ff5fa5a968a4a30fdecb00c21c9f267eb22aadcef954872fab9122903826d812e3ad71c7bcd69 SHA512 fd44ac4dd465aa9e678d00cf9d7ca7ac1a18f1045e6d61c2f542a0bec7f8783230740f9a3a28d11b76cbee71cc7d4baa261112b83936a264083faeda9c02379e
23
24 diff --git a/media-libs/suil/suil-0.10.14.ebuild b/media-libs/suil/suil-0.10.14.ebuild
25 new file mode 100644
26 index 000000000000..951d4de5215c
27 --- /dev/null
28 +++ b/media-libs/suil/suil-0.10.14.ebuild
29 @@ -0,0 +1,58 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +PYTHON_COMPAT=( python3_{8..11} )
36 +PYTHON_REQ_USE='threads(+)'
37 +
38 +inherit meson python-any-r1
39 +
40 +DESCRIPTION="Lightweight C library for loading and wrapping LV2 plugin UIs"
41 +HOMEPAGE="http://drobilla.net/software/suil/"
42 +SRC_URI="http://download.drobilla.net/${P}.tar.xz"
43 +
44 +LICENSE="ISC"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~riscv ~x86"
47 +IUSE="doc gtk qt5"
48 +
49 +BDEPEND="
50 + virtual/pkgconfig
51 + doc? (
52 + app-doc/doxygen
53 + dev-python/sphinx
54 + dev-python/sphinx_lv2_theme
55 + )
56 +"
57 +CDEPEND="
58 + media-libs/lv2
59 + gtk? ( x11-libs/gtk+:2 )
60 + qt5? (
61 + dev-qt/qtcore:5
62 + dev-qt/qtgui:5
63 + )"
64 +RDEPEND="${CDEPEND}"
65 +DEPEND="
66 + ${CDEPEND}
67 + ${PYTHON_DEPS}
68 +"
69 +
70 +DOCS=( AUTHORS NEWS README.md )
71 +
72 +src_prepare() {
73 + default
74 +
75 + # fix doc installation path
76 + sed -iE "s%install_dir: docdir / 'suil-0',%install_dir: docdir / '${PF}',%g" doc/c/meson.build || die
77 +}
78 +
79 +src_configure() {
80 + local emesonargs=(
81 + $(meson_feature doc docs)
82 + $(meson_feature gtk gtk3)
83 + $(meson_feature qt5)
84 + )
85 +
86 + meson_src_configure
87 +}