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 ED247138334 for ; Mon, 31 Dec 2018 03:51:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9C212E0ACC; Mon, 31 Dec 2018 03:51:53 +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 70A13E0ACC for ; Mon, 31 Dec 2018 03:51:53 +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 60D53335C3D for ; Mon, 31 Dec 2018 03:51:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 045E245B for ; Mon, 31 Dec 2018 03:51:49 +0000 (UTC) From: "Horea Christian" 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" Message-ID: <1546228295.ff908446fc453f2bf2746ec68fea85f4d4ba69c9.chymera@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-libs/nibabel/ X-VCS-Repository: proj/sci X-VCS-Files: sci-libs/nibabel/nibabel-1.3.0.ebuild X-VCS-Directories: sci-libs/nibabel/ X-VCS-Committer: chymera X-VCS-Committer-Name: Horea Christian X-VCS-Revision: ff908446fc453f2bf2746ec68fea85f4d4ba69c9 X-VCS-Branch: master Date: Mon, 31 Dec 2018 03:51:49 +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: 581d64eb-a201-4d24-87e8-6d9be0a4bdf3 X-Archives-Hash: 21c83d3f997121cbf7e3f8b2177c0c3d commit: ff908446fc453f2bf2746ec68fea85f4d4ba69c9 Author: Horea Christian yandex com> AuthorDate: Mon Dec 31 03:51:35 2018 +0000 Commit: Horea Christian gmail com> CommitDate: Mon Dec 31 03:51:35 2018 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=ff908446 sci-libs/nibabel: removed deprecated version Signed-off-by: Horea Christian yandex.com> Package-Manager: Portage-2.3.52, Repoman-2.3.12 sci-libs/nibabel/nibabel-1.3.0.ebuild | 44 ----------------------------------- 1 file changed, 44 deletions(-) diff --git a/sci-libs/nibabel/nibabel-1.3.0.ebuild b/sci-libs/nibabel/nibabel-1.3.0.ebuild deleted file mode 100644 index 836f2e65a..000000000 --- a/sci-libs/nibabel/nibabel-1.3.0.ebuild +++ /dev/null @@ -1,44 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -PYTHON_COMPAT=( python{2_7,3_4} ) - -inherit distutils-r1 - -DESCRIPTION="Access a cacophony of neuro-imaging file formats" -HOMEPAGE="http://nipy.org/nibabel/" -SRC_URI="https://github.com/nipy/nibabel/archive/${PV}.tar.gz -> ${P}.tar.gz" - -KEYWORDS="~amd64 ~x86" - -LICENSE="MIT" -SLOT="0" -IUSE="dicom doc test" - -RDEPEND=" - dev-python/numpy[${PYTHON_USEDEP}] - sci-libs/scipy[${PYTHON_USEDEP}] - dev-python/mock[${PYTHON_USEDEP}] - dicom? ( - sci-libs/pydicom[${PYTHON_USEDEP}] - dev-python/pillow[${PYTHON_USEDEP}] - ) - " - -DEPEND=" - dev-python/setuptools[${PYTHON_USEDEP}] - test? ( - ${RDEPEND} - dev-python/nose[${PYTHON_USEDEP}] - ) - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] ) - " - -python_test() { - distutils-r1_install_for_testing - cd "${BUILD_DIR}" || die - echo "backend: Agg" > matplotlibrc - MPLCONFIGDIR=. nosetests || die -}