dev-python/aioshelly: add 6.0.0

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
2023-10-11 21:08:42 +02:00
committed by Andreas Billmeier
parent b3f92dd22f
commit 24caa670c8
2 changed files with 36 additions and 0 deletions

View File

@@ -1,5 +1,7 @@
DIST aioshelly-5.3.1.tar.gz 24925 BLAKE2B 8041831c14e74ca1319b2ac3d7e483c02479d9c1dd53ddb23ba3ed2e3f46404cdae685944c38adb0050936fd2e88bdf92c6e364828e136cdf177f729e0ecbc37 SHA512 31c90a13e7d7bfc3148f2d448b080ecfce5c2e12f4df67c2024a780cc83e1139921b2dfdb076eb48650d42c7b6b4d5a7a97ac375b29eb2dfa418a9a111fa6a92
DIST aioshelly-5.3.2.tar.gz 24930 BLAKE2B 1ac2ce97d6fbc242015ac0eb9a0294b88aee200d78ca7005bd00941d0a7188feb23af2c5b9005b217a4c448982c9de948b9adb911497c920a03dd8f0d267d0a1 SHA512 935634f1ae241c34c252408935fd923c2de21f105ad2cbfed77a9e62b06ca81cf6b381648844acda911d0f3c4e6f87739853320f46293e2d147c320a96b7a396
DIST aioshelly-6.0.0.tar.gz 26076 BLAKE2B e13a303d8ca1624241ddd1547678167d4dbbee56875bc06ce0382dc42d6135998841f4c6949b55d434d40bd8628deb155959afc8417aae6ef65b661d92493b6d SHA512 ebbe1a6de7d9e4b8761e652a48bd7c234e51dfa278a0e856c018add6c64337bae245da354f77387a0694cb7c1999c10b0883e68fb24ad7338fc1fadf662e357d
EBUILD aioshelly-5.3.1.ebuild 849 BLAKE2B 9f5489f34fbcaece0270a827182b9f2379233a367ed48472550f0a6e137aed9c5b18ad19feed61bf0fa0722f81b8e618b2fa16eaed5decbac4e1043c96bfb745 SHA512 abb22706210a07d87ba29b811c6170e72aa050d5e457f0e1b2cb07a48664683a6bf7c3defc2f0c9b3046038e35526d64a0bd858904a7435ebf1d84c6c1696d4e
EBUILD aioshelly-5.3.2.ebuild 849 BLAKE2B 9f5489f34fbcaece0270a827182b9f2379233a367ed48472550f0a6e137aed9c5b18ad19feed61bf0fa0722f81b8e618b2fa16eaed5decbac4e1043c96bfb745 SHA512 abb22706210a07d87ba29b811c6170e72aa050d5e457f0e1b2cb07a48664683a6bf7c3defc2f0c9b3046038e35526d64a0bd858904a7435ebf1d84c6c1696d4e
EBUILD aioshelly-6.0.0.ebuild 849 BLAKE2B 9f5489f34fbcaece0270a827182b9f2379233a367ed48472550f0a6e137aed9c5b18ad19feed61bf0fa0722f81b8e618b2fa16eaed5decbac4e1043c96bfb745 SHA512 abb22706210a07d87ba29b811c6170e72aa050d5e457f0e1b2cb07a48664683a6bf7c3defc2f0c9b3046038e35526d64a0bd858904a7435ebf1d84c6c1696d4e
MISC metadata.xml 533 BLAKE2B d3a60d6ad1a1bb8530b44f8914af8f85fb7117cfb3db0e8e425216b81f9871102e15330d5db4a9dd737e58f5d9eb82f5f71ba8ffa26b8f4ad7062861f63a4eeb SHA512 75e68f47e8b9ca4dbfdbabc3efbb9e89e3a01718f5fd56edd2fb40d41bc4ad5b318a63edbf9e5b38fea4e7dba815e93c212e9119529ca18cb296c99154bc54cc

View File

@@ -0,0 +1,34 @@
# 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="Asynchronous library to control Shelly devices."
HOMEPAGE="https://github.com/home-assistant-libs/aioshelly https://pypi.org/project/aioshelly/"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}]
>=dev-python/bluetooth-data-tools-0.3.0[${PYTHON_USEDEP}]
>=dev-python/orjson-3.8.1[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/requests[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest