dev-python/sfrbox-api: add 0.0.8

Closes: #2491
Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-12-10 13:19:52 +01:00 committed by Andreas Billmeier
parent ba5c4e0ba3
commit 32146e2bd5
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 37 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 1703 Ebuilds in total, 1692 of them have in total 1712 (43 different) licenses assigned.
There are 1704 Ebuilds in total, 1693 of them have in total 1713 (43 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|993|
|MIT|994|
|Apache-2.0|360|
|GPL-3|97|
|BSD|96|

View File

@ -1,3 +1,5 @@
DIST sfrbox_api-0.0.6.tar.gz 8184 BLAKE2B 9b6d43a2a023572217bd1df591b56797a5c97b3cada76493c59659a0a72d1ecfd54e20875a085546e870c81617f8fa4f7e1b6a9d7bdf29455032b1c82813fb67 SHA512 669f4c4cbd651dca22368e9042eddac95031b68ff36e7cefee4562833fccfcaaaa2b9fb2591ce3f2642646e54ee1de5dee6db0dd741ca12f838e086965100d5d
DIST sfrbox_api-0.0.8.tar.gz 8543 BLAKE2B 51b002d2c501483989a8cb941c45c43e3119cba138da2912006105371d64750dc7257655341edebbc15363dc322c8f7f44f4b841c17e9d25a58dd7fba0ad0c1c SHA512 4388787d1753b0c7cf37a18778516f405f06509847da4ed3904aaddd288a20ac7311c32fa5ff8abae8f16f6127101b22a8c2b0a1d8d3c894e6f294cd89ae9914
EBUILD sfrbox-api-0.0.6.ebuild 712 BLAKE2B d6b0b766617bd783c28a09adbaae9d0085dc5fc3d759708db06f971cd7b32d1c2a695de4b9c27d63a39b878ab355bb13655b0b4f6ee2c9053fb4a2bde4b567db SHA512 32647a96bcec3a709239a970dde2197b6da6e7f4f3644ef62b68e384f85a67d22335764de782cce36d25e952674170c63a63027b168982da43e02c21c84cc028
EBUILD sfrbox-api-0.0.8.ebuild 712 BLAKE2B d6b0b766617bd783c28a09adbaae9d0085dc5fc3d759708db06f971cd7b32d1c2a695de4b9c27d63a39b878ab355bb13655b0b4f6ee2c9053fb4a2bde4b567db SHA512 32647a96bcec3a709239a970dde2197b6da6e7f4f3644ef62b68e384f85a67d22335764de782cce36d25e952674170c63a63027b168982da43e02c21c84cc028
MISC metadata.xml 389 BLAKE2B 140dc7ca834bb473a47ec866664311cdfa636b1fc08258e46d526827ae91946ba3bac636674fa4026f3167ca3b6c37c197fd436ff31d9fee18ff6236d88697a6 SHA512 498d778c9d7a872128e5f24a9a0d61b4b1e1ee4fe4aeb323e24c344df0d456b9090b10d88311de7eed2258fa9cf00800f692d3837ad477898e064f2601bbeac4

View File

@ -0,0 +1,33 @@
# 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=poetry
inherit distutils-r1 pypi
DESCRIPTION="SFR Box API"
HOMEPAGE="https://github.com/hacf-fr/sfrbox-api https://pypi.org/project/sfrbox-api/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND=">=dev-python/httpx-0.23.1[${PYTHON_USEDEP}]
>=dev-python/defusedxml-0.7.1[${PYTHON_USEDEP}]
>=dev-python/pydantic-1.10.2[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest