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]
This commit is contained in:
parent
0350045016
commit
1e67a64147
3 changed files with 16 additions and 13 deletions
|
@ -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 @@ MAINTAINER= adrianp@NetBSD.org
|
|||
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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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 @@ $NetBSD: patch-aa,v 1.4 2008/06/16 10:50:15 adrianp Exp $
|
|||
-*
|
||||
-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 @@ $NetBSD: patch-aa,v 1.4 2008/06/16 10:50:15 adrianp Exp $
|
|||
- 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;
|
||||
|
|
Loading…
Reference in a new issue