summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xbin/reproducible_html_packages.py10
-rw-r--r--bin/templates/project_links.mustache17
2 files changed, 23 insertions, 4 deletions
diff --git a/bin/reproducible_html_packages.py b/bin/reproducible_html_packages.py
index 3a234ccf..00bf8eb5 100755
--- a/bin/reproducible_html_packages.py
+++ b/bin/reproducible_html_packages.py
@@ -17,11 +17,13 @@ apt_pkg.init_system()
# Templates used for creating package pages
renderer = pystache.Renderer();
package_page_template = renderer.load_template(
- TEMPLATE_PATH + '/package_page')
+ os.path.join(TEMPLATE_PATH, 'package_page'))
suitearch_section_template = renderer.load_template(
- TEMPLATE_PATH + '/package_suitearch_section')
+ os.path.join(TEMPLATE_PATH, 'package_suitearch_section'))
suitearch_details_template = renderer.load_template(
- TEMPLATE_PATH + '/package_suitearch_details')
+ os.path.join(TEMPLATE_PATH, 'package_suitearch_details'))
+project_links_template = renderer.load_template(
+ os.path.join(TEMPLATE_PATH, 'project_links'))
def sizeof_fmt(num):
for unit in ['B','KB','MB','GB']:
@@ -292,7 +294,7 @@ def gen_packages_html(packages, no_clean=False):
gen_suitearch_section(package, suite, arch)
history = '{}/{}.html'.format(HISTORY_URI, pkg)
- project_links = html_project_links.substitute()
+ project_links = renderer.render(project_links_template)
html = renderer.render(package_page_template, {
'package': pkg,
diff --git a/bin/templates/project_links.mustache b/bin/templates/project_links.mustache
new file mode 100644
index 00000000..e5cbf077
--- /dev/null
+++ b/bin/templates/project_links.mustache
@@ -0,0 +1,17 @@
+<ul class="reproducible-links">
+ <li>Reproducible Builds projects links
+ <ul class="children"><li>
+ <a href="https://Reproducible-builds.org">Reproducible-builds.org</a><br />
+ Reproducible-builds.org - <a href="https://Reproducible-builds.org/docs/">HowTo</a><br />
+ Reproducible Debian - <a href="https://wiki.debian.org/ReproducibleBuilds">Wiki</a><br />
+ Reproducible builds <a href="https://reproducible.alioth.debian.org/blog/">weekly news</a><br />
+ <a href="https://reproducible-builds.org/specs/source-date-epoch/">SOURCE_DATE_EPOCH specification</a><br />
+ </li><li>
+ Reproducible <a href="https://tests.reproducible-builds.org/archlinux/">Arch Linux</a> /
+ <a href="https://tests.reproducible-builds.org/coreboot/">coreboot</a> /
+ <a href="https://tests.reproducible-builds.org/fedora/">Fedora</a> /
+ <a href="https://tests.reproducible-builds.org/freebsd/">FreeBSD</a> /
+ <a href="https://tests.reproducible-builds.org/netbsd/">NetBSD</a> /
+ <a href="https://tests.reproducible-builds.org/openwrt/">OpenWrt</a>
+ </li></ul></li>
+</ul>