Gentoo Archives: gentoo-commits

From: Arthur Zamarin <arthurzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/zeroconf/
Date: Fri, 24 Dec 2021 07:56:51
Message-Id: 1640332595.a0b42166ab91d1a7714dca3736e004fb386ccaab.arthurzam@gentoo
1 commit: a0b42166ab91d1a7714dca3736e004fb386ccaab
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Fri Dec 24 07:44:49 2021 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Fri Dec 24 07:56:35 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0b42166
7
8 dev-python/zeroconf: add 0.38.1
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 dev-python/zeroconf/Manifest | 1 +
13 dev-python/zeroconf/zeroconf-0.38.1.ebuild | 35 ++++++++++++++++++++++++++++++
14 2 files changed, 36 insertions(+)
15
16 diff --git a/dev-python/zeroconf/Manifest b/dev-python/zeroconf/Manifest
17 index 013774fed1bf..ed06e3ebfc44 100644
18 --- a/dev-python/zeroconf/Manifest
19 +++ b/dev-python/zeroconf/Manifest
20 @@ -1 +1,2 @@
21 DIST python-zeroconf-0.36.13.gh.tar.gz 131067 BLAKE2B 5d5641071ed5842652542f28dbf4bd1478bf1c908ce838790d251af9612dc4fa174cc69b42852f9cd80660d0fd29b4a4ad26a3cfc311a72216eae1a9e1c9c2d6 SHA512 2c7aa4d78617ab69f2862deb6bc1c5492feaccadf364f3f8c960bcb1e0d1ecd8eca3bc17474b4be9c131d88117d65044f12f4171f3e08edfbbaa00291f28828c
22 +DIST python-zeroconf-0.38.1.gh.tar.gz 133094 BLAKE2B dae802e19b8b9488fc71cf482578be53c99bbb58580de987522e068b8d4042ac093225035bf5f7c2318c9a90bf5404e42f315cae095b0b4455ebd769facdcd81 SHA512 c60f03100c83e9327a910ad84aec768fb890453c21f9baf0fbbec96f0077c602c5e806e8a6047b87108f6d257942305a2ce76c984935ed3c000d83d2c44bb8d6
23
24 diff --git a/dev-python/zeroconf/zeroconf-0.38.1.ebuild b/dev-python/zeroconf/zeroconf-0.38.1.ebuild
25 new file mode 100644
26 index 000000000000..b416d399c1d2
27 --- /dev/null
28 +++ b/dev-python/zeroconf/zeroconf-0.38.1.ebuild
29 @@ -0,0 +1,35 @@
30 +# Copyright 1999-2021 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +PYTHON_COMPAT=( python3_{8..10} )
36 +inherit distutils-r1
37 +
38 +MY_P=python-zeroconf-${PV}
39 +DESCRIPTION="Pure Python Multicast DNS Service Discovery Library (Bonjour/Avahi compatible)"
40 +HOMEPAGE="
41 + https://github.com/jstasiak/python-zeroconf/
42 + https://pypi.org/project/zeroconf/"
43 +SRC_URI="
44 + https://github.com/jstasiak/python-zeroconf/archive/${PV}.tar.gz
45 + -> ${MY_P}.gh.tar.gz"
46 +S=${WORKDIR}/${MY_P}
47 +
48 +LICENSE="LGPL-2.1"
49 +SLOT="0"
50 +KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
51 +
52 +RDEPEND=">=dev-python/ifaddr-0.1.7[${PYTHON_USEDEP}]"
53 +
54 +distutils_enable_tests pytest
55 +
56 +EPYTEST_DESELECT=(
57 + # network
58 + tests/test_core.py::Framework::test_close_multiple_times
59 + tests/test_core.py::Framework::test_launch_and_close
60 + tests/test_core.py::Framework::test_launch_and_close_context_manager
61 + tests/test_core.py::Framework::test_launch_and_close_v4_v6
62 + tests/test_core.py::Framework::test_launch_and_close_v6_only
63 + tests/services/test_types.py::ServiceTypesQuery::test_integration_with_listener_ipv6
64 +)