aboutsummaryrefslogtreecommitdiff
path: root/www/p5-CGI.pm
diff options
context:
space:
mode:
authorAnton Berezin <tobez@FreeBSD.org>2008-07-02 09:46:18 +0000
committerAnton Berezin <tobez@FreeBSD.org>2008-07-02 09:46:18 +0000
commit4b0e4f626837fe086c0f4434b0ef33cbeec48501 (patch)
treef8c189f8b7d3191d2464ed26f06669a99f0d42dd /www/p5-CGI.pm
parent1f77f00016a8130ec7d7f615481b0a48514e0bfa (diff)
downloadports-4b0e4f626837fe086c0f4434b0ef33cbeec48501.tar.gz
ports-4b0e4f626837fe086c0f4434b0ef33cbeec48501.zip
Notes
Diffstat (limited to 'www/p5-CGI.pm')
-rw-r--r--www/p5-CGI.pm/Makefile3
-rw-r--r--www/p5-CGI.pm/distinfo6
-rw-r--r--www/p5-CGI.pm/files/patch-bug-3455111
3 files changed, 4 insertions, 16 deletions
diff --git a/www/p5-CGI.pm/Makefile b/www/p5-CGI.pm/Makefile
index 43eb6c6d1fb0..3e419080ef31 100644
--- a/www/p5-CGI.pm/Makefile
+++ b/www/p5-CGI.pm/Makefile
@@ -6,8 +6,7 @@
#
PORTNAME= CGI.pm
-PORTVERSION= 3.37
-PORTREVISION= 1
+PORTVERSION= 3.38
PORTEPOCH= 1
CATEGORIES= www perl5
MASTER_SITES= CPAN
diff --git a/www/p5-CGI.pm/distinfo b/www/p5-CGI.pm/distinfo
index 7d6746d52ba8..dd59533bf671 100644
--- a/www/p5-CGI.pm/distinfo
+++ b/www/p5-CGI.pm/distinfo
@@ -1,3 +1,3 @@
-MD5 (CGI.pm-3.37.tar.gz) = 92b914bb232f7c5ce9d201758d03c9cb
-SHA256 (CGI.pm-3.37.tar.gz) = bd90767c3bff9f9aba574f94e51aece4d807732ed2f4347b988d06e929f11ad7
-SIZE (CGI.pm-3.37.tar.gz) = 238892
+MD5 (CGI.pm-3.38.tar.gz) = 9e22169ff58ff5648f3b09c8d5797d64
+SHA256 (CGI.pm-3.38.tar.gz) = 61917cb71c4535f7e9358e7ef9fc29ed602daae750fa8fe09a9b7958e64b6fa7
+SIZE (CGI.pm-3.38.tar.gz) = 239234
diff --git a/www/p5-CGI.pm/files/patch-bug-34551 b/www/p5-CGI.pm/files/patch-bug-34551
deleted file mode 100644
index 4701387beaca..000000000000
--- a/www/p5-CGI.pm/files/patch-bug-34551
+++ /dev/null
@@ -1,11 +0,0 @@
---- CGI.pm.orig 2008-05-13 09:32:19.000000000 +0200
-+++ CGI.pm 2008-05-13 09:32:59.000000000 +0200
-@@ -3387,7 +3387,7 @@ sub read_multipart {
- # content-disposition parsing fail.
- my ($filename) = $header{'Content-Disposition'}
- =~/ filename=(("[^"]*")|([a-z\d!\#'\*\+,\.^_\`\{\}\|\~]*))/i;
-- $filename =~ s/^"([^"]*)"$/$1/;
-+ $filename =~ s/^"([^"]*)"$/$1/ if defined $filename;
- # Test for Opera's multiple upload feature
- my($multipart) = ( defined( $header{'Content-Type'} ) &&
- $header{'Content-Type'} =~ /multipart\/mixed/ ) ?