Gentoo Archives: gentoo-commits

From: Horea Christian <horea.christ@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: sci-libs/pybids/
Date: Fri, 10 Jan 2020 13:29:18
Message-Id: 1578662946.c939a6bdec9371a7e75811188895ea2ed70a4d54.chymera@gentoo
1 commit: c939a6bdec9371a7e75811188895ea2ed70a4d54
2 Author: Horea Christian <chr <AT> chymera <DOT> eu>
3 AuthorDate: Fri Jan 10 13:29:06 2020 +0000
4 Commit: Horea Christian <horea.christ <AT> gmail <DOT> com>
5 CommitDate: Fri Jan 10 13:29:06 2020 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=c939a6bd
7
8 sci-libs/pybids: version bump 0.6.5
9
10 Package-Manager: Portage-2.3.84, Repoman-2.3.20
11 Signed-off-by: Horea Christian <chr <AT> chymera.eu>
12
13 sci-libs/pybids/pybids-0.6.5.ebuild | 42 +++++++++++++++++++++++++++++++++++++
14 1 file changed, 42 insertions(+)
15
16 diff --git a/sci-libs/pybids/pybids-0.6.5.ebuild b/sci-libs/pybids/pybids-0.6.5.ebuild
17 new file mode 100644
18 index 000000000..1a3e5aa5f
19 --- /dev/null
20 +++ b/sci-libs/pybids/pybids-0.6.5.ebuild
21 @@ -0,0 +1,42 @@
22 +# Copyright 1999-2020 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=7
26 +
27 +PYTHON_COMPAT=( python3_6 )
28 +
29 +inherit distutils-r1
30 +
31 +DESCRIPTION="Python package to access BIDS datasets"
32 +HOMEPAGE="https://github.com/INCF/pybids"
33 +SRC_URI="https://github.com/INCF/pybids/archive/${PV}.tar.gz -> ${P}.tar.gz"
34 +
35 +LICENSE="MIT"
36 +SLOT="0"
37 +KEYWORDS="~amd64"
38 +IUSE=""
39 +
40 +DEPEND="
41 + dev-python/setuptools[${PYTHON_USEDEP}]
42 + "
43 +RDEPEND="
44 + dev-python/grabbit[${PYTHON_USEDEP}]
45 + dev-python/num2words[${PYTHON_USEDEP}]
46 + dev-python/numpy[${PYTHON_USEDEP}]
47 + dev-python/pandas[${PYTHON_USEDEP}]
48 + dev-python/patsy[${PYTHON_USEDEP}]
49 + dev-python/six[${PYTHON_USEDEP}]
50 + sci-libs/nibabel[${PYTHON_USEDEP}]
51 + sci-libs/scipy[${PYTHON_USEDEP}]
52 + "
53 +
54 +RESTRICT="test"
55 +# Fails because fixtures are called directly
56 +# https://github.com/bids-standard/pybids/issues/289#issuecomment-476853673
57 +
58 +python_test() {
59 + rm bids/tests/test_config.py || die
60 + distutils_install_for_testing
61 + pytest -vv || die
62 + die
63 +}