diff options
-rw-r--r-- | dev-python/glueviz/Manifest | 1 | ||||
-rw-r--r-- | dev-python/glueviz/glueviz-0.7.1.ebuild | 60 |
2 files changed, 61 insertions, 0 deletions
diff --git a/dev-python/glueviz/Manifest b/dev-python/glueviz/Manifest index 789773a8d8db..e2d513f5d7f1 100644 --- a/dev-python/glueviz/Manifest +++ b/dev-python/glueviz/Manifest @@ -1 +1,2 @@ DIST glueviz-0.7.0.tar.gz 10185362 SHA256 ed5e4d45ad33bb21ecc59feadfd8dce7ee8cc9becb64398f65021a0c821dbcc1 SHA512 004b7f8115cac113e3965990a53c1f8838ba35f765e9a6b7dabe2ee2f067f665c300d3759dc71545462c95fa3a8d47177ab559f6000897da60bda20cc2176deb WHIRLPOOL 182d95d7dba6d77e55dc07e16a6df70467e1b54774988c87ab36da5bb34516bbb2fb92e9661453a5a75355fdae1540ef9918d9a846aa593520966a970770fe2f +DIST glueviz-0.7.1.tar.gz 10206580 SHA256 1868fc30319d10361bf3bddc382ddc2f7ee6d1425995a5ba5cb3bed11b42c0df SHA512 5ed5fe3ecb71afa84e8c201670e0dc730b63fc00e3e381f9efd648987fe61099c7b2d083d1c9a46a57171d22e7f4a42da900043ba4b044a98b62c0e0fb96f2d3 WHIRLPOOL 3d9b665ffd814b60339ba8beabae1710a403e6dcfca45c71096cf0a1ddf2b65cf4d11013eda5f2f7fbe6ab9ac1df55e9c1fb4dae016715a8e78d665c0deac52a diff --git a/dev-python/glueviz/glueviz-0.7.1.ebuild b/dev-python/glueviz/glueviz-0.7.1.ebuild new file mode 100644 index 000000000000..f51bd17cbeaa --- /dev/null +++ b/dev-python/glueviz/glueviz-0.7.1.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +PYTHON_COMPAT=( python{2_7,3_4,3_5} ) +inherit distutils-r1 eutils + +DESCRIPTION="Python library to explore relationships within and among related datasets" +HOMEPAGE="http://www.glueviz.org/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" + +LICENSE="BSD MIT" +SLOT="0" +IUSE="test" + +# too much work to fix +RESTRICT="test" + +DOCS=( README.md CHANGES.md ) + +RDEPEND=" + dev-python/astropy[${PYTHON_USEDEP}] + dev-python/matplotlib[${PYTHON_USEDEP}] + dev-python/numpy[${PYTHON_USEDEP}] + dev-python/pandas[${PYTHON_USEDEP}] + || ( + dev-python/PyQt4[${PYTHON_USEDEP}] + dev-python/pyside[${PYTHON_USEDEP}] + dev-python/PyQt5[${PYTHON_USEDEP}] + )" + +DEPEND="${RDEPEND} + dev-python/astropy-helpers[${PYTHON_USEDEP}] + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( + dev-python/mock[${PYTHON_USEDEP}] + dev-python/pytest[${PYTHON_USEDEP}] )" + +python_test() { + esetup.py test +} + +pkg_postinst() { + optfeature "Interactive Ipython terminal" \ + dev-python/ipython \ + dev-python/ipykernel \ + dev-python/qtconsole \ + dev-python/traitlets \ + dev-python/pygments \ + dev-python/zmq + optfeature "Parse AVM metadata" dev-python/pyavm + optfeature "Save ${PN} sessions" dev-python/dill + optfeature "Support HDF5 files" dev-python/h5py + optfeature "Image processing calculations" sci-libs/scipy + optfeature "Read popular image formats" sci-libs/scikits_image + optfeature "Export plots to plot.ly" dev-python/plotly +} |