diff options
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 5 | ||||
-rw-r--r-- | debian/compat | 2 | ||||
-rw-r--r-- | debian/control | 3 | ||||
-rwxr-xr-x | debian/rules | 2 |
4 files changed, 8 insertions, 4 deletions
diff --git a/debian/changelog b/debian/changelog index 7c1cd32..b7779c7 100644 --- a/debian/changelog +++ b/debian/changelog @@ -10,6 +10,11 @@ xsd (4.0.0-7) UNRELEASED; urgency=medium * debian/changelog: - Remove trailing whitespace. * Declare compliance with Debian Policy 4.1.1. (No changes needed). + * Migrate to debhelper 10: + - Change debian/compat to 10. + - Bump minimum debhelper version in debian/control to >= 10. + - Remove autotools-dev from Build-Depends. + - Remove now useless autotools-dev and parallel from debian/rules. -- Jörg Frings-Fürst <debian@jff.email> Wed, 08 Nov 2017 19:25:38 +0100 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 699a998..5088ccb 100644 --- a/debian/control +++ b/debian/control @@ -3,8 +3,7 @@ Section: devel Priority: extra Maintainer: Jörg Frings-Fürst <debian@jff.email> Build-Depends: - autotools-dev, - debhelper (>= 9), + debhelper (>= 10), dpkg-dev (>= 1.15.4), libboost-date-time-dev, libboost-filesystem-dev, diff --git a/debian/rules b/debian/rules index 1649d46..a9f32a7 100755 --- a/debian/rules +++ b/debian/rules @@ -18,7 +18,7 @@ export DEB_BUILD_MAINT_OPTIONS = hardening=+all export verbose=1 %: - dh $@ --with autotools-dev --parallel + dh $@ override_dh_clean: rm -f $(CURDIR)/libcult/build/system/configuration-dynamic.make |