diff options
author | edwin <edwin@FreeBSD.org> | 2002-11-16 22:38:05 +0000 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2002-11-16 22:38:05 +0000 |
commit | 79d7aa9dbb96baef3d31b2c1d72b64228b4aa42f (patch) | |
tree | 0f431cb42bfebe6bcd27d148ec74cb1a142e4702 /net/p5-Spread-Session | |
parent | fd06215b77213f116795fb0afd72fcac31457048 (diff) | |
download | FreeBSD-ports-79d7aa9dbb96baef3d31b2c1d72b64228b4aa42f.zip FreeBSD-ports-79d7aa9dbb96baef3d31b2c1d72b64228b4aa42f.tar.gz |
Maintainer update to version 1.4
PR: ports/45181
Submitted by: Joshua Goodall <joshua@roughtrade.net>
Diffstat (limited to 'net/p5-Spread-Session')
-rw-r--r-- | net/p5-Spread-Session/Makefile | 5 | ||||
-rw-r--r-- | net/p5-Spread-Session/distinfo | 2 | ||||
-rw-r--r-- | net/p5-Spread-Session/files/patch-Makefile.PL | 13 | ||||
-rw-r--r-- | net/p5-Spread-Session/files/patch-Session.pm | 30 |
4 files changed, 3 insertions, 47 deletions
diff --git a/net/p5-Spread-Session/Makefile b/net/p5-Spread-Session/Makefile index bec40bc..12728e7 100644 --- a/net/p5-Spread-Session/Makefile +++ b/net/p5-Spread-Session/Makefile @@ -6,10 +6,9 @@ # PORTNAME= Spread-Session -PORTVERSION= 0.2 +PORTVERSION= 0.4 CATEGORIES= net perl5 -MASTER_SITES= ${MASTER_SITE_PERL_CPAN} \ - http://www.roughtrade.net/distfiles/ +MASTER_SITES= ${MASTER_SITE_PERL_CPAN} MASTER_SITE_SUBDIR= ../by-authors/id/J/JM/JMAY PKGNAMEPREFIX= p5- diff --git a/net/p5-Spread-Session/distinfo b/net/p5-Spread-Session/distinfo index 47643bf..5e146da 100644 --- a/net/p5-Spread-Session/distinfo +++ b/net/p5-Spread-Session/distinfo @@ -1 +1 @@ -MD5 (Spread-Session-0.2.tar.gz) = 1ac0f4f0beb0bf31e3538c287dc8903e +MD5 (Spread-Session-0.4.tar.gz) = 861a93c1a07053eec07ab40512b32a01 diff --git a/net/p5-Spread-Session/files/patch-Makefile.PL b/net/p5-Spread-Session/files/patch-Makefile.PL deleted file mode 100644 index dad8489..0000000 --- a/net/p5-Spread-Session/files/patch-Makefile.PL +++ /dev/null @@ -1,13 +0,0 @@ ---- Makefile.PL.orig Mon Mar 25 08:47:50 2002 -+++ Makefile.PL Wed Apr 3 01:03:40 2002 -@@ -4,10 +4,6 @@ - WriteMakefile( - 'NAME' => 'Spread::Session', - 'VERSION_FROM' => 'Session.pm', # finds $VERSION -- 'PREREQ_PM' => { -- Log::Channel => 0.4, -- Event => 0.85, # for test cases -- }, - ($] >= 5.005 ? ## Add these new keywords supported since 5.005 - (ABSTRACT_FROM => 'Session.pm', # retrieve abstract from module - AUTHOR => 'Jason W. May <jmay@pobox.com>') : ()), diff --git a/net/p5-Spread-Session/files/patch-Session.pm b/net/p5-Spread-Session/files/patch-Session.pm deleted file mode 100644 index 4afd3d9..0000000 --- a/net/p5-Spread-Session/files/patch-Session.pm +++ /dev/null @@ -1,30 +0,0 @@ ---- Session.pm.orig Sat Apr 6 16:12:24 2002 -+++ Session.pm Sat Apr 6 16:13:03 2002 -@@ -46,7 +46,6 @@ - use strict; - #use warnings; - use Carp; --use Log::Channel; - use Spread; - - use vars qw($VERSION); -@@ -55,9 +54,17 @@ - my $DEFAULT_TIMEOUT = 5; - - BEGIN { -- my $log = new Log::Channel; -+ my ($log, $msglog); -+ if (defined eval "require Log::Channel") { -+ $log = new Log::Channel; -+ $msglog = new Log::Channel("message"); -+ } else { -+ # no log::channel, disable all the logging -+ $log = sub {}; -+ $msglog = sub {}; -+ } -+ - sub sslog { $log->(@_) } -- my $msglog = new Log::Channel("message"); - sub msglog { $msglog->(@_) } - } - |