diff options
-rw-r--r-- | debian/changelog | 7 | ||||
-rw-r--r-- | debian/control | 4 | ||||
-rwxr-xr-x | debian/rules | 2 |
3 files changed, 9 insertions, 4 deletions
diff --git a/debian/changelog b/debian/changelog index c9b89b8..409ba78 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,11 +1,14 @@ -foomatic-filters (4.0.17-7) UNRELEASED; urgency=high +foomatic-filters (4.0.17-7) unstable; urgency=high * New patch debian/patches/0115-r7406_also_consider_the_back_\ tick_as_an_illegal_shell_escape_character.patch (Closes: #806886) + CVE-2015-8327 Insufficient script injection prevention. * Rename patches. + * To prevent build warnings: + - debian/control: Add autotools-dev and autoconf to Buld-Depends. + - debian/rules: Add --with autotools-dev. - -- Jörg Frings-Fürst <debian@jff-webhosting.net> Thu, 01 Oct 2015 10:39:07 +0200 + -- Jörg Frings-Fürst <debian@jff-webhosting.net> Sat, 12 Dec 2015 14:13:50 +0100 foomatic-filters (4.0.17-6) unstable; urgency=low diff --git a/debian/control b/debian/control index 2e592f7..99f993e 100644 --- a/debian/control +++ b/debian/control @@ -2,7 +2,9 @@ Source: foomatic-filters Section: text Priority: optional Maintainer: Jörg Frings-Fürst <debian@jff-webhosting.net> -Build-Depends: +Build-Depends: + autoconf, + autotools-dev, debhelper (>= 9), libcups2-dev, libdbus-1-dev, diff --git a/debian/rules b/debian/rules index 91057d5..29c1a83 100755 --- a/debian/rules +++ b/debian/rules @@ -3,7 +3,7 @@ derives_from_ubuntu := $(shell (dpkg-vendor --derives-from Ubuntu && echo "yes") || echo "no") %: - dh $@ + dh $@ --with autotools-dev override_dh_auto_configure: dh_auto_configure -- --disable-file-converter-check |