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 <[email protected]>
AuthorDate: Mon Jul 2 14:28:06 2018 +0200

    ARROW-2781: [Python] Download boost using curl in manylinux1 image
    
    Author: Korn, Uwe <[email protected]>
    
    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}

Reply via email to