blob: 6ea640cee878f7e9da07882a637af45299556e1d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python{2_7,3_6} )
inherit distutils-r1 flag-o-matic
DESCRIPTION="Astrophysical Simulation Analysis and Vizualization package"
HOMEPAGE="http://yt-project.org/"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="hub test"
RESTRICT="!test? ( test )"
CDEPEND=">=dev-python/numpy-1.10.4[${PYTHON_USEDEP}]"
RDEPEND="${CDEPEND}
dev-python/h5py[${PYTHON_USEDEP}]
dev-python/matplotlib[${PYTHON_USEDEP}]
>=dev-python/sympy-1.0[${PYTHON_USEDEP}]
hub? ( dev-python/girder-client[${PYTHON_USEDEP}] )
"
DEPEND="${CDEPEND}
>=dev-python/cython-0.24[${PYTHON_USEDEP}]
>=dev-python/setuptools-20.0[${PYTHON_USEDEP}]
test? ( ${RDEPEND}
dev-python/nose[${PYTHON_USEDEP}]
)"
python_prepare_all() {
append-flags -fno-strict-aliasing
distutils-r1_python_prepare_all
}
python_test() {
pushd "${BUILD_DIR}"/lib >/dev/null || die
nosetests -sv --exclude=test_flake8 || die "Tests fail with ${EPYTHON} ${PWD}"
popd >/dev/null || die
}
|