diff options
author | Patrick Lauer <patrick@gentoo.org> | 2016-09-03 11:10:23 +0200 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2016-09-03 11:10:36 +0200 |
commit | 4c741cf58c3421c92c8b4ddc0c3c341885d1e94d (patch) | |
tree | 84042cbc6eed8eb84911b1155bff65d183106c52 /dev-python/numba/numba-0.27.0.ebuild | |
parent | sci-biology/bwa: Version bump to 0.7.15 (diff) | |
download | gentoo-4c741cf58c3421c92c8b4ddc0c3c341885d1e94d.tar.gz gentoo-4c741cf58c3421c92c8b4ddc0c3c341885d1e94d.tar.bz2 gentoo-4c741cf58c3421c92c8b4ddc0c3c341885d1e94d.zip |
dev-python/numba: Bump
Package-Manager: portage-2.3.0
Diffstat (limited to 'dev-python/numba/numba-0.27.0.ebuild')
-rw-r--r-- | dev-python/numba/numba-0.27.0.ebuild | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/dev-python/numba/numba-0.27.0.ebuild b/dev-python/numba/numba-0.27.0.ebuild new file mode 100644 index 000000000000..4082bbf82818 --- /dev/null +++ b/dev-python/numba/numba-0.27.0.ebuild @@ -0,0 +1,66 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} ) + +inherit distutils-r1 + +DESCRIPTION="NumPy aware dynamic Python compiler using LLVM" +HOMEPAGE="http://numba.pydata.org/" +SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc examples test" + +RDEPEND=" + >=dev-python/llvmlite-0.10[${PYTHON_USEDEP}] + >=dev-python/numpy-1.6[${PYTHON_USEDEP}] + $(python_gen_cond_dep 'dev-python/enum34[${PYTHON_USEDEP}]' python{2_7,3_3}) + virtual/python-funcsigs[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND} + test? ( virtual/python-singledispatch[${PYTHON_USEDEP}] ) + doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )" + +# Delete intersphinx & entry to set sphinxjp.themecore, which is absent from portage, from conf.py +PATCHES=( "${FILESDIR}"/${PN}-0.19.2-docbuild.patch ) + +python_prepare_all() { + # Re-set them of doc build to one provided by sphinx + if has_version ">=dev-python/sphinx-1.3.1"; then + sed -e 's:basicstrap:classic:' -i docs/source/conf.py || die + else + sed -e 's:basicstrap:default:' -i docs/source/conf.py || die + fi + distutils-r1_python_prepare_all +} + +python_compile() { + if ! python_is_python3; then + local CFLAGS="${CFLAGS} -fno-strict-aliasing" + export CFLAGS + fi + distutils-r1_python_compile +} + +python_compile_all() { + use doc && emake -C docs/ html +} + +python_test() { + cd "${BUILD_DIR}"/lib* || die + ${PYTHON} -c "import numba; numba.test()" || die +} + +python_install_all() { + # doc needs obsolete sphinxjp package +# use doc && dodoc docs/Numba.pdf + use examples && local EXAMPLES=( examples/. ) + use doc && local HTML_DOCS=( docs/_build/html/. ) + + distutils-r1_python_install_all +} |