r7918 - in /trunk/libsys-syslog-perl/debian: changelog patches/fix-man-page-line-too-long.patch patches/series

dmn at users.alioth.debian.org dmn at users.alioth.debian.org
Mon Sep 24 06:50:46 UTC 2007


Author: dmn
Date: Mon Sep 24 06:50:44 2007
New Revision: 7918

URL: http://svn.debian.org/wsvn/?sc=1&rev=7918
Log:
* Added fix-man-page-line-too-long.patch to break some rather long lines
* libtest-distribution-perl added to Buld-Dep

Added:
    trunk/libsys-syslog-perl/debian/patches/fix-man-page-line-too-long.patch
Modified:
    trunk/libsys-syslog-perl/debian/changelog
    trunk/libsys-syslog-perl/debian/patches/series

Modified: trunk/libsys-syslog-perl/debian/changelog
URL: http://svn.debian.org/wsvn/trunk/libsys-syslog-perl/debian/changelog?rev=7918&op=diff
==============================================================================
--- trunk/libsys-syslog-perl/debian/changelog (original)
+++ trunk/libsys-syslog-perl/debian/changelog Mon Sep 24 06:50:44 2007
@@ -5,16 +5,17 @@
   * Fix upstream URL in debian/copyright
   * Added Homepage to debian/control
   * Added myself to Uploaders (and wrapped it)
+  * Added fix-man-page-line-too-long.patch to break some rather long lines
 
   [ Rene Mayorga ]
-  * libtest-distribution-perl and dpatch added to Buld-Dep 
+  * libtest-distribution-perl added to Buld-Dep
   * Apply patch from previous version in order to skip tests
     if /dev/log is not present
   * use dpatch at debian/rules
   * Added myself to Uploaders
   * Moving Homapage from description as a Valid Control field
 
- -- Rene Mayorga <rmayorga at debian.org.sv>  Fri, 21 Sep 2007 23:48:13 -0600
+ -- Damyan Ivanov <dmn at debian.org>  Mon, 24 Sep 2007 09:48:43 +0300
 
 libsys-syslog-perl (0.20-1) UNRELEASED; urgency=low
 

Added: trunk/libsys-syslog-perl/debian/patches/fix-man-page-line-too-long.patch
URL: http://svn.debian.org/wsvn/trunk/libsys-syslog-perl/debian/patches/fix-man-page-line-too-long.patch?rev=7918&op=file
==============================================================================
--- trunk/libsys-syslog-perl/debian/patches/fix-man-page-line-too-long.patch (added)
+++ trunk/libsys-syslog-perl/debian/patches/fix-man-page-line-too-long.patch Mon Sep 24 06:50:44 2007
@@ -1,0 +1,72 @@
+Index: libsys-syslog-perl/Syslog.pm
+===================================================================
+--- libsys-syslog-perl.orig/Syslog.pm	2007-09-24 09:40:50.000000000 +0300
++++ libsys-syslog-perl/Syslog.pm	2007-09-24 09:48:31.000000000 +0300
+@@ -756,9 +756,14 @@
+ 
+ =head1 SYNOPSIS
+ 
+-    use Sys::Syslog;                          # all except setlogsock(), or:
+-    use Sys::Syslog qw(:DEFAULT setlogsock);  # default set, plus setlogsock()
+-    use Sys::Syslog qw(:standard :macros);    # standard functions, plus macros
++    use Sys::Syslog;
++            # all except setlogsock(), or:
++
++    use Sys::Syslog qw(:DEFAULT setlogsock);
++            # default set, plus setlogsock()
++
++    use Sys::Syslog qw(:standard :macros);
++            # standard functions, plus macros
+ 
+     openlog $ident, $logopt, $facility;       # don't forget this
+     syslog $priority, $format, @args;
+@@ -889,11 +894,13 @@
+ 
+ B<Examples>
+ 
+-    syslog("info", $message);           # informational level
+-    syslog(LOG_INFO, $message);         # informational level
+-
+-    syslog("info|local0", $message);        # information level, Local0 facility
+-    syslog(LOG_INFO|LOG_LOCAL0, $message);  # information level, Local0 facility
++    # informational level
++    syslog("info", $message);
++    syslog(LOG_INFO, $message);
++
++    # information level, Local0 facility
++    syslog("info|local0", $message);
++    syslog(LOG_INFO|LOG_LOCAL0, $message);
+ 
+ =over 4
+ 
+@@ -930,7 +937,9 @@
+ 
+ Log critical messages, errors and warnings: 
+ 
+-    setlogmask( LOG_MASK(LOG_CRIT) | LOG_MASK(LOG_ERR) | LOG_MASK(LOG_WARNING) );
++    setlogmask( LOG_MASK(LOG_CRIT)
++              | LOG_MASK(LOG_ERR)
++              | LOG_MASK(LOG_WARNING) );
+ 
+ Log all messages up to debug: 
+ 
+@@ -1324,7 +1333,8 @@
+ L<http://techpubs.sgi.com/library/tpl/cgi-bin/getdoc.cgi?coll=0640&db=man&fname=3c+syslog>
+ 
+ AIX 5L 5.3 documentation on syslog, 
+-L<http://publib.boulder.ibm.com/infocenter/pseries/v5r3/index.jsp?topic=/com.ibm.aix.basetechref/doc/basetrf2/syslog.htm>
++L<http://publib.boulder.ibm.com/infocenter/pseries/v5r3/index.jsp?
++topic=/com.ibm.aix.basetechref/doc/basetrf2/syslog.htm|http://publib.boulder.ibm.com/infocenter/pseries/v5r3/index.jsp?topic=/com.ibm.aix.basetechref/doc/basetrf2/syslog.htm>
+ 
+ HP-UX 11i documentation on syslog, 
+ L<http://docs.hp.com/en/B9106-90010/syslog.3C.html>
+@@ -1350,7 +1360,8 @@
+ =head2 Event Log
+ 
+ Windows Event Log,
+-L<http://msdn.microsoft.com/library/default.asp?url=/library/en-us/wes/wes/windows_event_log.asp>
++L<http://msdn.microsoft.com/library/default.asp?
++url=/library/en-us/wes/wes/windows_event_log.asp|http://msdn.microsoft.com/library/default.asp?url=/library/en-us/wes/wes/windows_event_log.asp>
+ 
+ 
+ =head1 AUTHORS & ACKNOWLEDGEMENTS

Modified: trunk/libsys-syslog-perl/debian/patches/series
URL: http://svn.debian.org/wsvn/trunk/libsys-syslog-perl/debian/patches/series?rev=7918&op=diff
==============================================================================
--- trunk/libsys-syslog-perl/debian/patches/series (original)
+++ trunk/libsys-syslog-perl/debian/patches/series Mon Sep 24 06:50:44 2007
@@ -1,1 +1,2 @@
 skip-test-that-needs-dev-log.dpatch
+fix-man-page-line-too-long.patch




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