r9555 - in /trunk/libsys-syslog-perl: ._Syslog.pm Changes MANIFEST META.yml Makefile.PL Syslog.pm debian/changelog fallback/syslog.h t/._syslog.t t/syslog.t win32/._Win32.pm win32/._compile.pl

gregoa-guest at users.alioth.debian.org gregoa-guest at users.alioth.debian.org
Sat Nov 17 21:58:19 UTC 2007


Author: gregoa-guest
Date: Sat Nov 17 21:58:18 2007
New Revision: 9555

URL: http://svn.debian.org/wsvn/?sc=1&rev=9555
Log:
New upstream release.

Added:
    trunk/libsys-syslog-perl/fallback/syslog.h
      - copied unchanged from r9554, branches/upstream/libsys-syslog-perl/current/fallback/syslog.h
Removed:
    trunk/libsys-syslog-perl/._Syslog.pm
    trunk/libsys-syslog-perl/t/._syslog.t
    trunk/libsys-syslog-perl/win32/._Win32.pm
    trunk/libsys-syslog-perl/win32/._compile.pl
Modified:
    trunk/libsys-syslog-perl/Changes
    trunk/libsys-syslog-perl/MANIFEST
    trunk/libsys-syslog-perl/META.yml
    trunk/libsys-syslog-perl/Makefile.PL
    trunk/libsys-syslog-perl/Syslog.pm
    trunk/libsys-syslog-perl/debian/changelog
    trunk/libsys-syslog-perl/t/syslog.t

Modified: trunk/libsys-syslog-perl/Changes
URL: http://svn.debian.org/wsvn/trunk/libsys-syslog-perl/Changes?rev=9555&op=diff
==============================================================================
--- trunk/libsys-syslog-perl/Changes (original)
+++ trunk/libsys-syslog-perl/Changes Sat Nov 17 21:58:18 2007
@@ -1,4 +1,11 @@
 Revision history for Sys-Syslog
+
+0.23 -- 2007.11.12 -- Sebastien Aperghis-Tramoni (SAPER)
+        [BUGFIX] Fixed a too liberal test in the "pipe" mechanism, thanks
+        to Jan Dubois.
+        [DIST] fallback/syslog.h was missing from MANIFEST (thanks to CPAN 
+        Tester Matthew Musgrove).
+        [TESTS] Better handling of Perl 5.005, thanks to CPAN Tester Slaven Rezic.
 
 0.22 -- 2007.11.08 -- Sebastien Aperghis-Tramoni (SAPER)
         [BUGFIX] CPAN-RT#29875: Added workaround SpamAssassin overzealous

Modified: trunk/libsys-syslog-perl/MANIFEST
URL: http://svn.debian.org/wsvn/trunk/libsys-syslog-perl/MANIFEST?rev=9555&op=diff
==============================================================================
--- trunk/libsys-syslog-perl/MANIFEST (original)
+++ trunk/libsys-syslog-perl/MANIFEST Sat Nov 17 21:58:18 2007
@@ -7,6 +7,7 @@
 Syslog.xs
 fallback/const-c.inc
 fallback/const-xs.inc
+fallback/syslog.h
 ppport.h
 eg/syslog.pl
 t/00-load.t

Modified: trunk/libsys-syslog-perl/META.yml
URL: http://svn.debian.org/wsvn/trunk/libsys-syslog-perl/META.yml?rev=9555&op=diff
==============================================================================
--- trunk/libsys-syslog-perl/META.yml (original)
+++ trunk/libsys-syslog-perl/META.yml Sat Nov 17 21:58:18 2007
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:                Sys-Syslog
-version:             0.22
+version:             0.23
 abstract:            Perl interface to the UNIX syslog(3) calls
 license:             perl
 generated_by:        ExtUtils::MakeMaker version 6.36

Modified: trunk/libsys-syslog-perl/Makefile.PL
URL: http://svn.debian.org/wsvn/trunk/libsys-syslog-perl/Makefile.PL?rev=9555&op=diff
==============================================================================
--- trunk/libsys-syslog-perl/Makefile.PL (original)
+++ trunk/libsys-syslog-perl/Makefile.PL Sat Nov 17 21:58:18 2007
@@ -69,6 +69,9 @@
     push @extra_params, 
         DEFINE      => '-DUSE_PPPORT_H';
 }
+
+# on pre-5.6 Perls, add warnings::compat to the prereq modules
+push @extra_prereqs, "warnings::compat"  if $] < 5.006;
 
 WriteMakefile(
     NAME            => 'Sys::Syslog',

Modified: trunk/libsys-syslog-perl/Syslog.pm
URL: http://svn.debian.org/wsvn/trunk/libsys-syslog-perl/Syslog.pm?rev=9555&op=diff
==============================================================================
--- trunk/libsys-syslog-perl/Syslog.pm (original)
+++ trunk/libsys-syslog-perl/Syslog.pm Sat Nov 17 21:58:18 2007
@@ -10,7 +10,7 @@
 require Exporter;
 
 {   no strict 'vars';
-    $VERSION = '0.22';
+    $VERSION = '0.23';
     @ISA = qw(Exporter);
 
     %EXPORT_TAGS = (
@@ -221,7 +221,7 @@
 
     } elsif (lc $setsock eq 'pipe') {
         for my $path ($syslog_path, &_PATH_LOG, "/dev/log") {
-            next unless defined $path and length $path and -w $path;
+            next unless defined $path and length $path and -p $path and -w _;
             $syslog_path = $path;
             last
         }
@@ -771,7 +771,7 @@
 
 =head1 VERSION
 
-Version 0.22
+Version 0.23
 
 =head1 SYNOPSIS
 

Modified: trunk/libsys-syslog-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libsys-syslog-perl/debian/changelog?rev=9555&op=diff
==============================================================================
--- trunk/libsys-syslog-perl/debian/changelog (original)
+++ trunk/libsys-syslog-perl/debian/changelog Sat Nov 17 21:58:18 2007
@@ -1,3 +1,9 @@
+libsys-syslog-perl (0.23-1) UNRELEASED; urgency=low
+
+  * New upstream release.
+
+ -- gregor herrmann <gregor+debian at comodo.priv.at>  Sat, 17 Nov 2007 22:57:18 +0100
+
 libsys-syslog-perl (0.22-1) unstable; urgency=low
 
   [ gregor herrmann ]

Modified: trunk/libsys-syslog-perl/t/syslog.t
URL: http://svn.debian.org/wsvn/trunk/libsys-syslog-perl/t/syslog.t?rev=9555&op=diff
==============================================================================
--- trunk/libsys-syslog-perl/t/syslog.t (original)
+++ trunk/libsys-syslog-perl/t/syslog.t Sat Nov 17 21:58:18 2007
@@ -18,6 +18,10 @@
 use warnings qw(closure deprecated exiting glob io misc numeric once overflow
                 pack portable recursion redefine regexp severe signal substr
                 syntax taint uninitialized unpack untie utf8 void);
+
+# if someone is using warnings::compat, the previous trick won't work, so we
+# must manually disable warnings
+$^W = 0 if $] < 5.006;
 
 my $is_Win32  = $^O =~ /win32/i;
 my $is_Cygwin = $^O =~ /cygwin/i;




More information about the Pkg-perl-cvs-commits mailing list