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.086



details:   https://anonhg.NetBSD.org/pkgsrc/rev/fedd3e7acdce
branches:  trunk
changeset: 552482:fedd3e7acdce
user:      adrianp <adrianp%pkgsrc.org@localhost>
date:      Sun Jan 04 20:11:45 2009 +0000

description:
Update to 2.086

version 2.086: Thu Dec 11 11:55:32 CET 2008

        Changes:

        - require Encode 2.26 (there are so many distributions which
          older versions of Encode which contain serious flaws)

        Improvements:

        - sort optional module names in Makefile.PL

version 2.085: Thu Dec 11 11:25:52 CET 2008

        Fixes:

        - message disappeared when ::Manager::moveMessages() had to move
          messages to the folder it already was in.
          rt.cpan.org#40198 [Florian]
        - leave encodings in unknown charsets untouched, in stead of
          croacking in studied header fields (M::M::Field::Full).
          rt.cpan.org#40353 [Florian]
        - thread detection with missing messages croaks in multiple ways:.
          rt.cpan.org#40347 [Florian]
        - if character-set is unknown, then still returned un-decoded
          body for decoding(). [IIM1468]
        - encoding into binary transfer-encoding failed. [IIM1473]

        Improvements:

        - updated README, as suggested by [Anton Berezin]
        - understand unicode-1-1-utf-[78] charset
        - documention improvements on study() [Florian]

diffstat:

 mail/p5-Mail-Box/Makefile         |   5 +++--
 mail/p5-Mail-Box/distinfo         |  10 +++++-----
 mail/p5-Mail-Box/patches/patch-aa |  14 ++++++++------
 3 files changed, 16 insertions(+), 13 deletions(-)

diffs (72 lines):

diff -r 172f2f1326c4 -r fedd3e7acdce mail/p5-Mail-Box/Makefile
--- a/mail/p5-Mail-Box/Makefile Sun Jan 04 20:03:21 2009 +0000
+++ b/mail/p5-Mail-Box/Makefile Sun Jan 04 20:11:45 2009 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.10 2008/11/15 13:53:27 adrianp Exp $
+# $NetBSD: Makefile,v 1.11 2009/01/04 20:11:45 adrianp Exp $
 
-DISTNAME=      Mail-Box-2.084
+DISTNAME=      Mail-Box-2.086
 PKGNAME=       p5-${DISTNAME}
 CATEGORIES=    mail perl5
 MASTER_SITES=  ${MASTER_SITE_PERL_CPAN:=Mail/}
@@ -9,6 +9,7 @@
 HOMEPAGE=      http://perl.overmeer.net/mailbox/
 COMMENT=       Set of packages which implement methods to handle e-mail
 
+DEPENDS+=      p5-Encode>=2.26:../../textproc/p5-Encode
 DEPENDS+=      p5-TimeDate-[0-9]*:../../time/p5-TimeDate
 DEPENDS+=      p5-IO-stringy-[0-9]*:../../devel/p5-IO-stringy
 DEPENDS+=      p5-Scalar-List-Utils>=1.13:../../devel/p5-Scalar-List-Utils
diff -r 172f2f1326c4 -r fedd3e7acdce mail/p5-Mail-Box/distinfo
--- a/mail/p5-Mail-Box/distinfo Sun Jan 04 20:03:21 2009 +0000
+++ b/mail/p5-Mail-Box/distinfo Sun Jan 04 20:11:45 2009 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.5 2008/11/15 13:53:27 adrianp Exp $
+$NetBSD: distinfo,v 1.6 2009/01/04 20:11:45 adrianp Exp $
 
-SHA1 (Mail-Box-2.084.tar.gz) = 4b80c16de0e91e8bdf5c9d58f66aeefc1bcd3b67
-RMD160 (Mail-Box-2.084.tar.gz) = 0ffc6129d7606258d5a3a231403aa99dba7190ed
-Size (Mail-Box-2.084.tar.gz) = 598951 bytes
-SHA1 (patch-aa) = 63cfb55fb8b76b544d5b226251a8e1639ffa7c58
+SHA1 (Mail-Box-2.086.tar.gz) = 1c40ef8f726f157a7506762f7d33dcdb1e8831be
+RMD160 (Mail-Box-2.086.tar.gz) = d56543abab3cc2bb1e48e78b013374562e80e6c4
+Size (Mail-Box-2.086.tar.gz) = 598922 bytes
+SHA1 (patch-aa) = ca07d344e1e4bf621bb9a87cd019fd3b686c9d7a
diff -r 172f2f1326c4 -r fedd3e7acdce mail/p5-Mail-Box/patches/patch-aa
--- a/mail/p5-Mail-Box/patches/patch-aa Sun Jan 04 20:03:21 2009 +0000
+++ b/mail/p5-Mail-Box/patches/patch-aa Sun Jan 04 20:11:45 2009 +0000
@@ -1,8 +1,8 @@
-$NetBSD: patch-aa,v 1.4 2008/06/16 10:50:15 adrianp Exp $
+$NetBSD: patch-aa,v 1.5 2009/01/04 20:11:45 adrianp Exp $
 
---- Makefile.PL.orig   2008-04-28 08:30:56.000000000 +0100
+--- Makefile.PL.orig   2008-12-11 11:05:40.000000000 +0000
 +++ Makefile.PL
-@@ -159,88 +159,8 @@ FIX
+@@ -155,90 +155,8 @@ FIX
      exit 1;
  }
  
@@ -14,7 +14,7 @@
 -*
 -OPTIONAL
 -
--foreach my $optional (@optional)
+-foreach my $optional (sort {$a->[0] cmp $b->[0]} @optional)
 -{   my ($module, $version, %args) = @$optional;
 -    my $requirements = $args{requires} || sub {1};
 -    next unless $requirements->();
@@ -39,8 +39,10 @@
 -        else { print "**** Optional $module compilation failed:\n$@\n" }
 -    }
 -    elsif(eval '$module->VERSION($version)' && $@)
--    {   print "**** Optional $module too old: requires $version but is ",
--            $module->VERSION,";$@\n";
+-    {   my $error = $@ || '';
+-        $error =~ s/[\r\n]+$//;
+-        print "**** Optional $module too old: requires $version but is ",
+-            $module->VERSION,";$error\n";
 -    }
 -    else
 -    {   my $v = $module->VERSION;



Home | Main Index | Thread Index | Old Index