--- libmail-pop3client-perl-2.18.orig/debian/changelog +++ libmail-pop3client-perl-2.18/debian/changelog @@ -0,0 +1,69 @@ +libmail-pop3client-perl (2.18-1) unstable; urgency=low + + * latest upstream release 2.18. closes: Bug#719274 + * debian/control + - removed URL from description and add Homepage: + - updated Standards-Version: + - added missing ${misc:Depends} (lintian warning) + * debian/compat file added (lintian warning) + * debian/rules removed unneeded and comented dh_ commands + * debian/copyright converted to copyright format with pointers + to the licenses (lintian error) + * debian/watch added watch file from bartm + http://anonscm.debian.org/viewvc/sepwatch/trunk/watchfiles/libmail-pop3client-perl_2.17-1.watch?view=markup + + -- Noël Köthe Mon, 12 Aug 2013 13:19:30 +0200 + +libmail-pop3client-perl (2.17-1) unstable; urgency=low + + * new upstream from 2005-08-18 + (closes: Bug#329581) + * updated Standards-Version + * changed dependency from libdigest-md5-perl to perl + + -- Noèl Köthe Fri, 23 Sep 2005 17:49:10 +0200 + +libmail-pop3client-perl (2.16-1) unstable; urgency=low + + * new upstream from 2004-03-13 + * updated Section to perl + + -- Noèl Köthe Wed, 11 Aug 2004 15:25:09 +0200 + +libmail-pop3client-perl (2.15-1) unstable; urgency=low + + * new upstream from 2003-10-18 + * updated Standards-Version + + -- Noel Koethe Fri, 13 Feb 2004 23:37:43 +0100 + +libmail-pop3client-perl (2.13-1) unstable; urgency=low + + * new upstream from 2003-01-09 + * added dependency libdigest-md5-perl + (libmd5-perl is a wrapper for this package) + (closes: Bug#166522) + * updated Standards-Version + * added URL to description + + -- Noel Koethe Sat, 8 Mar 2003 12:32:00 +0100 + +libmail-pop3client-perl (2.10-2) unstable; urgency=low + + * added perl copyright link to debian/copyright + (closes: Bug#157652) + + -- Noel Koethe Sat, 24 Aug 2002 11:30:00 +0200 + +libmail-pop3client-perl (2.10-1) unstable; urgency=low + + * new upstream version from 2001-09-08 + + -- Noel Koethe Thu, 30 May 2002 16:54:00 +0200 + +libmail-pop3client-perl (2.9-1) unstable; urgency=low + + * Initial Release. + (closes: Bug#131032) + + -- Noel Koethe Tue, 26 Jan 2002 16:41:39 +0100 --- libmail-pop3client-perl-2.18.orig/debian/compat +++ libmail-pop3client-perl-2.18/debian/compat @@ -0,0 +1 @@ +5 --- libmail-pop3client-perl-2.18.orig/debian/control +++ libmail-pop3client-perl-2.18/debian/control @@ -0,0 +1,15 @@ +Source: libmail-pop3client-perl +Section: perl +Priority: optional +Maintainer: Noël Köthe +Build-Depends: debhelper (>> 3.0.0) +Standards-Version: 3.9.4 +Homepage: http://search.cpan.org/~sdowd/ + +Package: libmail-pop3client-perl +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, perl +Description: POP3 client module for perl + It provides an object-oriented interface to a POP3 server. + It can be used to write perl-based biff clients, mail + readers, or whatever. --- libmail-pop3client-perl-2.18.orig/debian/copyright +++ libmail-pop3client-perl-2.18/debian/copyright @@ -0,0 +1,29 @@ +Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: Mail-POP3Client +Upstream-Contact: Sean Dowd +Source: http://search.cpan.org/~sdowd/ + +Files: * +Copyright: 1999-2008 Sean Dowd +License: Artistic or GPL-1+ + +Files: debian/* +Copyright: 2002-2013, Noël Köthe +License: Artistic or 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 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 systems, the complete text of version 1 of the GNU General + Public License can be found in `/usr/share/common-licenses/GPL-1'. + --- libmail-pop3client-perl-2.18.orig/debian/dirs +++ libmail-pop3client-perl-2.18/debian/dirs @@ -0,0 +1,2 @@ +usr/share/perl5/Mail +usr/share/man/man3 --- libmail-pop3client-perl-2.18.orig/debian/docs +++ libmail-pop3client-perl-2.18/debian/docs @@ -0,0 +1,2 @@ +README +FAQ --- libmail-pop3client-perl-2.18.orig/debian/rules +++ libmail-pop3client-perl-2.18/debian/rules @@ -0,0 +1,70 @@ +#!/usr/bin/make -f +# Sample debian/rules that uses debhelper. +# GNU copyright 1997 to 1999 by Joey Hess. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +ifndef PERL +PERL = /usr/bin/perl +endif + +build: build-stamp +build-stamp: + dh_testdir + + # Add here commands to compile the package. + $(PERL) Makefile.PL INSTALLDIRS=vendor + $(MAKE) + $(MAKE) test + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + + # Add here commands to clean up after the build process. + -$(MAKE) clean + -$(MAKE) distclean + rm -f Makefile Makefile.old + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Add here commands to install the package into debian/tmp + #$(MAKE) install DESTDIR=$(CURDIR)/debian/tmp + #$(MAKE) PREFIX=`pwd`/debian/tmp/usr install + + cp $(CURDIR)/blib/lib/Mail/POP3Client.pm $(CURDIR)/debian/libmail-pop3client-perl/usr/share/perl5/Mail/ + cp $(CURDIR)/blib/man3/Mail::POP3Client.3pm $(CURDIR)/debian/libmail-pop3client-perl/usr/share/man/man3/ + +# Build architecture-independent files here. +binary-indep: build install +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir + dh_testroot + dh_installdocs + dh_installchangelogs Changes + dh_link + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install + --- libmail-pop3client-perl-2.18.orig/debian/watch +++ libmail-pop3client-perl-2.18/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://search.cpan.org/dist/Mail-POP3Client/ .*/Mail-POP3Client-(\d.*)\.(?:tgz|tbz2|txz|tar\.(?:gz|bz2|xz))