From 0c7f0fca338e9147cc033b5720d48d12cf0aa2f8 Mon Sep 17 00:00:00 2001 From: Holger Levsen Date: Sun, 17 May 2015 15:31:08 +0200 Subject: reproducible: include filtered ftbfs issues in the .json output --- bin/reproducible_common.py | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'bin/reproducible_common.py') diff --git a/bin/reproducible_common.py b/bin/reproducible_common.py index b937d72f..a416d287 100755 --- a/bin/reproducible_common.py +++ b/bin/reproducible_common.py @@ -179,6 +179,17 @@ html_foot_page_style_note = Template((tab*2).join(""" url2html = re.compile(r'((mailto\:|((ht|f)tps?)\://|file\:///){1}\S+)') +# filter used on the index_FTBFS pages and for the reproducible.json +filtered_issues = ('timestamps_from_cpp_macros' , 'ftbfs_werror_equals', 'bad_handling_of_extra_warnings', 'ftbfs_pbuilder_malformed_dsc', 'ftbfs_in_jenkins_setup', 'ftbfs_build_depends_not_available_on_amd64' ) +filter_query = '' +for issue in filtered_issues: + if filter_query == '': + filter_query = 'n.issues LIKE "%' + issue + '%"' + filter_html = '' + issue + '' + else: + filter_query += ' OR n.issues LIKE "%' + issue + '%"' + filter_html += ' or ' + issue + '' + def print_critical_message(msg): print('\n\n\n') -- cgit v1.2.3-70-g09d2