diff options
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | python-umodbus.spec | 88 | ||||
| -rw-r--r-- | sources | 1 |
3 files changed, 90 insertions, 0 deletions
@@ -0,0 +1 @@ +/uModbus-1.0.4.tar.gz diff --git a/python-umodbus.spec b/python-umodbus.spec new file mode 100644 index 0000000..88be766 --- /dev/null +++ b/python-umodbus.spec @@ -0,0 +1,88 @@ +%global _empty_manifest_terminate_build 0 +Name: python-uModbus +Version: 1.0.4 +Release: 1 +Summary: Implementation of the Modbus protocol in pure Python. +License: MPL +URL: https://github.com/AdvancedClimateSystems/umodbus/ +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/c1/13/5eb635dd6ab67fedcfe5147209135a737d33c1220fdf4ad735a224a8a684/uModbus-1.0.4.tar.gz +BuildArch: noarch + +Requires: python3-pyserial + +%description +uModbus or (μModbus) is a pure Python implementation of the Modbus protocol as +described in the `MODBUS Application Protocol Specification V1.1b3`_. uModbus +implements both a Modbus client (both TCP and RTU) and a Modbus server (both +TCP and RTU). The "u" or "μ" in the name comes from the the SI prefix "micro-". +uModbus is very small and lightweight. The source can be found on GitHub_. +Documentation is available at `Read the Docs`_. + +%package -n python3-uModbus +Summary: Implementation of the Modbus protocol in pure Python. +Provides: python-uModbus +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-uModbus +uModbus or (μModbus) is a pure Python implementation of the Modbus protocol as +described in the `MODBUS Application Protocol Specification V1.1b3`_. uModbus +implements both a Modbus client (both TCP and RTU) and a Modbus server (both +TCP and RTU). The "u" or "μ" in the name comes from the the SI prefix "micro-". +uModbus is very small and lightweight. The source can be found on GitHub_. +Documentation is available at `Read the Docs`_. + +%package help +Summary: Development documents and examples for uModbus +Provides: python3-uModbus-doc +%description help +uModbus or (μModbus) is a pure Python implementation of the Modbus protocol as +described in the `MODBUS Application Protocol Specification V1.1b3`_. uModbus +implements both a Modbus client (both TCP and RTU) and a Modbus server (both +TCP and RTU). The "u" or "μ" in the name comes from the the SI prefix "micro-". +uModbus is very small and lightweight. The source can be found on GitHub_. +Documentation is available at `Read the Docs`_. + +%prep +%autosetup -n uModbus-1.0.4 + +%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-uModbus -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Fri May 05 2023 Python_Bot <Python_Bot@openeuler.org> - 1.0.4-1 +- Package Spec generated @@ -0,0 +1 @@ +96d1742479fcbfb12e51eb0161b2ae95 uModbus-1.0.4.tar.gz |
