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/ubelt/
Date: Tue, 06 Sep 2022 17:54:45
Message-Id: 1662486868.370aa9e3f61746a368e28eb691b7aaa062f93fe9.arthurzam@gentoo
1 commit: 370aa9e3f61746a368e28eb691b7aaa062f93fe9
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Tue Sep 6 17:16:06 2022 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 6 17:54:28 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=370aa9e3
7
8 dev-python/ubelt: add 1.2.2
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 dev-python/ubelt/Manifest | 1 +
13 dev-python/ubelt/ubelt-1.2.2.ebuild | 42 +++++++++++++++++++++++++++++++++++++
14 2 files changed, 43 insertions(+)
15
16 diff --git a/dev-python/ubelt/Manifest b/dev-python/ubelt/Manifest
17 index ac37b98b535b..3759d638e140 100644
18 --- a/dev-python/ubelt/Manifest
19 +++ b/dev-python/ubelt/Manifest
20 @@ -2,3 +2,4 @@ DIST ubelt-1.1.1.gh.tar.gz 263082 BLAKE2B c146cfa7084b1d04d5a16443e5f8bdd4858992
21 DIST ubelt-1.1.2.gh.tar.gz 267530 BLAKE2B c00c0b9d548b324090c012a0b1786c7011e9a3ccbdf055e5db39597fe8b695c785f0499a0f089c63c61ea7da76cd6cd802122d0f0e2f77aef4c08568331a6be6 SHA512 e2e77b1736870a010a3256cef2d4071294fdb525c0c6ad8d4665cc85b05148b7381e66f06c2ff74d1ae3588d78daaa71fb8a1907ae1585edb3ff9f2c9fb62b59
22 DIST ubelt-1.2.0.gh.tar.gz 290425 BLAKE2B f4bae0580dc70461082e906892dbe7bc635bbb3ce9f4cf82ec101deb7ac5b23633232ebb6fe579258c9b0add00fd9fc08d01312c140ae3fca431c646945f0d67 SHA512 4009a3de269140340dcdc70cf150ec55576a10506942195261b4420bb471d00a11771bae5366b72f901c89f74843a281a2b147e9b565c2d256f1a0fdcc2c665d
23 DIST ubelt-1.2.1.gh.tar.gz 294026 BLAKE2B 7c1050a1107ebbc833c19adeb6c53377842634b8f7a861825d637d578ad7e1a5cab4410c9b07913c3a29fe9eb1f84bc61694269ce86b02cef5170eed4c3e5dd5 SHA512 6ac74a09a00693d8f4091952e1c7ec06646c48b0d8cf3affe7154e20c708ceb95ba9e113c4f10fa73fb971e6d932e3aea04b1aa7d2c9d446f1de5269f91cafa0
24 +DIST ubelt-1.2.2.gh.tar.gz 303629 BLAKE2B 624f56db069bb72ff3686db9d4ca47a1ac384ab9cb0810dd608fa8c12d00789b219d3d5a659e153cde87bb42a585f6176527c7b89fbef8afbf3f86433e456bbe SHA512 f0384cee3b8b474e2f3d893134cde6a7e96c73b98e4be6bb928dd410bdc763d9846409f867232c6b34840d0f77bcc95aa425b4a67dc3eeec3c634fd1c1311332
25
26 diff --git a/dev-python/ubelt/ubelt-1.2.2.ebuild b/dev-python/ubelt/ubelt-1.2.2.ebuild
27 new file mode 100644
28 index 000000000000..0dd09d509f91
29 --- /dev/null
30 +++ b/dev-python/ubelt/ubelt-1.2.2.ebuild
31 @@ -0,0 +1,42 @@
32 +# Copyright 1999-2022 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=8
36 +
37 +DISTUTILS_USE_PEP517=setuptools
38 +PYTHON_COMPAT=( python3_{8..10} )
39 +
40 +inherit distutils-r1
41 +
42 +DESCRIPTION="A stdlib like feel, and extra batteries. Hashing, Caching, Timing, Progress"
43 +HOMEPAGE="
44 + https://github.com/Erotemic/ubelt/
45 + https://pypi.org/project/ubelt/
46 +"
47 +SRC_URI="
48 + https://github.com/Erotemic/${PN}/archive/v${PV}.tar.gz
49 + -> ${P}.gh.tar.gz
50 +"
51 +
52 +SLOT="0"
53 +LICENSE="Apache-2.0"
54 +KEYWORDS="~amd64 ~x86"
55 +
56 +BDEPEND="
57 + test? (
58 + >=dev-python/numpy-1.19.2[${PYTHON_USEDEP}]
59 + >=dev-python/pygments-2.2.0[${PYTHON_USEDEP}]
60 + >=dev-python/python-dateutil-2.8.1[${PYTHON_USEDEP}]
61 + >=dev-python/requests-2.25.1[${PYTHON_USEDEP}]
62 + dev-python/xdoctest[${PYTHON_USEDEP}]
63 + >=dev-python/xxhash-1.0.1[${PYTHON_USEDEP}]
64 + )
65 +"
66 +
67 +distutils_enable_tests pytest
68 +
69 +EPYTEST_DESELECT=(
70 + tests/test_editable_modules.py::test_import_of_editable_install
71 + # relies on passwd home being equal to ${HOME}
72 + ubelt/util_path.py::userhome:0
73 +)