diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-09-26 09:01:04 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-09-26 09:01:04 +0200 |
commit | 44d4847408903df6c994a5825843a219d2e8d4a7 (patch) | |
tree | e6220ebd5d7f092af85dcf9d5e02796c6d83b8ca | |
parent | d9f037e6b1e9580e64965412f424ca612c5dc201 (diff) | |
download | jenkins.debian.net-44d4847408903df6c994a5825843a219d2e8d4a7.tar.xz |
reproducible: be more verbose to ease debugging
-rwxr-xr-x | bin/reproducible_create_meta_pkg_sets.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/bin/reproducible_create_meta_pkg_sets.sh b/bin/reproducible_create_meta_pkg_sets.sh index 373c9198..58e42019 100755 --- a/bin/reproducible_create_meta_pkg_sets.sh +++ b/bin/reproducible_create_meta_pkg_sets.sh @@ -292,6 +292,7 @@ update_pkg_sets() { curl http://nightly.tails.boum.org/build_Tails_ISO_feature-jessie/lastSuccessful/archive/latest.iso.binpkgs > $TMPFILE curl http://nightly.tails.boum.org/build_Tails_ISO_feature-jessie/lastSuccessful/archive/latest.iso.srcpkgs >> $TMPFILE if ! grep '<title>404 Not Found</title>' $TMPFILE ; then + echo "parsing $TMPFILE now..." packages_list_to_deb822 convert_from_deb822_into_source_packages_only update_if_similar ${META_PKGSET[16]}.pkgset @@ -307,6 +308,7 @@ update_pkg_sets() { for PKG in $(cat $TPATH/${META_PKGSET[16]}.pkgset) ; do grep-dctrl -sBuild-Depends -n -X -FPackage $PKG $SOURCES | sed "s#([^()]*)##g ; s#\[[^][]*\]##g ; s#,##g" | sort -u >> $TMPFILE done + echo "parsing $TMPFILE now..." packages_list_to_deb822 convert_from_deb822_into_source_packages_only update_if_similar ${META_PKGSET[17]}.pkgset @@ -316,6 +318,7 @@ update_pkg_sets() { if [ ! -z $(find $TPATH -maxdepth 1 -mtime +0 -name ${META_PKGSET[18]}.pkgset) ] || [ ! -f $TPATH/${META_PKGSET[18]}.pkgset ] ; then curl http://grml.org/files/grml64-full_latest/dpkg.selections | cut -f1 > $TMPFILE if ! grep '<title>404 Not Found</title>' $TMPFILE ; then + echo "parsing $TMPFILE now..." packages_list_to_deb822 convert_from_deb822_into_source_packages_only update_if_similar ${META_PKGSET[18]}.pkgset @@ -331,6 +334,7 @@ update_pkg_sets() { for PKG in $(cat $TPATH/${META_PKGSET[18]}.pkgset) ; do grep-dctrl -sBuild-Depends -n -X -FPackage $PKG $SOURCES | sed "s#([^()]*)##g ; s#\[[^][]*\]##g ; s#,##g" | sort -u >> $TMPFILE done + echo "parsing $TMPFILE now..." packages_list_to_deb822 convert_from_deb822_into_source_packages_only update_if_similar ${META_PKGSET[19]}.pkgset |