summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_html_repository_comparison.sh
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-05-28 11:12:15 +0200
committerHolger Levsen <holger@layer-acht.org>2015-05-28 11:12:15 +0200
commit44e9acbe727366516d88210f03bec943c0399c88 (patch)
tree52b3268e65fbf137fac5e94a017d458a06bb1d40 /bin/reproducible_html_repository_comparison.sh
parentda127fff099eb1f51916c9d6b4a4efee54e34c1f (diff)
downloadjenkins.debian.net-44e9acbe727366516d88210f03bec943c0399c88.tar.xz
reproducible: count 'obsolete in sid' correctly, consider obsolete in experimental at all and special case strip-nondeterminism
Diffstat (limited to 'bin/reproducible_html_repository_comparison.sh')
-rwxr-xr-xbin/reproducible_html_repository_comparison.sh12
1 files changed, 8 insertions, 4 deletions
diff --git a/bin/reproducible_html_repository_comparison.sh b/bin/reproducible_html_repository_comparison.sh
index d4e1c907..b73a3001 100755
--- a/bin/reproducible_html_repository_comparison.sh
+++ b/bin/reproducible_html_repository_comparison.sh
@@ -42,6 +42,7 @@ for PKG in $SOURCES ; do
BET=""
OBSOLETE_IN_SID=false
OBSOLETE_IN_TESTING=false
+ OBSOLETE_IN_EXP=false
#
# gather versions of a package
#
@@ -81,7 +82,8 @@ for PKG in $SOURCES ; do
for i in $EXPERIMENTAL ; do
if dpkg --compare-versions "$i" gt "$BET" ; then
CEXP="$CEXP<a href=\"https://tracker.debian.org/media/packages/$PREFIX/$PKG/changelog-$i\">$i</a><br />"
- else
+ OBSOLETE_IN_EXP=true
+ else
CEXP="$CEXP$i<br />"
fi
done
@@ -133,15 +135,17 @@ for PKG in $SOURCES ; do
write_page "<br />(<span class=\"green\">merged</span>"
if $OBSOLETE_IN_TESTING ; then
write_page "and available in testing and unstable)"
- else
+ elif $OBSOLETE_IN_SID ; then
write_page "and available in unstable)"
+ elif $OBSOLETE_IN_EXP ; then
+ write_page "and available in experimental)"
fi
fi
else
write_page "<a href=\"$URL\">$PKG.git</a>"
- if $OBSOLETE_IN_SID ; then
+ if ! $OBSOLETE_IN_TESTING && ! $OBSOLETE_IN_SID && ! $OBSOLETE_IN_EXP && [ "$PKG" != "strip-nondeterminism" ] ; then
write_page "<br />(unused?)"
- else
+ elif $OBSOLETE_IN_SID ; then
let "MODIFIED_IN_SID+=1"
fi
fi