2014-03-05 11:02:37 +01:00
|
|
|
# This hook downloads the distfiles specified in a template by
|
|
|
|
# the $distfiles variable and then verifies its sha256 checksum comparing
|
|
|
|
# its value with the one stored in the $checksum variable.
|
|
|
|
|
2014-03-12 15:23:08 +01:00
|
|
|
verify_cksum() {
|
|
|
|
local curfile="$1" distfile="$2" dfcount="$3" filesum ckcount cksum found i
|
2014-03-05 11:02:37 +01:00
|
|
|
|
2014-03-12 15:23:08 +01:00
|
|
|
ckcount=0
|
|
|
|
for i in ${checksum}; do
|
|
|
|
if [ $dfcount -eq $ckcount -a -n "$i" ]; then
|
|
|
|
cksum=$i
|
|
|
|
found=yes
|
|
|
|
break
|
|
|
|
fi
|
|
|
|
ckcount=$(($ckcount + 1))
|
|
|
|
done
|
|
|
|
if [ -z $found ]; then
|
|
|
|
msg_error "$pkgver: cannot find checksum for $curfile.\n"
|
|
|
|
fi
|
2014-03-05 11:02:37 +01:00
|
|
|
|
2014-03-12 15:23:08 +01:00
|
|
|
msg_normal "$pkgver: verifying checksum for distfile '$curfile'... "
|
2014-03-05 11:02:37 +01:00
|
|
|
filesum=$(${XBPS_DIGEST_CMD} $distfile)
|
2014-03-12 15:23:08 +01:00
|
|
|
if [ "$cksum" != "$filesum" ]; then
|
2014-03-05 11:02:37 +01:00
|
|
|
echo
|
2014-03-12 15:23:08 +01:00
|
|
|
msg_red "SHA256 mismatch for '$curfile:'\n$filesum\n"
|
|
|
|
errors=$(($errors + 1))
|
2014-03-05 11:02:37 +01:00
|
|
|
else
|
|
|
|
msg_normal_append "OK.\n"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
hook() {
|
|
|
|
local srcdir="$XBPS_SRCDISTDIR/$pkgname-$version"
|
2014-03-12 15:23:08 +01:00
|
|
|
local dfcount=0 errors=0
|
2014-03-05 11:02:37 +01:00
|
|
|
|
|
|
|
if [ ! -d "$srcdir" ]; then
|
|
|
|
mkdir -p -m775 "$srcdir"
|
|
|
|
chgrp $(id -g) "$srcdir"
|
|
|
|
fi
|
|
|
|
|
|
|
|
cd $srcdir || msg_error "$pkgver: cannot change dir to $srcdir!\n"
|
|
|
|
|
2014-03-05 13:58:46 +01:00
|
|
|
# Disable trap on ERR; the code is smart enough to report errors and abort.
|
|
|
|
trap - ERR
|
|
|
|
|
2014-03-05 11:02:37 +01:00
|
|
|
for f in ${distfiles}; do
|
2014-03-12 13:47:57 +01:00
|
|
|
curfile=$(basename "${f#*>}")
|
2014-03-05 11:02:37 +01:00
|
|
|
distfile="$srcdir/$curfile"
|
2014-03-12 15:23:08 +01:00
|
|
|
|
|
|
|
# If file lock cannot be acquired wait until it's available.
|
2014-03-05 11:02:37 +01:00
|
|
|
while true; do
|
|
|
|
flock -w 1 ${distfile}.part true
|
2014-03-12 15:23:08 +01:00
|
|
|
[ $? -eq 0 ] && break
|
|
|
|
msg_warn "$pkgver: ${curfile} is being already downloaded, waiting for 1s ...\n"
|
2014-03-05 11:02:37 +01:00
|
|
|
done
|
2014-03-12 15:23:08 +01:00
|
|
|
# If distfile does not exist download it.
|
|
|
|
if [ ! -f "$distfile" ]; then
|
|
|
|
msg_normal "$pkgver: fetching distfile '$curfile'...\n"
|
2014-03-12 15:47:49 +01:00
|
|
|
flock "${distfile}.part" $XBPS_FETCH_CMD "$f"
|
2014-03-12 15:23:08 +01:00
|
|
|
if [ ! -f "$distfile" ]; then
|
|
|
|
msg_error "$pkgver: failed to fetch $curfile.\n"
|
2014-03-07 11:22:51 +01:00
|
|
|
fi
|
2014-03-05 11:02:37 +01:00
|
|
|
fi
|
2014-03-12 15:23:08 +01:00
|
|
|
# distfile downloaded, verify sha256 hash.
|
|
|
|
flock -n ${distfile}.part rm -f ${distfile}.part
|
|
|
|
verify_cksum $curfile $distfile $dfcount
|
2014-03-05 11:02:37 +01:00
|
|
|
dfcount=$(($dfcount + 1))
|
|
|
|
done
|
2014-03-07 11:12:52 +01:00
|
|
|
|
2014-03-07 11:22:51 +01:00
|
|
|
if [ $errors -gt 0 ]; then
|
2014-03-07 11:12:52 +01:00
|
|
|
msg_error "$pkgver: couldn't verify distfiles, exiting...\n"
|
|
|
|
fi
|
2014-03-05 11:02:37 +01:00
|
|
|
}
|