dev-python/tqdm: treeclean

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2024-04-12 21:38:09 +02:00
parent f22c5fdaca
commit c79ed3a456
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 2 additions and 66 deletions

View File

@ -617,11 +617,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 1773 Ebuilds in total, 1762 of them have in total 1782 (42 different) licenses assigned.
There are 1772 Ebuilds in total, 1761 of them have in total 1781 (42 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1007|
|MIT|1006|
|Apache-2.0|398|
|GPL-3|106|
|BSD|102|

View File

@ -1,3 +0,0 @@
DIST tqdm-4.66.1.tar.gz 169147 BLAKE2B 4b274badaa13feb55ff079e143ec5a539a2ad1e1ed60fb319b8f955cfb5baa26676773c0d4fee95c6ad0f068434eadd80bee97559d0c0fdc8c74ea890781f589 SHA512 989bc93f791e1636525486688b1d9b457314cde7b5804018382cc490638ac0b88aac50d7870beb9dd80bc5f05e083b8f9f205ac17324106f6d936bfe8d2f316e
EBUILD tqdm-4.66.1.ebuild 1001 BLAKE2B 733e92b55eab154db5570f6faa294a8e3c1f457ea5fefe2cc1c696f50cfbeebbe9f89c1bde6ee75078f37c07f4ed8638b42309c7edea93d73081a1733b5238c2 SHA512 0730bb760aa2df3449d9c2f62ed913748e2abecca0e9b199499550d232e627c8cc50e93f3eef3fe502a5c89382790a9db8a57eb6f70d26383faef84b98491fe8
MISC metadata.xml 504 BLAKE2B 1850923c89b64586b6a0108994f65b2e78e98fdb803fd5fd819511744bc3149ba1e6c870fcd44185e8ca0c7da158ca5c3e56b9638c09c7e77e0904041182c3ee SHA512 f285c5d962f30558c131092a2cfe2b64bab35584920dffb5ac5f99ebc917e6ff60fa388910306e9125e4ccb7e9dd3f295f09b875b7642e0e29e1b18467a13625

View File

@ -1,16 +0,0 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<upstream>
<remote-id type="pypi">tqdm</remote-id>
<remote-id type="github">tqdm/tqdm</remote-id>
<maintainer status="unknown">
<email>python.tqdm@gmail.com</email>
<name>tqdm developers</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -1,45 +0,0 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( pypy3 python3_{10..12} )
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="~alpha amd64 arm arm64 hppa ~ia64 ~loong ppc ppc64 ~riscv ~s390 sparc x86 ~arm64-macos ~x64-macos"
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
}