dev-python/aioftp: drop 0.12.0

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-12-17 17:00:26 +01:00 committed by Andreas Billmeier
parent c8d3d2758c
commit 8b8a858d16
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 2 additions and 31 deletions

View File

@ -612,12 +612,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 1752 Ebuilds in total, 1741 of them have in total 1765 (43 different) licenses assigned.
There are 1751 Ebuilds in total, 1740 of them have in total 1764 (43 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1021|
|Apache-2.0|369|
|Apache-2.0|368|
|GPL-3|110|
|BSD|98|
|LGPL-3|24|

View File

@ -1,5 +1,3 @@
DIST aioftp-0.12.0.tar.gz 48099 BLAKE2B 1947f01781c7faee23cbcca12350e2a4b809be84382d172b29da1970b7e5bf60e2ca3aac4fa4a05ab4caeba55c98a6186baaa61abb7cc54e7683de5f2f08fecc SHA512 8e9787f8761dc72d3581fc551e4648018bd0a244fc58d179c15008bd8893194801a39f3109ce0232f47c79def16862e60e4190c197c3ef19a4d80a82643492db
DIST aioftp-0.21.3.tar.gz 51776 BLAKE2B 120b75e53557ace0fc9df8638e8468c8a9ff1227259ad78a61d23adee56cc5434a90f56aca9ed5b1d0ba943836619e3bc8c09ee27b4b5c1cac9e7558b3c74cd2 SHA512 bf2da2c2d3dd8cbbf94be032ac0c143b407fa4973dbbf02b3d9155403bdf707e0b39edc2f528e12e6c0a6e8f72c1c7f4abb32d634040ca968125e4718d971d50
EBUILD aioftp-0.12.0.ebuild 552 BLAKE2B 9e5f41a1b3cab7545ddce10f6e4a905c68c5bfbfca285d5350e7860281f39d7225d0c8a3b09fe7df255d1c1170bb58f6955ae47eb0640d1940c59949a0777a0f SHA512 4f026ed206f7a706c0b54f4946ee39f44d08f15afa233e9c105c8c99dfc7cd357c010a7cadeb8dab9a1b3c3e3505753ce4e1dff9e55312401acfe73269d2c98b
EBUILD aioftp-0.21.3.ebuild 629 BLAKE2B e992481274f64ff60feaa3ee9e9e4764804d45c0f395afbe7aa00ba4e2da2794e109b58138d8213e18a0c330e3d39712c4e686ac951c061f4a4ef8188df02397 SHA512 731b2ec4fbfccdfbc9233a3aff27f7c0903a0d8c4368395f689fe25bc0060a8c291c78c6a1c5353d7a4cc868908ab51960c83faa1f41b3d7384947b4a9f523a9
MISC metadata.xml 508 BLAKE2B f3f167bb9800fe714cd04002fe59a637d9d9e87b88adeacbbaf070dc3410d63a44e72a295f3ada1ffacf61049bb2110e468fffa43a2eac6fb51960492bcb8907 SHA512 da81222606d56b7b24740eab2fcc117170d1a7ac2d15a93b3de6b874a26b8a7ddb64dedcf9028ea6edf54c2ac44934da3d4fe68851c8c431057c7e175e590d52

View File

@ -1,27 +0,0 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..12} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1 pypi
DESCRIPTION="ftp client/server for asyncio"
HOMEPAGE="https://github.com/aio-libs/aioftp https://pypi.org/project/aioftp/"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.rst"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}