summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_html_repository_comparison.sh
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-06-12 13:35:34 +0200
committerHolger Levsen <holger@layer-acht.org>2015-06-12 13:35:34 +0200
commitf149915a3dfc6fb8908d7d8be4f0f7900f3fdb66 (patch)
treecbee1b61458f23a97a4b7e6dc29e4a0d4a9b1e6d /bin/reproducible_html_repository_comparison.sh
parent401b7cfe60db550a197534ab559145ef2be3b73e (diff)
downloadjenkins.debian.net-f149915a3dfc6fb8908d7d8be4f0f7900f3fdb66.tar.xz
reproducible: add 'packages which need to be fixed in testing' and 'packages modified in our toolchain in experimental' to dashboard
Diffstat (limited to 'bin/reproducible_html_repository_comparison.sh')
-rwxr-xr-xbin/reproducible_html_repository_comparison.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/bin/reproducible_html_repository_comparison.sh b/bin/reproducible_html_repository_comparison.sh
index 22aebe46..4b2675cf 100755
--- a/bin/reproducible_html_repository_comparison.sh
+++ b/bin/reproducible_html_repository_comparison.sh
@@ -19,6 +19,7 @@ TMPFILE=$(mktemp)
TMP2FILE=$(mktemp)
MODIFIED_IN_SID=0
+MODIFIED_IN_EXP=0
echo "$(date) - starting to write $PAGE page."
write_page_header $VIEW "Comparison between the reproducible builds apt repository and regular Debian suites"
@@ -164,6 +165,9 @@ for PKG in $SOURCES ; do
if ! $OBSOLETE_IN_SID ; then
let "MODIFIED_IN_SID+=1"
fi
+ if ! $OBSOLETE_IN_EXP ; then
+ let "MODIFIED_IN_EXP+=1"
+ fi
write_page " </td>"
write_page " <td><a href=\"https://tracker.debian.org/pkg/$PKG\">PTS</a></td>"
URL="https://bugs.debian.org/cgi-bin/pkgreport.cgi?src=$PKG&users=reproducible-builds@lists.alioth.debian.org&archive=both"
@@ -183,3 +187,4 @@ rm $TMPFILE $TMP2FILE
write_page_footer
publish_page
echo "$MODIFIED_IN_SID" > /srv/reproducible-results/modified_in_sid.txt
+echo "$MODIFIED_IN_EXP" > /srv/reproducible-results/modified_in_exp.txt