Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/jupyter_client/
Date: Sat, 28 Nov 2015 17:33:26
Message-Id: 1448637658.51f6123ec229f42faa5ae3e0dd85ddcfc382cf01.jlec@gentoo
1 commit: 51f6123ec229f42faa5ae3e0dd85ddcfc382cf01
2 Author: Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
3 AuthorDate: Fri Nov 27 15:20:58 2015 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Fri Nov 27 15:20:58 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51f6123e
7
8 dev-python/jupyter_client: Import from science overlay
9
10 Package-Manager: portage-2.2.20.1
11
12 dev-python/jupyter_client/Manifest | 1 +
13 .../jupyter_client/jupyter_client-4.1.1.ebuild | 37 ++++++++++++++++++++++
14 dev-python/jupyter_client/metadata.xml | 14 ++++++++
15 3 files changed, 52 insertions(+)
16
17 diff --git a/dev-python/jupyter_client/Manifest b/dev-python/jupyter_client/Manifest
18 new file mode 100644
19 index 0000000..8f39d7e
20 --- /dev/null
21 +++ b/dev-python/jupyter_client/Manifest
22 @@ -0,0 +1 @@
23 +DIST jupyter_client-4.1.1.tar.gz 250227 SHA256 ff1ef5c6c3031a62db46ec6329867b4cb1595e6102a7819b3b5252b0c524bdb8 SHA512 08104fef5fd2522944ac5f1b2140a8267ffd97b0dba518f9fa792c08102ff8dbc4def592150433dfd893aed3596876ff254c9ea17b9b2e7a9622f773bd9d2606 WHIRLPOOL d7164a07a43c5d6cd78b30bedb6ec8e8bc367cca4ddf920fee27edc9337d6f1124ae840546d90d47ad1c0a84bd1677e452925c022cebfa5556c499f7fa8ee18d
24
25 diff --git a/dev-python/jupyter_client/jupyter_client-4.1.1.ebuild b/dev-python/jupyter_client/jupyter_client-4.1.1.ebuild
26 new file mode 100644
27 index 0000000..89862c0
28 --- /dev/null
29 +++ b/dev-python/jupyter_client/jupyter_client-4.1.1.ebuild
30 @@ -0,0 +1,37 @@
31 +# Copyright 1999-2015 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +# $Id$
34 +
35 +EAPI=5
36 +
37 +PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
38 +PYTHON_REQ_USE="threads(+)"
39 +
40 +inherit distutils-r1
41 +
42 +DESCRIPTION="Jupyter protocol implementation and client libraries"
43 +HOMEPAGE="http://jupyter.org"
44 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
45 +KEYWORDS="~amd64 ~x86"
46 +
47 +LICENSE="BSD"
48 +SLOT="0"
49 +IUSE="test"
50 +
51 +RDEPEND="
52 + dev-python/traitlets[${PYTHON_USEDEP}]
53 + dev-python/jupyter_core[${PYTHON_USEDEP}]
54 + >=dev-python/pyzmq-14.4.0[${PYTHON_USEDEP}]
55 + "
56 +DEPEND="${RDEPEND}
57 + test? (
58 + dev-python/nose[${PYTHON_USEDEP}]
59 + dev-python/coverage[${PYTHON_USEDEP}]
60 + $(python_gen_cond_dep 'dev-python/mock[${PYTHON_USEDEP}]' python2_7)
61 + dev-python/ipykernel[${PYTHON_USEDEP}]
62 + )
63 + "
64 +
65 +python_test() {
66 + nosetests --with-coverage jupyter_client || die
67 +}
68
69 diff --git a/dev-python/jupyter_client/metadata.xml b/dev-python/jupyter_client/metadata.xml
70 new file mode 100644
71 index 0000000..6c56959
72 --- /dev/null
73 +++ b/dev-python/jupyter_client/metadata.xml
74 @@ -0,0 +1,14 @@
75 +<?xml version="1.0" encoding="UTF-8"?>
76 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
77 +<pkgmetadata>
78 + <herd>sci</herd>
79 + <longdescription>
80 + Contains the reference implementation of the Jupyter protocol. It
81 + also provides client and kernel management APIs for working with
82 + kernels. It also provides the jupyter kernelspec entrypoint for
83 + installing kernelspecs for use with Jupyter frontends.
84 + </longdescription>
85 + <upstream>
86 + <remote-id type="pypi">jupyter_client</remote-id>
87 + </upstream>
88 +</pkgmetadata>