-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dev-python/pyosoenergyapi: add 1.1.4
Closes: https://git.edevau.net/onkelbeh/HomeAssistantRepository/issues/3441 Signed-off-by: Andreas Billmeier <[email protected]>
- Loading branch information
Showing
4 changed files
with
31 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
DIST pyosoenergyapi-1.1.3.tar.gz 14187 BLAKE2B 9312b5f5f2cf63ae825fb0c115636250e278c80d466880a9b46790303719aca3b1992f974e424051e9c184799461bf72670aa1dbdae1024da6535981a1816803 SHA512 5bf052ad35c8fe109b314e146bc0bb0b6277fc6649404c11ca1494f52c60e754dbb2f9fb2578a1f91db7d8b8e0e54477943f16f550e54f5b47b9eb85fad4618c | ||
EBUILD pyosoenergyapi-1.1.3.ebuild 706 BLAKE2B a3e7fd4d82cf08b1312c1febd753dc410e59bc464fbbf92189cb3ea258ef5ee2dd49549937c5b95e6845bb6ee94b5720bc260fe6e533a1b5fdb38b6ccef331d4 SHA512 f32d1cf160f42179889b48b4951146a62e05920f92223042da8b459ebdf7623bc5e2cf54a604dcecda8216f9f3fdeea429d23707d9ca007ffc5635df5bde0da9 | ||
DIST pyosoenergyapi-1.1.4.tar.gz 14473 BLAKE2B 9a30f13eab1f2b9811eb670a5dbe93ef101c0189d57d30abc86fe2eb844ebcf3dd6a22ed08b08b7b89efdb59378d5d765cc12437e4dbf91eb91a7a80a2730a33 SHA512 9013a43a4794b0c6434357c79c3b8a22ebe1ee85ade90381adf636baf3d088212a310990c8d68e78589a0dd5c1d920bec9278500a7684cb0d74d9f555a8547ec | ||
EBUILD pyosoenergyapi-1.1.3.ebuild 706 BLAKE2B 038bdefb6e86564a01886852950f43ad882cb399837d9cebd2feac34b04cba62742f54c35fe6695ef788178a538f67490eafa55822cb1d1505440eb7669a933d SHA512 a869c5068fac6be3258f376a6f2f848c30ca0ab73a375364b7132aa6a21d2e622d60dbbc10a5048b0d61a3dc7eff43b547e58576fb888269cfa66e5ec4dfb2b9 | ||
EBUILD pyosoenergyapi-1.1.4.ebuild 645 BLAKE2B cc2014f0ee25340859cea398007136eac8b911042950c99a69a238efcab9b67c5889e8b3046d7e4b309207ab0eb2febb2fb2eeb3ec3a115df1c0fc973facd5dc SHA512 8567896c804136d0dce396501b2425435161de09874dc977dc018d519ffc8f570162cdeb385974a934cee6376200a5511e5c5b2cd4a83fc2fd16ab07757342ff | ||
MISC metadata.xml 530 BLAKE2B 53f7f5b37dea15fdbf06238248dd5e7585d0368a10f0bfe5a1d257aabc0a65704987b5ba5eadb5e94515669b0724c5fc7707de94669546cae5ca06893a2c3000 SHA512 00e3eb8c796a4a7bf652001b7426783ec31bb3860ed1721e3976dd8a81b2184d6ae3bb1d8cfb02df19fc925f03842de1287d461ce56d1c99aeaf617433848f02 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# 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=setuptools | ||
inherit distutils-r1 pypi | ||
|
||
DESCRIPTION="A Python library to interface with the OSO Energy API" | ||
HOMEPAGE="https://github.com/osohotwateriot/apyosohotwaterapi https://pypi.org/project/pyosoenergyapi/" | ||
|
||
LICENSE="MIT" | ||
SLOT="0" | ||
KEYWORDS="amd64 arm arm64 x86" | ||
IUSE="test" | ||
RESTRICT="!test? ( test )" | ||
|
||
DOCS="README.md" | ||
|
||
RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}] | ||
dev-python/unasync[${PYTHON_USEDEP}] | ||
dev-python/loguru[${PYTHON_USEDEP}]" | ||
|
||
distutils_enable_tests pytest |