-
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.
Closes: https://git.edevau.net/onkelbeh/HomeAssistantRepository/issues/3510 Signed-off-by: Andreas Billmeier <[email protected]>
- Loading branch information
Showing
3 changed files
with
31 additions
and
2 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,5 +1,7 @@ | ||
DIST pydrawise-2024.3.0.tar.gz 42427 BLAKE2B 5f2acf123bcc70beff4c76a36808e3cd29bfb0777ec3ec52455571856232d5dc1a870a4d8f55e4c1eab6982fa77e41f83ee1c890b4d5b1ad84de13c2ec555226 SHA512 676b5e2b1bb278e9dba5e7f74abc5c5489f34796ed05a10b87c9d4a72b2de57d5daba9162146c228868446996cafd355048424e795c395c58aa02191281b1699 | ||
DIST pydrawise-2024.6.3.tar.gz 44603 BLAKE2B d527fa46def0453d7b9cb364218ca51e7deed2a26702dd46879543a77c20b46075794d35916af6bc9066d0d2d13cba35c396cb7cc28aeabc0913372d960745e6 SHA512 d530c29b1862734c410c376496ad3b9a00321d8ab34d3b9adc1aabcf4ff114a0e4f36397771fc816b144d35b6fd722c407b0ac8354131e430c2f7593b737bfb3 | ||
DIST pydrawise-2024.6.4.tar.gz 45023 BLAKE2B 92c2c1bab803df1ed561d97ecdece55091408ea54d148e830915b550668386c0755ee4018f0db17f31e201d93398ddfcc79637b2cd9ade41528a1c2819031375 SHA512 becd5dde3a3e938e804fec9b298c05f360d6bc78073c846c89432ed4963c30f967d50ec53b65520d2662afae85af2df519eaa370e35e0a78de6774dbe3f2f2ed | ||
EBUILD pydrawise-2024.3.0.ebuild 726 BLAKE2B 31dd90718cdf9306432a7727dd39dd9f8c640f4297f83b5f849f6ce5a88084ab4d9bb65219bf18b25198bd148bc861fa89641171b150a8df490a0cc8881131af SHA512 817d6414b329d33d68f4f8277e63ffcf7be2a15c9397c36b566584e0bacee7c2050179fc62faf784fa182f00f5dfd10922d45d8f121133a05ee98dac76fc9441 | ||
EBUILD pydrawise-2024.6.3.ebuild 726 BLAKE2B 31dd90718cdf9306432a7727dd39dd9f8c640f4297f83b5f849f6ce5a88084ab4d9bb65219bf18b25198bd148bc861fa89641171b150a8df490a0cc8881131af SHA512 817d6414b329d33d68f4f8277e63ffcf7be2a15c9397c36b566584e0bacee7c2050179fc62faf784fa182f00f5dfd10922d45d8f121133a05ee98dac76fc9441 | ||
EBUILD pydrawise-2024.6.4.ebuild 726 BLAKE2B 31dd90718cdf9306432a7727dd39dd9f8c640f4297f83b5f849f6ce5a88084ab4d9bb65219bf18b25198bd148bc861fa89641171b150a8df490a0cc8881131af SHA512 817d6414b329d33d68f4f8277e63ffcf7be2a15c9397c36b566584e0bacee7c2050179fc62faf784fa182f00f5dfd10922d45d8f121133a05ee98dac76fc9441 | ||
MISC metadata.xml 515 BLAKE2B 5945506a00d6cbde1469c4841d162a32b1551093e906cab616c1df3cbdd8492609bb9f0581f3f7eaf272c2a78bf98aae797b94e29402e5a89773a96adbacbbf0 SHA512 9aca4091e2f160f9363dc523bdd660155e17c9faa3a57303ddc54d35fc1331acf74a0f398062097ae6209139f8a331f6c7231216e429b54ac2c70e3019bfd6fc |
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,27 @@ | ||
# 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="Python API for interacting with Hydrawise sprinkler controllers." | ||
HOMEPAGE="https://github.com/dknowles2/pydrawise https://pypi.org/project/pydrawise/" | ||
|
||
LICENSE="Apache-2.0" | ||
SLOT="0" | ||
KEYWORDS="amd64 arm arm64 x86" | ||
IUSE="test" | ||
RESTRICT="!test? ( test )" | ||
|
||
DOCS="README.md" | ||
|
||
RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}] | ||
dev-python/apischema[${PYTHON_USEDEP}] | ||
dev-python/gql[${PYTHON_USEDEP}] | ||
dev-python/graphql-core[${PYTHON_USEDEP}] | ||
dev-python/requests[${PYTHON_USEDEP}]" | ||
|
||
distutils_enable_tests pytest |