From 6ca2943ee9f05d63ed21ec56a584f6d73f73a6e0 Mon Sep 17 00:00:00 2001 From: Manuel Canales Esparcia Date: Mon, 1 May 2006 10:26:47 +0000 Subject: [PATCH] Updates to the new download code. --- common/common-functions | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/common/common-functions b/common/common-functions index 2e09586..69cb6fd 100644 --- a/common/common-functions +++ b/common/common-functions @@ -652,8 +652,18 @@ get_sources() { # Download file, write name to MISSING_FILES.DMP if IFS=$'\x0A' # Modify the 'internal field separator' to break on 'LF' only for line in `cat urls.lst`; do - IFS=$saveIFS # Restore the system defaults + + # Skip some packages if they aren't needed + case $line in + */tcl* | */expect* | */dejagnu* | */tree* | */gcc-testsuite* ) + [[ "$TEST" = "0" ]] && continue + ;; + */vim-*-lang* ) + [[ "$VIMLANG" = "0" ]] && continue + ;; + esac + URL1=`echo $line | cut -d" " -f1` # Upstream URL URL2=`echo $line | cut -d" " -f2` # Fallback URL FILE=`basename $URL2` # File name @@ -684,7 +694,8 @@ get_sources() { # Download file, write name to MISSING_FILES.DMP if fi if ! echo "$MD5" | md5sum -c - ; then - exit 1 + echo "${RED}$FILE not match MD5SUMS value${OFF}" + echo "$FILE not match MD5SUMS value" >> MISSING_FILES.DMP fi echo `grep "$MD5" MD5SUMS` >> MD5SUMS-$VERSION @@ -700,6 +711,10 @@ get_sources() { # Download file, write name to MISSING_FILES.DMP if done + if [[ -s MISSING_FILES.DMP ]]; then + echo -e "\n\n${tab_}${RED} One or more files were not retrieved or have a bad MD5SUMS chechsum.\n${tab_} Check ${L_arrow}$BUILDDIR/sources/MISSING_FILES.DMP${R_arrow} for names ${OFF}\n\n" + fi + fi }