dev-python/devolo-plc-api: add 1.1.0

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-02-04 17:06:24 +01:00 committed by Andreas Billmeier
parent e30072bf94
commit 3aff9fc4dc
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
2 changed files with 40 additions and 0 deletions

View File

@ -1,5 +1,7 @@
DIST devolo-plc-api-0.8.0.tar.gz 80581 BLAKE2B a902160dd9b0523c0263c5320ace76da5a06f698140795f8548f80412f31e47a3cd2ad065d0761e955830346889a82b82df83bedfac0e971b7a007de35e37981 SHA512 6628102b8fefee47acc4435496fb2b84fae96e38620e5d8711369f0b7f0afc6b760f252617dcb77c1c29d17e2b68a9a9b4502667531dd5715525bba1d4c4b5a1
DIST devolo-plc-api-0.9.0.tar.gz 81898 BLAKE2B 824fbe28716f9969072a7109cf6a3cd007bee94f7a130dca57c128408635c7f8036fe280de28be2d00901c65c51b5bb5b5616f0113f9e5f84e068a893b457e6b SHA512 d978618176846e1b04c8d87963cdb024166ece62e7724d59032d09bb3ff19cc411a7f3c8f930e1fd22a47984cc761a75869c846ae182f2ce2987d09c1913f81d
DIST devolo-plc-api-1.1.0.tar.gz 84989 BLAKE2B 6779dba42ea1bbded134ce7ca18456ea768fea8ea39028100014556184a25f7c36dadaea319c5b6b6e8f86c18cb78b4dc2a040dcba46e54f819207b5664b155f SHA512 27cac05fae0d6578a4ce6f4aa9ba6ee7fc92c2ba031716a31af6478fd2b240ecc6ef5f9bebef0b6a5b5b628ecbcaa16882aaa4ccdc327f0b293e849b3d3cef9c
EBUILD devolo-plc-api-0.8.0.ebuild 917 BLAKE2B b2d134a1f2d89eed4c77d7b23d27c013f1ddedb62e703b61696b541f9a86730eeeeb47f596bcb004632f5462ef7a2d8fa754e54b4a471d43fbd701fc254f1688 SHA512 844b203a2cd5cb1649b2ea9f4b54bc99a95928698f57cad2519332a9e4e79714449c6067a665bfd6bdee789b91850ad677e94bafa0a25633220c58e5b4e5674b
EBUILD devolo-plc-api-0.9.0.ebuild 948 BLAKE2B 8b4a536d0f5d465cddc83289ddf61dc80435bf24633035d0618454800c90db40338b6508717402e17d25bb9a666dec3ef3d9ce3a2b35b4195a1dd1123ab34de5 SHA512 2eca33b5ae4117a3cb24c1caf6f36b59988fb394e1142a90f4b26f825b801088f1fd6a8fb1f9447e23796b8074f29e6d2dba59bd7145534e39734136de4115b4
EBUILD devolo-plc-api-1.1.0.ebuild 948 BLAKE2B 8b4a536d0f5d465cddc83289ddf61dc80435bf24633035d0618454800c90db40338b6508717402e17d25bb9a666dec3ef3d9ce3a2b35b4195a1dd1123ab34de5 SHA512 2eca33b5ae4117a3cb24c1caf6f36b59988fb394e1142a90f4b26f825b801088f1fd6a8fb1f9447e23796b8074f29e6d2dba59bd7145534e39734136de4115b4
MISC metadata.xml 516 BLAKE2B 5f12a8b449f92060cdbc913f23b2dc36a3a9a493e88f2b1324fb2aad0b979922609273accd8a28d7a86556425ef31084f2f271acbdcefc2da31d88d3ccf864ff SHA512 815735fa204bbf3ddda15d9c45781516098be0aeebd394df519314ea42f33224e308d0700d67a5d25e8e7d527816ad35887593ecde7ba3ebe577439577ae8141

View File

@ -0,0 +1,38 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{9..11} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1
DESCRIPTION="devolo PLC devices in Python"
HOMEPAGE="https://github.com/2Fake/devolo_plc_api https://pypi.org/project/devolo-plc-api/"
MY_PN=${PN//-/_}
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_PN}-${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${MY_PN}-${PV}"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND=">=dev-python/httpx-0.21[${PYTHON_USEDEP}]
dev-python/protobuf-python[${PYTHON_USEDEP}]
>=dev-python/python-zeroconf-0.32.0[${PYTHON_USEDEP}]"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/pytest-asyncio[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest