Gentoo Archives: gentoo-commits

From: Benda XU <heroxbd@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/jupyter_client/
Date: Mon, 23 Dec 2019 07:44:39
Message-Id: 1577087064.4827f0b03521036629477b53d24111084e47d307.heroxbd@gentoo
1 commit: 4827f0b03521036629477b53d24111084e47d307
2 Author: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
3 AuthorDate: Mon Dec 16 08:37:31 2019 +0000
4 Commit: Benda XU <heroxbd <AT> gentoo <DOT> org>
5 CommitDate: Mon Dec 23 07:44:24 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4827f0b0
7
8 dev-python/jupyter_client: Version bump 5.3.4
9
10 Breaking up PR into smaller parts:
11
12 Bug: https://bugs.gentoo.org/702458
13 Bug: https://github.com/gentoo/gentoo/pull/13988
14 Closes: https://github.com/gentoo/gentoo/pull/14002
15 Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>
16 Signed-off-by: Benda Xu <heroxbd <AT> gentoo.org>
17 Package-Manager: Portage-2.3.81, Repoman-2.3.20
18
19 dev-python/jupyter_client/Manifest | 1 +
20 .../jupyter_client/jupyter_client-5.3.4.ebuild | 36 ++++++++++++++++++++++
21 2 files changed, 37 insertions(+)
22
23 diff --git a/dev-python/jupyter_client/Manifest b/dev-python/jupyter_client/Manifest
24 index 52b60a9a501..18c6cb40c70 100644
25 --- a/dev-python/jupyter_client/Manifest
26 +++ b/dev-python/jupyter_client/Manifest
27 @@ -1,3 +1,4 @@
28 DIST jupyter_client-5.1.0.tar.gz 265233 BLAKE2B 1f4533e1c6578e61b1a7591889805d5e324a3cd368cb3998131f2047056c87984ae26d83c9de0277aa6f19b61db4c4d9b39083b795e0891ef7d5394949b5fa44 SHA512 eca7adab1f8aae05743c341a257d4ca4338b0838cc3441939dda48229cdfa13b267bdc338b951bc4e6e139d03d26b40a1294140218f84ab800d211f7e0d8bfc7
29 DIST jupyter_client-5.2.3.tar.gz 271787 BLAKE2B 36761e53050874c141c38f545f8f6fb53c144c30f686b3706594d124a65e410c205379b7ecbeed12f1520f0f568c7db3c802223f6fdb8f76407074beacc21918 SHA512 89b980ecc281bc1512e1fc4ba35862cc6e541f825ee07a1382d300c8088f24611225ab415d6a7c1e4209c47a74c113ec95f863e8fb0b33c6db9eb9c3521fc0ae
30 DIST jupyter_client-5.2.4.tar.gz 273397 BLAKE2B a63e13fea7bf121cfe0191d702bf5398a72902e075d560ec235eec6c28492a89753a90efe642fc207ab23357e74aac566bbfbeeb7970b765bf53641caa7ac95f SHA512 a8bb322e4cbcfa5ab9ffbcfdbf2e2ea60e7923f415d7574a93866e99c03a8c5b0a11d7c82e9c4c1c69f4da1261563f419877dffd5347294a58a744c445271a53
31 +DIST jupyter_client-5.3.4.tar.gz 275850 BLAKE2B a0884fb6cd2858b3ecf8353c6dc180370a53b4d59f77fdeb33c972c72857650e2e8b64ac5f6c9d223a99f30bb9ad9e06673cfe14b2d79abc0e4363104ffd15c3 SHA512 54b5206c08f5119feb50deb2d815d79a178799ad5c1231a0d03fc950ebbf6cb2f7c3a757024f788d416f808c57aa8476fcfa110f63182314bf2d5cdeb9a006cf
32
33 diff --git a/dev-python/jupyter_client/jupyter_client-5.3.4.ebuild b/dev-python/jupyter_client/jupyter_client-5.3.4.ebuild
34 new file mode 100644
35 index 00000000000..ce3be51636e
36 --- /dev/null
37 +++ b/dev-python/jupyter_client/jupyter_client-5.3.4.ebuild
38 @@ -0,0 +1,36 @@
39 +# Copyright 1999-2019 Gentoo Authors
40 +# Distributed under the terms of the GNU General Public License v2
41 +
42 +EAPI=7
43 +
44 +PYTHON_COMPAT=( python3_{5,6,7} )
45 +PYTHON_REQ_USE="threads(+)"
46 +
47 +inherit distutils-r1
48 +
49 +DESCRIPTION="Jupyter protocol implementation and client libraries"
50 +HOMEPAGE="https://jupyter.org"
51 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
52 +
53 +LICENSE="BSD"
54 +SLOT="0"
55 +KEYWORDS="~amd64 ~arm64 ~x86"
56 +IUSE="test"
57 +
58 +RDEPEND="
59 + dev-python/python-dateutil[${PYTHON_USEDEP}]
60 + dev-python/traitlets[${PYTHON_USEDEP}]
61 + dev-python/jupyter_core[${PYTHON_USEDEP}]
62 + >=dev-python/pyzmq-14.4.0[${PYTHON_USEDEP}]
63 + www-servers/tornado[${PYTHON_USEDEP}]
64 + "
65 +DEPEND="${RDEPEND}
66 + test? ( dev-python/ipykernel[${PYTHON_USEDEP}]
67 + dev-python/ipython[${PYTHON_USEDEP}]
68 + dev-python/mock[${PYTHON_USEDEP}] )"
69 +
70 +distutils_enable_tests pytest
71 +
72 +python_test() {
73 + pytest -vv jupyter_client || die
74 +}