-
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/python-ecobee-api: add 0.2.18
Closes: https://git.edevau.net/onkelbeh/HomeAssistantRepository/issues/3401 Signed-off-by: Andreas Billmeier <[email protected]>
- Loading branch information
Showing
4 changed files
with
29 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 python-ecobee-api-0.2.17.tar.gz 9010 BLAKE2B f5fbc4ee3e6befefcb268a05b87122378093563aeaa4c38f6168c357eaa3300dfb36c6c70e7ca44a7e27dac74f27b92c1942d531c5f82dc917f451990f523056 SHA512 f9176ba6f7bfba01ef46b10f2ac162dea35cec5e78cdbf021106eaa59befe6405aa35f1c899c39eb03d6f1cd206aa44aa822ff35c5e18404a9b6256b814405ca | ||
EBUILD python-ecobee-api-0.2.17.ebuild 688 BLAKE2B a3bdeb86a8a6fa7fbd187cad41075bd38174701492dea1b6f81faa2b7868e5d7150afd5bd0ce65fd3dd9a9f90bc0b8445cd7ea4cb4e38b91c92329d56e1cdd77 SHA512 42e509888c7669ad3a4d884069fe5588a19d9a2a677725db71c0c6798eee35ed305e32070e5056e3082a7194618cf24bb29c375efe02edc479287f4991329f54 | ||
DIST python_ecobee_api-0.2.18.tar.gz 9079 BLAKE2B 64177253342ad04a5a339a3384060d22f41c10233635e1b42aa7d7287f0926b2e730abad531b5786ebd83899e72bab85441833194ce9d7489833a3939aaa81b1 SHA512 fa2276227c1de98f402886550fbf10d8582f4080011ddf8c81bd22413ff7d31aecb157dd07b3847ee2a45856e35b7bcf41f6238387d2c72e7183538f311af856 | ||
EBUILD python-ecobee-api-0.2.17.ebuild 688 BLAKE2B 10a97503e4ad22bd58c8df27f4a89e68d0761592c547850e31344679ee4d73e92e6e5a0f74a5f69f7ad42f1f0225ee07a555652ef3786848e68e5e7c3cbf4845 SHA512 57a2cd811dee94dd1a1bdb67318bf5abdb2cb71d2e817907c9e75c58710fd954c5a9d72c3d14144a20887c6ce1a5636512668803ce9a78c1d0b3afafe91294f8 | ||
EBUILD python-ecobee-api-0.2.18.ebuild 566 BLAKE2B 3f66f14c28d0f5452099c3c148fb800f154195d22de7358ed4999cc2741a3d2c6dadb9e2f1126a97e2a07dc7d4b8f323b8288195d7a80974b5ec90eacf82842a SHA512 7f25f2383af23b3b8b1a9747dd6e33cf900996e8b5fa21de094ee252677b18f26d457ab78055d010e2c458435d2013ec7d17ea12aeb02cb6b2ac5e4ae01004e6 | ||
MISC metadata.xml 528 BLAKE2B 9650171bd192dc611e4d20599d425ba61d32cca314a9ec8872ffb2af3c786efeb08bc10f250c339408e680c812240396569ee00c53ce74023b340f3b7fde1f53 SHA512 93bf741bf8069f4ade534aebd66c90be14572eacb9f74bd9eb25f38b4e309319ef2477613cf4d29b29155c1525b192a527a417e6eacc7f7a641bd98062e87c07 |
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
23 changes: 23 additions & 0 deletions
23
dev-python/python-ecobee-api/python-ecobee-api-0.2.18.ebuild
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,23 @@ | ||
# 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 talking to Ecobee thermostats" | ||
HOMEPAGE="https://github.com/nkgilley/python-ecobee-api https://pypi.org/project/python-ecobee-api/" | ||
|
||
LICENSE="MIT" | ||
SLOT="0" | ||
KEYWORDS="amd64 arm arm64 x86" | ||
IUSE="test" | ||
RESTRICT="!test? ( test )" | ||
|
||
DOCS="README.md" | ||
|
||
RDEPEND=">=dev-python/requests-2.25[${PYTHON_USEDEP}]" | ||
|
||
distutils_enable_tests pytest |