commit: 5b103a2c04c571c9016aacc86c14977e81e8d91d
Author: Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
AuthorDate: Mon Jan 25 09:03:53 2016 +0000
Commit: Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
CommitDate: Mon Jan 25 09:03:53 2016 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=5b103a2c
dev-python/metakernel: Version bump to 0.12.2
Package-Manager: portage-2.2.26
RepoMan-Options: --force
dev-python/metakernel/metakernel-0.12.2.ebuild | 37 ++++++++++++++++++++++++++
1 file changed, 37 insertions(+)
diff --git a/dev-python/metakernel/metakernel-0.12.2.ebuild
b/dev-python/metakernel/metakernel-0.12.2.ebuild
new file mode 100644
index 0000000..ea6bb4c
--- /dev/null
+++ b/dev-python/metakernel/metakernel-0.12.2.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 python{3_3,3_4} )
+
+inherit distutils-r1
+
+DESCRIPTION="Metakernel for Jupyter"
+HOMEPAGE="https://github.com/Calysto/metakernel"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+KEYWORDS="~amd64"
+
+LICENSE="BSD"
+SLOT="0"
+IUSE="test"
+
+RDEPEND="
+ >=dev-python/ipython-3.0[${PYTHON_USEDEP}]
+ "
+DEPEND="${RDEPEND}
+ test? (
+ dev-python/nose[${PYTHON_USEDEP}]
+ dev-python/coverage[${PYTHON_USEDEP}]
+ >=dev-python/metakernel_python-0.11.3[${PYTHON_USEDEP}]
+ )
+"
+
+# tests currently fail and the dying/stopping of ipcluster needs to be fixed
+RESTRICT="test"
+
+python_test() {
+ ipcluster start -n=3 &
+ nosetests --with-doctest --with-coverage --cover-package metakernel ||
die
+ ipcluster stop
+}