summaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
Diffstat (limited to 'debian')
-rw-r--r--debian/changelog1
-rw-r--r--debian/compat2
-rw-r--r--debian/control3
-rw-r--r--debian/control.in3
-rwxr-xr-xdebian/rules2
5 files changed, 5 insertions, 6 deletions
diff --git a/debian/changelog b/debian/changelog
index 60cd5cc6..0b09d74f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -2,6 +2,7 @@ zenity (3.22.0-1) UNRELEASED; urgency=medium
* New upstream release.
* Convert from cdbs to dh.
+ * Bump debhelper compat level to 10.
-- Michael Biebl <biebl@debian.org> Tue, 20 Sep 2016 00:34:33 +0200
diff --git a/debian/compat b/debian/compat
index ec635144..f599e28b 100644
--- a/debian/compat
+++ b/debian/compat
@@ -1 +1 @@
-9
+10
diff --git a/debian/control b/debian/control
index 4b843d84..bda73352 100644
--- a/debian/control
+++ b/debian/control
@@ -7,8 +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 (>= 9),
- dh-autoreconf,
+Build-Depends: debhelper (>= 10),
gnome-pkg-tools (>= 0.10),
yelp-tools,
intltool (>= 0.40.0),
diff --git a/debian/control.in b/debian/control.in
index 301208a3..7bfeb748 100644
--- a/debian/control.in
+++ b/debian/control.in
@@ -3,8 +3,7 @@ Section: gnome
Priority: optional
Maintainer: Debian GNOME Maintainers <pkg-gnome-maintainers@lists.alioth.debian.org>
Uploaders: @GNOME_TEAM@
-Build-Depends: debhelper (>= 9),
- dh-autoreconf,
+Build-Depends: debhelper (>= 10),
gnome-pkg-tools (>= 0.10),
yelp-tools,
intltool (>= 0.40.0),
diff --git a/debian/rules b/debian/rules
index a8a82086..0d374c26 100755
--- a/debian/rules
+++ b/debian/rules
@@ -5,7 +5,7 @@
export DEB_LDFLAGS_MAINT_APPEND = -Wl,-O1 -Wl,-z,defs -Wl,--as-needed
%:
- dh $@ --with autoreconf,gnome
+ dh $@ --with gnome
override_dh_install:
dh_install --list-missing
bgstack15