diff options
author | mjl <mjl@pkgsrc.org> | 2001-12-04 01:35:54 +0000 |
---|---|---|
committer | mjl <mjl@pkgsrc.org> | 2001-12-04 01:35:54 +0000 |
commit | def2e663aa077a999229af338af4d93f4dd2bfa7 (patch) | |
tree | 7a9a6e408edd58ffc34c9a0803ecad5275f246d7 | |
parent | c997e0436c9a8d346df68957d188c065c839e7fc (diff) | |
download | pkgsrc-def2e663aa077a999229af338af4d93f4dd2bfa7.tar.gz |
Update to 1.54
Added mod_uniqueid and mod_usertrack generators.
Fixed validate function in Flex.
Move to Digest::MD5 instead of MD5.
-rw-r--r-- | www/p5-Apache-Session/Makefile | 4 | ||||
-rw-r--r-- | www/p5-Apache-Session/distinfo | 6 | ||||
-rw-r--r-- | www/p5-Apache-Session/patches/patch-aa | 12 | ||||
-rw-r--r-- | www/p5-Apache-Session/patches/patch-ab | 22 |
4 files changed, 5 insertions, 39 deletions
diff --git a/www/p5-Apache-Session/Makefile b/www/p5-Apache-Session/Makefile index 6e70168874a..fd69c896263 100644 --- a/www/p5-Apache-Session/Makefile +++ b/www/p5-Apache-Session/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.5 2001/11/26 06:50:30 jlam Exp $ +# $NetBSD: Makefile,v 1.6 2001/12/04 01:35:54 mjl Exp $ # -DISTNAME= Apache-Session-1.53 +DISTNAME= Apache-Session-1.54 PKGNAME= p5-${DISTNAME} SVR4_PKGNAME= p5ase CATEGORIES= www perl5 diff --git a/www/p5-Apache-Session/distinfo b/www/p5-Apache-Session/distinfo index e682c6b2762..60c7fe42743 100644 --- a/www/p5-Apache-Session/distinfo +++ b/www/p5-Apache-Session/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.3 2001/09/19 03:44:39 mjl Exp $ +$NetBSD: distinfo,v 1.4 2001/12/04 01:35:54 mjl Exp $ -SHA1 (Apache-Session-1.53.tar.gz) = bd1fb03954b91712daaf77334be87ddc80d98da7 -Size (Apache-Session-1.53.tar.gz) = 25572 bytes +SHA1 (Apache-Session-1.54.tar.gz) = 7202e097123af9b8df5e5eac8a1c794d7aaff015 +Size (Apache-Session-1.54.tar.gz) = 27355 bytes SHA1 (patch-aa) = c3d70b4a708611f9eeff3116cb4e55810c60c053 SHA1 (patch-ab) = 4cc24c09b21b6305d502d9fcace129ed469d6e0d diff --git a/www/p5-Apache-Session/patches/patch-aa b/www/p5-Apache-Session/patches/patch-aa deleted file mode 100644 index 69e029752c5..00000000000 --- a/www/p5-Apache-Session/patches/patch-aa +++ /dev/null @@ -1,12 +0,0 @@ -$NetBSD: patch-aa,v 1.1 2001/09/19 03:44:39 mjl Exp $ - ---- Makefile.PL.orig Wed Sep 19 05:38:17 2001 -+++ Makefile.PL Wed Sep 19 05:38:27 2001 -@@ -5,6 +5,6 @@ - - NAME => "Apache::Session", - VERSION_FROM => "Session.pm", -- PREREQ_PM => { MD5 => 0, Storable => 0 }, -+ PREREQ_PM => { Digest::MD5 => 0, Storable => 0 }, - 'dist' => { COMPRESS=>"gzip", SUFFIX=>"gz" } - ); diff --git a/www/p5-Apache-Session/patches/patch-ab b/www/p5-Apache-Session/patches/patch-ab deleted file mode 100644 index d6e4d7c32ae..00000000000 --- a/www/p5-Apache-Session/patches/patch-ab +++ /dev/null @@ -1,22 +0,0 @@ -$NetBSD: patch-ab,v 1.1 2001/09/19 03:44:39 mjl Exp $ - ---- Session/Generate/MD5.pm.orig Wed Sep 19 05:38:57 2001 -+++ Session/Generate/MD5.pm Wed Sep 19 05:39:38 2001 -@@ -11,7 +11,7 @@ - - use strict; - use vars qw($VERSION); --use MD5; -+use Digest::MD5; - - $VERSION = '2.0'; - -@@ -24,7 +24,7 @@ - } - - $session->{data}->{_session_id} = -- substr(MD5->hexhash(MD5->hexhash(time(). {}. rand(). $$)), 0, $length); -+ substr(Digest::MD5::md5_hex(Digest::MD5::md5_hex(time(). {}. rand(). $$)), 0, $length); - - - } |