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 A6D03138350 for ; Sun, 9 Feb 2020 16:25:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EA240E087B; Sun, 9 Feb 2020 16:25:25 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 D0A9DE087C for ; Sun, 9 Feb 2020 16:25:25 +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 C560434E8D6 for ; Sun, 9 Feb 2020 16:25:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2E995145 for ; Sun, 9 Feb 2020 16:25:20 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1581265322.2a41d708c59e9ab0d0df25c5ff0e3c2f76976e5c.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-simulation/singularity/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-simulation/singularity/singularity-1.0_alpha1-r1.ebuild games-simulation/singularity/singularity-1.0_alpha1.ebuild X-VCS-Directories: games-simulation/singularity/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 2a41d708c59e9ab0d0df25c5ff0e3c2f76976e5c X-VCS-Branch: master Date: Sun, 9 Feb 2020 16:25: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: a77c7802-69f2-4474-bf3f-57d997c19ce3 X-Archives-Hash: 991686dfab8ef0e8f20b499f91fdd29c commit: 2a41d708c59e9ab0d0df25c5ff0e3c2f76976e5c Author: Michał Górny gentoo org> AuthorDate: Fri Feb 7 14:10:45 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Feb 9 16:22:02 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a41d708 games-simulation/singularity: Switch to PYTHON_MULTI_USEDEP API Signed-off-by: Michał Górny gentoo.org> ...rity-1.0_alpha1.ebuild => singularity-1.0_alpha1-r1.ebuild} | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/games-simulation/singularity/singularity-1.0_alpha1.ebuild b/games-simulation/singularity/singularity-1.0_alpha1-r1.ebuild similarity index 84% rename from games-simulation/singularity/singularity-1.0_alpha1.ebuild rename to games-simulation/singularity/singularity-1.0_alpha1-r1.ebuild index d54f147ac48..644b755a6c2 100644 --- a/games-simulation/singularity/singularity-1.0_alpha1.ebuild +++ b/games-simulation/singularity/singularity-1.0_alpha1-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -18,9 +18,11 @@ KEYWORDS="~amd64 ~x86" REQUIRED_USE="${PYTHON_REQUIRED_USE}" RDEPEND="${PYTHON_DEPS} - dev-python/numpy[${PYTHON_USEDEP}] - dev-python/pygame[${PYTHON_USEDEP}] - dev-python/polib[${PYTHON_USEDEP}] + $(python_gen_cond_dep ' + dev-python/numpy[${PYTHON_MULTI_USEDEP}] + dev-python/pygame[${PYTHON_MULTI_USEDEP}] + dev-python/polib[${PYTHON_MULTI_USEDEP}] + ') " DEPEND="${RDEPEND}" BDEPEND="app-arch/unzip"