re-add zeroconf-0.38.7 (from main)

This commit is contained in:
Andreas Billmeier 2022-09-08 06:14:18 +02:00 committed by Andreas Billmeier
parent e00b097c69
commit 981eb9e7e4
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
3 changed files with 29 additions and 10 deletions

View File

@ -563,9 +563,9 @@ There are 1878 Ebuilds in total, 1871 of them have in total 1883 (35 different)
|CC-BY-NC-SA-4.0|1|
|CC0-1.0|1|
(Last counted: 07/09/2022)
(Last counted: 08/09/2022)
I did my best to keep these clean. If a valid license was published on PyPI, it has been automatically merged. Otherwise I took it from GitHub or alternatively from comments/files in the source. Sometimes these differed and have been not unique. All license strings are adjusted to the list in `/usr/portage/gentoo/licenses/`. Some packages do not have any license published. In this case, Authors have been asked for clarification, some did not respond. Following the [official Gentoo Guide](https://devmanual.gentoo.org/general-concepts/licenses/index.html), these then were added with an `all-rights-reserved` license and `RESTRICT="mirror"` was set. Find the appropriate licenses referenced in the Ebuild files and in the corresponding homepages or sources.
A big thanks goes to Iris for reviewing this README.
Last updated: 07/09/2022
Last updated: 08/09/2022

View File

@ -1,3 +1,3 @@
DIST python-zeroconf-0.38.4.gh.tar.gz 133770 BLAKE2B 2b7b01112957ed9456acd7ef842a010d38b2a6e589b1714ed3fd47d2b51f448bf716bdd8511b0a3f4560cdcf0cc16bad06ac73f9a42b5c5cf4154b48cafdf97b SHA512 6b0df6fed453dab2e554d4af4d807eed1108fe50fdcc41096a11944577ee8cfa0a0b30491a1ebe6d95ddc5b78c3c0cb07bd34ef279fbfca70775628667f40212
EBUILD zeroconf-0.38.4.ebuild 1092 BLAKE2B 3d7945d5ef1e311fe6e4d4334977c1b981a6040aaccbef449ba2e129d75270828d69de9cea1ad14e20b9c842ee1e0eb34fee31a8c17f047355025fe22add8550 SHA512 d7c6c52f0513c1d6394096e21a218712b16b80502709ebae9a2adb7f46663c1e3c88254b2db1fd5d52bb0037e30015f1300640e20ca32e26a82009e85607dda8
DIST python-zeroconf-0.38.7.gh.tar.gz 134866 BLAKE2B 060ffdc45d4ec8092cd278b99a74561fd1ea06aba3cdecadbd35c1c5e3f608befe3ced18009d8d64c5b37388ee57900b4b00a44c90d87923f259e798da5bb962 SHA512 a0ab90f30b843bc889daf95eab6d806a5e3fb4ffe5e3857c435f14a85de7b659b8386159f6428f05a34f2e3010f4582f7d3a55bbd6e6ede0008247821f666707
EBUILD zeroconf-0.38.7.ebuild 1339 BLAKE2B d208fbf83688901d8ae7bd8c8cd57cdf5b1ec29ecb3bba51604461d40f1a588f92e3c46201978f99f96e7f1f757264197c77cba268143e50bceb2a3e384b3284 SHA512 808b40944480c4b5a589d269d9c870795ea6f71029d479976182ac09a95706a89d5d15553d2931d4f950dba2ca0cc6a26ed4d3c37d382fee4e58f8048d088bdb
MISC metadata.xml 327 BLAKE2B 0d2f604b068186fa699f6570006edc7fa242b944e713a9f87fda645f895667fe99c227e0c0ae5e82ebe679ff0848c3f19a99f04e8301b9709935c520c33161ab SHA512 0aa133094e6794833240092243f44fb4ca6ba45c56c022ac74a8723d7740f3e62cd64dcfe869e9ed5143c1a3183ad6d0d14c9129b87fec7d8954e3b560539692

View File

@ -3,20 +3,35 @@
EAPI=8
PYTHON_COMPAT=( python3_{8..10} )
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{8..11} )
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}
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"
KEYWORDS="amd64 arm arm64 x86"
RDEPEND=">=dev-python/ifaddr-0.1.7[${PYTHON_USEDEP}]"
RDEPEND="
>=dev-python/ifaddr-0.1.7[${PYTHON_USEDEP}]
"
BDEPEND="
test? (
dev-python/pytest-asyncio[${PYTHON_USEDEP}]
)
"
distutils_enable_tests pytest
@ -28,4 +43,8 @@ EPYTEST_DESELECT=(
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
# fragile to timeouts (?)
tests/services/test_browser.py::test_service_browser_expire_callbacks
tests/utils/test_asyncio.py::test_run_coro_with_timeout
)