This commit is contained in:
zenobit 2025-03-03 19:38:02 +01:00
parent 5a43675ed4
commit 29894efe6f
2 changed files with 16 additions and 8 deletions

View File

@ -7,17 +7,21 @@ HOMEPAGE="https://sourceforge.net/projects/pb-gh-releases"
CREDENTIALS="-"
function releases_() {
echo $(web_pipe "https://sourceforge.net/projects/pb-gh-releases/rss?path=/" | grep 'title><!\[CDATA' | cut -d'[' -f3 | cut -d']' -f1 | grep '\.iso' | grep '64' | cut -d'-' -f3 | cut -d'.' -f1 | sort | uniq)
echo $(web_pipe "https://sourceforge.net/projects/pb-gh-releases/rss?path=/" | grep 'title><!\[CDATA' | cut -d'[' -f3 | cut -d']' -f1 | grep '\.iso' | grep '64' | cut -d'-' -f3 | grep -oP '\d{6}(?=\.iso)' | sort -u)
}
function editions_() {
echo $(web_pipe "https://sourceforge.net/projects/pb-gh-releases/rss?path=/" | grep 'title><!\[CDATA' | cut -d'[' -f3 | cut -d']' -f1 | grep '\.iso' | grep '64' | cut -d'/' -f3 | cut -d'-' -f1 | sort | uniq)
echo $(web_pipe "https://sourceforge.net/projects/pb-gh-releases/rss?path=/" | grep 'title><!\[CDATA' | cut -d'[' -f3 | cut -d']' -f1 | grep '\.iso' | grep '64' | cut -d'/' -f2 | cut -d'_' -f1 | sort -u)
}
function get_() {
local HASH=""
local URL="https://sourceforge.net/projects/pb-gh-releases/files/VoidPup64_release"
ISO="VoidPup64-22.02-${RELEASE}.iso"
if [ "${RELEASE}" == 'ghtest' ]; then
ISO=$(web_pipe "https://sourceforge.net/projects/pb-gh-releases/rss?path=/" | grep 'title><!\[CDATA' | cut -d'[' -f3 | cut -d']' -f1 | grep '\.iso' | grep '64' | cut -d'/' -f3 | grep "${RELEASE}" | grep "${EDITION}")
else
ISO="VoidPup64-22.02-${RELEASE}.iso"
fi
HASH=$(web_pipe "${URL}"/SHA512checksums.txt | grep "${ISO}" | cut -d' ' -f1)
echo "${URL}/${ISO} ${HASH}"
}

View File

@ -7,21 +7,25 @@ HOMEPAGE="https://sourceforge.net/projects/pb-gh-releases"
CREDENTIALS="-"
RELEASES="ghtest 250301 250201 250101"
EDITIONS="VoidPup64 S15Pup64 BookwormPup64"
RELEASES="250301 250201 250101"
EDITIONS="VoidPup64 S15Pup64 BookwormPup64-ghtest"
function releases_() {
echo $(web_pipe "https://sourceforge.net/projects/pb-gh-releases/rss?path=/" | grep 'title><!\[CDATA' | cut -d'[' -f3 | cut -d']' -f1 | grep '\.iso' | grep '64' | cut -d'-' -f3 | cut -d'.' -f1 | sort | uniq)
echo $(web_pipe "https://sourceforge.net/projects/pb-gh-releases/rss?path=/" | grep 'title><!\[CDATA' | cut -d'[' -f3 | cut -d']' -f1 | grep '\.iso' | grep '64' | cut -d'-' -f3 | grep -oP '\d{6}(?=\.iso)' | sort -u)
}
function editions_() {
echo $(web_pipe "https://sourceforge.net/projects/pb-gh-releases/rss?path=/" | grep 'title><!\[CDATA' | cut -d'[' -f3 | cut -d']' -f1 | grep '\.iso' | grep '64' | cut -d'/' -f3 | cut -d'-' -f1 | sort | uniq)
echo $(web_pipe "https://sourceforge.net/projects/pb-gh-releases/rss?path=/" | grep 'title><!\[CDATA' | cut -d'[' -f3 | cut -d']' -f1 | grep '\.iso' | grep '64' | cut -d'/' -f2 | cut -d'_' -f1 | sort -u)
}
function get_() {
local HASH=""
local URL="https://sourceforge.net/projects/pb-gh-releases/files/VoidPup64_release"
ISO="VoidPup64-22.02-${RELEASE}.iso"
if [ "${RELEASE}" == 'ghtest' ]; then
ISO=$(web_pipe "https://sourceforge.net/projects/pb-gh-releases/rss?path=/" | grep 'title><!\[CDATA' | cut -d'[' -f3 | cut -d']' -f1 | grep '\.iso' | grep '64' | cut -d'/' -f3 | grep "${RELEASE}" | grep "${EDITION}")
else
ISO="VoidPup64-22.02-${RELEASE}.iso"
fi
HASH=$(web_pipe "${URL}"/SHA512checksums.txt | grep "${ISO}" | cut -d' ' -f1)
echo "${URL}/${ISO} ${HASH}"
}