forked from pool/python-zeroconf
Had to add a _service to check out 0.31.0 from git since it's not tagged. The commit was obtained from looking at the changelog at https://github.com/jstasiak/python-zeroconf/blob/master/README.rst and the commit history. - Add patch to disable some tests that fail in obs: * disable-tests.patch - update to 0.31.0: * Separated cache loading from I/O in ServiceInfo and fixed cache lookup (#356), thanks to J. Nick Koston. The ServiceInfo class gained a load_from_cache() method to only fetch information from Zeroconf cache (if it exists) with no IO performed. Additionally this should reduce IO in cases where cache lookups were previously incorrectly failing. - update to 0.30.0: * Some nice refactoring work including removal of the Reaper thread, thanks to J. Nick Koston. * Fixed a Windows-specific The requested address is not valid in its context regression, thanks to Timothee ‘TTimo’ Besset and J. Nick Koston. * Provided an asyncio-compatible service registration layer (in the zeroconf.asyncio module), thanks to J. Nick Koston. OBS-URL: https://build.opensuse.org/request/show/897188 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-zeroconf?expand=0&rev=46
67 lines
2.2 KiB
RPMSpec
67 lines
2.2 KiB
RPMSpec
#
|
|
# spec file for package python-zeroconf
|
|
#
|
|
# Copyright (c) 2021 SUSE LLC
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
|
%define skip_python2 1
|
|
Name: python-zeroconf
|
|
Version: 0.31.0
|
|
Release: 0
|
|
Summary: Pure Python Multicast DNS Service Discovery Library (Bonjour/Avahi compatible)
|
|
License: LGPL-2.0-only
|
|
Group: Development/Languages/Python
|
|
URL: https://github.com/jstasiak/python-zeroconf
|
|
Source: %{name}-%{version}.tar.xz
|
|
Patch0: disable-tests.patch
|
|
BuildRequires: %{python_module ifaddr >= 0.1.7}
|
|
BuildRequires: %{python_module pytest-asyncio}
|
|
BuildRequires: %{python_module pytest}
|
|
BuildRequires: %{python_module setuptools}
|
|
BuildRequires: fdupes
|
|
BuildRequires: python-rpm-macros
|
|
Requires: python-ifaddr >= 0.1.7
|
|
BuildArch: noarch
|
|
%python_subpackages
|
|
|
|
%description
|
|
This is a fork of pyzeroconf, a Multicast DNS Service Discovery for Python.
|
|
It is compatible with Bonjour and Avahi.
|
|
Compared to some other Zeroconf/Bonjour/Avahi Python packages, python-zeroconf
|
|
is not tied to Bonjour or Avahi, does not use D-Bus and
|
|
does not force you to use a particular event loop or python-twisted.
|
|
|
|
%prep
|
|
%autosetup -p1
|
|
|
|
%build
|
|
%python_build
|
|
|
|
%install
|
|
%python_install
|
|
%python_expand rm -f %{buildroot}%{$python_sitelib}/zeroconf/test.py
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
|
|
%check
|
|
%pytest zeroconf/test.py -k 'not (test_integration_with_listener_ipv6 or test_launch)'
|
|
|
|
%files %{python_files}
|
|
%doc README.rst
|
|
%license COPYING
|
|
%{python_sitelib}/zeroconf*
|
|
|
|
%changelog
|