bump aioftp-0.21.3

This commit is contained in:
Andreas Billmeier 2022-10-06 09:17:30 +02:00 committed by Andreas Billmeier
parent cfda6eb00b
commit dba42fec55
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 42 additions and 6 deletions

View File

@ -538,12 +538,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 1928 Ebuilds in total, 1921 of them have in total 1933 (35 different) licenses assigned.
There are 1929 Ebuilds in total, 1922 of them have in total 1934 (35 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1162|
|Apache-2.0|362|
|Apache-2.0|363|
|GPL-3|121|
|BSD|106|
|LGPL-3|30|

View File

@ -1,3 +1,5 @@
DIST aioftp-0.12.0.tar.gz 48099 BLAKE2B 1947f01781c7faee23cbcca12350e2a4b809be84382d172b29da1970b7e5bf60e2ca3aac4fa4a05ab4caeba55c98a6186baaa61abb7cc54e7683de5f2f08fecc SHA512 8e9787f8761dc72d3581fc551e4648018bd0a244fc58d179c15008bd8893194801a39f3109ce0232f47c79def16862e60e4190c197c3ef19a4d80a82643492db
EBUILD aioftp-0.12.0.ebuild 709 BLAKE2B 7f7f0f65f45692acc6458a8b7bc7a473f5427ac54f8c1af2898fc7b684cb985792007e01a59d9082e47c4c417cdfab0336a966270c51744e5fe42b0d3bea807e SHA512 5367b932a2f502be63cee39ae6dcf8bdfc3525c73bc0057336e5248e6d47c4bb34bf0eb1562dcc8acad87b2d9beea5ce4126c2acaed1a71b1dd2d97822e94089
DIST aioftp-0.21.3.tar.gz 51776 BLAKE2B 120b75e53557ace0fc9df8638e8468c8a9ff1227259ad78a61d23adee56cc5434a90f56aca9ed5b1d0ba943836619e3bc8c09ee27b4b5c1cac9e7558b3c74cd2 SHA512 bf2da2c2d3dd8cbbf94be032ac0c143b407fa4973dbbf02b3d9155403bdf707e0b39edc2f528e12e6c0a6e8f72c1c7f4abb32d634040ca968125e4718d971d50
EBUILD aioftp-0.12.0.ebuild 683 BLAKE2B 8f260c3453c1d47eefa110386c5ed7f31e7373b36d94a6bd75f462df4d07c4dc5b0f4b6f2cb51d74a8b5f690defc321402cf4f1fc3ebbfc57f951441fe2b8c63 SHA512 70a1b4cd5857de3c5c3b6758eab4e2cfb967bb3f143b6589a026fe0e53571a691a5be6c8e62900521c9e4d041a36080cbb4ed160ba66c91c0268617de5fbe790
EBUILD aioftp-0.21.3.ebuild 729 BLAKE2B 62d042d51c3e9e0beef72172bbcc1ded6e26b460d40ace306e6955a50ab9c3189de9ec3bdf6d303f6730d866cbc2af0424f29fc8d5845a75cec4b2edd3bec72d SHA512 85b4e37ade512c26cf3ffc9c2823d02182b74bbac3ed75e7bf8f877cdabc562cb6f161dbe9c30b3f576a83b6fd6b08c4a7b69df045eaed0d89cf767b1b09717a
MISC metadata.xml 451 BLAKE2B 14cd4e1905ed078cb725c9d351636a27e9c001e093d6ef4dd0ec84bd320120b34ee4672e3533c3574a87923d69a8f8e42df79993e68237298539f31d8f3845b2 SHA512 1dbe33e4c62a30ddc650e74d7956670e353027dfc860fa57a8b5595a617e8885d8460383e4498318a735e11e2a6ec12ae3de6a2ceb196154b9caed29ed39f0b6

View File

@ -1,9 +1,9 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI=8
PYTHON_COMPAT=( python3_{8..10} )
PYTHON_COMPAT=( python3_{8..11} )
inherit distutils-r1
@ -13,7 +13,7 @@ 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"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"

View File

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