You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by ko...@apache.org on 2022/06/30 05:52:09 UTC

[arrow] branch master updated: ARROW-16937: [Packaging][deb] Drop support for Ubuntu impish (#13471)

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 871b346292 ARROW-16937: [Packaging][deb] Drop support for Ubuntu impish (#13471)
871b346292 is described below

commit 871b346292a903ce8218648a22d3be5a816df8a9
Author: Sutou Kouhei <ko...@clear-code.com>
AuthorDate: Thu Jun 30 14:52:03 2022 +0900

    ARROW-16937: [Packaging][deb] Drop support for Ubuntu impish (#13471)
    
    It will reach EOL at 2022-07-14.
    
    See also: https://wiki.ubuntu.com/Releases
    
    Authored-by: Sutou Kouhei <ko...@clear-code.com>
    Signed-off-by: Sutou Kouhei <ko...@clear-code.com>
---
 dev/release/binary-task.rb                         |  1 -
 .../apache-arrow/apt/ubuntu-impish-arm64/from      | 18 -----
 .../apache-arrow/apt/ubuntu-impish/Dockerfile      | 86 ----------------------
 dev/tasks/linux-packages/package-task.rb           |  2 -
 dev/tasks/tasks.yml                                |  1 -
 5 files changed, 108 deletions(-)

diff --git a/dev/release/binary-task.rb b/dev/release/binary-task.rb
index 25a94cca06..d7dd591b3b 100644
--- a/dev/release/binary-task.rb
+++ b/dev/release/binary-task.rb
@@ -1086,7 +1086,6 @@ class BinaryTask
       ["debian", "bookworm", "main"],
       ["ubuntu", "bionic", "main"],
       ["ubuntu", "focal", "main"],
-      ["ubuntu", "impish", "main"],
       ["ubuntu", "jammy", "main"],
     ]
   end
diff --git a/dev/tasks/linux-packages/apache-arrow/apt/ubuntu-impish-arm64/from b/dev/tasks/linux-packages/apache-arrow/apt/ubuntu-impish-arm64/from
deleted file mode 100644
index 0c8a1c7a1b..0000000000
--- a/dev/tasks/linux-packages/apache-arrow/apt/ubuntu-impish-arm64/from
+++ /dev/null
@@ -1,18 +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.
-
-arm64v8/ubuntu:impish
diff --git a/dev/tasks/linux-packages/apache-arrow/apt/ubuntu-impish/Dockerfile b/dev/tasks/linux-packages/apache-arrow/apt/ubuntu-impish/Dockerfile
deleted file mode 100644
index 1b5b3be850..0000000000
--- a/dev/tasks/linux-packages/apache-arrow/apt/ubuntu-impish/Dockerfile
+++ /dev/null
@@ -1,86 +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=ubuntu:impish
-FROM ${FROM}
-
-RUN \
-  echo "debconf debconf/frontend select Noninteractive" | \
-    debconf-set-selections
-
-RUN \
-  echo 'APT::Install-Recommends "false";' > \
-    /etc/apt/apt.conf.d/disable-install-recommends
-
-ARG DEBUG
-RUN \
-  quiet=$([ "${DEBUG}" = "yes" ] || echo "-qq") && \
-  apt update ${quiet} && \
-  apt install -y -V ${quiet} \
-    build-essential \
-    ccache \
-    clang \
-    cmake \
-    debhelper \
-    devscripts \
-    git \
-    gtk-doc-tools \
-    libboost-filesystem-dev \
-    libboost-system-dev \
-    libbrotli-dev \
-    libbz2-dev \
-    libc-ares-dev \
-    libcurl4-openssl-dev \
-    libgirepository1.0-dev \
-    libglib2.0-doc \
-    libgmock-dev \
-    libgoogle-glog-dev \
-    libgrpc++-dev \
-    libgtest-dev \
-    libjemalloc-dev \
-    liblz4-dev \
-    libprotoc-dev \
-    libprotobuf-dev \
-    libre2-dev \
-    libsnappy-dev \
-    libssl-dev \
-    libthrift-dev \
-    libutf8proc-dev \
-    libzstd-dev \
-    llvm-dev \
-    lsb-release \
-    ninja-build \
-    nlohmann-json3-dev \
-    pkg-config \
-    protobuf-compiler-grpc \
-    python3-dev \
-    python3-numpy \
-    python3-pip \
-    python3-setuptools \
-    rapidjson-dev \
-    tzdata \
-    valac \
-    zlib1g-dev && \
-  if apt list | grep -q '^libcuda1'; then \
-    apt install -y -V ${quiet} nvidia-cuda-toolkit; \
-  else \
-    :; \
-  fi && \
-  apt clean && \
-  python3 -m pip install --no-use-pep517 meson && \
-  ln -s /usr/local/bin/meson /usr/bin/ && \
-  rm -rf /var/lib/apt/lists/*
diff --git a/dev/tasks/linux-packages/package-task.rb b/dev/tasks/linux-packages/package-task.rb
index 96499771ad..19ae456760 100644
--- a/dev/tasks/linux-packages/package-task.rb
+++ b/dev/tasks/linux-packages/package-task.rb
@@ -288,8 +288,6 @@ class PackageTask
       # "ubuntu-bionic-arm64",
       "ubuntu-focal",
       # "ubuntu-focal-arm64",
-      "ubuntu-impish",
-      # "ubuntu-impish-arm64",
       "ubuntu-jammy",
       # "ubuntu-jammy-arm64",
     ]
diff --git a/dev/tasks/tasks.yml b/dev/tasks/tasks.yml
index 142dc17f10..12afbcc5d5 100644
--- a/dev/tasks/tasks.yml
+++ b/dev/tasks/tasks.yml
@@ -553,7 +553,6 @@ tasks:
                   "debian-bookworm",
                   "ubuntu-bionic",
                   "ubuntu-focal",
-                  "ubuntu-impish",
                   "ubuntu-jammy"] %}
   {% for architecture in ["amd64", "arm64"] %}
   {{ target }}-{{ architecture }}: