dev-python/python-roborock: new package, add 0.8.3

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-05-29 12:01:07 +02:00 committed by Andreas Billmeier
parent 8bf69358a8
commit c6fc183c15
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 55 additions and 0 deletions

View File

@ -0,0 +1,3 @@
DIST python_roborock-0.8.3.tar.gz 32000 BLAKE2B 34a7c87fbc00f292f7c0d702826c465b2470fe20683b7708c707aa7c684ec6cc4d63d4f057452bcad21432e4e844a334bcf03bb010ba60cb498f3a7f4b5fa6b0 SHA512 88b3fee5655797822e25175f4e4c7ec532566d5cceb70077fe5c01cc0c8194b990ca712818e9ee841a0b7a653dcda0c777ce61ae04db05e5d5aa89363ee18ec6
EBUILD python-roborock-0.8.3.ebuild 945 BLAKE2B 45ec0aaa4ab3898963cead316fe846a6ea110b5af5fc1be190742d660bb60e8c5cb4524d02357563340346656df0453baca2173223813bdf43b3efadbb21dac8 SHA512 728cda988394305e75d55c847aba9c43ee30c0a198fd264aa0671b270354fae5ff6e219a317a551397490a91894e3143d24301295730b4872ae3467be0eb800b
MISC metadata.xml 556 BLAKE2B 746dc40c60dc878f670ead7597debc082164a1d585d7ac60299f807b2c3706f990007d3470c67f80cd7ea11f30e21f2d3ce1ce1a731f44cb1ab50d73fd324400 SHA512 5bd2a3c92af85e4faa327e76e6e0cc41ed451237c018289732cc7c62ffd95fbc3165e1f9aaf923a3770611036c27d1793122b040a1a66601f0ae6399211ddc2b

View File

@ -0,0 +1,16 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<upstream>
<remote-id type="pypi">python-roborock</remote-id>
<remote-id type="github">humbertogontijo/python-roborock</remote-id>
<maintainer status="unknown">
<email>humbertogontijo@users.noreply.github.com</email>
<name>humbertogontijo</name>
</maintainer>
</upstream>
</pkgmetadata>

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}]
dev-python/async-timeout[${PYTHON_USEDEP}]
>=dev-python/pycryptodome-3.17.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