dev-python/roonapi: add 0.1.5

Closes: #2488
Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-12-10 13:24:26 +01:00 committed by Andreas Billmeier
parent 04d3cc0534
commit 31e4187fc0
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 31 additions and 2 deletions

View File

@ -612,12 +612,12 @@ 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 1706 Ebuilds in total, 1695 of them have in total 1715 (43 different) licenses assigned.
There are 1707 Ebuilds in total, 1696 of them have in total 1716 (43 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|995|
|Apache-2.0|361|
|Apache-2.0|362|
|GPL-3|97|
|BSD|96|
|GPL-2|24|

View File

@ -1,3 +1,5 @@
DIST roonapi-0.1.4.gh.tar.gz 46586 BLAKE2B 1e1fe0bc0aa8496bb0289874335e24b931cdf233ce3b7ca7f90071f9685223b5c13095abe7e78a3735803c697ec1f1e3ae949827cf46ff079d8ca958fd7e0284 SHA512 66dbdf7d8e6e1eddac3ee63f5107a5d57768122d48565ca26a842b824eda2bc016cd4486e750d5da7134f3d19dbeca21d9b64c3a25e11494f39e95c25357aa19
DIST roonapi-0.1.5.gh.tar.gz 52537 BLAKE2B bf42ba5cc80261474f17842eb8ad63ab6d110d0b8424a678b6cf30c948158146d1e513eb77cd96cce517bea394e16a9ce2777ce0b3774eab9d74b9bbaadf5bf5 SHA512 d04ca2ebc297f6995bc71311cbf19e0a7a30e9e3201a9901ea0062dc63f4546ac978451e9abd3b0913fa4443d462d9c119ae30ea964a7ad9569c6b9d2cf39270
EBUILD roonapi-0.1.4.ebuild 763 BLAKE2B 950beb1f4262df627fd1352a38259a681f80a1309f618b81875206ef97a6bc5a9fb1bda731fdff4fcd53a61fe20cd80ae79633c5a7d10c17fec0321c00b520f5 SHA512 bc8be8aff23d071aa2fd73429d2f66dbe7c8efca028d61f00b0ce59eb8b4addd35d5d2a816e590272e30e8415f202edcd8f313e36b63650c1c13b46faf318aca
EBUILD roonapi-0.1.5.ebuild 763 BLAKE2B 950beb1f4262df627fd1352a38259a681f80a1309f618b81875206ef97a6bc5a9fb1bda731fdff4fcd53a61fe20cd80ae79633c5a7d10c17fec0321c00b520f5 SHA512 bc8be8aff23d071aa2fd73429d2f66dbe7c8efca028d61f00b0ce59eb8b4addd35d5d2a816e590272e30e8415f202edcd8f313e36b63650c1c13b46faf318aca
MISC metadata.xml 507 BLAKE2B aa5f4f471351f9f6ccd13f7192d1004d5265a848cf1b566668607def51fb9c8b483672a9f5b043326beca426b6bcdf3f19051d1364ae6eee82c66b2df829d54c SHA512 226309e03ac46214ccea47134aefe38c265e7f9fa3c098a72a329244b14ed24f79cea949447b02c4854697fe581933f69b1e88c3f186c59e48da86264e5da7b3

View File

@ -0,0 +1,27 @@
# 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
DESCRIPTION="Provides a python interface to interact with Roon"
HOMEPAGE="https://github.com/pavoni/pyroon https://pypi.org/project/roonapi/"
SRC_URI="https://github.com/pavoni/pyroon/archive/refs/tags/${PV}.tar.gz -> ${P}.gh.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE=""
RESTRICT="test"
DOCS="README.md"
RDEPEND=">=dev-python/ifaddr-0.1.0[${PYTHON_USEDEP}]
>=dev-python/requests-2.0[${PYTHON_USEDEP}]
>=dev-python/six-1.10.0[${PYTHON_USEDEP}]
>=dev-python/websocket-client-1.4.0[${PYTHON_USEDEP}]"
S="${WORKDIR}/pyroon-${PV}"