dev-python/pysensibo: add 1.0.36

Closes: #2490
Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-12-10 13:21:42 +01:00 committed by Andreas Billmeier
parent 32146e2bd5
commit fe179b52be
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 35 additions and 2 deletions

View File

@ -612,11 +612,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 1704 Ebuilds in total, 1693 of them have in total 1713 (43 different) licenses assigned.
There are 1705 Ebuilds in total, 1694 of them have in total 1714 (43 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|994|
|MIT|995|
|Apache-2.0|360|
|GPL-3|97|
|BSD|96|

View File

@ -1,3 +1,5 @@
DIST pysensibo-1.0.35.tar.gz 8464 BLAKE2B b17c385d22d6a1e91061ff0f465a887cde99b553f6cf6d256fac95432c9dd155096b37970031f7e37e244c7a47e833300421b14d5d7f57035addece050cec5d5 SHA512 cb6ae34099e6c2c6261d335f55188a9eb4644440872bdcf4fb228e051bad653bf4870874542a45f3eddd11d7a17524689180e9cb70d9a5356013de94219b2e6e
DIST pysensibo-1.0.36.tar.gz 8467 BLAKE2B 9e414cf0d88a126f7738955feb3385ba93513d33a4f9edccc945e697c4570920f511d14f92ac50bef945178a4fdb025bee3273fc94d9a3be5701c2c4b8f55065 SHA512 af1d948aa16c84259838fec6d5c5dd0773368045bfbf547ce50909a5263a0d048f82da6839a9b2d1ed9c4e6eaac625f3c998e345a9a687f25ffa035be96ca10e
EBUILD pysensibo-1.0.35.ebuild 641 BLAKE2B a4417721056dfb39d62de1333a766f1d52de6aabfb22b9b216d8e9ff03667f1b2de9cedb18ce602e35d116e33684ac2a101d6aba731b0879eb2f07c0ee23e5a8 SHA512 98f5f41a591732abffb3252944607ecb9598414a8f15edc211304c55f4ab40585b6bb6dd38afcf754538ee80a23f0dadaf99992b0ee233f2e78ade5c15ccab8b
EBUILD pysensibo-1.0.36.ebuild 641 BLAKE2B a4417721056dfb39d62de1333a766f1d52de6aabfb22b9b216d8e9ff03667f1b2de9cedb18ce602e35d116e33684ac2a101d6aba731b0879eb2f07c0ee23e5a8 SHA512 98f5f41a591732abffb3252944607ecb9598414a8f15edc211304c55f4ab40585b6bb6dd38afcf754538ee80a23f0dadaf99992b0ee233f2e78ade5c15ccab8b
MISC metadata.xml 529 BLAKE2B 87843df93004effef04fc905e796f861ca18e026cbc437c131ce5256b5ee4cb5b77ec8a24fe8eec2d84e4d94468d8f498ce3316b4924e5fa85da28b63b4b23d5 SHA512 99e3e0e102ac5819de498d72115c053b0599941bd051989c998e1554f0de1249ac42f8ddf16f1c657a14465963ee11b0fdfa10c4cf90eff65cfc5174707febd8

View File

@ -0,0 +1,31 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..12} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1 pypi
DESCRIPTION="asyncio-friendly python API for Sensibo"
HOMEPAGE="https://github.com/andrey-git/pysensibo https://pypi.org/project/pysensibo/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest