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/ipykernel/
Date: Fri, 27 Nov 2015 09:55:51
Message-Id: 1448618127.5e4480333e644b8c987c0e8bf53749d8ce6a212c.marbre@gentoo
1 commit: 5e4480333e644b8c987c0e8bf53749d8ce6a212c
2 Author: Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
3 AuthorDate: Fri Nov 27 09:55:27 2015 +0000
4 Commit: Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
5 CommitDate: Fri Nov 27 09:55:27 2015 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=5e448033
7
8 dev-python/ipykernel: Version bump
9
10 Package-Manager: portage-2.2.20.1
11
12 dev-python/ipykernel/ChangeLog | 6 +++++
13 dev-python/ipykernel/ipykernel-4.2.0.ebuild | 35 +++++++++++++++++++++++++++++
14 2 files changed, 41 insertions(+)
15
16 diff --git a/dev-python/ipykernel/ChangeLog b/dev-python/ipykernel/ChangeLog
17 index 0af12c8..238b6b3 100644
18 --- a/dev-python/ipykernel/ChangeLog
19 +++ b/dev-python/ipykernel/ChangeLog
20 @@ -2,6 +2,12 @@
21 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
22 # $Id$
23
24 +*ipykernel-4.2.0 (27 Nov 2015)
25 +
26 + 27 Nov 2015; Marius Brehler <marbre@××××××××××××××.de>
27 + +ipykernel-4.2.0.ebuild:
28 + dev-python/ipykernel: Version bump
29 +
30 *ipykernel-4.1.1 (21 Oct 2015)
31
32 21 Oct 2015; Marius Brehler <marbre@××××××××××××××.de>
33
34 diff --git a/dev-python/ipykernel/ipykernel-4.2.0.ebuild b/dev-python/ipykernel/ipykernel-4.2.0.ebuild
35 new file mode 100644
36 index 0000000..e8cf096
37 --- /dev/null
38 +++ b/dev-python/ipykernel/ipykernel-4.2.0.ebuild
39 @@ -0,0 +1,35 @@
40 +# Copyright 1999-2015 Gentoo Foundation
41 +# Distributed under the terms of the GNU General Public License v2
42 +# $Id$
43 +
44 +EAPI=5
45 +
46 +PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
47 +PYTHON_REQ_USE="threads(+)"
48 +
49 +inherit distutils-r1
50 +
51 +DESCRIPTION="IPython Kernel for Jupyter"
52 +HOMEPAGE="https://github.com/ipython/ipykernel"
53 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
54 +
55 +LICENSE="BSD"
56 +SLOT="0"
57 +KEYWORDS="~amd64 ~x86"
58 +IUSE="test"
59 +
60 +RDEPEND="
61 + dev-python/traitlets[${PYTHON_USEDEP}]"
62 + #dev-python/jupyter_client[${PYTHON_USEDEP}]
63 + #>=dev-python/ipython-4.0.0[${PYTHON_USEDEP}]
64 +DEPEND="${RDEPEND}
65 + test? (
66 + dev-python/coverage[${PYTHON_USEDEP}]
67 + >=dev-python/ipython-4.0.0[${PYTHON_USEDEP}]
68 + dev-python/nose[${PYTHON_USEDEP}]
69 + )
70 + "
71 +
72 +python_test() {
73 + nosetests --with-coverage --cover-package ipykernel ipykernel || die
74 +}