update zeroconf-0.31.0

This commit is contained in:
Andreas Billmeier 2021-06-12 17:27:54 +02:00 committed by Andreas Billmeier
parent c5fa2102c2
commit 0abd699f2b
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 48 additions and 0 deletions

View File

@ -82,6 +82,7 @@
* update yalesmartalarmclient-0.3.3
* update yeelight-0.6.3
* update youtube_dl-2021.4.26
* update zeroconf-0.31.0
2021-06-04
* cleanup PYTHON_COMPAT, remove unused Ebuilds (https://bugs.gentoo.org/793464)

View File

@ -0,0 +1,3 @@
DIST zeroconf-0.31.0.tar.gz 66836 BLAKE2B bd3bc9fdf6cb2571bb0f4407fbf00400a3bb7f4c8de3f091b17b30243707a25a46bd2457b353a51a8e7f1093fc5ccadd2ee88d131ffb6683b876e2b71b68bca9 SHA512 e01bf8e42ca995eaf74081b6b872f5ec5f9229219e239ea8a3b3b61eb4b908808eec48de17a011a6fc34aabf086b5b3c0924a404706b2dd6f2aa234c1f5cd95f
EBUILD zeroconf-0.31.0.ebuild 1019 BLAKE2B 5ae71f081f888a5590347c09a2e680229ccaa24ecbcd6b1d4593647c3bb4f8140d460fbbe7afb11786dbbea14c64051ccc86e1a5ecc5caa16bd81cecee1307b4 SHA512 c555f026f86f73d3c67edd1a44e835cfef9f8d1c8a335cbd6d62ff37bf69777f72dbc691014915c848040227ae44f10cd572ba694b555ba78c06ec652d61f668
MISC metadata.xml 327 BLAKE2B 0d2f604b068186fa699f6570006edc7fa242b944e713a9f87fda645f895667fe99c227e0c0ae5e82ebe679ff0848c3f19a99f04e8301b9709935c520c33161ab SHA512 0aa133094e6794833240092243f44fb4ca6ba45c56c022ac74a8723d7740f3e62cd64dcfe869e9ed5143c1a3183ad6d0d14c9129b87fec7d8954e3b560539692

View File

@ -0,0 +1,11 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<upstream>
<remote-id type="pypi">zeroconf</remote-id>
</upstream>
</pkgmetadata>

View File

@ -0,0 +1,33 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
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="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
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
python_test() {
local excludes=(
# network
zeroconf/test.py::Framework::test_close_multiple_times
zeroconf/test.py::Framework::test_launch_and_close
zeroconf/test.py::Framework::test_launch_and_close_v4_v6
zeroconf/test.py::Framework::test_launch_and_close_v6_only
zeroconf/test.py::ServiceTypesQuery::test_integration_with_listener_ipv6
)
epytest ${excludes[@]/#/--deselect } zeroconf/test.py
}