diff options
Diffstat (limited to 'debian')
-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 |