--- vilistextum-2.6.9.orig/debian/manpages +++ vilistextum-2.6.9/debian/manpages @@ -0,0 +1 @@ +doc/vilistextum.1 --- vilistextum-2.6.9.orig/debian/rules +++ vilistextum-2.6.9/debian/rules @@ -0,0 +1,7 @@ +#!/usr/bin/make -f + +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/autotools.mk +include /usr/share/cdbs/1/rules/patchsys-quilt.mk + +DEB_INSTAL_DOCS_ALL = CHANGES --- vilistextum-2.6.9.orig/debian/copyright +++ vilistextum-2.6.9/debian/copyright @@ -0,0 +1,24 @@ +Format-Specification: http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=437 +Upstream-Name: Vilistextum +Upstream-Maintainer: Patric Müller +Upstream-Source: http://bhaak.dyndns.org/vilistextum/download.html + +Files: * +Copyright: © 1998-2006 Patric Müller +License: GPL-2 + +Files: debian/* +Copyright: © 2009, Canonical Limited +License: GPL-2 + +License: GPL-2 + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; version 2 of the License. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + Please see `/usr/share/common-licenses/GPL-2'. --- vilistextum-2.6.9.orig/debian/install +++ vilistextum-2.6.9/debian/install @@ -0,0 +1,3 @@ +doc/README.html usr/share/doc/vilistextum/html/ +doc/htmlmail.html usr/share/doc/vilistextum/html/ +doc/screenshots.html usr/share/doc/vilistextum/html/ --- vilistextum-2.6.9.orig/debian/control +++ vilistextum-2.6.9/debian/control @@ -0,0 +1,17 @@ +Source: vilistextum +Section: text +Priority: optional +Maintainer: Siegfried-Angel Gevatter Pujals +Build-Depends: cdbs, debhelper (>= 5), autotools-dev, quilt +Standards-Version: 3.8.0 +Homepage: http://bhaak.dyndns.org/vilistextum/ + +Package: vilistextum +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: a HTML to text converter + Vilistextum is a small and fast HTML to text / ascii converter + specifically programmed to get the best out of incorrect html. It is + quite fault-tolerant and deals well with badly-formed or otherwise + quirky HTML. It is able to optimize for ebook reading, collapse + multiple blank lines, and create footnotes out of links. --- vilistextum-2.6.9.orig/debian/changelog +++ vilistextum-2.6.9/debian/changelog @@ -0,0 +1,14 @@ +vilistextum (2.6.9-1.1) unstable; urgency=low + + * Non-maintainer upload. + * 01-add-format-arguments.patch: Add format argument to avoid format-security + error while building. (Closes: #646501) + * debian/control, debian/rules: Add quilt system to apply patches. + + -- Mònica Ramírez Arceda Sun, 04 Dec 2011 21:16:20 +0100 + +vilistextum (2.6.9-1) unstable; urgency=low + + * Initial release (Closes: #516972). + + -- Siegfried-Angel Gevatter Pujals Sun, 10 May 2009 22:10:35 +0200 --- vilistextum-2.6.9.orig/debian/watch +++ vilistextum-2.6.9/debian/watch @@ -0,0 +1,3 @@ +version=3 +opts="uversionmangle=s/^2.22//" \ +http://bhaak.dyndns.org/vilistextum/download.html vilistextum\-([0-9\.]+)\.tar\.gz --- vilistextum-2.6.9.orig/debian/compat +++ vilistextum-2.6.9/debian/compat @@ -0,0 +1 @@ +5 --- vilistextum-2.6.9.orig/debian/patches/series +++ vilistextum-2.6.9/debian/patches/series @@ -0,0 +1 @@ +01-add-format-arguments.patch --- vilistextum-2.6.9.orig/debian/patches/01-add-format-arguments.patch +++ vilistextum-2.6.9/debian/patches/01-add-format-arguments.patch @@ -0,0 +1,17 @@ +Description: Add format argument to printf. +Author: Mònica Ramírez Arceda +Last-Update: 2011-12-04 + + + +--- a/src/main.c ++++ b/src/main.c +@@ -165,7 +165,7 @@ + + void help() + { +- printf(help_text); ++ printf("%s", help_text); + + exit(0); + } /* end help */