From e2fe42af67096c32f1451cb4cccff2751dcccd0e Mon Sep 17 00:00:00 2001 From: Mike Gabriel Date: Sat, 28 Aug 2021 16:38:02 +0200 Subject: Add support for Debian bookworm, bullseye now is stable. --- bin/debian-codename-to-version.sh | 9 +++++---- bin/sbuild-deb-package | 2 +- home/.buildscripts/arctica.conf | 2 +- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/bin/debian-codename-to-version.sh b/bin/debian-codename-to-version.sh index 1a83217..6445d26 100755 --- a/bin/debian-codename-to-version.sh +++ b/bin/debian-codename-to-version.sh @@ -47,12 +47,13 @@ case "${codename}" in # a bit higher than the current testing version # (which is known early in advance to the next # upcoming release). - ("sid"|"unstable") echo "11.01";; + ("sid"|"unstable") echo "12.01";; - ("bullseye"|"testing") echo "11";; + ("bookworm"|"stable") echo "12";; - ("buster"|"stable") echo "10";; - ("stretch"|"oldstable") echo "9";; + ("bullseye"|"stable") echo "11";; + ("buster"|"oldstable") echo "10";; + ("stretch"|"oldoldstable") echo "9";; ("jessie") echo "8";; ("wheezy") echo "7";; ("squeeze") echo "6";; diff --git a/bin/sbuild-deb-package b/bin/sbuild-deb-package index 8c8d26f..48587fd 100755 --- a/bin/sbuild-deb-package +++ b/bin/sbuild-deb-package @@ -27,7 +27,7 @@ DEBEMAIL="firstname.lastname@mydomain.org" DEBFULLNAME="Firstname Lastname" GPG_KEY="" DEB_DISTS_SUPPORTED="debian ubuntu" -DEBIAN_DISTROS="jessie,stretch,buster,bullseye,sid" +DEBIAN_DISTROS="jessie,stretch,buster,bullseye,bookworm,sid" UBUNTU_DISTROS="xenial,bionic,focal" SKIP_BUILDS="ubuntu:focal/i386" diff --git a/home/.buildscripts/arctica.conf b/home/.buildscripts/arctica.conf index ea24510..b2194cb 100644 --- a/home/.buildscripts/arctica.conf +++ b/home/.buildscripts/arctica.conf @@ -9,7 +9,7 @@ DEBEMAIL="build-daemon+${HOSTNAME}@arctica-project.org" DEBFULLNAME="Arctica Project Build Daemon (${HOSTNAME})" GPG_KEY=`gpg -q --list-secret-keys --keyid-format 0xlong ${DEBEMAIL} | grep -E "^sec" | sed -r "s/^sec .*(0x[0-9A-F]{16}).*/\1/"` DEB_DISTS_SUPPORTED="debian ubuntu" -DEB_BUILD_FOR=${DEB_BUILD_FOR:-"debian:sid,bullseye,buster,stretch,jessie ubuntu:focal,bionic,xenial,trusty"} +DEB_BUILD_FOR=${DEB_BUILD_FOR:-"debian:sid,bookworm,bullseye,buster,stretch,jessie ubuntu:focal,bionic,xenial,trusty"} SKIP_BUILDS="ubuntu:focal/i386" RPMEMAIL="build-daemon+${HOSTNAME}@arctica-project.org" -- cgit v1.2.3