Gentoo Archives: gentoo-commits

From: Sebastien Fabbro <bicatali@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/bokeh/
Date: Mon, 30 Jan 2017 19:48:02
Message-Id: 1485805534.aafe84c080f7bd8786a64bbf434a8e48dfefccbc.bicatali@gentoo
1 commit: aafe84c080f7bd8786a64bbf434a8e48dfefccbc
2 Author: Sébastien Fabbro <bicatali <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 27 22:29:10 2017 +0000
4 Commit: Sebastien Fabbro <bicatali <AT> gentoo <DOT> org>
5 CommitDate: Mon Jan 30 19:45:34 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aafe84c0
7
8 dev-python/bokeh: version bump
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 dev-python/bokeh/Manifest | 1 +
13 dev-python/bokeh/bokeh-0.12.4.ebuild | 71 ++++++++++++++++++++++++++++++++++++
14 2 files changed, 72 insertions(+)
15
16 diff --git a/dev-python/bokeh/Manifest b/dev-python/bokeh/Manifest
17 index dc0bf9d..76d6e22 100644
18 --- a/dev-python/bokeh/Manifest
19 +++ b/dev-python/bokeh/Manifest
20 @@ -1 +1,2 @@
21 DIST bokeh-0.11.1.tar.gz 3383140 SHA256 34a73d8f68e7d6faaecc9f785cac8e9f76b88a7e7aacf66307076b03b4d3c472 SHA512 18cfee85698f1ba548c34fb223dc57e36584951064e65fac83cb8388b129914a8f67970a133ef2d1a67c06e50cbfb565a27d33dc9c90f5027a1739d400894706 WHIRLPOOL 5f8aa63f90e95945b7c1e1770d869ee7b8aee34d07f6f254586de5d30561b1688f5390f688f9792627809229fb93fcf607a012dc5e070a5c8f7c95b84dd8db4d
22 +DIST bokeh-0.12.4.tar.gz 5584657 SHA256 4fa2360f4492785d47c898be72374f0123bf8e8a939824ed1d1610f1ce30b2a0 SHA512 bab043278cf580a7d6df9749d7ceca763fc77849de37a8ea7e5a674714a5e49c240ea41ec964fd00cb6d71901fd349f10ee732df5dc5a853e0a2ea8a9c97b1ef WHIRLPOOL 112e87e14c72a690ce5a979d53015b0e5753992e95906d8c93ba69a6b66d25315a1e57d3a6b7801d1706720879e495280f42d80ac7876be4a17ca0784ee0dbb0
23
24 diff --git a/dev-python/bokeh/bokeh-0.12.4.ebuild b/dev-python/bokeh/bokeh-0.12.4.ebuild
25 new file mode 100644
26 index 00000000..95878f6
27 --- /dev/null
28 +++ b/dev-python/bokeh/bokeh-0.12.4.ebuild
29 @@ -0,0 +1,71 @@
30 +# Copyright 1999-2017 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI=6
35 +
36 +PYTHON_COMPAT=( python2_7 python3_{4,5} )
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="Statistical and interactive HTML plots for Python"
41 +HOMEPAGE="http://bokeh.pydata.org/"
42 +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
43 +
44 +LICENSE="BSD"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
47 +IUSE="examples test"
48 +
49 +RDEPEND="
50 + dev-python/jinja[${PYTHON_USEDEP}]
51 + dev-python/numpy[${PYTHON_USEDEP}]
52 + dev-python/python-dateutil[${PYTHON_USEDEP}]
53 + dev-python/pyyaml[${PYTHON_USEDEP}]
54 + dev-python/requests[${PYTHON_USEDEP}]
55 + dev-python/six[${PYTHON_USEDEP}]
56 + virtual/python-futures[${PYTHON_USEDEP}]
57 + >=www-servers/tornado-4.3[${PYTHON_USEDEP}]
58 +"
59 +DEPEND="
60 + dev-python/jinja[${PYTHON_USEDEP}]
61 + dev-python/numpy[${PYTHON_USEDEP}]
62 + dev-python/python-dateutil[${PYTHON_USEDEP}]
63 + dev-python/pyyaml[${PYTHON_USEDEP}]
64 + dev-python/packaging[${PYTHON_USEDEP}]
65 + dev-python/setuptools[${PYTHON_USEDEP}]
66 + dev-python/six[${PYTHON_USEDEP}]
67 + >=net-libs/nodejs-4.1
68 + >=www-servers/tornado-4.3[${PYTHON_USEDEP}]
69 + test? (
70 + dev-python/beautifulsoup:4[${PYTHON_USEDEP}]
71 + dev-python/boto[${PYTHON_USEDEP}]
72 + dev-python/colorama[${PYTHON_USEDEP}]
73 + dev-python/flake8[${PYTHON_USEDEP}]
74 + dev-python/pandas[${PYTHON_USEDEP}]
75 + dev-python/pytest[${PYTHON_USEDEP}]
76 + dev-python/flexx[${PYTHON_USEDEP}]
77 + dev-python/mock[${PYTHON_USEDEP}]
78 + dev-python/pillow[${PYTHON_USEDEP}]
79 + dev-python/pytest[${PYTHON_USEDEP}]
80 + dev-python/pytest-cov[${PYTHON_USEDEP}]
81 + dev-python/pytest-rerunfailures[${PYTHON_USEDEP}]
82 + dev-python/pytest-xdist[${PYTHON_USEDEP}]
83 + dev-python/selenium[${PYTHON_USEDEP}]
84 + sci-libs/scipy[${PYTHON_USEDEP}]
85 + )
86 +"
87 +
88 +python_compile() {
89 + esetup.py build --build-js
90 +}
91 +
92 +python_test() {
93 + cd "${BUILD_DIR}"/lib || die
94 + py.test -m 'not (js or examples or integration)' -vv || die
95 +}
96 +
97 +python_install_all() {
98 + use examples && local EXAMPLES=( examples/. )
99 + distutils-r1_python_install_all
100 +}