diff options
Diffstat (limited to 'sci-visualization/yt/yt-3.2.ebuild')
-rw-r--r-- | sci-visualization/yt/yt-3.2.ebuild | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/sci-visualization/yt/yt-3.2.ebuild b/sci-visualization/yt/yt-3.2.ebuild new file mode 100644 index 000000000000..9a3f6f55d48f --- /dev/null +++ b/sci-visualization/yt/yt-3.2.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +PYTHON_COMPAT=( python{2_7,3_4} ) + +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="test" + +CDEPEND="media-libs/libpng:0= + sci-libs/hdf5:= + dev-python/numpy[${PYTHON_USEDEP}]" +RDEPEND="${CDEPEND} + dev-python/ipython[notebook,${PYTHON_USEDEP}] + dev-python/h5py[${PYTHON_USEDEP}] + dev-python/matplotlib[${PYTHON_USEDEP}] + dev-python/sympy[${PYTHON_USEDEP}]" +# dev-python/pyx[${PYTHON_USEDEP}] +DEPEND="${CDEPEND} + >=dev-python/cython-0.22[${PYTHON_USEDEP}] + >=dev-python/setuptools-0.7[${PYTHON_USEDEP}] + test? ( ${RDEPEND} + dev-python/nose[${PYTHON_USEDEP}] + )" + +python_prepare_all() { + append-flags -fno-strict-aliasing + sed -i yt/utilities/setup.py \ + -e "s:/usr:${EPREFIX}/usr:g" || die + distutils-r1_python_prepare_all +} + +python_test() { + pushd "${BUILD_DIR}"/lib > /dev/null + nosetests -sv || die "Tests fail with ${EPYTHON} ${PWD}" + popd > /dev/null +} |