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 D1AA31382C5 for ; Tue, 30 Mar 2021 11:53:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 047B2E0A60; Tue, 30 Mar 2021 11:53:44 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 99E7AE0A60 for ; Tue, 30 Mar 2021 11:53:43 +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 3A236335CC1 for ; Tue, 30 Mar 2021 11:53:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8F0A1632 for ; Tue, 30 Mar 2021 11:53:40 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1617105207.58d8e82c970b771a90c8ced0660026da551de494.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-strategy/naev/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-strategy/naev/naev-0.8.2.ebuild X-VCS-Directories: games-strategy/naev/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 58d8e82c970b771a90c8ced0660026da551de494 X-VCS-Branch: master Date: Tue, 30 Mar 2021 11:53:40 +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: 3c87d549-ab32-4cda-963d-b68580e33177 X-Archives-Hash: bf32da837325fe6b74f6266d4db602af commit: 58d8e82c970b771a90c8ced0660026da551de494 Author: Jakov Smolic sartura hr> AuthorDate: Tue Mar 30 11:53:27 2021 +0000 Commit: David Seifert gentoo org> CommitDate: Tue Mar 30 11:53:27 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58d8e82c games-strategy/naev: inherit python-any-r1.eclass Closes: https://github.com/gentoo/gentoo/pull/20198 Closes: https://bugs.gentoo.org/771114 Signed-off-by: Jakov Smolic sartura.hr> Signed-off-by: David Seifert gentoo.org> games-strategy/naev/naev-0.8.2.ebuild | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/games-strategy/naev/naev-0.8.2.ebuild b/games-strategy/naev/naev-0.8.2.ebuild index ee450e92050..22f730350b0 100644 --- a/games-strategy/naev/naev-0.8.2.ebuild +++ b/games-strategy/naev/naev-0.8.2.ebuild @@ -4,7 +4,8 @@ EAPI=7 LUA_COMPAT=( lua5-1 luajit ) -inherit lua-single meson virtualx xdg +PYTHON_COMPAT=( python3_{7..9} ) +inherit lua-single meson python-any-r1 virtualx xdg DESCRIPTION="A 2D space trading and combat game, in a similar vein to Escape Velocity" HOMEPAGE="https://naev.org/ https://github.com/naev/naev" @@ -34,12 +35,18 @@ RDEPEND=" )" DEPEND="${RDEPEND}" BDEPEND=" + ${PYTHON_DEPS} doc? ( app-doc/doxygen dev-lua/ldoc ) nls? ( sys-devel/gettext )" +pkg_setup() { + lua-single_pkg_setup + python-any-r1_pkg_setup +} + src_prepare() { default sed -i -e "s:lua51:lua5.1:g" meson.build || die