%global _empty_manifest_terminate_build 0 Name: python-cpppo Version: 4.4.2 Release: 1 Summary: Cpppo is a Communication Protocol Python Parser and Originator License: Dual License; GPLv3 and Proprietary URL: https://github.com/pjkundert/cpppo Source0: https://mirrors.nju.edu.cn/pypi/web/packages/4d/38/a3a0d1a4303da74f3fe5edddba54698898506ea33b4b478b24c0d05332c2/cpppo-4.4.2.tar.gz BuildArch: noarch %description Cpppo is used to create event-driven state machines which consume a stream of input and generate a series of state changes, or an indication that no progress is possible due to (for example) exhaustion of input symbols. This is useful for creating parsers for complex grammars describing languages, including binary computer protocols. An example included with cpppo is an implementation of a subset of the EtherNet/IP CIP language used by some industrial control equipment, such as Rockwell's ControlLogix Controllers. The cpppo.server.enip package can be used to create Python programs which can parse requests in this protocol (eg. as a server, to implement something like a simulated Controller) or originate requests in this protocol (eg. as a client, sending commands to a Controller). In addition, the ability to read, write and poll remote PLCs of various types including Modbus/TCP is provided. %package -n python3-cpppo Summary: Cpppo is a Communication Protocol Python Parser and Originator Provides: python-cpppo BuildRequires: python3-devel BuildRequires: python3-setuptools BuildRequires: python3-pip %description -n python3-cpppo Cpppo is used to create event-driven state machines which consume a stream of input and generate a series of state changes, or an indication that no progress is possible due to (for example) exhaustion of input symbols. This is useful for creating parsers for complex grammars describing languages, including binary computer protocols. An example included with cpppo is an implementation of a subset of the EtherNet/IP CIP language used by some industrial control equipment, such as Rockwell's ControlLogix Controllers. The cpppo.server.enip package can be used to create Python programs which can parse requests in this protocol (eg. as a server, to implement something like a simulated Controller) or originate requests in this protocol (eg. as a client, sending commands to a Controller). In addition, the ability to read, write and poll remote PLCs of various types including Modbus/TCP is provided. %package help Summary: Development documents and examples for cpppo Provides: python3-cpppo-doc %description help Cpppo is used to create event-driven state machines which consume a stream of input and generate a series of state changes, or an indication that no progress is possible due to (for example) exhaustion of input symbols. This is useful for creating parsers for complex grammars describing languages, including binary computer protocols. An example included with cpppo is an implementation of a subset of the EtherNet/IP CIP language used by some industrial control equipment, such as Rockwell's ControlLogix Controllers. The cpppo.server.enip package can be used to create Python programs which can parse requests in this protocol (eg. as a server, to implement something like a simulated Controller) or originate requests in this protocol (eg. as a client, sending commands to a Controller). In addition, the ability to read, write and poll remote PLCs of various types including Modbus/TCP is provided. %prep %autosetup -n cpppo-4.4.2 %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-cpppo -f filelist.lst %dir %{python3_sitelib}/* %files help -f doclist.lst %{_docdir}/* %changelog * Fri May 05 2023 Python_Bot - 4.4.2-1 - Package Spec generated