From 22b48c202a1c71b190b40a55ca8edeebb63fefa7 Mon Sep 17 00:00:00 2001 From: Mattia Rizzolo Date: Fri, 16 Jun 2017 14:48:35 +0200 Subject: reproducible debian: introduce buster Signed-off-by: Mattia Rizzolo Signed-off-by: Holger Levsen --- bin/reproducible_html_breakages.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'bin/reproducible_html_breakages.py') diff --git a/bin/reproducible_html_breakages.py b/bin/reproducible_html_breakages.py index 929da615..708056f9 100755 --- a/bin/reproducible_html_breakages.py +++ b/bin/reproducible_html_breakages.py @@ -109,12 +109,13 @@ def lack_buildinfo(): def pbuilder_dep_fail(): log.info('running pbuilder_dep_fail check...') bad_pkgs = [] - # we only care about these failures in the stretch suite as they happen - # all the time in other suites, as packages are buggy + # we only care about these failures in the !unstable !experimental suites + # as they happen all the time in there, as packages are buggy # and specific versions also come and go query = '''SELECT s.name, r.version, s.suite, s.architecture FROM sources AS s JOIN results AS r ON r.package_id=s.id - WHERE r.status = 'FTBFS' AND s.suite = 'stretch' + WHERE r.status = 'FTBFS' + AND s.suite NOT IN ('unstable', 'experimental') ORDER BY s.name ASC, s.suite DESC, s.architecture ASC''' results = query_db(query) for pkg, version, suite, arch in results: -- cgit v1.2.3-54-g00ecf