This is an automated email from the ASF dual-hosted git repository.
wesm pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git
The following commit(s) were added to refs/heads/master by this push:
new b3632e8 ARROW-3429: [Packaging] Add binary upload script
b3632e8 is described below
commit b3632e86f11e433bcb0bd27f239fcc6fc647365a
Author: Kouhei Sutou <[email protected]>
AuthorDate: Sun Oct 7 04:38:16 2018 -0400
ARROW-3429: [Packaging] Add binary upload script
dev/release/02-source.sh upload binaries before we upload source
archive to dist.apache.org. We need to build and upload binaries after
we upload source archive to dist.apache.org to use the source archive
at dist.apache.org.
Author: Kouhei Sutou <[email protected]>
Closes #2699 from kou/add-binary-release-script and squashes the following
commits:
9d206084b <Kouhei Sutou> Expand variables in commit message
fe9cfd4b9 <Kouhei Sutou> Add binary upload script
---
dev/release/03-binary.sh | 75 ++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 75 insertions(+)
diff --git a/dev/release/03-binary.sh b/dev/release/03-binary.sh
new file mode 100755
index 0000000..465b819
--- /dev/null
+++ b/dev/release/03-binary.sh
@@ -0,0 +1,75 @@
+#!/bin/bash
+#
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements. See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership. The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License. You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied. See the License for the
+# specific language governing permissions and limitations
+# under the License.
+#
+set -e
+
+SOURCE_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
+
+if [ "$#" -ne 3 ]; then
+ echo "Usage: $0 <version> <rc-num> <artifact_dir>"
+ exit
+fi
+
+version=$1
+rc=$2
+artifact_dir=$3
+
+if [ -d tmp/ ]; then
+ echo "Cannot run: tmp/ exists"
+ exit
+fi
+
+if [ -z "$artifact_dir" ]; then
+ echo "artifact_dir is empty"
+ exit 1
+fi
+
+if [ ! -e "$artifact_dir" ]; then
+ echo "$artifact_dir does not exist"
+ exit 1
+fi
+
+if [ ! -d "$artifact_dir" ]; then
+ echo "$artifact_dir is not a directory"
+ exit 1
+fi
+
+tag=apache-arrow-${version}
+tagrc=${tag}-rc${rc}
+
+# check out the arrow RC folder
+svn co https://dist.apache.org/repos/dist/dev/arrow/${tagrc} tmp
+
+# ensure directories for binary artifacts
+mkdir -p tmp/binaries
+
+# copy binary artifacts
+cp -rf "$artifact_dir"/* tmp/binaries/
+
+# commit to svn
+for dir in "$artifact_dir"/*; do
+ svn add tmp/binaries/$(basename $dir)
+done
+svn ci -m "Apache Arrow ${version} RC${rc} binaries" tmp/
+
+# clean up
+rm -rf tmp
+
+echo "Success! The release candidate binaries are available here:"
+echo " https://dist.apache.org/repos/dist/dev/arrow/${tagrc}/binaries"