summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorMattia Rizzolo <mattia@mapreri.org>2015-08-02 11:39:19 +0000
committerHolger Levsen <holger@layer-acht.org>2015-08-02 13:39:26 +0200
commitb62a404499261d44a874cfe2426d47f34ad48c30 (patch)
tree4a230687d28c3c7a1e4d4e70ff9fe897b3368ccb /bin
parentce6bb69f0c5e5708cb97799b3d0c43a0fd2a3638 (diff)
downloadjenkins.debian.net-b62a404499261d44a874cfe2426d47f34ad48c30.tar.xz
reproducible: breakages: do not warn about depwait packages lacking the buildinfo file
Diffstat (limited to 'bin')
-rwxr-xr-xbin/reproducible_breakages.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/reproducible_breakages.py b/bin/reproducible_breakages.py
index ba42fb70..7857c694 100755
--- a/bin/reproducible_breakages.py
+++ b/bin/reproducible_breakages.py
@@ -79,7 +79,8 @@ def lack_buildinfo():
bad_pkgs = []
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 NOT IN ("blacklisted", "not for us", "FTBFS", "")
+ WHERE r.status NOT IN
+ ("blacklisted", "not for us", "FTBFS", "depwait", "")
ORDER BY s.name ASC, s.suite DESC'''
results = query_db(query)
for pkg, version, suite, arch in results: