dev-python/roonapi: drop 0.1.5

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2024-04-12 21:00:36 +02:00
parent adbf627b55
commit 8656873afa
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 5 additions and 34 deletions

View File

@ -617,13 +617,13 @@ 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 1794 Ebuilds in total, 1783 of them have in total 1803 (42 different) licenses assigned.
There are 1785 Ebuilds in total, 1774 of them have in total 1794 (42 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1013|
|Apache-2.0|403|
|GPL-3|114|
|Apache-2.0|402|
|GPL-3|106|
|BSD|104|
|LGPL-3|25|
|GPL-2|21|

View File

@ -1,5 +1,3 @@
DIST roonapi-0.1.5.gh.tar.gz 52537 BLAKE2B bf42ba5cc80261474f17842eb8ad63ab6d110d0b8424a678b6cf30c948158146d1e513eb77cd96cce517bea394e16a9ce2777ce0b3774eab9d74b9bbaadf5bf5 SHA512 d04ca2ebc297f6995bc71311cbf19e0a7a30e9e3201a9901ea0062dc63f4546ac978451e9abd3b0913fa4443d462d9c119ae30ea964a7ad9569c6b9d2cf39270
DIST roonapi-0.1.6.gh.tar.gz 52615 BLAKE2B 4e78764c42fa4da64dc1186320eba0b24fb6b420bd0c0c8bd2aeed280c47f3aca922c7b7397679eccefafb1df010a1337e3d40464aa9d9c91e755766043d28c1 SHA512 ed8600e21bfb8a5795e49de63c82d3cba0dfe79dd346f82acc8382193f8873559b09257f7a4ec08b62fd49da1d7df1f67e790292e16cc5ecc44be7d730e0ff1e
EBUILD roonapi-0.1.5.ebuild 778 BLAKE2B da2a2d3eac568449585adf919bda29d32d12a3bc1eecb3d20982bcb0698b96cb474aa17f37c0873e76f1033b5065db3d710cc8418de48f8bb692eb7972b94a59 SHA512 52db8294aa79a868eacbba55290012cf180bc486ff90d7153e494c62694d3e9c7925fbcc4457dcd9ff7695bb9c1951c994f5113631dfb462c904cbbbd34f4376
EBUILD roonapi-0.1.6.ebuild 778 BLAKE2B da2a2d3eac568449585adf919bda29d32d12a3bc1eecb3d20982bcb0698b96cb474aa17f37c0873e76f1033b5065db3d710cc8418de48f8bb692eb7972b94a59 SHA512 52db8294aa79a868eacbba55290012cf180bc486ff90d7153e494c62694d3e9c7925fbcc4457dcd9ff7695bb9c1951c994f5113631dfb462c904cbbbd34f4376
EBUILD roonapi-0.1.6.ebuild 778 BLAKE2B c8f04b9f59119ec1ecdf09f3530f1cff7778834dd6c1fb827ffa83b219b70096f22429ff0220c01bfd6df8452c7216bfd1f96e0ad47b261e85e1bdd9b4a84e90 SHA512 b5b9c3d34cb2b7a33e42d8bcc9eabc05f112a11baa3cd6c5d0883f2817b3c686f0bd3622465475fe2456488c878da9c595af0b611cd89cb7ff054433e2aa59f1
MISC metadata.xml 507 BLAKE2B aa5f4f471351f9f6ccd13f7192d1004d5265a848cf1b566668607def51fb9c8b483672a9f5b043326beca426b6bcdf3f19051d1364ae6eee82c66b2df829d54c SHA512 226309e03ac46214ccea47134aefe38c265e7f9fa3c098a72a329244b14ed24f79cea949447b02c4854697fe581933f69b1e88c3f186c59e48da86264e5da7b3

View File

@ -1,27 +0,0 @@
# Copyright 1999-2024 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="test"
RESTRICT="!test? ( 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}"

View File

@ -3,7 +3,7 @@
EAPI=8
PYTHON_COMPAT=( python3_{10..12} )
PYTHON_COMPAT=( python3_{11..12} )
DISTUTILS_USE_PEP517=poetry
inherit distutils-r1