diff options
author | Russ Allbery <eagle@eyrie.org> | 2018-06-03 17:07:07 -0700 |
---|---|---|
committer | Russ Allbery <eagle@eyrie.org> | 2018-06-03 17:07:07 -0700 |
commit | ff87fcafa9816cfa049ea8f2c9e5c743f9497b66 (patch) | |
tree | 6aa50a3c773295ce7661d88bc989097b99221d70 | |
parent | 3955cef896acb1414bff922449be67101a873b2b (diff) |
Update debhelper compatibility level to V11
* Update debhelper compatibility level to V11.
- Remove explicit autoreconf sequence configuration.
- Remove now-unnecessary --parallel flags.
-rw-r--r-- | debian/changelog | 3 | ||||
-rw-r--r-- | debian/compat | 2 | ||||
-rw-r--r-- | debian/control | 3 | ||||
-rwxr-xr-x | debian/rules | 4 |
4 files changed, 7 insertions, 5 deletions
diff --git a/debian/changelog b/debian/changelog index 7e7e13f..c5bf3f3 100644 --- a/debian/changelog +++ b/debian/changelog @@ -8,6 +8,9 @@ wallet (1.4-1) UNRELEASED; urgency=medium support. - Install new contrib/ad-keytab script as /usr/bin/ad-keytab. - Retrieve krb5.conf settings using the correct default realm. + * Update debhelper compatibility level to V11. + - Remove explicit autoreconf sequence configuration. + - Remove now-unnecessary --parallel flags. * Add upstream-vcs-tag pattern to debian/gbp.conf. -- Russ Allbery <rra@debian.org> Sun, 03 Jun 2018 16:57:41 -0700 diff --git a/debian/compat b/debian/compat index ec63514..b4de394 100644 --- a/debian/compat +++ b/debian/compat @@ -1 +1 @@ -9 +11 diff --git a/debian/control b/debian/control index 486dd76..226a64e 100644 --- a/debian/control +++ b/debian/control @@ -4,8 +4,7 @@ Priority: extra Maintainer: Russ Allbery <rra@debian.org> Bugs: mailto:rra@debian.org Build-Depends: - debhelper (>= 9), - dh-autoreconf, + debhelper (>= 11), libauthen-sasl-perl, libcrypt-generatepassword-perl, libdatetime-format-sqlite-perl, diff --git a/debian/rules b/debian/rules index 1d2f446..4d4380a 100755 --- a/debian/rules +++ b/debian/rules @@ -11,10 +11,10 @@ export WALLET_PERL_FLAGS := --installdirs vendor --create_packlist 0 export AUTOMATED_TESTING = 1 %: - dh $@ --parallel --with autoreconf + dh $@ override_dh_auto_configure: - dh_auto_configure --parallel -- --enable-reduced-depends + dh_auto_configure -- --enable-reduced-depends # Install the remctl configuration as part of the build. override_dh_auto_install: |