From a8d6c726c25eeca8b4572fe1c3c943c802ddf5be Mon Sep 17 00:00:00 2001 From: Isaac Brodsky Date: Fri, 24 Apr 2020 15:41:47 -0700 Subject: [PATCH 1/2] Add ARROW_FILESYSTEM feature --- ports/arrow/CONTROL | 5 ++++- ports/arrow/portfile.cmake | 7 ++++--- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/ports/arrow/CONTROL b/ports/arrow/CONTROL index f2461dfefbd2c4..e620c925b44da8 100644 --- a/ports/arrow/CONTROL +++ b/ports/arrow/CONTROL @@ -4,7 +4,7 @@ Build-Depends: boost-system, boost-filesystem, boost-multiprecision, boost-algor Homepage: https://github.com/apache/arrow Description: Apache Arrow is a columnar in-memory analytics layer designed to accelerate big data. It houses a set of canonical in-memory representations of flat and hierarchical data along with multiple language-bindings for structure manipulation. It also provides IPC and common algorithm implementations. Supports: x64 -Default-Features: csv, json, parquet +Default-Features: csv, json, parquet, filesystem Feature: csv Description: CSV file support @@ -14,3 +14,6 @@ Description: JSON file support Feature: parquet Description: Parquet file support + +Feature: filesystem +Description: Local filesystem support diff --git a/ports/arrow/portfile.cmake b/ports/arrow/portfile.cmake index cb26d07ffd72a8..b73ed86ea31c62 100644 --- a/ports/arrow/portfile.cmake +++ b/ports/arrow/portfile.cmake @@ -16,9 +16,10 @@ string(COMPARE EQUAL ${VCPKG_LIBRARY_LINKAGE} "dynamic" ARROW_BUILD_SHARED) string(COMPARE EQUAL ${VCPKG_LIBRARY_LINKAGE} "static" ARROW_BUILD_STATIC) vcpkg_check_features(OUT_FEATURE_OPTIONS FEATURE_OPTIONS - "csv" ARROW_CSV - "json" ARROW_JSON - "parquet" ARROW_PARQUET + "csv" ARROW_CSV + "json" ARROW_JSON + "parquet" ARROW_PARQUET + "filesystem" ARROW_FILESYSTEM ) vcpkg_configure_cmake( From 2444cfdf6925b9c65fc97f1d983b501094f46246 Mon Sep 17 00:00:00 2001 From: Isaac Brodsky Date: Mon, 27 Apr 2020 08:02:09 -0700 Subject: [PATCH 2/2] update arrow version --- ports/arrow/CONTROL | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ports/arrow/CONTROL b/ports/arrow/CONTROL index e620c925b44da8..3ccf626eb35486 100644 --- a/ports/arrow/CONTROL +++ b/ports/arrow/CONTROL @@ -1,5 +1,5 @@ Source: arrow -Version: 0.17.0-1 +Version: 0.17.0-2 Build-Depends: boost-system, boost-filesystem, boost-multiprecision, boost-algorithm, flatbuffers, rapidjson, zlib, lz4, brotli, bzip2, zstd, snappy, gflags, thrift, double-conversion, glog, uriparser, openssl Homepage: https://github.com/apache/arrow Description: Apache Arrow is a columnar in-memory analytics layer designed to accelerate big data. It houses a set of canonical in-memory representations of flat and hierarchical data along with multiple language-bindings for structure manipulation. It also provides IPC and common algorithm implementations.