Gentoo Archives: gentoo-commits

From: Patrick Lauer <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/numba/
Date: Sun, 06 Mar 2016 11:13:47
Message-Id: 1457173940.6deb9bd73b4a2de362f3472f94af637749557b8c.patrick@gentoo
1 commit: 6deb9bd73b4a2de362f3472f94af637749557b8c
2 Author: Patrick Lauer <patrick <AT> gentoo <DOT> org>
3 AuthorDate: Sat Mar 5 10:28:35 2016 +0000
4 Commit: Patrick Lauer <patrick <AT> gentoo <DOT> org>
5 CommitDate: Sat Mar 5 10:32:20 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6deb9bd7
7
8 dev-python/numba: Bump
9
10 Package-Manager: portage-2.2.27
11
12 dev-python/numba/Manifest | 1 +
13 dev-python/numba/numba-0.24.0.ebuild | 68 ++++++++++++++++++++++++++++++++++++
14 2 files changed, 69 insertions(+)
15
16 diff --git a/dev-python/numba/Manifest b/dev-python/numba/Manifest
17 index 0ab7c3e..3ff8221 100644
18 --- a/dev-python/numba/Manifest
19 +++ b/dev-python/numba/Manifest
20 @@ -3,3 +3,4 @@ DIST numba-0.19.2.tar.gz 871394 SHA256 10bdd84a3a8dfb9b195ad7d3b11c1f52693833820
21 DIST numba-0.20.0.tar.gz 895183 SHA256 62dd4eebbd8fef27a8a60b74de2f540b12223939e197877babb13bf06eba5d9f SHA512 d511ed382813471dd2b9f6d99ee7cae4b77375a3c003df44ec2954b0f16c32b0fec76b3c33df46c821f17a4d148afab6c4b2d43429548a5bc81efbebc4fb54e3 WHIRLPOOL 8345bed1965715aace541bfcde33f4a999241fac8f655d80d1bb67db5ae806924fec47e3895b2a61484474fef2d4362d15800aa5be8b1c8f1922eaeb06d432ce
22 DIST numba-0.22.1.tar.gz 1101843 SHA256 2b0c95cf9c4f6390b1ff0a238499ee4cc32b3695728293e1d888cd3c15803633 SHA512 0514a04e83f800ba4dba97e5b220fd5d530e923e91769881f9df320a0eedcfb1e652fc87a1cda2d80223e38a25f85387a1930259179996bab7b7a731b86864c0 WHIRLPOOL dd554a15ea3783bfe335ed08b538eed6ec7071986ef4ad63e76e51c3d06783b38dccd0fb5b01b720eab130dbb20d8a2fe8cefd4124a6f57aeb10e74c228fad16
23 DIST numba-0.23.1.tar.gz 1284771 SHA256 54359b8ef700a70f0d7a9b9aecb2c58867fd23479f556730d8b3422a132d5735 SHA512 833087ac4272d386eca0434855128773284f0f1f7cd85143088d2184781b070bf2922a7e2378ae90ba53382ffb5c547e9c2e34ec35a9423e1cf2ad9706d7c366 WHIRLPOOL 1cc91acb8acd9e14ace0be14c45e5e1abf5fc28440ad463240f8ed5b18708496b166ebb9134df32170551ac6f7e123d1dcb4897434320bb9471338c008b638ab
24 +DIST numba-0.24.0.tar.gz 1134646 SHA256 623fa32a9e0018dcbffb3e5ab29c87a12252e67eb1325be69abac9faaff2f8ed SHA512 ffad0fa1a92479aa7d41cbbfdace5bb8c2be49b99cf7da3ccacbc972b910e945bb763aaf1a1704c2af28c57d9384530c7303571653ff964d7470cb48704062bc WHIRLPOOL b280105aa8ccd74e689f7d1a837bd4e7833400fdb1f469810b8c01db37ada725698534cdf95aad34a5f85d1bd8b206c83fd02be1100924889487813269721ba9
25
26 diff --git a/dev-python/numba/numba-0.24.0.ebuild b/dev-python/numba/numba-0.24.0.ebuild
27 new file mode 100644
28 index 0000000..a82a996
29 --- /dev/null
30 +++ b/dev-python/numba/numba-0.24.0.ebuild
31 @@ -0,0 +1,68 @@
32 +# Copyright 1999-2015 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +# $Id$
35 +
36 +EAPI=5
37 +
38 +PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} )
39 +
40 +inherit distutils-r1
41 +
42 +DESCRIPTION="NumPy aware dynamic Python compiler using LLVM"
43 +HOMEPAGE="http://numba.pydata.org/"
44 +SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
45 +
46 +LICENSE="BSD"
47 +SLOT="0"
48 +KEYWORDS="~amd64 ~x86"
49 +IUSE="doc examples test"
50 +
51 +RDEPEND="
52 + dev-python/llvmlite[${PYTHON_USEDEP}]
53 + >=dev-python/numpy-1.6[${PYTHON_USEDEP}]
54 + $(python_gen_cond_dep 'dev-python/enum34[${PYTHON_USEDEP}]' python{2_7,3_3})
55 + virtual/python-funcsigs[${PYTHON_USEDEP}]"
56 +DEPEND="test? ( ${RDEPEND} )
57 + doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
58 +
59 +# test phase is pointless since it errors in circa 60% of 1984 tests
60 +RESTRICT="test"
61 +
62 +# Delete intersphinx & entry to set sphinxjp.themecore, which is absent from portage, from conf.py
63 +PATCHES=( "${FILESDIR}"/${PN}-0.19.2-docbuild.patch )
64 +
65 +python_prepare_all() {
66 + # Re-set them of doc build to one provided by sphinx
67 + if has_version ">=dev-python/sphinx-1.3.1"; then
68 + sed -e 's:basicstrap:classic:' -i docs/source/conf.py || die
69 + else
70 + sed -e 's:basicstrap:default:' -i docs/source/conf.py || die
71 + fi
72 + distutils-r1_python_prepare_all
73 +}
74 +
75 +python_compile() {
76 + if ! python_is_python3; then
77 + local CFLAGS="${CFLAGS} -fno-strict-aliasing"
78 + export CFLAGS
79 + fi
80 + distutils-r1_python_compile
81 +}
82 +
83 +python_compile_all() {
84 + use doc && emake -C docs/ html
85 +}
86 +
87 +python_test() {
88 + cd "${BUILD_DIR}"/lib* || die
89 + ${PYTHON} -c "import numba; numba.test()" || die
90 +}
91 +
92 +python_install_all() {
93 + # doc needs obsolete sphinxjp package
94 +# use doc && dodoc docs/Numba.pdf
95 + use examples && local EXAMPLES=( examples/. )
96 + use doc && local HTML_DOCS=( docs/_build/html/. )
97 +
98 + distutils-r1_python_install_all
99 +}