diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-09-22 09:51:18 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-09-22 09:51:44 +0200 |
commit | 7257f97069d31ead05f18782fa2739a5559c7154 (patch) | |
tree | e948c76d645ea7c978ad281b0ccfe42e11035492 | |
parent | dfac25fc0761187b456a0d0d18c1489f9a707fab (diff) | |
download | jenkins.debian.net-7257f97069d31ead05f18782fa2739a5559c7154.tar.xz |
reproducible: deprecate debbindiff some more
-rwxr-xr-x | bin/reproducible_html_repository_comparison.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bin/reproducible_html_repository_comparison.sh b/bin/reproducible_html_repository_comparison.sh index fb4b858b..9d93d6ff 100755 --- a/bin/reproducible_html_repository_comparison.sh +++ b/bin/reproducible_html_repository_comparison.sh @@ -184,7 +184,7 @@ for PKG in $SOURCEPKGS ; do fi else write_row "<a href=\"$URL\">$GIT</a>" - if [ "$PKG" != "strip-nondeterminism" ] && [ "$PKG" != "diffoscope" ] ; then + if [ "$PKG" != "strip-nondeterminism" ] && [ "$PKG" != "diffoscope" ] && [ "$PKG" != "debbindiff" ] ; then if $OBSOLETE_IN_TESTING && $OBSOLETE_IN_SID && $OBSOLETE_IN_EXP ; then write_row "<br />(unused?" write_row "<br /><span class=\"purple\">Then the branch should probably renamed.</span>)" @@ -196,6 +196,8 @@ for PKG in $SOURCEPKGS ; do fi elif ( [ "$PKG" = "strip-nondeterminism" ] || [ "$PKG" = "diffoscope" ] ) && $OBSOLETE_IN_SID ; then write_row "<br />(this repo is always used)" + elif [ "$PKG" = "debbindiff" ] && $OBSOLETE_IN_SID ; then + write_row "<br />(debbindiff has been renamed to diffoscope)" fi fi if ! $OBSOLETE_IN_SID ; then |