summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorabs <abs>2013-08-26 09:58:08 +0000
committerabs <abs>2013-08-26 09:58:08 +0000
commitd24baf116564f76cedf9c87699ffdedcb2b162fb (patch)
tree3a3c8ae4021c4ce46ecd267d198a10aedbeb2b37
parentd63fef8905553437b5051ed019950ade89b674a2 (diff)
downloadpkgsrc-d24baf116564f76cedf9c87699ffdedcb2b162fb.tar.gz
Updated mail/p5-Mail-IMAPClient to 3.33
version 3.33: Tue, May 14, 2013 10:12:43 AM - more cleanup on use of $@ and $! - cleanup get_bodystructure / get_envelope - allow Ssl arg as an arrayref to pass args to IO::Socket::SSL [Ramana V Mokkapati] - no need to Massage() the folder name in uidnext() - rt.cpan.org#84028: get_envelope() fails when subject ends w/backslash [Andy Lyttle] - rt.cpan.org#79476: move()/copy() with sequence causes numeric warning [Oleg G] - *move()/copy() no longer sort message(s) provided by caller pkgsrc-changes: Set MultiHomed => 1 in call to IO::Socket::INET to allow fallback to IPv4 when server has both IPv4 and IPv6 addresses and no reliable IPv6 route
-rw-r--r--mail/p5-Mail-IMAPClient/Makefile6
-rw-r--r--mail/p5-Mail-IMAPClient/distinfo9
-rw-r--r--mail/p5-Mail-IMAPClient/patches/patch-lib_Mail_IMAPClient.pm15
3 files changed, 22 insertions, 8 deletions
diff --git a/mail/p5-Mail-IMAPClient/Makefile b/mail/p5-Mail-IMAPClient/Makefile
index 7a8c10bc161..16d8200aecd 100644
--- a/mail/p5-Mail-IMAPClient/Makefile
+++ b/mail/p5-Mail-IMAPClient/Makefile
@@ -1,9 +1,7 @@
-# $NetBSD: Makefile,v 1.35 2013/05/31 12:41:18 wiz Exp $
-#
+# $NetBSD: Makefile,v 1.36 2013/08/26 09:58:08 abs Exp $
-DISTNAME= Mail-IMAPClient-3.32
+DISTNAME= Mail-IMAPClient-3.33
PKGNAME= p5-${DISTNAME}
-PKGREVISION= 2
SVR4_PKGNAME= p5mic
CATEGORIES= mail perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=Mail/}
diff --git a/mail/p5-Mail-IMAPClient/distinfo b/mail/p5-Mail-IMAPClient/distinfo
index 09a7bd80b7d..7bcef6d6ef8 100644
--- a/mail/p5-Mail-IMAPClient/distinfo
+++ b/mail/p5-Mail-IMAPClient/distinfo
@@ -1,5 +1,6 @@
-$NetBSD: distinfo,v 1.15 2012/08/17 15:26:01 wen Exp $
+$NetBSD: distinfo,v 1.16 2013/08/26 09:58:08 abs Exp $
-SHA1 (Mail-IMAPClient-3.32.tar.gz) = 88ade20546b4754e075aba0d268043e6c51d113f
-RMD160 (Mail-IMAPClient-3.32.tar.gz) = d1df02d9c46a08ab2b051c7fff68e1a7f5f0d944
-Size (Mail-IMAPClient-3.32.tar.gz) = 184463 bytes
+SHA1 (Mail-IMAPClient-3.33.tar.gz) = 0c522d4c9f990357e5ad786d450d9a3430999da5
+RMD160 (Mail-IMAPClient-3.33.tar.gz) = d279e57160d44099d7873c070cb03b025a8760e7
+Size (Mail-IMAPClient-3.33.tar.gz) = 185422 bytes
+SHA1 (patch-lib_Mail_IMAPClient.pm) = 23b59bf1924248b040b9f20576c20aa26b5101eb
diff --git a/mail/p5-Mail-IMAPClient/patches/patch-lib_Mail_IMAPClient.pm b/mail/p5-Mail-IMAPClient/patches/patch-lib_Mail_IMAPClient.pm
new file mode 100644
index 00000000000..30ef61338ac
--- /dev/null
+++ b/mail/p5-Mail-IMAPClient/patches/patch-lib_Mail_IMAPClient.pm
@@ -0,0 +1,15 @@
+$NetBSD: patch-lib_Mail_IMAPClient.pm,v 1.1 2013/08/26 09:58:08 abs Exp $
+
+Set MultiHomed => 1 in call to IO::Socket::INET to allow fallback to IPv4
+when server has both IPv4 and IPv6 addresses and no reliable IPv6 route
+
+--- lib/Mail/IMAPClient.pm.orig 2013-05-14 14:27:09.000000000 +0000
++++ lib/Mail/IMAPClient.pm
+@@ -356,6 +356,7 @@ sub connect(@) {
+ PeerPort => $port,
+ Proto => 'tcp',
+ Debug => $self->Debug,
++ MultiHomed => 1,
+ @timeout,
+ @args
+ );