diff options
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | python-zeroconf.spec | 142 | ||||
-rw-r--r-- | sources | 1 |
3 files changed, 144 insertions, 0 deletions
@@ -0,0 +1 @@ +/zeroconf-0.47.3.tar.gz 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 @@ -0,0 +1 @@ +095b8facfc341bf1515cf9de4aa18f17 zeroconf-0.47.3.tar.gz |