--- libhttp-server-simple-recorder-perl-0.03.orig/debian/control +++ libhttp-server-simple-recorder-perl-0.03/debian/control @@ -0,0 +1,22 @@ +Source: libhttp-server-simple-recorder-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 7) +Build-Depends-Indep: perl (>= 5.6.10-12), libhttp-server-simple-perl (>= 0.10), + libio-tee-perl, libtest-http-server-simple-perl (>= 0.02), libtest-pod-perl, + netbase +Maintainer: Debian Perl Group +Uploaders: AGOSTINI Yves , + gregor herrmann +Standards-Version: 3.8.0 +Homepage: http://search.cpan.org/dist/HTTP-Server-Simple-Recorder/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libhttp-server-simple-recorder-perl/ +Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libhttp-server-simple-recorder-perl/ + +Package: libhttp-server-simple-recorder-perl +Architecture: all +Depends: ${perl:Depends}, ${misc:Depends}, libhttp-server-simple-perl (>= 0.33-2), + libio-tee-perl, libtest-http-server-simple-perl (>= 0.02) +Description: Mixin to record HTTP::Server::Simple's sockets + HTTP::Server::Simple::Recorder allows you to record all HTTP communication + between an HTTP::Server::Simple-derived server and its clients. --- libhttp-server-simple-recorder-perl-0.03.orig/debian/copyright +++ libhttp-server-simple-recorder-perl-0.03/debian/copyright @@ -0,0 +1,35 @@ +Format-Specification: + http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196 +Upstream-Maintainer: David Glasser +Upstream-Source: http://search.cpan.org/dist/HTTP-Server-Simple-Recorder/ +Upstream-Name: HTTP-Server-Simple-Recorder + +Files: * +Copyright: Copyright (c) 2005, Best Practical Solutions, LLC +License-Alias: Perl +License: GPL-1+ | Artistic + +Files: inc/* +Copyright: Copyright 2002 - 2008 by Brian Ingerson, Audrey Tang and Adam Kennedy +License-Alias: Perl +License: GPL-1+ | Artistic + +Files: debian/* +Copyright: + 2008, AGOSTINI Yves + 2008, 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' --- libhttp-server-simple-recorder-perl-0.03.orig/debian/watch +++ libhttp-server-simple-recorder-perl-0.03/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/HTTP-Server-Simple-Recorder/ .*/HTTP-Server-Simple-Recorder-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ --- libhttp-server-simple-recorder-perl-0.03.orig/debian/compat +++ libhttp-server-simple-recorder-perl-0.03/debian/compat @@ -0,0 +1 @@ +7 --- libhttp-server-simple-recorder-perl-0.03.orig/debian/changelog +++ libhttp-server-simple-recorder-perl-0.03/debian/changelog @@ -0,0 +1,18 @@ +libhttp-server-simple-recorder-perl (0.03-1) unstable; urgency=low + + * New upstream release. + * debian/control: Changed: Switched Vcs-Browser field to ViewSVN + (source stanza). + * Set debhelper compatibility level to 7; adapt + debian/{control,compat,rules}. + * Set Standards-Version to 3.8.0 (no changes). + * Add /me to Uploaders. + * debian/copyright: refresh formatting, add info about files under inc/. + + -- gregor herrmann Sun, 30 Nov 2008 18:17:10 +0100 + +libhttp-server-simple-recorder-perl (0.02-1) unstable; urgency=low + + * Initial Release. (Closes: #482670) + + -- AGOSTINI Yves Sat, 24 May 2008 09:09:02 +0200 --- libhttp-server-simple-recorder-perl-0.03.orig/debian/rules +++ libhttp-server-simple-recorder-perl-0.03/debian/rules @@ -0,0 +1,23 @@ +#!/usr/bin/make -f + +build: build-stamp +build-stamp: + dh build + touch $@ + +clean: + 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