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, 28 Feb 2022 08:28:44
Message-Id: 1646036905.a43b1d9af6787ada7f5bb3455f1b8ca603ecf930.mgorny@gentoo
1 commit: a43b1d9af6787ada7f5bb3455f1b8ca603ecf930
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 28 07:21:34 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 28 08:28:25 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a43b1d9a
7
8 dev-python/tqdm: Bump to 4.63.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.63.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 c2f40f608e07..c206b3dfffe5 100644
18 --- a/dev-python/tqdm/Manifest
19 +++ b/dev-python/tqdm/Manifest
20 @@ -1 +1,2 @@
21 DIST tqdm-4.62.3.tar.gz 167952 BLAKE2B d5732fc97256e1fc4f55bd1a0f69f98a87e7132cc1d8484baa12b7615da5a95ce20268515539c595c2b2aaf20f9a9434c17d581b3b90ea3cad3515150e469471 SHA512 1083ca2080163c98bbb55e124ce9d47c790e47c83cd8dad60e4c93773d1d97a50aacb5a25ddb8a2ae3691738e4f4942c88d55dab406c3e810cac18b8929d20ee
22 +DIST tqdm-4.63.0.tar.gz 168556 BLAKE2B f4fa47290f580f0923fa4325e88b103c4175344c928844149bf4b4445816bb7e87bd176d666b93a94a5981b246541017f0a34d710becf082110caca68b9ee45d SHA512 939ac7e310204094cb0c6a935ba6a91af45cd63fa8fa83865b75d1bcea440d5ff21a4d3405f5bcce864b43159921d3ef7b92d9c390fe30902f24e4e724c7eaf9
23
24 diff --git a/dev-python/tqdm/tqdm-4.63.0.ebuild b/dev-python/tqdm/tqdm-4.63.0.ebuild
25 new file mode 100644
26 index 000000000000..e8dbfbed9a0d
27 --- /dev/null
28 +++ b/dev-python/tqdm/tqdm-4.63.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 +}