--- libhtml-stream-perl-1.60.orig/debian/compat +++ libhtml-stream-perl-1.60/debian/compat @@ -0,0 +1 @@ +5 --- libhtml-stream-perl-1.60.orig/debian/rules +++ libhtml-stream-perl-1.60/debian/rules @@ -0,0 +1,66 @@ +#!/usr/bin/make -f +# This debian/rules file is provided as a template for normal perl +# packages. It was created by Marc Brockschmidt for +# the Debian Perl Group (http://pkg-perl.alioth.debian.org/) but may +# be used freely wherever it is useful. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +# If set to a true value then MakeMaker's prompt function will +# always return the default without waiting for user input. +export PERL_MM_USE_DEFAULT=1 + +PERL ?= /usr/bin/perl +PACKAGE = $(shell dh_listpackages) +TMP = $(CURDIR)/debian/$(PACKAGE) + +build: build-stamp +build-stamp: + dh_testdir + # Add commands to compile the package here + $(PERL) Makefile.PL INSTALLDIRS=vendor + $(MAKE) + $(MAKE) test + chmod -x examples/giggles examples/latin + touch $@ + +clean: + dh_testdir + dh_testroot + dh_clean build-stamp install-stamp + # Add commands to clean up after the build process here + [ ! -f Makefile ] || $(MAKE) realclean + chmod +x examples/giggles examples/latin + +install: install-stamp +install-stamp: build-stamp + dh_testdir + dh_testroot + dh_clean -k + # Add commands to install the package into $(TMP) here + $(MAKE) install DESTDIR=$(TMP) PREFIX=/usr + [ ! -d $(TMP)/usr/lib/perl5 ] || \ + rmdir --ignore-fail-on-non-empty --parents --verbose \ + $(TMP)/usr/lib/perl5 + touch $@ + +binary-arch: +# We have nothing to do here for an architecture-independent package + +binary-indep: build install + dh_testdir + dh_testroot + dh_installexamples examples/* + dh_installdocs README README.system + dh_installchangelogs Changes + dh_perl + dh_compress + dh_fixperms + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install --- libhtml-stream-perl-1.60.orig/debian/watch +++ libhtml-stream-perl-1.60/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-Stream/ .*/HTML-Stream-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ --- libhtml-stream-perl-1.60.orig/debian/changelog +++ libhtml-stream-perl-1.60/debian/changelog @@ -0,0 +1,5 @@ +libhtml-stream-perl (1.60-1) unstable; urgency=low + + * Initial Release (closes: #567401) + + -- Dominic Hargreaves Thu, 28 Jan 2010 21:47:13 +0000 --- libhtml-stream-perl-1.60.orig/debian/control +++ libhtml-stream-perl-1.60/debian/control @@ -0,0 +1,21 @@ +Source: libhtml-stream-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 5) +Build-Depends-Indep: perl (>= 5.6.10-12) +Maintainer: Debian Perl Group +Uploaders: Dominic Hargreaves +Standards-Version: 3.8.3 +Homepage: http://search.cpan.org/dist/HTML-Stream/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libhtml-stream-perl/ +Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libhtml-stream-perl/ + +Package: libhtml-stream-perl +Architecture: all +Depends: ${perl:Depends}, ${misc:Depends} +Description: HTML output stream class, and some markup utilities + The HTML::Stream module provides you with an object-oriented + (and subclassable) way of outputting HTML. Basically, you open up + an "HTML stream" on an existing filehandle, and then do all of your + output to the HTML stream. You can intermix HTML-stream-output and + ordinary-print-output, if you like. --- libhtml-stream-perl-1.60.orig/debian/copyright +++ libhtml-stream-perl-1.60/debian/copyright @@ -0,0 +1,46 @@ +This is the debian package for the HTML-Stream module. +It was created by Dominic Hargreaves using dh-make-perl. + +It was downloaded from http://search.cpan.org/dist/HTML-Stream/ + +The upstream author is: Daniel T. Staal . +The "HTML-Stream" Perl5 toolkit. + +Copyright (c) 1996 by Eryq. All rights reserved. +Copyright (c) 1999 by ZeeGee Software Inc. All rights reserved. +Copyright (c) 2004 by Daniel Staal. All rights reserved. + +This program is free software; you can redistribute it and/or +modify it under the same terms as Perl itself. + +Perl is distributed under your choice of the GNU General Public License or +the Artistic License. On Debian GNU/Linux systems, the complete text of the +GNU General Public License can be found in `/usr/share/common-licenses/GPL' +and the Artistic Licence in `/usr/share/common-licenses/Artistic'. + + NO WARRANTY + +BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + +IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + +The Debian packaging is (C) 2010, Dominic Hargreaves and +is licensed under the same terms as the software itself (see above).