public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/sci:master commit in: sci-biology/mne-python/
@ 2013-11-18 20:01 Justin Lecher
  0 siblings, 0 replies; 5+ messages in thread
From: Justin Lecher @ 2013-11-18 20:01 UTC (permalink / raw
  To: gentoo-commits

commit:     749d2736e6d5967d7871b9989a10dbfa02f90853
Author:     Martin Luessi <mluessi <AT> nmr <DOT> mgh <DOT> harvard <DOT> edu>
AuthorDate: Tue Nov 12 15:18:42 2013 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Mon Nov 18 17:19:35 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=749d2736

ENH: mne-python ebuild

---
 sci-biology/mne-python/mne-python-9999.ebuild | 53 +++++++++++++++++++++++++++
 1 file changed, 53 insertions(+)

diff --git a/sci-biology/mne-python/mne-python-9999.ebuild b/sci-biology/mne-python/mne-python-9999.ebuild
new file mode 100644
index 0000000..32c71ba
--- /dev/null
+++ b/sci-biology/mne-python/mne-python-9999.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2013 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI="5"
+
+PYTHON_COMPAT=( python{2_6,2_7} )
+
+inherit distutils-r1 git-2 virtualx
+
+DESCRIPTION="Python package for MEG and EEG data analysis"
+HOMEPAGE="http://martinos.org/mne/mne-python.html"
+EGIT_REPO_URI="https://github.com/mne-tools/mne-python.git"
+
+LICENSE="BSD"
+SLOT="0"
+IUSE="test cuda"
+
+RDEPEND="
+    dev-python/numpy[${PYTHON_USEDEP}]
+    sci-libs/scipy[${PYTHON_USEDEP}]
+    sci-libs/scikits_learn[${PYTHON_USEDEP}]
+    dev-python/joblib[${PYTHON_USEDEP}]
+    sci-libs/nibabel[${PYTHON_USEDEP}]
+    sci-biology/pysurfer[${PYTHON_USEDEP}]
+    sci-visualization/mayavi[${PYTHON_USEDEP}]
+    dev-python/matplotlib[${PYTHON_USEDEP}]
+    cuda? (
+        dev-python/pycuda[${PYTHON_USEDEP}]
+        dev-python/scikits-cuda[${PYTHON_USEDEP}]
+    )
+"
+
+DEPEND="
+    test? ( dev-python/nose ${RDEPEND} )
+"
+
+run_test() {
+    PYTHONPATH=. MNE_SKIP_SAMPLE_DATASET_TESTS=1 nosetests-${EPYTHON} -v mne
+}
+
+python_test() {
+    distutils_install_for_testing
+    esetup.py install --root="${T}/test-${EPYTHON}" \
+        --no-compile || die
+    # Link to test data that won't be included in the final installation
+    TEST_DIR="${T}/test-${EPYTHON}/$(python_get_sitedir)" || die
+    cd ${S}
+    find . -type d -name data -exec ln -s ${S}/{} ${TEST_DIR}/{} \;
+    cd ${TEST_DIR}
+    VIRTUALX_COMMAND="run_test"
+    virtualmake || die
+}


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

* [gentoo-commits] proj/sci:master commit in: sci-biology/mne-python/
@ 2013-11-18 20:01 Justin Lecher
  0 siblings, 0 replies; 5+ messages in thread
From: Justin Lecher @ 2013-11-18 20:01 UTC (permalink / raw
  To: gentoo-commits

commit:     2e5b0ff0a6f7097f8511505b12c9438780749ca5
Author:     Martin Luessi <mluessi <AT> nmr <DOT> mgh <DOT> harvard <DOT> edu>
AuthorDate: Mon Nov 18 19:02:32 2013 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Mon Nov 18 19:02:32 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=2e5b0ff0

cleanup

---
 sci-biology/mne-python/mne-python-9999.ebuild | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/sci-biology/mne-python/mne-python-9999.ebuild b/sci-biology/mne-python/mne-python-9999.ebuild
index 32c71ba..5836216 100644
--- a/sci-biology/mne-python/mne-python-9999.ebuild
+++ b/sci-biology/mne-python/mne-python-9999.ebuild
@@ -6,7 +6,7 @@ EAPI="5"
 
 PYTHON_COMPAT=( python{2_6,2_7} )
 
-inherit distutils-r1 git-2 virtualx
+inherit distutils-r1 git-r3 virtualx
 
 DESCRIPTION="Python package for MEG and EEG data analysis"
 HOMEPAGE="http://martinos.org/mne/mne-python.html"
@@ -15,6 +15,7 @@ EGIT_REPO_URI="https://github.com/mne-tools/mne-python.git"
 LICENSE="BSD"
 SLOT="0"
 IUSE="test cuda"
+KEYWORDS=""
 
 RDEPEND="
     dev-python/numpy[${PYTHON_USEDEP}]
@@ -36,18 +37,17 @@ DEPEND="
 "
 
 run_test() {
-    PYTHONPATH=. MNE_SKIP_SAMPLE_DATASET_TESTS=1 nosetests-${EPYTHON} -v mne
+    PYTHONPATH=. MNE_SKIP_SAMPLE_DATASET_TESTS=1 nosetests -v mne
 }
 
 python_test() {
     distutils_install_for_testing
-    esetup.py install --root="${T}/test-${EPYTHON}" \
-        --no-compile || die
+    esetup.py install --root="${T}/test-${EPYTHON}" --no-compile
     # Link to test data that won't be included in the final installation
-    TEST_DIR="${T}/test-${EPYTHON}/$(python_get_sitedir)" || die
-    cd ${S}
-    find . -type d -name data -exec ln -s ${S}/{} ${TEST_DIR}/{} \;
-    cd ${TEST_DIR}
+    local TEST_DIR="${T}/test-${EPYTHON}/$(python_get_sitedir)"
+    cd ${S} || die
+    find . -type d -name data -exec ln -s ${S}/{} ${TEST_DIR}/{} \; || die
+    cd ${TEST_DIR} || die
     VIRTUALX_COMMAND="run_test"
-    virtualmake || die
+    virtualmake
 }


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

* [gentoo-commits] proj/sci:master commit in: sci-biology/mne-python/
@ 2013-11-26 22:30 Sebastien Fabbro
  0 siblings, 0 replies; 5+ messages in thread
From: Sebastien Fabbro @ 2013-11-26 22:30 UTC (permalink / raw
  To: gentoo-commits

commit:     736ca327827cde119169d41d3b569f27850092c6
Author:     Martin Luessi <mluessi <AT> nmr <DOT> mgh <DOT> harvard <DOT> edu>
AuthorDate: Tue Nov 26 21:30:53 2013 +0000
Commit:     Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
CommitDate: Tue Nov 26 21:30:53 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=736ca327

Version bump: mne-python 0.7

---
 sci-biology/mne-python/mne-python-0.7.ebuild | 55 ++++++++++++++++++++++++++++
 1 file changed, 55 insertions(+)

diff --git a/sci-biology/mne-python/mne-python-0.7.ebuild b/sci-biology/mne-python/mne-python-0.7.ebuild
new file mode 100644
index 0000000..ad1fa8b
--- /dev/null
+++ b/sci-biology/mne-python/mne-python-0.7.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2013 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI="5"
+
+PYTHON_COMPAT=( python{2_6,2_7} )
+
+inherit distutils-r1 virtualx
+
+DESCRIPTION="Python package for MEG and EEG data analysis"
+HOMEPAGE="http://martinos.org/mne/mne-python.html"
+SRC_URI="https://github.com/mne-tools/mne-python/archive/v${PV}.zip"
+
+LICENSE="BSD"
+SLOT="0"
+IUSE="test cuda"
+KEYWORDS="~x86 ~amd64"
+
+RDEPEND="
+    dev-python/numpy[${PYTHON_USEDEP}]
+    sci-libs/scipy[${PYTHON_USEDEP}]
+    sci-libs/scikits_learn[${PYTHON_USEDEP}]
+    dev-python/joblib[${PYTHON_USEDEP}]
+    sci-libs/nibabel[${PYTHON_USEDEP}]
+    sci-biology/pysurfer[${PYTHON_USEDEP}]
+    sci-visualization/mayavi[${PYTHON_USEDEP}]
+    dev-python/matplotlib[${PYTHON_USEDEP}]
+    cuda? (
+        dev-python/pycuda[${PYTHON_USEDEP}]
+        dev-python/scikits-cuda[${PYTHON_USEDEP}]
+    )
+"
+
+DEPEND="
+    test? ( dev-python/nose ${RDEPEND} )
+"
+
+S="${WORKDIR}/mne-python-${PV}"
+
+run_test() {
+    PYTHONPATH=. MNE_SKIP_SAMPLE_DATASET_TESTS=1 nosetests -v mne
+}
+
+python_test() {
+    distutils_install_for_testing
+    esetup.py install --root="${T}/test-${EPYTHON}" --no-compile
+    # Link to test data that won't be included in the final installation
+    local TEST_DIR="${T}/test-${EPYTHON}/$(python_get_sitedir)"
+    cd ${S} || die
+    find . -type d -name data -exec ln -s ${S}/{} ${TEST_DIR}/{} \; || die
+    cd ${TEST_DIR} || die
+    VIRTUALX_COMMAND="run_test"
+    virtualmake
+}


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

* [gentoo-commits] proj/sci:master commit in: sci-biology/mne-python/
@ 2014-01-06 19:57 Justin Lecher
  0 siblings, 0 replies; 5+ messages in thread
From: Justin Lecher @ 2014-01-06 19:57 UTC (permalink / raw
  To: gentoo-commits

commit:     7c1a01cccdec773839cb0c3e323ad24d949e3c50
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Mon Jan  6 19:47:52 2014 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Mon Jan  6 19:47:52 2014 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=7c1a01cc

sci-biology/mne-python: Add missing metadata.xml; drop USE=cuda; fix python deps

Package-Manager: portage-2.2.8

---
 sci-biology/mne-python/ChangeLog              |  8 ++++
 sci-biology/mne-python/metadata.xml           |  5 +++
 sci-biology/mne-python/mne-python-0.7.ebuild  | 56 ++++++++++++++-------------
 sci-biology/mne-python/mne-python-9999.ebuild | 56 ++++++++++++++-------------
 4 files changed, 71 insertions(+), 54 deletions(-)

diff --git a/sci-biology/mne-python/ChangeLog b/sci-biology/mne-python/ChangeLog
new file mode 100644
index 0000000..da32b15
--- /dev/null
+++ b/sci-biology/mne-python/ChangeLog
@@ -0,0 +1,8 @@
+# ChangeLog for sci-biology/mne-python
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: $
+
+  06 Jan 2014; Justin Lecher <jlec@gentoo.org> mne-python-0.7.ebuild,
+  mne-python-9999.ebuild, +metadata.xml:
+  Add missing metadata.xml; drop USE=cuda; fix python deps
+

diff --git a/sci-biology/mne-python/metadata.xml b/sci-biology/mne-python/metadata.xml
new file mode 100644
index 0000000..897aa2e
--- /dev/null
+++ b/sci-biology/mne-python/metadata.xml
@@ -0,0 +1,5 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+  <herd>sci</herd>
+</pkgmetadata>

diff --git a/sci-biology/mne-python/mne-python-0.7.ebuild b/sci-biology/mne-python/mne-python-0.7.ebuild
index ad1fa8b..31385eb 100644
--- a/sci-biology/mne-python/mne-python-0.7.ebuild
+++ b/sci-biology/mne-python/mne-python-0.7.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Header: $
 
 EAPI="5"
 
-PYTHON_COMPAT=( python{2_6,2_7} )
+PYTHON_COMPAT=( python2_7 )
 
 inherit distutils-r1 virtualx
 
@@ -14,42 +14,44 @@ SRC_URI="https://github.com/mne-tools/mne-python/archive/v${PV}.zip"
 
 LICENSE="BSD"
 SLOT="0"
-IUSE="test cuda"
+IUSE="test"
+#IUSE="cuda test"
 KEYWORDS="~x86 ~amd64"
 
 RDEPEND="
-    dev-python/numpy[${PYTHON_USEDEP}]
-    sci-libs/scipy[${PYTHON_USEDEP}]
-    sci-libs/scikits_learn[${PYTHON_USEDEP}]
-    dev-python/joblib[${PYTHON_USEDEP}]
-    sci-libs/nibabel[${PYTHON_USEDEP}]
-    sci-biology/pysurfer[${PYTHON_USEDEP}]
-    sci-visualization/mayavi[${PYTHON_USEDEP}]
-    dev-python/matplotlib[${PYTHON_USEDEP}]
-    cuda? (
-        dev-python/pycuda[${PYTHON_USEDEP}]
-        dev-python/scikits-cuda[${PYTHON_USEDEP}]
-    )
-"
+	dev-python/numpy[${PYTHON_USEDEP}]
+	sci-libs/scipy[${PYTHON_USEDEP}]
+	sci-libs/scikits_learn[${PYTHON_USEDEP}]
+	dev-python/joblib[${PYTHON_USEDEP}]
+	sci-libs/nibabel[${PYTHON_USEDEP}]
+	sci-biology/pysurfer[${PYTHON_USEDEP}]
+	sci-visualization/mayavi
+	dev-python/matplotlib[${PYTHON_USEDEP}]"
+
+#	cuda? (
+#		dev-python/pycuda[${PYTHON_USEDEP}]
+#		dev-python/scikits-cuda[${PYTHON_USEDEP}]
+#	)
+#"
 
 DEPEND="
-    test? ( dev-python/nose ${RDEPEND} )
+	test? ( dev-python/nose ${RDEPEND} )
 "
 
 S="${WORKDIR}/mne-python-${PV}"
 
 run_test() {
-    PYTHONPATH=. MNE_SKIP_SAMPLE_DATASET_TESTS=1 nosetests -v mne
+	PYTHONPATH=. MNE_SKIP_SAMPLE_DATASET_TESTS=1 nosetests -v mne
 }
 
 python_test() {
-    distutils_install_for_testing
-    esetup.py install --root="${T}/test-${EPYTHON}" --no-compile
-    # Link to test data that won't be included in the final installation
-    local TEST_DIR="${T}/test-${EPYTHON}/$(python_get_sitedir)"
-    cd ${S} || die
-    find . -type d -name data -exec ln -s ${S}/{} ${TEST_DIR}/{} \; || die
-    cd ${TEST_DIR} || die
-    VIRTUALX_COMMAND="run_test"
-    virtualmake
+	distutils_install_for_testing
+	esetup.py install --root="${T}/test-${EPYTHON}" --no-compile
+	# Link to test data that won't be included in the final installation
+	local TEST_DIR="${T}/test-${EPYTHON}/$(python_get_sitedir)"
+	cd "${S}" || die
+	find . -type d -name data -exec ln -s "${S}"/{} ${TEST_DIR}/{} \; || die
+	cd ${TEST_DIR} || die
+	VIRTUALX_COMMAND="run_test"
+	virtualmake
 }

diff --git a/sci-biology/mne-python/mne-python-9999.ebuild b/sci-biology/mne-python/mne-python-9999.ebuild
index 5836216..2403e2c 100644
--- a/sci-biology/mne-python/mne-python-9999.ebuild
+++ b/sci-biology/mne-python/mne-python-9999.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Header: $
 
 EAPI="5"
 
-PYTHON_COMPAT=( python{2_6,2_7} )
+PYTHON_COMPAT=( python2_7 )
 
 inherit distutils-r1 git-r3 virtualx
 
@@ -14,40 +14,42 @@ EGIT_REPO_URI="https://github.com/mne-tools/mne-python.git"
 
 LICENSE="BSD"
 SLOT="0"
-IUSE="test cuda"
+IUSE="test"
+#IUSE="cuda test"
 KEYWORDS=""
 
 RDEPEND="
-    dev-python/numpy[${PYTHON_USEDEP}]
-    sci-libs/scipy[${PYTHON_USEDEP}]
-    sci-libs/scikits_learn[${PYTHON_USEDEP}]
-    dev-python/joblib[${PYTHON_USEDEP}]
-    sci-libs/nibabel[${PYTHON_USEDEP}]
-    sci-biology/pysurfer[${PYTHON_USEDEP}]
-    sci-visualization/mayavi[${PYTHON_USEDEP}]
-    dev-python/matplotlib[${PYTHON_USEDEP}]
-    cuda? (
-        dev-python/pycuda[${PYTHON_USEDEP}]
-        dev-python/scikits-cuda[${PYTHON_USEDEP}]
-    )
-"
+	dev-python/numpy[${PYTHON_USEDEP}]
+	sci-libs/scipy[${PYTHON_USEDEP}]
+	sci-libs/scikits_learn[${PYTHON_USEDEP}]
+	dev-python/joblib[${PYTHON_USEDEP}]
+	sci-libs/nibabel[${PYTHON_USEDEP}]
+	sci-biology/pysurfer[${PYTHON_USEDEP}]
+	sci-visualization/mayavi
+	dev-python/matplotlib[${PYTHON_USEDEP}]"
+
+#	cuda? (
+#		dev-python/pycuda[${PYTHON_USEDEP}]
+#		dev-python/scikits-cuda[${PYTHON_USEDEP}]
+#	)
+#"
 
 DEPEND="
-    test? ( dev-python/nose ${RDEPEND} )
+	test? ( dev-python/nose ${RDEPEND} )
 "
 
 run_test() {
-    PYTHONPATH=. MNE_SKIP_SAMPLE_DATASET_TESTS=1 nosetests -v mne
+	PYTHONPATH=. MNE_SKIP_SAMPLE_DATASET_TESTS=1 nosetests -v mne
 }
 
 python_test() {
-    distutils_install_for_testing
-    esetup.py install --root="${T}/test-${EPYTHON}" --no-compile
-    # Link to test data that won't be included in the final installation
-    local TEST_DIR="${T}/test-${EPYTHON}/$(python_get_sitedir)"
-    cd ${S} || die
-    find . -type d -name data -exec ln -s ${S}/{} ${TEST_DIR}/{} \; || die
-    cd ${TEST_DIR} || die
-    VIRTUALX_COMMAND="run_test"
-    virtualmake
+	distutils_install_for_testing
+	esetup.py install --root="${T}/test-${EPYTHON}" --no-compile
+	# Link to test data that won't be included in the final installation
+	local TEST_DIR="${T}/test-${EPYTHON}/$(python_get_sitedir)"
+	cd "${S}" || die
+	find . -type d -name data -exec ln -s "${S}"/{} ${TEST_DIR}/{} \; || die
+	cd ${TEST_DIR} || die
+	VIRTUALX_COMMAND="run_test"
+	virtualmake
 }


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

* [gentoo-commits] proj/sci:master commit in: sci-biology/mne-python/
@ 2020-09-26  9:18 Horea Christian
  0 siblings, 0 replies; 5+ messages in thread
From: Horea Christian @ 2020-09-26  9:18 UTC (permalink / raw
  To: gentoo-commits

commit:     f5b04b681df6b6acb9a840eea614905639b6e1a1
Author:     Horea Christian <chr <AT> chymera <DOT> eu>
AuthorDate: Sat Sep 26 09:18:08 2020 +0000
Commit:     Horea Christian <horea.christ <AT> gmail <DOT> com>
CommitDate: Sat Sep 26 09:18:08 2020 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=f5b04b68

sci-biology/mne-python: removed package with unavailable dep

mne-python needs mayavi. Unless we can distribute that we can't
distribute this.

Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Horea Christian <chr <AT> chymera.eu>

 sci-biology/mne-python/metadata.xml           | 11 ------
 sci-biology/mne-python/mne-python-0.7.ebuild  | 56 ---------------------------
 sci-biology/mne-python/mne-python-9999.ebuild | 54 --------------------------
 3 files changed, 121 deletions(-)

diff --git a/sci-biology/mne-python/metadata.xml b/sci-biology/mne-python/metadata.xml
deleted file mode 100644
index d9ac16118..000000000
--- a/sci-biology/mne-python/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-	<maintainer type="project">
-		<email>sci@gentoo.org</email>
-		<name>Gentoo Science Project</name>
-	</maintainer>
-	<upstream>
-		<remote-id type="github">mne-tools/mne-python</remote-id>
-	</upstream>
-</pkgmetadata>

diff --git a/sci-biology/mne-python/mne-python-0.7.ebuild b/sci-biology/mne-python/mne-python-0.7.ebuild
deleted file mode 100644
index 2b67a1330..000000000
--- a/sci-biology/mne-python/mne-python-0.7.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1 virtualx
-
-DESCRIPTION="Python package for MEG and EEG data analysis"
-HOMEPAGE="http://martinos.org/mne/mne-python.html"
-SRC_URI="https://github.com/mne-tools/mne-python/archive/v${PV}.zip"
-
-LICENSE="BSD"
-SLOT="0"
-IUSE="test"
-#IUSE="cuda test"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="
-	dev-python/numpy[${PYTHON_USEDEP}]
-	dev-python/scipy[${PYTHON_USEDEP}]
-	sci-libs/scikits_learn[${PYTHON_USEDEP}]
-	dev-python/joblib[${PYTHON_USEDEP}]
-	sci-libs/nibabel[${PYTHON_USEDEP}]
-	sci-biology/pysurfer[${PYTHON_USEDEP}]
-	sci-visualization/mayavi
-	dev-python/matplotlib[${PYTHON_USEDEP}]"
-
-#	cuda? (
-#		dev-python/pycuda[${PYTHON_USEDEP}]
-#		dev-python/scikits-cuda[${PYTHON_USEDEP}]
-#	)
-#"
-
-DEPEND="
-	test? ( dev-python/nose ${RDEPEND} )
-"
-
-S="${WORKDIR}/mne-python-${PV}"
-
-run_test() {
-	PYTHONPATH=. MNE_SKIP_SAMPLE_DATASET_TESTS=1 nosetests -v mne
-}
-
-python_test() {
-	distutils_install_for_testing
-	esetup.py install --root="${T}/test-${EPYTHON}" --no-compile
-	# Link to test data that won't be included in the final installation
-	local TEST_DIR="${T}/test-${EPYTHON}/$(python_get_sitedir)"
-	cd "${S}" || die
-	find . -type d -name data -exec ln -s "${S}"/{} ${TEST_DIR}/{} \; || die
-	cd ${TEST_DIR} || die
-	VIRTUALX_COMMAND="run_test"
-	virtualmake
-}

diff --git a/sci-biology/mne-python/mne-python-9999.ebuild b/sci-biology/mne-python/mne-python-9999.ebuild
deleted file mode 100644
index 2c90c0d32..000000000
--- a/sci-biology/mne-python/mne-python-9999.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1 git-r3 virtualx
-
-DESCRIPTION="Python package for MEG and EEG data analysis"
-HOMEPAGE="http://martinos.org/mne/mne-python.html"
-EGIT_REPO_URI="https://github.com/mne-tools/mne-python.git"
-
-LICENSE="BSD"
-SLOT="0"
-IUSE="test"
-#IUSE="cuda test"
-KEYWORDS=""
-
-RDEPEND="
-	dev-python/numpy[${PYTHON_USEDEP}]
-	dev-python/scipy[${PYTHON_USEDEP}]
-	sci-libs/scikits_learn[${PYTHON_USEDEP}]
-	dev-python/joblib[${PYTHON_USEDEP}]
-	sci-libs/nibabel[${PYTHON_USEDEP}]
-	sci-biology/pysurfer[${PYTHON_USEDEP}]
-	sci-visualization/mayavi
-	dev-python/matplotlib[${PYTHON_USEDEP}]"
-
-#	cuda? (
-#		dev-python/pycuda[${PYTHON_USEDEP}]
-#		dev-python/scikits-cuda[${PYTHON_USEDEP}]
-#	)
-#"
-
-DEPEND="
-	test? ( dev-python/nose ${RDEPEND} )
-"
-
-run_test() {
-	PYTHONPATH=. MNE_SKIP_SAMPLE_DATASET_TESTS=1 nosetests -v mne
-}
-
-python_test() {
-	distutils_install_for_testing
-	esetup.py install --root="${T}/test-${EPYTHON}" --no-compile
-	# Link to test data that won't be included in the final installation
-	local TEST_DIR="${T}/test-${EPYTHON}/$(python_get_sitedir)"
-	cd "${S}" || die
-	find . -type d -name data -exec ln -s "${S}"/{} ${TEST_DIR}/{} \; || die
-	cd ${TEST_DIR} || die
-	VIRTUALX_COMMAND="run_test"
-	virtualmake
-}


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

end of thread, other threads:[~2020-09-26  9:19 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-11-18 20:01 [gentoo-commits] proj/sci:master commit in: sci-biology/mne-python/ Justin Lecher
  -- strict thread matches above, loose matches on Subject: below --
2013-11-18 20:01 Justin Lecher
2013-11-26 22:30 Sebastien Fabbro
2014-01-06 19:57 Justin Lecher
2020-09-26  9:18 Horea Christian

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