r54933 - in /branches/upstream/libnet-oauth-perl/current: Changes META.yml lib/Net/OAuth.pm lib/Net/OAuth/Request.pm t/02-rsa.t

gregoa at users.alioth.debian.org gregoa at users.alioth.debian.org
Sun Mar 28 18:13:19 UTC 2010


Author: gregoa
Date: Sun Mar 28 18:12:54 2010
New Revision: 54933

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=54933
Log:
[svn-upgrade] Integrating new upstream version, libnet-oauth-perl (0.25)

Modified:
    branches/upstream/libnet-oauth-perl/current/Changes
    branches/upstream/libnet-oauth-perl/current/META.yml
    branches/upstream/libnet-oauth-perl/current/lib/Net/OAuth.pm
    branches/upstream/libnet-oauth-perl/current/lib/Net/OAuth/Request.pm
    branches/upstream/libnet-oauth-perl/current/t/02-rsa.t

Modified: branches/upstream/libnet-oauth-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnet-oauth-perl/current/Changes?rev=54933&op=diff
==============================================================================
--- branches/upstream/libnet-oauth-perl/current/Changes (original)
+++ branches/upstream/libnet-oauth-perl/current/Changes Sun Mar 28 18:12:54 2010
@@ -90,4 +90,8 @@
   Fixed https://rt.cpan.org/Ticket/Display.html?id=55635 Incorrect dependencies (thanks Jens Rehsack)
   Replaced die() with croak()
   
-  
+0.24   Sun, 21 Mar 2010 03:39:40 UTC
+  Fix test breakage in 0.23
+
+0.25   Sun, 21 Mar 2010 03:50:40 UTC
+  Gah, $VERSION lameness

Modified: branches/upstream/libnet-oauth-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnet-oauth-perl/current/META.yml?rev=54933&op=diff
==============================================================================
--- branches/upstream/libnet-oauth-perl/current/META.yml (original)
+++ branches/upstream/libnet-oauth-perl/current/META.yml Sun Mar 28 18:12:54 2010
@@ -1,6 +1,6 @@
 ---
 name: Net-OAuth
-version: 0.23
+version: 0.25
 author:
   - 'Keith Grennan <kgrennan at cpan.org>'
 abstract: An implementation of the OAuth protocol
@@ -21,7 +21,7 @@
 provides:
   Net::OAuth:
     file: lib/Net/OAuth.pm
-    version: 0.23
+    version: 0.25
   Net::OAuth::AccessTokenRequest:
     file: lib/Net/OAuth/AccessTokenRequest.pm
   Net::OAuth::AccessTokenResponse:
@@ -34,7 +34,7 @@
     file: lib/Net/OAuth/ProtectedResourceRequest.pm
   Net::OAuth::Request:
     file: lib/Net/OAuth/Request.pm
-    version: 0.23
+    version: 0.25
   Net::OAuth::RequestTokenRequest:
     file: lib/Net/OAuth/RequestTokenRequest.pm
   Net::OAuth::RequestTokenResponse:

Modified: branches/upstream/libnet-oauth-perl/current/lib/Net/OAuth.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnet-oauth-perl/current/lib/Net/OAuth.pm?rev=54933&op=diff
==============================================================================
--- branches/upstream/libnet-oauth-perl/current/lib/Net/OAuth.pm (original)
+++ branches/upstream/libnet-oauth-perl/current/lib/Net/OAuth.pm Sun Mar 28 18:12:54 2010
@@ -8,7 +8,7 @@
 
 sub OAUTH_VERSION() {'1.0'}
 
-our $VERSION = '0.23';
+our $VERSION = '0.25';
 our $SKIP_UTF8_DOUBLE_ENCODE_CHECK = 0; # this is not actually used any more
 our $PROTOCOL_VERSION = PROTOCOL_VERSION_1_0;
 

Modified: branches/upstream/libnet-oauth-perl/current/lib/Net/OAuth/Request.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnet-oauth-perl/current/lib/Net/OAuth/Request.pm?rev=54933&op=diff
==============================================================================
--- branches/upstream/libnet-oauth-perl/current/lib/Net/OAuth/Request.pm (original)
+++ branches/upstream/libnet-oauth-perl/current/lib/Net/OAuth/Request.pm Sun Mar 28 18:12:54 2010
@@ -5,7 +5,8 @@
 use URI;
 use URI::QueryParam;
 
-our $VERSION = '0.23';
+use Net::OAuth;
+our $VERSION = '0.25';
 
 __PACKAGE__->mk_classdata(required_message_params => [qw/
     consumer_key

Modified: branches/upstream/libnet-oauth-perl/current/t/02-rsa.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libnet-oauth-perl/current/t/02-rsa.t?rev=54933&op=diff
==============================================================================
--- branches/upstream/libnet-oauth-perl/current/t/02-rsa.t (original)
+++ branches/upstream/libnet-oauth-perl/current/t/02-rsa.t Sun Mar 28 18:12:54 2010
@@ -3,7 +3,6 @@
 use strict;
 use warnings;
 use Test::More tests => 2;
-use UNIVERSAL::require;
 
 use Net::OAuth::ProtectedResourceRequest;
 
@@ -15,7 +14,7 @@
 
 SKIP: {
 
-    skip "Crypt::OpenSSL::RSA not installed", 2 unless Crypt::OpenSSL::RSA->require;
+    skip "Crypt::OpenSSL::RSA not installed", 2 unless eval 'require Crypt::OpenSSL::RSA';
 
     my $publickey;
     my $privkey;




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