diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2002-11-16 22:38:05 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2002-11-16 22:38:05 +0000 |
commit | 8d9c9e1870f08c2f7be1556fbfee882bc591a54e (patch) | |
tree | 314a988ae2df05216a7fe74dee280af73ad406e1 /net | |
parent | Maintainer update to version 1.3 (diff) |
Maintainer update to version 1.4
PR: ports/45181
Submitted by: Joshua Goodall <joshua@roughtrade.net>
Notes
Notes:
svn path=/head/; revision=70268
Diffstat (limited to 'net')
-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 bec40bc472a3..12728e79a7ea 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 47643bf23a39..5e146dac5c93 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 dad8489981d9..000000000000 --- 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 4afd3d9bd0d4..000000000000 --- 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->(@_) } - } - |