--- libemail-received-perl-1.00.orig/debian/control +++ libemail-received-perl-1.00/debian/control @@ -0,0 +1,25 @@ +Source: libemail-received-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 7) +Build-Depends-Indep: libregexp-common-perl, perl (>= 5.6.0-12), + libemail-simple-perl +Maintainer: Debian Perl Group +Uploaders: gregor herrmann +Standards-Version: 3.8.1 +Homepage: http://search.cpan.org/dist/Email-Received/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libemail-received-perl/ +Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libemail-received-perl/ + +Package: libemail-received-perl +Architecture: all +Depends: ${misc:Depends}, ${perl:Depends}, libregexp-common-perl +Description: Perl module to parse an email Received: header + Email::Received is a Perl Email Project rewrite of SpamAssassin's email + header parser. This was done so that the great work they did in analysing + pretty much every possible Received header format could be used in + applications other than SpamAssassin itself. + . + The module provides one function, parse_received, which takes a single + Received line. It then produces either nothing, if the line is unparsable, + or a hash reference if it parsed the message. --- libemail-received-perl-1.00.orig/debian/copyright +++ libemail-received-perl-1.00/debian/copyright @@ -0,0 +1,28 @@ +Format-Specification: + http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196 +Upstream-Maintainer: Simon Cozens +Upstream-Source: http://search.cpan.org/dist/Email-Received/ +Upstream-Name: Email-Received + +Files: * +Copyright: 2006, Simon Cozens +License-Alias: Perl +License: Artistic | GPL-1+ + +Files: debian/* +Copyright: 2009, 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' --- libemail-received-perl-1.00.orig/debian/watch +++ libemail-received-perl-1.00/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/Email-Received/ .*/Email-Received-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ --- libemail-received-perl-1.00.orig/debian/compat +++ libemail-received-perl-1.00/debian/compat @@ -0,0 +1 @@ +7 --- libemail-received-perl-1.00.orig/debian/changelog +++ libemail-received-perl-1.00/debian/changelog @@ -0,0 +1,5 @@ +libemail-received-perl (1.00-1) unstable; urgency=low + + * Initial release (closes: #520930). + + -- gregor herrmann Sun, 19 Apr 2009 19:12:38 +0200 --- libemail-received-perl-1.00.orig/debian/rules +++ libemail-received-perl-1.00/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