#!/usr/bin/python3 # -*- coding: utf-8 -*- # # Copyright © 2015 Mattia Rizzolo #Based on reproducible_html_all_packages.sh © 2014 Holger Levsen # Licensed under GPL-2 # # Depends: python3 # # Build all rb-pkg pages (the pages that describe the package status) using # code already written in reproducible_html_packages from reproducible_common import * from reproducible_html_packages import gen_all_rb_pkg_pages, purge_old_pages for suite in SUITES: for arch in ARCHES: gen_all_rb_pkg_pages(suite=suite, arch=arch, no_clean=True) purge_old_pages()