dev-python/tqdm: add 4.66.5

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2025-02-19 11:08:46 +01:00
parent 91847e097d
commit cc18e331de
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 49 additions and 2 deletions

View File

@ -606,11 +606,11 @@ A daily compile test is run at Github with Python 3.9 to catch general faults. E
## Licenses
This repository itself is released under GPL-3 (like most Gentoo repositories), all work on the depending components under the licenses they came from. Perhaps you came here because I filed an issue at your component about a bad or missing license. It is easy to [assign a license](https://docs.github.com/en/communities/setting-up-your-project-for-healthy-contributions/adding-a-license-to-a-repository). During cleanups and license investigations I have been asked often which license to choose. I am not a lawyer, but I can offer the following table, counted over this repository, perhaps this helps your decision. If a package has more than one license listed, all of them are counted.
There are 2347 Ebuilds in total, 2333 of them have in total 2373 (43 different) licenses assigned.
There are 2348 Ebuilds in total, 2334 of them have in total 2374 (43 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1333|
|MIT|1334|
|Apache-2.0|553|
|GPL-3|145|
|BSD|124|

View File

@ -1,3 +1,5 @@
DIST tqdm-4.66.2.tar.gz 169462 BLAKE2B 57a1e5895ed2e1f99246fd6bdfc08fb75a24451e358bbf38324cdcfe35559b6748dbe63dcdaf65024b12165daa404c98d5b6db81673e7d0f930142cab1b623d7 SHA512 49abd9006ca7c8672835b202e4e722602035a0e21723337b4227e114d6d50b678edb6c5f2b0cf4e6741eae5e86551ba59233f87989f6b69bb4d4414d5a3c80e5
DIST tqdm-4.66.5.tar.gz 169504 BLAKE2B 9868bcfb4f3fc22aedfbb848d383055ef6ef9795982cd7877e620dba5391ffee369c375b27555c302d1fc6fb27ddacf8d3874daeffa62e5e8699e1124fbf96af SHA512 8e2c35f02fe365063a325d8a1d3e525870d522fab465e1a86764b8716ff32c039db463fe5e74a5f080ced40851d49b1e4273126074d62f14ed1935a96e0afb8a
EBUILD tqdm-4.66.2.ebuild 917 BLAKE2B bedfde109ed7ae91ea0d98355bfff117ee3f2d87b7c5eb5180833801e9271acbf0a23d6a4a7532f60722ddf4657e701bd97a31b7240b781695b123b1c1a419f7 SHA512 e860a6674fa3089d77cff9a137adfcaccfbc625d4c4fdc32fab7d6728071bdb3a00c8caefe80604dda2edcb3637cebe7f55f08352ddcfb9b9e2e6ae959060aff
EBUILD tqdm-4.66.5.ebuild 917 BLAKE2B bedfde109ed7ae91ea0d98355bfff117ee3f2d87b7c5eb5180833801e9271acbf0a23d6a4a7532f60722ddf4657e701bd97a31b7240b781695b123b1c1a419f7 SHA512 e860a6674fa3089d77cff9a137adfcaccfbc625d4c4fdc32fab7d6728071bdb3a00c8caefe80604dda2edcb3637cebe7f55f08352ddcfb9b9e2e6ae959060aff
MISC metadata.xml 495 BLAKE2B 07b216532e3afa1d87ca83743515ab80fcc516a63343beefe0cde5183c50a6bc1e9143eda7e3424994444a9d492036b1c42aad4a787a35c32a46b3086950356b SHA512 e80a8e0812f116f62d6d6231649804706da2026a0ecad0532a7f5c1253b7480480c4fdf0877b953fa13b0b59bd14707784cfdee6e050a1849a4952c683962678

View File

@ -0,0 +1,45 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{11..13} )
inherit bash-completion-r1 distutils-r1 pypi
DESCRIPTION="Add a progress meter to your loops in a second"
HOMEPAGE="
https://github.com/tqdm/tqdm/
https://pypi.org/project/tqdm/
"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="examples"
BDEPEND="
dev-python/setuptools-scm[${PYTHON_USEDEP}]
test? (
dev-python/pytest-asyncio[${PYTHON_USEDEP}]
dev-python/pytest-timeout[${PYTHON_USEDEP}]
)
"
distutils_enable_tests pytest
EPYTEST_IGNORE=(
# Skip unpredictable performance tests
tests/tests_perf.py
)
python_install_all() {
doman tqdm/tqdm.1
newbashcomp tqdm/completion.sh tqdm
if use examples; then
dodoc -r examples
docompress -x /usr/share/doc/${PF}/examples
fi
distutils-r1_python_install_all
}