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: Tue, 01 Feb 2022 10:06:59
Message-Id: 1643710008.498ff4d4ccdf1f399460752a2d3fba179e86ece3.mgorny@gentoo
1 commit: 498ff4d4ccdf1f399460752a2d3fba179e86ece3
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Feb 1 08:45:31 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 1 10:06:48 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=498ff4d4
7
8 dev-python/zeroconf: Bump to 0.38.3
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.3.ebuild | 37 ++++++++++++++++++++++++++++++
14 2 files changed, 38 insertions(+)
15
16 diff --git a/dev-python/zeroconf/Manifest b/dev-python/zeroconf/Manifest
17 index 651f3c262b0a..e98d79115eb9 100644
18 --- a/dev-python/zeroconf/Manifest
19 +++ b/dev-python/zeroconf/Manifest
20 @@ -1 +1,2 @@
21 DIST python-zeroconf-0.38.1.gh.tar.gz 133094 BLAKE2B dae802e19b8b9488fc71cf482578be53c99bbb58580de987522e068b8d4042ac093225035bf5f7c2318c9a90bf5404e42f315cae095b0b4455ebd769facdcd81 SHA512 c60f03100c83e9327a910ad84aec768fb890453c21f9baf0fbbec96f0077c602c5e806e8a6047b87108f6d257942305a2ce76c984935ed3c000d83d2c44bb8d6
22 +DIST python-zeroconf-0.38.3.gh.tar.gz 133187 BLAKE2B 2058a4e8b772b49e1e6c3dd55ca1ef1f73630724d22a253d7f14f63a361e58cff24a700dfdeeaac5ca1bed43490865885dbd8956ee58924b4f9b0c4ae3351131 SHA512 30adeb1d2dfb317224a78a7f23b64da6449b9f2e64bfebf6155711f65fb302327cb78c98afd646ae167f1fbda41b8a6c927f0d36278d266583bc5369af70f8e5
23
24 diff --git a/dev-python/zeroconf/zeroconf-0.38.3.ebuild b/dev-python/zeroconf/zeroconf-0.38.3.ebuild
25 new file mode 100644
26 index 000000000000..267b91fb5e94
27 --- /dev/null
28 +++ b/dev-python/zeroconf/zeroconf-0.38.3.ebuild
29 @@ -0,0 +1,37 @@
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 +SRC_URI="
46 + https://github.com/jstasiak/python-zeroconf/archive/${PV}.tar.gz
47 + -> ${MY_P}.gh.tar.gz"
48 +S=${WORKDIR}/${MY_P}
49 +
50 +LICENSE="LGPL-2.1"
51 +SLOT="0"
52 +KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
53 +
54 +RDEPEND=">=dev-python/ifaddr-0.1.7[${PYTHON_USEDEP}]"
55 +
56 +distutils_enable_tests pytest
57 +
58 +EPYTEST_DESELECT=(
59 + # network
60 + tests/test_core.py::Framework::test_close_multiple_times
61 + tests/test_core.py::Framework::test_launch_and_close
62 + tests/test_core.py::Framework::test_launch_and_close_context_manager
63 + tests/test_core.py::Framework::test_launch_and_close_v4_v6
64 + tests/test_core.py::Framework::test_launch_and_close_v6_only
65 + tests/services/test_types.py::ServiceTypesQuery::test_integration_with_listener_ipv6
66 +)