kou commented on code in PR #44989:
URL: https://github.com/apache/arrow/pull/44989#discussion_r1936490226
##########
dev/tasks/linux-packages/apache-arrow/apt/ubuntu-focal/Dockerfile:
##########
@@ -79,3 +80,9 @@ RUN \
ln -fs /usr/local/bin/gi-docgen /usr/bin && \
apt clean && \
rm -rf /var/lib/apt/lists/*
+
+ARG cmake=3.25.0
+RUN curl -L \
Review Comment:
We can remove the check by:
```diff
diff --git a/dev/tasks/linux-packages/apache-arrow/debian/control.in
b/dev/tasks/linux-packages/apache-arrow/debian/control.in
index 258880265e..29de295509 100644
--- a/dev/tasks/linux-packages/apache-arrow/debian/control.in
+++ b/dev/tasks/linux-packages/apache-arrow/debian/control.in
@@ -3,7 +3,8 @@ Section: devel
Priority: optional
Maintainer: Apache Arrow Developers <[email protected]>
Build-Depends:
- cmake,
+# TODO: Enable this after we drop support for Ubuntu 22.04.
+# cmake,
debhelper (>= 12),
# TODO: Enable this after we drop support for Ubuntu 20.04.
# gi-docgen,
```
--
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]