diff options
| -rw-r--r-- | lang/python/Makefile.am | 2 | ||||
| -rwxr-xr-x | lang/python/gpgme-h-clean.py | 9 | 
2 files changed, 8 insertions, 3 deletions
| diff --git a/lang/python/Makefile.am b/lang/python/Makefile.am index 18f77bb7..a9b39e72 100644 --- a/lang/python/Makefile.am +++ b/lang/python/Makefile.am @@ -20,7 +20,7 @@ EXTRA_DIST = README.rst  SUBDIRS = tests  # Cleanup gpgme.h from deprecated functions and typedefs. -gpgme.h: ../../src/gpgme.h +gpgme.h: ../../src/gpgme.h $(srcdir)/gpgme-h-clean.py  	$(PYTHON) $(srcdir)/gpgme-h-clean.py $< >$@  # For VPATH builds we need to copy some files because Python's diff --git a/lang/python/gpgme-h-clean.py b/lang/python/gpgme-h-clean.py index 261e7b64..b7052ff6 100755 --- a/lang/python/gpgme-h-clean.py +++ b/lang/python/gpgme-h-clean.py @@ -1,4 +1,6 @@  #!/usr/bin/env python3 + +# Copyright (C) 2016 g10 Code GmbH  # Copyright (C) 2004,2008 Igor Belyi <[email protected]>  #  #    This library is free software; you can redistribute it and/or @@ -21,8 +23,11 @@ if len(sys.argv) < 2:      sys.stderr.write("Usage: %s gpgme.h\n" % sys.argv[0])      sys.exit(1) -deprec_func=re.compile('^(.*typedef.*|.*\(.*\))\s*_GPGME_DEPRECATED;\s*',re.S) -line_break=re.compile(';|\\$|\\x0c|^\s*#'); +deprec_func = re.compile(r'^(.*typedef.*|.*\(.*\)|[^#]+\s+.+)' +                         + r'\s*_GPGME_DEPRECATED(_OUTSIDE_GPGME)?;\s*', +                         re.S) +line_break = re.compile(';|\\$|\\x0c|^\s*#|{'); +  try:      gpgme = open(sys.argv[1])      tmp = gpgme.readline() | 
