kou commented on PR #13886: URL: https://github.com/apache/arrow/pull/13886#issuecomment-1215760145
Oh, sorry. https://github.com/apache/arrow/pull/13883 misses some changes. Could you try the following patch instead of the changes in this pull request? ```diff diff --git a/dev/tasks/linux-packages/apache-arrow/debian/control.in b/dev/tasks/linux-packages/apache-arrow/debian/control.in index 12729cbf9f..edf117cd7e 100644 --- a/dev/tasks/linux-packages/apache-arrow/debian/control.in +++ b/dev/tasks/linux-packages/apache-arrow/debian/control.in @@ -145,6 +145,7 @@ Depends: libbrotli-dev, libbz2-dev, @USE_SYSTEM_C_ARES@ libc-ares-dev, + libcurl4-openssl-dev, @USE_SYSTEM_GRPC@ libgrpc++-dev, liblz4-dev, libre2-dev, diff --git a/dev/tasks/linux-packages/apache-arrow/yum/arrow.spec.in b/dev/tasks/linux-packages/apache-arrow/yum/arrow.spec.in index 5fe63284d0..6930340d41 100644 --- a/dev/tasks/linux-packages/apache-arrow/yum/arrow.spec.in +++ b/dev/tasks/linux-packages/apache-arrow/yum/arrow.spec.in @@ -272,6 +272,7 @@ Requires: bzip2-devel %if %{use_flight} Requires: c-ares-devel %endif +Requires: curl-devel %if %{use_gcs} Requires: json-devel %endif ``` The error is occurred in a test Docker container. In a test Docker container, dependencies must be installed as dependencies of `libarrow-dev`/`arrow-devel` automatically. The changes in this pull request install curl on host. But the error isn't related to host environment. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
