Compare commits
10 Commits
32ca21c521
...
8496512875
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8496512875 | ||
|
|
52256e8204 | ||
|
|
54b2e78afe | ||
|
|
d793661e9f | ||
|
|
607c103588 | ||
|
|
7a7d2cdad7 | ||
|
|
7e09cc1819 | ||
|
|
859e950e48 | ||
|
|
2ba5fee234 | ||
|
|
7832de0ae6 |
@ -1,11 +1,11 @@
|
|||||||
%global _empty_manifest_terminate_build 0
|
%global _empty_manifest_terminate_build 0
|
||||||
Name: python-zeroconf
|
Name: python-zeroconf
|
||||||
Version: 0.47.1
|
Version: 0.131.0
|
||||||
Release: 1
|
Release: 1
|
||||||
Summary: Pure Python Multicast DNS Service Discovery Library (Bonjour/Avahi compatible)
|
Summary: Pure Python Multicast DNS Service Discovery Library (Bonjour/Avahi compatible)
|
||||||
License: LGPL-2.1-only
|
License: LGPL-2.1-only
|
||||||
URL: https://github.com/jstasiak/python-zeroconf
|
URL: https://github.com/jstasiak/python-zeroconf
|
||||||
Source0: https://files.pythonhosted.org/packages/6f/a3/3ad6b606a44a1c8e11a2d064b55d16fe99e9a6b25af346e1e5c23e11cf9f/zeroconf-0.47.1.tar.gz
|
Source0: https://files.pythonhosted.org/packages/b4/b0/a4f6ceb219d3cfed5f1f8dcdbf026f9224b1da0d4da9e57af01d814fec17/zeroconf-0.131.0.tar.gz
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
|
|
||||||
Requires: python3-async-timeout
|
Requires: python3-async-timeout
|
||||||
@ -16,13 +16,15 @@ Pure Python Multicast DNS Service Discovery Library (Bonjour/Avahi compatible)
|
|||||||
|
|
||||||
%package -n python3-zeroconf
|
%package -n python3-zeroconf
|
||||||
Summary: Pure Python Multicast DNS Service Discovery Library (Bonjour/Avahi compatible)
|
Summary: Pure Python Multicast DNS Service Discovery Library (Bonjour/Avahi compatible)
|
||||||
Provides: python-zeroconf
|
Provides: python-zeroconf = %{version}-%{release}
|
||||||
BuildRequires: python3-devel
|
BuildRequires: python3-devel
|
||||||
BuildRequires: python3-setuptools
|
BuildRequires: python3-setuptools
|
||||||
BuildRequires: python3-pip
|
BuildRequires: python3-pip
|
||||||
BuildRequires: python3-wheel
|
BuildRequires: python3-wheel
|
||||||
BuildRequires: python3-ifaddr
|
BuildRequires: python3-ifaddr
|
||||||
BuildRequires: python3-async-timeout
|
BuildRequires: python3-async-timeout
|
||||||
|
BuildRequires: python3-pytest
|
||||||
|
BuildRequires: python3-pytest-cov
|
||||||
%description -n python3-zeroconf
|
%description -n python3-zeroconf
|
||||||
Pure Python Multicast DNS Service Discovery Library (Bonjour/Avahi compatible)
|
Pure Python Multicast DNS Service Discovery Library (Bonjour/Avahi compatible)
|
||||||
|
|
||||||
@ -33,7 +35,7 @@ Provides: python3-zeroconf-doc
|
|||||||
Pure Python Multicast DNS Service Discovery Library (Bonjour/Avahi compatible)
|
Pure Python Multicast DNS Service Discovery Library (Bonjour/Avahi compatible)
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%autosetup -n zeroconf-%{version}
|
%autosetup -n zeroconf-%{version} -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%py3_build
|
%py3_build
|
||||||
@ -67,7 +69,8 @@ mv %{buildroot}/filelist.lst .
|
|||||||
mv %{buildroot}/doclist.lst .
|
mv %{buildroot}/doclist.lst .
|
||||||
|
|
||||||
%check
|
%check
|
||||||
%{__python3} setup.py test
|
export PYTHONPATH=%{buildroot}%{python3_sitelib}
|
||||||
|
pytest -v -k 'not test_integration_with_listener_ipv6'
|
||||||
|
|
||||||
%files -n python3-zeroconf -f filelist.lst
|
%files -n python3-zeroconf -f filelist.lst
|
||||||
%dir %{python3_sitelib}/*
|
%dir %{python3_sitelib}/*
|
||||||
@ -76,6 +79,21 @@ mv %{buildroot}/doclist.lst .
|
|||||||
%{_docdir}/*
|
%{_docdir}/*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Dec 25 2023 jiangxinyu <jiangxinyu@kylinos.cn> - 0.131.0-1
|
||||||
|
- Update package to version 0.131.0
|
||||||
|
|
||||||
|
* Mon Jul 10 2023 chenzixuan <chenzixuan@kylinos.cn> - 0.71.0-1
|
||||||
|
- Update package to version 0.71.0
|
||||||
|
|
||||||
|
* Fri Jul 07 2023 yaoxin <yao_xin001@hoperun.com> - 0.64.1-2
|
||||||
|
- Modify the testing method to fix build errors
|
||||||
|
|
||||||
|
* Tue Jun 06 2023 jiangxinyu <jiangxinyu@kylinos.cn> - 0.64.1-1
|
||||||
|
- Update package to version 0.64.1
|
||||||
|
|
||||||
|
* Mon Feb 27 2023 wubijie <wubijie@kylinos.cn> - 0.47.3-1
|
||||||
|
- Update package to version 0.47.3
|
||||||
|
|
||||||
* Wed Feb 8 2023 wubijie <wubijie@kylinos.cn> - 0.47.1-1
|
* Wed Feb 8 2023 wubijie <wubijie@kylinos.cn> - 0.47.1-1
|
||||||
- Update package to version 0.47.1
|
- Update package to version 0.47.1
|
||||||
|
|
||||||
@ -93,3 +111,4 @@ mv %{buildroot}/doclist.lst .
|
|||||||
|
|
||||||
* Wed Nov 25 2020 Python_Bot <Python_Bot@openeuler.org>
|
* Wed Nov 25 2020 Python_Bot <Python_Bot@openeuler.org>
|
||||||
- Package Spec generated
|
- Package Spec generated
|
||||||
|
|
||||||
|
|||||||
BIN
zeroconf-0.131.0.tar.gz
Normal file
BIN
zeroconf-0.131.0.tar.gz
Normal file
Binary file not shown.
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user