On Mon, Nov 11, 2019 at 02:38:12PM +0000, Daniel P. Berrangé wrote:
As part of an goal to eliminate Perl from libvirt build tools,
rewrite the gensystemtap.pl tool in Python.
This was a straight conversion, manually going line-by-line to
change the syntax from Perl to Python. Thus the overall structure
of the file and approach is the same.
Signed-off-by: Daniel P. Berrangé <berrange(a)redhat.com>
---
Makefile.am | 1 +
build-aux/syntax-check.mk | 4 +-
scripts/gensystemtap.py | 184 ++++++++++++++++++++++++++++++++++++
src/Makefile.am | 5 +-
src/rpc/Makefile.inc.am | 1 -
src/rpc/gensystemtap.pl | 193 --------------------------------------
6 files changed, 189 insertions(+), 199 deletions(-)
create mode 100755 scripts/gensystemtap.py
delete mode 100755 src/rpc/gensystemtap.pl
Reviewed-by: Ján Tomko <jtomko(a)redhat.com>
Jano