diff options
author | Ian Delaney <idella4@gentoo.org> | 2014-08-13 12:01:09 +0000 |
---|---|---|
committer | Ian Delaney <idella4@gentoo.org> | 2014-08-13 12:01:09 +0000 |
commit | 0330e3e903a23e4a5c3447a777800979ce438e08 (patch) | |
tree | d31ef6f223d5bd859e3d331450b6173ee07e5f11 /dev-python/numba | |
parent | Remove test deps from rdepend. (diff) | |
download | gentoo-2-0330e3e903a23e4a5c3447a777800979ce438e08.tar.gz gentoo-2-0330e3e903a23e4a5c3447a777800979ce438e08.tar.bz2 gentoo-2-0330e3e903a23e4a5c3447a777800979ce438e08.zip |
bump
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
Diffstat (limited to 'dev-python/numba')
-rw-r--r-- | dev-python/numba/ChangeLog | 7 | ||||
-rw-r--r-- | dev-python/numba/numba-0.13.4.ebuild | 44 |
2 files changed, 50 insertions, 1 deletions
diff --git a/dev-python/numba/ChangeLog b/dev-python/numba/ChangeLog index 8531607d2d94..810436c57c5d 100644 --- a/dev-python/numba/ChangeLog +++ b/dev-python/numba/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-python/numba # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-python/numba/ChangeLog,v 1.7 2014/07/21 08:45:48 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-python/numba/ChangeLog,v 1.8 2014/08/13 12:01:09 idella4 Exp $ + +*numba-0.13.4 (13 Aug 2014) + + 13 Aug 2014; Ian Delaney <idella4@gentoo.org> +numba-0.13.4.ebuild: + bump *numba-0.13.3 (21 Jul 2014) diff --git a/dev-python/numba/numba-0.13.4.ebuild b/dev-python/numba/numba-0.13.4.ebuild new file mode 100644 index 000000000000..11070c3a65d5 --- /dev/null +++ b/dev-python/numba/numba-0.13.4.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-python/numba/numba-0.13.4.ebuild,v 1.1 2014/08/13 12:01:09 idella4 Exp $ + +EAPI=5 + +PYTHON_COMPAT=( python{2_7,3_3,3_4} ) + +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 ~amd64-linux ~x86-linux" + +IUSE="doc examples" + +RDEPEND="dev-python/llvmpy[${PYTHON_USEDEP}] + >=dev-python/numpy-1.6[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND}" + +python_compile() { + if ! python_is_python3; then + local CFLAGS="${CFLAGS} -fno-strict-aliasing" + export CFLAGS + fi + distutils-r1_python_compile +} + +python_test() { + cd "${BUILD_DIR}"/lib* || die + ${PYTHON} -c "import numba; numba.test()" || die +} + +python_install_all() { + # doc needs obsolete sphnxjp package + use doc && dodoc docs/Numba.pdf + use examples && local EXAMPLES=( examples/. ) + + distutils-r1_python_install_all +} |