From f149915a3dfc6fb8908d7d8be4f0f7900f3fdb66 Mon Sep 17 00:00:00 2001 From: Holger Levsen Date: Fri, 12 Jun 2015 13:35:34 +0200 Subject: reproducible: add 'packages which need to be fixed in testing' and 'packages modified in our toolchain in experimental' to dashboard --- bin/reproducible_html_repository_comparison.sh | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'bin/reproducible_html_repository_comparison.sh') 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 " " write_page " PTS" 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 -- cgit v1.2.3-54-g00ecf