dev-python/s3transfer: remove outdated s3transfer

This commit is contained in:
Andreas Billmeier 2022-10-17 23:21:08 +02:00 committed by Andreas Billmeier
parent aa72e25ccc
commit ae61a1b32e
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 2 additions and 53 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 1492 Ebuilds in total, 1485 of them have in total 1496 (34 different) licenses assigned.
There are 1491 Ebuilds in total, 1484 of them have in total 1495 (34 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|873|
|Apache-2.0|303|
|Apache-2.0|302|
|GPL-3|91|
|BSD|89|
|LGPL-3|22|

View File

@ -1,3 +0,0 @@
DIST s3transfer-0.5.2.tar.gz 134873 BLAKE2B 55adab89ca04a9ed1f0195237cab55f97769a8f865e645437df6d95effcf1a27a734f1577daa981261123b681044b540ebbb876e1a8a3b4cf1cf4e5018f2c213 SHA512 6b035ff5b33ba5c048f6921f72684802a9b12516c70c75bd153e481e62a768015f45f569aa88071f887839fd2e004b5f9202813926ca33d58c30793218d14083
EBUILD s3transfer-0.5.2.ebuild 758 BLAKE2B a85356d5b3cc882b976722424a7f022b98a73fb8521c5026dab4af6e852406e2800328bb3442cdad57a3fd8e31c6d27bc5475710d15b14bf02da8dc9c2e0f4de SHA512 b9245492e4f62fe114b38e2d765e2c23017b40783720eab4ae85639c1c926eebc1bbfdaa4911c7d25626f3a58bed0ae529e7e434576de60058ed1fd069a25cdd
MISC metadata.xml 460 BLAKE2B 6b45cb57eac2797853f00ac087484e1424405c6ee2c217e80018ad58190dab03493f83349e943481bc41ff57f7f2f382ba611caf6c756828a141a2fe5feb7811 SHA512 95c47cc7eabd5c0f3e371516abdb8031328cd60c46cddb819e532d379bc94528aec3670dd66ef129371b2b0a1190fa5a8ad50315bd72e55fe6603fa62ed8ee35

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">s3transfer</remote-id>
<maintainer status="unknown">
<email>kyknapp1@gmail.com</email>
<name>Amazon Web Services</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -1,33 +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="An Amazon S3 Transfer Manager"
HOMEPAGE="https://github.com/boto/s3transfer https://pypi.org/project/s3transfer/"
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/botocore-1.12.36[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}