You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@bookkeeper.apache.org by si...@apache.org on 2019/01/22 02:48:04 UTC

[bookkeeper] branch master updated: [RELEASE] add bkctl package to release scripts

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

sijie pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/bookkeeper.git


The following commit(s) were added to refs/heads/master by this push:
     new 5b737b0  [RELEASE] add bkctl package to release scripts
5b737b0 is described below

commit 5b737b037e2c771a2e8c9f2de3bbcc6812b80b2b
Author: Sijie Guo <gu...@gmail.com>
AuthorDate: Mon Jan 21 18:47:58 2019 -0800

    [RELEASE] add bkctl package to release scripts
    
    
    Descriptions of the changes in this PR:
    
    
    *Motivation*
    
    starting from bookkeeper 4.9.0, a separate tool package `bkctl` is released.
    
    *Modifications*
    
    add bkctl into release scripts
    
    
    
    
    Reviewers: Enrico Olivelli <eo...@gmail.com>
    
    This closes #1907 from sijie/include_bkctl_package
---
 dev/release/004-stage-packages.sh | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/dev/release/004-stage-packages.sh b/dev/release/004-stage-packages.sh
index 2394134..e2e5bba 100755
--- a/dev/release/004-stage-packages.sh
+++ b/dev/release/004-stage-packages.sh
@@ -50,6 +50,8 @@ cp ${SRC_DIR}/bookkeeper-dist/server/target/bookkeeper-server-${VERSION}-bin.tar
 cp ${SRC_DIR}/bookkeeper-dist/server/target/bookkeeper-server-${VERSION}-bin.tar.gz.asc ${DEST_DIR}/bookkeeper-server-${VERSION}-bin.tar.gz.asc
 cp ${SRC_DIR}/bookkeeper-dist/all/target/bookkeeper-all-${VERSION}-bin.tar.gz           ${DEST_DIR}/bookkeeper-all-${VERSION}-bin.tar.gz
 cp ${SRC_DIR}/bookkeeper-dist/all/target/bookkeeper-all-${VERSION}-bin.tar.gz.asc       ${DEST_DIR}/bookkeeper-all-${VERSION}-bin.tar.gz.asc
+cp ${SRC_DIR}/bookkeeper-dist/bkctl/target/bkctl-${VERSION}-bin.tar.gz                  ${DEST_DIR}/bkctl-${VERSION}-bin.tar.gz
+cp ${SRC_DIR}/bookkeeper-dist/bkctl/target/bkctl-${VERSION}-bin.tar.gz.asc              ${DEST_DIR}/bkctl-${VERSION}-bin.tar.gz.asc
 echo "Copied packages."
 
 echo "Generating sha512 files ..."
@@ -57,6 +59,7 @@ cd ${DEST_DIR}
 shasum -a 512 bookkeeper-${VERSION}-src.tar.gz            > bookkeeper-${VERSION}-src.tar.gz.sha512
 shasum -a 512 bookkeeper-server-${VERSION}-bin.tar.gz     > bookkeeper-server-${VERSION}-bin.tar.gz.sha512
 shasum -a 512 bookkeeper-all-${VERSION}-bin.tar.gz        > bookkeeper-all-${VERSION}-bin.tar.gz.sha512
+shasum -a 512 bkctl-${VERSION}-bin.tar.gz                 > bkctl-${VERSION}-bin.tar.gz.sha512
 echo "Generated sha512 files."
 
 cd ${DIST_DEV_DIR}/bookkeeper