summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2019-08-26 18:38:24 +0200
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2019-08-26 18:38:24 +0200
commitb71fc0fac49a95b5db122af313800c4b8f421921 (patch)
treefa38a770356ec2af24e9eae2f7e36d07f4f51d0d
parentfb10ffaa4adb3959d2635ba56be8bd30075daed1 (diff)
downloadbuildscripts-b71fc0fac49a95b5db122af313800c4b8f421921.tar.gz
buildscripts-b71fc0fac49a95b5db122af313800c4b8f421921.tar.bz2
buildscripts-b71fc0fac49a95b5db122af313800c4b8f421921.zip
update for building packages for Debian bullseye and Ubuntu eoan.
-rwxr-xr-xbin/debian-codename-to-version.sh7
-rwxr-xr-xbin/sbuild-deb-package4
-rwxr-xr-xbin/ubuntu-codename-to-version.sh1
-rw-r--r--home/.buildscripts/arctica.conf2
4 files changed, 8 insertions, 6 deletions
diff --git a/bin/debian-codename-to-version.sh b/bin/debian-codename-to-version.sh
index ddc019d..1a83217 100755
--- a/bin/debian-codename-to-version.sh
+++ b/bin/debian-codename-to-version.sh
@@ -47,11 +47,12 @@ 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 "10.01";;
+ ("sid"|"unstable") echo "11.01";;
- ("buster"|"testing") echo "10";;
+ ("bullseye"|"testing") echo "11";;
- ("stretch"|"stable") echo "9";;
+ ("buster"|"stable") echo "10";;
+ ("stretch"|"oldstable") echo "9";;
("jessie") echo "8";;
("wheezy") echo "7";;
("squeeze") echo "6";;
diff --git a/bin/sbuild-deb-package b/bin/sbuild-deb-package
index 4e756e6..b1dadb0 100755
--- a/bin/sbuild-deb-package
+++ b/bin/sbuild-deb-package
@@ -27,8 +27,8 @@ DEBEMAIL="firstname.lastname@mydomain.org"
DEBFULLNAME="Firstname Lastname"
GPG_KEY=""
DEB_DISTS_SUPPORTED="debian ubuntu"
-DEBIAN_DISTROS="lenny,squeeze,wheezy,jessie,stretch,buster,sid"
-UBUNTU_DISTROS="lucid,precise,trusty,xenial,bionic,cosmic,disco"
+DEBIAN_DISTROS="jessie,stretch,buster,bullseye,sid"
+UBUNTU_DISTROS="xenial,bionic,disco,eoan"
COMPONENT_RELEASE="release"
COMPONENT_NIGHTLY="nightly"
diff --git a/bin/ubuntu-codename-to-version.sh b/bin/ubuntu-codename-to-version.sh
index e7c6870..7e375f4 100755
--- a/bin/ubuntu-codename-to-version.sh
+++ b/bin/ubuntu-codename-to-version.sh
@@ -47,6 +47,7 @@ case "${codename}" in
# we can't really do better here.
("devel") echo "9999";;
+ ("eoan") echo "19.10";;
("disco") echo "19.04";;
("cosmic") echo "18.10";;
("bionic") echo "18.04";;
diff --git a/home/.buildscripts/arctica.conf b/home/.buildscripts/arctica.conf
index fb95963..f2adfeb 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,buster,stretch,jessie ubuntu:disco,cosmic,bionic,xenial,trusty"}
+DEB_BUILD_FOR=${DEB_BUILD_FOR:-"debian:sid,bullseye,buster,stretch,jessie ubuntu:eoan,disco,bionic,xenial,trusty"}
RPMEMAIL="build-daemon+${HOSTNAME}@arctica-project.org"
RPMFULLNAME="Arctica Project Build Daemon (${HOSTNAME})"