pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/mail/p5-Mail-Box Update to 2.066



details:   https://anonhg.NetBSD.org/pkgsrc/rev/426a3ac0d910
branches:  trunk
changeset: 517209:426a3ac0d910
user:      adrianp <adrianp%pkgsrc.org@localhost>
date:      Sun Aug 06 15:29:03 2006 +0000

description:
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:

 mail/p5-Mail-Box/Makefile         |   6 +++---
 mail/p5-Mail-Box/distinfo         |  10 +++++-----
 mail/p5-Mail-Box/patches/patch-aa |  26 +++++++++++---------------
 3 files changed, 19 insertions(+), 23 deletions(-)

diffs (85 lines):

diff -r 05c2e4b0361f -r 426a3ac0d910 mail/p5-Mail-Box/Makefile
--- a/mail/p5-Mail-Box/Makefile Sun Aug 06 15:04:20 2006 +0000
+++ b/mail/p5-Mail-Box/Makefile Sun Aug 06 15:29:03 2006 +0000
@@ -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-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 -r 05c2e4b0361f -r 426a3ac0d910 mail/p5-Mail-Box/distinfo
--- a/mail/p5-Mail-Box/distinfo Sun Aug 06 15:04:20 2006 +0000
+++ b/mail/p5-Mail-Box/distinfo Sun Aug 06 15:29:03 2006 +0000
@@ -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 -r 05c2e4b0361f -r 426a3ac0d910 mail/p5-Mail-Box/patches/patch-aa
--- a/mail/p5-Mail-Box/patches/patch-aa Sun Aug 06 15:04:20 2006 +0000
+++ b/mail/p5-Mail-Box/patches/patch-aa Sun Aug 06 15:29:03 2006 +0000
@@ -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 @@
 -        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 @@
 -    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;



Home | Main Index | Thread Index | Old Index