aboutsummaryrefslogtreecommitdiff
path: root/devel/p5-Log-Dispatch
diff options
context:
space:
mode:
authorMathieu Arnold <mat@FreeBSD.org>2008-03-25 16:57:23 +0000
committerMathieu Arnold <mat@FreeBSD.org>2008-03-25 16:57:23 +0000
commitde177623b3d82bd0a630f52fac0c976263b3d2d7 (patch)
tree6510958568883efc43520cbd0b4f4c65cce5435a /devel/p5-Log-Dispatch
parentb096773969857b0ea04a10786acc26b039688873 (diff)
Notes
Diffstat (limited to 'devel/p5-Log-Dispatch')
-rw-r--r--devel/p5-Log-Dispatch/Makefile2
-rw-r--r--devel/p5-Log-Dispatch/distinfo6
-rw-r--r--devel/p5-Log-Dispatch/files/patch-broken-perl-syslog26
3 files changed, 16 insertions, 18 deletions
diff --git a/devel/p5-Log-Dispatch/Makefile b/devel/p5-Log-Dispatch/Makefile
index aade6aa6270d..27731be75e76 100644
--- a/devel/p5-Log-Dispatch/Makefile
+++ b/devel/p5-Log-Dispatch/Makefile
@@ -6,7 +6,7 @@
#
PORTNAME= Log-Dispatch
-PORTVERSION= 2.18
+PORTVERSION= 2.21
CATEGORIES= devel perl5
MASTER_SITES= CPAN
PKGNAMEPREFIX= p5-
diff --git a/devel/p5-Log-Dispatch/distinfo b/devel/p5-Log-Dispatch/distinfo
index 0b59191b6208..ed263234a592 100644
--- a/devel/p5-Log-Dispatch/distinfo
+++ b/devel/p5-Log-Dispatch/distinfo
@@ -1,3 +1,3 @@
-MD5 (Log-Dispatch-2.18.tar.gz) = bee5bcd1d598d006dc10491e542aea12
-SHA256 (Log-Dispatch-2.18.tar.gz) = a6f5371d1f02a7238056f5a4213f681eb2c2878d1f352c35f183fede06c061d2
-SIZE (Log-Dispatch-2.18.tar.gz) = 30979
+MD5 (Log-Dispatch-2.21.tar.gz) = a9aeb68cbf45f99ab63985719f112ee7
+SHA256 (Log-Dispatch-2.21.tar.gz) = 962bff2bdc74da7443dc95dbc1b0be8e67e7f35393c5fa77ca06faa271b1e76a
+SIZE (Log-Dispatch-2.21.tar.gz) = 31756
diff --git a/devel/p5-Log-Dispatch/files/patch-broken-perl-syslog b/devel/p5-Log-Dispatch/files/patch-broken-perl-syslog
index f325bc970251..a4a096a43f38 100644
--- a/devel/p5-Log-Dispatch/files/patch-broken-perl-syslog
+++ b/devel/p5-Log-Dispatch/files/patch-broken-perl-syslog
@@ -1,19 +1,17 @@
-$FreeBSD$
-
---- lib/Log/Dispatch/Syslog.pm.orig Sat Jun 22 01:10:31 2002
-+++ lib/Log/Dispatch/Syslog.pm Mon Jul 1 06:23:54 2002
-@@ -46,7 +46,7 @@
- facility => { type => SCALAR,
- default => 'user' },
- socket => { type => SCALAR,
-- default => 'unix' },
-+ default => undef },
- } );
+--- lib/Log/Dispatch/Syslog.pm.orig 2008-02-07 00:18:42.000000000 +0100
++++ lib/Log/Dispatch/Syslog.pm 2008-03-20 11:23:50.000000000 +0100
+@@ -40,7 +40,7 @@
+ facility => { type => SCALAR,
+ default => 'user' },
+ socket => { type => SCALAR,
+- default => 'unix' },
++ default => undef },
+ } );
$self->{ident} = $p{ident};
-@@ -63,7 +63,7 @@
- 'ALERT',
- 'EMERG' ];
+@@ -57,7 +57,7 @@
+ 'ALERT',
+ 'EMERG' ];
- Sys::Syslog::setlogsock $self->{socket};
+ Sys::Syslog::setlogsock $self->{socket} if defined $self->{socket};