14
0

- Update to 0.21.3:

* no upstream changelog
  * dropped python2 support
- Execute tests
- Update requirements based on upstream requires

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-zeroconf?expand=0&rev=19
This commit is contained in:
Tomáš Chvátal
2019-03-11 11:59:24 +00:00
committed by Git OBS Bridge
parent 3f2636bdf3
commit c3eb83dd03
4 changed files with 30 additions and 17 deletions

View File

@@ -1,7 +1,7 @@
#
# spec file for package python-zeroconf
#
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -12,27 +12,27 @@
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
# 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.19.1
Version: 0.21.3
Release: 0
Summary: Pure Python Multicast DNS Service Discovery Library (Bonjour/Avahi compatible)
License: LGPL-2.0
License: LGPL-2.0-only
Group: Development/Languages/Python
Url: https://github.com/jstasiak/python-zeroconf
Source: https://pypi.io/packages/source/z/zeroconf/zeroconf-%{version}.tar.gz
URL: https://github.com/jstasiak/python-zeroconf
Source: https://github.com/jstasiak/python-zeroconf/archive/%{version}.tar.gz
BuildRequires: %{python_module ifaddr}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires: python-enum-compat
Requires: python-netifaces
Requires: python-six
BuildRoot: %{_tmppath}/%{name}-%{version}-build
Requires: python-ifaddr
BuildArch: noarch
%python_subpackages
%description
@@ -43,17 +43,21 @@ 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
%setup -q -n zeroconf-%{version}
%setup -q -n python-zeroconf-%{version}
%build
%python_build
%install
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%files %python_files
%defattr(-,root,root,-)
%check
%pytest
%files %{python_files}
%doc README.rst
%license COPYING
%{python_sitelib}/*
%changelog