Gentoo Archives: gentoo-commits

From: Horea Christian <horea.christ@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: sci-libs/nibabel/
Date: Mon, 31 Dec 2018 03:51:54
Message-Id: 1546228295.ff908446fc453f2bf2746ec68fea85f4d4ba69c9.chymera@gentoo
1 commit: ff908446fc453f2bf2746ec68fea85f4d4ba69c9
2 Author: Horea Christian <horea.christ <AT> yandex <DOT> com>
3 AuthorDate: Mon Dec 31 03:51:35 2018 +0000
4 Commit: Horea Christian <horea.christ <AT> gmail <DOT> com>
5 CommitDate: Mon Dec 31 03:51:35 2018 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=ff908446
7
8 sci-libs/nibabel: removed deprecated version
9
10 Signed-off-by: Horea Christian <horea.christ <AT> yandex.com>
11 Package-Manager: Portage-2.3.52, Repoman-2.3.12
12
13 sci-libs/nibabel/nibabel-1.3.0.ebuild | 44 -----------------------------------
14 1 file changed, 44 deletions(-)
15
16 diff --git a/sci-libs/nibabel/nibabel-1.3.0.ebuild b/sci-libs/nibabel/nibabel-1.3.0.ebuild
17 deleted file mode 100644
18 index 836f2e65a..000000000
19 --- a/sci-libs/nibabel/nibabel-1.3.0.ebuild
20 +++ /dev/null
21 @@ -1,44 +0,0 @@
22 -# Copyright 1999-2016 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=6
26 -
27 -PYTHON_COMPAT=( python{2_7,3_4} )
28 -
29 -inherit distutils-r1
30 -
31 -DESCRIPTION="Access a cacophony of neuro-imaging file formats"
32 -HOMEPAGE="http://nipy.org/nibabel/"
33 -SRC_URI="https://github.com/nipy/nibabel/archive/${PV}.tar.gz -> ${P}.tar.gz"
34 -
35 -KEYWORDS="~amd64 ~x86"
36 -
37 -LICENSE="MIT"
38 -SLOT="0"
39 -IUSE="dicom doc test"
40 -
41 -RDEPEND="
42 - dev-python/numpy[${PYTHON_USEDEP}]
43 - sci-libs/scipy[${PYTHON_USEDEP}]
44 - dev-python/mock[${PYTHON_USEDEP}]
45 - dicom? (
46 - sci-libs/pydicom[${PYTHON_USEDEP}]
47 - dev-python/pillow[${PYTHON_USEDEP}]
48 - )
49 - "
50 -
51 -DEPEND="
52 - dev-python/setuptools[${PYTHON_USEDEP}]
53 - test? (
54 - ${RDEPEND}
55 - dev-python/nose[${PYTHON_USEDEP}]
56 - )
57 - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
58 - "
59 -
60 -python_test() {
61 - distutils-r1_install_for_testing
62 - cd "${BUILD_DIR}" || die
63 - echo "backend: Agg" > matplotlibrc
64 - MPLCONFIGDIR=. nosetests || die
65 -}