summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2015-07-06 13:26:15 +0200
committerHolger Levsen <holger@layer-acht.org>2015-07-06 13:26:15 +0200
commite947c26864e238433db0ac73c119cfc0710b2241 (patch)
tree693af04040ca7ad9e648f96dfbb6e41e63e66733 /bin
parent32de5de2b54a709d125166b372ed686cecd7a97d (diff)
downloadjenkins.debian.net-e947c26864e238433db0ac73c119cfc0710b2241.tar.xz
reproducible: debbindiff is also maintained in the master branch
Diffstat (limited to 'bin')
-rwxr-xr-xbin/reproducible_html_repository_comparison.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/reproducible_html_repository_comparison.sh b/bin/reproducible_html_repository_comparison.sh
index fe2ab234..7b23e42c 100755
--- a/bin/reproducible_html_repository_comparison.sh
+++ b/bin/reproducible_html_repository_comparison.sh
@@ -118,7 +118,7 @@ for PKG in $SOURCES ; do
write_page "<tr><td><pre>src:$PKG</pre></td>"
write_page " <td>"
case $PKG in
- strip-nondeterminism)
+ strip-nondeterminism|debbindiff)
URL="http://anonscm.debian.org/cgit/reproducible/$PKG.git" ;;
*)
URL="http://anonscm.debian.org/cgit/reproducible/$PKG.git/?h=pu/reproducible_builds" ;;
@@ -148,7 +148,7 @@ for PKG in $SOURCES ; do
fi
else
write_page "<a href=\"$URL\">$PKG.git</a>"
- if [ "$PKG" != "strip-nondeterminism" ] ; then
+ if [ "$PKG" != "strip-nondeterminism" ] && [ "$PKG" != "debbindiff" ] ; then
if $OBSOLETE_IN_TESTING && $OBSOLETE_IN_SID && $OBSOLETE_IN_EXP ; then
write_page "<br />(unused?"
write_page "<br /><span class=\"purple\">Then the branch should probably renamed.</span>"
@@ -158,7 +158,7 @@ for PKG in $SOURCES ; do
elif $OBSOLETE_IN_EXP ; then
write_page "<br />(only used in testing and unstable, fixed in experimental)"
fi
- elif [ "$PKG" = "strip-nondeterminism" ] && $OBSOLETE_IN_SID ; then
+ elif ( [ "$PKG" = "strip-nondeterminism" ] || [ "$PKG" = "debbindiff" ] ) && $OBSOLETE_IN_SID ; then
write_page "<br />(this repo is always used)"
fi
fi