r11881 - in /branches/upstream/libsys-syslog-perl/current: Changes MANIFEST META.yml Syslog.pm t/syslog.t

gregoa-guest at users.alioth.debian.org gregoa-guest at users.alioth.debian.org
Tue Jan 1 20:48:24 UTC 2008


Author: gregoa-guest
Date: Tue Jan  1 20:48:24 2008
New Revision: 11881

URL: http://svn.debian.org/wsvn/?sc=1&rev=11881
Log:
[svn-upgrade] Integrating new upstream version, libsys-syslog-perl (0.24)

Modified:
    branches/upstream/libsys-syslog-perl/current/Changes
    branches/upstream/libsys-syslog-perl/current/MANIFEST
    branches/upstream/libsys-syslog-perl/current/META.yml
    branches/upstream/libsys-syslog-perl/current/Syslog.pm
    branches/upstream/libsys-syslog-perl/current/t/syslog.t

Modified: branches/upstream/libsys-syslog-perl/current/Changes
URL: http://svn.debian.org/wsvn/branches/upstream/libsys-syslog-perl/current/Changes?rev=11881&op=diff
==============================================================================
--- branches/upstream/libsys-syslog-perl/current/Changes (original)
+++ branches/upstream/libsys-syslog-perl/current/Changes Tue Jan  1 20:48:24 2008
@@ -1,4 +1,8 @@
 Revision history for Sys-Syslog
+
+0.24 -- 2007.12.31 -- Sebastien Aperghis-Tramoni (SAPER)
+        [BUGFIX] CPANT-RT#32001: Skip the setlogsock('stream') tests when 
+        /dev/log is unavailable (Brendan O'Dea).
 
 0.23 -- 2007.11.12 -- Sebastien Aperghis-Tramoni (SAPER)
         [BUGFIX] Fixed a too liberal test in the "pipe" mechanism, thanks

Modified: branches/upstream/libsys-syslog-perl/current/MANIFEST
URL: http://svn.debian.org/wsvn/branches/upstream/libsys-syslog-perl/current/MANIFEST?rev=11881&op=diff
==============================================================================
--- branches/upstream/libsys-syslog-perl/current/MANIFEST (original)
+++ branches/upstream/libsys-syslog-perl/current/MANIFEST Tue Jan  1 20:48:24 2008
@@ -1,5 +1,6 @@
+Makefile.PL
+META.yml
 Changes
-Makefile.PL
 MANIFEST
 README
 README.win32
@@ -24,4 +25,3 @@
 win32/PerlLog_RES.uu
 win32/PerlLog_dll.uu
 win32/Win32.pm
-META.yml                                 Module meta-data (added by MakeMaker)

Modified: branches/upstream/libsys-syslog-perl/current/META.yml
URL: http://svn.debian.org/wsvn/branches/upstream/libsys-syslog-perl/current/META.yml?rev=11881&op=diff
==============================================================================
--- branches/upstream/libsys-syslog-perl/current/META.yml (original)
+++ branches/upstream/libsys-syslog-perl/current/META.yml Tue Jan  1 20:48:24 2008
@@ -1,13 +1,14 @@
 --- #YAML:1.0
 name:                Sys-Syslog
-version:             0.23
+version:             0.24
 abstract:            Perl interface to the UNIX syslog(3) calls
 license:             perl
-generated_by:        ExtUtils::MakeMaker version 6.36
+author:              ~
+generated_by:        ExtUtils::MakeMaker version 6.42
 distribution_type:   module
 requires:     
     Test::More:                    0
     XSLoader:                      0
 meta-spec:
-    url:     http://module-build.sourceforge.net/META-spec-v1.2.html
-    version: 1.2
+    url:     http://module-build.sourceforge.net/META-spec-v1.3.html
+    version: 1.3

Modified: branches/upstream/libsys-syslog-perl/current/Syslog.pm
URL: http://svn.debian.org/wsvn/branches/upstream/libsys-syslog-perl/current/Syslog.pm?rev=11881&op=diff
==============================================================================
--- branches/upstream/libsys-syslog-perl/current/Syslog.pm (original)
+++ branches/upstream/libsys-syslog-perl/current/Syslog.pm Tue Jan  1 20:48:24 2008
@@ -10,7 +10,7 @@
 require Exporter;
 
 {   no strict 'vars';
-    $VERSION = '0.23';
+    $VERSION = '0.24';
     @ISA = qw(Exporter);
 
     %EXPORT_TAGS = (
@@ -771,7 +771,7 @@
 
 =head1 VERSION
 
-Version 0.23
+Version 0.24
 
 =head1 SYNOPSIS
 

Modified: branches/upstream/libsys-syslog-perl/current/t/syslog.t
URL: http://svn.debian.org/wsvn/branches/upstream/libsys-syslog-perl/current/t/syslog.t?rev=11881&op=diff
==============================================================================
--- branches/upstream/libsys-syslog-perl/current/t/syslog.t (original)
+++ branches/upstream/libsys-syslog-perl/current/t/syslog.t Tue Jan  1 20:48:24 2008
@@ -192,6 +192,9 @@
     skip "not testing setlogsock('stream') on Win32", 10 if $is_Win32;
     skip "the 'unix' mechanism works, so the tests will likely fail with the 'stream' mechanism", 10 
         if grep {/unix/} @passed;
+
+    skip "not testing setlogsock('stream'): _PATH_LOG unavailable", 10
+        unless -e Sys::Syslog::_PATH_LOG();
 
     # setlogsock() with "stream" and an undef path
     $r = eval { setlogsock("stream", undef ) } || '';




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