summaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
authorMichael Biebl <biebl@debian.org>2017-11-14 15:51:46 +0000
committerMichael Biebl <biebl@debian.org>2017-11-14 15:51:46 +0000
commit2e1c38944def827811bbf210fff613183643b4e9 (patch)
treea5040f6caf1c094b5e9c0806705fc40e133e709c /debian
parentBump Standards-Version to 4.1.1 (diff)
downloadzenity-2e1c38944def827811bbf210fff613183643b4e9.tar.gz
zenity-2e1c38944def827811bbf210fff613183643b4e9.tar.bz2
zenity-2e1c38944def827811bbf210fff613183643b4e9.zip
Switch to dh_missing and abort on uninstalled files
Diffstat (limited to 'debian')
-rw-r--r--debian/changelog1
-rw-r--r--debian/control2
-rw-r--r--debian/control.in2
-rwxr-xr-xdebian/rules4
4 files changed, 5 insertions, 4 deletions
diff --git a/debian/changelog b/debian/changelog
index 27e20dd4..146fe225 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -2,6 +2,7 @@ zenity (3.26.0-1) UNRELEASED; urgency=medium
* New upstream release
* Bump Standards-Version to 4.1.1
+ * Switch to dh_missing and abort on uninstalled files
-- Michael Biebl <biebl@debian.org> Tue, 14 Nov 2017 14:45:27 +0100
diff --git a/debian/control b/debian/control
index 70e0c684..ad8c940c 100644
--- a/debian/control
+++ b/debian/control
@@ -7,7 +7,7 @@ Section: gnome
Priority: optional
Maintainer: Debian GNOME Maintainers <pkg-gnome-maintainers@lists.alioth.debian.org>
Uploaders: Laurent Bigonville <bigon@debian.org>, Michael Biebl <biebl@debian.org>
-Build-Depends: debhelper (>= 10),
+Build-Depends: debhelper (>= 10.3),
gnome-pkg-tools (>= 0.10),
gnome-common,
yelp-tools,
diff --git a/debian/control.in b/debian/control.in
index 369576a2..0a10cdcd 100644
--- a/debian/control.in
+++ b/debian/control.in
@@ -3,7 +3,7 @@ Section: gnome
Priority: optional
Maintainer: Debian GNOME Maintainers <pkg-gnome-maintainers@lists.alioth.debian.org>
Uploaders: @GNOME_TEAM@
-Build-Depends: debhelper (>= 10),
+Build-Depends: debhelper (>= 10.3),
gnome-pkg-tools (>= 0.10),
gnome-common,
yelp-tools,
diff --git a/debian/rules b/debian/rules
index 0d374c26..1034409c 100755
--- a/debian/rules
+++ b/debian/rules
@@ -7,5 +7,5 @@ export DEB_LDFLAGS_MAINT_APPEND = -Wl,-O1 -Wl,-z,defs -Wl,--as-needed
%:
dh $@ --with gnome
-override_dh_install:
- dh_install --list-missing
+override_dh_missing:
+ dh_missing --fail-missing
bgstack15