You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by we...@apache.org on 2017/07/20 16:39:23 UTC

arrow git commit: ARROW-1244: Exclude C++ Plasma source tree when creating source release

Repository: arrow
Updated Branches:
  refs/heads/master 5aa080996 -> db181d19b


ARROW-1244: Exclude C++ Plasma source tree when creating source release

We must undergo an IP clearance process with Apache Incubator before this code can be included in an Apache Arrow release.

Author: Wes McKinney <we...@twosigma.com>

Closes #874 from wesm/ARROW-1244 and squashes the following commits:

4a1b28b7 [Wes McKinney] Remove Plasma source tree when creating source release until after IP clearance


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

Branch: refs/heads/master
Commit: db181d19bfc17bc4c253fc6e171cbe444cd637a7
Parents: 5aa0809
Author: Wes McKinney <we...@twosigma.com>
Authored: Thu Jul 20 12:39:18 2017 -0400
Committer: Wes McKinney <we...@twosigma.com>
Committed: Thu Jul 20 12:39:18 2017 -0400

----------------------------------------------------------------------
 dev/release/02-source.sh | 6 ++++++
 1 file changed, 6 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/arrow/blob/db181d19/dev/release/02-source.sh
----------------------------------------------------------------------
diff --git a/dev/release/02-source.sh b/dev/release/02-source.sh
index 508141e..6e8e7e4 100755
--- a/dev/release/02-source.sh
+++ b/dev/release/02-source.sh
@@ -88,6 +88,12 @@ rm -rf ${tag}
 git archive $release_hash --prefix ${tag}/ | tar xf -
 rm -rf ${tag}/c_glib
 mv tmp-c_glib ${tag}/c_glib
+
+# ARROW-1244 Remove cpp/src/plasma from source release until after IP clearance
+# is resolved
+rm -rf ${tag}/cpp/src/plasma
+
+# Create new tarball from modified source directory
 tar czf ${tarball} ${tag}
 rm -rf ${tag}