Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id D2819200D14 for ; Tue, 3 Oct 2017 14:59:46 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id D12A51609D2; Tue, 3 Oct 2017 12:59:46 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 0B17B160BE9 for ; Tue, 3 Oct 2017 14:59:45 +0200 (CEST) Received: (qmail 29791 invoked by uid 500); 3 Oct 2017 12:59:45 -0000 Mailing-List: contact commits-help@arrow.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@arrow.apache.org Delivered-To: mailing list commits@arrow.apache.org Received: (qmail 29712 invoked by uid 99); 3 Oct 2017 12:59:45 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 03 Oct 2017 12:59:45 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 055C0F5C58; Tue, 3 Oct 2017 12:59:44 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: wesm@apache.org To: commits@arrow.apache.org Date: Tue, 03 Oct 2017 12:59:58 -0000 Message-Id: <6c00464ddedf452f94e2eba6faba10e0@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [16/18] arrow git commit: ARROW-1620: Python: Download Boost in manylinux1 build from bintray archived-at: Tue, 03 Oct 2017 12:59:47 -0000 ARROW-1620: Python: Download Boost in manylinux1 build from bintray Author: Uwe L. Korn 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/bdfa65e3 Tree: http://git-wip-us.apache.org/repos/asf/arrow/tree/bdfa65e3 Diff: http://git-wip-us.apache.org/repos/asf/arrow/diff/bdfa65e3 Branch: refs/heads/master Commit: bdfa65e3862fd674c6900b5c65230177185fe8a6 Parents: c358154 Author: Uwe L. Korn Authored: Thu Sep 28 15:47:11 2017 +0200 Committer: Wes McKinney Committed: Tue Oct 3 08:59:22 2017 -0400 ---------------------------------------------------------------------- python/manylinux1/scripts/build_boost.sh | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/arrow/blob/bdfa65e3/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}