dev-python/jupyter_client: Version bump to 4.3.0; Shorten python_test()
authorMarius Brehler <marbre@linux.sungazer.de>
Mon, 25 Jul 2016 06:01:31 +0000 (08:01 +0200)
committerDavid Seifert <soap@gentoo.org>
Mon, 25 Jul 2016 18:38:45 +0000 (20:38 +0200)
Package-Manager: portage-2.2.28
Closes: https://github.com/gentoo/gentoo/pull/1960

Signed-off-by: David Seifert <soap@gentoo.org>
dev-python/jupyter_client/Manifest
dev-python/jupyter_client/jupyter_client-4.3.0.ebuild [new file with mode: 0644]

index d58a94b6538151a2f75d8ace0e76f3499d53f556..24c78ee2d84ad8d9931f05a72bf7ae0c3592e4f6 100644 (file)
@@ -1,2 +1,3 @@
 DIST jupyter_client-4.1.1.tar.gz 250227 SHA256 ff1ef5c6c3031a62db46ec6329867b4cb1595e6102a7819b3b5252b0c524bdb8 SHA512 08104fef5fd2522944ac5f1b2140a8267ffd97b0dba518f9fa792c08102ff8dbc4def592150433dfd893aed3596876ff254c9ea17b9b2e7a9622f773bd9d2606 WHIRLPOOL d7164a07a43c5d6cd78b30bedb6ec8e8bc367cca4ddf920fee27edc9337d6f1124ae840546d90d47ad1c0a84bd1677e452925c022cebfa5556c499f7fa8ee18d
 DIST jupyter_client-4.2.2.tar.gz 254282 SHA256 3ffc530eff0518fd9bfe3662423a2bec15d0628b9ca159921dd72f34ae004a14 SHA512 d6393095caebb47aca7c0657f0947246d126d40c420173388d34cae2542f12b9ad916659c22b5c7c12901690006bd2ecb736a6c0203cc17a07b9e77e4d750485 WHIRLPOOL 6be03a2ab9896bebec57e7d429edf923dd12c0880451ecd7efc58ff08e257976f66125568bba90626df14dadf94e98d8e832a36d2d5d7d54427b5502df909f20
+DIST jupyter_client-4.3.0.tar.gz 254610 SHA256 70b2e88403835a1d54b83858783d9e5e5771fa4bb6f6904e0b5bb8cfde4b99dd SHA512 392de9731069d604402d67a3b2f77a7eab1df5ec7b3acc4f72724ca75db790bef672d132603c243d5e369cfe4496f1454a58e171d63eacc3abb9545b764ec21d WHIRLPOOL a6f6a38ad1192f2fc12fe51f286305503bd2fc84bd3d439da854a88c5eadbe593b34059ff79cd53ec2e384ad1eb1953d70f47f095aa1bf2036e4ad1b6ca665f4
diff --git a/dev-python/jupyter_client/jupyter_client-4.3.0.ebuild b/dev-python/jupyter_client/jupyter_client-4.3.0.ebuild
new file mode 100644 (file)
index 0000000..7a815b2
--- /dev/null
@@ -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 python3_{3,4,5} )
+PYTHON_REQ_USE="threads(+)"
+
+inherit distutils-r1
+
+DESCRIPTION="Jupyter protocol implementation and client libraries"
+HOMEPAGE="http://jupyter.org"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="test"
+
+RDEPEND="
+       dev-python/traitlets[${PYTHON_USEDEP}]
+       dev-python/jupyter_core[${PYTHON_USEDEP}]
+       >=dev-python/pyzmq-14.4.0[${PYTHON_USEDEP}]
+       "
+DEPEND="${RDEPEND}
+       test? (
+               dev-python/nose[${PYTHON_USEDEP}]
+               dev-python/coverage[${PYTHON_USEDEP}]
+               $(python_gen_cond_dep 'dev-python/mock[${PYTHON_USEDEP}]' python2_7)
+               dev-python/ipykernel[${PYTHON_USEDEP}]
+       )
+       "
+
+python_test() {
+       nosetests --with-coverage --cover-package jupyter_client jupyter_client || die
+}