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: Tue, 24 Aug 2021 06:59:20
Message-Id: 1629788349.0f3381f31a847ff588debeffed34426d85bae2c8.mgorny@gentoo
1 commit: 0f3381f31a847ff588debeffed34426d85bae2c8
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Aug 24 06:32:52 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Aug 24 06:59:09 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f3381f3
7
8 dev-python/tqdm: Bump to 4.62.2
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.62.2.ebuild | 51 ++++++++++++++++++++++++++++++++++++++
14 2 files changed, 52 insertions(+)
15
16 diff --git a/dev-python/tqdm/Manifest b/dev-python/tqdm/Manifest
17 index 53cda200a57..24aed6278a8 100644
18 --- a/dev-python/tqdm/Manifest
19 +++ b/dev-python/tqdm/Manifest
20 @@ -1,3 +1,4 @@
21 DIST tqdm-4.61.2.tar.gz 169665 BLAKE2B f5dff67eb549cab0dd667815c25f6e885a2e0cefc2ad68e97fdc09599eb41b13589f7a88d5a445813973454a5e5f835b3139651ec2e09b717db0fd6dc705890e SHA512 bc33e8fe00244f90f61ab51d0c7c0b98d5580efebd9758284d9dbe2a699eabeb0d92871eedc2f95f377e29dd0f7ea4b5247b96cb4cc1687dcfea3a9ed1152ab7
22 DIST tqdm-4.62.0.tar.gz 169668 BLAKE2B 64a3df2f00a4fcba6bb67ae15e04f392a73b54cf7284f3c013ad31d00317e9d84ac2e1feed302137aeb7ea9e3c9d1d730623cbd96e8c76c46df6382435146efa SHA512 dd60d5522b68086410ec5f02574477dcc33a887ef509cc1d1735921dd906f951180d6115680517b3abbd2cf6c4ee1c60b9c950654ea9b7642d52d28052326088
23 DIST tqdm-4.62.1.tar.gz 169567 BLAKE2B 99e14631abe19d20d0fd67e1f885c307544103928f22e8913952b35adc2e596d4efa54fa4fedf4efdb1f8b83efdcee5de25052d6aba1974a668ba44f80de37dc SHA512 485d5a88588d026b3311419839abd57f8092295a2e68341708aa2c4ff35a97e30e9eb0db0db4ef9b0fc19c4d7b575ec6f30b213b97cb7498a9267d7c6e0a57ce
24 +DIST tqdm-4.62.2.tar.gz 169564 BLAKE2B fd3484db22eda5db7431fc337e23cfcf44882efc56c8b10208d799c156fefb5aa70c69c7063315d86d3ff881b97b62ac0b5c8be73ad3546ad0728f3f544cadfa SHA512 a59a041fa239e215e541f07c66292c27bfe067f3f2eac2916662b4ef1faa630346dec9558a7f66a3456b3d2ddcd164f9381cb89e5ac8350d0295367bfc248a8c
25
26 diff --git a/dev-python/tqdm/tqdm-4.62.2.ebuild b/dev-python/tqdm/tqdm-4.62.2.ebuild
27 new file mode 100644
28 index 00000000000..be993f73487
29 --- /dev/null
30 +++ b/dev-python/tqdm/tqdm-4.62.2.ebuild
31 @@ -0,0 +1,51 @@
32 +# Copyright 1999-2021 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=8
36 +
37 +PYTHON_COMPAT=( pypy3 python3_{8..10} )
38 +inherit distutils-r1
39 +
40 +if [[ ${PV} == 9999 ]]; then
41 + inherit git-r3
42 + EGIT_REPO_URI="https://github.com/tqdm/tqdm"
43 +else
44 + SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
45 + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86 ~x64-macos"
46 +fi
47 +
48 +DESCRIPTION="Add a progress meter to your loops in a second"
49 +HOMEPAGE="https://github.com/tqdm/tqdm"
50 +
51 +LICENSE="MIT"
52 +SLOT="0"
53 +IUSE="examples"
54 +
55 +BDEPEND="
56 + dev-python/setuptools_scm[${PYTHON_USEDEP}]
57 + dev-python/toml[${PYTHON_USEDEP}]
58 + test? (
59 + dev-python/pytest-asyncio[${PYTHON_USEDEP}]
60 + dev-python/pytest-timeout[${PYTHON_USEDEP}]
61 + )"
62 +
63 +distutils_enable_tests pytest
64 +
65 +python_test() {
66 + # Skip unpredictable performance tests
67 + epytest --ignore 'tests/tests_perf.py'
68 +}
69 +
70 +python_install() {
71 + doman "${BUILD_DIR}"/lib/tqdm/tqdm.1
72 + rm "${BUILD_DIR}"/lib/tqdm/tqdm.1 || die
73 + distutils-r1_python_install
74 +}
75 +
76 +python_install_all() {
77 + if use examples; then
78 + dodoc -r examples
79 + docompress -x /usr/share/doc/${PF}/examples
80 + fi
81 + distutils-r1_python_install_all
82 +}