diff options
author | mat <mat@FreeBSD.org> | 2008-03-26 00:57:23 +0800 |
---|---|---|
committer | mat <mat@FreeBSD.org> | 2008-03-26 00:57:23 +0800 |
commit | 2a322022bc047cb61687d8388a452bc5875e1e75 (patch) | |
tree | e574609219b21dd05e14d8e8400b44c3d8691e15 /devel | |
parent | 4a3245d56470a459140f9704a7151d6e95d015d5 (diff) | |
download | freebsd-ports-gnome-2a322022bc047cb61687d8388a452bc5875e1e75.tar.gz freebsd-ports-gnome-2a322022bc047cb61687d8388a452bc5875e1e75.tar.zst freebsd-ports-gnome-2a322022bc047cb61687d8388a452bc5875e1e75.zip |
Update to 2.21
Diffstat (limited to 'devel')
-rw-r--r-- | devel/p5-Log-Dispatch/Makefile | 2 | ||||
-rw-r--r-- | devel/p5-Log-Dispatch/distinfo | 6 | ||||
-rw-r--r-- | devel/p5-Log-Dispatch/files/patch-broken-perl-syslog | 26 |
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}; |