Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: games-puzzle/gnome-tetravex/
Date: Tue, 20 Apr 2021 02:49:25
Message-Id: 1618886508.8ebeb849bc2c8d950a196552eeed3cca9eb292ff.mattst88@gentoo
1 commit: 8ebeb849bc2c8d950a196552eeed3cca9eb292ff
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Tue Apr 20 02:41:32 2021 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Tue Apr 20 02:41:48 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ebeb849
7
8 games-puzzle/gnome-tetravex: use ${EPYTHON}, not python3
9
10 Also use BDEPEND.
11
12 Closes: https://bugs.gentoo.org/768441
13 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
14
15 games-puzzle/gnome-tetravex/gnome-tetravex-3.38.2.ebuild | 7 +++++--
16 1 file changed, 5 insertions(+), 2 deletions(-)
17
18 diff --git a/games-puzzle/gnome-tetravex/gnome-tetravex-3.38.2.ebuild b/games-puzzle/gnome-tetravex/gnome-tetravex-3.38.2.ebuild
19 index 12f07175c24..040bddac900 100644
20 --- a/games-puzzle/gnome-tetravex/gnome-tetravex-3.38.2.ebuild
21 +++ b/games-puzzle/gnome-tetravex/gnome-tetravex-3.38.2.ebuild
22 @@ -2,9 +2,10 @@
23 # Distributed under the terms of the GNU General Public License v2
24
25 EAPI=7
26 +PYTHON_COMPAT=( python3_{7..9} )
27 VALA_MIN_API_VERSION="0.40"
28
29 -inherit gnome.org gnome2-utils meson vala xdg
30 +inherit gnome.org gnome2-utils meson python-any-r1 vala xdg
31
32 DESCRIPTION="Complete the puzzle by matching numbered tiles"
33 HOMEPAGE="https://wiki.gnome.org/Apps/Tetravex"
34 @@ -19,7 +20,9 @@ RDEPEND="
35 >=dev-libs/glib-2.42.0:2
36 gui? ( >=x11-libs/gtk+-3.22.23:3 )
37 "
38 -DEPEND="${RDEPEND}
39 +DEPEND="${RDEPEND}"
40 +BDEPEND="
41 + ${PYTHON_DEPS}
42 $(vala_depend)
43 gui? ( dev-util/itstool )
44 >=sys-devel/gettext-0.19.8