]> git.sur5r.net Git - glabels/commitdiff
Prepare 3.4.0 sur5r.net/master
authorJakob Haufe <sur5r@sur5r.net>
Thu, 29 Dec 2016 16:31:01 +0000 (17:31 +0100)
committerJakob Haufe <sur5r@sur5r.net>
Thu, 29 Dec 2016 16:31:01 +0000 (17:31 +0100)
- Drop now unneeded hardening-no-fortify-functions override
- Convert ldconfig call in postrm to trigger
- Bump Standards-Version (no changes needed)
- New patch: glabels/debian/patches/gnome-common-cleanup (Closes:
  #830033)

debian/changelog
debian/control
debian/glabels.lintian-overrides
debian/glabels.postrm [deleted file]
debian/glabels.triggers [new file with mode: 0644]
debian/patches/gnome-common-cleanup [new file with mode: 0644]
debian/patches/series

index 2962ebd7bbddb46501d8ef0f9334797aa5e8a7d7..95ed6d6b7d902bc4001eeb2cff1975192ecd609c 100644 (file)
@@ -1,3 +1,13 @@
+glabels (3.4.0-1) UNRELEASED; urgency=medium
+
+  * New upstream version
+  * Drop now unneeded hardening-no-fortify-functions override
+  * Convert ldconfig call in postrm to trigger
+  * Bump Standards-Version (no changes needed)
+  * New patch: glabels/debian/patches/gnome-common-cleanup (Closes: #830033)
+
+ -- Jakob Haufe <sur5r@sur5r.net>  Fri, 09 Dec 2016 00:27:06 +0100
+
 glabels (3.2.1-2) unstable; urgency=medium
 
   * Call ldconfig in postrm to make lintian happy
index b44589b8a0a3409e3b0a4d575240aa2be72be0cb..352474373e87cdcfc1490ceef78c6d8e0f00cf25 100644 (file)
@@ -3,6 +3,7 @@ Section: gnome
 Priority: optional
 Maintainer: Jakob Haufe <sur5r@sur5r.net>
 Build-Depends: autotools-dev,
+               autoconf-archive,
                cdbs,
                dpkg-dev (>= 1.16.1~),
                debhelper (>= 9.0),
@@ -20,7 +21,7 @@ Build-Depends: autotools-dev,
                barcode (>= 0.98),
                libqrencode-dev (>= 3.1.0),
                libiec16022-dev (>= 0.2.4)
-Standards-Version: 3.9.6
+Standards-Version: 3.9.8
 Homepage: http://glabels.org/
 
 Package: glabels
index c9f9e4a71ef591958bbe4584d03e08ea7431c8b9..ae2622c8b3fcc08e33a3fd408c9ff714dd511051 100644 (file)
@@ -1,6 +1,4 @@
 # We have no external users of those libraries yet
 glabels: package-name-doesnt-match-sonames libglabels-3.0-8 libglbarcode-3.0-0
-# All hardening flags are present, unsolvable ATM
-glabels: hardening-no-fortify-functions usr/bin/glabels-3
 # No reasonable keywords to be added here
 glabels: desktop-entry-lacks-keywords-entry usr/share/applications/glabels-3.0.desktop
diff --git a/debian/glabels.postrm b/debian/glabels.postrm
deleted file mode 100644 (file)
index c8d5e40..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/sh
-set -e
-
-if [ "$1" = "remove" ]; then
-    ldconfig
-fi
-
-#DEBHELPER#
-
-exit 0
diff --git a/debian/glabels.triggers b/debian/glabels.triggers
new file mode 100644 (file)
index 0000000..dd86603
--- /dev/null
@@ -0,0 +1 @@
+activate-noawait ldconfig
diff --git a/debian/patches/gnome-common-cleanup b/debian/patches/gnome-common-cleanup
new file mode 100644 (file)
index 0000000..23cd9c0
--- /dev/null
@@ -0,0 +1,19 @@
+Description: Replace deprecated gnome-common macro
+ GNOME_COMPILER_WARNINGS has been deprecated. Replace it by call to
+ AX_COMPILER_FLAGS.
+Author: Jakob Haufe <sur5r@sur5r.net>
+Bug-Debian: https://bugs.debian.org/830033
+Forwarded: https://github.com/jimevins/glabels/pull/18
+Last-Update: 2016-12-15
+
+--- glabels-3.4.0.orig/configure.ac
++++ glabels-3.4.0/configure.ac
+@@ -43,7 +43,7 @@ AC_SEARCH_LIBS([strerror],[cposix])
+ AC_PROG_CC
+ AC_PROG_INSTALL
+-GNOME_COMPILE_WARNINGS
++AX_COMPILER_FLAGS
+ AC_PATH_PROG(GLIB_GENMARSHAL,         glib-genmarshal)
+ AC_PATH_PROG(GDK_PIXBUF_CSOURCE,      gdk-pixbuf-csource)
index 1712b23f48f750d042a5ab0ce13ce07755fda266..b180712adbf3813da1f742bf5e0451c29aab0ac0 100644 (file)
@@ -1,2 +1,3 @@
 0002-manpage.patch
 0003-Ignore-license.page.patch
+gnome-common-cleanup