--- libtest-http-server-simple-perl-0.10.orig/debian/control +++ libtest-http-server-simple-perl-0.10/debian/control @@ -0,0 +1,24 @@ +Source: libtest-http-server-simple-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 7) +Build-Depends-Indep: perl (>= 5.6.10), libtest-pod-perl, + libtest-pod-coverage-perl, libhttp-server-simple-perl (>= 0.33-2), + libtest-simple-perl (>= 0.78) | perl (>= 5.10) +Maintainer: Debian Perl Group +Uploaders: AGOSTINI Yves , + Gunnar Wolf , + Antonio Radici , + gregor herrmann +Standards-Version: 3.8.0 +Homepage: http://search.cpan.org/dist/Test-HTTP-Server-Simple/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libtest-http-server-simple-perl/ +Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libtest-http-server-simple-perl/ + +Package: libtest-http-server-simple-perl +Architecture: all +Depends: ${perl:Depends}, ${misc:Depends}, libhttp-server-simple-perl (>= 0.33-2) +Description: Test::More functions for HTTP::Server::Simple + Test::HTTP::Server::Simple provides methods to test an + HTTP::Server::Simple-based web server. + Currently, it provides only one such method: started_ok. --- libtest-http-server-simple-perl-0.10.orig/debian/copyright +++ libtest-http-server-simple-perl-0.10/debian/copyright @@ -0,0 +1,31 @@ +X-Format-Specification: http://wiki.debian.org/Proposals/CopyrightFormat +X-Debianized-By: AGOSTINI Yves +X-Debianized-Date: Mon, 5 May 2008 13:56:17 +0200 +X-Source-Downloaded-From: http://search.cpan.org/dist/Test-HTTP-Server-Simple/ +X-Upstream-Author: David Glasser + +Files: * +Copyright: + (c) 2005, Best Practical Solutions, LLC +License: GPL-1+ | Artistic + +Files: debian/* +Copyright: + (c) 2008 AGOSTINI Yves + (c) 2009 Antonio Radici + +License: GPL-1+ | Artistic + +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' --- libtest-http-server-simple-perl-0.10.orig/debian/watch +++ libtest-http-server-simple-perl-0.10/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/Test-HTTP-Server-Simple/ .*/Test-HTTP-Server-Simple-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ --- libtest-http-server-simple-perl-0.10.orig/debian/compat +++ libtest-http-server-simple-perl-0.10/debian/compat @@ -0,0 +1 @@ +7 --- libtest-http-server-simple-perl-0.10.orig/debian/changelog +++ libtest-http-server-simple-perl-0.10/debian/changelog @@ -0,0 +1,26 @@ +libtest-http-server-simple-perl (0.10-1) unstable; urgency=low + + [ Antonio Radici ] + * New upstream release + * debian/control: + + added myself to the uploaders + + Standards-Version bumped to 3.8.0 + * debian/copyright: + + added GPL-1 and Perl licenses extracts + + removed debian perl group as copyright holder, because it is + not a legal entity + + [ gregor herrmann ] + * debian/control: Changed: Switched Vcs-Browser field to ViewSVN + (source stanza). + * Set debhelper compatibility level to 7; adapt + debian/{control,compat,rules}. + * Add /me to Uploaders. + + -- Antonio Radici Fri, 20 Feb 2009 19:23:07 +0000 + +libtest-http-server-simple-perl (0.09-1) unstable; urgency=low + + * Initial Release (Closes: #476938) + + -- AGOSTINI Yves Mon, 12 May 2008 09:21:05 +0200 --- libtest-http-server-simple-perl-0.10.orig/debian/rules +++ libtest-http-server-simple-perl-0.10/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