r11883 - in /trunk/libsys-syslog-perl: Changes MANIFEST META.yml Syslog.pm debian/changelog t/syslog.t

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


Author: gregoa-guest
Date: Tue Jan  1 20:50:07 2008
New Revision: 11883

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

Modified:
    trunk/libsys-syslog-perl/Changes
    trunk/libsys-syslog-perl/MANIFEST
    trunk/libsys-syslog-perl/META.yml
    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=11883&op=diff
==============================================================================
--- trunk/libsys-syslog-perl/Changes (original)
+++ trunk/libsys-syslog-perl/Changes Tue Jan  1 20:50:07 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: trunk/libsys-syslog-perl/MANIFEST
URL: http://svn.debian.org/wsvn/trunk/libsys-syslog-perl/MANIFEST?rev=11883&op=diff
==============================================================================
--- trunk/libsys-syslog-perl/MANIFEST (original)
+++ trunk/libsys-syslog-perl/MANIFEST Tue Jan  1 20:50:07 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: trunk/libsys-syslog-perl/META.yml
URL: http://svn.debian.org/wsvn/trunk/libsys-syslog-perl/META.yml?rev=11883&op=diff
==============================================================================
--- trunk/libsys-syslog-perl/META.yml (original)
+++ trunk/libsys-syslog-perl/META.yml Tue Jan  1 20:50:07 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: trunk/libsys-syslog-perl/Syslog.pm
URL: http://svn.debian.org/wsvn/trunk/libsys-syslog-perl/Syslog.pm?rev=11883&op=diff
==============================================================================
--- trunk/libsys-syslog-perl/Syslog.pm (original)
+++ trunk/libsys-syslog-perl/Syslog.pm Tue Jan  1 20:50:07 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: trunk/libsys-syslog-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libsys-syslog-perl/debian/changelog?rev=11883&op=diff
==============================================================================
--- trunk/libsys-syslog-perl/debian/changelog (original)
+++ trunk/libsys-syslog-perl/debian/changelog Tue Jan  1 20:50:07 2008
@@ -1,3 +1,9 @@
+libsys-syslog-perl (0.24-1) UNRELEASED; urgency=low
+
+  * New upstream release.
+
+ -- gregor herrmann <gregor+debian at comodo.priv.at>  Tue, 01 Jan 2008 21:48:27 +0100
+
 libsys-syslog-perl (0.23-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=11883&op=diff
==============================================================================
--- trunk/libsys-syslog-perl/t/syslog.t (original)
+++ trunk/libsys-syslog-perl/t/syslog.t Tue Jan  1 20:50:07 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