Upgrade to MIME-Base64-3.08
Gisle Aas [Tue, 9 Jun 2009 21:15:54 +0000 (23:15 +0200)]
ext/MIME-Base64/Base64.pm
ext/MIME-Base64/Base64.xs
ext/MIME-Base64/Changes
ext/MIME-Base64/Makefile.PL
ext/MIME-Base64/QuotedPrint.pm

index 4c1538d..6c076d1 100644 (file)
@@ -1,7 +1,5 @@
 package MIME::Base64;
 
-# $Id: Base64.pm,v 3.11 2005/11/29 20:59:55 gisle Exp $
-
 use strict;
 use vars qw(@ISA @EXPORT $VERSION);
 
@@ -9,7 +7,7 @@ require Exporter;
 @ISA = qw(Exporter);
 @EXPORT = qw(encode_base64 decode_base64);
 
-$VERSION = '3.07_01';
+$VERSION = '3.08';
 
 require XSLoader;
 XSLoader::load('MIME::Base64', $VERSION);
index afbad93..1740a16 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: Base64.xs,v 3.5 2005/11/26 10:44:14 gisle Exp $
+/* $Id$
 
 Copyright 1997-2004 Gisle Aas
 
index f86520d..4b60a89 100644 (file)
@@ -1,3 +1,15 @@
+2009-06-09   Gisle Aas <gisle@ActiveState.com>
+
+   Release 3.08
+
+   Jarkko Hietaniemi (1):
+      EBCDIC changes from core
+
+   Nicholas Clark (1):
+      Get rid of the PERL_CORE hacks
+
+
+
 2005-11-30   Gisle Aas <gisle@ActiveState.com>
 
    Release 3.07
index f676159..7300447 100644 (file)
@@ -2,9 +2,6 @@ require 5.006;
 use ExtUtils::MakeMaker;
 
 my @makefileopts;
-if (grep { $_ eq 'PERL_CORE=1' } @ARGV) {
-    push @makefileopts, MAN3PODS => {};
-}
 if ($] >= 5.008) {
     push @makefileopts, INSTALLDIRS => 'perl';
 }
@@ -12,6 +9,5 @@ if ($] >= 5.008) {
 WriteMakefile(
     NAME        => 'MIME::Base64',
     VERSION_FROM => 'Base64.pm',
-    dist         => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
     @makefileopts,
 );
index 1d6a7c1..aee13d6 100644 (file)
@@ -1,7 +1,5 @@
 package MIME::QuotedPrint;
 
-# $Id: QuotedPrint.pm,v 3.7 2005/11/29 20:49:46 gisle Exp $
-
 use strict;
 use vars qw(@ISA @EXPORT $VERSION);
 
@@ -9,7 +7,7 @@ require Exporter;
 @ISA = qw(Exporter);
 @EXPORT = qw(encode_qp decode_qp);
 
-$VERSION = "3.07";
+$VERSION = "3.08";
 
 use MIME::Base64;  # will load XS version of {en,de}code_qp()