summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--debian/changelog1
-rw-r--r--debian/control4
-rw-r--r--debian/control.in4
-rwxr-xr-xdebian/rules1
4 files changed, 5 insertions, 5 deletions
diff --git a/debian/changelog b/debian/changelog
index 0a185417..39fa4680 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,6 +1,7 @@
zenity (3.28.1-1) UNRELEASED; urgency=medium
* New upstream release
+ * Bump Standards-Version to 4.1.4
-- Jeremy Bicha <jbicha@debian.org> Mon, 09 Apr 2018 20:07:50 -0400
diff --git a/debian/control b/debian/control
index a5ea8b32..16a2c9b3 100644
--- a/debian/control
+++ b/debian/control
@@ -16,7 +16,7 @@ Build-Depends: debhelper (>= 11),
libgtk-3-dev (>= 3.0.0),
libnotify-dev (>= 0.6.1),
libwebkit2gtk-4.0-dev (>= 2.8.1)
-Standards-Version: 4.1.2
+Standards-Version: 4.1.4
Vcs-Browser: https://salsa.debian.org/gnome-team/zenity
Vcs-Git: https://salsa.debian.org/gnome-team/zenity.git
Homepage: https://wiki.gnome.org/Projects/Zenity
@@ -26,7 +26,7 @@ Architecture: any
Multi-Arch: foreign
Depends: ${misc:Depends},
${shlibs:Depends},
- zenity-common (= ${source:Version})
+ zenity-common (>= ${source:Version})
Description: Display graphical dialog boxes from shell scripts
Zenity allows you to display GTK+ dialogs from shell scripts; it is a
rewrite of the `gdialog' command from GNOME 1.
diff --git a/debian/control.in b/debian/control.in
index f2de01e4..df69dbc3 100644
--- a/debian/control.in
+++ b/debian/control.in
@@ -12,7 +12,7 @@ Build-Depends: debhelper (>= 11),
libgtk-3-dev (>= 3.0.0),
libnotify-dev (>= 0.6.1),
libwebkit2gtk-4.0-dev (>= 2.8.1)
-Standards-Version: 4.1.2
+Standards-Version: 4.1.4
Vcs-Browser: https://salsa.debian.org/gnome-team/zenity
Vcs-Git: https://salsa.debian.org/gnome-team/zenity.git
Homepage: https://wiki.gnome.org/Projects/Zenity
@@ -22,7 +22,7 @@ Architecture: any
Multi-Arch: foreign
Depends: ${misc:Depends},
${shlibs:Depends},
- zenity-common (= ${source:Version})
+ zenity-common (>= ${source:Version})
Description: Display graphical dialog boxes from shell scripts
Zenity allows you to display GTK+ dialogs from shell scripts; it is a
rewrite of the `gdialog' command from GNOME 1.
diff --git a/debian/rules b/debian/rules
index 7c05bb68..52f0d21e 100755
--- a/debian/rules
+++ b/debian/rules
@@ -1,5 +1,4 @@
#!/usr/bin/make -f
--include /usr/share/gnome-pkg-tools/1/rules/gnome-get-source.mk
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
export DEB_LDFLAGS_MAINT_APPEND = -Wl,-z,defs -Wl,--as-needed
bgstack15