public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/sci:master commit in: dev-python/nilearn/
@ 2015-12-17 11:06 Justin Lecher
  0 siblings, 0 replies; 8+ messages in thread
From: Justin Lecher @ 2015-12-17 11:06 UTC (permalink / raw
  To: gentoo-commits

commit:     da3cb7011c5016b41f5cd4b6ec856099625d6a20
Author:     Horea Christian <h.chr <AT> mail <DOT> ru>
AuthorDate: Mon Oct 19 11:43:56 2015 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Mon Oct 19 11:43:56 2015 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=da3cb701

dev-python/nilearn: added plot use flag, added MY_PV, removed deprecated dependency version

Package-Manager: portage-2.2.23

 dev-python/nilearn/ChangeLog              | 5 +++++
 dev-python/nilearn/metadata.xml           | 9 ++++++---
 dev-python/nilearn/nilearn-0.1.4.1.ebuild | 9 +++++++--
 3 files changed, 18 insertions(+), 5 deletions(-)

diff --git a/dev-python/nilearn/ChangeLog b/dev-python/nilearn/ChangeLog
index 8d63e86..ad01f8f 100644
--- a/dev-python/nilearn/ChangeLog
+++ b/dev-python/nilearn/ChangeLog
@@ -2,6 +2,11 @@
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
 # $Id$
 
+  19 Oct 2015; Horea Christian <h.chr@mail.ru> metadata.xml,
+  nilearn-0.1.4.1.ebuild:
+  dev-python/nilearn: added plot use flag, added MY_PV, removed deprecated
+  dependency version
+
   19 Oct 2015; Horea Christian <h.chr@mail.ru> nilearn-9999.ebuild:
   dev-python/nilearn: dropped empty IUSE, added PYTHON_USEDEP
 

diff --git a/dev-python/nilearn/metadata.xml b/dev-python/nilearn/metadata.xml
index f7bdd3f..8b11434 100644
--- a/dev-python/nilearn/metadata.xml
+++ b/dev-python/nilearn/metadata.xml
@@ -7,10 +7,13 @@
     <name>Horea Christian</name>
   </maintainer>
   <longdescription lang="en">
-	Nilearn is a Python module for fast and easy statistical learning on NeuroImaging data.
-	It leverages the scikit-learn Python toolbox for multivariate statistics with applications 
-	such as predictive modelling, classification, decoding, or connectivity analysis.
+    Nilearn is a Python module for fast and easy statistical learning on NeuroImaging data.
+    It leverages the scikit-learn Python toolbox for multivariate statistics with applications
+    such as predictive modelling, classification, decoding, or connectivity analysis.
   </longdescription>
+  <use>
+    <flag name="plot">Adds optional dependency needed for plotting function subset.</flag>
+  </use>
   <upstream>
     <remote-id type="pypi">nilearn</remote-id>
   </upstream>

diff --git a/dev-python/nilearn/nilearn-0.1.4.1.ebuild b/dev-python/nilearn/nilearn-0.1.4.1.ebuild
index 5277778..62b5427 100644
--- a/dev-python/nilearn/nilearn-0.1.4.1.ebuild
+++ b/dev-python/nilearn/nilearn-0.1.4.1.ebuild
@@ -8,13 +8,15 @@ PYTHON_COMPAT=( python2_7 python3_4 )
 
 inherit distutils-r1
 
+MY_PV="0.1.4.post1"
 DESCRIPTION="Fast and easy statistical learning on NeuroImaging data"
 HOMEPAGE="http://nilearn.github.io/"
-SRC_URI="mirror://pypi/n/${PN}/${PN}-0.1.4.post1.tar.gz -> ${P}.tar.gz"
+SRC_URI="mirror://pypi/n/${PN}/${PN}-${MY_PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
+IUSE="+plot"
 
 DEPEND="
 	dev-python/setuptools[${PYTHON_USEDEP}]
@@ -23,4 +25,7 @@ RDEPEND="
 	dev-python/numpy[${PYTHON_USEDEP}]
 	sci-libs/scikits_learn[${PYTHON_USEDEP}]
 	sci-libs/scipy[${PYTHON_USEDEP}]
-	>=sci-libs/nibabel-1.1.0[${PYTHON_USEDEP}]"
+	sci-libs/nibabel[${PYTHON_USEDEP}]
+	plot? ( dev-python/matplotlib[${PYTHON_USEDEP}] )"
+
+S="${WORKDIR}/${PN}-${MY_PV}"


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [gentoo-commits] proj/sci:master commit in: dev-python/nilearn/
@ 2015-12-17 11:06 Justin Lecher
  0 siblings, 0 replies; 8+ messages in thread
From: Justin Lecher @ 2015-12-17 11:06 UTC (permalink / raw
  To: gentoo-commits

commit:     55c76cbf01847da2c4887679b52c414ac1aa10c5
Author:     Horea Christian <h.chr <AT> mail <DOT> ru>
AuthorDate: Thu Nov 19 00:27:15 2015 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Thu Nov 19 00:27:15 2015 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=55c76cbf

dev-python/nilearn: added test flag and test dependency

Package-Manager: portage-2.2.23

 dev-python/nilearn/ChangeLog              | 4 ++++
 dev-python/nilearn/nilearn-0.1.4.1.ebuild | 3 ++-
 dev-python/nilearn/nilearn-9999.ebuild    | 9 ++++++++-
 3 files changed, 14 insertions(+), 2 deletions(-)

diff --git a/dev-python/nilearn/ChangeLog b/dev-python/nilearn/ChangeLog
index 4cf4d12..19503f2 100644
--- a/dev-python/nilearn/ChangeLog
+++ b/dev-python/nilearn/ChangeLog
@@ -2,6 +2,10 @@
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
 # $Id$
 
+  19 Nov 2015;  <chymera@gentoo.org> nilearn-0.1.4.1.ebuild,
+  nilearn-9999.ebuild:
+  dev-python/nilearn: added test flag and test dependency
+
   14 Nov 2015; Horea Christian <h.chr@mail.ru> nilearn-0.1.4.1.ebuild:
   dev-python/nilearn: added test function
 

diff --git a/dev-python/nilearn/nilearn-0.1.4.1.ebuild b/dev-python/nilearn/nilearn-0.1.4.1.ebuild
index d8c0ded..90623f8 100644
--- a/dev-python/nilearn/nilearn-0.1.4.1.ebuild
+++ b/dev-python/nilearn/nilearn-0.1.4.1.ebuild
@@ -16,12 +16,13 @@ SRC_URI="mirror://pypi/n/${PN}/${PN}-${MY_PV}.tar.gz -> ${P}.tar.gz"
 LICENSE="BSD"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE="+plot"
+IUSE="+plot test"
 
 DEPEND="
 	dev-python/setuptools[${PYTHON_USEDEP}]
 	"
 RDEPEND="
+	test? ( dev-python/nose[${PYTHON_USEDEP}] )
 	dev-python/numpy[${PYTHON_USEDEP}]
 	sci-libs/scikits_learn[${PYTHON_USEDEP}]
 	sci-libs/scipy[${PYTHON_USEDEP}]

diff --git a/dev-python/nilearn/nilearn-9999.ebuild b/dev-python/nilearn/nilearn-9999.ebuild
index a1b3989..5282afe 100644
--- a/dev-python/nilearn/nilearn-9999.ebuild
+++ b/dev-python/nilearn/nilearn-9999.ebuild
@@ -16,14 +16,21 @@ EGIT_REPO_URI="git://github.com/nilearn/nilearn"
 LICENSE="BSD"
 SLOT="0"
 KEYWORDS=""
-IUSE="+plot"
+IUSE="+plot test"
 
 DEPEND="
 	dev-python/setuptools[${PYTHON_USEDEP}]
 	"
 RDEPEND="
+	test? ( dev-python/nose[${PYTHON_USEDEP}] )
 	dev-python/numpy[${PYTHON_USEDEP}]
 	sci-libs/scikits_learn[${PYTHON_USEDEP}]
 	sci-libs/scipy[${PYTHON_USEDEP}]
 	sci-libs/nibabel[${PYTHON_USEDEP}]
 	plot? ( dev-python/matplotlib[${PYTHON_USEDEP}] )"
+
+src_test() {
+        emake test-code
+}
+
+


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [gentoo-commits] proj/sci:master commit in: dev-python/nilearn/
@ 2015-12-17 11:06 Justin Lecher
  0 siblings, 0 replies; 8+ messages in thread
From: Justin Lecher @ 2015-12-17 11:06 UTC (permalink / raw
  To: gentoo-commits

commit:     d61f0ed4baa146e4a1bbb1c3f02df1c1613fd6c6
Author:     Horea Christian <h.chr <AT> mail <DOT> ru>
AuthorDate: Mon Oct 19 10:33:05 2015 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Mon Oct 19 10:33:05 2015 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=d61f0ed4

dev-python/nilearn: dropped empty IUSE, added PYTHON_USEDEP

Package-Manager: portage-2.2.23

 dev-python/nilearn/ChangeLog           | 3 +++
 dev-python/nilearn/nilearn-9999.ebuild | 3 +--
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/dev-python/nilearn/ChangeLog b/dev-python/nilearn/ChangeLog
index 6538bf9..8d63e86 100644
--- a/dev-python/nilearn/ChangeLog
+++ b/dev-python/nilearn/ChangeLog
@@ -2,6 +2,9 @@
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
 # $Id$
 
+  19 Oct 2015; Horea Christian <h.chr@mail.ru> nilearn-9999.ebuild:
+  dev-python/nilearn: dropped empty IUSE, added PYTHON_USEDEP
+
   19 Oct 2015; Horea Christian <h.chr@mail.ru> nilearn-0.1.4.1.ebuild:
   dev-python/nilearn: corrected format, added PYTHON_USEDEP, removed emtty IUSE
 

diff --git a/dev-python/nilearn/nilearn-9999.ebuild b/dev-python/nilearn/nilearn-9999.ebuild
index 4cb5607..4250db0 100644
--- a/dev-python/nilearn/nilearn-9999.ebuild
+++ b/dev-python/nilearn/nilearn-9999.ebuild
@@ -16,13 +16,12 @@ EGIT_REPO_URI="git://github.com/nilearn/nilearn"
 LICENSE="BSD"
 SLOT="0"
 KEYWORDS=""
-IUSE=""
 
 DEPEND="
 	dev-python/setuptools[${PYTHON_USEDEP}]
 	"
 RDEPEND="
 	dev-python/numpy[${PYTHON_USEDEP}]
-	sci-libs/scikits_learn
+	sci-libs/scikits_learn[${PYTHON_USEDEP}]
 	sci-libs/scipy[${PYTHON_USEDEP}]
 	>=sci-libs/nibabel-1.1.0[${PYTHON_USEDEP}]"


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [gentoo-commits] proj/sci:master commit in: dev-python/nilearn/
@ 2015-12-17 11:06 Justin Lecher
  0 siblings, 0 replies; 8+ messages in thread
From: Justin Lecher @ 2015-12-17 11:06 UTC (permalink / raw
  To: gentoo-commits

commit:     69abbcc9b496284a5d5cdd54ee1503ad79cb460a
Author:     Horea Christian <h.chr <AT> mail <DOT> ru>
AuthorDate: Mon Oct 19 11:48:51 2015 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Mon Oct 19 11:48:51 2015 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=69abbcc9

dev-python/nilearn: plot use flag in live ebuild as well

Package-Manager: portage-2.2.23

 dev-python/nilearn/ChangeLog           | 3 +++
 dev-python/nilearn/nilearn-9999.ebuild | 4 +++-
 2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/dev-python/nilearn/ChangeLog b/dev-python/nilearn/ChangeLog
index ad01f8f..5411f39 100644
--- a/dev-python/nilearn/ChangeLog
+++ b/dev-python/nilearn/ChangeLog
@@ -2,6 +2,9 @@
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
 # $Id$
 
+  19 Oct 2015; Horea Christian <h.chr@mail.ru> nilearn-9999.ebuild:
+  dev-python/nilearn: plot use flag in live ebuild as well
+
   19 Oct 2015; Horea Christian <h.chr@mail.ru> metadata.xml,
   nilearn-0.1.4.1.ebuild:
   dev-python/nilearn: added plot use flag, added MY_PV, removed deprecated

diff --git a/dev-python/nilearn/nilearn-9999.ebuild b/dev-python/nilearn/nilearn-9999.ebuild
index 4250db0..a1b3989 100644
--- a/dev-python/nilearn/nilearn-9999.ebuild
+++ b/dev-python/nilearn/nilearn-9999.ebuild
@@ -16,6 +16,7 @@ EGIT_REPO_URI="git://github.com/nilearn/nilearn"
 LICENSE="BSD"
 SLOT="0"
 KEYWORDS=""
+IUSE="+plot"
 
 DEPEND="
 	dev-python/setuptools[${PYTHON_USEDEP}]
@@ -24,4 +25,5 @@ RDEPEND="
 	dev-python/numpy[${PYTHON_USEDEP}]
 	sci-libs/scikits_learn[${PYTHON_USEDEP}]
 	sci-libs/scipy[${PYTHON_USEDEP}]
-	>=sci-libs/nibabel-1.1.0[${PYTHON_USEDEP}]"
+	sci-libs/nibabel[${PYTHON_USEDEP}]
+	plot? ( dev-python/matplotlib[${PYTHON_USEDEP}] )"


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [gentoo-commits] proj/sci:master commit in: dev-python/nilearn/
@ 2015-12-17 11:06 Justin Lecher
  0 siblings, 0 replies; 8+ messages in thread
From: Justin Lecher @ 2015-12-17 11:06 UTC (permalink / raw
  To: gentoo-commits

commit:     5c1421617526d2805893a1921237d766f4a04b0b
Author:     Horea Christian <h.chr <AT> mail <DOT> ru>
AuthorDate: Sat Nov 14 19:48:25 2015 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Sat Nov 14 19:48:25 2015 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=5c142161

dev-python/nilearn: added test function

Package-Manager: portage-2.2.24

 dev-python/nilearn/ChangeLog              | 3 +++
 dev-python/nilearn/nilearn-0.1.4.1.ebuild | 4 ++++
 2 files changed, 7 insertions(+)

diff --git a/dev-python/nilearn/ChangeLog b/dev-python/nilearn/ChangeLog
index 5411f39..4cf4d12 100644
--- a/dev-python/nilearn/ChangeLog
+++ b/dev-python/nilearn/ChangeLog
@@ -2,6 +2,9 @@
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
 # $Id$
 
+  14 Nov 2015; Horea Christian <h.chr@mail.ru> nilearn-0.1.4.1.ebuild:
+  dev-python/nilearn: added test function
+
   19 Oct 2015; Horea Christian <h.chr@mail.ru> nilearn-9999.ebuild:
   dev-python/nilearn: plot use flag in live ebuild as well
 

diff --git a/dev-python/nilearn/nilearn-0.1.4.1.ebuild b/dev-python/nilearn/nilearn-0.1.4.1.ebuild
index 62b5427..d8c0ded 100644
--- a/dev-python/nilearn/nilearn-0.1.4.1.ebuild
+++ b/dev-python/nilearn/nilearn-0.1.4.1.ebuild
@@ -29,3 +29,7 @@ RDEPEND="
 	plot? ( dev-python/matplotlib[${PYTHON_USEDEP}] )"
 
 S="${WORKDIR}/${PN}-${MY_PV}"
+
+src_test() {
+	emake test-code
+}


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [gentoo-commits] proj/sci:master commit in: dev-python/nilearn/
@ 2015-12-17 11:06 Justin Lecher
  0 siblings, 0 replies; 8+ messages in thread
From: Justin Lecher @ 2015-12-17 11:06 UTC (permalink / raw
  To: gentoo-commits

commit:     7070abc43df6ccda0f703ca5545b987b7f689b71
Author:     Horea Christian <h.chr <AT> mail <DOT> ru>
AuthorDate: Mon Oct 19 10:32:10 2015 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Mon Oct 19 10:32:10 2015 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=7070abc4

dev-python/nilearn: corrected format, added PYTHON_USEDEP, removed emtty IUSE

Package-Manager: portage-2.2.23

 dev-python/nilearn/ChangeLog              | 3 +++
 dev-python/nilearn/nilearn-0.1.4.1.ebuild | 5 ++---
 2 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/dev-python/nilearn/ChangeLog b/dev-python/nilearn/ChangeLog
index 425fe12..6538bf9 100644
--- a/dev-python/nilearn/ChangeLog
+++ b/dev-python/nilearn/ChangeLog
@@ -2,6 +2,9 @@
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
 # $Id$
 
+  19 Oct 2015; Horea Christian <h.chr@mail.ru> nilearn-0.1.4.1.ebuild:
+  dev-python/nilearn: corrected format, added PYTHON_USEDEP, removed emtty IUSE
+
 *nilearn-0.1.4.1 (19 Oct 2015)
 *nilearn-9999 (19 Oct 2015)
 

diff --git a/dev-python/nilearn/nilearn-0.1.4.1.ebuild b/dev-python/nilearn/nilearn-0.1.4.1.ebuild
index a7f612b..5277778 100644
--- a/dev-python/nilearn/nilearn-0.1.4.1.ebuild
+++ b/dev-python/nilearn/nilearn-0.1.4.1.ebuild
@@ -10,18 +10,17 @@ inherit distutils-r1
 
 DESCRIPTION="Fast and easy statistical learning on NeuroImaging data"
 HOMEPAGE="http://nilearn.github.io/"
-SRC_URI="mirror://pypi/n/${PN}/${PN}-0.1.4.post1.tar.gz -> ${P}.zip"
+SRC_URI="mirror://pypi/n/${PN}/${PN}-0.1.4.post1.tar.gz -> ${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE=""
 
 DEPEND="
 	dev-python/setuptools[${PYTHON_USEDEP}]
 	"
 RDEPEND="
 	dev-python/numpy[${PYTHON_USEDEP}]
-	sci-libs/scikits_learn
+	sci-libs/scikits_learn[${PYTHON_USEDEP}]
 	sci-libs/scipy[${PYTHON_USEDEP}]
 	>=sci-libs/nibabel-1.1.0[${PYTHON_USEDEP}]"


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [gentoo-commits] proj/sci:master commit in: dev-python/nilearn/
@ 2015-12-17 11:06 Justin Lecher
  0 siblings, 0 replies; 8+ messages in thread
From: Justin Lecher @ 2015-12-17 11:06 UTC (permalink / raw
  To: gentoo-commits

commit:     471cbf8ab7788764aac10f86fe8652c046446c4b
Author:     Horea Christian <h.chr <AT> mail <DOT> ru>
AuthorDate: Mon Oct 19 10:19:16 2015 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Mon Oct 19 10:19:16 2015 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=471cbf8a

dev-python/nilearn: new package

Package-Manager: portage-2.2.23

 dev-python/nilearn/ChangeLog              | 10 ++++++++++
 dev-python/nilearn/metadata.xml           | 17 +++++++++++++++++
 dev-python/nilearn/nilearn-0.1.4.1.ebuild | 27 +++++++++++++++++++++++++++
 dev-python/nilearn/nilearn-9999.ebuild    | 28 ++++++++++++++++++++++++++++
 4 files changed, 82 insertions(+)

diff --git a/dev-python/nilearn/ChangeLog b/dev-python/nilearn/ChangeLog
new file mode 100644
index 0000000..425fe12
--- /dev/null
+++ b/dev-python/nilearn/ChangeLog
@@ -0,0 +1,10 @@
+# ChangeLog for dev-python/nilearn
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Id$
+
+*nilearn-0.1.4.1 (19 Oct 2015)
+*nilearn-9999 (19 Oct 2015)
+
+  19 Oct 2015; Horea Christian <h.chr@mail.ru> +metadata.xml,
+  +nilearn-0.1.4.1.ebuild, +nilearn-9999.ebuild:
+  dev-python/nilearn: new package

diff --git a/dev-python/nilearn/metadata.xml b/dev-python/nilearn/metadata.xml
new file mode 100644
index 0000000..f7bdd3f
--- /dev/null
+++ b/dev-python/nilearn/metadata.xml
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+  <herd>sci</herd>
+  <maintainer>
+    <email>h.chr@mail.ru</email>
+    <name>Horea Christian</name>
+  </maintainer>
+  <longdescription lang="en">
+	Nilearn is a Python module for fast and easy statistical learning on NeuroImaging data.
+	It leverages the scikit-learn Python toolbox for multivariate statistics with applications 
+	such as predictive modelling, classification, decoding, or connectivity analysis.
+  </longdescription>
+  <upstream>
+    <remote-id type="pypi">nilearn</remote-id>
+  </upstream>
+</pkgmetadata>

diff --git a/dev-python/nilearn/nilearn-0.1.4.1.ebuild b/dev-python/nilearn/nilearn-0.1.4.1.ebuild
new file mode 100644
index 0000000..a7f612b
--- /dev/null
+++ b/dev-python/nilearn/nilearn-0.1.4.1.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 python3_4 )
+
+inherit distutils-r1
+
+DESCRIPTION="Fast and easy statistical learning on NeuroImaging data"
+HOMEPAGE="http://nilearn.github.io/"
+SRC_URI="mirror://pypi/n/${PN}/${PN}-0.1.4.post1.tar.gz -> ${P}.zip"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="
+	dev-python/setuptools[${PYTHON_USEDEP}]
+	"
+RDEPEND="
+	dev-python/numpy[${PYTHON_USEDEP}]
+	sci-libs/scikits_learn
+	sci-libs/scipy[${PYTHON_USEDEP}]
+	>=sci-libs/nibabel-1.1.0[${PYTHON_USEDEP}]"

diff --git a/dev-python/nilearn/nilearn-9999.ebuild b/dev-python/nilearn/nilearn-9999.ebuild
new file mode 100644
index 0000000..4cb5607
--- /dev/null
+++ b/dev-python/nilearn/nilearn-9999.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 python3_4 )
+
+inherit distutils-r1 git-r3
+
+DESCRIPTION="Fast and easy statistical learning on NeuroImaging data"
+HOMEPAGE="http://nilearn.github.io/"
+SRC_URI=""
+EGIT_REPO_URI="git://github.com/nilearn/nilearn"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS=""
+IUSE=""
+
+DEPEND="
+	dev-python/setuptools[${PYTHON_USEDEP}]
+	"
+RDEPEND="
+	dev-python/numpy[${PYTHON_USEDEP}]
+	sci-libs/scikits_learn
+	sci-libs/scipy[${PYTHON_USEDEP}]
+	>=sci-libs/nibabel-1.1.0[${PYTHON_USEDEP}]"


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [gentoo-commits] proj/sci:master commit in: dev-python/nilearn/
@ 2015-12-17 11:06 Justin Lecher
  0 siblings, 0 replies; 8+ messages in thread
From: Justin Lecher @ 2015-12-17 11:06 UTC (permalink / raw
  To: gentoo-commits

commit:     c6035dde22d4516a609f4597a686f611f19645cc
Author:     Horea Christian <h.chr <AT> mail <DOT> ru>
AuthorDate: Thu Nov 19 00:29:21 2015 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Thu Nov 19 00:29:21 2015 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=c6035dde

dev-python/nilearn: moved deps to DEPEND

Package-Manager: portage-2.2.23

 dev-python/nilearn/ChangeLog              | 4 ++++
 dev-python/nilearn/nilearn-0.1.4.1.ebuild | 2 +-
 dev-python/nilearn/nilearn-9999.ebuild    | 6 ++----
 3 files changed, 7 insertions(+), 5 deletions(-)

diff --git a/dev-python/nilearn/ChangeLog b/dev-python/nilearn/ChangeLog
index 19503f2..e3359f1 100644
--- a/dev-python/nilearn/ChangeLog
+++ b/dev-python/nilearn/ChangeLog
@@ -4,6 +4,10 @@
 
   19 Nov 2015;  <chymera@gentoo.org> nilearn-0.1.4.1.ebuild,
   nilearn-9999.ebuild:
+  dev-python/nilearn: moved deps to DEPEND
+
+  19 Nov 2015;  <chymera@gentoo.org> nilearn-0.1.4.1.ebuild,
+  nilearn-9999.ebuild:
   dev-python/nilearn: added test flag and test dependency
 
   14 Nov 2015; Horea Christian <h.chr@mail.ru> nilearn-0.1.4.1.ebuild:

diff --git a/dev-python/nilearn/nilearn-0.1.4.1.ebuild b/dev-python/nilearn/nilearn-0.1.4.1.ebuild
index 90623f8..a57bbbc 100644
--- a/dev-python/nilearn/nilearn-0.1.4.1.ebuild
+++ b/dev-python/nilearn/nilearn-0.1.4.1.ebuild
@@ -19,10 +19,10 @@ KEYWORDS="~amd64 ~x86"
 IUSE="+plot test"
 
 DEPEND="
+	test? ( dev-python/nose[${PYTHON_USEDEP}] )
 	dev-python/setuptools[${PYTHON_USEDEP}]
 	"
 RDEPEND="
-	test? ( dev-python/nose[${PYTHON_USEDEP}] )
 	dev-python/numpy[${PYTHON_USEDEP}]
 	sci-libs/scikits_learn[${PYTHON_USEDEP}]
 	sci-libs/scipy[${PYTHON_USEDEP}]

diff --git a/dev-python/nilearn/nilearn-9999.ebuild b/dev-python/nilearn/nilearn-9999.ebuild
index 5282afe..ab5a4af 100644
--- a/dev-python/nilearn/nilearn-9999.ebuild
+++ b/dev-python/nilearn/nilearn-9999.ebuild
@@ -19,10 +19,10 @@ KEYWORDS=""
 IUSE="+plot test"
 
 DEPEND="
+	test? ( dev-python/nose[${PYTHON_USEDEP}] )
 	dev-python/setuptools[${PYTHON_USEDEP}]
 	"
 RDEPEND="
-	test? ( dev-python/nose[${PYTHON_USEDEP}] )
 	dev-python/numpy[${PYTHON_USEDEP}]
 	sci-libs/scikits_learn[${PYTHON_USEDEP}]
 	sci-libs/scipy[${PYTHON_USEDEP}]
@@ -30,7 +30,5 @@ RDEPEND="
 	plot? ( dev-python/matplotlib[${PYTHON_USEDEP}] )"
 
 src_test() {
-        emake test-code
+	emake test-code
 }
-
-


^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2015-12-17 11:06 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-12-17 11:06 [gentoo-commits] proj/sci:master commit in: dev-python/nilearn/ Justin Lecher
  -- strict thread matches above, loose matches on Subject: below --
2015-12-17 11:06 Justin Lecher
2015-12-17 11:06 Justin Lecher
2015-12-17 11:06 Justin Lecher
2015-12-17 11:06 Justin Lecher
2015-12-17 11:06 Justin Lecher
2015-12-17 11:06 Justin Lecher
2015-12-17 11:06 Justin Lecher

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox