Skip to content

Commit

Permalink
fix: correctly support bookworm and noble for veracrypt
Browse files Browse the repository at this point in the history
  • Loading branch information
philclifford committed Sep 2, 2024
1 parent 64104de commit 886ff1d
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 10 deletions.
11 changes: 6 additions & 5 deletions 01-main/packages/veracrypt
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
DEFVER=2
ARCHS_SUPPORTED="amd64 arm64"
CODENAMES_SUPPORTED="buster bullseye focal jammy"
if [ "${ARCH}" == "amd64" ]; then
CODENAMES_SUPPORTED="${CODENAMES_SUPPORTED} noble bookworm"
fi
ARCHS_SUPPORTED="amd64 arm64 armhf"
case ${HOST_ARCH} in
amd64) CODENAMES_SUPPORTED="bullseye bookworm focal jammy noble" ;;
arm64) CODENAMES_SUPPORTED="bullseye bookworm focal jammy noble" ;;
armhf) CODENAMES_SUPPORTED="bullseye bookworm focal" ;;
esac
get_website "https://www.veracrypt.fr/en/Downloads.html"
if [ "${ACTION}" != "prettylist" ]; then
VERSION_PUBLISHED="$(grep 'Latest Stable Release' $CACHE_FILE |cut -d\ -f 5)"
Expand Down
11 changes: 6 additions & 5 deletions 01-main/packages/veracrypt-console
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
DEFVER=1
ARCHS_SUPPORTED="amd64 arm64"
CODENAMES_SUPPORTED="buster bullseye focal jammy"
if [ "${ARCH}" == "amd64" ]; then
CODENAMES_SUPPORTED="${CODENAMES_SUPPORTED} noble bookworm"
fi
ARCHS_SUPPORTED="amd64 arm64 armhf"
case ${HOST_ARCH} in
amd64) CODENAMES_SUPPORTED="bullseye bookworm focal jammy noble" ;;
arm64) CODENAMES_SUPPORTED="bullseye bookworm focal jammy noble" ;;
armhf) CODENAMES_SUPPORTED="bullseye bookworm focal" ;;
esac
get_website "https://www.veracrypt.fr/en/Downloads.html"
if [ "${ACTION}" != "prettylist" ]; then
VERSION_PUBLISHED="$(grep 'Latest Stable Release' $CACHE_FILE |cut -d\ -f 5)"
Expand Down

0 comments on commit 886ff1d

Please # to comment.