summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_breakages.py
diff options
context:
space:
mode:
authorMattia Rizzolo <mattia@mapreri.org>2015-05-20 20:53:12 +0200
committerHolger Levsen <holger@layer-acht.org>2015-05-20 21:35:49 +0200
commit42349d607db16004db1dcc6217bd0e905436d32c (patch)
treef27a04a9c14ac8062507b468066e0270ea689c8d /bin/reproducible_breakages.py
parent8272c1bb53f554d8b16df5cd27740ce7db8bbb22 (diff)
downloadjenkins.debian.net-42349d607db16004db1dcc6217bd0e905436d32c.tar.xz
reproducible: we do expect an rbuild even if the package is not-for-us
Diffstat (limited to 'bin/reproducible_breakages.py')
-rwxr-xr-xbin/reproducible_breakages.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_breakages.py b/bin/reproducible_breakages.py
index fa305525..7e3cbcbb 100755
--- a/bin/reproducible_breakages.py
+++ b/bin/reproducible_breakages.py
@@ -71,7 +71,7 @@ def lack_rbuild():
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", "")
+ WHERE r.status NOT IN ("blacklisted", "")
ORDER BY s.name ASC, s.suite DESC'''
results = query_db(query)
for pkg, version, suite, arch in results: