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/ubelt/
Date: Sat, 04 Jun 2022 07:00:28
Message-Id: 1654326017.e1eae3094d9557c4736efa990fb44a96c28c6641.mgorny@gentoo
1 commit: e1eae3094d9557c4736efa990fb44a96c28c6641
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jun 4 05:49:37 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Jun 4 07:00:17 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e1eae309
7
8 dev-python/ubelt: Bump to 1.1.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/ubelt/Manifest | 1 +
13 dev-python/ubelt/ubelt-1.1.0.ebuild | 42 +++++++++++++++++++++++++++++++++++++
14 2 files changed, 43 insertions(+)
15
16 diff --git a/dev-python/ubelt/Manifest b/dev-python/ubelt/Manifest
17 index 2d98838b498e..bdf228c9bd92 100644
18 --- a/dev-python/ubelt/Manifest
19 +++ b/dev-python/ubelt/Manifest
20 @@ -1 +1,2 @@
21 DIST ubelt-1.0.1.tar.gz 242552 BLAKE2B da4ceb039b926f942c593563e77b42ebfb39a75bfc2953a6eadf2430bda8ebe25faeb4a00714fc110486715da15515fa316d3705d9853a7eb93320ee694d1127 SHA512 150f1c76b5814441fe0bfd50017f37ede4d463cc4e23f152ac634e7531d83f28560415ad26527cd40a7ebdab546d7edd711a1ba0c728ef63791219bf4866099c
22 +DIST ubelt-1.1.0.gh.tar.gz 259127 BLAKE2B 064b106d5f03b106828079e024c3845ed55077f6bc4a69be4a7d05aa803b172104f2271626c9ab287b7b225711eb6490b49f0fa69f24729899e62a094069de16 SHA512 5a256f91d70ff218e595b852de11080f31ddd8ba29cc67a4a38f4c85ae69c0bda23c494d117926290901c5e6267b2d5eb2fc440951e0b598cca23cca6bf45c79
23
24 diff --git a/dev-python/ubelt/ubelt-1.1.0.ebuild b/dev-python/ubelt/ubelt-1.1.0.ebuild
25 new file mode 100644
26 index 000000000000..1034f123c01b
27 --- /dev/null
28 +++ b/dev-python/ubelt/ubelt-1.1.0.ebuild
29 @@ -0,0 +1,42 @@
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=setuptools
36 +PYTHON_COMPAT=( python3_{8..10} )
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="A stdlib like feel, and extra batteries. Hashing, Caching, Timing, Progress"
41 +HOMEPAGE="
42 + https://github.com/Erotemic/ubelt/
43 + https://pypi.org/project/ubelt/
44 +"
45 +SRC_URI="
46 + https://github.com/Erotemic/${PN}/archive/v${PV}.tar.gz
47 + -> ${P}.gh.tar.gz
48 +"
49 +
50 +SLOT="0"
51 +LICENSE="Apache-2.0"
52 +KEYWORDS="~amd64 ~x86"
53 +
54 +BDEPEND="
55 + test? (
56 + >=dev-python/numpy-1.19.2[${PYTHON_USEDEP}]
57 + >=dev-python/pygments-2.2.0[${PYTHON_USEDEP}]
58 + >=dev-python/python-dateutil-2.8.1[${PYTHON_USEDEP}]
59 + dev-python/xdoctest[${PYTHON_USEDEP}]
60 + >=dev-python/xxhash-1.0.1[${PYTHON_USEDEP}]
61 + )
62 +"
63 +
64 +distutils_enable_tests pytest
65 +
66 +EPYTEST_DESELECT=(
67 + # relies on passwd home being equal to ${HOME}
68 + ubelt/util_path.py::userhome:0
69 + # relies on which(1), not worth the dep
70 + ubelt/util_platform.py::find_exe:0
71 +)