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: Mon, 02 May 2022 08:27:11
Message-Id: 1651480022.ee1d5e14cf7c6b6801f89ac16a8a62c0c4b73047.mgorny@gentoo
1 commit: ee1d5e14cf7c6b6801f89ac16a8a62c0c4b73047
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon May 2 08:14:52 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon May 2 08:27:02 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee1d5e14
7
8 dev-python/zeroconf: Bump to 0.38.5
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.38.5.ebuild | 42 ++++++++++++++++++++++++++++++
14 2 files changed, 43 insertions(+)
15
16 diff --git a/dev-python/zeroconf/Manifest b/dev-python/zeroconf/Manifest
17 index e1984a9199c6..c19c67d810e1 100644
18 --- a/dev-python/zeroconf/Manifest
19 +++ b/dev-python/zeroconf/Manifest
20 @@ -1 +1,2 @@
21 DIST python-zeroconf-0.38.4.gh.tar.gz 133770 BLAKE2B 2b7b01112957ed9456acd7ef842a010d38b2a6e589b1714ed3fd47d2b51f448bf716bdd8511b0a3f4560cdcf0cc16bad06ac73f9a42b5c5cf4154b48cafdf97b SHA512 6b0df6fed453dab2e554d4af4d807eed1108fe50fdcc41096a11944577ee8cfa0a0b30491a1ebe6d95ddc5b78c3c0cb07bd34ef279fbfca70775628667f40212
22 +DIST python-zeroconf-0.38.5.gh.tar.gz 134146 BLAKE2B d1ad69e8fe9f236c95862e1e415c5739a5627ed6d96b71f7af418e1f5cc9ca9c57feac34fa18d3928bdc6cf54c7d28dd30c9f259038e018746ad6a3671101225 SHA512 68ee397b567795f55e9374906761682e404ee0428b8b104c3dfedac473bbda780c086d50b598be9940a9b14e58642960dc29280036d3ff8e3fb76660806e0f54
23
24 diff --git a/dev-python/zeroconf/zeroconf-0.38.5.ebuild b/dev-python/zeroconf/zeroconf-0.38.5.ebuild
25 new file mode 100644
26 index 000000000000..86c76362ebb0
27 --- /dev/null
28 +++ b/dev-python/zeroconf/zeroconf-0.38.5.ebuild
29 @@ -0,0 +1,42 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +DISTUTILS_USE_PEP517=setuptools
36 +PYTHON_COMPAT=( python3_{8..10} )
37 +
38 +inherit distutils-r1
39 +
40 +MY_P=python-zeroconf-${PV}
41 +DESCRIPTION="Pure Python Multicast DNS Service Discovery Library (Bonjour/Avahi compatible)"
42 +HOMEPAGE="
43 + https://github.com/jstasiak/python-zeroconf/
44 + https://pypi.org/project/zeroconf/
45 +"
46 +SRC_URI="
47 + https://github.com/jstasiak/python-zeroconf/archive/${PV}.tar.gz
48 + -> ${MY_P}.gh.tar.gz
49 +"
50 +S="${WORKDIR}/${MY_P}"
51 +
52 +LICENSE="LGPL-2.1"
53 +SLOT="0"
54 +KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
55 +
56 +RDEPEND="
57 + >=dev-python/ifaddr-0.1.7[${PYTHON_USEDEP}]
58 +"
59 +
60 +distutils_enable_tests pytest
61 +
62 +EPYTEST_DESELECT=(
63 + tests/utils/test_asyncio.py::test_run_coro_with_timeout
64 + # network
65 + tests/test_core.py::Framework::test_close_multiple_times
66 + tests/test_core.py::Framework::test_launch_and_close
67 + tests/test_core.py::Framework::test_launch_and_close_context_manager
68 + tests/test_core.py::Framework::test_launch_and_close_v4_v6
69 + tests/test_core.py::Framework::test_launch_and_close_v6_only
70 + tests/services/test_types.py::ServiceTypesQuery::test_integration_with_listener_ipv6
71 +)