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

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-01-07 12:50:59 +01:00 committed by Andreas Billmeier
parent db9a9b5e76
commit b8b0d52752
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
2 changed files with 40 additions and 0 deletions

View File

@ -1,3 +1,5 @@
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
EBUILD devolo-plc-api-0.8.0.ebuild 917 BLAKE2B 1bd8a8bf5791640f42c677ebd63a503842cb5abc5a7e223404296064c715c5ac4235b0fc23e4acf8a075aeaad133514a02506d14f80d948eead601fcb9cad0ae SHA512 7f0b13be222a82b6e54eb1e22a4b897f4bbaf1a25c489b201c38ea6b1dd3ef27035a39db4118d909c68f17d6e532ca5a851afb84c55f6964cebbe4c607ae10db
EBUILD devolo-plc-api-0.9.0.ebuild 948 BLAKE2B 104851e8ee627bdaf1b7deef6b662c78ec094074cb9a70bf3d84434d5dd9b8a7542843e7c468affc6225dc713d7cba564c0b21dc9173449ce3a7e20357eb178d SHA512 784fa61cededb92eacf796be866e50fa0ea737ca3d97237b97f8809d31c1f9980b375d12b1f0984b1840a5585a381f119708d059d47e16e1c73cae294e33d776
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_{8..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