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/ipykernel/
Date: Fri, 14 May 2021 08:14:36
Message-Id: 1620980061.f7173af21550e390f288a3f146586bcbfa82c0dd.mgorny@gentoo
1 commit: f7173af21550e390f288a3f146586bcbfa82c0dd
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri May 14 07:53:08 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri May 14 08:14:21 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7173af2
7
8 dev-python/ipykernel: Bump to 5.5.5 (Windows-only change)
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/ipykernel/Manifest | 1 +
13 dev-python/ipykernel/ipykernel-5.5.5.ebuild | 45 +++++++++++++++++++++++++++++
14 2 files changed, 46 insertions(+)
15
16 diff --git a/dev-python/ipykernel/Manifest b/dev-python/ipykernel/Manifest
17 index bf700c29430..f453441dd32 100644
18 --- a/dev-python/ipykernel/Manifest
19 +++ b/dev-python/ipykernel/Manifest
20 @@ -1,2 +1,3 @@
21 DIST ipykernel-5.5.3.tar.gz 112656 BLAKE2B 4cad13f24baafc591558136405c8c643e12033ffd01b5608ffdef5442080c3e2003c0f2c4b1562c1f326b4c10e124afc358f5258a6c59b7c9db90b8bb23278e3 SHA512 7b7f0a0aed71f7713934ac071e7283be2028a221fa2b87cad8c2d26821909f81d21dec23a5f72c91e7c9de639b0d7430957c8cc58bbc026d95bd81bb0a005800
22 DIST ipykernel-5.5.4.tar.gz 112728 BLAKE2B 489e12d0cbde2f80f2c921f026c7b84554b1fef481164e07f89b063127b01d106fc6b19f830ac321d79285fb9df065352dbc0c2a997b3629a64e766d2e50f347 SHA512 96728321fe71d528435415eda917c623269af734598a78168144d983aa64db4f9ced981fa67c83263da1ed878831669d821b84a769a08a271adafacfcbb75bf9
23 +DIST ipykernel-5.5.5.tar.gz 112909 BLAKE2B ff898dc10f767838353de13571de4c42ea59aae9b367046265808d9f1f7abfbd3934b7b4370fe024b647b5268316c573f7d52b2e62284a6c430005a901dfd6bf SHA512 580c3a3d5d10c325524287c091a885955981bedb8c7bd8eac569ee19393b258dbfbc7ea8700137071c2c55bfa94b5a7bfae1c687bc5e2d532525c6fc3e043835
24
25 diff --git a/dev-python/ipykernel/ipykernel-5.5.5.ebuild b/dev-python/ipykernel/ipykernel-5.5.5.ebuild
26 new file mode 100644
27 index 00000000000..c392b74130f
28 --- /dev/null
29 +++ b/dev-python/ipykernel/ipykernel-5.5.5.ebuild
30 @@ -0,0 +1,45 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +PYTHON_COMPAT=( python3_{7..9} )
37 +PYTHON_REQ_USE="threads(+)"
38 +
39 +inherit distutils-r1
40 +
41 +DESCRIPTION="IPython Kernel for Jupyter"
42 +HOMEPAGE="https://github.com/ipython/ipykernel"
43 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
44 +
45 +LICENSE="BSD"
46 +SLOT="0"
47 +KEYWORDS=""
48 +
49 +RDEPEND="
50 + dev-python/ipython[${PYTHON_USEDEP}]
51 + <dev-python/jupyter_client-6.2[${PYTHON_USEDEP}]
52 + dev-python/jupyter_core[${PYTHON_USEDEP}]
53 + dev-python/traitlets[${PYTHON_USEDEP}]
54 + www-servers/tornado[${PYTHON_USEDEP}]"
55 +BDEPEND="
56 + test? (
57 + dev-python/flaky[${PYTHON_USEDEP}]
58 + dev-python/nose[${PYTHON_USEDEP}]
59 + dev-python/nose_warnings_filters[${PYTHON_USEDEP}]
60 + )"
61 +
62 +distutils_enable_tests pytest
63 +
64 +python_test() {
65 + local deselect=(
66 + # TODO
67 + ipykernel/tests/test_serialize.py::test_numpy_in_seq
68 + ipykernel/tests/test_serialize.py::test_numpy_in_dict
69 + ipykernel/tests/test_serialize.py::test_class
70 + ipykernel/tests/test_serialize.py::test_class_oldstyle
71 + ipykernel/tests/test_serialize.py::test_class_inheritance
72 + )
73 +
74 + epytest ${deselect[@]/#/--deselect }
75 +}