dev-python/asyncio-mqtt: add 0.16.1

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-03-01 21:56:35 +01:00 committed by Andreas Billmeier
parent 426ecb2650
commit 1e015b03ad
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 37 additions and 2 deletions

View File

@ -573,14 +573,14 @@ 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 1784 Ebuilds in total, 1773 of them have in total 1777 (34 different) licenses assigned.
There are 1785 Ebuilds in total, 1774 of them have in total 1778 (34 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1041|
|Apache-2.0|386|
|GPL-3|109|
|BSD|93|
|BSD|94|
|LGPL-3|25|
|GPL-2|20|
|GPL-3+|14|

View File

@ -1,3 +1,5 @@
DIST asyncio-mqtt-0.12.1.tar.gz 14396 BLAKE2B 867e0f00b8bc8f992cbb436acc1a64c6e3237e6353cc6adc0ba7dcaefb577535993d7f77b2dcf00f56c731e9a66a4208259ecefc491a8715529195489b649a6a SHA512 dfc37301e9d1364a5c41689cf1bf468c88b87572be38953f6ee6a99b939894eb4f962eddaef238c48b06c512d866bd5758d12df8092d6307a077141b68ce5e30
DIST asyncio_mqtt-0.16.1.tar.gz 32949 BLAKE2B 3a4701f616898d1daf2902b7aba09db958e5dfa7c441cd1a71a2b54215ef2acf6bb122cd9bde3366f76201d6ebc5c2f8350ac390f33aa34df9c58e6a915e5d41 SHA512 7592146d5d60196bed7f792e4f3931aeb44bafb28913eb8d23248b53ee963150e310bfb6251012622472cfac745b62b31826f0691d38c1933ca336bc6485a42f
EBUILD asyncio-mqtt-0.12.1.ebuild 791 BLAKE2B 24f4c8dcfb92f727c789157a5a72ede074b268039c4ee36c62d74a443cf51204773b8ad2d69a481c9e411b7b9560d9ee2bc6d9cb477f62f08f88c3970f2d5b06 SHA512 7bc59b098950e9941df772401b3dc65839d5e38ee3c8978fd0205c200d9feb7b8d7a4c9981250a472bc70b2162a05adc7b30d74bc140c3bf5b1568107efd8282
EBUILD asyncio-mqtt-0.16.1.ebuild 732 BLAKE2B f40c68e8f188731af3698ad541eab11a287ab3acf9b959120e7b9adef2b15418a4babb1a9e62ed7df33869fb80fcad011806490f96819c8efc7727da83e9260c SHA512 53e3e8cc105f29d232b22240d5ce9182be2bfbe463c8c2b610bb731e9c49776d8d0ad5b5690f937404d5b094f386f4fda9935a3215d59b0393f1dc0c83fe3c67
MISC metadata.xml 532 BLAKE2B 009ea1b4d763b3c746bf7d2f162303b7fb89596f791a469dafd6e76936c5a81c106452a5424f506f200a4feb75ef8b49d01d899192918c58ef721e46bd8a7d84 SHA512 3508fb506c6189d94622d60d0391a6d52c5aed61f1223d47e37eac96f2d0aba647a7f71b9a3d8e63c995c02ba7a087595ed423044059888459561c4ac7058435

View File

@ -0,0 +1,33 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{9..11} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1 pypi
DESCRIPTION="Idomatic asyncio wrapper around paho-mqtt."
HOMEPAGE="https://github.com/sbtinstruments/asyncio-mqtt https://pypi.org/project/asyncio-mqtt/"
SRC_URI="$(pypi_sdist_url)"
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND=">=dev-python/paho-mqtt-1.6.0[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest