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/tqdm/
Date: Sat, 04 Mar 2023 04:50:41
Message-Id: 1677905431.7088ab0a8e027f48a85f579e63fd3dd3cb1939ef.mgorny@gentoo
1 commit: 7088ab0a8e027f48a85f579e63fd3dd3cb1939ef
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Mar 4 04:28:14 2023 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Mar 4 04:50:31 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7088ab0a
7
8 dev-python/tqdm: Bump to 4.65.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/tqdm/Manifest | 1 +
13 dev-python/tqdm/tqdm-4.65.0.ebuild | 45 ++++++++++++++++++++++++++++++++++++++
14 2 files changed, 46 insertions(+)
15
16 diff --git a/dev-python/tqdm/Manifest b/dev-python/tqdm/Manifest
17 index 9be99bd87782..8fe7adcf405c 100644
18 --- a/dev-python/tqdm/Manifest
19 +++ b/dev-python/tqdm/Manifest
20 @@ -1 +1,2 @@
21 DIST tqdm-4.64.1.tar.gz 169599 BLAKE2B 4c48f647beb46f22e3c065e2e9c1dc29755c74a2fd29cb8ad8b0dfeab529499d0fbca9296d06453012b3bbf9f9870f95da5e2f37f4c8ba29a71cbee3bd15116b SHA512 bc7ab34145722229737d25d87895c8760b82271c345e1174c83f5896cc893f92a27901d83575472ad124329acdad69bd21e7d68e79aeeefb0e66c83b11989d18
22 +DIST tqdm-4.65.0.tar.gz 167542 BLAKE2B b1f7b5666600dd5c476ffc9852cdc8905b8819b6b3f812e00495fa38780dda0c59e48956881d46919ce57b13da9dde519fa7e22d91ed58fe43172da8e9043653 SHA512 86315b57d8ceec69ee8970b25372b26b03d2d37f6d06e037e712bf16c7f56eac1c4049291e451c7df62273b91ba7149b400efd0186ceee90268d854e7b476c47
23
24 diff --git a/dev-python/tqdm/tqdm-4.65.0.ebuild b/dev-python/tqdm/tqdm-4.65.0.ebuild
25 new file mode 100644
26 index 000000000000..168001703194
27 --- /dev/null
28 +++ b/dev-python/tqdm/tqdm-4.65.0.ebuild
29 @@ -0,0 +1,45 @@
30 +# Copyright 1999-2023 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=( pypy3 python3_{9..11} )
37 +
38 +inherit bash-completion-r1 distutils-r1 pypi
39 +
40 +DESCRIPTION="Add a progress meter to your loops in a second"
41 +HOMEPAGE="
42 + https://github.com/tqdm/tqdm/
43 + https://pypi.org/project/tqdm/
44 +"
45 +
46 +LICENSE="MIT"
47 +SLOT="0"
48 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos"
49 +IUSE="examples"
50 +
51 +BDEPEND="
52 + dev-python/setuptools-scm[${PYTHON_USEDEP}]
53 + test? (
54 + dev-python/pytest-asyncio[${PYTHON_USEDEP}]
55 + dev-python/pytest-timeout[${PYTHON_USEDEP}]
56 + )
57 +"
58 +
59 +distutils_enable_tests pytest
60 +
61 +EPYTEST_IGNORE=(
62 + # Skip unpredictable performance tests
63 + tests/tests_perf.py
64 +)
65 +
66 +python_install_all() {
67 + doman tqdm/tqdm.1
68 + newbashcomp tqdm/completion.sh tqdm
69 + if use examples; then
70 + dodoc -r examples
71 + docompress -x /usr/share/doc/${PF}/examples
72 + fi
73 + distutils-r1_python_install_all
74 +}