aboutsummaryrefslogtreecommitdiff
path: root/devel/p5-Log-Dispatch
diff options
context:
space:
mode:
authorMathieu Arnold <mat@FreeBSD.org>2009-02-12 16:14:24 +0000
committerMathieu Arnold <mat@FreeBSD.org>2009-02-12 16:14:24 +0000
commitf19c74a488249c70a045678ff0fd9bea9bfcd485 (patch)
treee69122be5b5f21dfcbbce41274661b1b53bbdba5 /devel/p5-Log-Dispatch
parent672f2d088e43bd28708fe7bbca71cf09e9f31d1f (diff)
downloadports-f19c74a488249c70a045678ff0fd9bea9bfcd485.tar.gz
ports-f19c74a488249c70a045678ff0fd9bea9bfcd485.zip
Update to 2.22
Notes
Notes: svn path=/head/; revision=228117
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-syslog20
3 files changed, 4 insertions, 24 deletions
diff --git a/devel/p5-Log-Dispatch/Makefile b/devel/p5-Log-Dispatch/Makefile
index 27731be75e76..4d3658dfcb55 100644
--- a/devel/p5-Log-Dispatch/Makefile
+++ b/devel/p5-Log-Dispatch/Makefile
@@ -6,7 +6,7 @@
#
PORTNAME= Log-Dispatch
-PORTVERSION= 2.21
+PORTVERSION= 2.22
CATEGORIES= devel perl5
MASTER_SITES= CPAN
PKGNAMEPREFIX= p5-
diff --git a/devel/p5-Log-Dispatch/distinfo b/devel/p5-Log-Dispatch/distinfo
index ed263234a592..2eb69e1341d8 100644
--- a/devel/p5-Log-Dispatch/distinfo
+++ b/devel/p5-Log-Dispatch/distinfo
@@ -1,3 +1,3 @@
-MD5 (Log-Dispatch-2.21.tar.gz) = a9aeb68cbf45f99ab63985719f112ee7
-SHA256 (Log-Dispatch-2.21.tar.gz) = 962bff2bdc74da7443dc95dbc1b0be8e67e7f35393c5fa77ca06faa271b1e76a
-SIZE (Log-Dispatch-2.21.tar.gz) = 31756
+MD5 (Log-Dispatch-2.22.tar.gz) = 28c006a56d82335ed5c2ac31443ecbe3
+SHA256 (Log-Dispatch-2.22.tar.gz) = 4bd4bf48244c2742d9f63fe7b04ec7b9e6e14a76da64d6a56e8a284487a61dd0
+SIZE (Log-Dispatch-2.22.tar.gz) = 32582
diff --git a/devel/p5-Log-Dispatch/files/patch-broken-perl-syslog b/devel/p5-Log-Dispatch/files/patch-broken-perl-syslog
deleted file mode 100644
index a4a096a43f38..000000000000
--- a/devel/p5-Log-Dispatch/files/patch-broken-perl-syslog
+++ /dev/null
@@ -1,20 +0,0 @@
---- 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};
-@@ -57,7 +57,7 @@
- 'ALERT',
- 'EMERG' ];
-
-- Sys::Syslog::setlogsock $self->{socket};
-+ Sys::Syslog::setlogsock $self->{socket} if defined $self->{socket};
- }
-
- sub log_message