14
0
Files
python-zeroconf/python-zeroconf.spec

74 lines
2.6 KiB
RPMSpec
Raw Normal View History

#
# spec file for package python-zeroconf
#
- update to 0.132.2: * Update references to minimum-supported python version of 3.8 * Set change during iteration when dispatching listeners * Make async_get_service_info available on the Zeroconf object * Drop python 3.7 support * Avoid including scope_id in IPv6Address object if its zero * Small speed up to constructing outgoing packets * Speed up processing incoming packets * Speed up the query handler * Make ServiceInfo aware of question history * Small speed up to ServiceInfo construction * Significantly improve efficiency of the ServiceBrowser scheduler * Small speed up to processing incoming records * Small performance improvement for converting time * Small performance improvement for ServiceInfo asking questions * Small performance improvement constructing outgoing questions * Scheduling race with the QueryScheduler * Ensure question history suppresses duplicates * Microsecond precision loss in the query handler * Ensure IPv6 scoped address construction uses the string cache * Add decoded_properties method to ServiceInfo * Ensure ServiceInfo.properties always returns bytes * Cache is_unspecified for zeroconf ip address objects * `ServiceInfo.properties` always returns a dictionary with type `dict[bytes, bytes | None]` instead of a mix `str` and `bytes`. It was only possible to get a mixed dictionary if it was manually passed in when `ServiceInfo` was constructed. * Performance regression with ServiceInfo IPv6Addresses OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-zeroconf?expand=0&rev=74
2024-05-08 10:56:39 +00:00
# Copyright (c) 2024 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/
#
%{?sle15_python_module_pythons}
Name: python-zeroconf
Version: 0.136.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
- update to 0.56.0: * Reduce denial of service protection overhead (#1157) * Improve performance of processing incoming records (#1155) * Avoid waking async_request when record updates are not relevant (#1153) (`a3f970c`) * Addresses incorrect after server name change (#1154) * Improve ServiceBrowser performance by removing OrderedDict * Make parsed_scoped_addresses return addresses in the same order as all other methods (#1150) (`9b6adcf`) * Small cleanups to cache cleanup interval (#1146) (`b434b60`) * Add ip_addresses_by_version to ServiceInfo (#1145) * Speed up processing records in the ServiceBrowser (#1143) * Speed up matching types in the ServiceBrowser (#1144) * Include tests and docs in sdist archives (#1142) (`da10a3b`) * Improve performance of constructing ServiceInfo (#1141) * Small speed up to handler dispatch (#1140) (`5bd1b6e`) * Speed up processing incoming records (#1139) (`7246a34`) * Reduce overhead to send responses (#1135) (`c4077dd`) * Correct duplicate record entries in windows wheels by updating poetry-core (#1134) (`a43055d`) * Hold a strong reference to the query sender start task (#1128) (`808c3b2`) * Missing c extensions with newer poetry (#1129) (`44d7fc6`) * The equality checks for DNSPointer and DNSService should be case insensitive (#1122) (`48ae77f`) * Optimize equality checks for DNS records (#1120) (`3a25ff7`) * Optimize the dns cache (#1119) (`e80fcef`) * Optimize construction of outgoing packets (#1118) (`81e186d`) * Optimize dns objects by adding pxd files (#1113) (`919d4d8`) * Optimize incoming parser by reducing call stack (#1116) OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-zeroconf?expand=0&rev=70
2023-05-03 10:29:33 +00:00
Source: https://github.com/python-zeroconf/python-zeroconf/archive/refs/tags/%{version}.tar.gz
BuildRequires: %{python_module async_timeout >= 4.0.1}
BuildRequires: %{python_module ifaddr >= 0.1.7}
- update to 0.56.0: * Reduce denial of service protection overhead (#1157) * Improve performance of processing incoming records (#1155) * Avoid waking async_request when record updates are not relevant (#1153) (`a3f970c`) * Addresses incorrect after server name change (#1154) * Improve ServiceBrowser performance by removing OrderedDict * Make parsed_scoped_addresses return addresses in the same order as all other methods (#1150) (`9b6adcf`) * Small cleanups to cache cleanup interval (#1146) (`b434b60`) * Add ip_addresses_by_version to ServiceInfo (#1145) * Speed up processing records in the ServiceBrowser (#1143) * Speed up matching types in the ServiceBrowser (#1144) * Include tests and docs in sdist archives (#1142) (`da10a3b`) * Improve performance of constructing ServiceInfo (#1141) * Small speed up to handler dispatch (#1140) (`5bd1b6e`) * Speed up processing incoming records (#1139) (`7246a34`) * Reduce overhead to send responses (#1135) (`c4077dd`) * Correct duplicate record entries in windows wheels by updating poetry-core (#1134) (`a43055d`) * Hold a strong reference to the query sender start task (#1128) (`808c3b2`) * Missing c extensions with newer poetry (#1129) (`44d7fc6`) * The equality checks for DNSPointer and DNSService should be case insensitive (#1122) (`48ae77f`) * Optimize equality checks for DNS records (#1120) (`3a25ff7`) * Optimize the dns cache (#1119) (`e80fcef`) * Optimize construction of outgoing packets (#1118) (`81e186d`) * Optimize dns objects by adding pxd files (#1113) (`919d4d8`) * Optimize incoming parser by reducing call stack (#1116) OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-zeroconf?expand=0&rev=70
2023-05-03 10:29:33 +00:00
BuildRequires: %{python_module pip}
BuildRequires: %{python_module poetry-core}
BuildRequires: %{python_module pytest-asyncio}
- update to 0.56.0: * Reduce denial of service protection overhead (#1157) * Improve performance of processing incoming records (#1155) * Avoid waking async_request when record updates are not relevant (#1153) (`a3f970c`) * Addresses incorrect after server name change (#1154) * Improve ServiceBrowser performance by removing OrderedDict * Make parsed_scoped_addresses return addresses in the same order as all other methods (#1150) (`9b6adcf`) * Small cleanups to cache cleanup interval (#1146) (`b434b60`) * Add ip_addresses_by_version to ServiceInfo (#1145) * Speed up processing records in the ServiceBrowser (#1143) * Speed up matching types in the ServiceBrowser (#1144) * Include tests and docs in sdist archives (#1142) (`da10a3b`) * Improve performance of constructing ServiceInfo (#1141) * Small speed up to handler dispatch (#1140) (`5bd1b6e`) * Speed up processing incoming records (#1139) (`7246a34`) * Reduce overhead to send responses (#1135) (`c4077dd`) * Correct duplicate record entries in windows wheels by updating poetry-core (#1134) (`a43055d`) * Hold a strong reference to the query sender start task (#1128) (`808c3b2`) * Missing c extensions with newer poetry (#1129) (`44d7fc6`) * The equality checks for DNSPointer and DNSService should be case insensitive (#1122) (`48ae77f`) * Optimize equality checks for DNS records (#1120) (`3a25ff7`) * Optimize the dns cache (#1119) (`e80fcef`) * Optimize construction of outgoing packets (#1118) (`81e186d`) * Optimize dns objects by adding pxd files (#1113) (`919d4d8`) * Optimize incoming parser by reducing call stack (#1116) OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-zeroconf?expand=0&rev=70
2023-05-03 10:29:33 +00:00
BuildRequires: %{python_module pytest-cov}
BuildRequires: %{python_module pytest}
- update to 0.56.0: * Reduce denial of service protection overhead (#1157) * Improve performance of processing incoming records (#1155) * Avoid waking async_request when record updates are not relevant (#1153) (`a3f970c`) * Addresses incorrect after server name change (#1154) * Improve ServiceBrowser performance by removing OrderedDict * Make parsed_scoped_addresses return addresses in the same order as all other methods (#1150) (`9b6adcf`) * Small cleanups to cache cleanup interval (#1146) (`b434b60`) * Add ip_addresses_by_version to ServiceInfo (#1145) * Speed up processing records in the ServiceBrowser (#1143) * Speed up matching types in the ServiceBrowser (#1144) * Include tests and docs in sdist archives (#1142) (`da10a3b`) * Improve performance of constructing ServiceInfo (#1141) * Small speed up to handler dispatch (#1140) (`5bd1b6e`) * Speed up processing incoming records (#1139) (`7246a34`) * Reduce overhead to send responses (#1135) (`c4077dd`) * Correct duplicate record entries in windows wheels by updating poetry-core (#1134) (`a43055d`) * Hold a strong reference to the query sender start task (#1128) (`808c3b2`) * Missing c extensions with newer poetry (#1129) (`44d7fc6`) * The equality checks for DNSPointer and DNSService should be case insensitive (#1122) (`48ae77f`) * Optimize equality checks for DNS records (#1120) (`3a25ff7`) * Optimize the dns cache (#1119) (`e80fcef`) * Optimize construction of outgoing packets (#1118) (`81e186d`) * Optimize dns objects by adding pxd files (#1113) (`919d4d8`) * Optimize incoming parser by reducing call stack (#1116) OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-zeroconf?expand=0&rev=70
2023-05-03 10:29:33 +00:00
BuildRequires: %{python_module wheel}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-async_timeout >= 4.0.1
Requires: python-ifaddr >= 0.1.7
%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
- update to 0.56.0: * Reduce denial of service protection overhead (#1157) * Improve performance of processing incoming records (#1155) * Avoid waking async_request when record updates are not relevant (#1153) (`a3f970c`) * Addresses incorrect after server name change (#1154) * Improve ServiceBrowser performance by removing OrderedDict * Make parsed_scoped_addresses return addresses in the same order as all other methods (#1150) (`9b6adcf`) * Small cleanups to cache cleanup interval (#1146) (`b434b60`) * Add ip_addresses_by_version to ServiceInfo (#1145) * Speed up processing records in the ServiceBrowser (#1143) * Speed up matching types in the ServiceBrowser (#1144) * Include tests and docs in sdist archives (#1142) (`da10a3b`) * Improve performance of constructing ServiceInfo (#1141) * Small speed up to handler dispatch (#1140) (`5bd1b6e`) * Speed up processing incoming records (#1139) (`7246a34`) * Reduce overhead to send responses (#1135) (`c4077dd`) * Correct duplicate record entries in windows wheels by updating poetry-core (#1134) (`a43055d`) * Hold a strong reference to the query sender start task (#1128) (`808c3b2`) * Missing c extensions with newer poetry (#1129) (`44d7fc6`) * The equality checks for DNSPointer and DNSService should be case insensitive (#1122) (`48ae77f`) * Optimize equality checks for DNS records (#1120) (`3a25ff7`) * Optimize the dns cache (#1119) (`e80fcef`) * Optimize construction of outgoing packets (#1118) (`81e186d`) * Optimize dns objects by adding pxd files (#1113) (`919d4d8`) * Optimize incoming parser by reducing call stack (#1116) OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-zeroconf?expand=0&rev=70
2023-05-03 10:29:33 +00:00
%pyproject_wheel
%install
- update to 0.56.0: * Reduce denial of service protection overhead (#1157) * Improve performance of processing incoming records (#1155) * Avoid waking async_request when record updates are not relevant (#1153) (`a3f970c`) * Addresses incorrect after server name change (#1154) * Improve ServiceBrowser performance by removing OrderedDict * Make parsed_scoped_addresses return addresses in the same order as all other methods (#1150) (`9b6adcf`) * Small cleanups to cache cleanup interval (#1146) (`b434b60`) * Add ip_addresses_by_version to ServiceInfo (#1145) * Speed up processing records in the ServiceBrowser (#1143) * Speed up matching types in the ServiceBrowser (#1144) * Include tests and docs in sdist archives (#1142) (`da10a3b`) * Improve performance of constructing ServiceInfo (#1141) * Small speed up to handler dispatch (#1140) (`5bd1b6e`) * Speed up processing incoming records (#1139) (`7246a34`) * Reduce overhead to send responses (#1135) (`c4077dd`) * Correct duplicate record entries in windows wheels by updating poetry-core (#1134) (`a43055d`) * Hold a strong reference to the query sender start task (#1128) (`808c3b2`) * Missing c extensions with newer poetry (#1129) (`44d7fc6`) * The equality checks for DNSPointer and DNSService should be case insensitive (#1122) (`48ae77f`) * Optimize equality checks for DNS records (#1120) (`3a25ff7`) * Optimize the dns cache (#1119) (`e80fcef`) * Optimize construction of outgoing packets (#1118) (`81e186d`) * Optimize dns objects by adding pxd files (#1113) (`919d4d8`) * Optimize incoming parser by reducing call stack (#1116) OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-zeroconf?expand=0&rev=70
2023-05-03 10:29:33 +00:00
%pyproject_install
%python_expand rm -f %{buildroot}%{$python_sitearch}/zeroconf/test.py
%python_expand %fdupes %{buildroot}%{$python_sitearch}
%check
# Skip tests:
# - test_integration_with_listener_ipv6: Requires network access
# - test_launch*: Require network access
# - test_close_multiple_times: Requires network access
%pytest tests -k 'not (test_integration_with_listener_ipv6 or test_launch or test_close_multiple_times)'
%files %{python_files}
%doc README.rst
%license COPYING
- update to 0.56.0: * Reduce denial of service protection overhead (#1157) * Improve performance of processing incoming records (#1155) * Avoid waking async_request when record updates are not relevant (#1153) (`a3f970c`) * Addresses incorrect after server name change (#1154) * Improve ServiceBrowser performance by removing OrderedDict * Make parsed_scoped_addresses return addresses in the same order as all other methods (#1150) (`9b6adcf`) * Small cleanups to cache cleanup interval (#1146) (`b434b60`) * Add ip_addresses_by_version to ServiceInfo (#1145) * Speed up processing records in the ServiceBrowser (#1143) * Speed up matching types in the ServiceBrowser (#1144) * Include tests and docs in sdist archives (#1142) (`da10a3b`) * Improve performance of constructing ServiceInfo (#1141) * Small speed up to handler dispatch (#1140) (`5bd1b6e`) * Speed up processing incoming records (#1139) (`7246a34`) * Reduce overhead to send responses (#1135) (`c4077dd`) * Correct duplicate record entries in windows wheels by updating poetry-core (#1134) (`a43055d`) * Hold a strong reference to the query sender start task (#1128) (`808c3b2`) * Missing c extensions with newer poetry (#1129) (`44d7fc6`) * The equality checks for DNSPointer and DNSService should be case insensitive (#1122) (`48ae77f`) * Optimize equality checks for DNS records (#1120) (`3a25ff7`) * Optimize the dns cache (#1119) (`e80fcef`) * Optimize construction of outgoing packets (#1118) (`81e186d`) * Optimize dns objects by adding pxd files (#1113) (`919d4d8`) * Optimize incoming parser by reducing call stack (#1116) OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-zeroconf?expand=0&rev=70
2023-05-03 10:29:33 +00:00
%{python_sitearch}/zeroconf
%{python_sitearch}/zeroconf-%{version}.dist-info
%changelog