--- libhtml-highlight-perl-0.20.orig/debian/control +++ libhtml-highlight-perl-0.20/debian/control @@ -0,0 +1,21 @@ +Source: libhtml-highlight-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 7.0.8), quilt (>= 0.46-7) +Build-Depends-Indep: perl (>= 5.6.0-16) +Maintainer: Debian Perl Group +Uploaders: Damyan Ivanov , Gunnar Wolf , + Ernesto Hernández-Novich (USB) +Homepage: http://search.cpan.org/dist/HTML-Highlight/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libhtml-highlight-perl/ +Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libhtml-highlight-perl/ +Standards-Version: 3.8.1 + +Package: libhtml-highlight-perl +Architecture: all +Depends: ${misc:Depends}, ${perl:Depends} +Description: Perl module for highlighting words or patterns in HTML documents + HTML::Highlight provides Google-like highlighting of words or patterns + in HTML documents. This feature is typically used to highlight search + results. Each specified pattern or word is highlighted using a + different color. --- libhtml-highlight-perl-0.20.orig/debian/copyright +++ libhtml-highlight-perl-0.20/debian/copyright @@ -0,0 +1,31 @@ +Format-Specification: + http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196 +Upstream-Maintainer: Tomas Styblo, tripie@cpan.org +Upstream-Source: http://search.cpan.org/dist/HTML-Highlight/ +Upstream-Name: HTML-Highlight + +Files: * +Copyright: 2000, Tomas Styblo, tripie@cpan.org +License-Alias: Perl +License: Artistic | GPL-1+ + +Files: debian/* +Copyright: 2007, Damyan Ivanov + 2006-2009, Ernesto Hernández-Novich (USB) + 2008, Gunnar Wolf + 2009, gregor herrmann +License: Artistic | GPL-1+ + +License: Artistic + This program is free software; you can redistribute it and/or modify + it under the terms of the Artistic License, which comes with Perl. + On Debian GNU/Linux systems, the complete text of the Artistic License + can be found in `/usr/share/common-licenses/Artistic' + +License: GPL-1+ + 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 1, or (at your option) + any later version. + On Debian GNU/Linux systems, the complete text of the GNU General + Public License can be found in `/usr/share/common-licenses/GPL' --- libhtml-highlight-perl-0.20.orig/debian/libhtml-highlight-perl.examples +++ libhtml-highlight-perl-0.20/debian/libhtml-highlight-perl.examples @@ -0,0 +1 @@ +test.pl --- libhtml-highlight-perl-0.20.orig/debian/watch +++ libhtml-highlight-perl-0.20/debian/watch @@ -0,0 +1,3 @@ +# format version number, currently 3; this line is compulsory! +version=3 +http://search.cpan.org/dist/HTML-Highlight/ .+/HTML-Highlight-([\d\.]+)\.(?:tar\.gz|tar|tgz) --- libhtml-highlight-perl-0.20.orig/debian/compat +++ libhtml-highlight-perl-0.20/debian/compat @@ -0,0 +1 @@ +7 --- libhtml-highlight-perl-0.20.orig/debian/changelog +++ libhtml-highlight-perl-0.20/debian/changelog @@ -0,0 +1,84 @@ +libhtml-highlight-perl (0.20-6) unstable; urgency=low + + [ gregor herrmann ] + * debian/control: Changed: Switched Vcs-Browser field to ViewSVN + (source stanza). + * debian/control: Added: ${misc:Depends} to Depends: field. + + [ Ernesto Hernández-Novich (USB) ] + * Fixed typo in long description, thanks to Imran Chaudhry. + * debian/control: Upgraded Standards Version + + [ gregor herrmann ] + * Set debhelper compatibility level to 7; adapt + debian/{control,compat,rules}. + * debian/copyright: switch to new format. + * debian/control: make short description a noun phrase. + * Add Ernesto back to Uploaders. + * Add a patch to fix a POD error; add quilt framework. + + -- Ernesto Hernández-Novich (USB) Thu, 04 Jun 2009 09:19:06 -0430 + +libhtml-highlight-perl (0.20-5) unstable; urgency=low + + [ gregor herrmann ] + * Fix typo in long description, thanks to Adeodato Simó (closes: #473261). + * debian/rules: + - remove obsolete source and diff targets, add install targets to phony + - install test.pl as example instead of directly under docs + + [ Gunnar Wolf ] + * Added myself as an uploader + + -- Gunnar Wolf Mon, 12 May 2008 16:55:38 -0500 + +libhtml-highlight-perl (0.20-4) unstable; urgency=low + + [ gregor herrmann ] + * debian/rules: delete /usr/lib/perl5 only if it exists (Closes: #467942). + + [ Ernesto Hernández-Novich (USB) ] + * Upgraded to debhelper 6 + + -- Ernesto Hernández-Novich (USB) Mon, 14 Jan 2008 10:49:29 -0430 + +libhtml-highlight-perl (0.20-3) unstable; urgency=low + + [ Ernesto Hernández-Novich (USB) ] + * Moved package into Debian Pkg Perl Project SVN. + * Fixed copyright file with a better URL. + * Fixed watch file. + * Fixed Maintainer field in control file. + * Fixed copyright and control file with a better URL. + + [ Damyan Ivanov ] + * Use faster URL in debian/watch + * Do not install redundant README + * Remove debian/docs, install test.pl via dh_installdocs + * Bump standards-version to 3.7.3 (no changes) + * Bump debhelper compat level to 5 + * debian/copyright: + + verbatim copyright statement + + indented a bit + * Put me instead of Ernesto in Uploaders + + -- Damyan Ivanov Tue, 04 Dec 2007 22:25:07 +0200 + +libhtml-highlight-perl (0.20-2) unstable; urgency=low + + * Updated Standards Version. + * Cleanup debian/rules. + + -- Ernesto Hernández-Novich Mon, 02 Jul 2007 11:38:39 -0400 + +libhtml-highlight-perl (0.20-1) unstable; urgency=low + + * Bumped up version number to match upstream. + + -- Ernesto Hernández-Novich Fri, 01 Sep 2006 09:30:17 -0400 + +libhtml-highlight-perl (0.2-1) unstable; urgency=low + + * Initial Release. + + -- Ernesto Hernández-Novich Wed, 03 May 2006 10:53:26 -0400 --- libhtml-highlight-perl-0.20.orig/debian/rules +++ libhtml-highlight-perl-0.20/debian/rules @@ -0,0 +1,4 @@ +#!/usr/bin/make -f + +%: + dh --with quilt $@ --- libhtml-highlight-perl-0.20.orig/debian/patches/fix-pod.patch +++ libhtml-highlight-perl-0.20/debian/patches/fix-pod.patch @@ -0,0 +1,22 @@ +Author: gregor herrmann +Descriotion: fix pod error (=item outside of =over) + +--- a/Highlight.pm ++++ b/Highlight.pm +@@ -247,6 +247,7 @@ + This module provides Google-like highlighting of words or patterns in HTML + documents. This feature is typically used to highlight search results. + ++=over + + =item The construcutor: + +@@ -341,6 +342,8 @@ + That means only the first occurence of each of the words is taken into + account. + ++=back ++ + =head1 SUPPORT + + No official support is provided, but I welcome any comments, patches --- libhtml-highlight-perl-0.20.orig/debian/patches/series +++ libhtml-highlight-perl-0.20/debian/patches/series @@ -0,0 +1 @@ +fix-pod.patch