Repository: parquet-cpp Updated Branches: refs/heads/master d7625e9ad -> 8d3453fed
PARQUET-814: Remove conda recipes Author: Korn, Uwe <[email protected]> Closes #208 from xhochy/PARQUET-814 and squashes the following commits: 1deaae8 [Korn, Uwe] PARQUET-814: Remove conda recipes Project: http://git-wip-us.apache.org/repos/asf/parquet-cpp/repo Commit: http://git-wip-us.apache.org/repos/asf/parquet-cpp/commit/8d3453fe Tree: http://git-wip-us.apache.org/repos/asf/parquet-cpp/tree/8d3453fe Diff: http://git-wip-us.apache.org/repos/asf/parquet-cpp/diff/8d3453fe Branch: refs/heads/master Commit: 8d3453fedfe32aaac1d0145ed83f1c2c4d2b75be Parents: d7625e9 Author: Korn, Uwe <[email protected]> Authored: Wed Dec 21 18:48:58 2016 -0500 Committer: Wes McKinney <[email protected]> Committed: Wed Dec 21 18:48:58 2016 -0500 ---------------------------------------------------------------------- conda.recipe/build.sh | 78 --------------------------------------------- conda.recipe/meta.yaml | 51 ----------------------------- 2 files changed, 129 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/parquet-cpp/blob/8d3453fe/conda.recipe/build.sh ---------------------------------------------------------------------- diff --git a/conda.recipe/build.sh b/conda.recipe/build.sh deleted file mode 100644 index 4d32777..0000000 --- a/conda.recipe/build.sh +++ /dev/null @@ -1,78 +0,0 @@ -#!/bin/bash - -# Licensed to the Apache Software Foundation (ASF) under one -# or more contributor license agreements. See the NOTICE file -# distributed with this work for additional information -# regarding copyright ownership. The ASF licenses this file -# to you under the Apache License, Version 2.0 (the -# "License"); you may not use this file except in compliance -# with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, -# software distributed under the License is distributed on an -# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -# KIND, either express or implied. See the License for the -# specific language governing permissions and limitations -# under the License. - -set -e -set -x - -if [ "$(uname)" == "Darwin" ]; then - # C++11 finagling for Mac OSX - export CC=clang - export CXX=clang++ - export MACOSX_VERSION_MIN="10.7" - CXXFLAGS="${CXXFLAGS} -mmacosx-version-min=${MACOSX_VERSION_MIN}" - CXXFLAGS="${CXXFLAGS} -stdlib=libc++ -std=c++11" - export LDFLAGS="${LDFLAGS} -mmacosx-version-min=${MACOSX_VERSION_MIN}" - export LDFLAGS="${LDFLAGS} -stdlib=libc++ -std=c++11" - export LINKFLAGS="${LDFLAGS}" - export MACOSX_DEPLOYMENT_TARGET=10.7 -fi - -cd $RECIPE_DIR - -# Build dependencies -export BOOST_ROOT=$PREFIX - -export SNAPPY_HOME=$PREFIX -export THRIFT_HOME=$PREFIX -export ZLIB_HOME=$PREFIX - -cd .. - -rm -rf conda-build -mkdir conda-build - -cp -r thirdparty conda-build/ - -# For running the unit tests -export PARQUET_TEST_DATA=`pwd`/data - -cd conda-build -pwd - -# Build googletest for running unit tests - -# Work around conda certificate failure -export PARQUET_INSECURE_CURL=1 - -./thirdparty/download_thirdparty.sh -./thirdparty/build_thirdparty.sh gtest - -source thirdparty/versions.sh -export GTEST_HOME=`pwd`/thirdparty/$GTEST_BASEDIR - -cmake \ - -DCMAKE_BUILD_TYPE=debug \ - -DCMAKE_INSTALL_PREFIX=$PREFIX \ - -DPARQUET_BUILD_BENCHMARKS=off \ - -DPARQUET_ARROW=ON \ - .. - -make -ctest -L unittest -make install http://git-wip-us.apache.org/repos/asf/parquet-cpp/blob/8d3453fe/conda.recipe/meta.yaml ---------------------------------------------------------------------- diff --git a/conda.recipe/meta.yaml b/conda.recipe/meta.yaml deleted file mode 100644 index eff62e2..0000000 --- a/conda.recipe/meta.yaml +++ /dev/null @@ -1,51 +0,0 @@ -# Licensed to the Apache Software Foundation (ASF) under one -# or more contributor license agreements. See the NOTICE file -# distributed with this work for additional information -# regarding copyright ownership. The ASF licenses this file -# to you under the Apache License, Version 2.0 (the -# "License"); you may not use this file except in compliance -# with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, -# software distributed under the License is distributed on an -# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY -# KIND, either express or implied. See the License for the -# specific language governing permissions and limitations -# under the License. - -package: - name: parquet-cpp - version: "0.1" - -build: - number: {{environ.get('TRAVIS_BUILD_NUMBER', 0)}} # [unix] - script_env: - - CC [linux] - - CXX [linux] - - LD_LIBRARY_PATH [linux] - skip: true # [win] - -requirements: - build: - - boost - - cmake - - zlib - - snappy - - thrift-cpp - - curl - -test: - commands: - - test -f $PREFIX/lib/libparquet.so # [linux] - - test -f $PREFIX/include/parquet/api/reader.h - -about: - home: http://github.com/apache/parquet-cpp - license: Apache 2.0 - summary: 'C++ libraries for the Apache Parquet file format' - -extra: - recipe-maintainers: - - wesm
