Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/jupyter_client/
Date: Tue, 07 Jun 2022 06:55:06
Message-Id: 1654584843.fa3ba3072c1cecf90d8aac65c38ae0384383a6b4.mgorny@gentoo
1 commit: fa3ba3072c1cecf90d8aac65c38ae0384383a6b4
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jun 7 05:30:23 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Jun 7 06:54:03 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa3ba307
7
8 dev-python/jupyter_client: Bump to 7.3.2
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/jupyter_client/Manifest | 1 +
13 .../jupyter_client/jupyter_client-7.3.2.ebuild | 48 ++++++++++++++++++++++
14 2 files changed, 49 insertions(+)
15
16 diff --git a/dev-python/jupyter_client/Manifest b/dev-python/jupyter_client/Manifest
17 index acbeb7f7bafd..1f36dddedf8b 100644
18 --- a/dev-python/jupyter_client/Manifest
19 +++ b/dev-python/jupyter_client/Manifest
20 @@ -1 +1,2 @@
21 DIST jupyter_client-7.3.1.tar.gz 328697 BLAKE2B 9bdca39d974c21e1674f58a7aaa51a6b96e4dc307f918aacc403146827df5ad7a867243dd2df95e717ab7ebd62367817e4f43cae562f47147b4271d72240600e SHA512 86a98288f1be5321b8495d78770501ca45fe3139a482ec41606253eef69eaf4d3f284d1c373d9df64efe28428f32cd1a3b19842a7331b3ac200d780e7a786407
22 +DIST jupyter_client-7.3.2.tar.gz 328943 BLAKE2B 9093278ec2aeff9810bb0af86607185776d940e51ade5194c28800b1e08a1b40d4a020f947b4fac092e26e6a6b1b1eabe4b2c025d955f4ed1ddf3cd190dda96a SHA512 ec0ceb518eae63356058032b2e43979c78a691eefe594ef98767daff27ea88d4363bdc8f7c4e66c549fd5e7a5fdb0b538d58a45f7d73145093f7bbe26df03c71
23
24 diff --git a/dev-python/jupyter_client/jupyter_client-7.3.2.ebuild b/dev-python/jupyter_client/jupyter_client-7.3.2.ebuild
25 new file mode 100644
26 index 000000000000..f5f42b66bafa
27 --- /dev/null
28 +++ b/dev-python/jupyter_client/jupyter_client-7.3.2.ebuild
29 @@ -0,0 +1,48 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +DISTUTILS_USE_PEP517=hatchling
36 +PYTHON_COMPAT=( python3_{8..10} )
37 +PYTHON_REQ_USE="threads(+)"
38 +
39 +inherit distutils-r1
40 +
41 +DESCRIPTION="Jupyter protocol implementation and client libraries"
42 +HOMEPAGE="https://jupyter.org"
43 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
44 +
45 +LICENSE="BSD"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
48 +
49 +RDEPEND="
50 + dev-python/entrypoints[${PYTHON_USEDEP}]
51 + >=dev-python/jupyter_core-4.9.2[${PYTHON_USEDEP}]
52 + >=dev-python/nest_asyncio-1.5.4[${PYTHON_USEDEP}]
53 + >=dev-python/python-dateutil-2.8.2[${PYTHON_USEDEP}]
54 + dev-python/pyzmq[${PYTHON_USEDEP}]
55 + >=www-servers/tornado-6.0[${PYTHON_USEDEP}]
56 + dev-python/traitlets[${PYTHON_USEDEP}]
57 +"
58 +BDEPEND="
59 + test? (
60 + >=dev-python/ipykernel-6.5[${PYTHON_USEDEP}]
61 + dev-python/ipython[${PYTHON_USEDEP}]
62 + >=dev-python/pytest-asyncio-0.18[${PYTHON_USEDEP}]
63 + dev-python/pytest-timeout[${PYTHON_USEDEP}]
64 + )
65 +"
66 +
67 +PATCHES=(
68 + "${FILESDIR}"/${PN}-7.0.6-test-timeout.patch
69 +)
70 +
71 +distutils_enable_tests pytest
72 +
73 +src_prepare() {
74 + # relax pyzmq dep
75 + sed -i -e '/pyzmq/s:>=[0-9.]*::' pyproject.toml || die
76 + distutils-r1_src_prepare
77 +}