You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@aurora.apache.org by jf...@apache.org on 2014/05/15 04:15:19 UTC

git commit: AURORA-393: release candidate script doesn't need to create checksums for signature files

Repository: incubator-aurora
Updated Branches:
  refs/heads/master 48f6c917f -> 2759696ca


AURORA-393: release candidate script doesn't need to create checksums for signature files

removed checksums from the gpg signature.

Bugs closed: AURORA-393

Reviewed at https://reviews.apache.org/r/21252/


Project: http://git-wip-us.apache.org/repos/asf/incubator-aurora/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-aurora/commit/2759696c
Tree: http://git-wip-us.apache.org/repos/asf/incubator-aurora/tree/2759696c
Diff: http://git-wip-us.apache.org/repos/asf/incubator-aurora/diff/2759696c

Branch: refs/heads/master
Commit: 2759696ca77077c01f4843a97ec565592429a140
Parents: 48f6c91
Author: Jake Farrell <jf...@apache.org>
Authored: Wed May 14 22:15:04 2014 -0400
Committer: jfarrell <jf...@apache.org>
Committed: Wed May 14 22:15:04 2014 -0400

----------------------------------------------------------------------
 build-support/release/release           | 2 --
 build-support/release/release-candidate | 2 --
 2 files changed, 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-aurora/blob/2759696c/build-support/release/release
----------------------------------------------------------------------
diff --git a/build-support/release/release b/build-support/release/release
index 1ce3634..98105a7 100755
--- a/build-support/release/release
+++ b/build-support/release/release
@@ -166,10 +166,8 @@ gpg --armor --output ${release_dir}/${dist_name}.tar.gz.asc --detach-sig ${relea
 echo "Creating checksums"
 # md5
 gpg --print-md MD5 ${dist_name}.tar.gz > ${dist_name}.tar.gz.md5
-gpg --print-md MD5 ${dist_name}.tar.gz.asc > ${dist_name}.tar.gz.asc.md5
 # sha
 shasum ${dist_name}.tar.gz > ${dist_name}.tar.gz.sha
-shasum ${dist_name}.tar.gz.asc > ${dist_name}.tar.gz.asc.sha
 
 if [[ $publish == 1 ]]; then
   # Commit the release

http://git-wip-us.apache.org/repos/asf/incubator-aurora/blob/2759696c/build-support/release/release-candidate
----------------------------------------------------------------------
diff --git a/build-support/release/release-candidate b/build-support/release/release-candidate
index fa6e177..006f282 100755
--- a/build-support/release/release-candidate
+++ b/build-support/release/release-candidate
@@ -203,10 +203,8 @@ gpg --armor --output ${dist_dir}/${dist_name}.tar.gz.asc --detach-sig ${dist_dir
 echo "Creating checksums"
 # md5
 gpg --print-md MD5 ${dist_name}.tar.gz > ${dist_name}.tar.gz.md5
-gpg --print-md MD5 ${dist_name}.tar.gz.asc > ${dist_name}.tar.gz.asc.md5
 # sha
 shasum ${dist_name}.tar.gz > ${dist_name}.tar.gz.sha
-shasum ${dist_name}.tar.gz.asc > ${dist_name}.tar.gz.asc.sha
 
 # Publish release candidate to svn and commit and push the new git branch
 if [[ $publish == 1 ]]; then