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: Mon, 04 Apr 2022 07:43:25
Message-Id: 1649058196.f9e026979a84f8f9f164f351202e11604f99a90a.mgorny@gentoo
1 commit: f9e026979a84f8f9f164f351202e11604f99a90a
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Apr 4 07:31:32 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Apr 4 07:43:16 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9e02697
7
8 dev-python/tqdm: Bump to 4.64.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.64.0.ebuild | 46 ++++++++++++++++++++++++++++++++++++++
14 2 files changed, 47 insertions(+)
15
16 diff --git a/dev-python/tqdm/Manifest b/dev-python/tqdm/Manifest
17 index ea99205e61fd..b33d54d6ef3a 100644
18 --- a/dev-python/tqdm/Manifest
19 +++ b/dev-python/tqdm/Manifest
20 @@ -1 +1,2 @@
21 DIST tqdm-4.63.1.tar.gz 168619 BLAKE2B c5d282f07bd1042097ba24cfc7c5311ce53fa5b66e4f9d4b8504c5d102a4c380dfbc8bb59deee469c90d9726b7d36a34cf9c88ed07b412378f51819f789e8e9c SHA512 3d7dfb81ca6b8b72f26d6b3ef4309af19e1679d3ee805e3c1326e804df4204acc20de8d935394eac736a1598d9c5485165f3cbd2b83b746c2bbf202d3b1e4c5c
22 +DIST tqdm-4.64.0.tar.gz 169499 BLAKE2B a6b9587a366c026716c63af4358ddba693b52be3490a161071bc750fffcd50429bc639255635d96c950a130d9fe994dc2abc98f3fbaf0a0c344140c8ae972596 SHA512 84d243b86ea3665e915e6a79e7887a4d0487b166971d211e34229b7a46429f4e4f5808c03f24420b20fb85d274e1e6b36ed852af99c5c9d177c8ce71f0ce0c17
23
24 diff --git a/dev-python/tqdm/tqdm-4.64.0.ebuild b/dev-python/tqdm/tqdm-4.64.0.ebuild
25 new file mode 100644
26 index 000000000000..e8dbfbed9a0d
27 --- /dev/null
28 +++ b/dev-python/tqdm/tqdm-4.64.0.ebuild
29 @@ -0,0 +1,46 @@
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=( pypy3 python3_{8..10} )
37 +
38 +inherit bash-completion-r1 distutils-r1
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 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
46 +
47 +LICENSE="MIT"
48 +SLOT="0"
49 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-macos"
50 +IUSE="examples"
51 +
52 +BDEPEND="
53 + dev-python/setuptools_scm[${PYTHON_USEDEP}]
54 + test? (
55 + dev-python/pytest-asyncio[${PYTHON_USEDEP}]
56 + dev-python/pytest-timeout[${PYTHON_USEDEP}]
57 + )
58 +"
59 +
60 +distutils_enable_tests pytest
61 +
62 +EPYTEST_IGNORE=(
63 + # Skip unpredictable performance tests
64 + tests/tests_perf.py
65 +)
66 +
67 +python_install_all() {
68 + doman tqdm/tqdm.1
69 + newbashcomp tqdm/completion.sh tqdm
70 + if use examples; then
71 + dodoc -r examples
72 + docompress -x /usr/share/doc/${PF}/examples
73 + fi
74 + distutils-r1_python_install_all
75 +}