r49560 - in /branches/upstream/libwww-freshmeat-perl/current: Changes META.yml lib/WWW/Freshmeat.pm lib/WWW/Freshmeat/Project.pm lib/WWW/Freshmeat/Project/URL.pm lib/WWW/Freshmeat/User.pm

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Wed Dec 30 17:42:10 UTC 2009


Author: jawnsy-guest
Date: Wed Dec 30 17:42:05 2009
New Revision: 49560

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=49560
Log:
[svn-upgrade] Integrating new upstream version, libwww-freshmeat-perl (0.21)

Modified:
    branches/upstream/libwww-freshmeat-perl/current/Changes
    branches/upstream/libwww-freshmeat-perl/current/META.yml
    branches/upstream/libwww-freshmeat-perl/current/lib/WWW/Freshmeat.pm
    branches/upstream/libwww-freshmeat-perl/current/lib/WWW/Freshmeat/Project.pm
    branches/upstream/libwww-freshmeat-perl/current/lib/WWW/Freshmeat/Project/URL.pm
    branches/upstream/libwww-freshmeat-perl/current/lib/WWW/Freshmeat/User.pm

Modified: branches/upstream/libwww-freshmeat-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libwww-freshmeat-perl/current/Changes?rev=49560&op=diff
==============================================================================
--- branches/upstream/libwww-freshmeat-perl/current/Changes (original)
+++ branches/upstream/libwww-freshmeat-perl/current/Changes Wed Dec 30 17:42:05 2009
@@ -1,4 +1,7 @@
 Revision history for WWW-Freshmeat
+
+0.21    2009-12-29
+        - redir_url will return string, not an URI object
 
 0.20    2009-11-08
         - Updates for new API

Modified: branches/upstream/libwww-freshmeat-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libwww-freshmeat-perl/current/META.yml?rev=49560&op=diff
==============================================================================
--- branches/upstream/libwww-freshmeat-perl/current/META.yml (original)
+++ branches/upstream/libwww-freshmeat-perl/current/META.yml Wed Dec 30 17:42:05 2009
@@ -1,6 +1,6 @@
 ---
 name: WWW-Freshmeat
-version: 0.20
+version: 0.21
 author:
   - 'Alexandr Ciornii <alexchorny at gmail.com>'
 abstract: automates usage of Freshmeat.net
@@ -21,15 +21,16 @@
 provides:
   WWW::Freshmeat:
     file: lib/WWW/Freshmeat.pm
-    version: 0.20
+    version: 0.21
   WWW::Freshmeat::Project:
     file: lib/WWW/Freshmeat/Project.pm
-    version: 0.01
+    version: 0.21
   WWW::Freshmeat::Project::URL:
     file: lib/WWW/Freshmeat/Project/URL.pm
+    version: 0.21
   WWW::Freshmeat::User:
     file: lib/WWW/Freshmeat/User.pm
-    version: 0.01
+    version: 0.21
 generated_by: Module::Build version 0.33
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html

Modified: branches/upstream/libwww-freshmeat-perl/current/lib/WWW/Freshmeat.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libwww-freshmeat-perl/current/lib/WWW/Freshmeat.pm?rev=49560&op=diff
==============================================================================
--- branches/upstream/libwww-freshmeat-perl/current/lib/WWW/Freshmeat.pm (original)
+++ branches/upstream/libwww-freshmeat-perl/current/lib/WWW/Freshmeat.pm Wed Dec 30 17:42:05 2009
@@ -14,7 +14,7 @@
 
 =cut
 
-our $VERSION = '0.20';
+our $VERSION = '0.21';
 
 use XML::Simple qw();
 use WWW::Freshmeat::Project;
@@ -143,7 +143,7 @@
           local $URI::ABS_ALLOW_RELATIVE_SCHEME = 1;
           my $base = $response->base;
           $referral_uri = $HTTP::URI_CLASS->new($referral_uri, $base)
-                      ->abs($base);
+                      ->abs($base)->as_string;
       }
       return $referral_uri;
     } else {

Modified: branches/upstream/libwww-freshmeat-perl/current/lib/WWW/Freshmeat/Project.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libwww-freshmeat-perl/current/lib/WWW/Freshmeat/Project.pm?rev=49560&op=diff
==============================================================================
--- branches/upstream/libwww-freshmeat-perl/current/lib/WWW/Freshmeat/Project.pm (original)
+++ branches/upstream/libwww-freshmeat-perl/current/lib/WWW/Freshmeat/Project.pm Wed Dec 30 17:42:05 2009
@@ -7,7 +7,7 @@
 use Carp;
 
 
-our $VERSION = '0.01';
+our $VERSION = '0.21';
 
 sub new {
     my $proto = shift;
@@ -62,7 +62,7 @@
 }
 
 sub trove_id { 
-  croak "removed";
+  croak "method was removed";
   #$_[0]{descriminators}{trove_id}
 }
 

Modified: branches/upstream/libwww-freshmeat-perl/current/lib/WWW/Freshmeat/Project/URL.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libwww-freshmeat-perl/current/lib/WWW/Freshmeat/Project/URL.pm?rev=49560&op=diff
==============================================================================
--- branches/upstream/libwww-freshmeat-perl/current/lib/WWW/Freshmeat/Project/URL.pm (original)
+++ branches/upstream/libwww-freshmeat-perl/current/lib/WWW/Freshmeat/Project/URL.pm Wed Dec 30 17:42:05 2009
@@ -1,6 +1,9 @@
 package WWW::Freshmeat::Project::URL;
 use Mouse;
 use Carp;
+
+our $VERSION = '0.21';
+
 has 'url' => (is => 'rw', isa => 'Str', 'builder'=>'_find_url','lazy'=>1);
 has 'label' => (is => 'rw', isa => 'Str',required=>1);
 has 'redirector' => (is => 'rw', isa => 'Str');

Modified: branches/upstream/libwww-freshmeat-perl/current/lib/WWW/Freshmeat/User.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libwww-freshmeat-perl/current/lib/WWW/Freshmeat/User.pm?rev=49560&op=diff
==============================================================================
--- branches/upstream/libwww-freshmeat-perl/current/lib/WWW/Freshmeat/User.pm (original)
+++ branches/upstream/libwww-freshmeat-perl/current/lib/WWW/Freshmeat/User.pm Wed Dec 30 17:42:05 2009
@@ -5,7 +5,7 @@
 use WWW::Freshmeat ();
 use Carp;
 
-our $VERSION = '0.01';
+our $VERSION = '0.21';
 
 sub init_html {
     croak "removed";




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