diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-07-29 13:55:57 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-07-29 13:55:57 +0200 |
commit | e7a4ddfcf5815a396101fd6a96809929b700e24a (patch) | |
tree | f45f4a18c08e88c6b1bbedb15c779f9be780dcee /bin | |
parent | f2ba7c1f5e3889700279e52d9b348033305dffed (diff) | |
download | jenkins.debian.net-e7a4ddfcf5815a396101fd6a96809929b700e24a.tar.xz |
reproducible: refactor
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_html_repository_comparison.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/reproducible_html_repository_comparison.sh b/bin/reproducible_html_repository_comparison.sh index 7b23e42c..39895b1b 100755 --- a/bin/reproducible_html_repository_comparison.sh +++ b/bin/reproducible_html_repository_comparison.sh @@ -30,8 +30,8 @@ write_page "</pre></p>" write_page "<p><table><tr><th>package</th><th>git repo</th><th>PTS link</th><th>usertagged bug</th><th>old versions in our repo<br />(needed for reproducing old builds)</th><th>version in our repo</th><th>version in 'testing'</th><th>version in 'unstable'</th><th>version in 'experimental'</th></tr>" curl http://reproducible.alioth.debian.org/debian/Sources > $TMPFILE -SOURCES=$(grep-dctrl -n -s Package -r -FPackage . $TMPFILE | sort -u) -for PKG in $SOURCES ; do +SOURCEPKGS=$(grep-dctrl -n -s Package -r -FPackage . $TMPFILE | sort -u) +for PKG in $SOURCEPKGS ; do echo "Processing $PKG..." if [ "${PKG:0:3}" = "lib" ] ; then PREFIX=${PKG:0:4} |