From 3ef28af45079b021490ff460b604bf35a15dcc20 Mon Sep 17 00:00:00 2001 From: eric1tran Date: Wed, 24 Nov 2021 16:46:56 +0000 Subject: [PATCH] Jenkinsfile and debian updates for bullseye --- Jenkinsfile | 2 +- debian/compat | 2 +- debian/control | 2 +- prepare-build.sh | 4 ++++ 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 7c96635..2f5973f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -4,7 +4,7 @@ node(label: 'raspberrypi') { durabilityHint(hint: 'PERFORMANCE_OPTIMIZED') ]) - def dists = ["buster", "stretch"] + def dists = ["bullseye", "buster", "stretch"] def srcdir = "${WORKSPACE}/src" stage('Checkout') { diff --git a/debian/compat b/debian/compat index f11c82a..f599e28 100644 --- a/debian/compat +++ b/debian/compat @@ -1 +1 @@ -9 \ No newline at end of file +10 diff --git a/debian/control b/debian/control index 3910030..32b51f1 100644 --- a/debian/control +++ b/debian/control @@ -2,7 +2,7 @@ Source: dump978-fa Section: embedded Priority: extra Maintainer: Oliver Jowett -Build-Depends: debhelper(>=9), dh-systemd, libboost-system-dev, libboost-program-options-dev, libboost-regex-dev, libboost-filesystem-dev, libsoapysdr-dev +Build-Depends: debhelper(>=10), libboost-system-dev, libboost-program-options-dev, libboost-regex-dev, libboost-filesystem-dev, libsoapysdr-dev Standards-Version: 3.9.3 Homepage: http://www.flightaware.com/ Vcs-Git: https://github.com/flightaware/dump978.git diff --git a/prepare-build.sh b/prepare-build.sh index 11028f3..167bb29 100755 --- a/prepare-build.sh +++ b/prepare-build.sh @@ -43,8 +43,12 @@ case "$DIST" in ;; buster) + echo "Updating changelog for buster backport build" >&2 + dch --changelog $OUT/debian/changelog --local ~bpo10+ --force-distribution --distribution buster-backports "Automated backport build for buster" ;; + bullseye) + ;; *) echo "Don't know how to build for a distribution named $DIST" >&2 exit 1