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 BBBD7138350 for ; Tue, 28 Jan 2020 21:30:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E9BDBE085D; Tue, 28 Jan 2020 21:30:31 +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 CE2F4E085D for ; Tue, 28 Jan 2020 21:30:31 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 A9A0B34E457 for ; Tue, 28 Jan 2020 21:30:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7C384ED for ; Tue, 28 Jan 2020 21:30:28 +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: <1580247010.254c533fbd6a1c8fe391bacf66de7aba7a859b7b.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/algopy/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/algopy/algopy-0.5.3.ebuild X-VCS-Directories: dev-python/algopy/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 254c533fbd6a1c8fe391bacf66de7aba7a859b7b X-VCS-Branch: master Date: Tue, 28 Jan 2020 21:30:28 +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: 6a4c1dfa-b2bc-44e5-90e0-29e7e3c95af7 X-Archives-Hash: 7acb48143c9014d6f713d398da25738c commit: 254c533fbd6a1c8fe391bacf66de7aba7a859b7b Author: Michał Górny gentoo org> AuthorDate: Tue Jan 28 20:52:30 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Jan 28 21:30:10 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=254c533f dev-python/algopy: Remove python3 This package has only one revdep that's py2-only, and it is unlikely to be ever used anywhere else. Signed-off-by: Michał Górny gentoo.org> dev-python/algopy/algopy-0.5.3.ebuild | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/dev-python/algopy/algopy-0.5.3.ebuild b/dev-python/algopy/algopy-0.5.3.ebuild index 819d381dbcc..4deca4ef6ad 100644 --- a/dev-python/algopy/algopy-0.5.3.ebuild +++ b/dev-python/algopy/algopy-0.5.3.ebuild @@ -3,7 +3,7 @@ EAPI=6 -PYTHON_COMPAT=( python2_7 python3_6 ) +PYTHON_COMPAT=( python2_7 ) inherit distutils-r1 @@ -18,8 +18,14 @@ IUSE="test" RESTRICT="!test? ( test )" RDEPEND=" - dev-python/numpy[${PYTHON_USEDEP}] - sci-libs/scipy[${PYTHON_USEDEP}] + || ( + dev-python/numpy-python2[${PYTHON_USEDEP}] + dev-python/numpy[${PYTHON_USEDEP}] + ) + || ( + sci-libs/scipy-python2[${PYTHON_USEDEP}] + sci-libs/scipy[${PYTHON_USEDEP}] + ) " DEPEND="${RDEPEND} test? ( dev-python/nose[${PYTHON_USEDEP}] )