Gentoo Archives: gentoo-commits

From: Marius Brehler <marbre@××××××××××××××.de>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: sci-biology/nitime/
Date: Wed, 12 Oct 2016 06:30:38
Message-Id: 1474636567.ac62b0695c666fd4b67cd31949ddc985c9aa32ad.marbre@gentoo
1 commit: ac62b0695c666fd4b67cd31949ddc985c9aa32ad
2 Author: Horea Christian <horea.christ <AT> yandex <DOT> com>
3 AuthorDate: Fri Sep 23 13:16:07 2016 +0000
4 Commit: Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
5 CommitDate: Fri Sep 23 13:16:07 2016 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=ac62b069
7
8 sci-biology/nitime: new ebuild (#679)
9
10 Package-Manager: portage-2.3.0
11
12 sci-biology/nitime/metadata.xml | 19 +++++++++++++++++
13 sci-biology/nitime/nitime-0.6.ebuild | 39 +++++++++++++++++++++++++++++++++++
14 sci-biology/nitime/nitime-9999.ebuild | 38 ++++++++++++++++++++++++++++++++++
15 3 files changed, 96 insertions(+)
16
17 diff --git a/sci-biology/nitime/metadata.xml b/sci-biology/nitime/metadata.xml
18 new file mode 100644
19 index 0000000..549788b
20 --- /dev/null
21 +++ b/sci-biology/nitime/metadata.xml
22 @@ -0,0 +1,19 @@
23 +<?xml version="1.0" encoding="UTF-8"?>
24 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
25 +<pkgmetadata>
26 + <maintainer type="person">
27 + <email>horea.christ@×××××.com</email>
28 + <name>Horea Christian</name>
29 + </maintainer>
30 + <maintainer type="project">
31 + <email>sci@g.o</email>
32 + <name>Gentoo Science Project</name>
33 + </maintainer>
34 + <longdescription lang="en">
35 + Nitime is a library for time-series analysis of data from neuroscience experiments
36 + in both the time and spectral domains.
37 + </longdescription>
38 + <upstream>
39 + <remote-id type="github">nipy/nitime</remote-id>
40 + </upstream>
41 +</pkgmetadata>
42
43 diff --git a/sci-biology/nitime/nitime-0.6.ebuild b/sci-biology/nitime/nitime-0.6.ebuild
44 new file mode 100644
45 index 0000000..59b578a
46 --- /dev/null
47 +++ b/sci-biology/nitime/nitime-0.6.ebuild
48 @@ -0,0 +1,39 @@
49 +# Copyright 1999-2016 Gentoo Foundation
50 +# Distributed under the terms of the GNU General Public License v2
51 +# $Id$
52 +
53 +EAPI=6
54 +
55 +PYTHON_COMPAT=( python{2_7,3_4,3_5} )
56 +
57 +inherit distutils-r1
58 +
59 +DESCRIPTION="Time-series analysis of neuroscience data"
60 +HOMEPAGE="http://nipy.org/nitime/index.html"
61 +SRC_URI="https://github.com/nipy/nitime/archive/rel/${PV}.tar.gz -> ${P}.tar.gz"
62 +
63 +LICENSE="BSD"
64 +SLOT="0"
65 +KEYWORDS="~amd64 ~x86"
66 +IUSE="test"
67 +
68 +COMMON_DEPEND="
69 + dev-python/numpy[${PYTHON_USEDEP}]
70 + dev-python/matplotlib[${PYTHON_USEDEP}]
71 + sci-libs/scipy[${PYTHON_USEDEP}]
72 + "
73 +DEPEND="
74 + test? ( dev-python/nose[${PYTHON_USEDEP}] )
75 + dev-python/setuptools[${PYTHON_USEDEP}]
76 + "
77 +RDEPEND="
78 + ${COMMON_DEPEND}
79 + dev-python/networkx[${PYTHON_USEDEP}]
80 + sci-libs/nibabel[${PYTHON_USEDEP}]
81 + "
82 +
83 +S="${WORKDIR}/${PN}-rel-${PV}"
84 +
85 +python_test() {
86 + nosetests -v || die
87 +}
88
89 diff --git a/sci-biology/nitime/nitime-9999.ebuild b/sci-biology/nitime/nitime-9999.ebuild
90 new file mode 100644
91 index 0000000..e78bd8f
92 --- /dev/null
93 +++ b/sci-biology/nitime/nitime-9999.ebuild
94 @@ -0,0 +1,38 @@
95 +# Copyright 1999-2016 Gentoo Foundation
96 +# Distributed under the terms of the GNU General Public License v2
97 +# $Id$
98 +
99 +EAPI=6
100 +
101 +PYTHON_COMPAT=( python{2_7,3_4,3_5} )
102 +
103 +inherit distutils-r1 git-r3
104 +
105 +DESCRIPTION="Time-series analysis of neuroscience data"
106 +HOMEPAGE="http://nipy.org/nitime/index.html"
107 +SRC_URI=""
108 +EGIT_REPO_URI="git://github.com/nipy/nitime"
109 +
110 +LICENSE="BSD"
111 +SLOT="0"
112 +KEYWORDS=""
113 +IUSE="test"
114 +
115 +COMMON_DEPEND="
116 + dev-python/numpy[${PYTHON_USEDEP}]
117 + dev-python/matplotlib[${PYTHON_USEDEP}]
118 + sci-libs/scipy[${PYTHON_USEDEP}]
119 + "
120 +DEPEND="
121 + test? ( dev-python/nose[${PYTHON_USEDEP}] )
122 + dev-python/setuptools[${PYTHON_USEDEP}]
123 + "
124 +RDEPEND="
125 + ${COMMON_DEPEND}
126 + dev-python/networkx[${PYTHON_USEDEP}]
127 + sci-libs/nibabel[${PYTHON_USEDEP}]
128 + "
129 +
130 +python_test() {
131 + nosetests -v || die
132 +}