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 F12D5138350 for ; Thu, 16 Jan 2020 06:39:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7FA0EE0907; Thu, 16 Jan 2020 06:39:22 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 66421E0907 for ; Thu, 16 Jan 2020 06:39:22 +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 85DFE34E110 for ; Thu, 16 Jan 2020 06:39:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3CA50C4 for ; Thu, 16 Jan 2020 06:39:17 +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: <1579156693.7a3fa6dba6728adfff29106b05c36b06f5733d48.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/getdata/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/getdata/getdata-0.9.0-r1.ebuild X-VCS-Directories: sci-libs/getdata/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 7a3fa6dba6728adfff29106b05c36b06f5733d48 X-VCS-Branch: master Date: Thu, 16 Jan 2020 06:39:17 +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: 75f66433-6725-470e-87d8-b6e58b3083fc X-Archives-Hash: 77162be3eee0e3d785ef2065f243f5d4 commit: 7a3fa6dba6728adfff29106b05c36b06f5733d48 Author: Michał Górny gentoo org> AuthorDate: Thu Jan 16 06:31:01 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Thu Jan 16 06:38:13 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a3fa6db sci-libs/getdata: Permit numpy-python2 Signed-off-by: Michał Górny gentoo.org> sci-libs/getdata/getdata-0.9.0-r1.ebuild | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/sci-libs/getdata/getdata-0.9.0-r1.ebuild b/sci-libs/getdata/getdata-0.9.0-r1.ebuild index 1e6aa25c7ab..65085d535e5 100644 --- a/sci-libs/getdata/getdata-0.9.0-r1.ebuild +++ b/sci-libs/getdata/getdata-0.9.0-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -23,7 +23,13 @@ DEPEND=" bzip2? ( app-arch/bzip2 ) lzma? ( app-arch/xz-utils ) perl? ( dev-lang/perl ) - python? ( dev-python/numpy[${PYTHON_USEDEP}] ${PYTHON_DEPS} )" + python? ( + || ( + dev-python/numpy-python2[${PYTHON_USEDEP}] + dev-python/numpy[${PYTHON_USEDEP}] + ) + ${PYTHON_DEPS} + )" RDEPEND="${DEPEND}" PATCHES=( "${FILESDIR}/${P}-remove-python-test.patch" )