dev-python/pyweatherflowudp: new package, add 1.4.3

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-10-07 22:16:59 +02:00 committed by Andreas Billmeier
parent 3ca7f85c2e
commit e33ade5ce3
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 51 additions and 0 deletions

View File

@ -0,0 +1,3 @@
DIST pyweatherflowudp-1.4.3.tar.gz 20305 BLAKE2B 061f343051dffad71aa3001488828e02d6560c7987a9a24e27df44a83bb6831daef6205195536eddd0c493479d1ec6e8023fb1f2558cee2f7d735cddedffe21f SHA512 4032a4315a4fc0fe0b51dd6580f8459f920a7a08c222e1fc26d55c67fccf7f07000de444dbc26df540a15dd68a4b9505c1fb47bfd9d33dbce526e649ed5303c6
EBUILD pyweatherflowudp-1.4.3.ebuild 787 BLAKE2B 9ba0b658a3ebc9721c3ccdec2d7f635bf56e8c67f6e6959f46b320747c18a02066fd488cb8fa17b53db4ef98a8595f97ec9c76ec5d245b83020629b019ec3ebb SHA512 515ec07180d24eaea41112ebe9eeb46b23779d3b7661ebb99f834f35ad2d4b84371847b3dfc4ddb87055b2e3b68a769151bbe8ebdaa79829214791394597ac50
MISC metadata.xml 529 BLAKE2B e0290eea8e60a80c57e4d6e9f6954c341da71a80afbd08fb4167c443438bd37c0d065d30a52952c494cd2e9e3a7073decf63227fe4079ace2638373d1b7db5c6 SHA512 99174daa9bda1de68a9cce488670c334cb20e2a817ccbba4262e57abd6856aad79b8af58df19f89609ede0a8f5dc209a9d32ef70d554bc66480c708a806c78ee

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">pyweatherflowudp</remote-id>
<remote-id type="github">briis/pyweatherflowudp</remote-id>
<maintainer status="unknown">
<email>natekspencer@gmail.com</email>
<name>Nathan Spencer</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,32 @@
# 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="An event-based asynchronous library to read UDP packets from Weatherflow weather systems on a local network without any reliance on the cloud."
HOMEPAGE="https://github.com/briis/pyweatherflowudp https://pypi.org/project/pyweatherflowudp/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND="dev-python/PsychroLib[${PYTHON_USEDEP}]
dev-python/Pint[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest