diff options
author | Michał Górny <mgorny@gentoo.org> | 2020-01-28 21:53:56 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2020-01-28 22:30:11 +0100 |
commit | 807526bde794f9bf3c693e4ce0208553d188ea90 (patch) | |
tree | ced32d0ddd13e419405738b2f273226599896d80 /dev-python/cosmolopy/cosmolopy-0.1.104-r1.ebuild | |
parent | dev-python/bottleneck: Combine ebuilds (remove py2) (diff) | |
download | gentoo-807526bde794f9bf3c693e4ce0208553d188ea90.tar.gz gentoo-807526bde794f9bf3c693e4ce0208553d188ea90.tar.bz2 gentoo-807526bde794f9bf3c693e4ce0208553d188ea90.zip |
dev-python/cosmolopy: Permit scipy-python2
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/cosmolopy/cosmolopy-0.1.104-r1.ebuild')
-rw-r--r-- | dev-python/cosmolopy/cosmolopy-0.1.104-r1.ebuild | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/dev-python/cosmolopy/cosmolopy-0.1.104-r1.ebuild b/dev-python/cosmolopy/cosmolopy-0.1.104-r1.ebuild deleted file mode 100644 index dd5245d7c1f6..000000000000 --- a/dev-python/cosmolopy/cosmolopy-0.1.104-r1.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -PYTHON_COMPAT=( python2_7) - -inherit distutils-r1 - -MY_PN=CosmoloPy -MY_P=${MY_PN}-${PV} - -DESCRIPTION="Cosmology routines built on NumPy/SciPy" -HOMEPAGE="https://roban.github.io/CosmoloPy/ https://pypi.org/project/CosmoloPy/" -SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux" -IUSE="doc" - -DEPEND="dev-python/nose[${PYTHON_USEDEP}] - dev-lang/swig - doc? ( dev-python/epydoc[${PYTHON_USEDEP}] )" -RDEPEND="sci-libs/scipy[${PYTHON_USEDEP}]" - -S=${WORKDIR}/${MY_P} - -python_compile_all() { - if use doc; then - epydoc -n "CosmoloPy - Cosmology routines built on NumPy/SciPy" \ - --exclude='cosmolopy.EH._power' --exclude='cosmolopy.EH.power' \ - --no-private --no-frames --html --docformat restructuredtext \ - cosmolopy/ -o docAPI/ || die - fi -} - -python_install_all() { - use doc && local HTML_DOCS=( docAPI/. ) - distutils-r1_python_install_all -} |