Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/bokeh/
Date: Thu, 28 Jun 2018 21:09:12
Message-Id: 1530220133.6e45abc3a1ef597bfd69734b20d6a31291624394.pacho@gentoo
1 commit: 6e45abc3a1ef597bfd69734b20d6a31291624394
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jun 28 21:08:53 2018 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Thu Jun 28 21:08:53 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e45abc3
7
8 dev-python/bokeh: Drop old
9
10 Package-Manager: Portage-2.3.41, Repoman-2.3.9
11
12 dev-python/bokeh/bokeh-0.12.4.ebuild | 72 ------------------------------------
13 1 file changed, 72 deletions(-)
14
15 diff --git a/dev-python/bokeh/bokeh-0.12.4.ebuild b/dev-python/bokeh/bokeh-0.12.4.ebuild
16 deleted file mode 100644
17 index 13a916ab9c6..00000000000
18 --- a/dev-python/bokeh/bokeh-0.12.4.ebuild
19 +++ /dev/null
20 @@ -1,72 +0,0 @@
21 -# Copyright 1999-2018 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=6
25 -
26 -PYTHON_COMPAT=( python2_7 python3_{4,5} )
27 -
28 -inherit distutils-r1
29 -
30 -DESCRIPTION="Statistical and interactive HTML plots for Python"
31 -HOMEPAGE="https://bokeh.pydata.org/en/latest/
32 - https://github.com/bokeh/bokeh
33 - https://pypi.org/project/bokeh/"
34 -SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
35 -
36 -LICENSE="BSD"
37 -SLOT="0"
38 -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
39 -IUSE="examples test"
40 -
41 -RDEPEND="
42 - dev-python/jinja[${PYTHON_USEDEP}]
43 - dev-python/numpy[${PYTHON_USEDEP}]
44 - dev-python/python-dateutil[${PYTHON_USEDEP}]
45 - dev-python/pyyaml[${PYTHON_USEDEP}]
46 - dev-python/requests[${PYTHON_USEDEP}]
47 - dev-python/six[${PYTHON_USEDEP}]
48 - virtual/python-futures[${PYTHON_USEDEP}]
49 - >=www-servers/tornado-4.3[${PYTHON_USEDEP}]
50 -"
51 -DEPEND="
52 - dev-python/jinja[${PYTHON_USEDEP}]
53 - dev-python/numpy[${PYTHON_USEDEP}]
54 - dev-python/python-dateutil[${PYTHON_USEDEP}]
55 - dev-python/pyyaml[${PYTHON_USEDEP}]
56 - dev-python/packaging[${PYTHON_USEDEP}]
57 - dev-python/setuptools[${PYTHON_USEDEP}]
58 - dev-python/six[${PYTHON_USEDEP}]
59 - >=net-libs/nodejs-4.1
60 - >=www-servers/tornado-4.3[${PYTHON_USEDEP}]
61 - test? (
62 - dev-python/beautifulsoup:4[${PYTHON_USEDEP}]
63 - dev-python/boto[${PYTHON_USEDEP}]
64 - dev-python/colorama[${PYTHON_USEDEP}]
65 - dev-python/flake8[${PYTHON_USEDEP}]
66 - dev-python/pandas[${PYTHON_USEDEP}]
67 - dev-python/pytest[${PYTHON_USEDEP}]
68 - dev-python/flexx[${PYTHON_USEDEP}]
69 - dev-python/mock[${PYTHON_USEDEP}]
70 - dev-python/pillow[${PYTHON_USEDEP}]
71 - dev-python/pytest[${PYTHON_USEDEP}]
72 - dev-python/pytest-cov[${PYTHON_USEDEP}]
73 - dev-python/pytest-rerunfailures[${PYTHON_USEDEP}]
74 - dev-python/pytest-xdist[${PYTHON_USEDEP}]
75 - dev-python/selenium[${PYTHON_USEDEP}]
76 - sci-libs/scipy[${PYTHON_USEDEP}]
77 - )
78 -"
79 -
80 -python_compile() {
81 - esetup.py build --build-js
82 -}
83 -
84 -python_test() {
85 - cd "${BUILD_DIR}"/lib || die
86 - py.test -m 'not (js or examples or integration)' -vv || die
87 -}
88 -
89 -python_install_all() {
90 - use examples && local EXAMPLES=( examples/. )
91 - distutils-r1_python_install_all
92 -}