build: deprecate and remove md5 from releases (#4751)

This removes MD5 checksum created as part of release work due to ASF
infra policy to deprecate MD5:
https://infra.apache.org/release-distribution#sigs-and-sums

Signed-off-by: Rohit Yadav <rohit.yadav@shapeblue.com>
This commit is contained in:
Rohit Yadav 2021-03-05 10:46:52 +05:30 committed by GitHub
parent 709ebf6062
commit 370d3f2e8e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 5 deletions

View File

@ -149,9 +149,6 @@ else
gpg -v --default-key $certid --armor --output apache-cloudstack-$version-src.tar.bz2.asc --detach-sig apache-cloudstack-$version-src.tar.bz2
fi
echo 'md5'
gpg -v --print-md MD5 apache-cloudstack-$version-src.tar.bz2 > apache-cloudstack-$version-src.tar.bz2.md5
echo 'sha512'
gpg -v --print-md SHA512 apache-cloudstack-$version-src.tar.bz2 > apache-cloudstack-$version-src.tar.bz2.sha512
@ -184,11 +181,9 @@ if [ "$committosvn" == "yes" ]; then
fi
cp $outputdir/apache-cloudstack-$version-src.tar.bz2 .
cp $outputdir/apache-cloudstack-$version-src.tar.bz2.asc .
cp $outputdir/apache-cloudstack-$version-src.tar.bz2.md5 .
cp $outputdir/apache-cloudstack-$version-src.tar.bz2.sha512 .
svn add apache-cloudstack-$version-src.tar.bz2
svn add apache-cloudstack-$version-src.tar.bz2.asc
svn add apache-cloudstack-$version-src.tar.bz2.md5
svn add apache-cloudstack-$version-src.tar.bz2.sha512
svn commit -m "Committing release candidate artifacts for $version to dist/dev/cloudstack in preparation for release vote"
fi