summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_html_pkg_sets.py
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2016-07-17 15:19:46 +0200
committerHolger Levsen <holger@layer-acht.org>2016-07-17 15:19:46 +0200
commit3eec52dab6a2ed555bf718ca480fc848ef460494 (patch)
treee92cb455a1ab2eec00b42673b1a8d44c9e739ed1 /bin/reproducible_html_pkg_sets.py
parentbc52be681e2fa4d9b40bba59f0dad95164509629 (diff)
downloadjenkins.debian.net-3eec52dab6a2ed555bf718ca480fc848ef460494.tar.xz
reproducible Debian: be more verbose when creating pkg sets
Diffstat (limited to 'bin/reproducible_html_pkg_sets.py')
-rwxr-xr-xbin/reproducible_html_pkg_sets.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/bin/reproducible_html_pkg_sets.py b/bin/reproducible_html_pkg_sets.py
index 8072c730..42a7ea6f 100755
--- a/bin/reproducible_html_pkg_sets.py
+++ b/bin/reproducible_html_pkg_sets.py
@@ -150,6 +150,8 @@ def create_index_page(suite, arch):
body = renderer.render(basic_page_template, page_context)
destfile = os.path.join(DEBIAN_BASE, suite, arch,
"index_pkg_sets.html")
+ log.info("Creating pkgset index page for %s/%s.",
+ suite, arch)
write_html_page(title=title, body=body, destfile=destfile,
noheader=True, noendpage=True)
@@ -252,6 +254,8 @@ def create_pkgset_page_and_graphs(suite, arch, stats, pkgset_name):
})
page = "pkg_set_" + pkgset_name + ".html"
destfile = os.path.join(DEBIAN_BASE, suite, arch, page)
+ log.info("Creating meta pkgset page for %s in %s/%s.",
+ pkgset_name, suite, arch)
write_html_page(title=title, body=body, destfile=destfile,
noheader=True, noendpage=True)
@@ -281,6 +285,8 @@ def create_pkgset_graph(png_file, suite, arch, pkgset_name):
main_label = "Reproducibility status for packages in " + suite + \
" from " + pkgset_name
y_label = "Amount (" + pkgset_name + " packages)"
+ log.info("Creating graph for meta pkgset %s in %s/%s.",
+ pkgset_name, suite, arch)
check_call([graph_command, csv_tmp_file, png_file, '4', main_label,
y_label, '1920', '960'])