From df3e17539edc5c00c2d973ee3b1cd929264a915f Mon Sep 17 00:00:00 2001 From: Shengqi Chen Date: Thu, 25 Apr 2024 12:01:04 +0800 Subject: [PATCH] Remove ubuntu bionic from some scripts Signed-off-by: Shengqi Chen --- erlang.sh | 2 +- kde-neon.sh | 2 +- llvm-apt.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/erlang.sh b/erlang.sh index 0c70661..6e2d2aa 100755 --- a/erlang.sh +++ b/erlang.sh @@ -15,7 +15,7 @@ DEBIAN_PATH="${BASE_PATH}/debian" export REPO_SIZE_FILE=/tmp/reposize.$RANDOM # generate codenames for repos -ubuntu_os=(bionic focal jammy) +ubuntu_os=(focal jammy) debian_os=(bullseye buster) deb_suffixes=( mongooseim-5 diff --git a/kde-neon.sh b/kde-neon.sh index 483d415..384bb1e 100755 --- a/kde-neon.sh +++ b/kde-neon.sh @@ -12,7 +12,7 @@ APT_PATH="${BASE_PATH}/user" export REPO_SIZE_FILE=/tmp/reposize.$RANDOM # =================== APT repos =============================== -"$apt_sync" --delete "${BASE_URL}/user" jammy,focal,bionic main dep11,cnf,all,amd64,i386 "${BASE_PATH}/user" +"$apt_sync" --delete "${BASE_URL}/user" @ubuntu-lts main dep11,cnf,all,amd64,i386 "${BASE_PATH}/user" echo "APT finished" "${_here}/helpers/size-sum.sh" $REPO_SIZE_FILE --rm diff --git a/llvm-apt.sh b/llvm-apt.sh index 877e4a5..478bf84 100755 --- a/llvm-apt.sh +++ b/llvm-apt.sh @@ -10,7 +10,7 @@ BASE_URL=${TUNASYNC_UPSTREAM_URL:-"https://apt.llvm.org"} export REPO_SIZE_FILE=/tmp/reposize.$RANDOM -for os in "bionic" "focal" "jammy" "buster" "bullseye" "bookworm"; do +for os in "focal" "jammy" "buster" "bullseye" "bookworm"; do prefix=llvm-toolchain-$os "$apt_sync" --delete "$BASE_URL/$os" $prefix,$prefix-9,$prefix-10,$prefix-11,$prefix-12,$prefix-13,$prefix-14,$prefix-15,$prefix-16,$prefix-17,$prefix-18 main amd64,arm64 "$BASE_PATH/$os" done