r50724 - in /branches/upstream/libdigest-hmac-perl/current: Changes MANIFEST META.yml Makefile.PL lib/Digest/HMAC.pm
jawnsy-guest at users.alioth.debian.org
jawnsy-guest at users.alioth.debian.org
Mon Jan 11 17:59:50 UTC 2010
Author: jawnsy-guest
Date: Mon Jan 11 17:59:44 2010
New Revision: 50724
URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=50724
Log:
[svn-upgrade] Integrating new upstream version, libdigest-hmac-perl-dfsg (1.02)
Added:
branches/upstream/libdigest-hmac-perl/current/META.yml
Modified:
branches/upstream/libdigest-hmac-perl/current/Changes
branches/upstream/libdigest-hmac-perl/current/MANIFEST
branches/upstream/libdigest-hmac-perl/current/Makefile.PL
branches/upstream/libdigest-hmac-perl/current/lib/Digest/HMAC.pm
Modified: branches/upstream/libdigest-hmac-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdigest-hmac-perl/current/Changes?rev=50724&op=diff
==============================================================================
--- branches/upstream/libdigest-hmac-perl/current/Changes (original)
+++ branches/upstream/libdigest-hmac-perl/current/Changes Mon Jan 11 17:59:44 2010
@@ -1,3 +1,11 @@
+2010-01-10 Gisle Aas <gisle at ActiveState.com>
+
+ Release 1.02
+
+ Give the distribution a META.yml file
+
+
+
2000-03-13 Gisle Aas <gisle at ActiveState.com>
Release 1.01
Modified: branches/upstream/libdigest-hmac-perl/current/MANIFEST
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdigest-hmac-perl/current/MANIFEST?rev=50724&op=diff
==============================================================================
--- branches/upstream/libdigest-hmac-perl/current/MANIFEST (original)
+++ branches/upstream/libdigest-hmac-perl/current/MANIFEST Mon Jan 11 17:59:44 2010
@@ -5,5 +5,5 @@
lib/Digest/HMAC.pm
lib/Digest/HMAC_MD5.pm
lib/Digest/HMAC_SHA1.pm
-rfc2104.txt
t/rfc2202.t
+META.yml Module meta-data (added by MakeMaker)
Added: branches/upstream/libdigest-hmac-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdigest-hmac-perl/current/META.yml?rev=50724&op=file
==============================================================================
--- branches/upstream/libdigest-hmac-perl/current/META.yml (added)
+++ branches/upstream/libdigest-hmac-perl/current/META.yml Mon Jan 11 17:59:44 2010
@@ -1,0 +1,24 @@
+--- #YAML:1.0
+name: Digest-HMAC
+version: 1.02
+abstract: Keyed-Hashing for Message Authentication
+author:
+ - Gisle Aas <gisle at activestate.com>
+license: perl
+distribution_type: module
+configure_requires:
+ ExtUtils::MakeMaker: 0
+build_requires:
+ ExtUtils::MakeMaker: 0
+requires:
+ Digest::MD5: 2
+ Digest::SHA1: 1
+ perl: 5.004
+no_index:
+ directory:
+ - t
+ - inc
+generated_by: ExtUtils::MakeMaker version 6.55_02
+meta-spec:
+ url: http://module-build.sourceforge.net/META-spec-v1.4.html
+ version: 1.4
Modified: branches/upstream/libdigest-hmac-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdigest-hmac-perl/current/Makefile.PL?rev=50724&op=diff
==============================================================================
--- branches/upstream/libdigest-hmac-perl/current/Makefile.PL (original)
+++ branches/upstream/libdigest-hmac-perl/current/Makefile.PL Mon Jan 11 17:59:44 2010
@@ -4,8 +4,34 @@
WriteMakefile(
'NAME' => 'Digest::HMAC',
'VERSION_FROM' => 'lib/Digest/HMAC.pm',
+ 'ABSTRACT_FROM' => 'lib/Digest/HMAC.pm',
'PREREQ_PM' => { 'Digest::MD5' => 2.00,
'Digest::SHA1' => 1.00,
},
- 'dist' => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
+ 'AUTHOR' => 'Gisle Aas <gisle at activestate.com>',
+ 'LICENSE' => 'perl',
+ 'MIN_PERL_VERSION' => 5.004,
);
+
+
+BEGIN {
+ # compatibility with older versions of MakeMaker
+ my $developer = -f ".gitignore";
+ my %mm_req = (
+ LICENCE => 6.31,
+ META_MERGE => 6.45,
+ META_ADD => 6.45,
+ MIN_PERL_VERSION => 6.48,
+ );
+ undef(*WriteMakefile);
+ *WriteMakefile = sub {
+ my %arg = @_;
+ for (keys %mm_req) {
+ unless (eval { ExtUtils::MakeMaker->VERSION($mm_req{$_}) }) {
+ warn "$_ $@" if $developer;
+ delete $arg{$_};
+ }
+ }
+ ExtUtils::MakeMaker::WriteMakefile(%arg);
+ };
+}
Modified: branches/upstream/libdigest-hmac-perl/current/lib/Digest/HMAC.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libdigest-hmac-perl/current/lib/Digest/HMAC.pm?rev=50724&op=diff
==============================================================================
--- branches/upstream/libdigest-hmac-perl/current/lib/Digest/HMAC.pm (original)
+++ branches/upstream/libdigest-hmac-perl/current/lib/Digest/HMAC.pm Mon Jan 11 17:59:44 2010
@@ -1,5 +1,5 @@
package Digest::HMAC;
-$VERSION = "1.01";
+$VERSION = "1.02";
use strict;
More information about the Pkg-perl-cvs-commits
mailing list