diff options
author | Mart Raudsepp <leio@gentoo.org> | 2018-01-14 01:11:14 +0200 |
---|---|---|
committer | Mart Raudsepp <leio@gentoo.org> | 2018-01-14 01:12:20 +0200 |
commit | 48222c9cdd4b8f02edd1333cc6de1d239e06c74e (patch) | |
tree | b525427b4fb08e925a6b8e5338f1d558e1f520fb /dev-libs/glib/files | |
parent | sci-biology/phred: Rehash (diff) | |
download | gentoo-48222c9cdd4b8f02edd1333cc6de1d239e06c74e.tar.gz gentoo-48222c9cdd4b8f02edd1333cc6de1d239e06c74e.tar.bz2 gentoo-48222c9cdd4b8f02edd1333cc6de1d239e06c74e.zip |
dev-libs/glib: remove unused file
commit faacf4dd4e added a file with the comment of adding back what
was removed by mistake. But this has never been in the main tree and
must have been a mixup between looking at ::gentoo instead of ::gnome,
where it's still there (and only needed there right now).
Package-Manager: Portage-2.3.19, Repoman-2.3.6
Diffstat (limited to 'dev-libs/glib/files')
-rwxr-xr-x | dev-libs/glib/files/gengiotypefuncs.py | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/dev-libs/glib/files/gengiotypefuncs.py b/dev-libs/glib/files/gengiotypefuncs.py deleted file mode 100755 index fa26d8ed1ed7..000000000000 --- a/dev-libs/glib/files/gengiotypefuncs.py +++ /dev/null @@ -1,44 +0,0 @@ -#!/usr/bin/env python3 - -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() |