From 8bff6c15b62b29cf9deadcf7c8e9b0ed1875b50e Mon Sep 17 00:00:00 2001 From: Amin Vakil Date: Fri, 19 Sep 2025 17:29:13 +0330 Subject: [PATCH] build: remove buster, replace with bullseye when necessary Signed-off-by: Amin Vakil --- packaging/README.md | 3 --- packaging/build-config.json | 8 -------- packaging/update-apt-repo.sh | 2 +- packaging/update-repos.sh | 1 - 4 files changed, 1 insertion(+), 13 deletions(-) diff --git a/packaging/README.md b/packaging/README.md index 4066f30b15f..17dc035e328 100644 --- a/packaging/README.md +++ b/packaging/README.md @@ -35,8 +35,6 @@ The [`distros`](./distros/) directory contains OCI container definitions used to | Debian | 12 | arm64v8 | debian/bookworm.arm64v8 | | Debian | 11 | x86_64 | debian/bullseye | | Debian | 11 | arm64v8 | debian/bullseye.arm64v8 | -| Debian | 10 | x86_64 | debian/buster | -| Debian | 10 | arm64v8 | debian/buster.arm64v8 | | Ubuntu | 24.04 / Noble Numbat | x86_64 | ubuntu/24.04 | | Ubuntu | 24.04 / Noble Numbat | arm64v8 | ubuntu/24.04.arm64v8 | | Ubuntu | 22.04 / Jammy Jellyfish | x86_64 | ubuntu/22.04 | @@ -48,7 +46,6 @@ The [`distros`](./distros/) directory contains OCI container definitions used to | Ubuntu | 16.04 / Xenial Xerus | x86_64 | ubuntu/16.04 | | Raspbian | 12 / Bookworm | arm32v7 | raspbian/bookworm | | Raspbian | 11 / Bullseye | arm32v7 | raspbian/bullseye | -| Raspbian | 10 / Buster | arm32v7 | raspbian/buster | | Rocky Linux | 10 | x86_64 | rockylinux/10 | | Rocky Linux | 10 | arm64v8 | rockylinux/10.arm64v8 | | Rocky Linux | 9 | x86_64 | rockylinux/9 | diff --git a/packaging/build-config.json b/packaging/build-config.json index 4ca4f44df99..6117bdb7700 100644 --- a/packaging/build-config.json +++ b/packaging/build-config.json @@ -104,14 +104,6 @@ "target": "debian/bookworm.arm64v8", "type": "deb" }, - { - "target": "debian/buster", - "type": "deb" - }, - { - "target": "debian/buster.arm64v8", - "type": "deb" - }, { "target": "debian/bullseye", "type": "deb" diff --git a/packaging/update-apt-repo.sh b/packaging/update-apt-repo.sh index a975217d68e..796119f73aa 100755 --- a/packaging/update-apt-repo.sh +++ b/packaging/update-apt-repo.sh @@ -10,7 +10,7 @@ if [[ ! -d "$BASE_PATH" ]]; then exit 1 fi -# "debian/bookworm" "debian/bullseye" "debian/buster" "debian/trixie" "ubuntu/xenial" "ubuntu/bionic" "ubuntu/focal" "ubuntu/jammy" "raspbian/buster" "raspbian/bullseye" +# "debian/bookworm" "debian/bullseye" "debian/trixie" "ubuntu/xenial" "ubuntu/bionic" "ubuntu/focal" "ubuntu/jammy" "raspbian/bullseye" DEB_REPO=${DEB_REPO:?} # Set true to prevent signing diff --git a/packaging/update-repos.sh b/packaging/update-repos.sh index aff62af7d64..6fa0c94d9ad 100755 --- a/packaging/update-repos.sh +++ b/packaging/update-repos.sh @@ -61,7 +61,6 @@ done DEB_REPO_PATHS=( "debian/bookworm" "debian/bullseye" - "debian/buster" "debian/trixie" "ubuntu/jammy" "ubuntu/noble"