-
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/google-nest-sdm: add 3.0.4
Closes: https://git.edevau.net/onkelbeh/HomeAssistantRepository/issues/3287 Signed-off-by: Andreas Billmeier <[email protected]>
- Loading branch information
Showing
4 changed files
with
35 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 google_nest_sdm-3.0.3.tar.gz 57090 BLAKE2B 26972d9aa88f50091f6045ef35c9db5be812f804342be961ce668e0259a4d36a89aad58fc03f93b46fa2a4c4ad2392a1ece00b4a0352d891710871a1275a804c SHA512 83fe630387ce5418f48df9a6f7c1598ecb2779f08501b90316bfcac37e30dbcf59ed9eaf45b1595c50bb264faf7ca24a61afd22d6f8d1b71cc92eb301eec73dc | ||
EBUILD google-nest-sdm-3.0.3.ebuild 987 BLAKE2B cf79c8c58f17706d632f735daa851cc4dac80f1332b7f47759fd4c7178b3f98f41142d1c07a2b9ee271fa749c37f6805fa727e9e9c7c130106bf0228deb7aa2b SHA512 defe0618ff382512527aefa7b0a55f78e3002460c46a6779dbe6c055c19f3c7a0ac5138b187127dc2cd6eb8f3640765e3471af5a5bf0b40e8fd04991940b31df | ||
DIST google_nest_sdm-3.0.4.tar.gz 58049 BLAKE2B b305126b25a6451c7f1827b8d025842c5e3938c8ac5c3d882169482339e2bf6255bedcf0c91b60436aa81b84327dc768967c6f54fcc0276bbd003b5dc1197efd SHA512 2aa0f29fb96b19238bc4c6c01c6b725234c7977bb4327c0170a7f00f1630f124b3d2cfb8ddab70f8aa1a95e6e0ba2181d0d4d1545a324dcd75e3a468681d3a0b | ||
EBUILD google-nest-sdm-3.0.3.ebuild 987 BLAKE2B 8024cd528201644cf0e68ff9b786d762fb571d8ccee1bd1e1f79489174af55b60951be48b0cb5747da18bb5b1f2c95625403ec1e350399a8a6e9c1ba3e01b873 SHA512 13aeb726e17d685a4db2173ba712347f0a09b575ea3e6260d763bfb86f7e96c2d01747a0ae3ef4889aef6fa07ed27451ce7eda7061ccdc156310b7ccdfbed26d | ||
EBUILD google-nest-sdm-3.0.4.ebuild 884 BLAKE2B 284889c7ce41057ed660f55cc9c64606f6c106633e8c758b8a07e0a31fe6eb87144ab5508cbfa476a28c27af38ffee514a6d1e7564dae8e994c77faea84f34e2 SHA512 359403fadf0d44d66ad7962d83e1d7767dfbd6e3758064b4ff8d1adae5151e40de65a62e9b6a13cd7ed46b764cd178961f03b9e72904989e4e1cd18689f10740 | ||
MISC metadata.xml 534 BLAKE2B dd5c01a07de6d7860437be20335d832ae3a499c9833098cf503e568e2376dc458993e2c2d101da289d2f33036a2e0c369085ce6a38d40ec5033395e332638749 SHA512 4cdb9fdbe19c7f912aaf6f9b1cf6f7f012f1ce68304262c9121d22c7a7c7c1081866ffbf0edf2c84fa208930b07b37a957ca899f903b76994b85ce959b77dfb3 |
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,29 @@ | ||
# 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="Library for the Google Nest SDM API" | ||
HOMEPAGE="https://github.com/allenporter/python-google-nest-sdm https://pypi.org/project/google-nest-sdm/" | ||
|
||
LICENSE="Apache-2.0" | ||
SLOT="0" | ||
KEYWORDS="amd64 arm arm64 x86" | ||
IUSE="test" | ||
RESTRICT="!test? ( test )" | ||
|
||
DOCS="README.md" | ||
|
||
RDEPEND=">=dev-python/aiohttp-3.7.3[${PYTHON_USEDEP}] | ||
>=dev-python/google-auth-1.22.0[${PYTHON_USEDEP}] | ||
>=dev-python/google-auth-oauthlib-0.4.1[${PYTHON_USEDEP}] | ||
>=dev-python/google-cloud-pubsub-2.1.0[${PYTHON_USEDEP}] | ||
>=dev-python/requests-oauthlib-1.3.0[${PYTHON_USEDEP}] | ||
>=dev-python/pyyaml-6.0[${PYTHON_USEDEP}] | ||
>=dev-python/mashumaro-3.12[${PYTHON_USEDEP}]" | ||
|
||
distutils_enable_tests pytest |