summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_html_repo_stats.sh
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-02-23 17:23:22 +0100
committerHolger Levsen <holger@layer-acht.org>2015-02-23 17:24:58 +0100
commit5a5642e65f44d7f253674bfd03f576d53c8a27a7 (patch)
tree4befccb43c5ffb28469235a5d79f91047855fbc9 /bin/reproducible_html_repo_stats.sh
parent620c5383f4283b4804d2f609e91831eacf8177cd (diff)
downloadjenkins.debian.net-5a5642e65f44d7f253674bfd03f576d53c8a27a7.tar.xz
reproducible: new page 'repo_stats'
Diffstat (limited to 'bin/reproducible_html_repo_stats.sh')
-rwxr-xr-xbin/reproducible_html_repo_stats.sh61
1 files changed, 61 insertions, 0 deletions
diff --git a/bin/reproducible_html_repo_stats.sh b/bin/reproducible_html_repo_stats.sh
new file mode 100755
index 00000000..3506ad1f
--- /dev/null
+++ b/bin/reproducible_html_repo_stats.sh
@@ -0,0 +1,61 @@
+#!/bin/bash
+
+# Copyright 2015 Holger Levsen <holger@layer-acht.org>
+# released under the GPLv=2
+
+DEBUG=false
+. /srv/jenkins/bin/common-functions.sh
+common_init "$@"
+
+# common code defining db access
+. /srv/jenkins/bin/reproducible_common.sh
+
+set +x
+init_html
+
+VIEW=repo_stats
+PAGE=index_${VIEW}.html
+echo "$(date) - starting to write $PAGE page."
+write_page_header $VIEW "Overview of ${SPOKENTARGET[$VIEW]}"
+TMPFILE=$(mktemp)
+TMPSCRIPT=$(mktemp)
+echo "cat /var/lib/apt/lists/reproducible.alioth.debian.org_debian_._Packages" > $TMPSCRIPT
+sudo pbuilder --execute --basetgz /var/cache/pbuilder/base-reproducible.tgz $TMPSCRIPT > $TMPFILE
+grep -v ^I:\ $TMPFILE > $TMPSCRIPT
+mv $TMPSCRIPT $TMPFILE
+
+write_page "<p>The source packages are different from sid in our toolchain. They are available in an apt repository on alioth which is accessable with these sources.lists entries:"
+write_page "deb http://reproducible.alioth.debian.org/debian/ ./"
+write_page "deb-src http://reproducible.alioth.debian.org/debian/ ./"
+write_page "</pre></p>"
+write_page "<p><table><th>source package</th><th>version(s)</th>"
+SOURCES=$(grep-dctrl -n -s source -FArchitecture amd64 -o -FArchitecture all $TMPFILE | sort -u)
+for PKG in $SOURCES ; do
+ write_page "<tr>td>$PKG</td><td>"
+ VERSIONS=$(grep-dctrl -n -s version -S $PKG $TMPFILE|sort -u)
+ BET=""
+ for VERSION in ${VERSIONS} ; do
+ if [ "$BET" = "" ] ; then
+ BET=${VERSION}
+ continue
+ elif dpkg --compare-versions "$BET" lt "${VERSION}" ; then
+ BET=${VERSION}
+ fi
+ done
+ write_page "$BET<br>"
+ WARNED=false
+ for VERSION in ${VERSIONS} ; do
+ if [ "${VERSION}" != "$BET" ] ; then
+ write_page "${VERSION}<br>"
+ elif ! $WARNED ; then
+ echo "Warning: more than one version of $PKG available in our repo, please clean up."
+ WARNED=true
+ fi
+ done
+ write_page "</td></tr>"
+done
+write_page "</table></p>"
+rm $TMPFILE
+write_page_footer
+publish_page
+