osmith has submitted this change. ( https://gerrit.osmocom.org/c/simtrace2/+/32482 )
Change subject: debian: set compat level to 10 ......................................................................
debian: set compat level to 10
Set --no-parallel, as in v10 debhelper defaults to parallel building. This is apparently not supported by simtrace2's Makefile, it leads to multiple non-trivial build errors. In contrib/jenkins.sh we also don't build multiple firmwares in parallel.
Related: OS#5958 Related: https://manpages.debian.org/testing/debhelper/debhelper-compat-upgrade-check... Change-Id: I49fcc4fe9d3e795f8c3514d35ff3e2beca2917d1 --- M debian/compat M debian/control M debian/rules 3 files changed, 20 insertions(+), 4 deletions(-)
Approvals: Jenkins Builder: Verified pespin: Looks good to me, but someone else must approve msuraev: Looks good to me, but someone else must approve osmith: Looks good to me, approved
diff --git a/debian/compat b/debian/compat index ec63514..f599e28 100644 --- a/debian/compat +++ b/debian/compat @@ -1 +1 @@ -9 +10 diff --git a/debian/control b/debian/control index 02d697d..cae4e8d 100644 --- a/debian/control +++ b/debian/control @@ -1,8 +1,8 @@ Source: simtrace2 -Maintainer: Harald Welte laforge@gnumonks.org +Maintainer: Osmocom team openbsc@lists.osmocom.org Section: devel Priority: optional -Build-Depends: debhelper (>= 9), +Build-Depends: debhelper (>= 10), autotools-dev, autoconf, automake, diff --git a/debian/rules b/debian/rules index 9d1fa4b..37cd4d7 100755 --- a/debian/rules +++ b/debian/rules @@ -13,4 +13,4 @@
%: - dh $@ + dh $@ --no-parallel