zeroconf-0.38.4 fix RequiredUseDefaults

This commit is contained in:
Andreas Billmeier 2022-03-18 20:54:28 +01:00 committed by Andreas Billmeier
parent 67b305d463
commit 72cada2a38
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 2 additions and 39 deletions

View File

@ -496,7 +496,7 @@ From time to time a fresh compile test on empty boxes (one with Python 3.9 and o
## 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 1799 Ebuilds in total, 1791 of them have in total 1800 (33 different) licenses assigned.
There are 1798 Ebuilds in total, 1790 of them have in total 1799 (33 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
@ -510,8 +510,8 @@ There are 1799 Ebuilds in total, 1791 of them have in total 1800 (33 different)
|GPL-3+|13|
|all-rights-reserved|13|
|BSD-2|11|
|LGPL-2.1|8|
|Unlicense|7|
|LGPL-2.1|7|
|EPL-1.0|5|
|MPL-2.0|4|
|LGPL-2.1+|4|

View File

@ -1,5 +1,3 @@
DIST python-zeroconf-0.36.13.gh.tar.gz 131067 BLAKE2B 5d5641071ed5842652542f28dbf4bd1478bf1c908ce838790d251af9612dc4fa174cc69b42852f9cd80660d0fd29b4a4ad26a3cfc311a72216eae1a9e1c9c2d6 SHA512 2c7aa4d78617ab69f2862deb6bc1c5492feaccadf364f3f8c960bcb1e0d1ecd8eca3bc17474b4be9c131d88117d65044f12f4171f3e08edfbbaa00291f28828c
DIST python-zeroconf-0.38.4.gh.tar.gz 133770 BLAKE2B 2b7b01112957ed9456acd7ef842a010d38b2a6e589b1714ed3fd47d2b51f448bf716bdd8511b0a3f4560cdcf0cc16bad06ac73f9a42b5c5cf4154b48cafdf97b SHA512 6b0df6fed453dab2e554d4af4d807eed1108fe50fdcc41096a11944577ee8cfa0a0b30491a1ebe6d95ddc5b78c3c0cb07bd34ef279fbfca70775628667f40212
EBUILD zeroconf-0.36.13.ebuild 1101 BLAKE2B 623d7b2b618f89bc9c1b503245f0a5e000fdf8410457abeb50415c70aba1880141bc0d00bbfcb952b0934bbab37ba5bbde5db31709f36c18c9301dbf7b46032d SHA512 c060542566c6e77ab8b020da607300bf61ce39899b013e94a738c02e9d333fec7423d53796904998a2dafd1417ebe0136c238b34ee40c98881209ef01f6baf69
EBUILD zeroconf-0.38.4.ebuild 1092 BLAKE2B 3d7945d5ef1e311fe6e4d4334977c1b981a6040aaccbef449ba2e129d75270828d69de9cea1ad14e20b9c842ee1e0eb34fee31a8c17f047355025fe22add8550 SHA512 d7c6c52f0513c1d6394096e21a218712b16b80502709ebae9a2adb7f46663c1e3c88254b2db1fd5d52bb0037e30015f1300640e20ca32e26a82009e85607dda8
MISC metadata.xml 327 BLAKE2B 0d2f604b068186fa699f6570006edc7fa242b944e713a9f87fda645f895667fe99c227e0c0ae5e82ebe679ff0848c3f19a99f04e8301b9709935c520c33161ab SHA512 0aa133094e6794833240092243f44fb4ca6ba45c56c022ac74a8723d7740f3e62cd64dcfe869e9ed5143c1a3183ad6d0d14c9129b87fec7d8954e3b560539692

View File

@ -1,35 +0,0 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
MY_P=python-zeroconf-${PV}
DESCRIPTION="Pure Python Multicast DNS Service Discovery Library (Bonjour/Avahi compatible)"
HOMEPAGE="
https://github.com/jstasiak/python-zeroconf/
https://pypi.org/project/zeroconf/"
SRC_URI="
https://github.com/jstasiak/python-zeroconf/archive/${PV}.tar.gz
-> ${MY_P}.gh.tar.gz"
S=${WORKDIR}/${MY_P}
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
RDEPEND=">=dev-python/ifaddr-0.1.7[${PYTHON_USEDEP}]"
distutils_enable_tests pytest
EPYTEST_DESELECT=(
# network
tests/test_core.py::Framework::test_close_multiple_times
tests/test_core.py::Framework::test_launch_and_close
tests/test_core.py::Framework::test_launch_and_close_context_manager
tests/test_core.py::Framework::test_launch_and_close_v4_v6
tests/test_core.py::Framework::test_launch_and_close_v6_only
tests/services/test_types.py::ServiceTypesQuery::test_integration_with_listener_ipv6
)