Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/blaze: blaze-0.6.0.ebuild ChangeLog
Date: Tue, 02 Sep 2014 04:13:12
Message-Id: 20140902041307.ABDAB47CB@oystercatcher.gentoo.org
1 patrick 14/09/02 04:13:07
2
3 Modified: ChangeLog
4 Added: blaze-0.6.0.ebuild
5 Log:
6 Bump
7
8 (Portage version: 2.2.12/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.6 dev-python/blaze/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/blaze/ChangeLog?rev=1.6&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/blaze/ChangeLog?rev=1.6&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/blaze/ChangeLog?r1=1.5&r2=1.6
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/blaze/ChangeLog,v
20 retrieving revision 1.5
21 retrieving revision 1.6
22 diff -u -r1.5 -r1.6
23 --- ChangeLog 6 Jul 2014 12:40:22 -0000 1.5
24 +++ ChangeLog 2 Sep 2014 04:13:07 -0000 1.6
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/blaze
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/blaze/ChangeLog,v 1.5 2014/07/06 12:40:22 mgorny Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/blaze/ChangeLog,v 1.6 2014/09/02 04:13:07 patrick Exp $
30 +
31 +*blaze-0.6.0 (02 Sep 2014)
32 +
33 + 02 Sep 2014; Patrick Lauer <patrick@g.o> +blaze-0.6.0.ebuild:
34 + Bump
35
36 06 Jul 2014; Michał Górny <mgorny@g.o> blaze-0.4.1.ebuild,
37 blaze-0.4.2.ebuild, blaze-0.5.0.ebuild:
38
39
40
41 1.1 dev-python/blaze/blaze-0.6.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/blaze/blaze-0.6.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/blaze/blaze-0.6.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: blaze-0.6.0.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-python/blaze/blaze-0.6.0.ebuild,v 1.1 2014/09/02 04:13:07 patrick Exp $
51
52 EAPI=5
53
54 PYTHON_COMPAT=( python{2_7,3_3,3_4} )
55
56 inherit distutils-r1
57
58 DESCRIPTION="Next generation Python numpy"
59 HOMEPAGE="http://blaze.pydata.org/"
60 SRC_URI="https://github.com/ContinuumIO/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
61
62 LICENSE="BSD"
63 SLOT="0"
64 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
65
66 IUSE="doc examples test"
67
68 RDEPEND="
69 dev-python/llvmpy[${PYTHON_USEDEP}]
70 >=dev-python/blz-0.6.2[${PYTHON_USEDEP}]
71 >=dev-python/datashape-0.2[${PYTHON_USEDEP}]
72 >=dev-python/dynd-python-0.6.2[${PYTHON_USEDEP}]
73 >=dev-python/numpy-1.6[${PYTHON_USEDEP}]
74 dev-python/numba[${PYTHON_USEDEP}]
75 dev-python/pykit[${PYTHON_USEDEP}]
76 dev-python/pyparsing[${PYTHON_USEDEP}]
77 dev-python/toolz[${PYTHON_USEDEP}]
78 dev-python/cytoolz[${PYTHON_USEDEP}]
79 dev-python/pandas[${PYTHON_USEDEP}]
80 dev-python/h5py[${PYTHON_USEDEP}]
81 python_targets_python2_7? ( dev-python/unicodecsv )
82 "
83 DEPEND="${RDEPEND}
84 >=dev-python/cython-0.18[${PYTHON_USEDEP}]
85 doc? ( dev-python/sphinx )
86 test? (
87 dev-python/nose[${PYTHON_USEDEP}]
88 dev-python/flask[${PYTHON_USEDEP}]
89 dev-python/pyyaml[${PYTHON_USEDEP}]
90 dev-python/sqlalchemy[${PYTHON_USEDEP}]
91 )"
92
93 python_compile_all() {
94 use doc && emake -C docs html
95 }
96
97 python_test() {
98 cd "${BUILD_DIR}"/lib || die
99 ${PYTHON} -c 'import blaze; blaze.test()' || die
100 }
101
102 python_install_all() {
103 use doc && local HTML_DOCS=( docs/build/html )
104 use examples && local EXAMPLES=( samples )
105 distutils-r1_python_install_all
106 }