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: Thu, 30 Jul 2020 20:41:13
Message-Id: 1596141638.992607055a4a96d7d60327f27395c11db035138e.mgorny@gentoo
1 commit: 992607055a4a96d7d60327f27395c11db035138e
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jul 30 20:31:42 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Jul 30 20:40:38 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99260705
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.40.0.ebuild | 60 --------------------------------------
14 dev-python/tqdm/tqdm-4.45.0.ebuild | 60 --------------------------------------
15 3 files changed, 122 deletions(-)
16
17 diff --git a/dev-python/tqdm/Manifest b/dev-python/tqdm/Manifest
18 index 4d04dae94ba..3aea4fbda18 100644
19 --- a/dev-python/tqdm/Manifest
20 +++ b/dev-python/tqdm/Manifest
21 @@ -1,4 +1,2 @@
22 -DIST tqdm-4.40.0.tar.gz 129225 BLAKE2B 85030c11bdba6c1d6da461e3c648bae6ae173577fb18986e3153badd73a28352f807782759aa52ed082d7ee0c13dc5f850c1da563ee5892f6bf5e8f49c48c7ee SHA512 1c326d98130c79f614cea502723e4202baa57b7b4639e208133cb464785e4a8d4eaa9d262ea484246d45e5eb8f21994e7ecf3fd6ef0f4966f9049fc8013d7442
23 -DIST tqdm-4.45.0.tar.gz 140990 BLAKE2B 8699b3a820859406e9bbafaaa48ba1b418e3083898d2b6c3401078996dd03431db259d5ad8a377226a50b80513ef0fc55bdaf2b67fc4a2bdd490bc5fdc04d681 SHA512 7b35f86205c6581ede9bdb0788e7f55be525c3f0f77952803046661c6a7a6cd3c15ed0323376ecedb5cddace1b32a41fee1932033dcaa49f9096dc3b9b674f10
24 DIST tqdm-4.47.0.tar.gz 145749 BLAKE2B 77a5efec763a8e58e071ee571077ee0db72d9243308592519ecd2c38f60d6b621fd7362dd87bdd0759a39f25c19cc3cc889e9a8376dc658ed565ca7e19fc68cd SHA512 4023988cef757f43a6f59f7eddc8f40246cbca4994cea91dbb4a788385c0706f376f4c0fd5c8c47146c10eb8c52be2c9d4855b7bea0a5036162c55447aac95d7
25 DIST tqdm-4.48.0.tar.gz 148578 BLAKE2B 95ce438cc14cad5a4ad7b9b2b89b38d5a5c49e27a4ed797ae1a05d7eb3d9539dfaaee72f6330cd5f3f18721ca4259c5ee3f643ae8dd509f1e2261566ee9c3f02 SHA512 9c23b103603c5f56f9cc84d04e68950a0e6431cf40db856918f6e2f21aea61fafbbf466eff6d80fc14c40bb2a11dd0be80e801c55adbab02762c36ce9bed31a9
26
27 diff --git a/dev-python/tqdm/tqdm-4.40.0.ebuild b/dev-python/tqdm/tqdm-4.40.0.ebuild
28 deleted file mode 100644
29 index 68318744494..00000000000
30 --- a/dev-python/tqdm/tqdm-4.40.0.ebuild
31 +++ /dev/null
32 @@ -1,60 +0,0 @@
33 -# Copyright 1999-2020 Gentoo Authors
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI=7
37 -
38 -PYTHON_COMPAT=( pypy3 python3_{6,7,8} )
39 -
40 -inherit distutils-r1
41 -
42 -if [[ ${PV} == 9999 ]]; then
43 - inherit git-r3
44 - EGIT_REPO_URI="https://github.com/tqdm/tqdm"
45 -else
46 - SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
47 - KEYWORDS="~alpha amd64 ~arm64 ~hppa ~sparc x86"
48 -fi
49 -
50 -DESCRIPTION="Add a progress meter to your loops in a second"
51 -HOMEPAGE="https://github.com/tqdm/tqdm"
52 -
53 -LICENSE="MIT"
54 -SLOT="0"
55 -IUSE="examples"
56 -
57 -RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
58 -BDEPEND="${RDEPEND}"
59 -
60 -distutils_enable_tests nose
61 -
62 -python_prepare_all() {
63 - sed -r \
64 - -e "s:'nose'(,[[:space:]]*|)::" \
65 - -e "s:'flake8'(,[[:space:]]*|)::" \
66 - -e "s:'coverage'(,[[:space:]]*|)::" \
67 - -i setup.py
68 -
69 - distutils-r1_python_prepare_all
70 -}
71 -
72 -python_test() {
73 - # tests_main.py requires the package to be installed
74 - distutils_install_for_testing
75 - # Skip unpredictable performance tests
76 - nosetests tqdm -v --ignore 'tests_perf.py' \
77 - || die "tests failed with ${EPYTHON}"
78 -}
79 -
80 -python_install() {
81 - doman "${BUILD_DIR}"/lib/tqdm/tqdm.1
82 - rm "${BUILD_DIR}"/lib/tqdm/tqdm.1 || die
83 - distutils-r1_python_install --skip-build
84 -}
85 -
86 -python_install_all() {
87 - if use examples; then
88 - dodoc -r examples
89 - docompress -x /usr/share/doc/${PF}/examples
90 - fi
91 - distutils-r1_python_install_all
92 -}
93
94 diff --git a/dev-python/tqdm/tqdm-4.45.0.ebuild b/dev-python/tqdm/tqdm-4.45.0.ebuild
95 deleted file mode 100644
96 index 5e0723833cd..00000000000
97 --- a/dev-python/tqdm/tqdm-4.45.0.ebuild
98 +++ /dev/null
99 @@ -1,60 +0,0 @@
100 -# Copyright 1999-2020 Gentoo Authors
101 -# Distributed under the terms of the GNU General Public License v2
102 -
103 -EAPI=7
104 -
105 -PYTHON_COMPAT=( pypy3 python3_{6,7,8} )
106 -
107 -inherit distutils-r1
108 -
109 -if [[ ${PV} == 9999 ]]; then
110 - inherit git-r3
111 - EGIT_REPO_URI="https://github.com/tqdm/tqdm"
112 -else
113 - SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
114 - KEYWORDS="~alpha amd64 arm arm64 hppa ppc ppc64 sparc x86"
115 -fi
116 -
117 -DESCRIPTION="Add a progress meter to your loops in a second"
118 -HOMEPAGE="https://github.com/tqdm/tqdm"
119 -
120 -LICENSE="MIT"
121 -SLOT="0"
122 -IUSE="examples"
123 -
124 -RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
125 -BDEPEND="${RDEPEND}"
126 -
127 -distutils_enable_tests nose
128 -
129 -python_prepare_all() {
130 - sed -r \
131 - -e "s:'nose'(,[[:space:]]*|)::" \
132 - -e "s:'flake8'(,[[:space:]]*|)::" \
133 - -e "s:'coverage'(,[[:space:]]*|)::" \
134 - -i setup.py
135 -
136 - distutils-r1_python_prepare_all
137 -}
138 -
139 -python_test() {
140 - # tests_main.py requires the package to be installed
141 - distutils_install_for_testing
142 - # Skip unpredictable performance tests
143 - nosetests tqdm -v --ignore 'tests_perf.py' \
144 - || die "tests failed with ${EPYTHON}"
145 -}
146 -
147 -python_install() {
148 - doman "${BUILD_DIR}"/lib/tqdm/tqdm.1
149 - rm "${BUILD_DIR}"/lib/tqdm/tqdm.1 || die
150 - distutils-r1_python_install --skip-build
151 -}
152 -
153 -python_install_all() {
154 - if use examples; then
155 - dodoc -r examples
156 - docompress -x /usr/share/doc/${PF}/examples
157 - fi
158 - distutils-r1_python_install_all
159 -}