Skip to content

Commit a09a7c7

Browse files
committed
dev-python/glances-api: add 0.6.0
Closes: https://git.edevau.net/onkelbeh/HomeAssistantRepository/issues/3269 Signed-off-by: Andreas Billmeier <[email protected]>
1 parent 9ec2b16 commit a09a7c7

File tree

4 files changed

+35
-4
lines changed

4 files changed

+35
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -617,11 +617,11 @@ A daily compile test is run at Github with Python 3.9 to catch general faults. E
617617

618618
## Licenses
619619
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.
620-
There are 1796 Ebuilds in total, 1785 of them have in total 1804 (42 different) licenses assigned.
620+
There are 1797 Ebuilds in total, 1786 of them have in total 1805 (42 different) licenses assigned.
621621

622622
|License| Ebuilds using it|
623623
|-------|-----|
624-
|MIT|1026|
624+
|MIT|1027|
625625
|Apache-2.0|395|
626626
|GPL-3|107|
627627
|BSD|106|

dev-python/glances-api/Manifest

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
DIST glances_api-0.5.0.tar.gz 4491 BLAKE2B 0a9fbc5637fe0fc3bb2c8af58c878a991c0f722d80e437f7a6061afb88788ca76f65c73f9bf1c1ca9ef57e46184c1268bc9a67dcb4286a8568ad2ace36aae5e0 SHA512 0fb3882367012e031e632c024f15cb6f7d7d241cdba36b4f3eff911deaf2c5c23792c3e21ca6c9f997da9dbf86612af9e3dbcfdee5d1b3126a59d5a7f32fcfa9
2-
EBUILD glances-api-0.5.0.ebuild 718 BLAKE2B 187727e13272c9ca0c0dfdc2c176d4b3ae2eebf9486b2ef447e321b21d9daaa7150de721b69be90d844b64444679ca740ffb5f7d9b9187320ae75c2f9b8849b5 SHA512 887cfe535b9af2ffff6ddec9690a6d26bdc07af21164dba05c7888c2f8eca5dd43e0a9dcb0d66cabd3c7fdf121fa7aa5d4bfbf9992c991429a540e2a97da321c
2+
DIST glances_api-0.6.0.tar.gz 4624 BLAKE2B ce3345ae03d75ac02ccfe1f5034ff692887cd8bdaf6d69f0fa8bf912dc04c602ddc445f40eaa7c9c4fa0f38dfd95da323093e72670042df5cc3de03dd6779aee SHA512 f1c3f2e396c53519cfc1237e65eb2c7fa2b7db9b434c41e4d5123bf7e487f13f99f08fd795736839df9ab86fbd4fbceec6aef374f9710f56f2cbb6221ff2fc46
3+
EBUILD glances-api-0.5.0.ebuild 718 BLAKE2B 10662e6c1679c5d69c199fbe9c0e364387f00c562aabf042a0d49d8b4cb3317b5652c7ba5736285cc1898de86b4bea25e5920b6a717e85636c437c6531470dc6 SHA512 1b1d13306464e84b07d8f7a72082b70542e6e59d8ac988df2dc396a30bf1da6d9f5db94710803793aaf315ca3c95846ee6f1ef3e0085ce0e748ae882f7db43df
4+
EBUILD glances-api-0.6.0.ebuild 718 BLAKE2B 10662e6c1679c5d69c199fbe9c0e364387f00c562aabf042a0d49d8b4cb3317b5652c7ba5736285cc1898de86b4bea25e5920b6a717e85636c437c6531470dc6 SHA512 1b1d13306464e84b07d8f7a72082b70542e6e59d8ac988df2dc396a30bf1da6d9f5db94710803793aaf315ca3c95846ee6f1ef3e0085ce0e748ae882f7db43df
35
MISC metadata.xml 554 BLAKE2B 3492ee78ab6e68925049a36574fac953a37a4f176758bb468a29716b9e9b6c9ba270082be06606b338664aec753b5598e73098dee85e67399f283ccaef7032d0 SHA512 e6fb459d34b4a1a287c853efe70de09f098a9c17c19451cabaa892fcdb1b5cdf60c773f10a3ecb79e4700da82b8aea38aee805b7a0518ec1d6df3c4514dbb344

dev-python/glances-api/glances-api-0.5.0.ebuild

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
EAPI=8
55

6-
PYTHON_COMPAT=( python3_{11..12} )
6+
PYTHON_COMPAT=( python3_{11..13} )
77
DISTUTILS_USE_PEP517=poetry
88
inherit distutils-r1 pypi
99

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Copyright 1999-2024 Gentoo Authors
2+
# Distributed under the terms of the GNU General Public License v2
3+
4+
EAPI=8
5+
6+
PYTHON_COMPAT=( python3_{11..13} )
7+
DISTUTILS_USE_PEP517=poetry
8+
inherit distutils-r1 pypi
9+
10+
DESCRIPTION="Python API for interacting with Glances."
11+
HOMEPAGE="https://github.com/home-assistant-ecosystem/python-glances-api https://pypi.org/project/glances-api/"
12+
13+
LICENSE="MIT"
14+
SLOT="0"
15+
KEYWORDS="amd64 arm arm64 x86"
16+
IUSE="test"
17+
RESTRICT="!test? ( test )"
18+
19+
DOCS="README.rst"
20+
21+
RDEPEND=">=dev-python/httpx-0.23[${PYTHON_USEDEP}]"
22+
BDEPEND="
23+
test? (
24+
dev-python/pytest[${PYTHON_USEDEP}]
25+
dev-python/pytest-asyncio[${PYTHON_USEDEP}]
26+
dev-python/pytest-httpx[${PYTHON_USEDEP}]
27+
)"
28+
29+
distutils_enable_tests pytest

0 commit comments

Comments
 (0)