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

uwe pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-dist.git


The following commit(s) were added to refs/heads/master by this push:
     new 88d2f3f  Build 0.8.0 wheels (#19)
88d2f3f is described below

commit 88d2f3fb5821823526c3d0c2bae88048dd5a8dbb
Author: Uwe L. Korn <[email protected]>
AuthorDate: Mon Dec 18 21:52:22 2017 +0100

    Build 0.8.0 wheels (#19)
    
    * Build 0.8.0 wheels
    
    * Really remove Boost
    
    * Build Arrow C++ and Arrow GLib 0.8.0
    
    * Update multibuild
    
    * Limit docker service to the manylinux1 build
    
    * Workaround of cd/popd problems
    
    * Unset popd and pushd
    
    * Update delocate
---
 .travis.yml                              | 14 +++++++++-----
 appveyor.yml                             |  6 +++---
 arrow                                    |  2 +-
 cpp-linux/apt/descriptor.json            |  2 +-
 cpp-linux/debian.ubuntu-trusty/changelog |  6 ++++++
 cpp-linux/debian/changelog               |  6 ++++++
 cpp-linux/yum/arrow.spec.in              |  3 +++
 cpp-linux/yum/descriptor.json            |  2 +-
 python-macos/config.sh                   |  2 +-
 python-macos/multibuild                  |  2 +-
 10 files changed, 32 insertions(+), 13 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index 6431e31..389c6d5 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,13 +1,11 @@
 env:
   global:
   - PLAT=x86_64
-  - BUILD_REF=apache-arrow-0.7.1
+  - BUILD_REF=apache-arrow-0.8.0
 language: python
 python: 3.5
 sudo: required
 dist: trusty
-services:
-- docker
 matrix:
   exclude:
   - python: 3.5
@@ -35,6 +33,8 @@ matrix:
     - PANDAS_DEP="0.20.3"
   - language: cpp
     os: linux
+    services:
+    - docker
     before_script:
     - docker pull quay.io/xhochy/arrow_manylinux1_x86_64_base:latest
     before_install:
@@ -94,7 +94,8 @@ matrix:
       key:
         secure: 
"XXRJFBIOGS9urF047KcGlCqnMwKWa/EhW1Q2A3JGDd7Au+NHd99Rl/iRbtd44xVnfhosKGEH9mBGrqIZb/Tfn3RTtSi/KvN2RIoWmdsc3Kxk1eKd6O9kCLo4Y1GqboK8JVIHD4OYiyoVoFmnYLuinfdtrZrME5aU4pENnvwR3E0qvjhnhfwRG/Mtb93ePAqzih95gT7S0VWlsBV3FPa21aY7ctFteUP+DdqXZX1BmUnJB6cBxUGjpL8Bu8O/mt3l3yIrT9UkWM1g75l7zrP354x5+AMbHWBv7yGFa+JvbB+LXkrE2dV6j3Upf6ChnQKoTKv5Ur5LJBbCHyRieW3/uE/h47IR3c/3mRnhoSIl4QX7UoQkvTwHSE1Xpry3I2jE0WVHmq9NqT4iaxIv5oga+3I/W6h8brV3yCYfVUi1F90aRlnZHsCDmtAqzW1u9s1xqkO4z4/dennI0gniEn4kWfx0I7a
 [...]
 before_install:
-- brew uninstall boost
+# Also remove artefacts that depend on Boost
+- brew uninstall boost cgal postgis sfcgal
 - brew update
 - brew upgrade cmake
 - BUILD_DEPENDS="numpy==$NP_BUILD_DEP six cython"
@@ -104,8 +105,11 @@ before_install:
 - source multibuild/common_utils.sh
 - source multibuild/travis_steps.sh
 - before_install
-- popd
+- unset -f cd
+- cd ..
 install:
+- unset -f pushd
+- unset -f popd
 - clean_code arrow $BUILD_REF
 - build_wheel arrow $PLAT
 - mv arrow/python/dist/* dist/
diff --git a/appveyor.yml b/appveyor.yml
index 040808a..b910a8d 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -31,9 +31,9 @@ environment:
   MSVC_DEFAULT_OPTIONS: ON
   BOOST_ROOT: C:\Libraries\boost_1_63_0
   BOOST_LIBRARYDIR: C:\Libraries\boost_1_63_0\lib64-msvc-14.0
-  pyarrow_version: 0.7.1
-  pyarrow_commit: 0e21f84c2fc26dba949a03ee7d7ebfade0a65b81
-  parquet_commit: b69669a230e59e36a193b679fc2c5b4d9150f8c9
+  pyarrow_version: 0.8.0
+  pyarrow_commit: 1d689e5a3e417d3a4b3de16fea7a6fe195c8f8df
+  parquet_commit: e2814ccb224a01289ad3a736ce89a956cb7d52fb
 
 init:
   - set MINICONDA=C:\Miniconda35-x64
diff --git a/arrow b/arrow
index 0e21f84..1d689e5 160000
--- a/arrow
+++ b/arrow
@@ -1 +1 @@
-Subproject commit 0e21f84c2fc26dba949a03ee7d7ebfade0a65b81
+Subproject commit 1d689e5a3e417d3a4b3de16fea7a6fe195c8f8df
diff --git a/cpp-linux/apt/descriptor.json b/cpp-linux/apt/descriptor.json
index 9e1ff7a..cc94323 100644
--- a/cpp-linux/apt/descriptor.json
+++ b/cpp-linux/apt/descriptor.json
@@ -7,7 +7,7 @@
         "vcs_url": "htttps://github.com/apache/arrow.git"
     },
     "version": {
-        "name": "0.7.1"
+        "name": "0.8.0"
     },
     "files": [
         {
diff --git a/cpp-linux/debian.ubuntu-trusty/changelog 
b/cpp-linux/debian.ubuntu-trusty/changelog
index 9317adc..95f470d 100644
--- a/cpp-linux/debian.ubuntu-trusty/changelog
+++ b/cpp-linux/debian.ubuntu-trusty/changelog
@@ -1,3 +1,9 @@
+apache-arrow (0.8.0-1) unstable; urgency=low
+
+  * New upstream release.
+
+ -- Uwe L. Korn <[email protected]>  Sun, 17 Dec 2017 20:24:44 -0000
+
 apache-arrow (0.7.1-1) unstable; urgency=low
 
   * New upstream release.
diff --git a/cpp-linux/debian/changelog b/cpp-linux/debian/changelog
index 601579b..852bac9 100644
--- a/cpp-linux/debian/changelog
+++ b/cpp-linux/debian/changelog
@@ -1,3 +1,9 @@
+apache-arrow (0.8.0-1) unstable; urgency=low
+
+  * New upstream release.
+
+ -- Uwe L. Korn <[email protected]>  Sun, 17 Dec 2017 20:24:44 -0000
+
 apache-arrow (0.7.1-2) unstable; urgency=low
 
   * Add libarrow-gpu0 and libarrow-gpu-dev.
diff --git a/cpp-linux/yum/arrow.spec.in b/cpp-linux/yum/arrow.spec.in
index 71e2afb..85405d3 100644
--- a/cpp-linux/yum/arrow.spec.in
+++ b/cpp-linux/yum/arrow.spec.in
@@ -220,6 +220,9 @@ Documentation for Apache Arrow GLib.
 %endif
 
 %changelog
+* Sun Dec 17 2017 Uwe Korn <[email protected]> - 0.8.0-1
+- New upstream release.
+
 * Wed Sep 27 2017 Kouhei Sutou <[email protected]> - 0.7.1-1
 - New upstream release.
 
diff --git a/cpp-linux/yum/descriptor.json b/cpp-linux/yum/descriptor.json
index 22152ed..2c0ea47 100644
--- a/cpp-linux/yum/descriptor.json
+++ b/cpp-linux/yum/descriptor.json
@@ -7,7 +7,7 @@
         "vcs_url": "htttps://github.com/apache/arrow.git"
     },
     "version": {
-        "name": "0.7.1"
+        "name": "0.8.0"
     },
     "files": [
         {
diff --git a/python-macos/config.sh b/python-macos/config.sh
index 631f2ba..c611e8a 100755
--- a/python-macos/config.sh
+++ b/python-macos/config.sh
@@ -88,7 +88,7 @@ function build_wheel {
     ls -l dist/
     popd
 
-    pip install delocate==0.6.4
+    pip install delocate==0.7.3
     delocate-wheel -L . -v python/dist/*.whl
     popd
 }
diff --git a/python-macos/multibuild b/python-macos/multibuild
index 413205a..7d67726 160000
--- a/python-macos/multibuild
+++ b/python-macos/multibuild
@@ -1 +1 @@
-Subproject commit 413205af2f6ee6976ac5f94da3e3aa012be91762
+Subproject commit 7d67726f08cb4ab80c235c5a97ee43b64f6112f1

-- 
To stop receiving notification emails like this one, please contact
['"[email protected]" <[email protected]>'].

Reply via email to