dev-python/tenacity: remove outdated tenacity

This commit is contained in:
Andreas Billmeier 2022-10-18 00:40:07 +02:00 committed by Andreas Billmeier
parent 8a6c3cdf9d
commit 5e8c9c1ad0
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 2 additions and 54 deletions

View File

@ -547,12 +547,12 @@ 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 1473 Ebuilds in total, 1466 of them have in total 1476 (34 different) licenses assigned.
There are 1472 Ebuilds in total, 1465 of them have in total 1475 (34 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|856|
|Apache-2.0|301|
|Apache-2.0|300|
|GPL-3|91|
|BSD|89|
|LGPL-3|22|

View File

@ -1,3 +0,0 @@
DIST tenacity-6.2.0.tar.gz 35213 BLAKE2B 830953463ef9d7ee9e99fc0c9d3f55910754f4c2c777110ad8af65b0af186b2aada25ec3d9ae80f266ad9200080db1af70b80bb77f1edc51148001ca49e0bd08 SHA512 3753ab44390810458c559d243bdc5e3c0092a0c2af7eb4e6fa43d5e6e215a58d4bf3ff6e81800db2f517796b501fff038964b424e364ac417ddd3e70b57bc6c8
EBUILD tenacity-6.2.0.ebuild 789 BLAKE2B 55c6dee11fd015c35d0293851ed89ef5a80525d5b21366e385f21af7eaa6277954fc55ae1f4f8d6869001855f9aa9e1f72193c9f3e939842436b0c8a8c29a370 SHA512 058a9d930a9138a96a0422c4d234836a9fe8482f79aae2c697bdae854cdbfc75b8bf83a718f85c8ec10559f486d711b4a939501d2f1aaf751c4ac230a9bf03be
MISC metadata.xml 452 BLAKE2B a50d5e3961856c3e1b3f8e16a8553baa0d472bce453862584c85ac36cf5e6e87b57831393bf6d48702270de20e18fa513554e52e875cfa688ad965ae6f2fd6e3 SHA512 0c42bda6a31915c60e10738da6363e1866e2603be394b81dd0a80cf4c3219cae92876c78397f04abe5c2547a98a66863e975aa7307d2891c7ab0f2bc96cf3ca1

View File

@ -1,15 +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">tenacity</remote-id>
<maintainer status="unknown">
<email>julien@danjou.info</email>
<name>Julien Danjou</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -1,34 +0,0 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
DESCRIPTION="Retry code until it succeeds"
HOMEPAGE="https://github.com/jd/tenacity https://pypi.org/project/tenacity/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86 ~amd64-linux ~x86-linux"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.rst"
RDEPEND=">=dev-python/six-1.9.0[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
dev-python/setuptools_scm[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}