You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ko...@apache.org on 2020/08/06 06:07:17 UTC

[arrow] branch master updated (ef2ccfc -> 81d3f26)

This is an automated email from the ASF dual-hosted git repository.

kou pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git.


    from ef2ccfc  ARROW-8002: [C++][Dataset][R] Support partitioned dataset writing
     add 81d3f26  ARROW-9412: [C++] Add non-bundled dependencies to INTERFACE_LINK_LIBRARIES of static libarrow

No new revisions were added by this update.

Summary of changes:
 .github/workflows/cpp.yml                          |  9 +-
 ci/docker/ubuntu-14.04-cpp.dockerfile              |  2 +-
 ci/scripts/PKGBUILD                                |  3 +
 ci/scripts/cpp_build.sh                            |  2 +-
 cpp/CMakeLists.txt                                 | 32 +++++++-
 cpp/cmake_modules/BuildUtils.cmake                 | 21 +++--
 cpp/cmake_modules/DefineOptions.cmake              | 46 +++++++++--
 cpp/cmake_modules/FindBrotli.cmake                 | 23 +++---
 cpp/cmake_modules/FindGLOG.cmake                   | 13 +--
 cpp/cmake_modules/FindGPerf.cmake                  |  4 +-
 cpp/cmake_modules/FindGTest.cmake                  |  2 +-
 cpp/cmake_modules/FindLz4.cmake                    | 59 ++++++++-----
 cpp/cmake_modules/FindORC.cmake                    |  8 +-
 cpp/cmake_modules/FindRE2.cmake                    | 11 +--
 .../{FindSnappyAlt.cmake => FindSnappy.cmake}      | 32 ++++++--
 cpp/cmake_modules/FindThrift.cmake                 | 53 ++++++++++--
 cpp/cmake_modules/FindgRPCAlt.cmake                | 37 +++++----
 cpp/cmake_modules/FindgflagsAlt.cmake              |  6 +-
 cpp/cmake_modules/Findutf8proc.cmake               | 41 +++++----
 .../{FindZSTD.cmake => Findzstd.cmake}             | 33 +++++---
 cpp/cmake_modules/ThirdpartyToolchain.cmake        | 96 ++++++++++++----------
 cpp/examples/minimal_build/README.md               | 39 +++++----
 .../examples/minimal_build/docker-compose.yml      | 56 +++++++------
 .../{Dockerfile => minimal.dockerfile}             |  4 +-
 cpp/examples/minimal_build/run_static.sh           | 10 ++-
 .../minimal_build/system_dependency.dockerfile     | 32 ++++----
 cpp/src/arrow/ArrowConfig.cmake.in                 | 26 ++++++
 cpp/src/arrow/gpu/CMakeLists.txt                   | 10 ++-
 cpp/src/gandiva/jni/CMakeLists.txt                 | 16 ++--
 cpp/src/jni/orc/CMakeLists.txt                     |  5 +-
 .../github.linux.yml                               | 20 ++---
 .../debian.ubuntu-xenial/libarrow-dev.install      |  5 ++
 .../debian.ubuntu-xenial/libgandiva-dev.install    |  1 +
 .../apache-arrow/debian/libarrow-dev.install       |  5 ++
 .../apache-arrow/debian/libgandiva-dev.install     |  1 +
 .../linux-packages/apache-arrow/yum/arrow.spec.in  | 22 ++++-
 dev/tasks/python-wheels/win-build.bat              |  4 +-
 dev/tasks/tasks.yml                                | 21 +++++
 python/manylinux1/build_arrow.sh                   |  3 +-
 python/manylinux201x/build_arrow.sh                |  3 +-
 40 files changed, 535 insertions(+), 281 deletions(-)
 rename cpp/cmake_modules/{FindSnappyAlt.cmake => FindSnappy.cmake} (51%)
 rename cpp/cmake_modules/{FindZSTD.cmake => Findzstd.cmake} (69%)
 copy ruby/red-arrow/lib/arrow/csv-read-options.rb => cpp/examples/minimal_build/docker-compose.yml (54%)
 rename cpp/examples/minimal_build/{Dockerfile => minimal.dockerfile} (93%)
 copy python/examples/minimal_build/Dockerfile.ubuntu => cpp/examples/minimal_build/system_dependency.dockerfile (68%)
 copy dev/tasks/{docker-tests => cpp-examples}/github.linux.yml (73%)