summaryrefslogtreecommitdiff
path: root/python-zeroconf.spec
diff options
context:
space:
mode:
authorCoprDistGit <infra@openeuler.org>2023-03-09 18:21:07 +0000
committerCoprDistGit <infra@openeuler.org>2023-03-09 18:21:07 +0000
commit5e7749c5ded796a2c32001c259d08b3af8ce9053 (patch)
treec163abcb5b52c5b6cc573da4b56854ee2d4e811f /python-zeroconf.spec
parent0fe64a26bd9f82dfea6e1a9933028bb5dc390905 (diff)
automatic import of python-zeroconf
Diffstat (limited to 'python-zeroconf.spec')
-rw-r--r--python-zeroconf.spec142
1 files changed, 142 insertions, 0 deletions
diff --git a/python-zeroconf.spec b/python-zeroconf.spec
new file mode 100644
index 0000000..f2c26c0
--- /dev/null
+++ b/python-zeroconf.spec
@@ -0,0 +1,142 @@
+%global _empty_manifest_terminate_build 0
+Name: python-zeroconf
+Version: 0.47.3
+Release: 1
+Summary: A pure python implementation of multicast DNS service discovery
+License: LGPL
+URL: https://github.com/python-zeroconf/python-zeroconf
+Source0: https://mirrors.nju.edu.cn/pypi/web/packages/da/9c/7bfd88a90cc6dfc592fb19ebaa938fef86b7d2b1b519ed5681592076fee9/zeroconf-0.47.3.tar.gz
+
+Requires: python3-async-timeout
+Requires: python3-ifaddr
+
+%description
+`Documentation <https://python-zeroconf.readthedocs.io/en/latest/>`_.
+This is fork of pyzeroconf, Multicast DNS Service Discovery for Python,
+originally by Paul Scott-Murphy (https://github.com/paulsm/pyzeroconf),
+modified by William McBrine (https://github.com/wmcbrine/pyzeroconf).
+The original William McBrine's fork note::
+ This fork is used in all of my TiVo-related projects: HME for Python
+ (and therefore HME/VLC), Network Remote, Remote Proxy, and pyTivo.
+ Before this, I was tracking the changes for zeroconf.py in three
+ separate repos. I figured I should have an authoritative source.
+ Although I make changes based on my experience with TiVos, I expect that
+ they're generally applicable. This version also includes patches found
+ on the now-defunct (?) Launchpad repo of pyzeroconf, and elsewhere
+ around the net -- not always well-documented, sorry.
+Compatible with:
+* Bonjour
+* Avahi
+Compared to some other Zeroconf/Bonjour/Avahi Python packages, python-zeroconf:
+* isn't tied to Bonjour or Avahi
+* doesn't use D-Bus
+* doesn't force you to use particular event loop or Twisted (asyncio is used under the hood but not required)
+* is pip-installable
+* has PyPI distribution
+* has an optional cython extension for performance (pure python is supported as well)
+
+%package -n python3-zeroconf
+Summary: A pure python implementation of multicast DNS service discovery
+Provides: python-zeroconf
+BuildRequires: python3-devel
+BuildRequires: python3-setuptools
+BuildRequires: python3-pip
+BuildRequires: python3-cffi
+BuildRequires: gcc
+BuildRequires: gdb
+%description -n python3-zeroconf
+`Documentation <https://python-zeroconf.readthedocs.io/en/latest/>`_.
+This is fork of pyzeroconf, Multicast DNS Service Discovery for Python,
+originally by Paul Scott-Murphy (https://github.com/paulsm/pyzeroconf),
+modified by William McBrine (https://github.com/wmcbrine/pyzeroconf).
+The original William McBrine's fork note::
+ This fork is used in all of my TiVo-related projects: HME for Python
+ (and therefore HME/VLC), Network Remote, Remote Proxy, and pyTivo.
+ Before this, I was tracking the changes for zeroconf.py in three
+ separate repos. I figured I should have an authoritative source.
+ Although I make changes based on my experience with TiVos, I expect that
+ they're generally applicable. This version also includes patches found
+ on the now-defunct (?) Launchpad repo of pyzeroconf, and elsewhere
+ around the net -- not always well-documented, sorry.
+Compatible with:
+* Bonjour
+* Avahi
+Compared to some other Zeroconf/Bonjour/Avahi Python packages, python-zeroconf:
+* isn't tied to Bonjour or Avahi
+* doesn't use D-Bus
+* doesn't force you to use particular event loop or Twisted (asyncio is used under the hood but not required)
+* is pip-installable
+* has PyPI distribution
+* has an optional cython extension for performance (pure python is supported as well)
+
+%package help
+Summary: Development documents and examples for zeroconf
+Provides: python3-zeroconf-doc
+%description help
+`Documentation <https://python-zeroconf.readthedocs.io/en/latest/>`_.
+This is fork of pyzeroconf, Multicast DNS Service Discovery for Python,
+originally by Paul Scott-Murphy (https://github.com/paulsm/pyzeroconf),
+modified by William McBrine (https://github.com/wmcbrine/pyzeroconf).
+The original William McBrine's fork note::
+ This fork is used in all of my TiVo-related projects: HME for Python
+ (and therefore HME/VLC), Network Remote, Remote Proxy, and pyTivo.
+ Before this, I was tracking the changes for zeroconf.py in three
+ separate repos. I figured I should have an authoritative source.
+ Although I make changes based on my experience with TiVos, I expect that
+ they're generally applicable. This version also includes patches found
+ on the now-defunct (?) Launchpad repo of pyzeroconf, and elsewhere
+ around the net -- not always well-documented, sorry.
+Compatible with:
+* Bonjour
+* Avahi
+Compared to some other Zeroconf/Bonjour/Avahi Python packages, python-zeroconf:
+* isn't tied to Bonjour or Avahi
+* doesn't use D-Bus
+* doesn't force you to use particular event loop or Twisted (asyncio is used under the hood but not required)
+* is pip-installable
+* has PyPI distribution
+* has an optional cython extension for performance (pure python is supported as well)
+
+%prep
+%autosetup -n zeroconf-0.47.3
+
+%build
+%py3_build
+
+%install
+%py3_install
+install -d -m755 %{buildroot}/%{_pkgdocdir}
+if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi
+if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi
+if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi
+if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi
+pushd %{buildroot}
+if [ -d usr/lib ]; then
+ find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+if [ -d usr/lib64 ]; then
+ find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+if [ -d usr/bin ]; then
+ find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+if [ -d usr/sbin ]; then
+ find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst
+fi
+touch doclist.lst
+if [ -d usr/share/man ]; then
+ find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst
+fi
+popd
+mv %{buildroot}/filelist.lst .
+mv %{buildroot}/doclist.lst .
+
+%files -n python3-zeroconf -f filelist.lst
+%dir %{python3_sitearch}/*
+
+%files help -f doclist.lst
+%{_docdir}/*
+
+%changelog
+* Thu Mar 09 2023 Python_Bot <Python_Bot@openeuler.org> - 0.47.3-1
+- Package Spec generated