-
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/3269 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 glances_api-0.5.0.tar.gz 4491 BLAKE2B 0a9fbc5637fe0fc3bb2c8af58c878a991c0f722d80e437f7a6061afb88788ca76f65c73f9bf1c1ca9ef57e46184c1268bc9a67dcb4286a8568ad2ace36aae5e0 SHA512 0fb3882367012e031e632c024f15cb6f7d7d241cdba36b4f3eff911deaf2c5c23792c3e21ca6c9f997da9dbf86612af9e3dbcfdee5d1b3126a59d5a7f32fcfa9 | ||
EBUILD glances-api-0.5.0.ebuild 718 BLAKE2B 187727e13272c9ca0c0dfdc2c176d4b3ae2eebf9486b2ef447e321b21d9daaa7150de721b69be90d844b64444679ca740ffb5f7d9b9187320ae75c2f9b8849b5 SHA512 887cfe535b9af2ffff6ddec9690a6d26bdc07af21164dba05c7888c2f8eca5dd43e0a9dcb0d66cabd3c7fdf121fa7aa5d4bfbf9992c991429a540e2a97da321c | ||
DIST glances_api-0.6.0.tar.gz 4624 BLAKE2B ce3345ae03d75ac02ccfe1f5034ff692887cd8bdaf6d69f0fa8bf912dc04c602ddc445f40eaa7c9c4fa0f38dfd95da323093e72670042df5cc3de03dd6779aee SHA512 f1c3f2e396c53519cfc1237e65eb2c7fa2b7db9b434c41e4d5123bf7e487f13f99f08fd795736839df9ab86fbd4fbceec6aef374f9710f56f2cbb6221ff2fc46 | ||
EBUILD glances-api-0.5.0.ebuild 718 BLAKE2B 10662e6c1679c5d69c199fbe9c0e364387f00c562aabf042a0d49d8b4cb3317b5652c7ba5736285cc1898de86b4bea25e5920b6a717e85636c437c6531470dc6 SHA512 1b1d13306464e84b07d8f7a72082b70542e6e59d8ac988df2dc396a30bf1da6d9f5db94710803793aaf315ca3c95846ee6f1ef3e0085ce0e748ae882f7db43df | ||
EBUILD glances-api-0.6.0.ebuild 718 BLAKE2B 10662e6c1679c5d69c199fbe9c0e364387f00c562aabf042a0d49d8b4cb3317b5652c7ba5736285cc1898de86b4bea25e5920b6a717e85636c437c6531470dc6 SHA512 1b1d13306464e84b07d8f7a72082b70542e6e59d8ac988df2dc396a30bf1da6d9f5db94710803793aaf315ca3c95846ee6f1ef3e0085ce0e748ae882f7db43df | ||
MISC metadata.xml 554 BLAKE2B 3492ee78ab6e68925049a36574fac953a37a4f176758bb468a29716b9e9b6c9ba270082be06606b338664aec753b5598e73098dee85e67399f283ccaef7032d0 SHA512 e6fb459d34b4a1a287c853efe70de09f098a9c17c19451cabaa892fcdb1b5cdf60c773f10a3ecb79e4700da82b8aea38aee805b7a0518ec1d6df3c4514dbb344 |
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=poetry | ||
inherit distutils-r1 pypi | ||
|
||
DESCRIPTION="Python API for interacting with Glances." | ||
HOMEPAGE="https://github.com/home-assistant-ecosystem/python-glances-api https://pypi.org/project/glances-api/" | ||
|
||
LICENSE="MIT" | ||
SLOT="0" | ||
KEYWORDS="amd64 arm arm64 x86" | ||
IUSE="test" | ||
RESTRICT="!test? ( test )" | ||
|
||
DOCS="README.rst" | ||
|
||
RDEPEND=">=dev-python/httpx-0.23[${PYTHON_USEDEP}]" | ||
BDEPEND=" | ||
test? ( | ||
dev-python/pytest[${PYTHON_USEDEP}] | ||
dev-python/pytest-asyncio[${PYTHON_USEDEP}] | ||
dev-python/pytest-httpx[${PYTHON_USEDEP}] | ||
)" | ||
|
||
distutils_enable_tests pytest |