Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: sci-biology/nilearn/
Date: Mon, 04 Jul 2016 20:23:44
Message-Id: 1467634827.73ba904d8c2495c8ba640c5b48a9a26f23d2a1f6.jlec@gentoo
1 commit: 73ba904d8c2495c8ba640c5b48a9a26f23d2a1f6
2 Author: Horea Christian <horea.christ <AT> yandex <DOT> com>
3 AuthorDate: Mon Jul 4 12:20:27 2016 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Mon Jul 4 12:20:27 2016 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=73ba904d
7
8 sci-biology/nilearn: version bump
9
10 Package-Manager: portage-2.3.0_rc1
11
12 sci-biology/nilearn/nilearn-0.2.5.ebuild | 33 ++++++++++++++++++++++++++++++++
13 1 file changed, 33 insertions(+)
14
15 diff --git a/sci-biology/nilearn/nilearn-0.2.5.ebuild b/sci-biology/nilearn/nilearn-0.2.5.ebuild
16 new file mode 100644
17 index 0000000..0d3b294
18 --- /dev/null
19 +++ b/sci-biology/nilearn/nilearn-0.2.5.ebuild
20 @@ -0,0 +1,33 @@
21 +# Copyright 1999-2016 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +# $Id$
24 +
25 +EAPI=6
26 +
27 +PYTHON_COMPAT=( python2_7 python3_4 )
28 +
29 +inherit distutils-r1
30 +
31 +DESCRIPTION="Fast and easy statistical learning on NeuroImaging data"
32 +HOMEPAGE="http://nilearn.github.io/"
33 +SRC_URI="https://github.com/nilearn/nilearn/archive/${PV}.tar.gz -> ${P}.tar.gz"
34 +
35 +LICENSE="BSD"
36 +SLOT="0"
37 +KEYWORDS="~amd64 ~x86"
38 +IUSE="+plot test"
39 +
40 +DEPEND="
41 + test? ( dev-python/nose[${PYTHON_USEDEP}] )
42 + dev-python/setuptools[${PYTHON_USEDEP}]
43 + "
44 +RDEPEND="
45 + dev-python/numpy[${PYTHON_USEDEP}]
46 + sci-libs/scikits_learn[${PYTHON_USEDEP}]
47 + sci-libs/scipy[${PYTHON_USEDEP}]
48 + sci-libs/nibabel[${PYTHON_USEDEP}]
49 + plot? ( dev-python/matplotlib[${PYTHON_USEDEP}] )"
50 +
51 +src_test() {
52 + emake test-code
53 +}