Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/jupyter_client/
Date: Tue, 29 May 2018 08:00:48
Message-Id: 1527580821.23f0716f4e20cade8b38ee86c79896f137425b2f.soap@gentoo
1 commit: 23f0716f4e20cade8b38ee86c79896f137425b2f
2 Author: Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
3 AuthorDate: Mon May 28 08:07:31 2018 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Tue May 29 08:00:21 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23f0716f
7
8 dev-python/jupyter_client: Version bump to 5.2.3
9
10 Package-Manager: Portage-2.3.24, Repoman-2.3.6
11 Closes: https://github.com/gentoo/gentoo/pull/8633
12
13 dev-python/jupyter_client/Manifest | 1 +
14 .../jupyter_client/jupyter_client-5.2.3.ebuild | 38 ++++++++++++++++++++++
15 2 files changed, 39 insertions(+)
16
17 diff --git a/dev-python/jupyter_client/Manifest b/dev-python/jupyter_client/Manifest
18 index c06c1bce5c1..8520968e679 100644
19 --- a/dev-python/jupyter_client/Manifest
20 +++ b/dev-python/jupyter_client/Manifest
21 @@ -1 +1,2 @@
22 DIST jupyter_client-5.1.0.tar.gz 265233 BLAKE2B 1f4533e1c6578e61b1a7591889805d5e324a3cd368cb3998131f2047056c87984ae26d83c9de0277aa6f19b61db4c4d9b39083b795e0891ef7d5394949b5fa44 SHA512 eca7adab1f8aae05743c341a257d4ca4338b0838cc3441939dda48229cdfa13b267bdc338b951bc4e6e139d03d26b40a1294140218f84ab800d211f7e0d8bfc7
23 +DIST jupyter_client-5.2.3.tar.gz 271787 BLAKE2B 36761e53050874c141c38f545f8f6fb53c144c30f686b3706594d124a65e410c205379b7ecbeed12f1520f0f568c7db3c802223f6fdb8f76407074beacc21918 SHA512 89b980ecc281bc1512e1fc4ba35862cc6e541f825ee07a1382d300c8088f24611225ab415d6a7c1e4209c47a74c113ec95f863e8fb0b33c6db9eb9c3521fc0ae
24
25 diff --git a/dev-python/jupyter_client/jupyter_client-5.2.3.ebuild b/dev-python/jupyter_client/jupyter_client-5.2.3.ebuild
26 new file mode 100644
27 index 00000000000..df80a23326e
28 --- /dev/null
29 +++ b/dev-python/jupyter_client/jupyter_client-5.2.3.ebuild
30 @@ -0,0 +1,38 @@
31 +# Copyright 1999-2018 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +
36 +PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
37 +PYTHON_REQ_USE="threads(+)"
38 +
39 +inherit distutils-r1
40 +
41 +DESCRIPTION="Jupyter protocol implementation and client libraries"
42 +HOMEPAGE="http://jupyter.org"
43 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
44 +
45 +LICENSE="BSD"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~arm64 ~x86"
48 +IUSE="test"
49 +
50 +RDEPEND="
51 + dev-python/python-dateutil[${PYTHON_USEDEP}]
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 + dev-python/setuptools[${PYTHON_USEDEP}]
58 + test? (
59 + dev-python/pytest[${PYTHON_USEDEP}]
60 + dev-python/pytest-cov[${PYTHON_USEDEP}]
61 + $(python_gen_cond_dep 'dev-python/mock[${PYTHON_USEDEP}]' 'python2*')
62 + dev-python/ipykernel[${PYTHON_USEDEP}]
63 + )
64 + "
65 +
66 +python_test() {
67 + pytest --cov jupyter_client jupyter_client || die
68 +}