r60026 - in /trunk/libdigest-sha1-perl: Changes META.yml SHA1.pm SHA1.xs debian/changelog debian/control debian/copyright debian/source/ debian/source/format

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


Author: ansgar-guest
Date: Sat Jul  3 17:56:39 2010
New Revision: 60026

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=60026
Log:
* New upstream release.
* debian/control: Remove Conflicts: libdigest-md5-perl (<< 2.13).
  libdigest-md5-perl is no longer in the archive.
* debian/copyright: Formatting changes for current DEP-5 proposal.
* Use source format 3.0 (quilt).
* Bump Standards-Version to 3.9.0 (no changes).
* Add myself to Uploaders.

Added:
    trunk/libdigest-sha1-perl/debian/source/
    trunk/libdigest-sha1-perl/debian/source/format
Modified:
    trunk/libdigest-sha1-perl/Changes
    trunk/libdigest-sha1-perl/META.yml
    trunk/libdigest-sha1-perl/SHA1.pm
    trunk/libdigest-sha1-perl/SHA1.xs
    trunk/libdigest-sha1-perl/debian/changelog
    trunk/libdigest-sha1-perl/debian/control
    trunk/libdigest-sha1-perl/debian/copyright

Modified: trunk/libdigest-sha1-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdigest-sha1-perl/Changes?rev=60026&op=diff
==============================================================================
--- trunk/libdigest-sha1-perl/Changes (original)
+++ trunk/libdigest-sha1-perl/Changes Sat Jul  3 17:56:39 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: trunk/libdigest-sha1-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdigest-sha1-perl/META.yml?rev=60026&op=diff
==============================================================================
--- trunk/libdigest-sha1-perl/META.yml (original)
+++ trunk/libdigest-sha1-perl/META.yml Sat Jul  3 17:56:39 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: trunk/libdigest-sha1-perl/SHA1.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdigest-sha1-perl/SHA1.pm?rev=60026&op=diff
==============================================================================
--- trunk/libdigest-sha1-perl/SHA1.pm (original)
+++ trunk/libdigest-sha1-perl/SHA1.pm Sat Jul  3 17:56:39 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: trunk/libdigest-sha1-perl/SHA1.xs
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdigest-sha1-perl/SHA1.xs?rev=60026&op=diff
==============================================================================
--- trunk/libdigest-sha1-perl/SHA1.xs (original)
+++ trunk/libdigest-sha1-perl/SHA1.xs Sat Jul  3 17:56:39 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);
 

Modified: trunk/libdigest-sha1-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdigest-sha1-perl/debian/changelog?rev=60026&op=diff
==============================================================================
--- trunk/libdigest-sha1-perl/debian/changelog (original)
+++ trunk/libdigest-sha1-perl/debian/changelog Sat Jul  3 17:56:39 2010
@@ -1,4 +1,4 @@
-libdigest-sha1-perl (2.12-2) UNRELEASED; urgency=low
+libdigest-sha1-perl (2.13-1) unstable; urgency=low
 
   [ Nathan Handler ]
   * debian/watch: Update to ignore development releases.
@@ -6,7 +6,16 @@
   [ Ryan Niebur ]
   * Update ryan52's email address
 
- -- Ryan Niebur <ryan at debian.org>  Fri, 25 Sep 2009 00:24:40 -0700
+  [ Ansgar Burchardt ]
+  * New upstream release.
+  * debian/control: Remove Conflicts: libdigest-md5-perl (<< 2.13).
+    libdigest-md5-perl is no longer in the archive.
+  * debian/copyright: Formatting changes for current DEP-5 proposal.
+  * Use source format 3.0 (quilt).
+  * Bump Standards-Version to 3.9.0 (no changes).
+  * Add myself to Uploaders.
+
+ -- Ansgar Burchardt <ansgar at 43-1.org>  Sun, 04 Jul 2010 02:54:56 +0900
 
 libdigest-sha1-perl (2.12-1) unstable; urgency=low
 

Modified: trunk/libdigest-sha1-perl/debian/control
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdigest-sha1-perl/debian/control?rev=60026&op=diff
==============================================================================
--- trunk/libdigest-sha1-perl/debian/control (original)
+++ trunk/libdigest-sha1-perl/debian/control Sat Jul  3 17:56:39 2010
@@ -3,9 +3,9 @@
 Priority: optional
 Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
 Uploaders: Zak B. Elep <zakame at spunge.org>, Gunnar Wolf <gwolf at debian.org>,
- Ryan Niebur <ryan at debian.org>
+ Ryan Niebur <ryan at debian.org>, Ansgar Burchardt <ansgar at 43-1.org>
 Build-Depends: debhelper (>= 7)
-Standards-Version: 3.8.1
+Standards-Version: 3.9.0
 Homepage: http://search.cpan.org/dist/Digest-SHA1/
 Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libdigest-sha1-perl/
 Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libdigest-sha1-perl/
@@ -13,7 +13,6 @@
 Package: libdigest-sha1-perl
 Architecture: any
 Depends: ${misc:Depends}, ${perl:Depends}, ${shlibs:Depends}
-Conflicts: libdigest-md5-perl (<< 2.13)
 Description: NIST SHA-1 message digest algorithm
  The Digest::SHA1 module allows you to use the NIST SHA-1 message
  digest algorithm from within Perl programs.  The algorithm takes as

Modified: trunk/libdigest-sha1-perl/debian/copyright
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdigest-sha1-perl/debian/copyright?rev=60026&op=diff
==============================================================================
--- trunk/libdigest-sha1-perl/debian/copyright (original)
+++ trunk/libdigest-sha1-perl/debian/copyright Sat Jul  3 17:56:39 2010
@@ -1,14 +1,12 @@
-Format-Specification:
-    http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196
-Upstream-Maintainer: Gisle Aas <gisle at activestate.com>
-Upstream-Source: http://search.cpan.org/dist/Digest-SHA1/
-Upstream-Name: Digest-SHA1
+Format-Specification: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=135
+Maintainer: Gisle Aas <gisle at activestate.com>
+Source: http://search.cpan.org/dist/Digest-SHA1/
+Name: Digest-SHA1
 
-Files: *
-Copyright: Copyright 1999-2004 Gisle Aas.
- Copyright 1997 Uwe Hollerbach.
-License-Alias: Perl
-License: Artistic | GPL-1+
+Copyright: 
+ 1999-2004, Gisle Aas
+ 1997,      Uwe Hollerbach
+License: Artistic or GPL-1+
 
 Files: debian/*
 Copyright: 2001, Michael Alan Dorman <mdorman at debian.org>
@@ -18,7 +16,7 @@
  2006, Gunnar Wolf <gwolf at debian.org>
  2006, Zak B. Elep <zakame at spunge.org>
  2009, Ryan Niebur <ryan at debian.org>
-License: Artistic | GPL-1+
+License: Artistic or GPL-1+
 
 License: Artistic
     This program is free software; you can redistribute it and/or modify

Added: trunk/libdigest-sha1-perl/debian/source/format
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libdigest-sha1-perl/debian/source/format?rev=60026&op=file
==============================================================================
--- trunk/libdigest-sha1-perl/debian/source/format (added)
+++ trunk/libdigest-sha1-perl/debian/source/format Sat Jul  3 17:56:39 2010
@@ -1,0 +1,1 @@
+3.0 (quilt)




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