Gentoo Archives: gentoo-commits

From: Marius Brehler <marbre@××××××××××××××.de>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: dev-python/jupyter_console/
Date: Sat, 28 Nov 2015 17:58:24
Message-Id: 1448733212.87d0a0e19717c1cc7ec12418e9d012db9a97ede9.marbre@gentoo
1 commit: 87d0a0e19717c1cc7ec12418e9d012db9a97ede9
2 Author: Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
3 AuthorDate: Sat Nov 28 17:53:32 2015 +0000
4 Commit: Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
5 CommitDate: Sat Nov 28 17:53:32 2015 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=87d0a0e1
7
8 dev-python/jupyter_console: Moved to tree
9
10 Package-Manager: portage-2.2.20.1
11
12 dev-python/jupyter_console/ChangeLog | 4 ++
13 .../jupyter_console/jupyter_console-4.0.3.ebuild | 55 ----------------------
14 2 files changed, 4 insertions(+), 55 deletions(-)
15
16 diff --git a/dev-python/jupyter_console/ChangeLog b/dev-python/jupyter_console/ChangeLog
17 index 9ae64c4..c3d4469 100644
18 --- a/dev-python/jupyter_console/ChangeLog
19 +++ b/dev-python/jupyter_console/ChangeLog
20 @@ -2,6 +2,10 @@
21 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
22 # $Id$
23
24 + 28 Nov 2015; Marius Brehler <marbre@××××××××××××××.de> -Manifest,
25 + -jupyter_console-4.0.3.ebuild:
26 + dev-python/jupyter_console: Moved to tree
27 +
28 *jupyter_console-4.0.3 (11 Oct 2015)
29
30 11 Oct 2015; Sean Vig <sean.v.775@×××××.com> +jupyter_console-4.0.3.ebuild,
31
32 diff --git a/dev-python/jupyter_console/jupyter_console-4.0.3.ebuild b/dev-python/jupyter_console/jupyter_console-4.0.3.ebuild
33 deleted file mode 100644
34 index 0086a62..0000000
35 --- a/dev-python/jupyter_console/jupyter_console-4.0.3.ebuild
36 +++ /dev/null
37 @@ -1,55 +0,0 @@
38 -# Copyright 1999-2015 Gentoo Foundation
39 -# Distributed under the terms of the GNU General Public License v2
40 -# $Id$
41 -
42 -EAPI=5
43 -
44 -PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
45 -
46 -inherit distutils-r1
47 -
48 -DESCRIPTION="A terminal-based console frontend for Jupyter kernels"
49 -HOMEPAGE="http://jupyter.org"
50 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
51 -KEYWORDS="~amd64 ~x86"
52 -
53 -LICENSE="BSD"
54 -SLOT="0"
55 -IUSE="doc test"
56 -
57 -RDEPEND="
58 - dev-python/ipython[${PYTHON_USEDEP}]
59 - dev-python/ipykernel[${PYTHON_USEDEP}]
60 - dev-python/jupyter_client[${PYTHON_USEDEP}]
61 - "
62 -DEPEND="${RDEPEND}
63 - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
64 - test? (
65 - $(python_gen_cond_dep 'dev-python/mock[${PYTHON_USEDEP}]' python2_7)
66 - dev-python/pexpect[${PYTHON_USEDEP}]
67 - >=dev-python/nose-0.10.1[${PYTHON_USEDEP}]
68 - dev-python/coverage[${PYTHON_USEDEP}]
69 - )
70 - "
71 -
72 -python_prepare_all() {
73 - # Prevent un-needed download during build
74 - if use doc; then
75 - sed -e "/^ 'sphinx.ext.intersphinx',/d" -i docs/conf.py || die
76 - fi
77 -
78 - distutils-r1_python_prepare_all
79 -}
80 -
81 -python_compile_all() {
82 - use doc && emake -C docs html
83 -}
84 -
85 -python_test() {
86 - nosetests --with-coverage --cover-package=jupyter_console jupyter_console || die
87 -}
88 -
89 -python_install_all() {
90 - use doc && HTML_DOCS=( docs/_build/html/. )
91 - distutils-r1_python_install_all
92 -}