r20409 - in /trunk/libunix-syslog-perl: Changes META.yml Makefile.PL Syslog.pm Syslog.xs debian/changelog debian/control test.pl
gwolf at users.alioth.debian.org
gwolf at users.alioth.debian.org
Sun May 25 19:51:41 UTC 2008
Author: gwolf
Date: Sun May 25 19:51:41 2008
New Revision: 20409
URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=20409
Log:
New upstream version
Modified:
trunk/libunix-syslog-perl/Changes
trunk/libunix-syslog-perl/META.yml
trunk/libunix-syslog-perl/Makefile.PL
trunk/libunix-syslog-perl/Syslog.pm
trunk/libunix-syslog-perl/Syslog.xs
trunk/libunix-syslog-perl/debian/changelog
trunk/libunix-syslog-perl/debian/control
trunk/libunix-syslog-perl/test.pl
Modified: trunk/libunix-syslog-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libunix-syslog-perl/Changes?rev=20409&op=diff
==============================================================================
--- trunk/libunix-syslog-perl/Changes (original)
+++ trunk/libunix-syslog-perl/Changes Sun May 25 19:51:41 2008
@@ -1,6 +1,16 @@
-*- mode: text -*-
Revision history for Perl extension Unix::Syslog.
+1.1 Sun May 18 21:13:38 2007
+ - Released version 1.1.
+
+ - Clearly marked MSWin32 systems as unsupported. (How do
+ 64bit Windows system identify themselves?)
+
+ - Fixed bug that caused Perl to segfault when closelog() was
+ called before openlog().
+
+
1.0 Tue Oct 2 22:22:43 2007
- Bumped version number to 1.0.
Modified: trunk/libunix-syslog-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libunix-syslog-perl/META.yml?rev=20409&op=diff
==============================================================================
--- trunk/libunix-syslog-perl/META.yml (original)
+++ trunk/libunix-syslog-perl/META.yml Sun May 25 19:51:41 2008
@@ -1,7 +1,7 @@
# http://module-build.sourceforge.net/META-spec.html
#XXXXXXX This is a prototype!!! It will change in the future!!! XXXXX#
name: Unix-Syslog
-version: 1.0
+version: 1.1
version_from: Syslog.pm
installdirs: site
requires:
Modified: trunk/libunix-syslog-perl/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libunix-syslog-perl/Makefile.PL?rev=20409&op=diff
==============================================================================
--- trunk/libunix-syslog-perl/Makefile.PL (original)
+++ trunk/libunix-syslog-perl/Makefile.PL Sun May 25 19:51:41 2008
@@ -1,4 +1,7 @@
use ExtUtils::MakeMaker;
+
+die 'OS unsupported' if ($^O eq 'MSWin32');
+
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
Modified: trunk/libunix-syslog-perl/Syslog.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libunix-syslog-perl/Syslog.pm?rev=20409&op=diff
==============================================================================
--- trunk/libunix-syslog-perl/Syslog.pm (original)
+++ trunk/libunix-syslog-perl/Syslog.pm Sun May 25 19:51:41 2008
@@ -1,4 +1,4 @@
-# $Id: Syslog.pm,v 1.11 2007/10/03 14:07:41 marcus Exp $
+# $Id: Syslog.pm,v 1.12 2008/05/18 19:26:54 marcus Exp $
#
# Copyright (c) 1999,2000,2001,2002,2007 Marcus Harnisch <marcus.harnisch at gmx.net>
#
@@ -44,7 +44,7 @@
"subs" => [qw(closelog openlog syslog setlogmask priorityname
facilityname)]);
-$VERSION = '1.0';
+$VERSION = '1.1';
bootstrap Unix::Syslog $VERSION;
Modified: trunk/libunix-syslog-perl/Syslog.xs
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libunix-syslog-perl/Syslog.xs?rev=20409&op=diff
==============================================================================
--- trunk/libunix-syslog-perl/Syslog.xs (original)
+++ trunk/libunix-syslog-perl/Syslog.xs Sun May 25 19:51:41 2008
@@ -10,11 +10,11 @@
#include <syslog.h>
-static SV *ident_svptr;
+static SV *ident_svptr = NULL;
MODULE = Unix::Syslog PACKAGE = Unix::Syslog
- # $Id: Syslog.xs,v 1.7 2007/10/03 14:07:41 marcus Exp $
+ # $Id: Syslog.xs,v 1.8 2008/05/18 13:40:47 marcus Exp $
#
# Copyright (c) 1999,2000,2001,2002,2007 Marcus Harnisch <marcus.harnisch at gmx.net>
#
@@ -259,4 +259,4 @@
closelog()
CODE:
closelog();
- if (SvREFCNT(ident_svptr)) SvREFCNT_dec(ident_svptr);
+ if ((ident_svptr != NULL) && SvREFCNT(ident_svptr)) SvREFCNT_dec(ident_svptr);
Modified: trunk/libunix-syslog-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libunix-syslog-perl/debian/changelog?rev=20409&op=diff
==============================================================================
--- trunk/libunix-syslog-perl/debian/changelog (original)
+++ trunk/libunix-syslog-perl/debian/changelog Sun May 25 19:51:41 2008
@@ -1,10 +1,17 @@
-libunix-syslog-perl (1.0-3) UNRELEASED; urgency=low
+libunix-syslog-perl (1.1-1) UNRELEASED; urgency=low
+
+ * New upstream release
+
+ [ Jonas Smedegaard ]
* Bump debhelper compat level and build-dependency to version 5.
* Semi-auto-update debian/control to apply changes contained in the above:
DEB_AUTO_UPDATE_DEBIAN_CONTROL=yes fakeroot debian/rules clean
+
+ [ Gunnar Wolf ]
+ * Added myself to uploaders
- -- Jonas Smedegaard <dr at jones.dk> Wed, 19 Mar 2008 02:46:04 +0100
+ -- Gunnar Wolf <gwolf at debian.org> Sun, 25 May 2008 14:50:15 -0500
libunix-syslog-perl (1.0-2) unstable; urgency=low
Modified: trunk/libunix-syslog-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libunix-syslog-perl/debian/control?rev=20409&op=diff
==============================================================================
--- trunk/libunix-syslog-perl/debian/control (original)
+++ trunk/libunix-syslog-perl/debian/control Sun May 25 19:51:41 2008
@@ -3,7 +3,7 @@
Priority: optional
Build-Depends: cdbs (>= 0.4.39), devscripts (>= 2.10.7), dh-buildinfo, debhelper (>= 5), perl (>= 5.6.0-16)
Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
-Uploaders: Jonas Smedegaard <dr at jones.dk>
+Uploaders: Jonas Smedegaard <dr at jones.dk>, Gunnar Wolf <gwolf at debian.org>
Standards-Version: 3.7.3
Vcs-Svn: svn://svn.debian.org/collab-maint/deb-maint/libunix-syslog-perl/trunk
Vcs-Browser: http://svn.debian.org/wsvn/collab-maint/deb-maint/libunix-syslog-perl/trunk
Modified: trunk/libunix-syslog-perl/test.pl
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libunix-syslog-perl/test.pl?rev=20409&op=diff
==============================================================================
--- trunk/libunix-syslog-perl/test.pl (original)
+++ trunk/libunix-syslog-perl/test.pl Sun May 25 19:51:41 2008
@@ -154,6 +154,10 @@
return $name;
}
+print "Calling closelog() without preceeding openlog() ";
+closelog;
+print "ok\n"; # if we got this far, things must have worked right.
+
print "openlog\n";
openlog(basename($0), LOG_PID, LOG_LOCAL7);
More information about the Pkg-perl-cvs-commits
mailing list