Commit bd88512f authored by Holger Levsen's avatar Holger Levsen
Browse files

reproducible Debian: show the entire build history of each package

parent dd1948b8
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -28,7 +28,7 @@ from rblib.const import (
    TEMPLATE_PATH,
    REPRODUCIBLE_URL,
    DISTRO_URL,
    SUITES, ARCHS,
    SUITES, ARCHIVED_SUITES, ARCHS,
    RB_PKG_PATH, RB_PKG_URI,
    HISTORY_PATH, HISTORY_URI,
    NOTES_PATH, NOTES_URI,
@@ -316,7 +316,7 @@ def gen_history_page(package, arch=None):
            # make a copy, since we modify in place
            record = dict(r)
            # skip records for suites that are unknown to us (i.e. other distro)
            if record['suite'] not in SUITES:
            if record['suite'] not in SUITES and record['suite'] not in ARCHIVED_SUITES:
                continue
            # skip records for other archs if we care about arch
            if arch and record['architecture'] != arch: