diff options
author | Dennis Lamm <expeditioneer@gentoo.org> | 2018-01-13 09:32:28 +0100 |
---|---|---|
committer | Dennis Lamm <expeditioneer@gentoo.org> | 2018-01-13 09:33:03 +0100 |
commit | faacf4dd4e97771b65a8b4d896bec282a35802ff (patch) | |
tree | f6a6a6d70737fabc984f7ef63fa265cd6cd33c72 /dev-libs/glib/files | |
parent | dev-ruby/activesupport: amd64 stable (diff) | |
download | gentoo-faacf4dd4e97771b65a8b4d896bec282a35802ff.tar.gz gentoo-faacf4dd4e97771b65a8b4d896bec282a35802ff.tar.bz2 gentoo-faacf4dd4e97771b65a8b4d896bec282a35802ff.zip |
dev-libs/glib: reverted deletion by mistake
Package-Manager: Portage-2.3.13, Repoman-2.3.3
RepoMan-Options: --force
Diffstat (limited to 'dev-libs/glib/files')
-rwxr-xr-x | dev-libs/glib/files/gengiotypefuncs.py | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/dev-libs/glib/files/gengiotypefuncs.py b/dev-libs/glib/files/gengiotypefuncs.py new file mode 100755 index 000000000000..9732d7892d95 --- /dev/null +++ b/dev-libs/glib/files/gengiotypefuncs.py @@ -0,0 +1,45 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- + +import sys +import re +import os + +debug = os.getenv('GIO_GENTYPEFUNCS_DEBUG') is not None + +out_file = sys.argv[1] +in_files = sys.argv[2:] + +funcs = [] + + +if debug: print ('Output file: ', out_file) + +if debug: print (len(in_files), 'input files') + +for filename in in_files: + if debug: print ('Input file: ', filename) + with open(filename, "r") as f: + for line in f: + line = line.rstrip('\n').rstrip('\r') + # print line + match = re.search(r'\bg_[a-zA-Z0-9_]*_get_type\b', line) + if match: + func = match.group(0) + if not func in funcs: + funcs.append(func) + if debug: print ('Found ', func) + +file_output = 'G_GNUC_BEGIN_IGNORE_DEPRECATIONS\n' + +funcs = sorted(funcs) + +for f in funcs: + if f not in ['g_io_extension_get_type', 'g_settings_backend_get_type']: + file_output += '*tp++ = {0} ();\n'.format(f) + +if debug: print (len(funcs), 'functions') + +ofile = open(out_file, "w") +ofile.write(file_output) +ofile.close() |