diff options
author | Allan McRae <allan@archlinux.org> | 2012-06-04 03:24:52 +0200 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2012-08-03 16:16:38 +0200 |
commit | 682c9af846718cd387da058c39967550b7eeb01f (patch) | |
tree | a0ed1548391623c0c11116c68693c04cb8d557de | |
parent | 91d119af1c97c7f2d78bbd98c73c737bf6f7247d (diff) | |
download | pacman-682c9af846718cd387da058c39967550b7eeb01f.tar.gz pacman-682c9af846718cd387da058c39967550b7eeb01f.tar.xz |
makepkg: fix checksum generation with VCS sources
VCS sources should have "SKIP" for their checksum value
Signed-off-by: Allan McRae <allan@archlinux.org>
-rw-r--r-- | scripts/makepkg.sh.in | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in index e7e22765..55ec353d 100644 --- a/scripts/makepkg.sh.in +++ b/scripts/makepkg.sh.in @@ -789,10 +789,21 @@ generate_checksums() { local netfile for netfile in "${source[@]}"; do - local file - file="$(get_filepath "$netfile")" || missing_source_file "$netfile" - local sum="$(openssl dgst -${integ} "$file")" - sum=${sum##* } + local proto sum + proto="$(get_protocol "$netfile")" + + case $proto in + git*) + sum="SKIP" + ;; + *) + local file + file="$(get_filepath "$netfile")" || missing_source_file "$netfile" + sum="$(openssl dgst -${integ} "$file")" + sum=${sum##* } + ;; + esac + (( ct )) && printf "%s" "$indent" printf "%s" "'$sum'" ct=$(($ct+1)) |