[Qa-jenkins-scm] [jenkins.debian.net] 01/01: reproducible: rename function: s#explaination_table#variation_table#g

Holger Levsen holger at layer-acht.org
Fri Apr 29 12:40:05 UTC 2016


This is an automated email from the git hooks/post-receive script.

holger pushed a commit to branch master
in repository jenkins.debian.net.

commit d6b98f195b91d930e4405469966da785d5f040e9
Author: Holger Levsen <holger at layer-acht.org>
Date:   Fri Apr 29 14:39:46 2016 +0200

    reproducible: rename function: s#explaination_table#variation_table#g
---
 bin/reproducible_common.sh         | 2 +-
 bin/reproducible_coreboot.sh       | 2 +-
 bin/reproducible_freebsd.sh        | 2 +-
 bin/reproducible_html_archlinux.sh | 2 +-
 bin/reproducible_html_dashboard.sh | 2 +-
 bin/reproducible_html_rpms.sh      | 2 +-
 bin/reproducible_netbsd.sh         | 2 +-
 bin/reproducible_openwrt.sh        | 2 +-
 8 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/bin/reproducible_common.sh b/bin/reproducible_common.sh
index 06b6170..81e0a84 100755
--- a/bin/reproducible_common.sh
+++ b/bin/reproducible_common.sh
@@ -360,7 +360,7 @@ write_page_meta_sign() {
 	write_page "A <code><span class=\"bug\">#</span></code> sign after the name of a package indicates that a bug is filed against it. Likewise, a <code><span class=\"bug-patch\">+</span></code> sign indicates there is a patch available, a <code><span class="bug-pending">P</span></code> means a pending bug while <code><span class=\"bug-done\">#</span></code> indicates a closed bug. In cases of several bugs, the symbol is repeated.</p>"
 }
 
-write_explaination_table() {
+write_variation_table() {
 	write_page "<p style=\"clear:both;\">"
 	if [ "$1" = "fedora-23" ] ; then
 		write_page "There are no variations introduced in the $1 builds yet. Stay tuned.</p>"
diff --git a/bin/reproducible_coreboot.sh b/bin/reproducible_coreboot.sh
index d04d08c..ba704fb 100755
--- a/bin/reproducible_coreboot.sh
+++ b/bin/reproducible_coreboot.sh
@@ -239,7 +239,7 @@ else
 	write_page ", while $BAD_ROMS ($BAD_PERCENT%) failed to build from source."
 fi
 write_page "        These tests were last run on $DATE for version ${COREBOOT_VERSION} using ${DIFFOSCOPE}.</p>"
-write_explaination_table coreboot
+write_variation_table coreboot
 cat $LIST_OBJECT >> $PAGE
 write_page "     <p><pre>"
 echo -n "$COREBOOT" >> $PAGE
diff --git a/bin/reproducible_freebsd.sh b/bin/reproducible_freebsd.sh
index a72d3a9..dcd16fb 100755
--- a/bin/reproducible_freebsd.sh
+++ b/bin/reproducible_freebsd.sh
@@ -212,7 +212,7 @@ for FREEBSD_TARGET in ${FREEBSD_TARGETS} ;do
 	fi
 	write_page "        These tests were last run on $DATE for the branch $FREEBSD_TARGET at commit ${FREEBSD_VERSION[$FREEBSD_TARGET]} using ${DIFFOSCOPE}.</p>"
 done
-write_explaination_table FreeBSD
+write_variation_table FreeBSD
 set -x
 for FREEBSD_TARGET in ${FREEBSD_TARGETS} ;do
 	ls ${FILES_HTML[$FREEBSD_TARGET]}
diff --git a/bin/reproducible_html_archlinux.sh b/bin/reproducible_html_archlinux.sh
index 1766ad3..5f5a681 100755
--- a/bin/reproducible_html_archlinux.sh
+++ b/bin/reproducible_html_archlinux.sh
@@ -183,7 +183,7 @@ cat > $PAGE <<- EOF
 
 EOF
 write_page_intro 'Arch Linux'
-write_explaination_table 'Arch Linux'
+write_variation_table 'Arch Linux'
 write_page "    <table><tr><th>repository</th><th>all sources packages</th><th>reproducible packages</th><th>unreproducible packages</th><th>packages failing to build</th><th>packages in depwait state</th><th>packages download failures</th><th>unknown state</th></tr>"
 cat $HTML_REPOSTATS >> $PAGE
 rm $HTML_REPOSTATS > /dev/null
diff --git a/bin/reproducible_html_dashboard.sh b/bin/reproducible_html_dashboard.sh
index f5d1faa..fd8ee94 100755
--- a/bin/reproducible_html_dashboard.sh
+++ b/bin/reproducible_html_dashboard.sh
@@ -527,7 +527,7 @@ create_dashboard_page() {
 	done
 	write_page "</p>"
 	# explain setup
-	write_explaination_table debian
+	write_variation_table debian
 	# redo arch specific pngs once a day and write build per day graphs
 	write_page "<p style=\"clear:both;\">"
 	for ARCH in ${ARCHS} ; do
diff --git a/bin/reproducible_html_rpms.sh b/bin/reproducible_html_rpms.sh
index db6fbcb..13784b7 100755
--- a/bin/reproducible_html_rpms.sh
+++ b/bin/reproducible_html_rpms.sh
@@ -134,7 +134,7 @@ cat > $PAGE <<- EOF
 
 EOF
 write_page_intro "$RELEASE"
-write_explaination_table "$RELEASE"
+write_variation_table "$RELEASE"
 write_page "    <table><tr><th>release (architecture)</th><th>all sources packages</th><th>reproducible packages</th><th>unreproducible packages</th><th>packages failing to build</th><th>packages in depwait state</th><th>packages download failures</th><th>unknown state</th></tr>"
 cat $HTML_RPM_STATS >> $PAGE
 rm $HTML_RPM_STATS > /dev/null
diff --git a/bin/reproducible_netbsd.sh b/bin/reproducible_netbsd.sh
index fa3c14f..aeb27b1 100755
--- a/bin/reproducible_netbsd.sh
+++ b/bin/reproducible_netbsd.sh
@@ -211,7 +211,7 @@ else
 	write_page "."
 fi
 write_page "        These tests were last run on $DATE for version ${NETBSD_VERSION} with MKREPRO=yes and MKREPRO_TIMESTAMP=$MKREPRO_TIMESTAMP and were compared using ${DIFFOSCOPE}.</p>"
-write_explaination_table NetBSD
+write_variation_table NetBSD
 cat $BAD_SECTION_HTML >> $PAGE
 cat $GOOD_SECTION_HTML >> $PAGE
 write_page "     <p><pre>"
diff --git a/bin/reproducible_openwrt.sh b/bin/reproducible_openwrt.sh
index cea01ee..119e2e0 100755
--- a/bin/reproducible_openwrt.sh
+++ b/bin/reproducible_openwrt.sh
@@ -348,7 +348,7 @@ write_page "       <h1>OpenWrt - <em>reproducible</em> wireless freedom$MAGIC_SI
 write_page_intro OpenWrt
 write_page "       <p>$GOOD_IMAGES ($GOOD_PERCENT_IMAGES%) out of $ALL_IMAGES built images and $GOOD_PACKAGES ($GOOD_PERCENT_PACKAGES%) out of $ALL_PACKAGES built packages were reproducible in our test setup."
 write_page "        These tests were last run on $DATE for version ${OPENWRT_VERSION} using ${DIFFOSCOPE}.</p>"
-write_explaination_table OpenWrt
+write_variation_table OpenWrt
 cat $DBD_HTML >> $PAGE
 write_page "     <table><tr><th>git commit built</th></tr><tr><td><code>"
 echo -n "$OPENWRT" >> $PAGE

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/qa/jenkins.debian.net.git



More information about the Qa-jenkins-scm mailing list