--- libmail-thread-perl-2.55.orig/debian/control +++ libmail-thread-perl-2.55/debian/control @@ -0,0 +1,21 @@ +Source: libmail-thread-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 7) +Build-Depends-Indep: perl (>= 5.6.10-12), libemail-abstract-perl (>= 2.134-3), libmailtools-perl +Maintainer: Debian Perl Group +Uploaders: David Bremner +Standards-Version: 3.8.0 +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libmail-thread-perl/ +Vcs-Browser: http://svn.debian.org/wsvn/pkg-perl/trunk/libmail-thread-perl/ +Homepage: http://search.cpan.org/dist/Mail-Thread/ + +Package: libmail-thread-perl +Architecture: all +Depends: ${perl:Depends}, ${misc:Depends}, libemail-abstract-perl +Description: library for threading email by In-Reply-To and References + The Mail::Thread module implements something relatively close to + Jamie Zawinski's mail threading algorithm, as described by + http://www.jwz.org/doc/threading.html. This algorithm is based + on following References and In-Reply-To headers, and is able to + deal with not having all of the messages in a thread. --- libmail-thread-perl-2.55.orig/debian/copyright +++ libmail-thread-perl-2.55/debian/copyright @@ -0,0 +1,21 @@ +Format-Specification: http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=226 +Upstream-Source: http://search.cpan.org/dist/Mail-Thread/ +Upstream-Maintainer: Tony Bowden +Upstream-Author: Simon Cozens + +Files: * +Copyright: Copyright 2003 by Kasei +Copyright: Copyright 2004 by Simon Cozens +Licence: GPL-1+ | Artistic + +Files: debian/* +Copyright: Copyright 2008 David Bremner +Licence: GPL-1+ | Artistic + +License: GPL-1+ + The full text of the GPL is available on Debian systems in + /usr/share/common-licenses/GPL + +License: Artistic + The full text of the Artistic Licence is available on Debian systems in + /usr/share/common-licenses/Artistic. --- libmail-thread-perl-2.55.orig/debian/watch +++ libmail-thread-perl-2.55/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/Mail-Thread/ .*/Mail-Thread-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ --- libmail-thread-perl-2.55.orig/debian/compat +++ libmail-thread-perl-2.55/debian/compat @@ -0,0 +1 @@ +7 --- libmail-thread-perl-2.55.orig/debian/changelog +++ libmail-thread-perl-2.55/debian/changelog @@ -0,0 +1,5 @@ +libmail-thread-perl (2.55-1) unstable; urgency=low + + * Initial Release (Closes: #493233) + + -- David Bremner Mon, 22 Sep 2008 21:55:44 -0300 --- libmail-thread-perl-2.55.orig/debian/rules +++ libmail-thread-perl-2.55/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