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-sound/guitarix/
Date: Wed, 30 Dec 2020 06:49:22
Message-Id: 1609309686.5fa7cef1adf33b14e9487c59429079a50388e353.fordfrog@gentoo
1 commit: 5fa7cef1adf33b14e9487c59429079a50388e353
2 Author: Alexander Tsoy <alexander <AT> tsoy <DOT> me>
3 AuthorDate: Tue Dec 29 23:33:03 2020 +0000
4 Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
5 CommitDate: Wed Dec 30 06:28:06 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5fa7cef1
7
8 media-sound/guitarix: Update live ebuild
9
10 * EAPI 7 bump
11 * reorganize dependencies
12 * support python3.9
13
14 Signed-off-by: Alexander Tsoy <alexander <AT> tsoy.me>
15 Closes: https://github.com/gentoo/gentoo/pull/18874
16 Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
17
18 media-sound/guitarix/guitarix-9999.ebuild | 24 ++++++++++++++----------
19 1 file changed, 14 insertions(+), 10 deletions(-)
20
21 diff --git a/media-sound/guitarix/guitarix-9999.ebuild b/media-sound/guitarix/guitarix-9999.ebuild
22 index 1f66e9647b1..5bd6d0e7b8a 100644
23 --- a/media-sound/guitarix/guitarix-9999.ebuild
24 +++ b/media-sound/guitarix/guitarix-9999.ebuild
25 @@ -1,9 +1,9 @@
26 # Copyright 2019-2020 Gentoo Authors
27 # Distributed under the terms of the GNU General Public License v2
28
29 -EAPI=6
30 +EAPI=7
31
32 -PYTHON_COMPAT=( python3_{6,7,8} )
33 +PYTHON_COMPAT=( python3_{6,7,8,9} )
34 PYTHON_REQ_USE='threads(+)'
35
36 inherit python-any-r1 waf-utils xdg git-r3
37 @@ -21,7 +21,8 @@ KEYWORDS=""
38 IUSE="bluetooth debug lv2 nls nsm +standalone zeroconf"
39 REQUIRED_USE="|| ( lv2 standalone )"
40
41 -COMMON_DEPEND="dev-cpp/eigen:3
42 +DEPEND="
43 + dev-cpp/eigen:3
44 dev-cpp/glibmm:2
45 dev-cpp/gtkmm:3.0
46 dev-libs/glib:2
47 @@ -29,7 +30,7 @@ COMMON_DEPEND="dev-cpp/eigen:3
48 >=media-libs/zita-convolver-3:=
49 media-libs/zita-resampler
50 >=net-misc/curl-7.26.0
51 - >=sci-libs/fftw-3.1.2:3.0=
52 + >=sci-libs/fftw-3.3.8:3.0=
53 x11-libs/gtk+:3
54 lv2? ( media-libs/lv2 )
55 standalone? (
56 @@ -43,18 +44,21 @@ COMMON_DEPEND="dev-cpp/eigen:3
57 )
58 "
59 # roboto fonts are required for correct ui rendering
60 -RDEPEND="${COMMON_DEPEND}
61 +RDEPEND="
62 + ${DEPEND}
63 standalone? (
64 media-fonts/roboto
65 )
66 "
67 -DEPEND="${COMMON_DEPEND}
68 +BDEPEND="
69 ${PYTHON_DEPS}
70 - dev-lang/sassc
71 virtual/pkgconfig
72 - nls? (
73 - dev-util/intltool
74 - sys-devel/gettext
75 + standalone? (
76 + dev-lang/sassc
77 + nls? (
78 + dev-util/intltool
79 + sys-devel/gettext
80 + )
81 )
82 "