From commits-return-1517-archive-asf-public=cust-asf.ponee.io@parquet.apache.org Tue Jan 15 13:08:47 2019 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id 40855180609 for ; Tue, 15 Jan 2019 13:08:47 +0100 (CET) Received: (qmail 71695 invoked by uid 500); 15 Jan 2019 12:08:46 -0000 Mailing-List: contact commits-help@parquet.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@parquet.apache.org Delivered-To: mailing list commits@parquet.apache.org Received: (qmail 71686 invoked by uid 99); 15 Jan 2019 12:08:46 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 15 Jan 2019 12:08:46 +0000 From: GitBox To: commits@parquet.apache.org Subject: [parquet-mr] Diff for: [GitHub] gszadovszky merged pull request #592: PARQUET-1492: Remove protobuf build Message-ID: <154755412568.6648.11989849409776508606.gitbox@gitbox.apache.org> Date: Tue, 15 Jan 2019 12:08:45 -0000 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit diff --git a/README.md b/README.md index 253032a92..890b30aaa 100644 --- a/README.md +++ b/README.md @@ -28,21 +28,7 @@ You can find some details about the format and intended use cases in our [Hadoop ## Building -Parquet-MR uses Maven to build and depends on both the thrift and protoc compilers. - -### Install Protobuf - -To build and install the protobuf compiler, run: - -``` -wget https://github.com/google/protobuf/archive/v3.5.1.tar.gz -O protobuf-3.5.1.tar.gz -tar xzf protobuf-3.5.1.tar.gz -cd protobuf-3.5.1 -./configure -make -sudo make install -sudo ldconfig -``` +Parquet-MR uses Maven to build and depends on the thrift compiler (protoc is now managed by maven plugin). ### Install Thrift diff --git a/dev/travis-before_install.sh b/dev/travis-before_install.sh index 6d0427972..5161f223f 100644 --- a/dev/travis-before_install.sh +++ b/dev/travis-before_install.sh @@ -26,19 +26,6 @@ sudo apt-get install -qq build-essential pv autoconf automake libtool curl make g++ unzip libboost-dev libboost-test-dev libboost-program-options-dev \ libevent-dev automake libtool flex bison pkg-config g++ libssl-dev xmlstarlet date -mkdir protobuf_install -pushd protobuf_install -wget https://github.com/google/protobuf/archive/v3.5.1.tar.gz -O protobuf-3.5.1.tar.gz -tar xzf protobuf-3.5.1.tar.gz -cd protobuf-3.5.1 -./autogen.sh -./configure -make -sudo make install -sudo ldconfig -protoc --version -popd -date pwd wget -nv http://archive.apache.org/dist/thrift/0.9.3/thrift-0.9.3.tar.gz tar zxf thrift-0.9.3.tar.gz With regards, Apache Git Services