summaryrefslogtreecommitdiff
path: root/converters/p5-MIME-Base64
diff options
context:
space:
mode:
authorErwin Lansing <erwin@FreeBSD.org>2004-01-15 07:16:29 +0000
committerErwin Lansing <erwin@FreeBSD.org>2004-01-15 07:16:29 +0000
commitf740ef08be7da7c86e9a4b848337c645ebcb58ec (patch)
tree8e4b068d32dea782d63da4867d3320f04ba54de9 /converters/p5-MIME-Base64
parentAdd Sourceforge site, to make fetchable. (diff)
Update to 3.00
Drop the pure Perl implementations of the encoders and decoders. They are bloat that hides real problems in the XS implementations. I will re-release them separately in the new MIME-Base64-Perl distribution. The 'gcc -Wall' fix in 2.22 broke support for perl5.005, as the isXDIGIT() macro is not available in that perl. This problem has now been fixed.
Notes
Notes: svn path=/head/; revision=98184
Diffstat (limited to 'converters/p5-MIME-Base64')
-rw-r--r--converters/p5-MIME-Base64/Makefile3
-rw-r--r--converters/p5-MIME-Base64/distinfo2
-rw-r--r--converters/p5-MIME-Base64/files/patch-Base64.xs11
3 files changed, 2 insertions, 14 deletions
diff --git a/converters/p5-MIME-Base64/Makefile b/converters/p5-MIME-Base64/Makefile
index 08a921cb99c7..1e0e5e8451e3 100644
--- a/converters/p5-MIME-Base64/Makefile
+++ b/converters/p5-MIME-Base64/Makefile
@@ -6,8 +6,7 @@
#
PORTNAME= MIME-Base64
-PORTVERSION= 2.23
-PORTREVISION= 1
+PORTVERSION= 3.00
CATEGORIES= converters perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
MASTER_SITE_SUBDIR= MIME
diff --git a/converters/p5-MIME-Base64/distinfo b/converters/p5-MIME-Base64/distinfo
index 25357189fc0c..59d594de532e 100644
--- a/converters/p5-MIME-Base64/distinfo
+++ b/converters/p5-MIME-Base64/distinfo
@@ -1 +1 @@
-MD5 (MIME-Base64-2.23.tar.gz) = 4497ebb054b99f24464338f70102efd4
+MD5 (MIME-Base64-3.00.tar.gz) = 30531c29f31682bf12dc0c4570756976
diff --git a/converters/p5-MIME-Base64/files/patch-Base64.xs b/converters/p5-MIME-Base64/files/patch-Base64.xs
deleted file mode 100644
index 0c6cd05d2f80..000000000000
--- a/converters/p5-MIME-Base64/files/patch-Base64.xs
+++ /dev/null
@@ -1,11 +0,0 @@
---- Base64.xs.orig Thu Jan 8 09:07:26 2004
-+++ Base64.xs Mon Jan 12 13:46:56 2004
-@@ -399,7 +399,7 @@
- whitespace = 0;
- }
- if (*str == '=') {
-- if ((str + 2) < end && isXDIGIT(str[1]) && isXDIGIT(str[2])) {
-+ if ((str + 2) < end && isxdigit(str[1]) && isxdigit(str[2])) {
- char buf[3];
- str++;
- buf[0] = *str++;