Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .github/workflows/package_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,6 @@ jobs:
- amazon-linux-2023-arm64
- centos-9-stream-amd64
- centos-9-stream-arm64
- debian-bookworm-amd64
- debian-bookworm-arm64
- debian-trixie-amd64
- debian-trixie-arm64
- debian-forky-amd64
Expand Down
3 changes: 0 additions & 3 deletions dev/release/binary-task.rb
Original file line number Diff line number Diff line change
Expand Up @@ -1428,7 +1428,6 @@ def apt_recover_repositories_dir

def available_apt_targets
[
["debian", "bookworm", "main"],
["debian", "trixie", "main"],
["debian", "forky", "main"],
["ubuntu", "jammy", "main"],
Expand Down Expand Up @@ -2324,8 +2323,6 @@ def apt_test_targets_default
# Disable arm64 targets by default for now
# because they require some setups on host.
[
"debian-bookworm",
# "debian-bookworm-arm64",
"debian-trixie",
# "debian-trixie-arm64",
"debian-forky",
Expand Down
9 changes: 5 additions & 4 deletions dev/release/binary/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
# specific language governing permissions and limitations
# under the License.

FROM debian:bookworm
FROM debian:trixie

ENV DEBIAN_FRONTEND noninteractive
ENV DEBIAN_FRONTEND=noninteractive

ARG DEBUG

Expand Down Expand Up @@ -45,8 +45,9 @@ RUN locale-gen en_US.UTF-8
RUN mkdir -p /run/sshd
RUN echo "StreamLocalBindUnlink yes" >> /etc/ssh/sshd_config

ENV ARROW_USER arrow
ENV ARROW_UID 10000
ENV \
ARROW_USER=arrow \
ARROW_UID=10000

RUN \
groupadd --gid ${ARROW_UID} ${ARROW_USER} && \
Expand Down
6 changes: 2 additions & 4 deletions dev/release/verify-release-candidate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -214,8 +214,7 @@ test_apt() {

case "$(arch)" in
"x86_64")
for target in "debian:bookworm" \
"debian:trixie" \
for target in "debian:trixie" \
"debian:forky" \
"ubuntu:jammy" \
"ubuntu:noble" \
Expand All @@ -235,8 +234,7 @@ test_apt() {
done
;;
"aarch64")
for target in "arm64v8/debian:bookworm" \
"arm64v8/debian:trixie" \
for target in "arm64v8/debian:trixie" \
"arm64v8/debian:forky" \
"arm64v8/ubuntu:jammy" \
"arm64v8/ubuntu:noble" \
Expand Down

This file was deleted.

This file was deleted.

2 changes: 1 addition & 1 deletion dev/tasks/linux-packages/apache-arrow/debian/control.in
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Source: apache-arrow
Section: devel
Priority: optional
Maintainer: Apache Arrow Developers <dev@arrow.apache.org>
Maintainer: The Apache Software Foundation <dev@arrow.apache.org>
Build-Depends:
cmake,
debhelper (>= 12),
Expand Down
3 changes: 1 addition & 2 deletions dev/tasks/linux-packages/apache-arrow/debian/rules
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,7 @@ override_dh_auto_configure:
else \
ARROW_CUDA=OFF; \
fi; \
if [ "$(VERSION_CODENAME)" = "bookworm" ] || \
[ "$(VERSION_CODENAME)" = "noble" ]; then \
if [ "$(VERSION_CODENAME)" = "noble" ]; then \
: "System Abseil is too old for GCS v3"; \
absl_SOURCE=BUNDLED; \
else \
Expand Down
2 changes: 0 additions & 2 deletions dev/tasks/linux-packages/package-task.rb
Original file line number Diff line number Diff line change
Expand Up @@ -283,8 +283,6 @@ def apt_targets_default
# Disable arm64 targets by default for now
# because they require some setups on host.
[
"debian-bookworm",
# "debian-bookworm-arm64",
"debian-trixie",
# "debian-trixie-arm64",
"debian-forky",
Expand Down
Loading