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

kou pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-adbc.git


The following commit(s) were added to refs/heads/main by this push:
     new 674c87407 ci: drop Debian GNU/Linux bookworm from packaging (#4420)
674c87407 is described below

commit 674c874071d01d00b05c5ca2b6d0f859054d5fab
Author: takuya kodama <[email protected]>
AuthorDate: Sun Jun 21 08:04:33 2026 +0800

    ci: drop Debian GNU/Linux bookworm from packaging (#4420)
    
    Apache Arrow dropped Debian bookworm in apache/arrow#50201 because it
    reached
    end-of-life on 2026-06-10 [1], which breaks our Packaging workflow on
    the
    `Linux debian-bookworm` job. Follow upstream and drop bookworm: remove
    it from
    the matrix and the apt targets, delete its build image, and point the
    release-candidate verification and install docs at trixie.
    
    [1]: https://wiki.debian.org/DebianReleases
    
    Closes #4419.
---
 .github/workflows/packaging.yml                  |  1 -
 ci/linux-packages/Rakefile                       |  1 -
 ci/linux-packages/apt/debian-bookworm/Dockerfile | 64 ------------------------
 dev/release/verify-release-candidate.sh          |  2 +-
 docs/source/cpp/driver_manager.rst               |  2 +-
 docs/source/driver/installation.rst              |  1 -
 6 files changed, 2 insertions(+), 69 deletions(-)

diff --git a/.github/workflows/packaging.yml b/.github/workflows/packaging.yml
index 8e9aa5bd6..9ee00e8b2 100644
--- a/.github/workflows/packaging.yml
+++ b/.github/workflows/packaging.yml
@@ -379,7 +379,6 @@ jobs:
           - almalinux-8
           - almalinux-9
           - almalinux-10
-          - debian-bookworm
           - debian-trixie
           - ubuntu-jammy
           - ubuntu-noble
diff --git a/ci/linux-packages/Rakefile b/ci/linux-packages/Rakefile
index ae6a58a38..8895a3489 100644
--- a/ci/linux-packages/Rakefile
+++ b/ci/linux-packages/Rakefile
@@ -129,7 +129,6 @@ class ADBCPackageTask < PackageTask
 
   def apt_targets_default
     [
-      "debian-bookworm",
       "debian-trixie",
       "ubuntu-jammy",
       "ubuntu-noble",
diff --git a/ci/linux-packages/apt/debian-bookworm/Dockerfile 
b/ci/linux-packages/apt/debian-bookworm/Dockerfile
deleted file mode 100644
index b759178a2..000000000
--- a/ci/linux-packages/apt/debian-bookworm/Dockerfile
+++ /dev/null
@@ -1,64 +0,0 @@
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements.  See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership.  The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License.  You may obtain a copy of the License at
-#
-#   http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-# KIND, either express or implied.  See the License for the
-# specific language governing permissions and limitations
-# under the License.
-
-ARG FROM=debian:bookworm
-FROM ${FROM}
-
-ENV IMAGE_VERSION=2026-01-27
-
-RUN \
-  echo "debconf debconf/frontend select Noninteractive" | \
-    debconf-set-selections
-
-RUN \
-  echo 'APT::Install-Recommends "false";' > \
-    /etc/apt/apt.conf.d/disable-install-recommends
-
-RUN sed -i'' -e 's/main$/main contrib non-free/g' 
/etc/apt/sources.list.d/debian.sources
-
-ARG DEBUG
-RUN \
-  quiet=$([ "${DEBUG}" = "yes" ] || echo "-qq") && \
-  apt update ${quiet} && \
-  apt install -y -V ${quiet} \
-    ca-certificates \
-    lsb-release \
-    wget && \
-  wget https://packages.apache.org/artifactory/arrow/$(lsb_release --id 
--short | tr 'A-Z' 'a-z')/apache-arrow-apt-source-latest-$(lsb_release 
--codename --short).deb && \
-  apt install -y -V ${quiet} \
-    ./apache-arrow-apt-source-latest-$(lsb_release --codename --short).deb && \
-  rm apache-arrow-apt-source-latest-$(lsb_release --codename --short).deb && \
-  echo "deb http://deb.debian.org/debian $(lsb_release --codename 
--short)-backports main" >> /etc/apt/sources.list && \
-  apt update && \
-  apt install -y -V ${quiet} \
-    build-essential \
-    ccache \
-    cmake \
-    debhelper \
-    devscripts \
-    gobject-introspection \
-    libarrow-glib-dev \
-    libgirepository1.0-dev \
-    libpq-dev \
-    libsqlite3-dev \
-    meson \
-    ninja-build \
-    pkg-config \
-    tzdata \
-    valac && \
-  apt install -y -V -t $(lsb_release --codename --short)-backports ${quiet} 
golang-1.21 && \
-  apt clean
diff --git a/dev/release/verify-release-candidate.sh 
b/dev/release/verify-release-candidate.sh
index 76ffa823e..de0c7d54e 100755
--- a/dev/release/verify-release-candidate.sh
+++ b/dev/release/verify-release-candidate.sh
@@ -168,7 +168,7 @@ test_apt() {
   if [ "${TEST_STAGING:-0}" -gt 0 ]; then
     verify_type=staging-${verify_type}
   fi
-  for target in "debian:bookworm" \
+  for target in "debian:trixie" \
                 "ubuntu:jammy"; do \
     show_info "Verifying ${target}..."
     if ! docker run \
diff --git a/docs/source/cpp/driver_manager.rst 
b/docs/source/cpp/driver_manager.rst
index 002e8bc20..415d2cbdb 100644
--- a/docs/source/cpp/driver_manager.rst
+++ b/docs/source/cpp/driver_manager.rst
@@ -32,7 +32,7 @@ conda-forge:
 
 You can use ``apt`` on the following platforms:
 
-- Debian GNU/Linux bookworm
+- Debian GNU/Linux trixie
 - Ubuntu 22.04
 
 Prepare the Apache Arrow APT repository:
diff --git a/docs/source/driver/installation.rst 
b/docs/source/driver/installation.rst
index dca11d5ae..d3b2c189c 100644
--- a/docs/source/driver/installation.rst
+++ b/docs/source/driver/installation.rst
@@ -56,7 +56,6 @@ Install the appropriate driver package.  Packages for ``apt`` 
and ``dnf`` are pr
 
 You can use ``apt`` on the following platforms:
 
-- Debian GNU/Linux 12 ("bookworm")
 - Debian GNU/Linux 13 ("trixie")
 - Ubuntu 22.04 LTS ("jammy")
 - Ubuntu 24.04 LTS ("noble")

Reply via email to