This is an automated email from the ASF dual-hosted git repository.

shwstppr pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/cloudstack-cloudmonkey.git


The following commit(s) were added to refs/heads/main by this push:
     new f85e849  performrelease: remove md5 and use sha512sum (#193)
f85e849 is described below

commit f85e849f7df70b75f9184da366679a1c147e9fe9
Author: Abhishek Kumar <[email protected]>
AuthorDate: Wed Sep 3 11:41:51 2025 +0530

    performrelease: remove md5 and use sha512sum (#193)
    
    Match 
https://github.com/apache/cloudstack/commits/main/tools/build/build_asf.sh
    
    Signed-off-by: Abhishek Kumar <[email protected]>
---
 performrelease.sh | 7 +------
 1 file changed, 1 insertion(+), 6 deletions(-)

diff --git a/performrelease.sh b/performrelease.sh
index 26708c6..faeec2d 100755
--- a/performrelease.sh
+++ b/performrelease.sh
@@ -102,11 +102,8 @@ else
   gpg -v --default-key $certid --armor --output 
apache-cloudstack-cloudmonkey-$version-src.tar.bz2.asc --detach-sig 
apache-cloudstack-cloudmonkey-$version-src.tar.bz2
 fi
 
-echo 'md5'
-gpg -v --print-md MD5 apache-cloudstack-cloudmonkey-$version-src.tar.bz2 > 
apache-cloudstack-cloudmonkey-$version-src.tar.bz2.md5
-
 echo 'sha512'
-gpg -v --print-md SHA512 apache-cloudstack-cloudmonkey-$version-src.tar.bz2 > 
apache-cloudstack-cloudmonkey-$version-src.tar.bz2.sha512
+sha512sum apache-cloudstack-cloudmonkey-$version-src.tar.bz2 > 
apache-cloudstack-cloudmonkey-$version-src.tar.bz2.sha512
 
 echo 'verify'
 gpg -v --verify apache-cloudstack-cloudmonkey-$version-src.tar.bz2.asc 
apache-cloudstack-cloudmonkey-$version-src.tar.bz2
@@ -137,11 +134,9 @@ if [ "$committosvn" == "yes" ]; then
   fi
   cp $outputdir/apache-cloudstack-cloudmonkey-$version-src.tar.bz2 .
   cp $outputdir/apache-cloudstack-cloudmonkey-$version-src.tar.bz2.asc .
-  cp $outputdir/apache-cloudstack-cloudmonkey-$version-src.tar.bz2.md5 .
   cp $outputdir/apache-cloudstack-cloudmonkey-$version-src.tar.bz2.sha512 .
   svn add apache-cloudstack-cloudmonkey-$version-src.tar.bz2
   svn add apache-cloudstack-cloudmonkey-$version-src.tar.bz2.asc
-  svn add apache-cloudstack-cloudmonkey-$version-src.tar.bz2.md5
   svn add apache-cloudstack-cloudmonkey-$version-src.tar.bz2.sha512
   svn commit -m "Committing release candidate artifacts for $version to 
dist/dev/cloudstack in preparation for release vote"
 fi

Reply via email to