dev-python/aiogithubapi: add 22.10.1

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2022-10-30 15:31:51 +01:00 committed by Andreas Billmeier
parent a62b85066b
commit 5f5edf283a
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 42 additions and 2 deletions

View File

@ -548,11 +548,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 1460 Ebuilds in total, 1453 of them have in total 1462 (34 different) licenses assigned.
There are 1461 Ebuilds in total, 1454 of them have in total 1463 (34 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|851|
|MIT|852|
|Apache-2.0|293|
|GPL-3|93|
|BSD|86|

View File

@ -1,3 +1,5 @@
DIST aiogithubapi-22.10.1.tar.gz 38264 BLAKE2B 7971519028bb72b9147b5deed274b4cd3a17bfe2607fc6b00e84942d02e72496437d4e5dcdadbce1ad1c5d374815a5053743b4e2cd92be79965b34b6d8058eb6 SHA512 419fbad33d6ad0c3fa9d416b4a3807c6d5f63910bdb95418f4f3ac838d9c7163660723eab903e052153da0e98c0b093dce50a7aa90bd4ea02bac559c456bfeb1
DIST aiogithubapi-22.2.4.tar.gz 38079 BLAKE2B fd42f4904a62db1894a8159889a78e8061b95157bceaa5b0ced589b3863db2cb794ac674978efb79ab6c5fcc7921f961ec636264947a27c5dd6ac7e78c652937 SHA512 ea48a759f748f7f2a14da6678bd507e1446a90dc0012aa32dffdc263f36b4b4797b600279454018311970a746d6ac5d3f59ecb7834ee8b93e34688c6c7ce52df
EBUILD aiogithubapi-22.10.1.ebuild 907 BLAKE2B 6013a439b503d1048e9d9127f893c108f29f48199e6eb78836c09ea20129951eaa9bc42681f766a055b4bdf219a59c3bb570a8e33188252049dc8a4fa13183d2 SHA512 5fb4bed12f92793f9e517eee84b1ef67fa1be05c45dd1e35c00354eef0a5c3c1fa156547181604b6cd9aa275dfce20919761e7cdeeb0e18848b17030c3a8253e
EBUILD aiogithubapi-22.2.4.ebuild 804 BLAKE2B 5cca3b850cc1fa4314e5916829f82e3a5a1afd9913901750f06ab6b9e566b9910ba022f5df235d70c5978aca7b0b527c9375aa1be35e88b3daa67daf28d5bb3c SHA512 27b17d6ac2d9add28b04a7a5796ad196308f9de4b3ece51bb240d01367ddcc3973ce2b031da4d50c11f18f3ee3f83e7e6ad9ef515b2bdf5bfcf72258641fa2f7
MISC metadata.xml 451 BLAKE2B 8c445872222a65a1e97732dbe9dfaa02ef091a326df49116d7efca9cc876c5331dac2b3a131a1c9a4428ded87bac870367bcea750a742befc3a9943cb5b8d828 SHA512 77111a7bae19f3394ce9e702c6d8586aa82bc39436637a516aa0b1ad5098e3c488e58f45c5921115969b75e7392336b3b7bdcd5e778ab2984e0dac7b407d31c6

View File

@ -0,0 +1,38 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..11} )
DISTUTILS_USE_PEP517=poetry
inherit distutils-r1
DESCRIPTION="Asynchronous Python client for the GitHub API"
HOMEPAGE="https://github.com/ludeeus/aiogithubapi https://pypi.org/project/aiogithubapi/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND=">=dev-python/aiohttp-3.8[${PYTHON_USEDEP}]
dev-python/backoff[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/aresponses[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/pytest-asyncio[${PYTHON_USEDEP}]
dev-python/pytest-cov[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest