Repository: wicket Updated Branches: refs/heads/wicket-7.x 9c9bde14b -> 4b76ebb84
WICKET-6074 Use SHA 256+ for signing the release artefacts Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/4b76ebb8 Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/4b76ebb8 Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/4b76ebb8 Branch: refs/heads/wicket-7.x Commit: 4b76ebb84a6e13fd2e7e120e07e96d5544b0966d Parents: 9c9bde1 Author: Andrea Del Bene <[email protected]> Authored: Thu Sep 28 15:04:43 2017 +0200 Committer: Andrea Del Bene <[email protected]> Committed: Thu Sep 28 15:40:07 2017 +0200 ---------------------------------------------------------------------- release.sh | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/wicket/blob/4b76ebb8/release.sh ---------------------------------------------------------------------- diff --git a/release.sh b/release.sh index 645ff5f..3ffbf1f 100755 --- a/release.sh +++ b/release.sh @@ -530,10 +530,8 @@ git archive --format=tar.gz --prefix=apache-wicket-$version/ -o target/dist/apac git archive --format=zip --prefix=apache-wicket-$version/ -o target/dist/apache-wicket-$version.zip $tag gpg --armor --detach-sign --use-agent --sign target/dist/apache-wicket-$version.tar.gz gpg --armor --detach-sign --use-agent --sign target/dist/apache-wicket-$version.zip -gpg --print-md SHA1 target/dist/apache-wicket-$version.tar.gz > target/dist/apache-wicket-$version.tar.gz.sha -gpg --print-md MD5 target/dist/apache-wicket-$version.tar.gz > target/dist/apache-wicket-$version.tar.gz.md5 -gpg --print-md SHA1 target/dist/apache-wicket-$version.zip > target/dist/apache-wicket-$version.zip.sha -gpg --print-md MD5 target/dist/apache-wicket-$version.zip > target/dist/apache-wicket-$version.zip.md5 +sha256sum target/dist/apache-wicket-$version.tar.gz > target/dist/apache-wicket-$version.tar.gz.sha256 +sha256sum target/dist/apache-wicket-$version.zip > target/dist/apache-wicket-$version.zip.sha256 echo "Create and sign the binaries" mkdir target/apache-wicket-$version-bin @@ -552,10 +550,8 @@ tar cfz dist/binaries/apache-wicket-$version-bin.tar.gz apache-wicket-$version-b zip -r dist/binaries/apache-wicket-$version-bin.zip apache-wicket-$version-bin gpg --armor --detach-sign --use-agent --sign dist/binaries/apache-wicket-$version-bin.tar.gz gpg --armor --detach-sign --use-agent --sign dist/binaries/apache-wicket-$version-bin.zip -gpg --print-md SHA1 dist/binaries/apache-wicket-$version-bin.tar.gz > dist/binaries/apache-wicket-$version-bin.tar.gz.sha -gpg --print-md MD5 dist/binaries/apache-wicket-$version-bin.tar.gz > dist/binaries/apache-wicket-$version-bin.tar.gz.md5 -gpg --print-md SHA1 dist/binaries/apache-wicket-$version-bin.zip > dist/binaries/apache-wicket-$version-bin.zip.sha -gpg --print-md MD5 dist/binaries/apache-wicket-$version-bin.zip > dist/binaries/apache-wicket-$version-bin.zip.md5 +sha256sum dist/binaries/apache-wicket-$version-bin.tar.gz > dist/binaries/apache-wicket-$version-bin.tar.gz.sha256 +sha256sum dist/binaries/apache-wicket-$version-bin.zip > dist/binaries/apache-wicket-$version-bin.zip.sha256 popd echo "Uploading release to dist.apache.org"
