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 27757138335 for ; Sat, 18 May 2019 08:55:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 29BBBE084A; Sat, 18 May 2019 08:55:46 +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 111EFE084A for ; Sat, 18 May 2019 08:55:45 +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 D7E983449DB for ; Sat, 18 May 2019 08:55:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C64F05EB for ; Sat, 18 May 2019 08:55:42 +0000 (UTC) From: "William Breathitt Gray" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "William Breathitt Gray" Message-ID: <1558169731.337b5173dd18a62595dbd55ccc825e1dc79d779f.vilhelm.gray@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: games-fps/crispy-doom/ X-VCS-Repository: repo/proj/guru X-VCS-Files: games-fps/crispy-doom/crispy-doom-5.5.2.ebuild X-VCS-Directories: games-fps/crispy-doom/ X-VCS-Committer: vilhelm.gray X-VCS-Committer-Name: William Breathitt Gray X-VCS-Revision: 337b5173dd18a62595dbd55ccc825e1dc79d779f X-VCS-Branch: dev Date: Sat, 18 May 2019 08:55:42 +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: 79246cc6-6545-472f-96ef-f99960cedc6c X-Archives-Hash: 1508e18e4b663cba8b7838b0b076b239 commit: 337b5173dd18a62595dbd55ccc825e1dc79d779f Author: William Breathitt Gray gmail com> AuthorDate: Sat May 18 08:54:57 2019 +0000 Commit: William Breathitt Gray gmail com> CommitDate: Sat May 18 08:55:31 2019 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=337b5173 games-fps/crispy-doom: python is a BDEPEND dependency Package-Manager: Portage-2.3.66, Repoman-2.3.12 Signed-off-by: William Breathitt Gray gmail.com> games-fps/crispy-doom/crispy-doom-5.5.2.ebuild | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/games-fps/crispy-doom/crispy-doom-5.5.2.ebuild b/games-fps/crispy-doom/crispy-doom-5.5.2.ebuild index 38d7a77..f2ca898 100644 --- a/games-fps/crispy-doom/crispy-doom-5.5.2.ebuild +++ b/games-fps/crispy-doom/crispy-doom-5.5.2.ebuild @@ -3,7 +3,9 @@ EAPI=7 -inherit autotools xdg +PYTHON_COMPAT=( python2_7 python3_{5,6,7} ) + +inherit autotools python-any-r1 xdg DESCRIPTION="A limit-removing enhanced-resolution Doom source port based on Chocolate Doom" HOMEPAGE="https://github.com/fabiangreffrath/crispy-doom" @@ -21,10 +23,10 @@ DEPEND=" libsamplerate? ( media-libs/libsamplerate ) png? ( media-libs/libpng:= ) zlib? ( sys-libs/zlib )" -RDEPEND=" - ${DEPEND} +RDEPEND="${DEPEND}" +BDEPEND=" python? ( - dev-lang/python + ${PYTHON_DEPS} dev-python/pillow )"