commit: 15689476016f50e2240b8af7e198d0e0a7566d39
Author: Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
AuthorDate: Wed May 18 06:30:42 2016 +0000
Commit: Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
CommitDate: Wed May 18 06:30:42 2016 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=15689476
dev-python/metakernel: Version bump
Package-Manager: portage-2.2.28
dev-python/metakernel/metakernel-0.12.6.ebuild | 37 ++++++++++++++++++++++++++
1 file changed, 37 insertions(+)
diff --git a/dev-python/metakernel/metakernel-0.12.6.ebuild
b/dev-python/metakernel/metakernel-0.12.6.ebuild
new file mode 100644
index 0000000..5fa9d1b
--- /dev/null
+++ b/dev-python/metakernel/metakernel-0.12.6.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,3_5} )
+
+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
+}