r50591 - in /trunk/libipc-system-simple-perl: Changes debian/changelog lib/IPC/System/Simple.pm t/win32.t

jawnsy-guest at users.alioth.debian.org jawnsy-guest at users.alioth.debian.org
Sat Jan 9 18:17:27 UTC 2010


Author: jawnsy-guest
Date: Sat Jan  9 18:17:19 2010
New Revision: 50591

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=50591
Log:
IGNORE-VERSION: 1.20-1

Modified:
    trunk/libipc-system-simple-perl/Changes
    trunk/libipc-system-simple-perl/debian/changelog
    trunk/libipc-system-simple-perl/lib/IPC/System/Simple.pm
    trunk/libipc-system-simple-perl/t/win32.t

Modified: trunk/libipc-system-simple-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libipc-system-simple-perl/Changes?rev=50591&op=diff
==============================================================================
--- trunk/libipc-system-simple-perl/Changes (original)
+++ trunk/libipc-system-simple-perl/Changes Sat Jan  9 18:17:19 2010
@@ -1,6 +1,13 @@
 Revision history for Perl extension IPC::System::Simple.
 
-1.19  Fri Dec  4 14:14:25 EST 2009
+1.20  Sat Jan  9 15:08:41 AUSEST 2010
+
+        * TEST: t/win32.t no longer claims to have more tests than
+          it really has.  This fixes an install issue under Windows.
+          RT #53124.  Thanks to Erez Schatz and Curtis Jewell for
+          spotting this.
+
+1.19  Fri Dec  4 14:14:25 AUSEST 2009
 
         * TEST: Added tests to ensure correct behaviour when
           calling commands in Windows which are contained in directories

Modified: trunk/libipc-system-simple-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libipc-system-simple-perl/debian/changelog?rev=50591&op=diff
==============================================================================
--- trunk/libipc-system-simple-perl/debian/changelog (original)
+++ trunk/libipc-system-simple-perl/debian/changelog Sat Jan  9 18:17:19 2010
@@ -1,7 +1,7 @@
-libipc-system-simple-perl (1.19-1) UNRELEASED; urgency=low
+libipc-system-simple-perl (1.20-1) UNRELEASED; urgency=low
 
   Fixes only affecting Win32
-  IGNORE-VERSION: 1.19-1
+  IGNORE-VERSION: 1.20-1
 
   [ Jonathan Yu ]
   * New upstream release
@@ -18,7 +18,7 @@
     perl (>= 5.6.0-{12,16}) with an unversioned dependency on perl (as
     permitted by Debian Policy 3.8.3).
 
- -- Jonathan Yu <jawnsy at cpan.org>  Fri, 04 Dec 2009 06:02:51 -0500
+ -- Jonathan Yu <jawnsy at cpan.org>  Sat, 09 Jan 2010 13:19:36 -0500
 
 libipc-system-simple-perl (1.18-1) unstable; urgency=low
 

Modified: trunk/libipc-system-simple-perl/lib/IPC/System/Simple.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libipc-system-simple-perl/lib/IPC/System/Simple.pm?rev=50591&op=diff
==============================================================================
--- trunk/libipc-system-simple-perl/lib/IPC/System/Simple.pm (original)
+++ trunk/libipc-system-simple-perl/lib/IPC/System/Simple.pm Sat Jan  9 18:17:19 2010
@@ -84,7 +84,7 @@
     $EXITVAL EXIT_ANY
 );
 
-our $VERSION = '1.19';
+our $VERSION = '1.20';
 our $EXITVAL = -1;
 
 my @Signal_from_number = split(' ', $Config{sig_name});

Modified: trunk/libipc-system-simple-perl/t/win32.t
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libipc-system-simple-perl/t/win32.t?rev=50591&op=diff
==============================================================================
--- trunk/libipc-system-simple-perl/t/win32.t (original)
+++ trunk/libipc-system-simple-perl/t/win32.t Sat Jan  9 18:17:19 2010
@@ -27,7 +27,7 @@
 use constant CMD_WITH_SPACES        => 'dir with spaces\hello.exe';
 use constant CMD_WITH_SPACES_OUTPUT => "Hello World\n";
 
-plan tests => 32;
+plan tests => 30;
 
 my $perl_path = $Config{perlpath};
 $perl_path .= $Config{_exe} unless $perl_path =~ m/$Config{_exe}$/i;
@@ -131,7 +131,7 @@
     is($@, "", "command with spaces should not error (capturex)");
     is($output, CMD_WITH_SPACES_OUTPUT, "...and give correct output");
 
-    my $output = eval { capture(CMD_WITH_SPACES); };
+    $output = eval { capture(CMD_WITH_SPACES); };
 
     is($@, "", "command with spaces should not error (capture)");
     is($output, CMD_WITH_SPACES_OUTPUT, "...and give correct output");




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