diff options
author | adrianp <adrianp@pkgsrc.org> | 2006-08-06 15:29:03 +0000 |
---|---|---|
committer | adrianp <adrianp@pkgsrc.org> | 2006-08-06 15:29:03 +0000 |
commit | 78c1c43eaba63544a8831245870e37f59b024ba8 (patch) | |
tree | 2602201f098939915b2e3832884524bbc90a99c4 /mail | |
parent | ae40dfdc85d07f6276f5e09ddf13adef2fcddb62 (diff) | |
download | pkgsrc-78c1c43eaba63544a8831245870e37f59b024ba8.tar.gz |
Update to 2.066
Changes in brief include:
- Empty header field crashed Mail::Message::Field::Fast.
- Reworked IMAP4 folder selection
- produce warnings when the folder gets locked twice.
- Many additional bugfixes and improvements
For a full list of changes see:
http://search.cpan.org/src/MARKOV/Mail-Box-2.066/ChangeLog
Diffstat (limited to 'mail')
-rw-r--r-- | mail/p5-Mail-Box/Makefile | 6 | ||||
-rw-r--r-- | mail/p5-Mail-Box/distinfo | 10 | ||||
-rw-r--r-- | mail/p5-Mail-Box/patches/patch-aa | 26 |
3 files changed, 19 insertions, 23 deletions
diff --git a/mail/p5-Mail-Box/Makefile b/mail/p5-Mail-Box/Makefile index e543eefedee..4b309d7e3ac 100644 --- a/mail/p5-Mail-Box/Makefile +++ b/mail/p5-Mail-Box/Makefile @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.3 2005/08/06 06:19:22 jlam Exp $ +# $NetBSD: Makefile,v 1.4 2006/08/06 15:29:03 adrianp Exp $ -DISTNAME= Mail-Box-2.060 +DISTNAME= Mail-Box-2.066 PKGNAME= p5-${DISTNAME} -PKGREVISION= 1 CATEGORIES= mail perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Mail/} @@ -23,6 +22,7 @@ DEPENDS+= p5-MailTools-[0-9]*:../../mail/p5-MailTools DEPENDS+= p5-MIME-tools-[0-9]*:../../mail/p5-MIME-tools DEPENDS+= p5-Digest-HMAC-[0-9]*:../../security/p5-Digest-HMAC DEPENDS+= p5-File-Remove-[0-9]*:../../sysutils/p5-File-Remove +DEPENDS+= p5-Test-Harness>=2.62:../../devel/p5-Test-Harness PKG_INSTALLATION_TYPES= overwrite pkgviews diff --git a/mail/p5-Mail-Box/distinfo b/mail/p5-Mail-Box/distinfo index 7e477b71d8c..404d563f285 100644 --- a/mail/p5-Mail-Box/distinfo +++ b/mail/p5-Mail-Box/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.1.1.1 2005/04/23 17:38:58 adrianp Exp $ +$NetBSD: distinfo,v 1.2 2006/08/06 15:29:03 adrianp Exp $ -SHA1 (Mail-Box-2.060.tar.gz) = ae5f95f06f0a2069947f310f0a6c5d4b3597eda3 -RMD160 (Mail-Box-2.060.tar.gz) = 093b03a3c2aad7df299aaa959d8acfcac8d32cae -Size (Mail-Box-2.060.tar.gz) = 587366 bytes -SHA1 (patch-aa) = a3c249dd076dca30e1370a77a70c23274660e637 +SHA1 (Mail-Box-2.066.tar.gz) = cfdef08ec2381d6ba051dd83e8c05d37062bd671 +RMD160 (Mail-Box-2.066.tar.gz) = 7fd9c21b6949c9901824a4225d33541928136a81 +Size (Mail-Box-2.066.tar.gz) = 589834 bytes +SHA1 (patch-aa) = 0e89ed2ffc33cbfba986f6fef4570bd6bd8191df diff --git a/mail/p5-Mail-Box/patches/patch-aa b/mail/p5-Mail-Box/patches/patch-aa index c51aad1cd52..54dd430517d 100644 --- a/mail/p5-Mail-Box/patches/patch-aa +++ b/mail/p5-Mail-Box/patches/patch-aa @@ -1,8 +1,6 @@ -$NetBSD: patch-aa,v 1.1.1.1 2005/04/23 17:38:58 adrianp Exp $ - ---- Makefile.PL.orig 2005-04-23 00:12:41.000000000 +0100 -+++ Makefile.PL -@@ -161,78 +161,8 @@ FIX +--- Makefile.PL.orig 2006-08-06 13:49:57.000000000 +0100 ++++ Makefile.PL 2006-08-06 13:51:08.000000000 +0100 +@@ -163,76 +163,8 @@ exit 1; } @@ -51,16 +49,12 @@ $NetBSD: patch-aa,v 1.1.1.1 2005/04/23 17:38:58 adrianp Exp $ - print $warn; - } - -- my $install = $default_install_answer; -- my $key = prompt "Do you want to install $module? yes/no/all", $install; +- my $install = $default_install_answer +- || prompt( "Do you want to install $module? yes/no/all" +- , -t STDIN ? 'y' : 'n'); - -- if($key eq 'a') -- { $default_install_answer = 'a'; -- $install = 'y'; -- } -- else -- { $install = $key eq 'y' ? 'y' : 'n'; -- } +- $install = $default_install_answer = 'y' +- if $install eq 'a'; - - next unless $install eq 'y'; - @@ -70,7 +64,9 @@ $NetBSD: patch-aa,v 1.1.1.1 2005/04/23 17:38:58 adrianp Exp $ - print " Added $distr version $version to the requirements\n"; -} - --my $tests = prompt "Do you want to run the (large set of) tests? yes/no", "yes"; +-my $tests = $ENV{MAILBOX_RUN_TESTS} +- || prompt "Do you want to run the (large set of) tests? yes/no", "yes"; +- -if($tests =~ m/n/i) -{ open F, ">", "skiptests"; - close F; |