dev-python/aiobafi6: add 0.8.0

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
2023-04-08 08:32:22 +02:00
committed by Andreas Billmeier
parent 8e2a19ce7d
commit a2ef538ca2
3 changed files with 36 additions and 2 deletions

View File

@@ -576,12 +576,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 1817 Ebuilds in total, 1806 of them have in total 1822 (36 different) licenses assigned.
There are 1818 Ebuilds in total, 1807 of them have in total 1823 (36 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1064|
|Apache-2.0|391|
|Apache-2.0|392|
|GPL-3|115|
|BSD|96|
|LGPL-3|26|

View File

@@ -1,5 +1,7 @@
DIST aiobafi6-0.7.2.tar.gz 23353 BLAKE2B 2d7eb178634f650c6afc1c51489694e620a9440f7a70570c1d81139e77de0bde80750bd99937828026b7ec42e01d1eabd3e3c7703692c6f4a2a34b86d62b43dd SHA512 464de8da84321521724aaefe762757c49c45efb33bafb041a8999ac3a1678355721b4ffdc18583057286936a590e00719b6998d2f212b6cc51d4c97d31663587
DIST aiobafi6-0.7.3.tar.gz 23340 BLAKE2B 295bc5813d3497c015e85805bc710171596620caee6bf7df0fd1340127ab89607eb8107e52192a46edbc629f683f29edcfc82e35a71296431d6bb6369ac93af4 SHA512 97ef13d2cf167807e907e480f9dcd84e11bc6e5cc87730f063204fa1a8092b08e416722d6dad2acfee8473b28430b7f8e1fd0ed0662596d754c11ff820626217
DIST aiobafi6-0.8.0.tar.gz 23471 BLAKE2B 25cfbcb01764af55052ac6bf28f4a04bbaf38386d925b3cb872b49e1637a596d4ff313eb02b8df32e4a7b68f534c10be7048e4be770f3e5698c6c23643900b0b SHA512 7932e214f912aa7871a8e2d9df591cc10f7c90a187e74b64a9e7618e04dedd50849eeec3bd25c74d5237cbc079875cc2a72d2873bee222ac809318d7cbda3a15
EBUILD aiobafi6-0.7.2.ebuild 852 BLAKE2B 99ec8e379b2976125e897d282fb374e10b0bfbf3f1634bc4d43429c81da153967d908972f80d5aa5c9f7bd515933fc9006a50e22a8b2e84c70eaa651abbbf007 SHA512 860ef36a2f069091a0be9fe3ca7442872fc1fc9d457f1735d479bda555713e6a06defbd5eaf4b502fe80352bf569f5fd35027f6e2b47b60764666daf81fe966d
EBUILD aiobafi6-0.7.3.ebuild 851 BLAKE2B 9accec9fecba48401070c15fb6830cecc0ea4ae5443cdf2cc060f08c39571b97d2c8763094d9f6dd35132cb0bd9c424d6a4a50505850d131230bb4ce9a21193c SHA512 ec93b60915c7c0ec6e4435f72a3acaac50f8f352ceb000fcf4af665511509d50ed06e8f5999fcafce59f1636b4cefb90d464c483f97f21e690e8fc477db8667b
EBUILD aiobafi6-0.8.0.ebuild 763 BLAKE2B f956e9cf278a3a45a39896f211c61b740470fa6c49455669427693d1683ed93591a2c5e47847333d3e6fc493aa309570b4ed40d4bc9924c37dcbe5155e826185 SHA512 83d34a7050cad27b69900ba346f458573d95f1ff7031913309806c57b1a0e2bd47970d9a699e9a4126e2fa59730065ad352afd559b477faf4572f2f9d6a5632d
MISC metadata.xml 508 BLAKE2B 5200519b0df5da2e0664b0e150ed15cc81ba87d6f7724f9e61727da214a6183fb65a1e66756d58c41a8256a21fcd0868c3d6b53dc238599f2a987151479ad4aa SHA512 ca2bceabf3dc43ce69f84f72bc1fe191be2949edda426b83d9f3bd071465b0191053b0f64278978a45cbe87d37bc81990bbca715462463aa22bff19e34ff9e19

View File

@@ -0,0 +1,32 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=poetry
PYTHON_COMPAT=( python3_{9..11} )
inherit distutils-r1 pypi
DESCRIPTION="Big Ass Fans i6/Haiku protocol asynchronous Python library"
HOMEPAGE="https://github.com/jfroy/aiobafi6 https://pypi.org/project/aiobafi6/"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND=">=dev-python/protobuf-python-3.20[${PYTHON_USEDEP}]
>=dev-python/zeroconf-0.38.0[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/pytest-asyncio[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest