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: Fri, 02 Oct 2020 08:50:15
Message-Id: 1601628597.eae7cdf29fcbee0eac6660e8f84e89afaf9dec9e.fordfrog@gentoo
1 commit: eae7cdf29fcbee0eac6660e8f84e89afaf9dec9e
2 Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
3 AuthorDate: Fri Oct 2 08:49:57 2020 +0000
4 Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
5 CommitDate: Fri Oct 2 08:49:57 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eae7cdf2
7
8 media-libs/suil: bump to 0.10.8 + py3.8 & py3.9
9
10 Package-Manager: Portage-3.0.8, Repoman-3.0.1
11 Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
12
13 media-libs/suil/Manifest | 1 +
14 media-libs/suil/suil-0.10.8.ebuild | 52 ++++++++++++++++++++++++++++++++++++++
15 2 files changed, 53 insertions(+)
16
17 diff --git a/media-libs/suil/Manifest b/media-libs/suil/Manifest
18 index f872957b956..774ef55a966 100644
19 --- a/media-libs/suil/Manifest
20 +++ b/media-libs/suil/Manifest
21 @@ -1 +1,2 @@
22 DIST suil-0.10.6.tar.bz2 347615 BLAKE2B 667379c6290c4c1e03168911fa58b991e95bbc7c7477606e42ba39d33645f4580ea09051d294f24cdbb3b2df9ed1d415b73eda3ec1f593fed2e7f2d9ff2a85c3 SHA512 b23ffe0c0ae25467b2cd60117a2efa8c13132c8e5612619e4c9ad2cc228b835f1c7fd384db62b74d4a327e3708f189b6a91f972756fcafe501308adb732c3b36
23 +DIST suil-0.10.8.tar.bz2 357003 BLAKE2B d5445a8a539d3aaca94141fe0a7bfce976db9602fcaa563d0e5661ce7d281ac48679110e5545d3a3aa4d3c488c5ce7a00f2f06bd67e56da26943885a71480648 SHA512 1d68996756ac593b2b2da6d9554e3257944cacbc8d70d90ded0f6ad5b5877778a08c779a12c7b4527d492f9c480613e030ab6933532f758e16221daa9d5c2dd4
24
25 diff --git a/media-libs/suil/suil-0.10.8.ebuild b/media-libs/suil/suil-0.10.8.ebuild
26 new file mode 100644
27 index 00000000000..491e16bf745
28 --- /dev/null
29 +++ b/media-libs/suil/suil-0.10.8.ebuild
30 @@ -0,0 +1,52 @@
31 +# Copyright 1999-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +
36 +PYTHON_COMPAT=( python3_{6,7,8,9} )
37 +PYTHON_REQ_USE='threads(+)'
38 +
39 +inherit flag-o-matic python-any-r1 waf-utils
40 +
41 +DESCRIPTION="Lightweight C library for loading and wrapping LV2 plugin UIs"
42 +HOMEPAGE="http://drobilla.net/software/suil/"
43 +SRC_URI="http://download.drobilla.net/${P}.tar.bz2"
44 +
45 +LICENSE="ISC"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86"
48 +IUSE="doc gtk qt5"
49 +
50 +BDEPEND="
51 + virtual/pkgconfig
52 + doc? ( app-doc/doxygen )
53 +"
54 +CDEPEND="
55 + media-libs/lv2
56 + gtk? ( x11-libs/gtk+:2 )
57 + qt5? (
58 + dev-qt/qtcore:5
59 + dev-qt/qtgui:5
60 + )"
61 +RDEPEND="${CDEPEND}"
62 +DEPEND="
63 + ${CDEPEND}
64 + ${PYTHON_DEPS}
65 +"
66 +
67 +DOCS=( AUTHORS NEWS README.md )
68 +
69 +src_prepare() {
70 + default
71 + sed -i -e 's/^.*run_ldconfig/#\0/' wscript || die
72 +}
73 +
74 +src_configure() {
75 + waf-utils_src_configure \
76 + --mandir="${EPREFIX}/usr/share/man" \
77 + --docdir="${EPREFIX}/usr/share/doc/${PF}" \
78 + --no-qt4 \
79 + $(usex gtk '' --no-gtk) \
80 + $(usex qt5 '' --no-qt5) \
81 + $(usex doc --docs '')
82 +}