From 7f4bfe6c77c776a6902a62b46460b5ad03b94d27 Mon Sep 17 00:00:00 2001 From: Andreas Billmeier Date: Mon, 21 Oct 2024 18:18:34 +0200 Subject: [PATCH] dev-python/p1monitor: add 3.0.1 Closes: https://git.edevau.net/onkelbeh/HomeAssistantRepository/issues/3725 Signed-off-by: Andreas Billmeier --- dev-python/p1monitor/Manifest | 4 ++- dev-python/p1monitor/p1monitor-3.0.0.ebuild | 2 +- dev-python/p1monitor/p1monitor-3.0.1.ebuild | 30 +++++++++++++++++++++ 3 files changed, 34 insertions(+), 2 deletions(-) create mode 100644 dev-python/p1monitor/p1monitor-3.0.1.ebuild diff --git a/dev-python/p1monitor/Manifest b/dev-python/p1monitor/Manifest index ef6a1e410..0338bee2d 100644 --- a/dev-python/p1monitor/Manifest +++ b/dev-python/p1monitor/Manifest @@ -1,3 +1,5 @@ DIST p1monitor-3.0.0.tar.gz 10753 BLAKE2B be3521a014d23a712a19b16a236a9b04fa4288a31456ad29ac2cafceca73f6dca0a2c302dbe8c9e93fcc362e1d256750721e63b01a6696303e899e6cef0eaa91 SHA512 37210c26834d3463bfc0c21173446fbe8ca076de0cfde3b0b3da8261f3ad77ed2c14092db149396a6223ebe1006dc7c0030d1c487eb644ae5e1790b53b04fc78 -EBUILD p1monitor-3.0.0.ebuild 834 BLAKE2B bf0d25ec8cce1c99dd9342680c19a1f6e963f40ca2bc277d6f54b78515112cc6a178422d6d664dd8936cbab4ea01359f25b782441fee7d0ef51299aa3e038d4e SHA512 3c38ef0f7f648f53a6c12614263e749e9d2ee5922d80b116b6f844b256ba98cd2fef85aec91e78d315338e5c1b7d2acb46ffdd4595d5f5288e6a292c58212a85 +DIST p1monitor-3.0.1.tar.gz 10705 BLAKE2B fff5915dfab267b019014f2f7a8528385efdcd7262e350f390efa9f34ca3aa8b1522da1d22e7d2705a5e57766c7d724930985c6672908c51f67f4dd14ec6c9d8 SHA512 213587f6bf393230dbe92cd9cd0144e248c758c35db3fa067ca2f788a03e8a6d16e302feee19011368900e2aa140f4c339225f37a83939baa56d1aa5d82681ac +EBUILD p1monitor-3.0.0.ebuild 834 BLAKE2B c3ab02dc55430e47d01a06d375a6da9aabb5c060697658f83d7b456569b25ccd867a6737d2a288df62707ab928016fdb59d1e0b802971d70fd878c2e49b17d62 SHA512 809cc2aca6afdd5b07de2941512cc130c43401a7ec8e0aff66d6bf5512ff0cc8c184d09d4a5f272992e180da7ab04e33a5a8cf2ca41fcde602e8178a5e4e00a8 +EBUILD p1monitor-3.0.1.ebuild 755 BLAKE2B 6d9014ed3a1f039699cc2a9f71e03f87e347ddfdec05fb823b1eb303791539a455bea9785b417d25083f02037eee1767e82bf75cfc7b68623a602d410cbc422b SHA512 fb8e35514146eab76296312f32abcca3e6825bda378de6934faf64213063b73847173880a51f4c6214fa5832b3fe8e26b3dd106f2229830fb8c5b9917a951815 MISC metadata.xml 533 BLAKE2B a70327eca67e0aea4f83814a499340727b33ae11ced29853a44ca12716c676c73553172723937d838c290f4d21bd6cd65c48f7dead368de2bad8ec7f03b27d57 SHA512 a2f98b812d2ffe74c0fc05a9e4947ef62924fff2d593c3ae3a8e30920350eb1b0d803c4c2d7de2c21119c8b2fc980ec9526133324d1838802b3992a599d32c91 diff --git a/dev-python/p1monitor/p1monitor-3.0.0.ebuild b/dev-python/p1monitor/p1monitor-3.0.0.ebuild index 23e58491a..db636a6e5 100644 --- a/dev-python/p1monitor/p1monitor-3.0.0.ebuild +++ b/dev-python/p1monitor/p1monitor-3.0.0.ebuild @@ -3,7 +3,7 @@ EAPI=8 -PYTHON_COMPAT=( python3_{11..12} ) +PYTHON_COMPAT=( python3_{11..13} ) DISTUTILS_USE_PEP517=poetry inherit distutils-r1 pypi diff --git a/dev-python/p1monitor/p1monitor-3.0.1.ebuild b/dev-python/p1monitor/p1monitor-3.0.1.ebuild new file mode 100644 index 000000000..1715ee609 --- /dev/null +++ b/dev-python/p1monitor/p1monitor-3.0.1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{11..13} ) +DISTUTILS_USE_PEP517=poetry +inherit distutils-r1 pypi + +DESCRIPTION="Asynchronous Python client for the P1 Monitor" +HOMEPAGE="https://github.com/klaasnicolaas/python-p1monitor https://pypi.org/project/p1monitor/" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="amd64 arm arm64 x86" +IUSE="test" +RESTRICT="!test? ( test )" + +DOCS="README.md" + +RDEPEND=">=dev-python/aiohttp-3.0.0[${PYTHON_USEDEP}] + >=dev-python/yarl-1.6.0[${PYTHON_USEDEP}]" +BDEPEND=" + test? ( + dev-python/aresponses[${PYTHON_USEDEP}] + dev-python/pytest-asyncio[${PYTHON_USEDEP}] + dev-python/pytest-cov[${PYTHON_USEDEP}] + )" + +distutils_enable_tests pytest