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/blaze/
Date: Tue, 01 Mar 2016 22:37:33
Message-Id: 1456871787.f15a4cb4104d064ca4d19396325e5d58c015ee92.patrick@gentoo
1 commit: f15a4cb4104d064ca4d19396325e5d58c015ee92
2 Author: Patrick Lauer <patrick <AT> gentoo <DOT> org>
3 AuthorDate: Tue Mar 1 22:35:59 2016 +0000
4 Commit: Patrick Lauer <patrick <AT> gentoo <DOT> org>
5 CommitDate: Tue Mar 1 22:36:27 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f15a4cb4
7
8 dev-python/blaze: Bump
9
10 Package-Manager: portage-2.2.27
11
12 dev-python/blaze/Manifest | 1 +
13 dev-python/blaze/blaze-0.9.1.ebuild | 83 +++++++++++++++++++++++++++++++++++++
14 2 files changed, 84 insertions(+)
15
16 diff --git a/dev-python/blaze/Manifest b/dev-python/blaze/Manifest
17 index f383712..2c9b29d 100644
18 --- a/dev-python/blaze/Manifest
19 +++ b/dev-python/blaze/Manifest
20 @@ -1,3 +1,4 @@
21 DIST blaze-0.7.1.tar.gz 760204 SHA256 2ea89bd0736530731643bf4a8f16b955b2e3bdcc2a36155af085385f6d10cd5b SHA512 cb94a4a58835bc120fc19810be03104ba9ad0b3cbc4ec6667b35b09ac9c7376934c03e897dfbeebf4161b227dac03cbd082067fba896bc07ace4dfbf21985b3f WHIRLPOOL d52b700c0127bebed2face3d3cd45436c8d2cc8b0485992f4c1b7a2f3582fdee65f55b3770a60697dd64e55008bbc1ea28a5238197daac8455c3f0ff80fbf58f
22 DIST blaze-0.8.0.tar.gz 6718278 SHA256 0ec507286a15eb18ccbf87d007c88cfe9d5f254f539687455b6216cd0dc667b6 SHA512 067032d50bdd91d9beddbf6329289d00b633003f8c114e47d01b439f35d68c44f285bd9f67283f79987ab166ece0ffa8bac62444e36803f8a47108a2de847ed5 WHIRLPOOL c0e28d88fea84b1c67213b5572d19623a7cffa76a14da57eb950483013a922798dad512177e8383308d60fbac178176dd8ef05b7c168e562291ee9c4bfa5aa0c
23 DIST blaze-0.8.2.tar.gz 9845331 SHA256 1f5a1dd306661a7493c95daafec07bab18fca3d99d03f1c6ab2be474afa73c01 SHA512 fc33e080e2af51606a719c12f38c14ea82de7e32e22bcb273a6e104ebb8ec7fc87e502d7fc48ba70992ce61ed624b167dc95a277dc9d0330b4a7fce4b1803df2 WHIRLPOOL 17d31889f07036e0c031c422566921f130cccb0feffbaecf5231fd916c678a725d8490bb322bb93c57aa18793296947b1318a85dabb8a5ea461e76df6d0fbd66
24 +DIST blaze-0.9.1.tar.gz 10194221 SHA256 af6070e1486333feba3f0212e1d7c48d69a073cf8805048273c7dbabd49e7ce1 SHA512 d65c736baff8fc7db1f2cbc8eff721e899e36303de62aab980d30aeb88f443a106141fd4456a72c47ef99d628152efc7b73259b436b9b542231c199c89c23c83 WHIRLPOOL 839a94d41884da3400d8e43ac0c24478af4966ef56b77f3ec2fb8bbdeff344b8c98d7840a6acf034be3d1c9e6a9aa3b4e00cdee9da5293e261779e075f31654f
25
26 diff --git a/dev-python/blaze/blaze-0.9.1.ebuild b/dev-python/blaze/blaze-0.9.1.ebuild
27 new file mode 100644
28 index 0000000..f1d44c2
29 --- /dev/null
30 +++ b/dev-python/blaze/blaze-0.9.1.ebuild
31 @@ -0,0 +1,83 @@
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} )
39 +
40 +inherit distutils-r1
41 +
42 +DESCRIPTION="Next generation Python numpy"
43 +HOMEPAGE="http://blaze.pydata.org/"
44 +SRC_URI="https://github.com/ContinuumIO/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
45 +
46 +LICENSE="BSD"
47 +SLOT="0"
48 +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
49 +
50 +# Currently doc build fails, reason now, attempt to import mystery modules in datashape
51 +# Leaving doc build content in case this is fixed
52 +IUSE="examples test"
53 +
54 +# pyspark appears an optional dep not in portage. pyskit appears to be dropped
55 +# some packages including pyparsing appear required despite their absence from requirements.txt
56 +
57 +RDEPEND="
58 + dev-python/datashape[${PYTHON_USEDEP}]
59 + >=dev-python/dynd-python-0.6.5[${PYTHON_USEDEP}]
60 + >=dev-python/numpy-1.7[${PYTHON_USEDEP}]
61 + dev-python/pyparsing[${PYTHON_USEDEP}]
62 + dev-python/toolz[${PYTHON_USEDEP}]
63 + dev-python/cytoolz[${PYTHON_USEDEP}]
64 + >=dev-python/pandas-0.15.0[${PYTHON_USEDEP}]
65 + dev-python/h5py[${PYTHON_USEDEP}]
66 + dev-python/unicodecsv[${PYTHON_USEDEP}]
67 + >=dev-python/multipledispatch-0.4.7[${PYTHON_USEDEP}]
68 + dev-python/requests[${PYTHON_USEDEP}]
69 + >=dev-python/flask-0.10.1[${PYTHON_USEDEP}]
70 + dev-python/flask-cors[${PYTHON_USEDEP}]
71 + >=dev-python/sqlalchemy-0.8.0[${PYTHON_USEDEP}]
72 + >=dev-python/pytables-3.0.0[${PYTHON_USEDEP}]
73 + >=dev-python/pymongo-2.8[${PYTHON_USEDEP}]
74 + dev-python/xlrd[${PYTHON_USEDEP}]
75 + dev-python/psutil[${PYTHON_USEDEP}]
76 + dev-python/into[${PYTHON_USEDEP}]
77 + dev-python/networkx[${PYTHON_USEDEP}]
78 + dev-python/numba[${PYTHON_USEDEP}]
79 + dev-python/bcolz[${PYTHON_USEDEP}]
80 + >=dev-python/odo-0.4[${PYTHON_USEDEP}]"
81 +DEPEND="
82 + >=dev-python/cython-0.18[${PYTHON_USEDEP}]
83 + test? ( ${RDEPEND}
84 + dev-python/pytest[${PYTHON_USEDEP}]
85 + dev-python/pyyaml[${PYTHON_USEDEP}]
86 + dev-python/chardet[${PYTHON_USEDEP}] )
87 + "
88 +# It was found on testing that dev-python/chardet is required for tests
89 +# despite not being inlcuded in requirements.txt
90 +# The doc build now fails due to dep bokeh failing to emerge. Deleted.
91 +
92 +python_test() {
93 + # https://github.com/ContinuumIO/blaze/issues/1117
94 + # skip test requiring a server daemon
95 + # Tally of known failure reduced to one under py2.7 (test_highly_nested_repr)
96 + # and 2 under py3. The failure of test_query_with_strings persists
97 + # under python3 and appears to be unaddressed upstream.
98 + # Changes in the suite in this version require PYTHONPATH set to ${S}
99 + # to avoid spurious errors resulting from the change of path set by the eclass.
100 +
101 + einfo "The test suite has 4 additional failures with package numba installed"
102 + einfo "Upstream have been informed via /blaze/issues/1117 @ github.com/"
103 + einfo "For optimum results, uninstall numba, but it counters protocol to exclude"
104 + einfo "dev-python/numba from dependencies in the ebuild"
105 +
106 + PYTHONPATH="${S}" py.test --ignore blaze/compute/tests/test_mongo_compute.py blaze \
107 + || die "Tests failed under ${EPYTHON}"
108 +}
109 +
110 +python_install_all() {
111 + use examples && local EXAMPLES=( blaze/examples/. )
112 +
113 + distutils-r1_python_install_all
114 +}