Author: tille Date: 2011-12-23 14:12:30 +0000 (Fri, 23 Dec 2011) New Revision: 9083
Added: trunk/packages/njplot/trunk/debian/patches/format-security.patch Modified: trunk/packages/njplot/trunk/debian/changelog trunk/packages/njplot/trunk/debian/compat trunk/packages/njplot/trunk/debian/control trunk/packages/njplot/trunk/debian/patches/series Log: Fix format security issue, usual packaging updates Modified: trunk/packages/njplot/trunk/debian/changelog =================================================================== --- trunk/packages/njplot/trunk/debian/changelog 2011-12-23 09:51:06 UTC (rev 9082) +++ trunk/packages/njplot/trunk/debian/changelog 2011-12-23 14:12:30 UTC (rev 9083) @@ -1,3 +1,16 @@ +njplot (2.3-4) unstable; urgency=low + + * Fix FTBFS with -Werror=format-security (Thanks for the + patch to Ilya Barygin <[email protected]>) + Closes: #653001 + * debian/control: + - Standards-Version: 3.9.2 (no changes needed) + - Fixed Vcs fields + - Removed article in short description + * Debhelper 8 (control+compat) + + -- Andreas Tille <[email protected]> Fri, 23 Dec 2011 13:58:26 +0100 + njplot (2.3-3) unstable; urgency=low * Standards-Version: 3.9.1 (no changes needed) Modified: trunk/packages/njplot/trunk/debian/compat =================================================================== --- trunk/packages/njplot/trunk/debian/compat 2011-12-23 09:51:06 UTC (rev 9082) +++ trunk/packages/njplot/trunk/debian/compat 2011-12-23 14:12:30 UTC (rev 9083) @@ -1 +1 @@ -7 +8 Modified: trunk/packages/njplot/trunk/debian/control =================================================================== --- trunk/packages/njplot/trunk/debian/control 2011-12-23 09:51:06 UTC (rev 9082) +++ trunk/packages/njplot/trunk/debian/control 2011-12-23 14:12:30 UTC (rev 9083) @@ -4,16 +4,16 @@ Maintainer: Debian Med Packaging Team <[email protected]> DM-Upload-Allowed: yes Uploaders: Andreas Tille <[email protected]>, Charles Plessy <[email protected]> -Build-Depends: cdbs, debhelper (>= 7), libncbi6-dev, libvibrant6-dev, lesstif2-dev, libxt-dev -Standards-Version: 3.9.1 +Build-Depends: cdbs, debhelper (>= 8), libncbi6-dev, libvibrant6-dev, lesstif2-dev, libxt-dev +Standards-Version: 3.9.2 Homepage: http://pbil.univ-lyon1.fr/software/njplot.html -Vcs-Browser: http://svn.debian.org/wsvn/debian-med/trunk/packages/njplot/trunk/?rev=0&sc=0 -Vcs-Svn: svn://svn.debian.org/svn/debian-med/trunk/packages/njplot/trunk/ +Vcs-Browser: http://svn.debian.org/wsvn/debian-med/trunk/packages/njplot/trunk/ +Vcs-Svn: svn://svn.debian.org/debian-med/trunk/packages/njplot/trunk/ Package: njplot Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} -Description: A phylogenetic tree drawing program +Description: phylogenetic tree drawing program NJplot is able to draw any dendrogram expressed in the Newick standard phylogenetic tree format (e.g., the format used by the Phylip package). NJplot is especially convenient for rooting the unrooted trees Added: trunk/packages/njplot/trunk/debian/patches/format-security.patch =================================================================== --- trunk/packages/njplot/trunk/debian/patches/format-security.patch (rev 0) +++ trunk/packages/njplot/trunk/debian/patches/format-security.patch 2011-12-23 14:12:30 UTC (rev 9083) @@ -0,0 +1,15 @@ +Description: fix FTBFS with -Werror=format-security. +Author: Ilya Barygin <[email protected]> +Bug-Closed: http://bugs.debian.org/653001 + +--- njplot-2.3.orig/njplot-vib.c ++++ njplot-2.3/njplot-vib.c +@@ -1976,7 +1976,7 @@ PDFONLY" no window interface, just + #else + fprintf(stderr, + #endif +- message); ++ "%s", message); + exit(0); + } + } Modified: trunk/packages/njplot/trunk/debian/patches/series =================================================================== --- trunk/packages/njplot/trunk/debian/patches/series 2011-12-23 09:51:06 UTC (rev 9082) +++ trunk/packages/njplot/trunk/debian/patches/series 2011-12-23 14:12:30 UTC (rev 9083) @@ -1 +1,2 @@ no_unneded_libs.patch +format-security.patch _______________________________________________ debian-med-commit mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-med-commit
