--- libhtml-strip-perl-1.06.orig/debian/watch +++ libhtml-strip-perl-1.06/debian/watch @@ -0,0 +1,4 @@ +# format version number, currently 3; this line is compulsory! +version=3 +# URL to the package page followed by a regex to search +http://search.cpan.org/dist/HTML-Strip/ .*/HTML-Strip-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ --- libhtml-strip-perl-1.06.orig/debian/README.source +++ libhtml-strip-perl-1.06/debian/README.source @@ -0,0 +1,5 @@ +This package uses quilt to manage all modifications to the upstream +source. Changes are stored in the source package as diffs in +debian/patches and applied during the build. + +See /usr/share/doc/quilt/README.source for a detailed explanation. --- libhtml-strip-perl-1.06.orig/debian/rules +++ libhtml-strip-perl-1.06/debian/rules @@ -0,0 +1,25 @@ +#!/usr/bin/make -f + +include /usr/share/quilt/quilt.make + +build: build-stamp +build-stamp: $(QUILT_STAMPFN) + dh build + touch $@ + +clean: unpatch + dh $@ + +install: install-stamp +install-stamp: build-stamp + dh install + touch $@ + +binary-arch: install + dh $@ + +binary-indep: + +binary: binary-arch binary-indep + +.PHONY: binary binary-arch binary-indep install clean build --- libhtml-strip-perl-1.06.orig/debian/copyright +++ libhtml-strip-perl-1.06/debian/copyright @@ -0,0 +1,30 @@ +Format-Specification: + http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196 +Upstream-Maintainer: Alex Bowley +Upstream-Source: http://search.cpan.org/dist/HTML-Strip/ +Upstream-Name: HTML-Strip + +Files: * +Copyright: Copyright (c) 2003 Alex Bowley . All rights reserved. +License-Alias: Perl +License: Artistic | GPL-1+ + This program is free software; you can redistribute it and/or modify it under + the same terms as Perl itself. + +Files: debian/* +Copyright: 2008, Damyan Ivanov +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-strip-perl-1.06.orig/debian/compat +++ libhtml-strip-perl-1.06/debian/compat @@ -0,0 +1 @@ +7 --- libhtml-strip-perl-1.06.orig/debian/control +++ libhtml-strip-perl-1.06/debian/control @@ -0,0 +1,24 @@ +Source: libhtml-strip-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 7), perl (>= 5.6.0-12), libhtml-parser-perl, + quilt +Maintainer: Debian Perl Group +Uploaders: Damyan Ivanov +Standards-Version: 3.8.0 +Homepage: http://search.cpan.org/dist/HTML-Strip/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libhtml-strip-perl/ +Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libhtml-strip-perl/ + +Package: libhtml-strip-perl +Architecture: any +Depends: ${perl:Depends}, ${shlibs:Depends}, ${misc:Depends} +Description: strip HTML markup from text + HTML::Strip simply strips HTML-like markup from text in a very quick and + brutal manner. It could quite easily be used to strip XML or SGML from text + as well. + . + It is written in XS, and thus about five times quicker than using regular + expressions for the same task. + . + It does not do any syntax checking (if you want that, use HTML::Parser), --- libhtml-strip-perl-1.06.orig/debian/changelog +++ libhtml-strip-perl-1.06/debian/changelog @@ -0,0 +1,23 @@ +libhtml-strip-perl (1.06-1build3) trusty; urgency=low + + * Rebuild for Perl 5.18. + + -- Colin Watson Tue, 22 Oct 2013 09:54:38 +0100 + +libhtml-strip-perl (1.06-1build2) precise; urgency=low + + * Rebuild for Perl 5.14. + + -- Colin Watson Tue, 15 Nov 2011 21:01:54 +0000 + +libhtml-strip-perl (1.06-1build1) oneiric; urgency=low + + * Rebuild for Perl 5.12. + + -- Colin Watson Mon, 09 May 2011 12:52:58 +0100 + +libhtml-strip-perl (1.06-1) unstable; urgency=low + + * Initial Release. Closes: #509095 -- ITP + + -- Damyan Ivanov Mon, 29 Dec 2008 18:14:29 +0200 --- libhtml-strip-perl-1.06.orig/debian/patches/fix-pod-errors.patch +++ libhtml-strip-perl-1.06/debian/patches/fix-pod-errors.patch @@ -0,0 +1,33 @@ +# Author: Damyan Ivanov +# Description: fix POD errors +# missing =over and =back's +# Upstream-Bug: http://rt.cpan.org/Public/Bug/Display.html?id=42021 +--- a/Strip.pm ++++ b/Strip.pm +@@ -158,6 +158,8 @@ between calls to $hs->parse(). + + =head2 METHODS + ++=over ++ + =item new() + + Constructor. Can optionally take a hash of settings (with keys +@@ -201,6 +203,8 @@ any conversion of tags into spaces. Set + Takes a boolean value. If set to false, HTML::Strip will decode HTML + entities. Set to true by default. + ++=back ++ + =head2 LIMITATIONS + + =over 4 +@@ -227,6 +231,8 @@ excess whitespace (for example, using C< + HTML::Strip will only attempt decoding of HTML entities if + L is installed. + ++=back ++ + =head2 EXPORT + + None by default. --- libhtml-strip-perl-1.06.orig/debian/patches/series +++ libhtml-strip-perl-1.06/debian/patches/series @@ -0,0 +1 @@ +fix-pod-errors.patch