Skip to content

Commit 94c0ffb

Browse files
committed
dev-python/tqdm: new package, add 4.66.2
Closes: https://git.edevau.net/onkelbeh/HomeAssistantRepository/issues/3356 Signed-off-by: Andreas Billmeier <[email protected]>
1 parent 7270535 commit 94c0ffb

File tree

4 files changed

+66
-2
lines changed

4 files changed

+66
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -610,8 +610,8 @@ There are 1831 Ebuilds in total, 1820 of them have in total 1841 (42 different)
610610

611611
|License| Ebuilds using it|
612612
|-------|-----|
613-
|MIT|1053|
614-
|Apache-2.0|402|
613+
|MIT|1054|
614+
|Apache-2.0|401|
615615
|GPL-3|107|
616616
|BSD|106|
617617
|LGPL-3|25|

dev-python/tqdm/Manifest

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
DIST tqdm-4.66.2.tar.gz 169462 BLAKE2B 57a1e5895ed2e1f99246fd6bdfc08fb75a24451e358bbf38324cdcfe35559b6748dbe63dcdaf65024b12165daa404c98d5b6db81673e7d0f930142cab1b623d7 SHA512 49abd9006ca7c8672835b202e4e722602035a0e21723337b4227e114d6d50b678edb6c5f2b0cf4e6741eae5e86551ba59233f87989f6b69bb4d4414d5a3c80e5
2+
EBUILD tqdm-4.66.2.ebuild 917 BLAKE2B bedfde109ed7ae91ea0d98355bfff117ee3f2d87b7c5eb5180833801e9271acbf0a23d6a4a7532f60722ddf4657e701bd97a31b7240b781695b123b1c1a419f7 SHA512 e860a6674fa3089d77cff9a137adfcaccfbc625d4c4fdc32fab7d6728071bdb3a00c8caefe80604dda2edcb3637cebe7f55f08352ddcfb9b9e2e6ae959060aff
3+
MISC metadata.xml 495 BLAKE2B 07b216532e3afa1d87ca83743515ab80fcc516a63343beefe0cde5183c50a6bc1e9143eda7e3424994444a9d492036b1c42aad4a787a35c32a46b3086950356b SHA512 e80a8e0812f116f62d6d6231649804706da2026a0ecad0532a7f5c1253b7480480c4fdf0877b953fa13b0b59bd14707784cfdee6e050a1849a4952c683962678

dev-python/tqdm/metadata.xml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?xml version='1.0' encoding='UTF-8'?>
2+
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
3+
<pkgmetadata>
4+
<maintainer type="project">
5+
<email>[email protected]</email>
6+
<name>Andreas Billmeier</name>
7+
</maintainer>
8+
<upstream>
9+
<remote-id type="pypi">tqdm</remote-id>
10+
<remote-id type="github">tqdm/tqdm</remote-id>
11+
<maintainer status="unknown">
12+
<email>[email protected]</email>
13+
<name>tqdm developers</name>
14+
</maintainer>
15+
</upstream>
16+
</pkgmetadata>

dev-python/tqdm/tqdm-4.66.2.ebuild

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
# Copyright 1999-2024 Gentoo Authors
2+
# Distributed under the terms of the GNU General Public License v2
3+
4+
EAPI=8
5+
6+
DISTUTILS_USE_PEP517=setuptools
7+
PYTHON_COMPAT=( python3_{11..13} )
8+
9+
inherit bash-completion-r1 distutils-r1 pypi
10+
11+
DESCRIPTION="Add a progress meter to your loops in a second"
12+
HOMEPAGE="
13+
https://github.com/tqdm/tqdm/
14+
https://pypi.org/project/tqdm/
15+
"
16+
17+
LICENSE="MIT"
18+
SLOT="0"
19+
KEYWORDS="amd64 arm arm64 x86"
20+
IUSE="examples"
21+
22+
BDEPEND="
23+
dev-python/setuptools-scm[${PYTHON_USEDEP}]
24+
test? (
25+
dev-python/pytest-asyncio[${PYTHON_USEDEP}]
26+
dev-python/pytest-timeout[${PYTHON_USEDEP}]
27+
)
28+
"
29+
30+
distutils_enable_tests pytest
31+
32+
EPYTEST_IGNORE=(
33+
# Skip unpredictable performance tests
34+
tests/tests_perf.py
35+
)
36+
37+
python_install_all() {
38+
doman tqdm/tqdm.1
39+
newbashcomp tqdm/completion.sh tqdm
40+
if use examples; then
41+
dodoc -r examples
42+
docompress -x /usr/share/doc/${PF}/examples
43+
fi
44+
distutils-r1_python_install_all
45+
}

0 commit comments

Comments
 (0)