dev-python/python-ecobee-api: add 0.2.17

Closes: #2437
Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-12-10 09:30:57 +01:00 committed by Andreas Billmeier
parent 35845d757b
commit f3a6e5f139
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 36 additions and 2 deletions

View File

@ -612,11 +612,11 @@ A daily compile test is run at Github with Python 3.9 to catch general faults. E
## Licenses
This repository itself is released under GPL-3 (like most Gentoo repositories), all work on the depending components under the licenses they came from. Perhaps you came here because I filed an issue at your component about a bad or missing license. It is easy to [assign a license](https://docs.github.com/en/communities/setting-up-your-project-for-healthy-contributions/adding-a-license-to-a-repository). During cleanups and license investigations I have been asked often which license to choose. I am not a lawyer, but I can offer the following table, counted over this repository, perhaps this helps your decision. If a package has more than one license listed, all of them are counted.
There are 1666 Ebuilds in total, 1655 of them have in total 1676 (43 different) licenses assigned.
There are 1667 Ebuilds in total, 1656 of them have in total 1677 (43 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|975|
|MIT|976|
|Apache-2.0|346|
|BSD|96|
|GPL-3|95|

View File

@ -1,3 +1,5 @@
DIST python-ecobee-api-0.2.14.tar.gz 7615 BLAKE2B eba7c721714fe9f31ef47968352cffbe689d57dc342f13a5042d9cbdf196522208e141fbfab8095d296538a12284b8844af97f7b0b799d42ffdbdecbd92fc1e9 SHA512 0d3e3a5e186109eeb57e912b0fd1ec61d57ab64580527262f5b0ac863fde8115f16dda1b43796acc83e75e0b8c9417435fdcdf0914d74e3d48a4f20d15b2e44e
DIST python-ecobee-api-0.2.17.tar.gz 9010 BLAKE2B f5fbc4ee3e6befefcb268a05b87122378093563aeaa4c38f6168c357eaa3300dfb36c6c70e7ca44a7e27dac74f27b92c1942d531c5f82dc917f451990f523056 SHA512 f9176ba6f7bfba01ef46b10f2ac162dea35cec5e78cdbf021106eaa59befe6405aa35f1c899c39eb03d6f1cd206aa44aa822ff35c5e18404a9b6256b814405ca
EBUILD python-ecobee-api-0.2.14.ebuild 688 BLAKE2B a43cc56eef819b807cad894f67c9f7e74e45ee9f9fe488920bc48f7ee257c18d0f11e7b3011cdae22461999b03a59a1971531cbd377557fa79976fe6846ed7b8 SHA512 165f53335513daa8f6ca9d9f5b86c0e4b2cc09dfceb710a1feee9caa97eb01ffd2d22921aebec254fb35045f1290329356ab5865f78bbbb333cb593d22e2037b
EBUILD python-ecobee-api-0.2.17.ebuild 688 BLAKE2B a43cc56eef819b807cad894f67c9f7e74e45ee9f9fe488920bc48f7ee257c18d0f11e7b3011cdae22461999b03a59a1971531cbd377557fa79976fe6846ed7b8 SHA512 165f53335513daa8f6ca9d9f5b86c0e4b2cc09dfceb710a1feee9caa97eb01ffd2d22921aebec254fb35045f1290329356ab5865f78bbbb333cb593d22e2037b
MISC metadata.xml 528 BLAKE2B 9650171bd192dc611e4d20599d425ba61d32cca314a9ec8872ffb2af3c786efeb08bc10f250c339408e680c812240396569ee00c53ce74023b340f3b7fde1f53 SHA512 93bf741bf8069f4ade534aebd66c90be14572eacb9f74bd9eb25f38b4e309319ef2477613cf4d29b29155c1525b192a527a417e6eacc7f7a641bd98062e87c07

View File

@ -0,0 +1,32 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..12} )
DISTUTILS_USE_PEP517=setuptools
PYPI_NO_NORMALIZE=1
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}]"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest