diff --git a/dev-python/trimesh/Manifest b/dev-python/trimesh/Manifest new file mode 100644 index 0000000..4bff5d2 --- /dev/null +++ b/dev-python/trimesh/Manifest @@ -0,0 +1,3 @@ +DIST trimesh-2.34.3.tar.gz 8390792 BLAKE2B c15fd2e7fe407b6c459995d8cfac3c4fdd369cd842cb4e2025ecfd66f6fafc4c324d16d21060b57e4b4a6eb743003288085a20ea31bdab3830b69de8c388a7e0 SHA512 2f3eb685a8ba35ff3e16bb81502f14c5fcbf82394466484c27a61b8b2c87c3287ebf2725270abd91ad01ed8a2068e559a2eaf1fc72f5e1814b26810ab984f3fc +EBUILD trimesh-2.34.3.ebuild 1195 BLAKE2B dd6309e107f258c55034a11495f96f879307c166576eb58fded7dc0435ac19d48531ba965d6a6948ba4e406374841c318fbd9d7ef86e5114d10c969d704b1ef7 SHA512 e7101af965fb25135a499a48baf193224ce57a0f3093e7269c4b72d5dfc1441466d4124b84175d354603df2edd4a529faedd73e9ed47ccf8bfe5462b3ec7ffdc +MISC metadata.xml 655 BLAKE2B e43c6f3c232be474cd579a5277566aa925dbe2ded7239462b8e28de71aabb8e4b543593f5b9ef67c617aa3f7545fc1ba184330a53adea52df548e28cb6cfd37b SHA512 1880788a55ff8dfa824edb261ac1d53fb90512d0c0b865549f3f86b96e96209ff9c4fa5c00c0dbeb82812b933ef3ecbd40474a65662a6b9ceb59b62f062934b4 diff --git a/dev-python/trimesh/metadata.xml b/dev-python/trimesh/metadata.xml new file mode 100644 index 0000000..1e458f8 --- /dev/null +++ b/dev-python/trimesh/metadata.xml @@ -0,0 +1,18 @@ + + + + + horea.christ@gmail.com + Horea Christian + + + sci@gentoo.org + Gentoo Science Project + + + FSLeyes is a viewer for 3D and 4D neuroimaging data. It is intended as a + replacement for the much loved FSLView. FSLeyes offers similar functionality + to FSLView, and aims to improve and expand upon this functionality in many + ways. + + diff --git a/dev-python/trimesh/trimesh-2.34.3.ebuild b/dev-python/trimesh/trimesh-2.34.3.ebuild new file mode 100644 index 0000000..02c14d6 --- /dev/null +++ b/dev-python/trimesh/trimesh-2.34.3.ebuild @@ -0,0 +1,43 @@ +# 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 +}