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: Sun, 05 Sep 2021 06:35:46
Message-Id: 1630823588.39d295b1b055b4a3df6b447d7a6be93c9f758800.mgorny@gentoo
1 commit: 39d295b1b055b4a3df6b447d7a6be93c9f758800
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Sep 5 06:33:08 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Sep 5 06:33:08 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39d295b1
7
8 dev-python/tqdm: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/tqdm/Manifest | 2 --
13 dev-python/tqdm/tqdm-4.61.2.ebuild | 51 --------------------------------------
14 dev-python/tqdm/tqdm-4.62.1.ebuild | 51 --------------------------------------
15 3 files changed, 104 deletions(-)
16
17 diff --git a/dev-python/tqdm/Manifest b/dev-python/tqdm/Manifest
18 index 24aed6278a8..b10a2a36e08 100644
19 --- a/dev-python/tqdm/Manifest
20 +++ b/dev-python/tqdm/Manifest
21 @@ -1,4 +1,2 @@
22 -DIST tqdm-4.61.2.tar.gz 169665 BLAKE2B f5dff67eb549cab0dd667815c25f6e885a2e0cefc2ad68e97fdc09599eb41b13589f7a88d5a445813973454a5e5f835b3139651ec2e09b717db0fd6dc705890e SHA512 bc33e8fe00244f90f61ab51d0c7c0b98d5580efebd9758284d9dbe2a699eabeb0d92871eedc2f95f377e29dd0f7ea4b5247b96cb4cc1687dcfea3a9ed1152ab7
23 DIST tqdm-4.62.0.tar.gz 169668 BLAKE2B 64a3df2f00a4fcba6bb67ae15e04f392a73b54cf7284f3c013ad31d00317e9d84ac2e1feed302137aeb7ea9e3c9d1d730623cbd96e8c76c46df6382435146efa SHA512 dd60d5522b68086410ec5f02574477dcc33a887ef509cc1d1735921dd906f951180d6115680517b3abbd2cf6c4ee1c60b9c950654ea9b7642d52d28052326088
24 -DIST tqdm-4.62.1.tar.gz 169567 BLAKE2B 99e14631abe19d20d0fd67e1f885c307544103928f22e8913952b35adc2e596d4efa54fa4fedf4efdb1f8b83efdcee5de25052d6aba1974a668ba44f80de37dc SHA512 485d5a88588d026b3311419839abd57f8092295a2e68341708aa2c4ff35a97e30e9eb0db0db4ef9b0fc19c4d7b575ec6f30b213b97cb7498a9267d7c6e0a57ce
25 DIST tqdm-4.62.2.tar.gz 169564 BLAKE2B fd3484db22eda5db7431fc337e23cfcf44882efc56c8b10208d799c156fefb5aa70c69c7063315d86d3ff881b97b62ac0b5c8be73ad3546ad0728f3f544cadfa SHA512 a59a041fa239e215e541f07c66292c27bfe067f3f2eac2916662b4ef1faa630346dec9558a7f66a3456b3d2ddcd164f9381cb89e5ac8350d0295367bfc248a8c
26
27 diff --git a/dev-python/tqdm/tqdm-4.61.2.ebuild b/dev-python/tqdm/tqdm-4.61.2.ebuild
28 deleted file mode 100644
29 index dd8d2f22d61..00000000000
30 --- a/dev-python/tqdm/tqdm-4.61.2.ebuild
31 +++ /dev/null
32 @@ -1,51 +0,0 @@
33 -# Copyright 1999-2021 Gentoo Authors
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI=8
37 -
38 -PYTHON_COMPAT=( pypy3 python3_{8..10} )
39 -inherit distutils-r1
40 -
41 -if [[ ${PV} == 9999 ]]; then
42 - inherit git-r3
43 - EGIT_REPO_URI="https://github.com/tqdm/tqdm"
44 -else
45 - SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
46 - KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~riscv sparc x86 ~x64-macos"
47 -fi
48 -
49 -DESCRIPTION="Add a progress meter to your loops in a second"
50 -HOMEPAGE="https://github.com/tqdm/tqdm"
51 -
52 -LICENSE="MIT"
53 -SLOT="0"
54 -IUSE="examples"
55 -
56 -BDEPEND="
57 - dev-python/setuptools_scm[${PYTHON_USEDEP}]
58 - dev-python/toml[${PYTHON_USEDEP}]
59 - test? (
60 - dev-python/pytest-asyncio[${PYTHON_USEDEP}]
61 - dev-python/pytest-timeout[${PYTHON_USEDEP}]
62 - )"
63 -
64 -distutils_enable_tests pytest
65 -
66 -python_test() {
67 - # Skip unpredictable performance tests
68 - epytest --ignore 'tests/tests_perf.py'
69 -}
70 -
71 -python_install() {
72 - doman "${BUILD_DIR}"/lib/tqdm/tqdm.1
73 - rm "${BUILD_DIR}"/lib/tqdm/tqdm.1 || die
74 - distutils-r1_python_install
75 -}
76 -
77 -python_install_all() {
78 - if use examples; then
79 - dodoc -r examples
80 - docompress -x /usr/share/doc/${PF}/examples
81 - fi
82 - distutils-r1_python_install_all
83 -}
84
85 diff --git a/dev-python/tqdm/tqdm-4.62.1.ebuild b/dev-python/tqdm/tqdm-4.62.1.ebuild
86 deleted file mode 100644
87 index be993f73487..00000000000
88 --- a/dev-python/tqdm/tqdm-4.62.1.ebuild
89 +++ /dev/null
90 @@ -1,51 +0,0 @@
91 -# Copyright 1999-2021 Gentoo Authors
92 -# Distributed under the terms of the GNU General Public License v2
93 -
94 -EAPI=8
95 -
96 -PYTHON_COMPAT=( pypy3 python3_{8..10} )
97 -inherit distutils-r1
98 -
99 -if [[ ${PV} == 9999 ]]; then
100 - inherit git-r3
101 - EGIT_REPO_URI="https://github.com/tqdm/tqdm"
102 -else
103 - SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
104 - KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86 ~x64-macos"
105 -fi
106 -
107 -DESCRIPTION="Add a progress meter to your loops in a second"
108 -HOMEPAGE="https://github.com/tqdm/tqdm"
109 -
110 -LICENSE="MIT"
111 -SLOT="0"
112 -IUSE="examples"
113 -
114 -BDEPEND="
115 - dev-python/setuptools_scm[${PYTHON_USEDEP}]
116 - dev-python/toml[${PYTHON_USEDEP}]
117 - test? (
118 - dev-python/pytest-asyncio[${PYTHON_USEDEP}]
119 - dev-python/pytest-timeout[${PYTHON_USEDEP}]
120 - )"
121 -
122 -distutils_enable_tests pytest
123 -
124 -python_test() {
125 - # Skip unpredictable performance tests
126 - epytest --ignore 'tests/tests_perf.py'
127 -}
128 -
129 -python_install() {
130 - doman "${BUILD_DIR}"/lib/tqdm/tqdm.1
131 - rm "${BUILD_DIR}"/lib/tqdm/tqdm.1 || die
132 - distutils-r1_python_install
133 -}
134 -
135 -python_install_all() {
136 - if use examples; then
137 - dodoc -r examples
138 - docompress -x /usr/share/doc/${PF}/examples
139 - fi
140 - distutils-r1_python_install_all
141 -}