From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C23051382C5 for ; Tue, 20 Apr 2021 02:49:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F320FE0863; Tue, 20 Apr 2021 02:49:24 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DC564E0863 for ; Tue, 20 Apr 2021 02:49:24 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id F0213340E62 for ; Tue, 20 Apr 2021 02:49:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D517671B for ; Tue, 20 Apr 2021 02:49:20 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1618886508.8ebeb849bc2c8d950a196552eeed3cca9eb292ff.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-puzzle/gnome-tetravex/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-puzzle/gnome-tetravex/gnome-tetravex-3.38.2.ebuild X-VCS-Directories: games-puzzle/gnome-tetravex/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 8ebeb849bc2c8d950a196552eeed3cca9eb292ff X-VCS-Branch: master Date: Tue, 20 Apr 2021 02:49:20 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: f2445dd8-09af-41b8-aa4d-22d2f1d2859a X-Archives-Hash: 64a67be1b5117aa32a3c6ff9341b1246 commit: 8ebeb849bc2c8d950a196552eeed3cca9eb292ff Author: Matt Turner gentoo org> AuthorDate: Tue Apr 20 02:41:32 2021 +0000 Commit: Matt Turner gentoo org> CommitDate: Tue Apr 20 02:41:48 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ebeb849 games-puzzle/gnome-tetravex: use ${EPYTHON}, not python3 Also use BDEPEND. Closes: https://bugs.gentoo.org/768441 Signed-off-by: Matt Turner gentoo.org> games-puzzle/gnome-tetravex/gnome-tetravex-3.38.2.ebuild | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/games-puzzle/gnome-tetravex/gnome-tetravex-3.38.2.ebuild b/games-puzzle/gnome-tetravex/gnome-tetravex-3.38.2.ebuild index 12f07175c24..040bddac900 100644 --- a/games-puzzle/gnome-tetravex/gnome-tetravex-3.38.2.ebuild +++ b/games-puzzle/gnome-tetravex/gnome-tetravex-3.38.2.ebuild @@ -2,9 +2,10 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=7 +PYTHON_COMPAT=( python3_{7..9} ) VALA_MIN_API_VERSION="0.40" -inherit gnome.org gnome2-utils meson vala xdg +inherit gnome.org gnome2-utils meson python-any-r1 vala xdg DESCRIPTION="Complete the puzzle by matching numbered tiles" HOMEPAGE="https://wiki.gnome.org/Apps/Tetravex" @@ -19,7 +20,9 @@ RDEPEND=" >=dev-libs/glib-2.42.0:2 gui? ( >=x11-libs/gtk+-3.22.23:3 ) " -DEPEND="${RDEPEND} +DEPEND="${RDEPEND}" +BDEPEND=" + ${PYTHON_DEPS} $(vala_depend) gui? ( dev-util/itstool ) >=sys-devel/gettext-0.19.8