From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1136606-garchives=archives.gentoo.org@lists.gentoo.org> 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 20382138346 for <garchives@archives.gentoo.org>; Tue, 7 Jan 2020 22:01:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3E6E9E0886; Tue, 7 Jan 2020 22:01:03 +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 11CC6E0886 for <gentoo-commits@lists.gentoo.org>; Tue, 7 Jan 2020 22:01:02 +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 17BB234DE88 for <gentoo-commits@lists.gentoo.org>; Tue, 7 Jan 2020 22:01:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 42A2E36 for <gentoo-commits@lists.gentoo.org>; Tue, 7 Jan 2020 22:00:59 +0000 (UTC) From: "Horea Christian" <horea.christ@gmail.com> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Horea Christian" <horea.christ@gmail.com> Message-ID: <1578434448.e7a8e94b2ede21f1c75d7bc034b1084da581dcd2.chymera@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-libs/nipy/ X-VCS-Repository: proj/sci X-VCS-Files: sci-libs/nipy/nipy-0.4.0.ebuild sci-libs/nipy/nipy-0.4.1.ebuild sci-libs/nipy/nipy-0.4.2.ebuild sci-libs/nipy/nipy-9999.ebuild X-VCS-Directories: sci-libs/nipy/ X-VCS-Committer: chymera X-VCS-Committer-Name: Horea Christian X-VCS-Revision: e7a8e94b2ede21f1c75d7bc034b1084da581dcd2 X-VCS-Branch: master Date: Tue, 7 Jan 2020 22:00:59 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 975c0c7b-bac1-42e1-8398-346c8a157a12 X-Archives-Hash: 8d5def15c477458c8d430505ec414723 commit: e7a8e94b2ede21f1c75d7bc034b1084da581dcd2 Author: Horea Christian <chr <AT> chymera <DOT> eu> AuthorDate: Tue Jan 7 22:00:48 2020 +0000 Commit: Horea Christian <horea.christ <AT> gmail <DOT> com> CommitDate: Tue Jan 7 22:00:48 2020 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=e7a8e94b sci-libs/nipy: deprecated old versions and PYTHON_COMPAT Package-Manager: Portage-2.3.84, Repoman-2.3.20 Signed-off-by: Horea Christian <chr <AT> chymera.eu> sci-libs/nipy/nipy-0.4.0.ebuild | 36 ------------------------------------ sci-libs/nipy/nipy-0.4.1.ebuild | 4 ++-- sci-libs/nipy/nipy-0.4.2.ebuild | 4 ++-- sci-libs/nipy/nipy-9999.ebuild | 4 ++-- 4 files changed, 6 insertions(+), 42 deletions(-) diff --git a/sci-libs/nipy/nipy-0.4.0.ebuild b/sci-libs/nipy/nipy-0.4.0.ebuild deleted file mode 100644 index ab2562f34..000000000 --- a/sci-libs/nipy/nipy-0.4.0.ebuild +++ /dev/null @@ -1,36 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} ) - -inherit distutils-r1 eutils multilib flag-o-matic - -DESCRIPTION="Neuroimaging tools for Python" -HOMEPAGE="http://nipy.org/" -SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" -IUSE="" - -RDEPEND=" - dev-python/prov[${PYTHON_USEDEP}] - sci-libs/scipy[${PYTHON_USEDEP}] - dev-python/sympy[${PYTHON_USEDEP}] - >=sci-libs/nibabel-1.2[${PYTHON_USEDEP}] - dev-python/numpy[${PYTHON_USEDEP}]" -DEPEND="${RDEPEND} - dev-python/setuptools[${PYTHON_USEDEP}]" - -python_prepare_all() { - distutils-r1_python_prepare_all - # bug #397605 - [[ ${CHOST} == *-darwin* ]] \ - && append-ldflags -bundle "-undefined dynamic_lookup" \ - || append-ldflags -shared - - # nipy uses the horrible numpy.distutils automagic -} diff --git a/sci-libs/nipy/nipy-0.4.1.ebuild b/sci-libs/nipy/nipy-0.4.1.ebuild index 74ad89b9b..779329f40 100644 --- a/sci-libs/nipy/nipy-0.4.1.ebuild +++ b/sci-libs/nipy/nipy-0.4.1.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} ) +PYTHON_COMPAT=( python3_6 ) inherit distutils-r1 eutils multilib flag-o-matic diff --git a/sci-libs/nipy/nipy-0.4.2.ebuild b/sci-libs/nipy/nipy-0.4.2.ebuild index 6da963822..7afdf0053 100644 --- a/sci-libs/nipy/nipy-0.4.2.ebuild +++ b/sci-libs/nipy/nipy-0.4.2.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} ) +PYTHON_COMPAT=( python3_6 ) inherit distutils-r1 eutils multilib flag-o-matic diff --git a/sci-libs/nipy/nipy-9999.ebuild b/sci-libs/nipy/nipy-9999.ebuild index 658e8d984..57a994b69 100644 --- a/sci-libs/nipy/nipy-9999.ebuild +++ b/sci-libs/nipy/nipy-9999.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} ) +PYTHON_COMPAT=( python3_6 ) inherit distutils-r1 multilib git-r3 flag-o-matic