Index: branches/2017Q4/devel/p5-Log-Dispatch-File-Rolling/Makefile =================================================================== --- branches/2017Q4/devel/p5-Log-Dispatch-File-Rolling/Makefile (revision 453867) +++ branches/2017Q4/devel/p5-Log-Dispatch-File-Rolling/Makefile (revision 453868) @@ -1,23 +1,23 @@ # $FreeBSD$ PORTNAME= Log-Dispatch-File-Rolling PORTVERSION= 1.09 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= devel perl5 MASTER_SITES= CPAN PKGNAMEPREFIX= p5- MAINTAINER= tj@FreeBSD.org COMMENT= Object for logging to date/time/pid stamped files LICENSE= ART20 -BUILD_DEPENDS= p5-Log-Dispatch>=2.37:devel/p5-Log-Dispatch \ +BUILD_DEPENDS= p5-Log-Dispatch>=2.67:devel/p5-Log-Dispatch \ p5-Log-Log4perl>=1.38:devel/p5-Log-Log4perl -RUN_DEPENDS= p5-Log-Dispatch>=2.37:devel/p5-Log-Dispatch \ +RUN_DEPENDS= p5-Log-Dispatch>=2.67:devel/p5-Log-Dispatch \ p5-Log-Log4perl>=1.38:devel/p5-Log-Log4perl USES= dos2unix perl5 USE_PERL5= configure .include Index: branches/2017Q4/devel/p5-Log-Dispatch-File-Rolling/files/patch-Log-Dispatch-File-Rolling-pm-fix-append-mode =================================================================== --- branches/2017Q4/devel/p5-Log-Dispatch-File-Rolling/files/patch-Log-Dispatch-File-Rolling-pm-fix-append-mode (revision 453867) +++ branches/2017Q4/devel/p5-Log-Dispatch-File-Rolling/files/patch-Log-Dispatch-File-Rolling-pm-fix-append-mode (nonexistent) @@ -1,12 +0,0 @@ ---- lib/Log/Dispatch/File/Rolling.pm 2014-01-27 05:37:14.000000000 -0500 -+++ lib/Log/Dispatch/File/Rolling.pm 2017-06-16 15:18:22.956608000 -0400 -@@ -39,7 +39,8 @@ - my $self = bless {}, $class; - - # only append mode is supported -- $p{mode} = 'append'; -+ $p{mode} = 'append'; # Specifies append for Log::Dispatch::File 2.37 through 2.58 -+ $self->{mode} = '>>'; # Specifies append for Log::Dispatch::File 2.59+ (no longer done by _basic_init) - - # base class initialization - $self->_basic_init(%p); Property changes on: branches/2017Q4/devel/p5-Log-Dispatch-File-Rolling/files/patch-Log-Dispatch-File-Rolling-pm-fix-append-mode ___________________________________________________________________ Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Deleted: svn:eol-style ## -1 +0,0 ## -native \ No newline at end of property Deleted: svn:mime-type ## -1 +0,0 ## -text/plain \ No newline at end of property Index: branches/2017Q4/devel/p5-Log-Dispatch-File-Rolling/files/patch-lib_Log_Dispatch_File_Rolling.pm =================================================================== --- branches/2017Q4/devel/p5-Log-Dispatch-File-Rolling/files/patch-lib_Log_Dispatch_File_Rolling.pm (nonexistent) +++ branches/2017Q4/devel/p5-Log-Dispatch-File-Rolling/files/patch-lib_Log_Dispatch_File_Rolling.pm (revision 453868) @@ -0,0 +1,24 @@ +--- lib/Log/Dispatch/File/Rolling.pm.orig 2017-11-09 20:22:14 UTC ++++ lib/Log/Dispatch/File/Rolling.pm +@@ -39,7 +39,8 @@ sub new { + my $self = bless {}, $class; + + # only append mode is supported +- $p{mode} = 'append'; ++ $p{mode} = 'append'; # Specifies append for Log::Dispatch::File 2.37 through 2.58 ++ $self->{mode} = '>>'; # Specifies append for Log::Dispatch::File 2.59+ (no longer done by _basic_init) + + # base class initialization + $self->_basic_init(%p); +@@ -63,7 +64,10 @@ sub new { + } + + $self->{rolling_fh_pid} = $$; +- $self->_make_handle(); ++ # _make_handle() was removed in Log::Dispatch::File 2.67 ++ # $self->_make_handle(); ++ $self->_open_file() ++ unless $self->{close_after_write} || $self->{lazy_open}; + + return $self; + } Property changes on: branches/2017Q4/devel/p5-Log-Dispatch-File-Rolling/files/patch-lib_Log_Dispatch_File_Rolling.pm ___________________________________________________________________ Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Added: svn:eol-style ## -0,0 +1 ## +native \ No newline at end of property Added: svn:mime-type ## -0,0 +1 ## +text/plain \ No newline at end of property Index: branches/2017Q4 =================================================================== --- branches/2017Q4 (revision 453867) +++ branches/2017Q4 (revision 453868) Property changes on: branches/2017Q4 ___________________________________________________________________ Modified: svn:mergeinfo ## -0,0 +0,1 ## Merged /head:r453867