diff options
| author | CoprDistGit <infra@openeuler.org> | 2023-05-05 06:00:29 +0000 |
|---|---|---|
| committer | CoprDistGit <infra@openeuler.org> | 2023-05-05 06:00:29 +0000 |
| commit | 4f908c62c1ffa9392e281aacf6fa213c9352247d (patch) | |
| tree | d32f44e981a416cf0c27d5578395599e1d85824d | |
| parent | 39637b9a58a06bdefefe07583b3c345b0314e005 (diff) | |
automatic import of python-cpppoopeneuler20.03
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | python-cpppo.spec | 120 | ||||
| -rw-r--r-- | sources | 1 |
3 files changed, 122 insertions, 0 deletions
@@ -0,0 +1 @@ +/cpppo-4.4.2.tar.gz diff --git a/python-cpppo.spec b/python-cpppo.spec new file mode 100644 index 0000000..02f9915 --- /dev/null +++ b/python-cpppo.spec @@ -0,0 +1,120 @@ +%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 <Python_Bot@openeuler.org> - 4.4.2-1 +- Package Spec generated @@ -0,0 +1 @@ +5439f7e8dbad21da45cd5198901f73c5 cpppo-4.4.2.tar.gz |
