--- libtest-email-perl-0.07.orig/debian/control +++ libtest-email-perl-0.07/debian/control @@ -0,0 +1,25 @@ +Source: libtest-email-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 7) +Build-Depends-Indep: libmail-sendmail-perl (>= 0.79), + libmime-tools-perl (>= 5.4), perl (>= 5.6.0-12) +Maintainer: Debian Perl Group +Uploaders: AGOSTINI Yves +Standards-Version: 3.8.1 +Homepage: http://search.cpan.org/dist/Test-Email/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libtest-email-perl/ +Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libtest-email-perl/ + +Package: libtest-email-perl +Architecture: all +Depends: ${misc:Depends}, ${perl:Depends}, libmime-tools-perl (>= 5.4) +Recommends: libmail-pop3client-perl (>= 2), libmail-sendmail-perl (>= 0.79) +Description: email contents test module + Test::Email provides tests for email contents; it is a subclass of + MIME::Entity with header_is, body_is, or _ok or _like and part_ok, + mime_type_ok methods. Tests for equality remove trailing newlines from + strings before testing. Some mail messages have newlines appended to them + during the mailing process, which could cause unnecessary confusion. + . + This package also provides Test::POP3 to automate email delivery tests. --- libtest-email-perl-0.07.orig/debian/copyright +++ libtest-email-perl-0.07/debian/copyright @@ -0,0 +1,30 @@ +Format-Specification: + http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196 +Upstream-Maintainer: James Tolley, +Upstream-Source: http://search.cpan.org/dist/Test-Email/ +Upstream-Name: Test-Email + +Files: * +Copyright: Copyright (C) 2007-2008 by James Tolley +License: Artistic | GPL-1+ + This library is free software; you can redistribute it and/or modify it under + the same terms as Perl itself, either Perl version 5.8.8 or, at your option, + any later version of Perl 5 you may have available. + +Files: debian/* +Copyright: 2009, AGOSTINI Yves +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' --- libtest-email-perl-0.07.orig/debian/watch +++ libtest-email-perl-0.07/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-Email/ .*/Test-Email-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ --- libtest-email-perl-0.07.orig/debian/libtest-email-perl.docs +++ libtest-email-perl-0.07/debian/libtest-email-perl.docs @@ -0,0 +1 @@ +README --- libtest-email-perl-0.07.orig/debian/compat +++ libtest-email-perl-0.07/debian/compat @@ -0,0 +1 @@ +7 --- libtest-email-perl-0.07.orig/debian/changelog +++ libtest-email-perl-0.07/debian/changelog @@ -0,0 +1,5 @@ +libtest-email-perl (0.07-1) unstable; urgency=low + + * Initial Release. (Closes: #523755) + + -- AGOSTINI Yves Mon, 13 Apr 2009 09:18:11 +0200 --- libtest-email-perl-0.07.orig/debian/rules +++ libtest-email-perl-0.07/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