dev-python/pyrisco: add 0.5.8

Closes: #2485
Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-12-10 13:31:13 +01:00 committed by Andreas Billmeier
parent 69df46c301
commit 0b7a6002e1
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 35 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 1709 Ebuilds in total, 1698 of them have in total 1718 (43 different) licenses assigned.
There are 1710 Ebuilds in total, 1699 of them have in total 1719 (43 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|995|
|MIT|996|
|Apache-2.0|363|
|GPL-3|98|
|BSD|96|

View File

@ -1,3 +1,5 @@
DIST pyrisco-0.5.7.tar.gz 14424 BLAKE2B 2a94873631101c967632a048df0a90d6f9e2679ce308fcf5dece8cde0b9b1815ce60988557450eb074b84584d311a740abe8a2e16345666733e2a03f91020852 SHA512 f3d9272e83e3a84e45a0cef2ece0dc5fc3dc0b89b430f2aa912903712e4263a70afbbd7584df826b91cc0750f595ab04be531baa53109de54d47bf6a4f5a6f48
DIST pyrisco-0.5.8.tar.gz 14629 BLAKE2B d94975363f2250f463759d45a0dc16a018a795d2e79e8113de632ae2df06cbd40bd6428abb069c3bf3fa88be861fa7503768640ef6b25617af0cf6921d7d75c8 SHA512 07a1012e4c4c12b3d757588e7edcbd3b89217941323fe64e81dea9f8df2311fe79610d251812775fc10cede67de94e433c598eb1d5ac3831a93c846301fd8b62
EBUILD pyrisco-0.5.7.ebuild 645 BLAKE2B 6507f54792762b92062c309f2c8cd9006dc9d9b419d4a25b51490a8339575552e1617bd4ae4f647a7cd7f50c34bf427faecfa5724fe340a55b2fabc2eefd938a SHA512 bc945fabe576cb09e317634d5758c3423240c603ac8601215ba347edb1cd6f4f2f04472ba642d335174a5be6cff9ff1b3b0f909f0728ecf21f1719525392852f
EBUILD pyrisco-0.5.8.ebuild 645 BLAKE2B 6507f54792762b92062c309f2c8cd9006dc9d9b419d4a25b51490a8339575552e1617bd4ae4f647a7cd7f50c34bf427faecfa5724fe340a55b2fabc2eefd938a SHA512 bc945fabe576cb09e317634d5758c3423240c603ac8601215ba347edb1cd6f4f2f04472ba642d335174a5be6cff9ff1b3b0f909f0728ecf21f1719525392852f
MISC metadata.xml 505 BLAKE2B 1ebff0f8ced158a1cfc9c88fe66c6671cd2331b3c34e0b87db2ad28af99cb2e927e9679b30cff3b1bf0bbad49e971d632fa1774640b39b8ed9c10d2b6c071d1f SHA512 18474295818478798ea28697bfd88eb232ac7170bdf3a96c4cbc70df66bff610240199103452362070244a4dd03b6748e57b7d8c34856c5755174e9249e0a475

View File

@ -0,0 +1,31 @@
# 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=setuptools
inherit distutils-r1 pypi
DESCRIPTION="A python library to communicate with Risco Cloud."
HOMEPAGE="https://github.com/OnFreund/PyRisco https://pypi.org/project/pyrisco/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest