From 6f4ccf7c6301bd3399ab88e4477133b6de409144 Mon Sep 17 00:00:00 2001 From: Holger Levsen Date: Sat, 23 May 2015 21:03:46 +0200 Subject: reproducible: show number of modified packages in our toolchain --- bin/reproducible_html_graphs.sh | 2 ++ bin/reproducible_html_repository_comparison.sh | 6 +++++- 2 files changed, 7 insertions(+), 1 deletion(-) (limited to 'bin') diff --git a/bin/reproducible_html_graphs.sh b/bin/reproducible_html_graphs.sh index fced1517..fdbbb0d7 100755 --- a/bin/reproducible_html_graphs.sh +++ b/bin/reproducible_html_graphs.sh @@ -564,6 +564,8 @@ create_main_stats_page() { write_page "committers to notes.git in total$(cd ${NOTES_GIT_PATH} ; git log |grep Author|sort -u |wc -l)" write_page "committers to notes.git in the last three months$(cd ${NOTES_GIT_PATH} ; git log --since="3 months ago"|grep Author|sort -u |wc -l)" fi + RESULT=$(cat /srv/reproducible-results/modified_in_sid.txt || echo "unknown") # written by reproducible_html_repository_comparison.sh + write_page "packages modified in our toolchain$(echo $RESULT)" write_page "" # write bugs with usertags table write_usertag_table diff --git a/bin/reproducible_html_repository_comparison.sh b/bin/reproducible_html_repository_comparison.sh index 3bb7489c..d4e1c907 100755 --- a/bin/reproducible_html_repository_comparison.sh +++ b/bin/reproducible_html_repository_comparison.sh @@ -18,6 +18,8 @@ PAGE=index_${VIEW}.html TMPFILE=$(mktemp) TMP2FILE=$(mktemp) +MODIFIED_IN_SID=0 + echo "$(date) - starting to write $PAGE page." write_page_header $VIEW "Comparison between the reproducible builds apt repository and regular Debian suites" write_page "

These source packages are different from unstable in our apt repository on alioth. They are available for testing using these sources.lists entries:

"
@@ -139,6 +141,8 @@ for PKG in $SOURCES ; do
 		write_page "$PKG.git"
 		if $OBSOLETE_IN_SID ; then
 			write_page "
(unused?)" + else + let "MODIFIED_IN_SID+=1" fi fi write_page " " @@ -159,4 +163,4 @@ write_page "

" rm $TMPFILE $TMP2FILE write_page_footer publish_page - +echo "$MODIFIED_IN_SID" > /srv/reproducible-results/modified_in_sid.txt -- cgit v1.2.3-70-g09d2