diff -Nru fuzz-0.6/debian/changelog fuzz-0.6/debian/changelog --- fuzz-0.6/debian/changelog 2011-09-27 08:51:39.000000000 +0000 +++ fuzz-0.6/debian/changelog 2012-03-23 10:39:30.000000000 +0000 @@ -1,3 +1,31 @@ +fuzz (0.6-14) unstable; urgency=low + + * debian/control + - (Build-Depends): Rm dpkg-dev; not needed with debhelper 9. + - (Standards-Version): Update to 3.9.3.1. + * debian/copyright + - Update to format 1.0. + * debian/rules + - Enable all hardening flags. + - Use DEB_*_MAINT_* variables. + + -- Jari Aalto Fri, 23 Mar 2012 06:36:25 -0400 + +fuzz (0.6-13) unstable; urgency=low + + * debian/compat + - Update to 9 + * debian/control + - (Build-Depends): Update to debhelper 9, dpkg-dev 1.16.1. + * debian/copyright + - (X-*Bugs,Vcs): Add new headers. + * debian/rules + - Remove unneeded targets. + - Use hardened CFLAGS. + http://wiki.debian.org/ReleaseGoals/SecurityHardeningBuildFlags + + -- Jari Aalto Sat, 11 Feb 2012 18:52:14 -0500 + fuzz (0.6-12) unstable; urgency=low * debian/copyright diff -Nru fuzz-0.6/debian/compat fuzz-0.6/debian/compat --- fuzz-0.6/debian/compat 2011-09-27 08:51:39.000000000 +0000 +++ fuzz-0.6/debian/compat 2012-03-23 10:39:30.000000000 +0000 @@ -1 +1 @@ -8 +9 diff -Nru fuzz-0.6/debian/control fuzz-0.6/debian/control --- fuzz-0.6/debian/control 2011-09-27 08:51:39.000000000 +0000 +++ fuzz-0.6/debian/control 2012-03-23 10:39:30.000000000 +0000 @@ -2,8 +2,8 @@ Section: devel Priority: optional Maintainer: Jari Aalto -Build-Depends: debhelper (>= 8), libreadline-dev (>= 6) -Standards-Version: 3.9.2 +Build-Depends: debhelper (>= 9), libreadline-dev (>= 6) +Standards-Version: 3.9.3.1 Vcs-Browser: http://git.debian.org/?p=collab-maint/fuzz.git Vcs-Git: git://git.debian.org/git/collab-maint/fuzz.git Homepage: http://freshmeat.net/projects/fuzz diff -Nru fuzz-0.6/debian/copyright fuzz-0.6/debian/copyright --- fuzz-0.6/debian/copyright 2011-09-27 08:51:39.000000000 +0000 +++ fuzz-0.6/debian/copyright 2012-03-23 10:39:30.000000000 +0000 @@ -1,26 +1,27 @@ -Format: http://anonscm.debian.org/viewvc/dep/web/deps/dep5.mdwn?revision=174 -X-Format: http://dep.debian.net/deps/dep5 +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0 Upstream-Name: fuzz Upstream-Contact: Ben Woodard Source: http://freshmeat.net/projects/fuzz X-Source: http://sourceforge.net/projects/fuzz +X-Upstream-Bugs: https://sourceforge.net/tracker/?group_id=323&atid=100323 +X-Upstream-Vcs: https://sourceforge.net/projects/fuzz/develop X-Comment: Dead upstream. Files: * Copyright: - 1999 Ben Woodard & VA Linux Systems. + 1999 Ben Woodard & VA Linux Systems. License: GPL-2+ Files: getopt.* Copyright: - 1987-1998 Free Software Foundation, Inc. + 1987-1998 Free Software Foundation, Inc. License: GPL-2+ Files: debian/* Copyright: - 2009-2011 Jari Aalto - 2009 Iulian Udrea - 2000 Thomas Smith + 2009-2012 Jari Aalto + 2009 Iulian Udrea + 2000 Thomas Smith License: GPL-2+ License: GPL-2+ diff -Nru fuzz-0.6/debian/rules fuzz-0.6/debian/rules --- fuzz-0.6/debian/rules 2011-09-27 08:51:39.000000000 +0000 +++ fuzz-0.6/debian/rules 2012-03-23 10:39:30.000000000 +0000 @@ -1,10 +1,8 @@ #!/usr/bin/make -f -override_dh_auto_configure: - ./configure --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info - -override_sh_auto_install: - $(MAKE) DESTDIR=$(CURDIR)/debian/fuzz install +export DEB_BUILD_MAINT_OPTIONS = hardening=+all +export DEB_CFLAGS_MAINT_APPEND = -Wall -pedantic +export DEB_LDFLAGS_MAINT_APPEND = -Wl,--as-needed %: dh $@