r67122 - in /branches/upstream/libwww-mechanize-shell-perl/current: Changes META.yml Makefile.PL lib/WWW/Mechanize/Shell.pm t/25-save-file-nolink.t

angelabad-guest at users.alioth.debian.org angelabad-guest at users.alioth.debian.org
Fri Jan 7 08:54:58 UTC 2011


Author: angelabad-guest
Date: Fri Jan  7 08:54:40 2011
New Revision: 67122

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=67122
Log:
[svn-upgrade] new version libwww-mechanize-shell-perl (0.52)

Modified:
    branches/upstream/libwww-mechanize-shell-perl/current/Changes
    branches/upstream/libwww-mechanize-shell-perl/current/META.yml
    branches/upstream/libwww-mechanize-shell-perl/current/Makefile.PL
    branches/upstream/libwww-mechanize-shell-perl/current/lib/WWW/Mechanize/Shell.pm
    branches/upstream/libwww-mechanize-shell-perl/current/t/25-save-file-nolink.t

Modified: branches/upstream/libwww-mechanize-shell-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libwww-mechanize-shell-perl/current/Changes?rev=67122&op=diff
==============================================================================
--- branches/upstream/libwww-mechanize-shell-perl/current/Changes (original)
+++ branches/upstream/libwww-mechanize-shell-perl/current/Changes Fri Jan  7 08:54:40 2011
@@ -10,6 +10,17 @@
     from Web::Scraper.
   + There is a memory leak between ::FormFiller and ::Shell
   + Ditch Hook::LexWrap now that LWP::UserAgent has progress callbacks
+  + Add set-cookie and delete-cookie commands
+  + Add (optional) HTTP::Cookies::Find support
+
+0.52 20110106
+  . Fix stupid thinko in test (only affects tests on 5.13+)
+
+0.51 20110105
+  . Make a test more robust against 5.14
+  . Streamlined Exporter.pm usage
+  . Rely on parent.pm instead of base.pm
+  . No need to upgrade
 
 0.50 20100821
   . Remove test file that was just testing LWP functionality and that

Modified: branches/upstream/libwww-mechanize-shell-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libwww-mechanize-shell-perl/current/META.yml?rev=67122&op=diff
==============================================================================
--- branches/upstream/libwww-mechanize-shell-perl/current/META.yml (original)
+++ branches/upstream/libwww-mechanize-shell-perl/current/META.yml Fri Jan  7 08:54:40 2011
@@ -1,6 +1,6 @@
 --- #YAML:1.0
 name:               WWW-Mechanize-Shell
-version:            0.50
+version:            0.52
 abstract:           An interactive shell for WWW::Mechanize
 author:
     - Max Maischein <corion at cpan.org>
@@ -15,6 +15,7 @@
     HTML::Display:        0
     HTML::TokeParser::Simple:  2
     LWP:                  5.69
+    parent:               0
     Term::Shell:          0.02
     Test::Harness:        2.3
     URI::URL:             0

Modified: branches/upstream/libwww-mechanize-shell-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libwww-mechanize-shell-perl/current/Makefile.PL?rev=67122&op=diff
==============================================================================
--- branches/upstream/libwww-mechanize-shell-perl/current/Makefile.PL (original)
+++ branches/upstream/libwww-mechanize-shell-perl/current/Makefile.PL Fri Jan  7 08:54:40 2011
@@ -5,6 +5,7 @@
     'NAME'    => 'WWW::Mechanize::Shell',
     'VERSION_FROM'  => 'lib/WWW/Mechanize/Shell.pm', # finds $VERSION
     'PREREQ_PM'    => {'Term::Shell' => 0.02,
+                       'parent' => 0,
 		       'URI::URL' => 0.00,
 		       'Test::Harness' => 2.30,
                        'LWP' => 5.69,

Modified: branches/upstream/libwww-mechanize-shell-perl/current/lib/WWW/Mechanize/Shell.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libwww-mechanize-shell-perl/current/lib/WWW/Mechanize/Shell.pm?rev=67122&op=diff
==============================================================================
--- branches/upstream/libwww-mechanize-shell-perl/current/lib/WWW/Mechanize/Shell.pm (original)
+++ branches/upstream/libwww-mechanize-shell-perl/current/lib/WWW/Mechanize/Shell.pm Fri Jan  7 08:54:40 2011
@@ -5,7 +5,8 @@
 use WWW::Mechanize;
 use WWW::Mechanize::FormFiller;
 use HTTP::Cookies;
-use base qw( Term::Shell Exporter );
+use parent qw( Term::Shell );
+use Exporter 'import';
 use FindBin;
 use File::Temp qw(tempfile);
 use URI::URL;
@@ -15,7 +16,7 @@
 use B::Deparse;
 
 use vars qw( $VERSION @EXPORT %munge_map );
-$VERSION = '0.50';
+$VERSION = '0.52';
 @EXPORT = qw( &shell );
 
 =head1 NAME

Modified: branches/upstream/libwww-mechanize-shell-perl/current/t/25-save-file-nolink.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libwww-mechanize-shell-perl/current/t/25-save-file-nolink.t?rev=67122&op=diff
==============================================================================
--- branches/upstream/libwww-mechanize-shell-perl/current/t/25-save-file-nolink.t (original)
+++ branches/upstream/libwww-mechanize-shell-perl/current/t/25-save-file-nolink.t Fri Jan  7 08:54:40 2011
@@ -36,7 +36,7 @@
   $_STDERR_ = undef;
   
   $s->cmd("save /does-not-exist/");
-  is($_STDOUT_,"No match for /(?-xism:does-not-exist)/.\n","save RE error message");
+  like($_STDOUT_,'/No match for \/\(\?(-xism|\^):does-not-exist\)\/.\n/',"save RE error message");
   is($_STDERR_,undef,"No warnings");
 };
 




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