From 9cf6159c4662607ac9b4248a55fc2512c46c24df Mon Sep 17 00:00:00 2001 From: OndraK Date: Thu, 18 May 2023 13:49:16 +0200 Subject: [PATCH 1/2] Remove ubuntu impish and hirsute build images --- script/bootstrap | 63 ------------------------------------------------ 1 file changed, 63 deletions(-) diff --git a/script/bootstrap b/script/bootstrap index e1a5861..cc05412 100755 --- a/script/bootstrap +++ b/script/bootstrap @@ -232,69 +232,6 @@ function bootstrapOnUbuntu() clang \ lsb-release ;; - "impish") - apt-get -qy install \ - git \ - cmake \ - python3-dev \ - build-essential \ - automake \ - autoconf \ - libpng16-16 \ - libpng-dev \ - libpng-tools \ - libjpeg-turbo8-dev \ - libexpat1-dev \ - libgdk-pixbuf-2.0-dev \ - libgtk-3-dev \ - libopenal-dev \ - libogg-dev \ - libvorbis-dev \ - libglvnd-dev \ - libgl1-mesa-dev \ - libsdl1.2-dev \ - libopengl0 \ - libpostproc-dev \ - freeglut3-dev \ - libboost-python-dev \ - libboost-log-dev \ - libboost-regex-dev \ - libboost-program-options-dev \ - libxmu-dev \ - clang \ - lsb-release - ;; - "hirsute") - apt-get -qy install \ - git \ - cmake \ - python3-dev \ - build-essential \ - automake \ - autoconf \ - libpng16-16 \ - libpng-dev \ - libpng-tools \ - libjpeg62-dev \ - libexpat1-dev \ - libgtk-3-dev \ - libopenal-dev \ - libogg-dev \ - libvorbis-dev \ - libglvnd-dev \ - libgl1-mesa-dev \ - libsdl1.2-dev \ - libopengl0 \ - libpostproc-dev \ - freeglut3-dev \ - libboost-python-dev \ - libboost-log-dev \ - libboost-regex-dev \ - libboost-program-options-dev \ - libxmu-dev \ - clang \ - lsb-release - ;; "groovy") apt-get -qy install \ git \ From a4fee5fc8339f1da6dcd61b3fbe61d9f2c01a0c4 Mon Sep 17 00:00:00 2001 From: OndraK Date: Sun, 21 May 2023 21:46:34 +0200 Subject: [PATCH 2/2] Show 'sorry' message for unsupported distros. When running script/bootstrap script on Ubuntu Impish or Hirsute, message about unsupported distro is displayed. --- script/bootstrap | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/script/bootstrap b/script/bootstrap index cc05412..55fe027 100755 --- a/script/bootstrap +++ b/script/bootstrap @@ -317,6 +317,14 @@ function bootstrapOnUbuntu() python3 -m pip install --upgrade-strategy eager --upgrade pip python3 -m pip install --upgrade-strategy eager cmake ;; + "impish") + echo "Sorry, Ubuntu impish is no longer supported" + exit 2 + ;; + "hirsute") + echo "Sorry, Ubuntu hirsute is no longer supported" + exit 2 + ;; "xenial") echo "Sorry, Ubuntu xenial is no longer supported" exit 2