r60024 - in /branches/upstream/libdigest-sha1-perl/current: Changes META.yml SHA1.pm SHA1.xs

ansgar-guest at users.alioth.debian.org ansgar-guest at users.alioth.debian.org
Sat Jul 3 17:46:45 UTC 2010


Author: ansgar-guest
Date: Sat Jul  3 17:46:40 2010
New Revision: 60024

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=60024
Log:
[svn-upgrade] new version libdigest-sha1-perl (2.13)

Modified:
    branches/upstream/libdigest-sha1-perl/current/Changes
    branches/upstream/libdigest-sha1-perl/current/META.yml
    branches/upstream/libdigest-sha1-perl/current/SHA1.pm
    branches/upstream/libdigest-sha1-perl/current/SHA1.xs

Modified: branches/upstream/libdigest-sha1-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdigest-sha1-perl/current/Changes?rev=60024&op=diff
==============================================================================
--- branches/upstream/libdigest-sha1-perl/current/Changes (original)
+++ branches/upstream/libdigest-sha1-perl/current/Changes Sat Jul  3 17:46:40 2010
@@ -1,3 +1,10 @@
+2010-07-03   Release 2.13
+
+    Mike McCauley (1):
+          Fix memory leak in sha1_transform
+
+
+
 2009-05-23   Release 2.12
 
     Gisle Aas (6):
@@ -46,7 +53,7 @@
    Enable PERL_NO_GET_CONTEXT for more more efficient execution
    on a threaded perl.
 
-   Fix up md5 references.  Patch by Ville Skyttä <ville.skytta at iki.fi>.
+   Fix up md5 references.  Patch by Ville Skyttä <ville.skytta at iki.fi>.
 
 
 
@@ -162,7 +169,7 @@
    
    The fallback code introduced in 2.10 did only work for
    perl-5.6.0.  It should now for for perl5.004 and 5.005
-   as well.  Patch by Ville Skyttä <ville at office.popsystems.com>.
+   as well.  Patch by Ville Skyttä <ville at office.popsystems.com>.
 
 
 

Modified: branches/upstream/libdigest-sha1-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdigest-sha1-perl/current/META.yml?rev=60024&op=diff
==============================================================================
--- branches/upstream/libdigest-sha1-perl/current/META.yml (original)
+++ branches/upstream/libdigest-sha1-perl/current/META.yml Sat Jul  3 17:46:40 2010
@@ -1,12 +1,14 @@
 --- #YAML:1.0
 name:               Digest-SHA1
-version:            2.12
+version:            2.13
 abstract:           Perl interface to the SHA-1 algorithm
 author:
     - Gisle Aas <gisle at activestate.com>
 license:            perl
 distribution_type:  module
 configure_requires:
+    ExtUtils::MakeMaker:  0
+build_requires:
     ExtUtils::MakeMaker:  0
 requires:
     Digest::base:  1.00
@@ -15,7 +17,7 @@
     directory:
         - t
         - inc
-generated_by:       ExtUtils::MakeMaker version 6.4801
+generated_by:       ExtUtils::MakeMaker version 6.56
 meta-spec:
     url:      http://module-build.sourceforge.net/META-spec-v1.4.html
     version:  1.4

Modified: branches/upstream/libdigest-sha1-perl/current/SHA1.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdigest-sha1-perl/current/SHA1.pm?rev=60024&op=diff
==============================================================================
--- branches/upstream/libdigest-sha1-perl/current/SHA1.pm (original)
+++ branches/upstream/libdigest-sha1-perl/current/SHA1.pm Sat Jul  3 17:46:40 2010
@@ -3,7 +3,7 @@
 use strict;
 use vars qw($VERSION @ISA @EXPORT_OK);
 
-$VERSION = '2.12';
+$VERSION = '2.13';
 
 require Exporter;
 *import = \&Exporter::import;

Modified: branches/upstream/libdigest-sha1-perl/current/SHA1.xs
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdigest-sha1-perl/current/SHA1.xs?rev=60024&op=diff
==============================================================================
--- branches/upstream/libdigest-sha1-perl/current/SHA1.xs (original)
+++ branches/upstream/libdigest-sha1-perl/current/SHA1.xs Sat Jul  3 17:46:40 2010
@@ -617,6 +617,6 @@
         memcpy (test, data_pv, len);
 	memcpy ((&ctx)->data, test, 64);
         sha_transform_and_copy(digeststr, &ctx);
-        ST(0) = newSVpv((char*)digeststr, 20);
+        ST(0) = sv_2mortal(newSVpv((char*)digeststr, 20));
         XSRETURN(1);
 




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