dev-python/python-roborock: add 0.36.2

Closes: #2486
Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-12-10 13:29:56 +01:00 committed by Andreas Billmeier
parent ec318d5996
commit 69df46c301
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 40 additions and 2 deletions

View File

@ -612,13 +612,13 @@ 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 1708 Ebuilds in total, 1697 of them have in total 1717 (43 different) licenses assigned.
There are 1709 Ebuilds in total, 1698 of them have in total 1718 (43 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|995|
|Apache-2.0|363|
|GPL-3|97|
|GPL-3|98|
|BSD|96|
|GPL-2|24|
|LGPL-3|23|

View File

@ -1,3 +1,5 @@
DIST python_roborock-0.35.0.tar.gz 42309 BLAKE2B 2e71d7bb855603f0045d25751f7358185d2be508fa16df1b97fdd5b44beef37391170f9cba557cc7ce0094013feec2947d737831e2aa7b1b3d462b8390bc2c17 SHA512 6bee1530ad9c1c265413b58d3d2ececba4d795a9befe6dfaf926e6ad78ea1953f757c82760c5df80f4b35a2714124e04b76f9e8df205823a52de6e1fca2083ad
DIST python_roborock-0.36.2.tar.gz 43253 BLAKE2B 3b16e22e6b061955d5fed4a33b0dea14ef8732d5bf5f5052695e61e7a9621880e913eb93207c408971e21030e050566728d9866c5a9865d7951d972047643dd1 SHA512 ec839dabdaf682b39139f4b97dc264a40b7e7a8d25403a92b4712ec7e848f72396f01f54647c76e8849a41950405ca2b1e3915cbe443ad38a7d777189efcf90f
EBUILD python-roborock-0.35.0.ebuild 981 BLAKE2B 7cdbac5c8f4d22e687412bf880e35660204c4833e549a7ab5b27a462f6fd28ed371f7610229de3b2d1c5735954ea58ce87ef212948b9c210656b8d26e876f586 SHA512 ff241226250c95f908c7a6be23f267c1fb7f603b63af1ed64d06a409b1f2be68673bc2a8e97e455bb924f220f983860400c833a52999c1a936d09dd80504a997
EBUILD python-roborock-0.36.2.ebuild 981 BLAKE2B 7cdbac5c8f4d22e687412bf880e35660204c4833e549a7ab5b27a462f6fd28ed371f7610229de3b2d1c5735954ea58ce87ef212948b9c210656b8d26e876f586 SHA512 ff241226250c95f908c7a6be23f267c1fb7f603b63af1ed64d06a409b1f2be68673bc2a8e97e455bb924f220f983860400c833a52999c1a936d09dd80504a997
MISC metadata.xml 556 BLAKE2B 746dc40c60dc878f670ead7597debc082164a1d585d7ac60299f807b2c3706f990007d3470c67f80cd7ea11f30e21f2d3ce1ce1a731f44cb1ab50d73fd324400 SHA512 5bd2a3c92af85e4faa327e76e6e0cc41ed451237c018289732cc7c62ffd95fbc3165e1f9aaf923a3770611036c27d1793122b040a1a66601f0ae6399211ddc2b

View File

@ -0,0 +1,36 @@
# 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=poetry
inherit distutils-r1 pypi
DESCRIPTION="A package to control Roborock vacuums."
HOMEPAGE="https://github.com/humbertogontijo/python-roborock https://pypi.org/project/python-roborock/"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND=">=dev-python/click-8.0.0[${PYTHON_USEDEP}]
>=dev-python/aiohttp-3.8.2[${PYTHON_USEDEP}]
$(python_gen_cond_dep 'dev-python/async-timeout[${PYTHON_USEDEP}]' python3_10)
>=dev-python/pycryptodome-3.18.0[${PYTHON_USEDEP}]
>=dev-python/paho-mqtt-1.6.1[${PYTHON_USEDEP}]
>=dev-python/dacite-1.8.0[${PYTHON_USEDEP}]
>=dev-python/construct-2.10.56[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest