You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by uw...@apache.org on 2018/07/02 12:28:14 UTC

[arrow] branch master updated: ARROW-2781: [Python] Download boost using curl in manylinux1 image

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.git


The following commit(s) were added to refs/heads/master by this push:
     new c9613cc  ARROW-2781: [Python] Download boost using curl in manylinux1 image
c9613cc is described below

commit c9613cc4d1b1557004855307352273d4787ab409
Author: Korn, Uwe <Uw...@blue-yonder.com>
AuthorDate: Mon Jul 2 14:28:06 2018 +0200

    ARROW-2781: [Python] Download boost using curl in manylinux1 image
    
    Author: Korn, Uwe <Uw...@blue-yonder.com>
    
    Closes #2202 from xhochy/ARROW-2781 and squashes the following commits:
    
    df8e9efa <Korn, Uwe> ARROW-2781:  Download boost using curl in manylinux1 image
---
 python/manylinux1/scripts/build_boost.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/python/manylinux1/scripts/build_boost.sh b/python/manylinux1/scripts/build_boost.sh
index 80b79ab..68d4501 100755
--- a/python/manylinux1/scripts/build_boost.sh
+++ b/python/manylinux1/scripts/build_boost.sh
@@ -19,7 +19,7 @@
 BOOST_VERSION=1.66.0
 BOOST_VERSION_UNDERSCORE=${BOOST_VERSION//\./_}
 
-wget --no-check-certificate https://dl.bintray.com/boostorg/release/${BOOST_VERSION}/source/boost_${BOOST_VERSION_UNDERSCORE}.tar.gz -O /boost_${BOOST_VERSION_UNDERSCORE}.tar.gz
+curl -sL https://dl.bintray.com/boostorg/release/${BOOST_VERSION}/source/boost_${BOOST_VERSION_UNDERSCORE}.tar.gz -o /boost_${BOOST_VERSION_UNDERSCORE}.tar.gz
 tar xf boost_${BOOST_VERSION_UNDERSCORE}.tar.gz
 mkdir /arrow_boost
 pushd /boost_${BOOST_VERSION_UNDERSCORE}