summaryrefslogtreecommitdiff
path: root/www/p5-CGI_Lite
diff options
context:
space:
mode:
authorbad <bad@pkgsrc.org>2005-01-20 20:55:33 +0000
committerbad <bad@pkgsrc.org>2005-01-20 20:55:33 +0000
commit5cec9319ba286facc5318e16cfbf18b1ea563ea1 (patch)
treec50b37f1c189e6739645b8161373c64c167b9ea1 /www/p5-CGI_Lite
parent751127812f2924b35b2f60346cdccd321e44cdd0 (diff)
downloadpkgsrc-5cec9319ba286facc5318e16cfbf18b1ea563ea1.tar.gz
Update p5-CGI-Lite to version 2.02.
Changes since 2.001: url_decode now interprets "+"s correctly, as encoded spaces. url_encode ensures that all hex-encodings are padded correctly, to 2 digits (so "%09" for a tab, not "%9"). The fake-encoding done on standard input when testing at the command-line has been fixed equivalently. url_encode also converts spaces to "+"s and emits hex characters in upper-case, since this what web-browsers seem to do. Encoding is now performed on all but known-safe characters, rather listing all the characters believed to be in need of encoding. The internal method _decode_url_encoded_data now uses url_decode, rather than duplicating its content.
Diffstat (limited to 'www/p5-CGI_Lite')
-rw-r--r--www/p5-CGI_Lite/Makefile10
-rw-r--r--www/p5-CGI_Lite/distinfo6
-rw-r--r--www/p5-CGI_Lite/files/Makefile.PL11
3 files changed, 6 insertions, 21 deletions
diff --git a/www/p5-CGI_Lite/Makefile b/www/p5-CGI_Lite/Makefile
index c807a60c6f0..00dba6a0600 100644
--- a/www/p5-CGI_Lite/Makefile
+++ b/www/p5-CGI_Lite/Makefile
@@ -1,11 +1,10 @@
-# $NetBSD: Makefile,v 1.14 2004/12/20 11:31:13 grant Exp $
+# $NetBSD: Makefile,v 1.15 2005/01/20 20:55:33 bad Exp $
#
-NAME= CGI-Lite-2.001
-DISTNAME= ${NAME}-emergencyrelease
+NAME= CGI-Lite-2.02
+DISTNAME= ${NAME}
PKGNAME= p5-${NAME}
SVR4_PKGNAME= p5cgl
-PKGREVISION= 1
CATEGORIES= www perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN:=CGI/}
@@ -15,8 +14,5 @@ COMMENT= Simple perl5 module for writing forms-based CGI programs
USE_BUILDLINK3= YES
PERL5_PACKLIST= ${PERL5_SITEARCH}/auto/CGI/Lite/.packlist
-pre-configure:
- ${CP} ${FILESDIR}/Makefile.PL ${WRKDIR}/Makefile.PL
-
.include "../../lang/perl5/module.mk"
.include "../../mk/bsd.pkg.mk"
diff --git a/www/p5-CGI_Lite/distinfo b/www/p5-CGI_Lite/distinfo
index 6d9ca81abf1..235d8531908 100644
--- a/www/p5-CGI_Lite/distinfo
+++ b/www/p5-CGI_Lite/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.3 2003/03/02 20:26:04 mjl Exp $
+$NetBSD: distinfo,v 1.4 2005/01/20 20:55:33 bad Exp $
-SHA1 (CGI-Lite-2.001-emergencyrelease.tar.gz) = 113ee6c14d18dcef1d3529c89dbc6c3a7e4ba4d1
-Size (CGI-Lite-2.001-emergencyrelease.tar.gz) = 15095 bytes
+SHA1 (CGI-Lite-2.02.tar.gz) = 30171a52171bb59805eca07bcb7d9e9622ebc7c3
+Size (CGI-Lite-2.02.tar.gz) = 15727 bytes
diff --git a/www/p5-CGI_Lite/files/Makefile.PL b/www/p5-CGI_Lite/files/Makefile.PL
deleted file mode 100644
index aca9d3a0964..00000000000
--- a/www/p5-CGI_Lite/files/Makefile.PL
+++ /dev/null
@@ -1,11 +0,0 @@
-# $NetBSD: Makefile.PL,v 1.1.1.1 1998/11/26 17:57:03 bad Exp $
-use ExtUtils::MakeMaker;
-# See lib/ExtUtils/MakeMaker.pm for details of how to influence
-# the contents of the Makefile that is written.
-WriteMakefile(
- 'NAME' => 'CGI_Lite',
- 'DISTNAME' => 'CGI_Lite.pm',
- 'VERSION' => '1.62',
- 'linkext' => { LINKTYPE=>'' }, # no link needed
- 'dist' => {'COMPRESS'=>'gzip -9f', 'SUFFIX' => 'gz'}
-);