From bce58ea2222e1a2a0a42353cf4ea1e1868776247 Mon Sep 17 00:00:00 2001 From: Holger Levsen Date: Sat, 30 Apr 2016 22:48:42 +0200 Subject: reproducible: ignore known duplicates for the (all time) notes.git committer count --- bin/reproducible_html_dashboard.sh | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'bin/reproducible_html_dashboard.sh') diff --git a/bin/reproducible_html_dashboard.sh b/bin/reproducible_html_dashboard.sh index fd8ee94f..0e03d364 100755 --- a/bin/reproducible_html_dashboard.sh +++ b/bin/reproducible_html_dashboard.sh @@ -501,9 +501,12 @@ create_dashboard_page() { write_page "$TD_PKG_SID" write_page "$TD_PKG_TESTING" + # this IGNOREPIPE needs to be manually maintained indeed… + # for the last 3 months we live with errors… + IGNOREPIPE="grep -v alexis@passoire.fr | grep -v christoph.berg@credativ.de | grep -v d.s@daniel.shahaf.name | grep -v dhole@openmailbox.com | grep -v jelmer@jelmer.uk | grep -v mattia@mapreri.org | grep -v micha@lenk.info | grep -v mail@sandroknauss.de | grep -v sanvila@unex.es" if [ -f ${NOTES_GIT_PATH}/packages.yml ] && [ -f ${NOTES_GIT_PATH}/issues.yml ] ; then - 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)" - 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)" + write_page "committers to notes.git (in total)$(cd ${NOTES_GIT_PATH} ; git log |grep Author|sort -u |$IGNOREPIPE|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 (in unstable)$(echo $RESULT)" -- cgit v1.2.3-54-g00ecf