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 b43c6f6b18 ARROW-17079: [C++] Improve error messages for AWS S3 calls 
(#13979)
     add 93b63e8f3b ARROW-12175: [C++] Fix CMake packages (#13892)

No new revisions were added by this update.

Summary of changes:
 ci/scripts/python_wheel_macos_build.sh             |   2 +-
 ci/scripts/python_wheel_manylinux_build.sh         |   2 +-
 ci/scripts/python_wheel_windows_build.bat          |   1 +
 cpp/CMakeLists.txt                                 |  70 +---
 cpp/cmake_modules/BuildUtils.cmake                 |  89 ++--
 cpp/cmake_modules/FindArrow.cmake                  | 466 ---------------------
 cpp/cmake_modules/FindArrowCUDA.cmake              |  88 ----
 cpp/cmake_modules/FindArrowDataset.cmake           |  88 ----
 cpp/cmake_modules/FindArrowFlight.cmake            |  89 ----
 cpp/cmake_modules/FindArrowFlightSql.cmake         |  93 ----
 cpp/cmake_modules/FindArrowFlightTesting.cmake     |  98 -----
 cpp/cmake_modules/FindArrowPython.cmake            |  87 ----
 cpp/cmake_modules/FindArrowPythonFlight.cmake      |  94 -----
 cpp/cmake_modules/FindArrowSubstrait.cmake         |  92 ----
 cpp/cmake_modules/FindArrowTesting.cmake           |  89 ----
 cpp/cmake_modules/FindBrotli.cmake                 |   4 +
 cpp/cmake_modules/FindClangTools.cmake             |  17 +-
 cpp/cmake_modules/FindGLOG.cmake                   |   4 +
 cpp/cmake_modules/FindGandiva.cmake                |  94 -----
 cpp/cmake_modules/FindLLVMAlt.cmake                |  33 +-
 cpp/cmake_modules/FindORC.cmake                    |   4 +
 cpp/cmake_modules/FindOpenSSLAlt.cmake             |  59 +--
 cpp/cmake_modules/FindParquet.cmake                | 126 ------
 cpp/cmake_modules/FindPlasma.cmake                 | 102 -----
 cpp/cmake_modules/FindPython3Alt.cmake             |   4 +
 cpp/cmake_modules/FindRapidJSONAlt.cmake           |   4 +
 cpp/cmake_modules/FindSQLite3Alt.cmake             |   4 +
 cpp/cmake_modules/FindSnappyAlt.cmake              |   4 +
 cpp/cmake_modules/FindThrift.cmake                 |   4 +
 cpp/cmake_modules/Findc-aresAlt.cmake              |   4 +
 cpp/cmake_modules/FindgRPCAlt.cmake                |   4 +
 cpp/cmake_modules/FindgflagsAlt.cmake              |   4 +
 cpp/cmake_modules/Findjemalloc.cmake               |   4 +
 cpp/cmake_modules/Findlibrados.cmake               |   4 +
 cpp/cmake_modules/Findlz4Alt.cmake                 |   4 +
 cpp/cmake_modules/Findre2Alt.cmake                 |   4 +
 cpp/cmake_modules/Findutf8proc.cmake               |   4 +
 cpp/cmake_modules/Findzstd.cmake                   |   4 +
 cpp/cmake_modules/ThirdpartyToolchain.cmake        |  50 +--
 cpp/examples/minimal_build/CMakeLists.txt          |   6 +-
 cpp/examples/parquet/parquet_arrow/CMakeLists.txt  |   5 +-
 cpp/src/arrow/ArrowConfig.cmake.in                 | 161 +++++--
 cpp/src/arrow/ArrowTestingConfig.cmake.in          |  14 +-
 cpp/src/arrow/CMakeLists.txt                       |  41 +-
 cpp/src/arrow/dataset/ArrowDatasetConfig.cmake.in  |  14 +-
 cpp/src/arrow/dataset/CMakeLists.txt               |  30 +-
 cpp/src/arrow/engine/ArrowSubstraitConfig.cmake.in |  14 +-
 cpp/src/arrow/engine/CMakeLists.txt                |   6 +-
 cpp/src/arrow/flight/ArrowFlightConfig.cmake.in    |  14 +-
 .../arrow/flight/ArrowFlightTestingConfig.cmake.in |  14 +-
 cpp/src/arrow/flight/CMakeLists.txt                |  42 +-
 .../arrow/flight/sql/ArrowFlightSqlConfig.cmake.in |  14 +-
 cpp/src/arrow/flight/transport/ucx/CMakeLists.txt  |   2 -
 cpp/src/arrow/gpu/ArrowCUDAConfig.cmake.in         |  14 +-
 cpp/src/arrow/gpu/CMakeLists.txt                   |   5 +
 cpp/src/gandiva/CMakeLists.txt                     |  63 ++-
 cpp/src/gandiva/GandivaConfig.cmake.in             |  15 +-
 cpp/src/parquet/CMakeLists.txt                     |  14 +-
 cpp/src/parquet/ParquetConfig.cmake.in             |  14 +-
 cpp/src/plasma/CMakeLists.txt                      |  29 +-
 cpp/src/plasma/PlasmaConfig.cmake.in               |  25 +-
 dev/archery/archery/utils/lint.py                  |   1 +
 dev/release/verify-release-candidate.sh            |   8 +-
 dev/tasks/conda-recipes/arrow-cpp/meta.yaml        |   6 +-
 dev/tasks/homebrew-formulae/apache-arrow.rb        |   6 +-
 .../apache-arrow/debian/libarrow-cuda-dev.install  |   4 +-
 .../debian/libarrow-dataset-dev.install            |   4 +-
 .../apache-arrow/debian/libarrow-dev.install       |   8 +-
 .../debian/libarrow-flight-dev.install             |   4 +-
 .../debian/libarrow-flight-sql-dev.install         |   4 +-
 .../apache-arrow/debian/libgandiva-dev.install     |   4 +-
 .../apache-arrow/debian/libparquet-dev.install     |   4 +-
 .../apache-arrow/debian/libplasma-dev.install      |   4 +-
 .../linux-packages/apache-arrow/yum/arrow.spec.in  |  48 +--
 python/CMakeLists.txt                              |  22 +-
 python/examples/minimal_build/build_conda.sh       |   1 +
 python/examples/minimal_build/build_venv.sh        |   1 +
 python/pyarrow/src/ArrowPythonConfig.cmake.in      |  17 +-
 .../pyarrow/src/ArrowPythonFlightConfig.cmake.in   |  14 +-
 python/pyarrow/src/CMakeLists.txt                  | 111 +++--
 python/pyarrow/src/flight.h                        |   2 +-
 python/pyarrow/src/visibility.h                    |   2 +-
 python/setup.py                                    | 141 +++----
 r/configure                                        |   2 +-
 r/configure.win                                    |   4 +-
 85 files changed, 761 insertions(+), 2214 deletions(-)
 delete mode 100644 cpp/cmake_modules/FindArrow.cmake
 delete mode 100644 cpp/cmake_modules/FindArrowCUDA.cmake
 delete mode 100644 cpp/cmake_modules/FindArrowDataset.cmake
 delete mode 100644 cpp/cmake_modules/FindArrowFlight.cmake
 delete mode 100644 cpp/cmake_modules/FindArrowFlightSql.cmake
 delete mode 100644 cpp/cmake_modules/FindArrowFlightTesting.cmake
 delete mode 100644 cpp/cmake_modules/FindArrowPython.cmake
 delete mode 100644 cpp/cmake_modules/FindArrowPythonFlight.cmake
 delete mode 100644 cpp/cmake_modules/FindArrowSubstrait.cmake
 delete mode 100644 cpp/cmake_modules/FindArrowTesting.cmake
 delete mode 100644 cpp/cmake_modules/FindGandiva.cmake
 delete mode 100644 cpp/cmake_modules/FindParquet.cmake
 delete mode 100644 cpp/cmake_modules/FindPlasma.cmake

Reply via email to