dev-python/async-upnp-client: drop 0.36.1

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
2023-12-17 17:06:41 +01:00
committed by Andreas Billmeier
parent 63f9f598cc
commit 331eec44a2
3 changed files with 2 additions and 44 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 1731 Ebuilds in total, 1720 of them have in total 1744 (43 different) licenses assigned.
There are 1730 Ebuilds in total, 1719 of them have in total 1743 (43 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1010|
|Apache-2.0|360|
|Apache-2.0|359|
|GPL-3|110|
|BSD|98|
|LGPL-3|24|

View File

@@ -1,5 +1,3 @@
DIST async_upnp_client-0.36.1.tar.gz 95170 BLAKE2B 82a8aa2782c67553ed22e1fd760c1e2879f4d9d26178c8bd0deb0990f01952f4e476830b76b72cc817ad1ca59e0493b487079472c4ce8ef8d4b977500acfe34e SHA512 8876693590a5ef66382b4f05cfe8056168677c2ca0490bd0e2532d54518187d4dad3ab520cea4ef1f1e20c6fa9c5c92167e57359ba4f24160c967589a38aef07
DIST async_upnp_client-0.36.2.tar.gz 95258 BLAKE2B 71976743a561683668ca6e370f32c3da3b63ddce53ae20d5bfc1dbba50c4f3cca775be3cbfc2d5f695c8099a50caa4a3f403851adb0a11e63cc12ea30138a896 SHA512 b0e34dee36a8b490da77e3d52f027744a1b307f4290c74ccc223ce8dd511cb7dc2f6896e21a14095210bf0e65509ff461ad70778662e03ae6bd5790be8168217
EBUILD async-upnp-client-0.36.1.ebuild 1079 BLAKE2B 7303d1faf9e01b2757471b441794eafce8612936ca31b37c9cd6b5e32d49700aeec09f2837391ee07336605dc736f7c05337c0ddd1361757d206a4384edaa323 SHA512 ddca8cabb995ddb583cfcbc5c3b4adf7b1357b797dd731468fb6faf31fd101e6b34d2184f802e363be34268afa330f437fce6ef61bce5fd76049ec973a1a1623
EBUILD async-upnp-client-0.36.2.ebuild 1143 BLAKE2B f1b87be6e68594d0da13af876050580e54c17507ea7cdddf5bfbc553ec60b0c9282f2717983f15951bd2318f64563f2a06c5aced9b6027dfc2cbb9a46d3eb0ff SHA512 f9f8d5a6187b6b6695bd02457f55b200023790fafaeec808e35454dd682fc35b31da8f54db2a60698783344ed85dee1a3d723fd84b31843bff19566af11bbcc6
MISC metadata.xml 538 BLAKE2B aa962980fec83b7463b8e63a760e59b113277ee8d4f97f1ad47784d56627fbfa553f29d6d01d9e8dc250870cab9254d32870cfebd4990f647e656acbe345bd36 SHA512 3ae59b9453c2dd840e2a4c418d6ade4fa0ab2071d6ed4d39aecaa11f4448c361e5fb6e23499ea69b2c1da102205acaad4639e31a14e5e37f91149eac376bb287

View File

@@ -1,40 +0,0 @@
# 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="Async UPnP Client"
HOMEPAGE="https://github.com/StevenLooman/async_upnp_client https://pypi.org/project/async-upnp-client/"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.rst"
RDEPEND=">=dev-python/voluptuous-0.12.1[${PYTHON_USEDEP}]
>=dev-python/aiohttp-3.8.1[${PYTHON_USEDEP}]
>=dev-python/async-timeout-3.0.0[${PYTHON_USEDEP}]
<dev-python/async-timeout-5.0.0[${PYTHON_USEDEP}]
>=dev-python/python-didl-lite-1.3.2[${PYTHON_USEDEP}]
>=dev-python/defusedxml-0.6.0[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/coverage[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/pytest-asyncio[${PYTHON_USEDEP}]
dev-python/pytest-cov[${PYTHON_USEDEP}]
dev-python/asyncmock[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest