Skip to content

Commit 32146e2

Browse files
committed
dev-python/sfrbox-api: add 0.0.8
Closes: https://git.edevau.net/onkelbeh/HomeAssistantRepository/issues/2491 Signed-off-by: Andreas Billmeier <[email protected]>
1 parent ba5c4e0 commit 32146e2

File tree

3 files changed

+37
-2
lines changed

3 files changed

+37
-2
lines changed

README.md

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

613613
## Licenses
614614
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.
615-
There are 1703 Ebuilds in total, 1692 of them have in total 1712 (43 different) licenses assigned.
615+
There are 1704 Ebuilds in total, 1693 of them have in total 1713 (43 different) licenses assigned.
616616

617617
|License| Ebuilds using it|
618618
|-------|-----|
619-
|MIT|993|
619+
|MIT|994|
620620
|Apache-2.0|360|
621621
|GPL-3|97|
622622
|BSD|96|

dev-python/sfrbox-api/Manifest

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
DIST sfrbox_api-0.0.6.tar.gz 8184 BLAKE2B 9b6d43a2a023572217bd1df591b56797a5c97b3cada76493c59659a0a72d1ecfd54e20875a085546e870c81617f8fa4f7e1b6a9d7bdf29455032b1c82813fb67 SHA512 669f4c4cbd651dca22368e9042eddac95031b68ff36e7cefee4562833fccfcaaaa2b9fb2591ce3f2642646e54ee1de5dee6db0dd741ca12f838e086965100d5d
2+
DIST sfrbox_api-0.0.8.tar.gz 8543 BLAKE2B 51b002d2c501483989a8cb941c45c43e3119cba138da2912006105371d64750dc7257655341edebbc15363dc322c8f7f44f4b841c17e9d25a58dd7fba0ad0c1c SHA512 4388787d1753b0c7cf37a18778516f405f06509847da4ed3904aaddd288a20ac7311c32fa5ff8abae8f16f6127101b22a8c2b0a1d8d3c894e6f294cd89ae9914
23
EBUILD sfrbox-api-0.0.6.ebuild 712 BLAKE2B d6b0b766617bd783c28a09adbaae9d0085dc5fc3d759708db06f971cd7b32d1c2a695de4b9c27d63a39b878ab355bb13655b0b4f6ee2c9053fb4a2bde4b567db SHA512 32647a96bcec3a709239a970dde2197b6da6e7f4f3644ef62b68e384f85a67d22335764de782cce36d25e952674170c63a63027b168982da43e02c21c84cc028
4+
EBUILD sfrbox-api-0.0.8.ebuild 712 BLAKE2B d6b0b766617bd783c28a09adbaae9d0085dc5fc3d759708db06f971cd7b32d1c2a695de4b9c27d63a39b878ab355bb13655b0b4f6ee2c9053fb4a2bde4b567db SHA512 32647a96bcec3a709239a970dde2197b6da6e7f4f3644ef62b68e384f85a67d22335764de782cce36d25e952674170c63a63027b168982da43e02c21c84cc028
35
MISC metadata.xml 389 BLAKE2B 140dc7ca834bb473a47ec866664311cdfa636b1fc08258e46d526827ae91946ba3bac636674fa4026f3167ca3b6c37c197fd436ff31d9fee18ff6236d88697a6 SHA512 498d778c9d7a872128e5f24a9a0d61b4b1e1ee4fe4aeb323e24c344df0d456b9090b10d88311de7eed2258fa9cf00800f692d3837ad477898e064f2601bbeac4
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# Copyright 1999-2023 Gentoo Authors
2+
# Distributed under the terms of the GNU General Public License v2
3+
4+
EAPI=8
5+
6+
PYTHON_COMPAT=( python3_{10..12} )
7+
DISTUTILS_USE_PEP517=poetry
8+
inherit distutils-r1 pypi
9+
10+
DESCRIPTION="SFR Box API"
11+
HOMEPAGE="https://github.com/hacf-fr/sfrbox-api https://pypi.org/project/sfrbox-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.md"
20+
21+
RDEPEND=">=dev-python/httpx-0.23.1[${PYTHON_USEDEP}]
22+
>=dev-python/defusedxml-0.7.1[${PYTHON_USEDEP}]
23+
>=dev-python/pydantic-1.10.2[${PYTHON_USEDEP}]"
24+
BDEPEND="
25+
test? (
26+
dev-python/pytest[${PYTHON_USEDEP}]
27+
)"
28+
29+
python_test() {
30+
py.test -v -v || die
31+
}
32+
33+
distutils_enable_tests pytest

0 commit comments

Comments
 (0)