Skip to content

Commit 7270535

Browse files
committed
dev-python/wled: add 0.17.1,
dev-python/typer: add 0.12.3 Closes: https://git.edevau.net/onkelbeh/HomeAssistantRepository/issues/3355 Signed-off-by: Andreas Billmeier <[email protected]>
1 parent dc6f324 commit 7270535

File tree

7 files changed

+71
-7
lines changed

7 files changed

+71
-7
lines changed

README.md

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

607607
## Licenses
608608
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.
609-
There are 1829 Ebuilds in total, 1818 of them have in total 1839 (42 different) licenses assigned.
609+
There are 1831 Ebuilds in total, 1820 of them have in total 1841 (42 different) licenses assigned.
610610

611611
|License| Ebuilds using it|
612612
|-------|-----|
613-
|MIT|1051|
613+
|MIT|1053|
614614
|Apache-2.0|402|
615615
|GPL-3|107|
616616
|BSD|106|

dev-python/typer/Manifest

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
DIST typer-0.12.3.tar.gz 94276 BLAKE2B faaa67c633de21b44128f17e204eff8aef857ca98a0dd92b019d30ea14aea344e6ef5fed690bb98676b0e74c778aac596a928efaea788b46e287e9b80f9ac7c4 SHA512 3265d0d183357c3f69e65bf1e7763e6b09c2d93bd79025ac171fcd2e38e9afaf47cb6b8b6007924a2cedeb34ead4174d4a9d1765076d2dcff8f828e7fd4265c6
12
DIST typer-0.7.0.tar.gz 251871 BLAKE2B acad6d639949cb853d06c726984777c844305b5a3543b298aff4536bbb4e3cc2cbb26aa96c1e3b14c328ea18099ed26052d3f2b1c8cfd841e4369ca66b99dc23 SHA512 af078fb9625ca06871025f35a1ff292a73bcf80cd5d81d462fda8f74096914bbfd60ae5dcd1708bf661e8792df32da7def866670a9240f08cfbcc5b4469fcaa4
2-
EBUILD typer-0.7.0.ebuild 658 BLAKE2B 3599d9cb98e89440b4b1987a2209e7f22dc1c7c4cf7d6007d565fdab326168921eefcb3bd0c6851f8f61f18d5e5f10f8863a398a93c92038c09eca192bc45189 SHA512 df2a26d661e00f927919a4c788dc157bf4253b7762b8a9970b45a453088f3b0fa1c97c50465b1e49d004cee4e2e53a1e1be5df1d8be2e89d92ee2b240dc273eb
3+
EBUILD typer-0.12.3.ebuild 621 BLAKE2B a60c38986bb4ad453a058f9ce89d7cca0e917acce06d44bcb5d1e0714a7dc05afb24e22eff1c46c76b42a48a8b51602cc380eb4fe6ff5ac07445d315d6b55cef SHA512 a7d98e26f69637c5c5ab6cd4e1478ede4ad5b180f7bcb8837ab98fb13b90343eb501239a003dedaa9e1e966a5d0a99504aaab9622194601c96b0614970e441e5
4+
EBUILD typer-0.7.0.ebuild 658 BLAKE2B eda5e010caeb8fb3297e31e318ae03b237bccf929c411b59d9f41871e9426ca9b8f3f5cfb519070cc031e46f4ec2fb0816c66f6943cd6a55be7526d976a5b58d SHA512 f50116149c42831a8d3643930c86b44e4b02259665ab427594d49ad32701dd817b55d3d97a63a7cb9adfd3db9fe7a2999fbd51d913b866128b4db76506b2272b
35
MISC metadata.xml 511 BLAKE2B f498efe373227e16453633a9ddfeb6b51e2abe8de03f3ab9356d640bf031865b248c7a8cb767192a0f7797eca2213a219448e6f657cf9639a0fb2803710e4478 SHA512 842a0e1a8fa05573fb0b7e13bbd4ef99c12851f369bca7a7b7c43b4f1bcbda2e59379ac4b52458163c1b811c6d74b7c1ad3a913bdd3a6c120b2325a878b2049c

dev-python/typer/typer-0.12.3.ebuild

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
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=pdm-backend
8+
inherit distutils-r1 pypi
9+
10+
DESCRIPTION="Typer, build great CLIs. Easy to code. Based on Python type hints."
11+
HOMEPAGE="https://github.com/tiangolo/typer https://pypi.org/project/typer/"
12+
13+
LICENSE="MIT"
14+
SLOT="0"
15+
KEYWORDS="amd64 arm arm64 x86"
16+
IUSE="test"
17+
RESTRICT="!test? ( test )"
18+
19+
DOCS="README.md"
20+
21+
RDEPEND=">=dev-python/click-8.0.0[${PYTHON_USEDEP}]
22+
>=dev-python/typing-extensions-3.7.4.3[${PYTHON_USEDEP}]"
23+
24+
distutils_enable_tests pytest

dev-python/typer/typer-0.7.0.ebuild

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
# Copyright 1999-2023 Gentoo Authors
1+
# Copyright 1999-2024 Gentoo Authors
22
# Distributed under the terms of the GNU General Public License v2
33

44
EAPI=8
55

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

dev-python/wled/Manifest

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
DIST wled-0.17.0.tar.gz 18442 BLAKE2B 485bca8ae14c23b874b23e13f3fd6db31c3081c3b7ec0f05fb65c390226be84ee1f222874bffc50cb241fa526424def1f07b8f7d8d9397ce650c189695c9ac04 SHA512 0e1be0ba0d83747a401d9e9ae606acfd1a9f91efc9ad53ee231ac0330373b161722a68b5ac79ad13a2a9b8c41eda696d66155d3234664223b39ebd97486fa36c
2-
EBUILD wled-0.17.0.ebuild 957 BLAKE2B 31974275cb19689ee1298c0cb41e42de7f6e0fae63668b25e80690884cb170eb9520e534b77292049a81d443da860f65dd15252e6a541c0be9fe4eb34af0a7ee SHA512 ca8d8c1e9fca9dc68f4e8265099c9e4e035b0f0a6df40ad50458bd9d0b49f8e52ffd293c9c67b8172d4b9cc0e59c2686921569c53d1df797aea1bcd342d79d44
2+
DIST wled-0.17.1.tar.gz 18608 BLAKE2B b98a90ed402bd1355c65963ccb8f198a2da5cd98a69682b373a6bd5822946dc402665b3b4f3b2ece888744e7640856f5a1c9645f05644773ea7f7edd882da692 SHA512 9748c9e84c39486b574d24c94db431342cdb193fe16aa4a9ab900c6369289138ce22e8c89eaae00d9093258724bbf423b551efc63db4415918d7ed69f3aca9de
3+
EBUILD wled-0.17.0.ebuild 957 BLAKE2B ad1ca2925f5c5fc2f3e8071c6d9cd6c73fdcd0e77388310a44d36958df8ac9bd732229c87bbcc2c4ee8b946e47c6ad4fbc15852a1e37d4211e2c21a7f229b37a SHA512 0621f8b3e979e87d9927a7305745c501743a6f4667c63b3b66e243fc2a40a8b29a6874083d0828e182641aba63b9b9346db1d515070b2ce876adf932ccd2c4ad
4+
EBUILD wled-0.17.1.ebuild 1010 BLAKE2B ee9de6918a0cfbbf31d03422df695cdb74569e1261f1cba8ce75afb299a1c567b783d3753fd020cabe6394f0f34966ac675a7e51fd1fef2eca787f00010beb0f SHA512 213bb9442d09a11204bd317d7dd0448b1ffb653ddc0616b89d1e45a757f7b85abe155e0763f836a19659d1ed67838bfbca4addd5a56426f0931e2e52973f1bc7
35
MISC metadata.xml 511 BLAKE2B 7e82ecb98c296e42d4bb45c8bf752ca782c3855676e321c6431a24b46642b445fd1e240e5b2e47bbbfa84e28a5fd328b8a9b79a5b6ecedea554f93ea5e71f35d SHA512 b5cf3659a6ba2a39c5a429e83c2e2fcdb1a1dcbde4bec46b4667fb43be17024510199ce9531d97edb59c718ba75a2fd97d5d5ba0188745b70528c11b9a99105f

dev-python/wled/wled-0.17.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

dev-python/wled/wled-0.17.1.ebuild

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
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="Asynchronous Python client for WLED."
11+
HOMEPAGE="https://github.com/frenck/python-wled https://pypi.org/project/wled/"
12+
13+
LICENSE="MIT"
14+
SLOT="0"
15+
KEYWORDS="amd64 arm arm64 x86"
16+
IUSE="test"
17+
RESTRICT="!test? ( test )"
18+
19+
DOCS="README.md"
20+
21+
RDEPEND=">=dev-python/aiohttp-3.0.0[${PYTHON_USEDEP}]
22+
>=dev-python/awesomeversion-22.1.0[${PYTHON_USEDEP}]
23+
>=dev-python/backoff-2.2.0[${PYTHON_USEDEP}]
24+
>=dev-python/cachetools-4.0.0[${PYTHON_USEDEP}]
25+
>=dev-python/yarl-1.6.0[${PYTHON_USEDEP}]
26+
>=dev-python/typer-0.12.3[${PYTHON_USEDEP}]
27+
>=dev-python/zeroconf-0.132.2[${PYTHON_USEDEP}]"
28+
BDEPEND="
29+
test? (
30+
dev-python/aresponses[${PYTHON_USEDEP}]
31+
dev-python/pytest[${PYTHON_USEDEP}]
32+
dev-python/pytest-cov[${PYTHON_USEDEP}]
33+
dev-python/pytest-asyncio[${PYTHON_USEDEP}]
34+
)"
35+
36+
distutils_enable_tests pytest

0 commit comments

Comments
 (0)