diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2018-09-06 14:22:31 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2018-09-06 14:22:31 +0200 |
commit | a2565143289b1a14866cef7f4e0c659e04a3e116 (patch) | |
tree | 67eeed2d0f5fa53ca3816c36a3c95d319a15b138 | |
parent | c78b34923306184277e292b0cfc3e96222e67078 (diff) |
Migrate to debhelper 11
-rw-r--r-- | debian/changelog | 6 | ||||
-rw-r--r-- | debian/compat | 2 | ||||
-rw-r--r-- | debian/control | 3 | ||||
-rwxr-xr-x | debian/rules | 2 |
4 files changed, 9 insertions, 4 deletions
diff --git a/debian/changelog b/debian/changelog index 81e9b54..61695b9 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,6 +2,12 @@ libhx (3.23-1) UNRELEASED; urgency=medium * New upstream release. * Change to my new email address. + * Migrate to debhelper 11: + - Change debian/compat to 11. + - debian/control: + + Bump minimum debhelper version to >= 11. + + Remove build depends dh-autoreconf. + - Remove --with autoreconf from debian/rules. -- Jörg Frings-Fürst <debian@jff.email> Thu, 06 Sep 2018 13:46:37 +0200 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 31be5d8..abff416 100644 --- a/debian/control +++ b/debian/control @@ -2,8 +2,7 @@ Source: libhx Priority: extra Maintainer: Jörg Frings-Fürst <debian@jff.email> Build-Depends: - debhelper (>= 9), - dh-autoreconf + debhelper (>= 11) Standards-Version: 3.9.6 XS-Testsuite: autopkgtest Section: libs diff --git a/debian/rules b/debian/rules index 4f4c5cc..891770f 100755 --- a/debian/rules +++ b/debian/rules @@ -5,7 +5,7 @@ export DEB_BUILD_MAINT_OPTIONS = hardening=+all VERSION = $(shell head -n1 debian/changelog | sed -e 's/.*(//;s/-.*).*//;s/\+/\-/') %: - dh $@ --with autoreconf + dh $@ override_dh_auto_configure: dh_auto_configure -- --enable-static |