diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2021-08-28 16:38:02 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2021-08-28 16:38:02 +0200 |
commit | e2fe42af67096c32f1451cb4cccff2751dcccd0e (patch) | |
tree | 52bcc9146a4d33851aa44c5f67f2e746ba5eebe0 | |
parent | 86cd189dc89a76dba0987341749e3817b31c8941 (diff) | |
download | buildscripts-e2fe42af67096c32f1451cb4cccff2751dcccd0e.tar.gz buildscripts-e2fe42af67096c32f1451cb4cccff2751dcccd0e.tar.bz2 buildscripts-e2fe42af67096c32f1451cb4cccff2751dcccd0e.zip |
Add support for Debian bookworm, bullseye now is stable.
-rwxr-xr-x | bin/debian-codename-to-version.sh | 9 | ||||
-rwxr-xr-x | bin/sbuild-deb-package | 2 | ||||
-rw-r--r-- | 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" |