Discarded redundant verifychecksums code from bldpkg
This commit is contained in:
parent
ba943ebadf
commit
dc73b547c6
1 changed files with 0 additions and 19 deletions
19
bldpkg
19
bldpkg
|
@ -11,25 +11,6 @@ SRCDIR="$PWD"
|
|||
# get relative directory name from SRCDIR
|
||||
SRCDIRRPATH="$(basename $SRCDIR)"
|
||||
|
||||
# verify checksums
|
||||
verifychecksums() {
|
||||
if [ -z "$SHA512SUMS" ] ; then
|
||||
echo "sha512 checksums don't exist in $SRCDIRRPATH.SMBuild !"
|
||||
echo "Please run bldpkg genchecksum"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
eval sums=\"\$SHA512SUMS\"
|
||||
|
||||
echo "Verifying Checksums..."
|
||||
IFS=$'\n'
|
||||
for src in $sums; do
|
||||
echo "$src" | sha512sum -c
|
||||
done
|
||||
unset IFS
|
||||
echo "Looks good..."
|
||||
}
|
||||
|
||||
# Generate sha512sums in the build file
|
||||
genchecksum() {
|
||||
echo "Discarding old SHA512SUMS from $SRCDIRRPATH.SMBuild"
|
||||
|
|
Loading…
Reference in a new issue