Wed Jan 14 13:12:10 2015 UTC ()
Update to 3.15:

2015-01-12   Gisle Aas <gisle@ActiveState.com>

   Release 3.15

   Avoid compilation warnings on Windows.

   Restore compatibility with perl-5.4


(wiz)
diff -r1.52 -r1.53 pkgsrc/converters/p5-MIME-Base64/Makefile
diff -r1.16 -r1.17 pkgsrc/converters/p5-MIME-Base64/distinfo
diff -r1.5 -r1.6 pkgsrc/converters/p5-MIME-Base64/patches/patch-aa

cvs diff -r1.52 -r1.53 pkgsrc/converters/p5-MIME-Base64/Attic/Makefile (expand / switch to unified diff)

--- pkgsrc/converters/p5-MIME-Base64/Attic/Makefile 2014/10/09 14:06:04 1.52
+++ pkgsrc/converters/p5-MIME-Base64/Attic/Makefile 2015/01/14 13:12:09 1.53
@@ -1,17 +1,16 @@ @@ -1,17 +1,16 @@
1# $NetBSD: Makefile,v 1.52 2014/10/09 14:06:04 wiz Exp $ 1# $NetBSD: Makefile,v 1.53 2015/01/14 13:12:09 wiz Exp $
2 2
3DISTNAME= MIME-Base64-3.14 3DISTNAME= MIME-Base64-3.15
4PKGNAME= p5-${DISTNAME} 4PKGNAME= p5-${DISTNAME}
5PKGREVISION= 1 
6CATEGORIES= converters perl5 5CATEGORIES= converters perl5
7MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=MIME/} 6MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=MIME/}
8 7
9MAINTAINER= pkgsrc-users@NetBSD.org 8MAINTAINER= pkgsrc-users@NetBSD.org
10HOMEPAGE= http://search.cpan.org/dist/MIME-Base64/ 9HOMEPAGE= http://search.cpan.org/dist/MIME-Base64/
11COMMENT= Perl5 module for Base64 and Quoted-Printable encodings 10COMMENT= Perl5 module for Base64 and Quoted-Printable encodings
12LICENSE= ${PERL5_LICENSE} 11LICENSE= ${PERL5_LICENSE}
13 12
14PERL5_PACKLIST= auto/MIME/Base64/.packlist 13PERL5_PACKLIST= auto/MIME/Base64/.packlist
15 14
16.include "../../lang/perl5/module.mk" 15.include "../../lang/perl5/module.mk"
17.include "../../mk/bsd.pkg.mk" 16.include "../../mk/bsd.pkg.mk"

cvs diff -r1.16 -r1.17 pkgsrc/converters/p5-MIME-Base64/Attic/distinfo (expand / switch to unified diff)

--- pkgsrc/converters/p5-MIME-Base64/Attic/distinfo 2013/07/10 02:26:11 1.16
+++ pkgsrc/converters/p5-MIME-Base64/Attic/distinfo 2015/01/14 13:12:09 1.17
@@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
1$NetBSD: distinfo,v 1.16 2013/07/10 02:26:11 schmonz Exp $ 1$NetBSD: distinfo,v 1.17 2015/01/14 13:12:09 wiz Exp $
2 2
3SHA1 (MIME-Base64-3.14.tar.gz) = e6334e5d751483cccc9d80a539a4d2e78de3c6ca 3SHA1 (MIME-Base64-3.15.tar.gz) = 07dd64adbec0e8952954664cbf8fa6b20915f95c
4RMD160 (MIME-Base64-3.14.tar.gz) = 75bae366fd4d24ec5e46600233088ad586d1e5be 4RMD160 (MIME-Base64-3.15.tar.gz) = 02e2b20b1c6f2102afef0178f3a0587f00ba75c7
5Size (MIME-Base64-3.14.tar.gz) = 18193 bytes 5Size (MIME-Base64-3.15.tar.gz) = 18438 bytes
6SHA1 (patch-aa) = 43d67be37ba7e3620c071e1da65b87d6e2d24641 6SHA1 (patch-aa) = 2b3401a79b1db14d3f9937a3268f4d1cbae56965

cvs diff -r1.5 -r1.6 pkgsrc/converters/p5-MIME-Base64/patches/Attic/patch-aa (expand / switch to unified diff)

--- pkgsrc/converters/p5-MIME-Base64/patches/Attic/patch-aa 2013/07/10 02:26:11 1.5
+++ pkgsrc/converters/p5-MIME-Base64/patches/Attic/patch-aa 2015/01/14 13:12:09 1.6
@@ -1,19 +1,19 @@ @@ -1,19 +1,19 @@
1$NetBSD: patch-aa,v 1.5 2013/07/10 02:26:11 schmonz Exp $ 1$NetBSD: patch-aa,v 1.6 2015/01/14 13:12:09 wiz Exp $
2 2
3--- Makefile.PL.orig 2013-07-02 17:39:29.000000000 +0000 3--- Makefile.PL.orig 2015-01-12 20:13:20.000000000 +0000
4+++ Makefile.PL 4+++ Makefile.PL
5@@ -1,15 +1,9 @@ 5@@ -1,15 +1,9 @@
6 require 5.006; 6 require 5.004;
7 use ExtUtils::MakeMaker; 7 use ExtUtils::MakeMaker;
8  8
9-my @makefileopts; 9-my @makefileopts;
10-if ($] >= 5.008 && $] < 5.012) { 10-if ($] >= 5.008 && $] < 5.012) {
11- push @makefileopts, INSTALLDIRS => 'perl'; 11- push @makefileopts, INSTALLDIRS => 'perl';
12-} 12-}
13- 13-
14 WriteMakefile( 14 WriteMakefile(
15 NAME => 'MIME::Base64', 15 NAME => 'MIME::Base64',
16 VERSION_FROM => 'Base64.pm', 16 VERSION_FROM => 'Base64.pm',
17- @makefileopts, 17- @makefileopts,
18  18
19 ABSTRACT => 'The RFC 2045 encodings; base64 and quoted-printable', 19 ABSTRACT => 'The RFC 2045 encodings; base64 and quoted-printable',