dev-python/aiodhcpwatcher: add 0.8.2

Closes: #3084
Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2024-03-24 08:51:41 +01:00
parent e3fe08b80e
commit 2ba9283d70
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 32 additions and 2 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 1927 Ebuilds in total, 1916 of them have in total 1935 (42 different) licenses assigned.
There are 1928 Ebuilds in total, 1917 of them have in total 1936 (42 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1088|
|Apache-2.0|442|
|GPL-3|128|
|GPL-3|129|
|BSD|107|
|LGPL-3|25|
|GPL-2|21|

View File

@ -1,5 +1,7 @@
DIST aiodhcpwatcher-0.8.0.tar.gz 18477 BLAKE2B 3b1b415da265daed6995612cf3d56b9b1a406beaa1c4d4c2a9126229ba1d6ee84b36764191a455ed282ff7e1476e2992984036c2a1dea8ef55d0419d3005461d SHA512 12c39350f5420d755a85e30ebeab0ac35ccdf0dbfaa16970121742b215950e6c44e52c4407bd4fe64f984e032e292e7994026f1bfa2615fd9edd914f6149ee9c
DIST aiodhcpwatcher-0.8.1.tar.gz 18479 BLAKE2B e943718b0ea9177382be55ef42038d98f6a7d54c8fc3223329ad0e86098a5e4854900a2fbffc979ce8fda4edccd728521536182a6baaaa577eca8a06b4232d4e SHA512 25b7f2a960a9a2ccd84a1cbd088834a4ff73d6f33e5f5cf8b142b9c1697631a72d1f7b1a636b29e46a1c9e108a425a2c410b49417805f9c01a287c5ee025db8d
DIST aiodhcpwatcher-0.8.2.tar.gz 18522 BLAKE2B 6328b0db886e9c943bf0fe5891720053bb859da9072816f4eafeef253e893ca42ce02c1caea08296a23e12698d662296e6ae08354e9b01ae38662737dbc097cd SHA512 012cfe9b5605e00affd94047a48cdc58bbed41a8142e766988aa208ca8214135e1b149e553b6db43a07e3cede775619d5940d6045d6571cc1145d3b13547397a
EBUILD aiodhcpwatcher-0.8.0.ebuild 650 BLAKE2B 6ff547b7e60e9803ce07016f82f331ab29bb27330063220cf9c5baa4d9bd3b1435b68594d31edac8f56be4ae639165bd5eaa515a19e65bc16d4e8cb89c246d67 SHA512 326774189e9c1dbe70f9879109ad3f0ff9a5679938ee7e16578ba3e9ee3e3138a162cb21e0195c4c6203779703705db5caf3bcfc820ed9c7d95384afe2c7db26
EBUILD aiodhcpwatcher-0.8.1.ebuild 650 BLAKE2B 6ff547b7e60e9803ce07016f82f331ab29bb27330063220cf9c5baa4d9bd3b1435b68594d31edac8f56be4ae639165bd5eaa515a19e65bc16d4e8cb89c246d67 SHA512 326774189e9c1dbe70f9879109ad3f0ff9a5679938ee7e16578ba3e9ee3e3138a162cb21e0195c4c6203779703705db5caf3bcfc820ed9c7d95384afe2c7db26
EBUILD aiodhcpwatcher-0.8.2.ebuild 658 BLAKE2B ea4c7db99df47e8fec0270d49b1ba2ba2a497160d92ae495c701edcdf8d369ed3aed86377e5ec12c3ec9ea6b09bbbbdb40154d4da974853be6cd2183ed62ba6c SHA512 a00b2b031581eb4a0c73764fbab1f9929b4b73c107ee8ca3ef70d284c61f6bedcbe01b4fbf1d0933a714d4ee3a1d8cd8d0e36ecc82c655f743777fd59843d077
MISC metadata.xml 519 BLAKE2B 4c463c603d1648db50b5ee4236ea28f3146f3751b44cab803478538d71cd473daaeafb2a1d6868beb213b02253917951cea8a2e6b1cf240f03526b9531f71ad9 SHA512 2b996559ac83077c5b301548c75e3b1bddbac2dc8bbcb4870867e587cefad598df410f19fdd3d4c2f99a3d05639aaf08df0c10b4ccb967ffdbf3e8c22ef03038

View File

@ -0,0 +1,28 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{11..12} )
DISTUTILS_USE_PEP517=poetry
inherit distutils-r1 pypi
DESCRIPTION="Watch for DHCP packets with asyncio"
HOMEPAGE="https://github.com/bdraco/aiodhcpwatcher https://pypi.org/project/aiodhcpwatcher/"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
RDEPEND=">=net-analyzer/scapy-2.5.0[${PYTHON_USEDEP}]"
BDEPEND="
test? (
dev-python/pytest-asyncio[${PYTHON_USEDEP}]
dev-python/pytest-cov[${PYTHON_USEDEP}]
)"
distutils_enable_tests pytest