Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/zeroconf/
Date: Sun, 31 Oct 2021 07:12:37
Message-Id: 1635664348.d2e696f29905d65aa641e33c000b7ea24f07db07.mgorny@gentoo
1 commit: d2e696f29905d65aa641e33c000b7ea24f07db07
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Oct 31 06:49:31 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 31 07:12:28 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2e696f2
7
8 dev-python/zeroconf: Bump to 0.36.11
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/zeroconf/Manifest | 1 +
13 dev-python/zeroconf/zeroconf-0.36.11.ebuild | 35 +++++++++++++++++++++++++++++
14 2 files changed, 36 insertions(+)
15
16 diff --git a/dev-python/zeroconf/Manifest b/dev-python/zeroconf/Manifest
17 index 32971625b48..9162a9567e3 100644
18 --- a/dev-python/zeroconf/Manifest
19 +++ b/dev-python/zeroconf/Manifest
20 @@ -1,2 +1,3 @@
21 +DIST python-zeroconf-0.36.11.gh.tar.gz 130455 BLAKE2B f32556a0fad91e6476a267dd8c6b157c05aeba185842cba5fbb3f0f86c973c0dc54d8240d83a74a265ecea7d24dca7d0c3e3028f88c10a781243a641e78f324e SHA512 da34ce59a2036f1497f0b6ee37db57c0b1608a81e1ed36a089b380fc7fea746dff95ee08efc348bbb383b75f5aa9d9b4d4a70961b4de2a7968e3a46173774400
22 DIST python-zeroconf-0.36.8.gh.tar.gz 129890 BLAKE2B dafd1a660e611afcac0367b6f4618dd488161d30337fa1d8bd7f43af06446785e86125ae50781b341549fb9b1c70070e6b86ba271a98e5544f5d0e3287640e00 SHA512 928a78a59a5e23182c5f0af8cc8bda477b8225ffaf50e25bdd746ce7b40f7e215e5f23d7a4a282f802c9a4b7b53cbc60c38f547f382b8eff5eb14d1a21f108c1
23 DIST python-zeroconf-0.36.9.gh.tar.gz 130154 BLAKE2B d9a96a853a12d3f9f0e4fd9f80bb7114ce25b2fed730ed79baa4ac07a6108a6f5cfc56232ba77f829a947e2961a91c3e1eed224fadf95b2e433ebe0c7b9374ee SHA512 27558fdb9dd8539fffdc5756d180dce921bed010fb7eb2e11254e162792ba663fcaa74afbfcebfb86b5c6aa9187d00a302f6a402cf40986f0bc9e3bed1dd0e19
24
25 diff --git a/dev-python/zeroconf/zeroconf-0.36.11.ebuild b/dev-python/zeroconf/zeroconf-0.36.11.ebuild
26 new file mode 100644
27 index 00000000000..b416d399c1d
28 --- /dev/null
29 +++ b/dev-python/zeroconf/zeroconf-0.36.11.ebuild
30 @@ -0,0 +1,35 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +PYTHON_COMPAT=( python3_{8..10} )
37 +inherit distutils-r1
38 +
39 +MY_P=python-zeroconf-${PV}
40 +DESCRIPTION="Pure Python Multicast DNS Service Discovery Library (Bonjour/Avahi compatible)"
41 +HOMEPAGE="
42 + https://github.com/jstasiak/python-zeroconf/
43 + https://pypi.org/project/zeroconf/"
44 +SRC_URI="
45 + https://github.com/jstasiak/python-zeroconf/archive/${PV}.tar.gz
46 + -> ${MY_P}.gh.tar.gz"
47 +S=${WORKDIR}/${MY_P}
48 +
49 +LICENSE="LGPL-2.1"
50 +SLOT="0"
51 +KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
52 +
53 +RDEPEND=">=dev-python/ifaddr-0.1.7[${PYTHON_USEDEP}]"
54 +
55 +distutils_enable_tests pytest
56 +
57 +EPYTEST_DESELECT=(
58 + # network
59 + tests/test_core.py::Framework::test_close_multiple_times
60 + tests/test_core.py::Framework::test_launch_and_close
61 + tests/test_core.py::Framework::test_launch_and_close_context_manager
62 + tests/test_core.py::Framework::test_launch_and_close_v4_v6
63 + tests/test_core.py::Framework::test_launch_and_close_v6_only
64 + tests/services/test_types.py::ServiceTypesQuery::test_integration_with_listener_ipv6
65 +)