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/metakernel/
Date: Mon, 25 Jan 2016 09:10:00
Message-Id: 1453712633.5b103a2c04c571c9016aacc86c14977e81e8d91d.marbre@gentoo
1 commit: 5b103a2c04c571c9016aacc86c14977e81e8d91d
2 Author: Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
3 AuthorDate: Mon Jan 25 09:03:53 2016 +0000
4 Commit: Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
5 CommitDate: Mon Jan 25 09:03:53 2016 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=5b103a2c
7
8 dev-python/metakernel: Version bump to 0.12.2
9
10 Package-Manager: portage-2.2.26
11 RepoMan-Options: --force
12
13 dev-python/metakernel/metakernel-0.12.2.ebuild | 37 ++++++++++++++++++++++++++
14 1 file changed, 37 insertions(+)
15
16 diff --git a/dev-python/metakernel/metakernel-0.12.2.ebuild b/dev-python/metakernel/metakernel-0.12.2.ebuild
17 new file mode 100644
18 index 0000000..ea6bb4c
19 --- /dev/null
20 +++ b/dev-python/metakernel/metakernel-0.12.2.ebuild
21 @@ -0,0 +1,37 @@
22 +# Copyright 1999-2016 Gentoo Foundation
23 +# Distributed under the terms of the GNU General Public License v2
24 +# $Id$
25 +
26 +EAPI=6
27 +PYTHON_COMPAT=( python2_7 python{3_3,3_4} )
28 +
29 +inherit distutils-r1
30 +
31 +DESCRIPTION="Metakernel for Jupyter"
32 +HOMEPAGE="https://github.com/Calysto/metakernel"
33 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
34 +KEYWORDS="~amd64"
35 +
36 +LICENSE="BSD"
37 +SLOT="0"
38 +IUSE="test"
39 +
40 +RDEPEND="
41 + >=dev-python/ipython-3.0[${PYTHON_USEDEP}]
42 + "
43 +DEPEND="${RDEPEND}
44 + test? (
45 + dev-python/nose[${PYTHON_USEDEP}]
46 + dev-python/coverage[${PYTHON_USEDEP}]
47 + >=dev-python/metakernel_python-0.11.3[${PYTHON_USEDEP}]
48 + )
49 +"
50 +
51 +# tests currently fail and the dying/stopping of ipcluster needs to be fixed
52 +RESTRICT="test"
53 +
54 +python_test() {
55 + ipcluster start -n=3 &
56 + nosetests --with-doctest --with-coverage --cover-package metakernel || die
57 + ipcluster stop
58 +}