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 2017/09/28 13:47:16 UTC

arrow git commit: ARROW-1620: Python: Download Boost in manylinux1 build from bintray

Repository: arrow
Updated Branches:
  refs/heads/master 78181d8ec -> bcb29d081


ARROW-1620: Python: Download Boost in manylinux1 build from bintray

Author: Uwe L. Korn <uw...@xhochy.com>

Closes #1141 from xhochy/ARROW-1620 and squashes the following commits:

30da182 [Uwe L. Korn] ARROW-1620: Python: Download Boost in manylinux1 build from bintray


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

Branch: refs/heads/master
Commit: bcb29d081f26852c2d7b8329f542b1e81bfc9681
Parents: 78181d8
Author: Uwe L. Korn <uw...@xhochy.com>
Authored: Thu Sep 28 15:47:11 2017 +0200
Committer: Uwe L. Korn <uw...@xhochy.com>
Committed: Thu Sep 28 15:47:11 2017 +0200

----------------------------------------------------------------------
 python/manylinux1/scripts/build_boost.sh | 11 +++++++----
 1 file changed, 7 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/arrow/blob/bcb29d08/python/manylinux1/scripts/build_boost.sh
----------------------------------------------------------------------
diff --git a/python/manylinux1/scripts/build_boost.sh b/python/manylinux1/scripts/build_boost.sh
index 3c11f3a..4650cde 100755
--- a/python/manylinux1/scripts/build_boost.sh
+++ b/python/manylinux1/scripts/build_boost.sh
@@ -16,10 +16,13 @@
 # specific language governing permissions and limitations
 # under the License.
 
-wget --no-check-certificate http://downloads.sourceforge.net/project/boost/boost/1.60.0/boost_1_60_0.tar.gz -O /boost_1_60_0.tar.gz
-tar xf boost_1_60_0.tar.gz
-pushd /boost_1_60_0
+BOOST_VERSION=1.65.1
+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
+tar xf boost_${BOOST_VERSION_UNDERSCORE}.tar.gz
+pushd /boost_${BOOST_VERSION_UNDERSCORE}
 ./bootstrap.sh
 ./bjam cxxflags=-fPIC cflags=-fPIC --prefix=/usr --with-filesystem --with-date_time --with-system --with-regex install
 popd
-rm -rf boost_1_60_0.tar.gz boost_1_60_0
+rm -rf boost_${BOOST_VERSION_UNDERSCORE}.tar.gz boost_${BOOST_VERSION_UNDERSCORE}