r29872 - in /trunk/libclone-perl: Changes Clone.pm Clone.xs META.yml debian/changelog

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Tue Jan 20 19:27:15 UTC 2009


Author: gregoa
Date: Tue Jan 20 19:27:11 2009
New Revision: 29872

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=29872
Log:
New upstream release.

Modified:
    trunk/libclone-perl/Changes
    trunk/libclone-perl/Clone.pm
    trunk/libclone-perl/Clone.xs
    trunk/libclone-perl/META.yml
    trunk/libclone-perl/debian/changelog

Modified: trunk/libclone-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libclone-perl/Changes?rev=29872&op=diff
==============================================================================
--- trunk/libclone-perl/Changes (original)
+++ trunk/libclone-perl/Changes Tue Jan 20 19:27:11 2009
@@ -1,6 +1,25 @@
 Revision history for Perl extension Clone.
 
 $Log: Changes,v $
+Revision 0.31  2009/01/20 04:54:37  ray
+Made changes for build failure on Solaris, apparently compiler warnings from the last patch are errors in Solaris.
+Also, brought Changes file up to date.
+
+Revision 0.30  2008/12/14 03:33:14  ray
+Updating log: Applied patches from RT # 40957 and #41551.
+
+Revision 0.29  2008/12/14 03:32:41  ray
+Updating log: Applied patches supplied by Andreas Koenig, see RT #34317.
+
+Revision 0.28  2008/12/14 03:31:33  ray
+Updating log: Made a change in CLONE_KEY to the way Clone stores refs in the ref hash.
+Perl no longer uses the SvANY part of the SV struct in the same way which
+meams the old way of storing the hash key is no longer unique.
+Thanks to Slaven Rezic for the patch.
+
+Revision 0.27  2008/12/14 03:30:40  ray
+Updating Log: Latest patch from Ruslan Zakirov. Patched another memory leak.
+
 Revision 0.26  2007/10/15 04:52:42  ray
 Made a change in CLONE_KEY to the way Clone stores refs in the ref hash.
 Perl no longer uses the SvANY part of the SV struct in the same way which

Modified: trunk/libclone-perl/Clone.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libclone-perl/Clone.pm?rev=29872&op=diff
==============================================================================
--- trunk/libclone-perl/Clone.pm (original)
+++ trunk/libclone-perl/Clone.pm Tue Jan 20 19:27:11 2009
@@ -1,4 +1,4 @@
-# $Id: Clone.pm,v 0.30 2008/12/12 04:01:15 ray Exp $
+# $Id: Clone.pm,v 0.31 2009/01/20 04:54:37 ray Exp $
 package Clone;
 
 use strict;
@@ -16,7 +16,7 @@
 @EXPORT = qw();
 @EXPORT_OK = qw( clone );
 
-$VERSION = '0.30';
+$VERSION = '0.31';
 
 bootstrap Clone $VERSION;
 

Modified: trunk/libclone-perl/Clone.xs
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libclone-perl/Clone.xs?rev=29872&op=diff
==============================================================================
--- trunk/libclone-perl/Clone.xs (original)
+++ trunk/libclone-perl/Clone.xs Tue Jan 20 19:27:11 2009
@@ -4,7 +4,7 @@
 #include "perl.h"
 #include "XSUB.h"
 
-static char *rcs_id = "$Id: Clone.xs,v 0.30 2008/12/12 04:00:12 ray Exp $";
+static char *rcs_id = "$Id: Clone.xs,v 0.31 2009/01/20 04:54:37 ray Exp $";
 
 #define CLONE_KEY(x) ((char *) &x) 
 
@@ -308,9 +308,9 @@
 	SV *self
 	int depth
 	PREINIT:
-	SV *    clone = &PL_sv_undef;
+	SV *clone = &PL_sv_undef;
+        HV *hseen = newHV();
 	PPCODE:
-        HV *hseen = newHV();
 	TRACEME(("ref = 0x%x\n", self));
 	clone = sv_clone(self, hseen, depth);
 	hv_clear(hseen);  /* Free HV */

Modified: trunk/libclone-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libclone-perl/META.yml?rev=29872&op=diff
==============================================================================
--- trunk/libclone-perl/META.yml (original)
+++ trunk/libclone-perl/META.yml Tue Jan 20 19:27:11 2009
@@ -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:         Clone
-version:      0.30
+version:      0.31
 version_from: Clone.pm
 installdirs:  site
 requires:

Modified: trunk/libclone-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libclone-perl/debian/changelog?rev=29872&op=diff
==============================================================================
--- trunk/libclone-perl/debian/changelog (original)
+++ trunk/libclone-perl/debian/changelog Tue Jan 20 19:27:11 2009
@@ -1,3 +1,9 @@
+libclone-perl (0.31-1) UNRELEASED; urgency=low
+
+  * New upstream release.
+
+ -- gregor herrmann <gregoa at debian.org>  Tue, 20 Jan 2009 20:24:49 +0100
+
 libclone-perl (0.30-1) unstable; urgency=low
 
   [ gregor herrmann ]




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