You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by el...@apache.org on 2018/02/27 15:23:31 UTC

[01/10] hbase git commit: HBASE-20089 Use the ASF recommended naming for SHA512 xsum files

Repository: hbase
Updated Branches:
  refs/heads/branch-1 8e5b8f22f -> f8494ee4e
  refs/heads/branch-1.3 5f96c356b -> 7a1d95596
  refs/heads/branch-1.4 c5bc25a7d -> 4968be9c0
  refs/heads/branch-2 ae288a7b4 -> b1cc47801
  refs/heads/master dbd801305 -> 3443aa96b


HBASE-20089 Use the ASF recommended naming for SHA512 xsum files

Signed-off-by: Andrew Purtell <ap...@apache.org>
Signed-off-by: Michael Stack <st...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/e47d1e44
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/e47d1e44
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/e47d1e44

Branch: refs/heads/master
Commit: e47d1e443e17408cf2131e4490397a7cee18288e
Parents: dbd8013
Author: Josh Elser <el...@apache.org>
Authored: Mon Feb 26 16:30:16 2018 -0500
Committer: Josh Elser <el...@apache.org>
Committed: Tue Feb 27 09:51:10 2018 -0500

----------------------------------------------------------------------
 dev-support/make_rc.sh | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/e47d1e44/dev-support/make_rc.sh
----------------------------------------------------------------------
diff --git a/dev-support/make_rc.sh b/dev-support/make_rc.sh
index f067ee9..640bcd1 100755
--- a/dev-support/make_rc.sh
+++ b/dev-support/make_rc.sh
@@ -107,13 +107,13 @@ build_bin
 MAVEN_OPTS="${mvnopts}" ${mvn} deploy -DskipTests -Papache-release -Prelease \
     -Dmaven.repo.local=${output_dir}/repository
 
-# Do sha1 and md5
+# Do sha512 and md5
 cd ${output_dir}
-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 --print-md SHA512 $i > $i.sha512 ; done
 for i in *.tar.gz; do echo $i; gpg --print-md MD5 $i > $i.md5 ; done
 
 echo "Check the content of ${output_dir}.  If good, sign and push to dist.apache.org"
 echo " cd ${output_dir}"
 echo ' for i in *.tar.gz; do echo $i; gpg --armor --output $i.asc --detach-sig $i  ; done'
-echo ' rsync -av ${output_dir}/*.gz ${output_dir}/*.md5 ${output_dir}/*.sha ${output_dir}/*.asc ${APACHE_HBASE_DIST_DEV_DIR}/${hbase_name}/'
+echo ' rsync -av ${output_dir}/*.gz ${output_dir}/*.md5 ${output_dir}/*.sha512 ${output_dir}/*.asc ${APACHE_HBASE_DIST_DEV_DIR}/${hbase_name}/'
 echo "Check the content deployed to maven.  If good, close the repo and record links of temporary staging repo"


[05/10] hbase git commit: HBASE-20089 Use the ASF recommended naming for SHA512 xsum files

Posted by el...@apache.org.
HBASE-20089 Use the ASF recommended naming for SHA512 xsum files

Signed-off-by: Andrew Purtell <ap...@apache.org>
Signed-off-by: Michael Stack <st...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/15a2473b
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/15a2473b
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/15a2473b

Branch: refs/heads/branch-1
Commit: 15a2473b69c9728ff11801bb413f9a16795ee67f
Parents: 8e5b8f2
Author: Josh Elser <el...@apache.org>
Authored: Mon Feb 26 16:30:16 2018 -0500
Committer: Josh Elser <el...@apache.org>
Committed: Tue Feb 27 10:01:19 2018 -0500

----------------------------------------------------------------------
 dev-support/make_rc.sh | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/15a2473b/dev-support/make_rc.sh
----------------------------------------------------------------------
diff --git a/dev-support/make_rc.sh b/dev-support/make_rc.sh
index 19f906f..2aeeb79 100755
--- a/dev-support/make_rc.sh
+++ b/dev-support/make_rc.sh
@@ -104,13 +104,13 @@ build_bin
 MAVEN_OPTS="${mvnopts}" ${mvn} deploy -DskipTests -Papache-release -Prelease \
     -Dmaven.repo.local=${output_dir}/repository
 
-# Do sha1 and md5
+# Do sha512 and md5
 cd ${output_dir}
-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 --print-md SHA512 $i > $i.sha512 ; done
 for i in *.tar.gz; do echo $i; gpg --print-md MD5 $i > $i.md5 ; done
 
 echo "Check the content of ${output_dir}.  If good, sign and push to dist.apache.org"
 echo " cd ${output_dir}"
 echo ' for i in *.tar.gz; do echo $i; gpg --armor --output $i.asc --detach-sig $i  ; done'
-echo ' rsync -av ${output_dir}/*.gz ${output_dir}/*.md5 ${output_dir}/*.sha ${output_dir}/*.asc ${APACHE_HBASE_DIST_DEV_DIR}/${hbase_name}/'
+echo ' rsync -av ${output_dir}/*.gz ${output_dir}/*.md5 ${output_dir}/*.sha512 ${output_dir}/*.asc ${APACHE_HBASE_DIST_DEV_DIR}/${hbase_name}/'
 echo "Check the content deployed to maven.  If good, close the repo and record links of temporary staging repo"


[04/10] hbase git commit: HBASE-20089 Use the ASF recommended naming for SHA512 xsum files

Posted by el...@apache.org.
HBASE-20089 Use the ASF recommended naming for SHA512 xsum files

Signed-off-by: Andrew Purtell <ap...@apache.org>
Signed-off-by: Michael Stack <st...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/7d5744d2
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/7d5744d2
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/7d5744d2

Branch: refs/heads/branch-2
Commit: 7d5744d2f8913e508e25673200ee8a1c033f8405
Parents: ae288a7
Author: Josh Elser <el...@apache.org>
Authored: Mon Feb 26 16:30:16 2018 -0500
Committer: Josh Elser <el...@apache.org>
Committed: Tue Feb 27 09:57:28 2018 -0500

----------------------------------------------------------------------
 dev-support/make_rc.sh | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/7d5744d2/dev-support/make_rc.sh
----------------------------------------------------------------------
diff --git a/dev-support/make_rc.sh b/dev-support/make_rc.sh
index f067ee9..640bcd1 100755
--- a/dev-support/make_rc.sh
+++ b/dev-support/make_rc.sh
@@ -107,13 +107,13 @@ build_bin
 MAVEN_OPTS="${mvnopts}" ${mvn} deploy -DskipTests -Papache-release -Prelease \
     -Dmaven.repo.local=${output_dir}/repository
 
-# Do sha1 and md5
+# Do sha512 and md5
 cd ${output_dir}
-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 --print-md SHA512 $i > $i.sha512 ; done
 for i in *.tar.gz; do echo $i; gpg --print-md MD5 $i > $i.md5 ; done
 
 echo "Check the content of ${output_dir}.  If good, sign and push to dist.apache.org"
 echo " cd ${output_dir}"
 echo ' for i in *.tar.gz; do echo $i; gpg --armor --output $i.asc --detach-sig $i  ; done'
-echo ' rsync -av ${output_dir}/*.gz ${output_dir}/*.md5 ${output_dir}/*.sha ${output_dir}/*.asc ${APACHE_HBASE_DIST_DEV_DIR}/${hbase_name}/'
+echo ' rsync -av ${output_dir}/*.gz ${output_dir}/*.md5 ${output_dir}/*.sha512 ${output_dir}/*.asc ${APACHE_HBASE_DIST_DEV_DIR}/${hbase_name}/'
 echo "Check the content deployed to maven.  If good, close the repo and record links of temporary staging repo"


[06/10] hbase git commit: HBASE-20088 Update NOTICE.txt year

Posted by el...@apache.org.
HBASE-20088 Update NOTICE.txt year

Signed-off-by: Andrew Purtell <ap...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/f8494ee4
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/f8494ee4
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/f8494ee4

Branch: refs/heads/branch-1
Commit: f8494ee4e7aa26607846e36cbc579c3ce3359106
Parents: 15a2473
Author: Josh Elser <el...@apache.org>
Authored: Mon Feb 26 17:00:50 2018 -0500
Committer: Josh Elser <el...@apache.org>
Committed: Tue Feb 27 10:01:20 2018 -0500

----------------------------------------------------------------------
 NOTICE.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/f8494ee4/NOTICE.txt
----------------------------------------------------------------------
diff --git a/NOTICE.txt b/NOTICE.txt
index 229e7ce..c4a6054 100644
--- a/NOTICE.txt
+++ b/NOTICE.txt
@@ -1,5 +1,5 @@
 Apache HBase
-Copyright 2007-2017 The Apache Software Foundation
+Copyright 2007-2018 The Apache Software Foundation
 
 This product includes software developed at
 The Apache Software Foundation (http://www.apache.org/).


[10/10] hbase git commit: HBASE-20088 Update NOTICE.txt year

Posted by el...@apache.org.
HBASE-20088 Update NOTICE.txt year

Signed-off-by: Andrew Purtell <ap...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/7a1d9559
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/7a1d9559
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/7a1d9559

Branch: refs/heads/branch-1.3
Commit: 7a1d95596f9345ae53fff27e7c8a006cadd6dd32
Parents: 03449f7
Author: Josh Elser <el...@apache.org>
Authored: Mon Feb 26 17:00:50 2018 -0500
Committer: Josh Elser <el...@apache.org>
Committed: Tue Feb 27 10:19:33 2018 -0500

----------------------------------------------------------------------
 NOTICE.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/7a1d9559/NOTICE.txt
----------------------------------------------------------------------
diff --git a/NOTICE.txt b/NOTICE.txt
index 229e7ce..c4a6054 100644
--- a/NOTICE.txt
+++ b/NOTICE.txt
@@ -1,5 +1,5 @@
 Apache HBase
-Copyright 2007-2017 The Apache Software Foundation
+Copyright 2007-2018 The Apache Software Foundation
 
 This product includes software developed at
 The Apache Software Foundation (http://www.apache.org/).


[08/10] hbase git commit: HBASE-20088 Update NOTICE.txt year

Posted by el...@apache.org.
HBASE-20088 Update NOTICE.txt year

Signed-off-by: Andrew Purtell <ap...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/4968be9c
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/4968be9c
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/4968be9c

Branch: refs/heads/branch-1.4
Commit: 4968be9c0d8fa0f00cdfdfeb5042e87e05ecf23e
Parents: b4f1184
Author: Josh Elser <el...@apache.org>
Authored: Mon Feb 26 17:00:50 2018 -0500
Committer: Josh Elser <el...@apache.org>
Committed: Tue Feb 27 10:14:02 2018 -0500

----------------------------------------------------------------------
 NOTICE.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/4968be9c/NOTICE.txt
----------------------------------------------------------------------
diff --git a/NOTICE.txt b/NOTICE.txt
index 229e7ce..c4a6054 100644
--- a/NOTICE.txt
+++ b/NOTICE.txt
@@ -1,5 +1,5 @@
 Apache HBase
-Copyright 2007-2017 The Apache Software Foundation
+Copyright 2007-2018 The Apache Software Foundation
 
 This product includes software developed at
 The Apache Software Foundation (http://www.apache.org/).


[09/10] hbase git commit: HBASE-20089 Use the ASF recommended naming for SHA512 xsum files

Posted by el...@apache.org.
HBASE-20089 Use the ASF recommended naming for SHA512 xsum files

Signed-off-by: Andrew Purtell <ap...@apache.org>
Signed-off-by: Michael Stack <st...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/03449f76
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/03449f76
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/03449f76

Branch: refs/heads/branch-1.3
Commit: 03449f767f42d308f1c1d25cb4bce8a56d264340
Parents: 5f96c35
Author: Josh Elser <el...@apache.org>
Authored: Mon Feb 26 16:30:16 2018 -0500
Committer: Josh Elser <el...@apache.org>
Committed: Tue Feb 27 10:19:28 2018 -0500

----------------------------------------------------------------------
 dev-support/make_rc.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/03449f76/dev-support/make_rc.sh
----------------------------------------------------------------------
diff --git a/dev-support/make_rc.sh b/dev-support/make_rc.sh
index b88a984..5705dcc 100755
--- a/dev-support/make_rc.sh
+++ b/dev-support/make_rc.sh
@@ -78,7 +78,7 @@ echo "Check the content of ${archivedir}.  If good, sign and push to dist.apache
 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 --print-md SHA512 $i > $i.sha512 ; 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"


[03/10] hbase git commit: HBASE-20088 Update NOTICE.txt year

Posted by el...@apache.org.
HBASE-20088 Update NOTICE.txt year

Signed-off-by: Andrew Purtell <ap...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/b1cc4780
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/b1cc4780
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/b1cc4780

Branch: refs/heads/branch-2
Commit: b1cc47801ac3d0d04a4b0b3f8d72f291686442ed
Parents: 7d5744d
Author: Josh Elser <el...@apache.org>
Authored: Mon Feb 26 17:00:50 2018 -0500
Committer: Josh Elser <el...@apache.org>
Committed: Tue Feb 27 09:57:28 2018 -0500

----------------------------------------------------------------------
 NOTICE.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/b1cc4780/NOTICE.txt
----------------------------------------------------------------------
diff --git a/NOTICE.txt b/NOTICE.txt
index 9c238be..ba4b609 100755
--- a/NOTICE.txt
+++ b/NOTICE.txt
@@ -1,5 +1,5 @@
 Apache HBase
-Copyright 2007-2017 The Apache Software Foundation
+Copyright 2007-2018 The Apache Software Foundation
 
 This product includes software developed at
 The Apache Software Foundation (http://www.apache.org/).


[07/10] hbase git commit: HBASE-20089 Use the ASF recommended naming for SHA512 xsum files

Posted by el...@apache.org.
HBASE-20089 Use the ASF recommended naming for SHA512 xsum files

Signed-off-by: Andrew Purtell <ap...@apache.org>
Signed-off-by: Michael Stack <st...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/b4f1184c
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/b4f1184c
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/b4f1184c

Branch: refs/heads/branch-1.4
Commit: b4f1184c0a532833017d8d8a3ee6c90c751403a9
Parents: c5bc25a
Author: Josh Elser <el...@apache.org>
Authored: Mon Feb 26 16:30:16 2018 -0500
Committer: Josh Elser <el...@apache.org>
Committed: Tue Feb 27 10:14:01 2018 -0500

----------------------------------------------------------------------
 dev-support/make_rc.sh | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/b4f1184c/dev-support/make_rc.sh
----------------------------------------------------------------------
diff --git a/dev-support/make_rc.sh b/dev-support/make_rc.sh
index 19f906f..2aeeb79 100755
--- a/dev-support/make_rc.sh
+++ b/dev-support/make_rc.sh
@@ -104,13 +104,13 @@ build_bin
 MAVEN_OPTS="${mvnopts}" ${mvn} deploy -DskipTests -Papache-release -Prelease \
     -Dmaven.repo.local=${output_dir}/repository
 
-# Do sha1 and md5
+# Do sha512 and md5
 cd ${output_dir}
-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 --print-md SHA512 $i > $i.sha512 ; done
 for i in *.tar.gz; do echo $i; gpg --print-md MD5 $i > $i.md5 ; done
 
 echo "Check the content of ${output_dir}.  If good, sign and push to dist.apache.org"
 echo " cd ${output_dir}"
 echo ' for i in *.tar.gz; do echo $i; gpg --armor --output $i.asc --detach-sig $i  ; done'
-echo ' rsync -av ${output_dir}/*.gz ${output_dir}/*.md5 ${output_dir}/*.sha ${output_dir}/*.asc ${APACHE_HBASE_DIST_DEV_DIR}/${hbase_name}/'
+echo ' rsync -av ${output_dir}/*.gz ${output_dir}/*.md5 ${output_dir}/*.sha512 ${output_dir}/*.asc ${APACHE_HBASE_DIST_DEV_DIR}/${hbase_name}/'
 echo "Check the content deployed to maven.  If good, close the repo and record links of temporary staging repo"


[02/10] hbase git commit: HBASE-20088 Update NOTICE.txt year

Posted by el...@apache.org.
HBASE-20088 Update NOTICE.txt year

Signed-off-by: Andrew Purtell <ap...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/hbase/repo
Commit: http://git-wip-us.apache.org/repos/asf/hbase/commit/3443aa96
Tree: http://git-wip-us.apache.org/repos/asf/hbase/tree/3443aa96
Diff: http://git-wip-us.apache.org/repos/asf/hbase/diff/3443aa96

Branch: refs/heads/master
Commit: 3443aa96b4357d06181fafd9ad03d6a846df9d88
Parents: e47d1e4
Author: Josh Elser <el...@apache.org>
Authored: Mon Feb 26 17:00:50 2018 -0500
Committer: Josh Elser <el...@apache.org>
Committed: Tue Feb 27 09:52:30 2018 -0500

----------------------------------------------------------------------
 NOTICE.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hbase/blob/3443aa96/NOTICE.txt
----------------------------------------------------------------------
diff --git a/NOTICE.txt b/NOTICE.txt
index 9c238be..ba4b609 100755
--- a/NOTICE.txt
+++ b/NOTICE.txt
@@ -1,5 +1,5 @@
 Apache HBase
-Copyright 2007-2017 The Apache Software Foundation
+Copyright 2007-2018 The Apache Software Foundation
 
 This product includes software developed at
 The Apache Software Foundation (http://www.apache.org/).