--- wpp-2.13.1.35.orig/wpp +++ wpp-2.13.1.35/wpp @@ -511,7 +511,7 @@ wpp_get('OUTPUTDIR') . '/' . wpp_get('OUTPUTSUBDIR') . '/' . $url); if ($file =~ /^([^#?]*)(?:[#?].*)?$/ && ! -e $1) { - warning($W_WARNING, "LINK WARNING: local file '$1' desn't exists"); + warning($W_WARNING, "LINK WARNING: local file '$1' doesn't exists"); } if (!$nodeps) { --- wpp-2.13.1.35.orig/debian/docs +++ wpp-2.13.1.35/debian/docs @@ -0,0 +1 @@ +README --- wpp-2.13.1.35.orig/debian/control +++ wpp-2.13.1.35/debian/control @@ -0,0 +1,23 @@ +Source: wpp +Section: text +Priority: extra +Maintainer: Tibor Csögör +Build-Depends: debhelper (>= 5) +Standards-Version: 3.7.2 + +Package: wpp +Architecture: all +Depends: ${perl:Depends}, libio-stringy-perl +Description: The Web Preprocessor - a Perl script to preprocess HTML files + WPP is a small Perl script that allows preprocessing of HTML files. + You can define variables, which are abbreviations for longer + constructs, and include common HTML fragments. It's useful for + giving a uniform layout to different HTML pages. It can be used in + cgi-bin programs for automatic generation of pages. With less HTML + code inside them you can make more flexible and readable scripts. + . + WPP provides four separate facilities that you can use as you see + fit: inclusion of text/HTML fragments, variable expansion, + conditional generation, macro expansion. + . + Homepage: http://wpp.sourceforge.net/ --- wpp-2.13.1.35.orig/debian/rules +++ wpp-2.13.1.35/debian/rules @@ -0,0 +1,33 @@ +#!/usr/bin/make -f + +clean: + dh_testdir + dh_testroot + dh_clean + +build: + dh_testdir + +install: build + dh_testdir + dh_testroot + dh_install + dh_link + +binary: binary-indep binary-arch +binary-arch: build install +binary-indep: build install + dh_testdir + dh_testroot + dh_installdocs + dh_installman + dh_installchangelogs Changelog + dh_compress -Xmanual + dh_fixperms + dh_installdeb + dh_perl + dh_gencontrol + dh_md5sums + dh_builddeb + +.PHONY: clean build install binary binary-indep binary-arch --- wpp-2.13.1.35.orig/debian/changelog +++ wpp-2.13.1.35/debian/changelog @@ -0,0 +1,113 @@ +wpp (2.13.1.35-3) unstable; urgency=low + + * Fixed policy 7.6 violation. + * Degraded package to priority level extra. + * Updated to debhelper V5. + * Standards-Version updated to 3.7.2. + + -- Tibor Csögör Fri, 27 Oct 2006 05:09:16 +0200 + +wpp (2.13.1.35-2) unstable; urgency=low + + * Added dependency on libio-stringy-perl. Closes: #334776. + + -- Tibor Csögör Thu, 20 Oct 2005 20:00:35 +0200 + +wpp (2.13.1.35-1) unstable; urgency=low + + * New maintainer. Closes: #282304. + * New upstream release. + * Fixed small typo. Closes: #279340. + * Updated to debhelper V4. + * Standards-Version updated to 3.6.2. + * debian/watch file added. + + -- Tibor Csögör Tue, 30 Aug 2005 01:21:13 +0200 + +wpp (2.13.1.33b-4) unstable; urgency=low + + * QA Group upload orphaning this package + + -- Andrew Pollock Fri, 4 Mar 2005 15:23:13 +1100 + +wpp (2.13.1.33b-3) unstable; urgency=low + + * doc-base abstract and title changed. + * watch file removed. + * Standards-Version updated to 3.6.1. + + -- Adam Byrtek Mon, 31 May 2004 15:58:50 +0200 + +wpp (2.13.1.33b-2) unstable; urgency=low + + * doc-base section changed into Apps/Text. + * Standards-Version updated to 3.6.0. + * debian/rules file cleaned up. + * User manual now installed into manual/ subdirectory. + + -- Adam Byrtek Mon, 2 Feb 2004 18:35:49 +0100 + +wpp (2.13.1.33b-1) unstable; urgency=low + + * New upstream release. + + -- Adam Byrtek Wed, 18 Jun 2003 10:21:07 +0200 + +wpp (2.13.1.29-1) unstable; urgency=low + + * New upstream release. + * Build-Depends changed into Build-Depends-Indep in debian/control. + + -- Adam Byrtek Mon, 10 Mar 2003 11:59:18 +0100 + +wpp (2.13.1.27-2) unstable; urgency=low + + * debian/watch file added. + + -- Adam Byrtek Sun, 10 Nov 2002 20:12:17 +0100 + +wpp (2.13.1.27-1) unstable; urgency=low + + * New upstream release. + + -- Adam Byrtek Sat, 19 Oct 2002 10:10:52 +0200 + +wpp (2.13.1.25-2) unstable; urgency=low + + * Architecture changed to 'all', not 'any'. Closes: #163203. + + -- Adam Byrtek Thu, 3 Oct 2002 21:21:48 +0200 + +wpp (2.13.1.25-1) unstable; urgency=low + + * New upstream release. + + -- Adam Byrtek Fri, 6 Sep 2002 20:45:46 +0200 + +wpp (2.13.1.17-4) unstable; urgency=low + + * Updated description (yes, once more). + * Added Debian documentation (doc-base) registration of manual. + + -- Adam Byrtek Wed, 27 Feb 2002 12:45:21 +0100 + +wpp (2.13.1.17-3) unstable; urgency=low + + * Corrected package description. Closes: #135827. + + -- Adam Byrtek Tue, 26 Feb 2002 14:54:19 +0100 + +wpp (2.13.1.17-2) unstable; urgency=low + + * Rules modified to use dh_perl. + * Modified description. + + -- Adam Byrtek Sun, 24 Feb 2002 14:18:00 +0100 + +wpp (2.13.1.17-1) unstable; urgency=low + + * Initial Release. Closes: bug#134607. + * Created Makefile with an 'install' target. + + -- Adam Byrtek Sat, 12 Jan 2002 03:00:42 +0100 + --- wpp-2.13.1.35.orig/debian/manpages +++ wpp-2.13.1.35/debian/manpages @@ -0,0 +1 @@ +wpp.man --- wpp-2.13.1.35.orig/debian/copyright +++ wpp-2.13.1.35/debian/copyright @@ -0,0 +1,30 @@ +The Web Preprocessor - a Perl script to preprocess HTML files + +Author: Marco Lamberto + +Copyright (C) 1997-2004 Marco Lamberto + + + 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; either version 2 of the License, or + (at your option) any later version. + + 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. + + You should have received a copy of the GNU General Public License + along the Debian GNU/Linux distribution in file + /usr/share/common-licenses/GPL; if not, write to the Free Software + Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA + 02110-1301, USA. + + +This software was debianized by Adam Byrtek on Sat, +12 Jan 2002 03:00:42 +0100. + +Current maintainer: Tibor Csögör + +Downloaded from: http://wpp.sourceforge.net/ --- wpp-2.13.1.35.orig/debian/doc-base +++ wpp-2.13.1.35/debian/doc-base @@ -0,0 +1,9 @@ +Document: wpp +Title: WPP (The Web Preprocessor) Manual +Author: Marco Lamberto +Abstract: Usage manual for WPP, a small Perl script that allows preprocessing of HTML files. +Section: Apps/Text + +Format: HTML +Index: /usr/share/doc/wpp/manual/index.html +Files: /usr/share/doc/wpp/manual/*.html --- wpp-2.13.1.35.orig/debian/watch +++ wpp-2.13.1.35/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://qa.debian.org/watch/sf.php/wpp/ wpp-(.*)\.tgz debian uupdate --- wpp-2.13.1.35.orig/debian/compat +++ wpp-2.13.1.35/debian/compat @@ -0,0 +1 @@ +5 --- wpp-2.13.1.35.orig/debian/install +++ wpp-2.13.1.35/debian/install @@ -0,0 +1,3 @@ +wpp usr/bin +wpplib/* usr/share/wpp +docs/* usr/share/doc/wpp/manual --- wpp-2.13.1.35.orig/debian/links +++ wpp-2.13.1.35/debian/links @@ -0,0 +1 @@ +usr/share/common-licenses/GPL usr/share/doc/wpp/manual/GPL.txt