* [gentoo-commits] proj/sci:master commit in: sci-biology/nistats/
@ 2016-01-01 17:33 Christoph Junghans
0 siblings, 0 replies; 4+ messages in thread
From: Christoph Junghans @ 2016-01-01 17:33 UTC (permalink / raw
To: gentoo-commits
commit: c7b0668954f1680c501d552b0f208a2a6cef0da2
Author: Horea Christian <h.chr <AT> mail <DOT> ru>
AuthorDate: Sat Dec 19 23:02:54 2015 +0000
Commit: Christoph Junghans <ottxor <AT> gentoo <DOT> org>
CommitDate: Sat Dec 19 23:02:54 2015 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=c7b06689
sci-biology/nistats: no longer depending on setuptools at runtime
Package-Manager: portage-2.2.26
sci-biology/nistats/ChangeLog | 3 +++
sci-biology/nistats/nistats-9999.ebuild | 8 ++++----
2 files changed, 7 insertions(+), 4 deletions(-)
diff --git a/sci-biology/nistats/ChangeLog b/sci-biology/nistats/ChangeLog
index 7de3c65..df4c8c9 100644
--- a/sci-biology/nistats/ChangeLog
+++ b/sci-biology/nistats/ChangeLog
@@ -2,6 +2,9 @@
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
# $Id$
+ 19 Dec 2015; Horea Christian <h.chr@mail.ru> nistats-9999.ebuild:
+ sci-biology/nistats: no longer depending on setuptools at runtime
+
*nistats-9999 (17 Dec 2015)
17 Dec 2015; Horea Christian <h.chr@mail.ru> +metadata.xml,
diff --git a/sci-biology/nistats/nistats-9999.ebuild b/sci-biology/nistats/nistats-9999.ebuild
index 385ded3..169eced 100644
--- a/sci-biology/nistats/nistats-9999.ebuild
+++ b/sci-biology/nistats/nistats-9999.ebuild
@@ -18,10 +18,10 @@ SLOT="0"
IUSE=""
KEYWORDS=""
-DEPEND="
- dev-python/setuptools[${PYTHON_USEDEP}]
- dev-python/numpy[${PYTHON_USEDEP}]"
-RDEPEND="${DEPEND}
+COMMONDEPEND="dev-python/numpy[${PYTHON_USEDEP}]"
+DEPEND="${COMMONDEPEND}
+ dev-python/setuptools[${PYTHON_USEDEP}]"
+RDEPEND="${COMMONDEPEND}
sci-libs/scipy[${PYTHON_USEDEP}]
dev-python/sympy[${PYTHON_USEDEP}]
sci-libs/nibabel[${PYTHON_USEDEP}]
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-biology/nistats/
@ 2016-01-01 17:33 Christoph Junghans
0 siblings, 0 replies; 4+ messages in thread
From: Christoph Junghans @ 2016-01-01 17:33 UTC (permalink / raw
To: gentoo-commits
commit: fe01b17cddf6aba2f8241dc214475080788e15bb
Author: Horea Christian <h.chr <AT> mail <DOT> ru>
AuthorDate: Thu Dec 17 09:01:03 2015 +0000
Commit: Christoph Junghans <ottxor <AT> gentoo <DOT> org>
CommitDate: Thu Dec 17 09:01:03 2015 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=fe01b17c
sci-biology/nistats: added new package
Package-Manager: portage-2.2.26
sci-biology/nistats/ChangeLog | 9 +++++++++
sci-biology/nistats/metadata.xml | 13 +++++++++++++
sci-biology/nistats/nistats-9999.ebuild | 30 ++++++++++++++++++++++++++++++
3 files changed, 52 insertions(+)
diff --git a/sci-biology/nistats/ChangeLog b/sci-biology/nistats/ChangeLog
new file mode 100644
index 0000000..7de3c65
--- /dev/null
+++ b/sci-biology/nistats/ChangeLog
@@ -0,0 +1,9 @@
+# ChangeLog for sci-biology/nistats
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Id$
+
+*nistats-9999 (17 Dec 2015)
+
+ 17 Dec 2015; Horea Christian <h.chr@mail.ru> +metadata.xml,
+ +nistats-9999.ebuild:
+ sci-biology/nistats: added new package
diff --git a/sci-biology/nistats/metadata.xml b/sci-biology/nistats/metadata.xml
new file mode 100644
index 0000000..3d625b2
--- /dev/null
+++ b/sci-biology/nistats/metadata.xml
@@ -0,0 +1,13 @@
+<?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">
+ Nistats is a Python module for fast and easy modeling and statistical analysis of
+ functional Magnetic Resonance Imaging data.
+</longdescription>
+</pkgmetadata>
diff --git a/sci-biology/nistats/nistats-9999.ebuild b/sci-biology/nistats/nistats-9999.ebuild
new file mode 100644
index 0000000..385ded3
--- /dev/null
+++ b/sci-biology/nistats/nistats-9999.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 )
+
+inherit distutils-r1 multilib git-r3 flag-o-matic
+
+DESCRIPTION="Neuroimaging tools for Python"
+HOMEPAGE="http://nipy.org/"
+SRC_URI=""
+EGIT_REPO_URI="https://github.com/nistats/${PN}"
+
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+KEYWORDS=""
+
+DEPEND="
+ dev-python/setuptools[${PYTHON_USEDEP}]
+ dev-python/numpy[${PYTHON_USEDEP}]"
+RDEPEND="${DEPEND}
+ sci-libs/scipy[${PYTHON_USEDEP}]
+ dev-python/sympy[${PYTHON_USEDEP}]
+ sci-libs/nibabel[${PYTHON_USEDEP}]
+ dev-python/pandas[${PYTHON_USEDEP}]
+ sci-biology/nilearn[${PYTHON_USEDEP}]
+ "
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-biology/nistats/
@ 2016-10-12 6:30 Marius Brehler
0 siblings, 0 replies; 4+ messages in thread
From: Marius Brehler @ 2016-10-12 6:30 UTC (permalink / raw
To: gentoo-commits
commit: 6bc09fc2062a164cb4e3dabffa490e3fc86f5106
Author: Horea Christian <horea.christ <AT> yandex <DOT> com>
AuthorDate: Mon Sep 26 11:02:43 2016 +0000
Commit: Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
CommitDate: Mon Sep 26 11:02:43 2016 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=6bc09fc2
sci-biology/nistats: added new dep, updated EAPI and python cmpatibility (#683)
Package-Manager: portage-2.3.1
sci-biology/nistats/nistats-9999.ebuild | 16 ++++++++++------
1 file changed, 10 insertions(+), 6 deletions(-)
diff --git a/sci-biology/nistats/nistats-9999.ebuild b/sci-biology/nistats/nistats-9999.ebuild
index 169eced..5ec78fa 100644
--- a/sci-biology/nistats/nistats-9999.ebuild
+++ b/sci-biology/nistats/nistats-9999.ebuild
@@ -1,12 +1,12 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
-EAPI=5
+EAPI=6
-PYTHON_COMPAT=( python2_7 )
+PYTHON_COMPAT=( python{2_7,3_4} )
-inherit distutils-r1 multilib git-r3 flag-o-matic
+inherit distutils-r1 git-r3
DESCRIPTION="Neuroimaging tools for Python"
HOMEPAGE="http://nipy.org/"
@@ -18,9 +18,13 @@ SLOT="0"
IUSE=""
KEYWORDS=""
-COMMONDEPEND="dev-python/numpy[${PYTHON_USEDEP}]"
+COMMONDEPEND="
+ dev-python/numpy[${PYTHON_USEDEP}]
+ dev-python/patsy[${PYTHON_USEDEP}]
+ "
DEPEND="${COMMONDEPEND}
- dev-python/setuptools[${PYTHON_USEDEP}]"
+ dev-python/setuptools[${PYTHON_USEDEP}]
+ "
RDEPEND="${COMMONDEPEND}
sci-libs/scipy[${PYTHON_USEDEP}]
dev-python/sympy[${PYTHON_USEDEP}]
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-biology/nistats/
@ 2020-09-27 4:26 Horea Christian
0 siblings, 0 replies; 4+ messages in thread
From: Horea Christian @ 2020-09-27 4:26 UTC (permalink / raw
To: gentoo-commits
commit: 88fda43fc68444ff772ea289db3deb65fec33448
Author: Horea Christian <chr <AT> chymera <DOT> eu>
AuthorDate: Sun Sep 27 04:24:58 2020 +0000
Commit: Horea Christian <horea.christ <AT> gmail <DOT> com>
CommitDate: Sun Sep 27 04:24:58 2020 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=88fda43f
sci-biology/nistats: removed deprecated package
nistats functionality will be integrated into >=sci-biology/nilearn-0.7:
https://github.com/nilearn/nistats#nistats-is-being-retired
Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Horea Christian <chr <AT> chymera.eu>
sci-biology/nistats/metadata.xml | 16 ----------------
sci-biology/nistats/nistats-9999.ebuild | 33 ---------------------------------
2 files changed, 49 deletions(-)
diff --git a/sci-biology/nistats/metadata.xml b/sci-biology/nistats/metadata.xml
deleted file mode 100644
index 5b04d23d9..000000000
--- a/sci-biology/nistats/metadata.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>horea.christ@gmail.com</email>
- <name>Horea Christian</name>
- </maintainer>
- <maintainer type="project">
- <email>sci@gentoo.org</email>
- <name>Gentoo Science Project</name>
- </maintainer>
- <longdescription lang="en">
-Nistats is a Python module for fast and easy modeling and statistical analysis of
-functional Magnetic Resonance Imaging data.
-</longdescription>
-</pkgmetadata>
diff --git a/sci-biology/nistats/nistats-9999.ebuild b/sci-biology/nistats/nistats-9999.ebuild
deleted file mode 100644
index c1ea86439..000000000
--- a/sci-biology/nistats/nistats-9999.ebuild
+++ /dev/null
@@ -1,33 +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 git-r3
-
-DESCRIPTION="Neuroimaging tools for Python"
-HOMEPAGE="http://nipy.org/"
-SRC_URI=""
-EGIT_REPO_URI="https://github.com/nistats/${PN}"
-
-LICENSE="BSD"
-SLOT="0"
-IUSE=""
-KEYWORDS=""
-
-COMMONDEPEND="
- dev-python/numpy[${PYTHON_USEDEP}]
- dev-python/patsy[${PYTHON_USEDEP}]
- "
-DEPEND="${COMMONDEPEND}
- dev-python/setuptools[${PYTHON_USEDEP}]
- "
-RDEPEND="${COMMONDEPEND}
- dev-python/scipy[${PYTHON_USEDEP}]
- dev-python/sympy[${PYTHON_USEDEP}]
- sci-libs/nibabel[${PYTHON_USEDEP}]
- dev-python/pandas[${PYTHON_USEDEP}]
- sci-biology/nilearn[${PYTHON_USEDEP}]
- "
^ permalink raw reply related [flat|nested] 4+ messages in thread
end of thread, other threads:[~2020-09-27 4:26 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-01-01 17:33 [gentoo-commits] proj/sci:master commit in: sci-biology/nistats/ Christoph Junghans
-- strict thread matches above, loose matches on Subject: below --
2016-01-01 17:33 Christoph Junghans
2016-10-12 6:30 Marius Brehler
2020-09-27 4:26 Horea Christian
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox