dev-python/aiocoap: drop 0.4.5
Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
@@ -606,11 +606,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 2385 Ebuilds in total, 2367 of them have in total 2405 (43 different) licenses assigned.
|
||||
There are 2384 Ebuilds in total, 2366 of them have in total 2404 (43 different) licenses assigned.
|
||||
|
||||
|License| Ebuilds using it|
|
||||
|-------|-----|
|
||||
|MIT|1363|
|
||||
|MIT|1362|
|
||||
|Apache-2.0|546|
|
||||
|GPL-3|148|
|
||||
|BSD|124|
|
||||
|
||||
@@ -1,6 +1,4 @@
|
||||
AUX aiocoap-0.4a1-no-umlaut.patch 264 BLAKE2B 4c1ba684d5d60ee324a572f04a6345d098b4b32334610eea53085bddcc081d4564cbee1fbb15462ff84d53c5a49757cc13ed2122f85dd87718a613864dabe2bc SHA512 6334856a9538a5e748353fcf1accb174241a5c4846ead94e9b77ec5617dc3718f4e56e10e834d218182e2c65e70bebfb402a756595156836da7323420bbd9437
|
||||
DIST aiocoap-0.4.14.tar.gz 305637 BLAKE2B 8755822a596246b720bb8dcdf5bc969a97d9da02313268b3fb1098716aaf9676015bcc5d1bf3b524c873695f6da4572694cf864e6be39fd17564377a086e9087 SHA512 d569e09a13a5b9a5a537c90cf07eed10ac3e7e729e509fa1306f727434fa9e9a054cba712f05848ec38b554807d20e63ce7c7849f03d120cf89421e64d6aebd7
|
||||
DIST aiocoap-0.4.5.tar.gz 223573 BLAKE2B 794ce46a3f722e55810eba6f43457dddfb7bcb6b851ee3855db13000118e8c368e131afdbf65d846c7f9622565306c28763078eed5b40b9ad8bdd3225139f667 SHA512 41dfad7ba2b03bcceb719187f91f4595df37a61535ea0cdaa302b8e745e6061c1f5fdfba0e9592a0a69ee8919843a8a76a90b9bc3a2b3a380e32755bfa1fe811
|
||||
EBUILD aiocoap-0.4.14.ebuild 746 BLAKE2B 0012442e4d9afacb939a32df16cb3e1855d6745c2e2833cd6954fb22e995fdba687b1a45e01e12527db3013e4cfc70f98f0e256f9f3c863d1946a961edf8d560 SHA512 527485fab57a68907a2ce70136112ea1f0bbddc930d47584ef0bda23a97a3b2b65bfb98c677b7e1f2fe31402941d9ea6263b74dd16cc2cb494706825cddb6646
|
||||
EBUILD aiocoap-0.4.5.ebuild 855 BLAKE2B 33bb1d78325c577d074a68e4582fcffae625d0d0e35374f1a83436f5825eaa0ad786e56a174a097aa1640dd59acf4c62d26cfd9208db8df3015886c4c4bd2057 SHA512 0ec254175577ae924be054e77afe955f257fb3b43b2483dff630ac83166f5ab923aa9b8b9d8497ad92d2247220aca1eeab48377888ee785f269804fa3fbb0b01
|
||||
MISC metadata.xml 452 BLAKE2B 727d9d2d83049beb5b112d3d73ea0dc48904772cbcef45542f5e390bafc275d969e3d2a87952c549e08816d0326e77f5a96cd1114d7ba9cb4aae6116667780f9 SHA512 c0d8f9a993251c867a8d6603a7765350c4115b933a35e50b5f8400027c62d2b7e10a316848de32bf0f06b105ec39db35e47cd3e18b8c49c239394b7e071cf0a2
|
||||
|
||||
@@ -1,34 +0,0 @@
|
||||
# Copyright 1999-2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( pypy3_11 python3_{11..14} )
|
||||
DISTUTILS_USE_PEP517=setuptools
|
||||
inherit distutils-r1 pypi
|
||||
DESCRIPTION="Python CoAP library"
|
||||
HOMEPAGE="https://github.com/chrysn/aiocoap https://pypi.org/project/aiocoap/"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 arm arm64 x86"
|
||||
IUSE="oscore test tinydtls ws"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
DOCS="README.rst"
|
||||
|
||||
RDEPEND="
|
||||
oscore? ( dev-python/cbor2[${PYTHON_USEDEP}] dev-python/cryptography[${PYTHON_USEDEP}] dev-python/filelock[${PYTHON_USEDEP}] )
|
||||
tinydtls? ( >=dev-python/DTLSSocket-0.1.11_alpha1[${PYTHON_USEDEP}] )
|
||||
ws? ( dev-python/websockets[${PYTHON_USEDEP}] )
|
||||
"
|
||||
BDEPEND="
|
||||
test? (
|
||||
dev-python/pytest[${PYTHON_USEDEP}]
|
||||
)"
|
||||
|
||||
python_test() {
|
||||
py.test -v -v || die
|
||||
}
|
||||
|
||||
distutils_enable_tests pytest
|
||||
Reference in New Issue
Block a user