summaryrefslogtreecommitdiff
path: root/converters
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2010-12-02 12:11:04 +0000
committerwiz <wiz@pkgsrc.org>2010-12-02 12:11:04 +0000
commit0c94737613bcb0422f824845064c2edb28054576 (patch)
tree83a9ee42665624039bcc1778ef64d1094f2d0f67 /converters
parentb1209730236f133ab54cf08ec18f1b8e4873c786 (diff)
downloadpkgsrc-0c94737613bcb0422f824845064c2edb28054576.tar.gz
Update to 3.13:
2010-10-26 Gisle Aas <gisle@ActiveState.com> Release 3.13 The fix in v3.12 to try to preserve the SvUTF8 flag was buggy and actually managed to set the flag on strings that did not have it originally. 2010-10-25 Gisle Aas <gisle@ActiveState.com> Release 3.12 Don't change SvUTF8 flag on the strings encoded [RT#60105] Documentation tweaks 2010-10-24 Gisle Aas <gisle@ActiveState.com> Release 3.11 Provide encode_base64url and decode_base64url functions to process the base64 scheme for "URL applications". The decode_base64() does not issue warnings on suspect input data any more. 2010-10-11 Gisle Aas <gisle@ActiveState.com> Release 3.10 Provide functions to calculate the length of encoded and decoded base64 strings [RT#62404]
Diffstat (limited to 'converters')
-rw-r--r--converters/p5-MIME-Base64/Makefile5
-rw-r--r--converters/p5-MIME-Base64/distinfo10
-rw-r--r--converters/p5-MIME-Base64/patches/patch-aa12
3 files changed, 14 insertions, 13 deletions
diff --git a/converters/p5-MIME-Base64/Makefile b/converters/p5-MIME-Base64/Makefile
index 5cf14f47fd9..584aaf529e0 100644
--- a/converters/p5-MIME-Base64/Makefile
+++ b/converters/p5-MIME-Base64/Makefile
@@ -1,9 +1,8 @@
-# $NetBSD: Makefile,v 1.42 2010/08/21 16:32:50 seb Exp $
+# $NetBSD: Makefile,v 1.43 2010/12/02 12:11:04 wiz Exp $
#
-DISTNAME= MIME-Base64-3.09
+DISTNAME= MIME-Base64-3.13
PKGNAME= p5-${DISTNAME}
-PKGREVISION= 1
SVR4_PKGNAME= p5mba
CATEGORIES= converters perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=MIME/}
diff --git a/converters/p5-MIME-Base64/distinfo b/converters/p5-MIME-Base64/distinfo
index 2ad4949ac4c..3104e488873 100644
--- a/converters/p5-MIME-Base64/distinfo
+++ b/converters/p5-MIME-Base64/distinfo
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.14 2010/01/29 15:16:47 sno Exp $
+$NetBSD: distinfo,v 1.15 2010/12/02 12:11:04 wiz Exp $
-SHA1 (MIME-Base64-3.09.tar.gz) = 698d3d83d4536ba18f5d26d5e64339c229c83290
-RMD160 (MIME-Base64-3.09.tar.gz) = 17bbcc57d0d3da041f188fe3de44967de643f511
-Size (MIME-Base64-3.09.tar.gz) = 16513 bytes
-SHA1 (patch-aa) = ea5076e69c7519a659d69f631d7519843d746c91
+SHA1 (MIME-Base64-3.13.tar.gz) = 1cd5700041ed2980229f6537454d69172de4bec3
+RMD160 (MIME-Base64-3.13.tar.gz) = e25f0be89264c803471e66c5c56077d3bc054dd4
+Size (MIME-Base64-3.13.tar.gz) = 17735 bytes
+SHA1 (patch-aa) = 9ccdc23779d93f0fa419e51104e69fd24672fa13
diff --git a/converters/p5-MIME-Base64/patches/patch-aa b/converters/p5-MIME-Base64/patches/patch-aa
index eecb62f167f..c56093ab24a 100644
--- a/converters/p5-MIME-Base64/patches/patch-aa
+++ b/converters/p5-MIME-Base64/patches/patch-aa
@@ -1,8 +1,8 @@
-$NetBSD: patch-aa,v 1.3 2009/06/14 20:40:57 sno Exp $
+$NetBSD: patch-aa,v 1.4 2010/12/02 12:11:04 wiz Exp $
---- Makefile.PL.orig 2009-06-09 20:34:33.000000000 +0000
-+++ Makefile.PL 2009-06-14 20:28:34.000000000 +0000
-@@ -1,13 +1,7 @@
+--- Makefile.PL.orig 2010-11-11 19:24:44.000000000 +0000
++++ Makefile.PL
+@@ -1,15 +1,9 @@
require 5.006;
use ExtUtils::MakeMaker;
@@ -15,4 +15,6 @@ $NetBSD: patch-aa,v 1.3 2009/06/14 20:40:57 sno Exp $
NAME => 'MIME::Base64',
VERSION_FROM => 'Base64.pm',
- @makefileopts,
- );
+
+ ABSTRACT => 'The RFC 2045 encodings; base64 and quoted-printable',
+ AUTHOR => 'Gisle Aas <gisle@activestate.com>',