--- libdata-format-html-perl-0.3.orig/debian/control +++ libdata-format-html-perl-0.3/debian/control @@ -0,0 +1,19 @@ +Source: libdata-format-html-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 7), quilt +Build-Depends-Indep: perl (>= 5.6.0-12) +Maintainer: Debian Perl Group +Uploaders: Antonio Radici +Standards-Version: 3.8.0 +Homepage: http://search.cpan.org/dist/Data-Format-HTML/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libdata-format-html-perl/ +Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libdata-format-html-perl/ + +Package: libdata-format-html-perl +Architecture: all +Depends: ${perl:Depends}, ${misc:Depends} +Description: Perl module for dumping Perl objects to HTML + Data::Format::HTML perl takes perl data structures as input + and returns an HTML output which can be used as part of an + HTML page. --- libdata-format-html-perl-0.3.orig/debian/copyright +++ libdata-format-html-perl-0.3/debian/copyright @@ -0,0 +1,28 @@ +Format-Specification: + http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196 +Upstream-Maintainer: David Moreno Garza, - http://damog.net/ +Upstream-Source: http://search.cpan.org/dist/Data-Format-HTML/ +Upstream-Name: Data-Format-HTML + +Files: * +Copyright: 2008, David Moreno Garza, +License-Alias: Perl +License: Artistic | GPL-1+ + +Files: debian/* +Copyright: 2009, Antonio Radici +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' --- libdata-format-html-perl-0.3.orig/debian/watch +++ libdata-format-html-perl-0.3/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/Data-Format-HTML/ .*/Data-Format-HTML-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ --- libdata-format-html-perl-0.3.orig/debian/compat +++ libdata-format-html-perl-0.3/debian/compat @@ -0,0 +1 @@ +7 --- libdata-format-html-perl-0.3.orig/debian/changelog +++ libdata-format-html-perl-0.3/debian/changelog @@ -0,0 +1,5 @@ +libdata-format-html-perl (0.3-1) unstable; urgency=low + + * Initial Release (Closes: #508732) + + -- Antonio Radici Sun, 01 Feb 2009 14:45:22 +0000 --- libdata-format-html-perl-0.3.orig/debian/rules +++ libdata-format-html-perl-0.3/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: + +binary-indep: install + dh $@ + +binary: binary-arch binary-indep + +.PHONY: binary binary-arch binary-indep install clean build --- libdata-format-html-perl-0.3.orig/debian/patches/fix-pod-errors +++ libdata-format-html-perl-0.3/debian/patches/fix-pod-errors @@ -0,0 +1,33 @@ +fix pod errors to make lintian happy +--- a/lib/Data/Format/HTML.pm ++++ b/lib/Data/Format/HTML.pm +@@ -14,11 +14,11 @@ + =head1 SYNOPSIS + + use Data::Format::HTML; +- ++ + my $f = Data::Format::HTML->new; +- ++ + my %hash = (simple => 'hash'); +- ++ + # Of course it's very unlikely that you won't deal ever with this + # kind of structure, but HTML is able to hand it all anyway :) + my $struct = { +@@ -34,11 +34,11 @@ + }, + }, + }; +- ++ + $struct->{'Data::Format::HTML handles it all'} = $f; +- ++ + print $f->format(); +- ++ + And that will output the following insane, but possible, for the sake + of showing, HTML: + --- libdata-format-html-perl-0.3.orig/debian/patches/series +++ libdata-format-html-perl-0.3/debian/patches/series @@ -0,0 +1 @@ +fix-pod-errors