Refactor Void Linux support to add editions

This commit is contained in:
Martin Wimpress 2022-02-21 15:24:25 +00:00
parent 6e92a8e0d9
commit 8924d5cac4
No known key found for this signature in database
GPG Key ID: 61DF940515E06DA3
1 changed files with 15 additions and 7 deletions

View File

@ -455,9 +455,13 @@ function releases_ubuntu() {
} }
function releases_void() { function releases_void() {
echo base \ echo current
}
function editions_void() {
echo glibc \
musl \ musl \
xfce \ xfce-glibc \
xfce-musl xfce-musl
} }
@ -1081,15 +1085,19 @@ function get_openbsd() {
function get_void() { function get_void() {
local DATE="" local DATE=""
local EDITION=""
local HASH="" local HASH=""
local ISO="" local ISO=""
local URL="https://alpha.de.repo.voidlinux.org/live/current" local URL="https://alpha.de.repo.voidlinux.org/live/current"
DATE=$(wget -q -O- "${URL}/sha256sum.txt" | head -n1 | cut -d'.' -f1 | cut -d'-' -f4) DATE=$(wget -q -O- "${URL}/sha256sum.txt" | head -n1 | cut -d'.' -f1 | cut -d'-' -f4)
case ${RELEASE} in if [ -n "${1}" ]; then
base) ISO="void-live-x86_64-${DATE}.iso";; EDITION="${1}"
fi
case ${EDITION} in
glibc) ISO="void-live-x86_64-${DATE}.iso";;
musl) ISO="void-live-x86_64-musl-${DATE}.iso";; musl) ISO="void-live-x86_64-musl-${DATE}.iso";;
xfce) ISO="void-live-x86_64-${DATE}-xfce.iso";; xfce-glibc) ISO="void-live-x86_64-${DATE}-xfce.iso";;
xfce-musl) ISO="void-live-x86_64-musl-${DATE}-xfce.iso";; xfce-musl) ISO="void-live-x86_64-musl-${DATE}-xfce.iso";;
esac esac
HASH="$(wget -q -O- "${URL}/sha256sum.txt" | grep "${ISO}" | cut -d' ' -f4)" HASH="$(wget -q -O- "${URL}/sha256sum.txt" | grep "${ISO}" | cut -d' ' -f4)"