dev-python/iaqualink: add 0.5.0

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2022-10-30 16:04:57 +01:00 committed by Andreas Billmeier
parent 8b40b90fcb
commit 253f0f52dd
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 39 additions and 2 deletions

View File

@ -548,14 +548,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 1468 Ebuilds in total, 1461 of them have in total 1470 (34 different) licenses assigned.
There are 1469 Ebuilds in total, 1462 of them have in total 1471 (34 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|853|
|Apache-2.0|298|
|GPL-3|93|
|BSD|86|
|BSD|87|
|LGPL-3|23|
|GPL-2|19|
|all-rights-reserved|14|

View File

@ -1,3 +1,5 @@
DIST iaqualink-0.4.1.tar.gz 9684 BLAKE2B a0800b9393ad2df0c3c51b51c20408ff383063bc593d727d3494e86d955e20c8e4e817e02d98a33a892eeb404e368fc7c6f74739df2e6130a8861ebd959ecef5 SHA512 136de0c1ed4a78dd1e3aa73f474ffa8012a8efb594738b6602c50a7e49e58effb82b9ad09edee195cb3867c69546ce0bae5871fdf3d395fda1ee7cd9eac90e62
DIST iaqualink-0.5.0.tar.gz 17068 BLAKE2B 9b6a2ff28016d3b2b9bbccffe324285b9fa030da15a07accbc043bb859f6064bef0fbdb7c19369cf7a6a887784250ee585e05391def4529719f1ec11df14e7f9 SHA512 07cef65366b74730b8224e06f514c24f13d415c89fe9994a266a34a21e390c0753ced6968d4b2ce62154c75a20ab54a3ec0d58fcff6280ae4861e960d7e4bcc0
EBUILD iaqualink-0.4.1.ebuild 719 BLAKE2B 4f418fc377a1bf10df402917ded5b865669b3097de54caa6dd1a38b7826857cb058f3fec8f60dbc29708efa9ab8787d00c7df95d301258b3ed842ca2135f7a8e SHA512 0d33d5a200cb6ac2cf450b8dc4a8c14a5714214956e9af9018f1f5ac2f20456780fa1c2cb5047b0f7526bb3b9d43e80ad574f0d74f1edd036c011fbafc065f4a
EBUILD iaqualink-0.5.0.ebuild 750 BLAKE2B 70dd580a0e4522d036f0e83d3b715f1e3e24720ae8b0ccf6f810f88ba6423872ba939cffa869478dbcb80e86226a0e3b5cb20a87c360fd450e24b7c70aab5a78 SHA512 0899f4293f462496d0af0b4fd4766c4978d2202845fbe1921ffb236e2ed74ff932337054a104e056563eed57850bc71d701183e01b96ce0a84bc6492ad5c7181
MISC metadata.xml 456 BLAKE2B e5ba289525a502d1065fd3043acb882f72510ce2da5fcde095982dbd0710fd18d63c945233f0f735d7415ecf89b8e45f9f7ce1e6f801f2c5f8a23591701dc337 SHA512 2dcf81bcb9a50a781877eb8d2acdd8af5fc5ec355e635646175759d66d528b8c83d3833a8bf5ffd2b3a7fc64555cdf41da28c480f08305da1831fe91f18950e6

View File

@ -0,0 +1,35 @@
# 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=hatchling
inherit distutils-r1
DESCRIPTION="Asynchronous library for Jandy iAqualink"
HOMEPAGE="https://github.com/flz/iaqualink-py https://pypi.org/project/iaqualink/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
dev-python/pytest-runner
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest