Gentoo Archives: gentoo-commits

From: Arthur Zamarin <arthurzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/jupyter_packaging/
Date: Thu, 25 Aug 2022 19:25:25
Message-Id: 1661454208.c53242b52140719ab4de1388d7b7b5b8475bb160.arthurzam@gentoo
1 commit: c53242b52140719ab4de1388d7b7b5b8475bb160
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Thu Aug 25 19:03:28 2022 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 25 19:03:28 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c53242b5
7
8 dev-python/jupyter_packaging: add 0.12.3
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 dev-python/jupyter_packaging/Manifest | 1 +
13 .../jupyter_packaging-0.12.3.ebuild | 43 ++++++++++++++++++++++
14 2 files changed, 44 insertions(+)
15
16 diff --git a/dev-python/jupyter_packaging/Manifest b/dev-python/jupyter_packaging/Manifest
17 index 5f854383d2be..c9d1104f3a16 100644
18 --- a/dev-python/jupyter_packaging/Manifest
19 +++ b/dev-python/jupyter_packaging/Manifest
20 @@ -1 +1,2 @@
21 DIST jupyter_packaging-0.12.2.tar.gz 27990 BLAKE2B 0cd07fa760fe0bd4529e8430bd52863034cc4c78d8f906f55530a6825c496b8a1bf2fff76da3f4e963ee43c80fc19347edbaf20d16fbfe51584b040b0ab4d3ed SHA512 f4167c7beb3188d2e4b0fa8601fb8cdede8b20dc8c16e0bccbcf9e317e75e24ea1469a9d904bb35b2d81dec351caf49526ef35e5d91460a099a8e4ed6974e1b1
22 +DIST jupyter_packaging-0.12.3.tar.gz 25350 BLAKE2B 62c9f35a3008f8252f8ae8a55b2f7156fc98347b48dbe9bf08101b9c9b0cc892886cf248e0d916455f472bd5130dacccbfb9e206818c5f096eb759bb6149f758 SHA512 a81a4b41ba7b31b9d71aa338617ed8567100a64d999e6cd0a14586350bcd37bf9782cbaabad755c0303510bd342ec141af01157cbdc1e4373289700dfc40c3c9
23
24 diff --git a/dev-python/jupyter_packaging/jupyter_packaging-0.12.3.ebuild b/dev-python/jupyter_packaging/jupyter_packaging-0.12.3.ebuild
25 new file mode 100644
26 index 000000000000..60f174880fc1
27 --- /dev/null
28 +++ b/dev-python/jupyter_packaging/jupyter_packaging-0.12.3.ebuild
29 @@ -0,0 +1,43 @@
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..11} )
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="Tools to help build and install Jupyter Python packages"
41 +HOMEPAGE="
42 + https://jupyter.org/
43 + https://github.com/jupyter/jupyter-packaging/
44 + https://pypi.org/project/jupyter-packaging/
45 +"
46 +SRC_URI="mirror://pypi/${PN::1}/${PN}/${P}.tar.gz"
47 +
48 +LICENSE="BSD"
49 +SLOT="0"
50 +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
51 +
52 +RDEPEND="
53 + dev-python/packaging[${PYTHON_USEDEP}]
54 + >=dev-python/setuptools-60.2.0[${PYTHON_USEDEP}]
55 + dev-python/tomlkit[${PYTHON_USEDEP}]
56 + dev-python/wheel[${PYTHON_USEDEP}]
57 + dev-python/deprecation[${PYTHON_USEDEP}]
58 +"
59 +BDEPEND="
60 + test? (
61 + dev-python/build[${PYTHON_USEDEP}]
62 + dev-python/pytest-mock[${PYTHON_USEDEP}]
63 + )
64 +"
65 +
66 +distutils_enable_tests pytest
67 +
68 +EPYTEST_DESELECT=(
69 + # require Internet
70 + tests/test_build_api.py::test_build_package
71 + tests/test_build_api.py::test_deprecated_metadata
72 +)