aboutsummaryrefslogtreecommitdiff
path: root/devel/p5-Log-Dispatch
diff options
context:
space:
mode:
authorMark Linimon <linimon@FreeBSD.org>2004-03-04 12:39:23 +0000
committerMark Linimon <linimon@FreeBSD.org>2004-03-04 12:39:23 +0000
commitc32fee98f94ade8b5b2a67a4b81e809ac2b96283 (patch)
treec853c8796bdb7cb1d30b5f4c0a5cbbef1596877c /devel/p5-Log-Dispatch
parentf66d2add6d3b48fd5355eef57b4ac7aa7001f4db (diff)
downloadports-c32fee98f94ade8b5b2a67a4b81e809ac2b96283.tar.gz
ports-c32fee98f94ade8b5b2a67a4b81e809ac2b96283.zip
Update to 2.07: added Log::Dispatch::File::Locked; switched to Module::Build
and removed interactive portion of installation process; bugfixes. See Changes for complete list. PR: ports/58071 Submitted by: James Ainslie <james@starjuice.net> Maintainer timeout: 4 months
Notes
Notes: svn path=/head/; revision=102911
Diffstat (limited to 'devel/p5-Log-Dispatch')
-rw-r--r--devel/p5-Log-Dispatch/Makefile2
-rw-r--r--devel/p5-Log-Dispatch/distinfo2
-rw-r--r--devel/p5-Log-Dispatch/files/patch-broken-perl-syslog4
-rw-r--r--devel/p5-Log-Dispatch/files/patch-simpler-Makefile.PL79
4 files changed, 4 insertions, 83 deletions
diff --git a/devel/p5-Log-Dispatch/Makefile b/devel/p5-Log-Dispatch/Makefile
index 3bcdf97e618a..4c4e94326ade 100644
--- a/devel/p5-Log-Dispatch/Makefile
+++ b/devel/p5-Log-Dispatch/Makefile
@@ -6,7 +6,7 @@
#
PORTNAME= Log-Dispatch
-PORTVERSION= 2.03
+PORTVERSION= 2.07
CATEGORIES= devel perl5
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
MASTER_SITE_SUBDIR= Log
diff --git a/devel/p5-Log-Dispatch/distinfo b/devel/p5-Log-Dispatch/distinfo
index 14ba4d3cfbfa..8932da4dbb2d 100644
--- a/devel/p5-Log-Dispatch/distinfo
+++ b/devel/p5-Log-Dispatch/distinfo
@@ -1 +1 @@
-MD5 (Log-Dispatch-2.03.tar.gz) = 1b47948321099e81168c370c28e62236
+MD5 (Log-Dispatch-2.07.tar.gz) = d4c33ca2f36b5ec34e671d65aa0366d3
diff --git a/devel/p5-Log-Dispatch/files/patch-broken-perl-syslog b/devel/p5-Log-Dispatch/files/patch-broken-perl-syslog
index 76d91d9fd0c5..f325bc970251 100644
--- a/devel/p5-Log-Dispatch/files/patch-broken-perl-syslog
+++ b/devel/p5-Log-Dispatch/files/patch-broken-perl-syslog
@@ -1,7 +1,7 @@
$FreeBSD$
---- Dispatch/Syslog.pm.orig Sat Jun 22 01:10:31 2002
-+++ Dispatch/Syslog.pm Mon Jul 1 06:23:54 2002
+--- 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' },
diff --git a/devel/p5-Log-Dispatch/files/patch-simpler-Makefile.PL b/devel/p5-Log-Dispatch/files/patch-simpler-Makefile.PL
deleted file mode 100644
index 9343b20fc1e5..000000000000
--- a/devel/p5-Log-Dispatch/files/patch-simpler-Makefile.PL
+++ /dev/null
@@ -1,79 +0,0 @@
---- Makefile.PL.orig Wed Mar 5 21:03:36 2003
-+++ Makefile.PL Wed Mar 5 21:03:45 2003
-@@ -3,76 +3,6 @@ use ExtUtils::MakeMaker qw( prompt Write
- # Saves some headaches for people later.
- use 5.005;
-
--{
-- unless (-d './Install')
-- {
-- mkdir './Install', 0755
-- or die "can't make dir ./Install: $!";
-- }
--
-- my %config;
-- $config{email_address} = prompt( q[
--To do a full test of the Log::Dispatch::* modules, we need
--to attempt to send an email. If you want these tests to
--be done please supply an address.
--Address?] );
--
-- $config{syslog} = prompt( q[
--Do you want to test Log::Dispatch::Syslog by sending a message as
--daemon.notice?
--Yes/No?], 'No' );
--
-- delete $config{syslog} if $config{syslog} !~ /^y(?:es)?/i;
--
-- if ($config{syslog})
-- {
-- my $default;
-- foreach ( qw( /var/adm/messages
-- /var/adm/syslog
-- /var/log/messages
-- /var/log/syslog
-- /var/log/syslog
-- /etc/log/syslog ) )
-- {
-- if (-e)
-- {
-- $default = $_;
-- last;
-- }
-- }
--
-- $config{syslog_file} = prompt('What file would a message sent as daemon.notice end up in?', $default);
--
-- unless (-r $config{syslog_file})
-- {
-- warn "$config{syslog_file} is not readable. Syslog tests will be skipped\n";
-- delete $config{syslog};
-- delete $config{syslog_file};
-- }
-- }
--
-- open CFG, ">./Install/TestConfig.pm"
-- or die "can't write to ./Install/TestConfig.pm: $!";
--
-- print CFG <<"EOF";
--#
--# This file was automatically generated by Makefile.PL. Do not
--# edit, instead do a "make realclean" in the toplevel directory and
--# rerun "perl makefile.PL".
--#
--
--package Install::TestConfig;
--EOF
--
-- print CFG "\%config = \n(\n";
-- foreach (keys %config)
-- {
-- print CFG "\t$_ => '$config{$_}',\n";
-- }
-- print CFG ');';
-- close CFG;
--}
--
- WriteMakefile(
- 'NAME' => 'Log::Dispatch',
- 'VERSION_FROM' => 'Dispatch.pm',