
On 11/11/19 9:38 AM, Daniel P. Berrangé wrote:
As part of an goal to eliminate Perl from libvirt build tools, rewrite the pdwtags processing script in Python.
The original inline shell and perl code was completely unintelligible. The new python code is a manual conversion that attempts todo basically the same thing.
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com> --- Makefile.am | 1 + build-aux/syntax-check.mk | 3 +- scripts/check-remote-protocol.py | 136 +++++++++++++++++++++++++++++++ src/Makefile.am | 98 ++++------------------ 4 files changed, 155 insertions(+), 83 deletions(-) create mode 100644 scripts/check-remote-protocol.py
I verified the script detected a difference in src/qemu_protocol-structs Tested-by: Cole Robinson <crobinso@redhat.com> - Cole