summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_html_repo_stats.sh
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-03-12 18:35:55 +0100
committerHolger Levsen <holger@layer-acht.org>2015-03-12 18:35:55 +0100
commit7d212d83ff63fc7155f604429d5727df669add90 (patch)
tree243d05b03935c3272348a194a2e074415559c9e8 /bin/reproducible_html_repo_stats.sh
parent9c89d922d027c51d1ae421d5f95ce9f7996c07d5 (diff)
downloadjenkins.debian.net-7d212d83ff63fc7155f604429d5727df669add90.tar.xz
reproducible: comment on repo usage
Diffstat (limited to 'bin/reproducible_html_repo_stats.sh')
-rwxr-xr-xbin/reproducible_html_repo_stats.sh10
1 files changed, 8 insertions, 2 deletions
diff --git a/bin/reproducible_html_repo_stats.sh b/bin/reproducible_html_repo_stats.sh
index ca1a5215..b501e8f0 100755
--- a/bin/reproducible_html_repo_stats.sh
+++ b/bin/reproducible_html_repo_stats.sh
@@ -37,8 +37,8 @@ for PKG in $SOURCES ; do
fi
VERSIONS=$(grep-dctrl -n -s version -S $PKG $TMPFILE|sort -u)
CRUFT=""
- WARN=false
BET=""
+ OBSOLETE=false
#
# gather versions of a package
#
@@ -53,7 +53,6 @@ for PKG in $SOURCES ; do
SID=$(rmadison -s sid $PKG | cut -d "|" -f2|xargs echo)
for VERSION in ${VERSIONS} ; do
if [ "${VERSION}" != "$BET" ] ; then
- WARN=true
CRUFT="$CRUFT ${VERSION}"
fi
done
@@ -71,6 +70,7 @@ for PKG in $SOURCES ; do
if [ ! -z "$BET" ] ; then
CRUFT="$BET $CRUFT"
BET=""
+ OBSOLETE=true
fi
else
CSID="$CSID$i<br />"
@@ -112,8 +112,14 @@ for PKG in $SOURCES ; do
write_page "$PKG<br /><span class=\"red\">(no git repository)</span>"
elif [ "$(grep "'error'>Invalid branch" $TMP2FILE 2>/dev/null)" ] ; then
write_page "<a href=\"$URL\" target=\"_blank\">$PKG</a><br /><span class=\"purple\">(non-standard branch)</span>"
+ if $OBSOLETE ; then
+ write_page " (probably ok)"
+ fi
else
write_page "<a href=\"$URL\" target=\"_blank\">$PKG</a>"
+ if $OBSOLETE ; then
+ write_page "<br /> (unused?)"
+ fi
fi
write_page " </td>"
write_page " <td>$CRUFT</td>"