Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 4354B200AC8 for ; Mon, 9 May 2016 03:13:26 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 41C87160A07; Mon, 9 May 2016 01:13:26 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 8850F160A06 for ; Mon, 9 May 2016 03:13:25 +0200 (CEST) Received: (qmail 76236 invoked by uid 500); 9 May 2016 01:13:24 -0000 Mailing-List: contact commits-help@hbase.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@hbase.apache.org Delivered-To: mailing list commits@hbase.apache.org Received: (qmail 76227 invoked by uid 99); 9 May 2016 01:13:24 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 09 May 2016 01:13:24 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 91222DFBAB; Mon, 9 May 2016 01:13:24 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: ndimiduk@apache.org To: commits@hbase.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: hbase git commit: HBASE-15738 Ensure artifacts in project dist area include required md5 file Date: Mon, 9 May 2016 01:13:24 +0000 (UTC) archived-at: Mon, 09 May 2016 01:13:26 -0000 Repository: hbase Updated Branches: refs/heads/branch-1.3 805746150 -> b4573c803 HBASE-15738 Ensure artifacts in project dist area include required md5 file Project: http://git-wip-us.apache.org/repos/asf/hbase/repo Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/b4573c80 Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/b4573c80 Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/b4573c80 Branch: refs/heads/branch-1.3 Commit: b4573c803d73aa13b5be9c2a79a044763ac54249 Parents: 8057461 Author: Nick Dimiduk Authored: Sun May 1 12:29:29 2016 -0700 Committer: Nick Dimiduk Committed: Sun May 8 18:08:54 2016 -0700 ---------------------------------------------------------------------- dev-support/make_rc.sh | 2 ++ src/main/asciidoc/_chapters/developer.adoc | 2 ++ 2 files changed, 4 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hbase/blob/b4573c80/dev-support/make_rc.sh ---------------------------------------------------------------------- diff --git a/dev-support/make_rc.sh b/dev-support/make_rc.sh index 50e8efd..b88a984 100755 --- a/dev-support/make_rc.sh +++ b/dev-support/make_rc.sh @@ -77,6 +77,8 @@ echo "DONE" echo "Check the content of ${archivedir}. If good, sign and push to dist.apache.org" echo " cd ${archivedir}" echo ' for i in *.tar.gz; do echo $i; gpg --print-mds $i > $i.mds ; done' +echo ' for i in *.tar.gz; do echo $i; gpg --print-md MD5 $i > $i.md5 ; done' +echo ' for i in *.tar.gz; do echo $i; gpg --print-md SHA512 $i > $i.sha ; done' echo ' for i in *.tar.gz; do echo $i; gpg --armor --output $i.asc --detach-sig $i ; done' echo ' rsync -av ${archivedir}/*.gz ${archivedir}/*.mds ${archivedir}/*.asc ~/repos/dist-dev/hbase-VERSION/' echo "Check the content deployed to maven. If good, close the repo and record links of temporary staging repo" http://git-wip-us.apache.org/repos/asf/hbase/blob/b4573c80/src/main/asciidoc/_chapters/developer.adoc ---------------------------------------------------------------------- diff --git a/src/main/asciidoc/_chapters/developer.adoc b/src/main/asciidoc/_chapters/developer.adoc index c3fc1ce..16bf69b 100644 --- a/src/main/asciidoc/_chapters/developer.adoc +++ b/src/main/asciidoc/_chapters/developer.adoc @@ -701,6 +701,8 @@ In the _version directory_ run the following commands: ---- $ for i in *.tar.gz; do echo $i; gpg --print-mds $i > $i.mds ; done +$ for i in *.tar.gz; do echo $i; gpg --print-md MD5 $i > $i.md5 ; done +$ for i in *.tar.gz; do echo $i; gpg --print-md SHA512 $i > $i.sha ; done $ for i in *.tar.gz; do echo $i; gpg --armor --output $i.asc --detach-sig $i ; done $ cd .. # Presuming our 'version directory' is named 0.96.0RC0, now copy it up to people.apache.org.