summaryrefslogtreecommitdiff
path: root/mail/p5-Mail-Mbox-MessageParser/patches/patch-ac
diff options
context:
space:
mode:
authorsno <sno@pkgsrc.org>2009-09-13 11:51:57 +0000
committersno <sno@pkgsrc.org>2009-09-13 11:51:57 +0000
commit93cc7658670a3a3b1f93857a973b2c68bd20f959 (patch)
tree66fa1cbf57b40c1c4d494ece0d896a42ee72ae0b /mail/p5-Mail-Mbox-MessageParser/patches/patch-ac
parentb393846ad0f283e9abfa2fa883754684b8338a6a (diff)
downloadpkgsrc-93cc7658670a3a3b1f93857a973b2c68bd20f959.tar.gz
Updating mail/p5-Mail-Mbox-MessageParser from 1.5000nb2 to 1.5002
pkgsrc changes: - Adding license definition - Adjusting dependencies - prevent bundled Module::Install from automatic installing extra deps - removed upstream applied patches Upstream changes: Version 1.5002: Sun Aug 9 2009 - Disabled the grep interface, which has had some tricky bugs that I don't have time to figure out. - Fixed infinite loop that occurred for emails of less than 200 characters. (Thanks to Julian Ladisch <bitcard.org-prt@ladisch.de> for the bug report.) - Updated Makefile.PL to be compatible with versions of Module::Install > 0.88. - Instead of returning an error for an empty mailbox, a valid mailbox is returned that will immediately fail the end_of_mailbox check. This should simplify people's code. (Thanks to Daniel Maher <dma@witbe.net> for a bug report that suggested this change in semantics.) - More updates for the missing "m" modifier issue exposed by Perl 5.10. (Thanks to Tom Callawa <tcallawa@redhat.com> for the bug report, and Andreas K"onig <andreas.koenig@anima.de> for the patch.) - Added some debugging information for the "cache data not validated" error. Hopefully this will help catch the bug in the act. Version 1.5001: Sun Jul 20 2008 - Added the missing "m" modifier to a number of regular expressions. A change in Perl 5.10 exposed this issue. (Thanks to Anicka Bernathova <anicka@suse.cz> for the patch.) - Fixed an off-by-one error that would sometimes cause warnings about undefined values. - Added a hack to Makefile.PL to force Module::AutoInstall to be included for Module::Install::CheckOptional. - Fixed a problem in the PREOP rewriting that would cause it to fail on Windows.
Diffstat (limited to 'mail/p5-Mail-Mbox-MessageParser/patches/patch-ac')
-rw-r--r--mail/p5-Mail-Mbox-MessageParser/patches/patch-ac15
1 files changed, 0 insertions, 15 deletions
diff --git a/mail/p5-Mail-Mbox-MessageParser/patches/patch-ac b/mail/p5-Mail-Mbox-MessageParser/patches/patch-ac
deleted file mode 100644
index 3a241ef8224..00000000000
--- a/mail/p5-Mail-Mbox-MessageParser/patches/patch-ac
+++ /dev/null
@@ -1,15 +0,0 @@
-$NetBSD: patch-ac,v 1.1 2009/04/02 18:10:39 tez Exp $
-
-diff -ruN lib/Mail/Mbox/MessageParser/Perl.pm.orig lib/Mail/Mbox/MessageParser/Perl.pm > ../../patches/patch-ac
-
---- lib/Mail/Mbox/MessageParser/Perl.pm.orig 2009-03-31 16:21:44.338876800 -0500
-+++ lib/Mail/Mbox/MessageParser/Perl.pm 2009-03-31 16:23:32.285106100 -0500
-@@ -265,7 +265,7 @@
- # RFC 1521 says the boundary can be no longer than 70 characters. Back up a
- # little more than that.
- my $endline = $self->{'endline'};
-- $self->_read_until_match(qr/^--\Q$boundary\E--$endline/,76)
-+ $self->_read_until_match(qr/^--\Q$boundary\E--$endline/m,76)
- or return 0;
-
- return 1;