6f403ba6c3
ahead of inclusion in main tree (unsubmitted)
44 lines
1.2 KiB
Bash
44 lines
1.2 KiB
Bash
# Copyright 1999-2018 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
PYTHON_COMPAT=( python2_7 python3_{5,6} )
|
|
|
|
inherit distutils-r1
|
|
|
|
DESCRIPTION="The new FSL image viewer, released with FSL 5.0.10"
|
|
HOMEPAGE="https://git.fmrib.ox.ac.uk/fsl/fsleyes/fsleyes/tree/master"
|
|
SRC_URI="https://github.com/mikedh/trimesh/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE="test"
|
|
|
|
DEPEND="
|
|
test? ( dev-python/pytest[${PYTHON_USEDEP}] )
|
|
dev-python/setuptools[${PYTHON_USEDEP}]
|
|
dev-python/numpy[${PYTHON_USEDEP}]
|
|
sci-libs/scipy[${PYTHON_USEDEP}]
|
|
dev-python/networkx[${PYTHON_USEDEP}]
|
|
"
|
|
RDEPEND="
|
|
dev-libs/xxhash
|
|
dev-python/colorlog[${PYTHON_USEDEP}]
|
|
dev-python/deprecation[${PYTHON_USEDEP}]
|
|
dev-python/lxml[${PYTHON_USEDEP}]
|
|
dev-python/msgpack[${PYTHON_USEDEP}]
|
|
dev-python/pillow[${PYTHON_USEDEP}]
|
|
dev-python/pyglet[${PYTHON_USEDEP}]
|
|
dev-python/requests[${PYTHON_USEDEP}]
|
|
dev-python/sympy[${PYTHON_USEDEP}]
|
|
=dev-python/six-1*[${PYTHON_USEDEP}]
|
|
sci-libs/Shapely[${PYTHON_USEDEP}]
|
|
sci-libs/Rtree[${PYTHON_USEDEP}]
|
|
"
|
|
|
|
python_test() {
|
|
pytest -p no:warnings tests/test_graph.py tests/test_scene.py || die
|
|
}
|