Drop Regolith. Close #551

pull/558/head
Martin Wimpress 2 years ago
parent 71b4505e1e
commit ddfc806435
No known key found for this signature in database
GPG Key ID: 61DF940515E06DA3
  1. 36
      quickget

@ -58,7 +58,6 @@ function pretty_name() {
oraclelinux) PRETTY_NAME="Oracle Linux";;
popos) PRETTY_NAME="Pop!_OS";;
reactos) PRETTY_NAME="ReactOS";;
regolith) PRETTY_NAME="Regolith Linux";;
rockylinux) PRETTY_NAME="Rocky Linux";;
ubuntu-budgie) PRETTY_NAME="Ubuntu Budgie";;
ubuntukylin) PRETTY_NAME="Ubuntu Kylin";;
@ -198,7 +197,6 @@ function os_support() {
oraclelinux \
popos \
reactos \
regolith \
rockylinux \
slackware \
solus \
@ -443,14 +441,6 @@ function releases_reactos() {
echo latest
}
function releases_regolith() {
echo focal impish
}
function editions_regolith() {
echo 1.6.0 2.0.0
}
function releases_rockylinux() {
echo 8.3 8.4 8.5 9.0
}
@ -1349,20 +1339,6 @@ function get_reactos() {
echo "${URL} ${HASH}"
}
function get_regolith() {
local EDITION="${1:-}"
local HASH=""
local ISO="Regolith_${EDITION}_${RELEASE}.iso"
local URL=""
case ${EDITION} in
1.6.0) URL="https://github.com/regolith-linux/regolith-ubuntu-iso-builder/releases/download/release-release-${RELEASE}-${RELEASE}_standard-${EDITION}";;
2.0.0) URL="https://github.com/regolith-linux/regolith-ubuntu-iso-builder/releases/download/regolith-linux-2.0-${RELEASE}-latest";;
esac
HASH=$(wget -q -O- "${URL}/SHA256SUMS" | cut -d' ' -f1)
echo "${URL}/${ISO} ${HASH}"
}
function get_rockylinux() {
local EDITION="${1:-}"
local HASH=""
@ -1950,18 +1926,6 @@ if [ -n "${2}" ]; then
fi
fi
# Workaround for Regolith
if [ "${OS}" == "regolith" ]; then
if [ "${RELEASE}" == "focal" ] && [ "${EDITION}" == "2.0.0" ]; then
echo "WARNING! $(pretty_name "${OS}") ${EDITION} is not available for ${RELEASE}"
EDITION="1.6.0"
echo " - Setting edition to: ${EDITION}"
elif [ "${RELEASE}" == "impish" ] && [ "${EDITION}" == "1.6.0" ]; then
echo "WARNING! $(pretty_name "${OS}") ${EDITION} is not available for ${RELEASE}"
EDITION="2.0.0"
echo " - Setting edition to: ${EDITION}"
fi
fi
# Handle odd missing fedora cominations
if [[ $OS == fedora ]] ; then
if [[ ${RELEASE} = "33" && ${EDITION} = "i3" ]] || [[ ${RELEASE} = "34" && ${EDITION} = "Cinnamon" ]] ; then

Loading…
Cancel
Save