r55254 - in /branches/upstream/libipc-run-perl/current: ./ lib/IPC/ lib/IPC/Run/ t/
carnil-guest at users.alioth.debian.org
carnil-guest at users.alioth.debian.org
Thu Apr 1 12:41:22 UTC 2010
Author: carnil-guest
Date: Thu Apr 1 12:41:13 2010
New Revision: 55254
URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=55254
Log:
[svn-upgrade] Integrating new upstream version, libipc-run-perl (0.89)
Modified:
branches/upstream/libipc-run-perl/current/Changes
branches/upstream/libipc-run-perl/current/META.yml
branches/upstream/libipc-run-perl/current/lib/IPC/Run.pm
branches/upstream/libipc-run-perl/current/lib/IPC/Run/Debug.pm
branches/upstream/libipc-run-perl/current/lib/IPC/Run/IO.pm
branches/upstream/libipc-run-perl/current/lib/IPC/Run/Timer.pm
branches/upstream/libipc-run-perl/current/lib/IPC/Run/Win32Helper.pm
branches/upstream/libipc-run-perl/current/lib/IPC/Run/Win32IO.pm
branches/upstream/libipc-run-perl/current/lib/IPC/Run/Win32Pump.pm
branches/upstream/libipc-run-perl/current/t/98_pod.t
branches/upstream/libipc-run-perl/current/t/98_pod_coverage.t
branches/upstream/libipc-run-perl/current/t/99_perl_minimum_version.t
Modified: branches/upstream/libipc-run-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libipc-run-perl/current/Changes?rev=55254&op=diff
==============================================================================
--- branches/upstream/libipc-run-perl/current/Changes (original)
+++ branches/upstream/libipc-run-perl/current/Changes Thu Apr 1 12:41:13 2010
@@ -1,4 +1,8 @@
Revision history for Perl extension IPC::Run
+
+0.89 Wed 31 Mar 2010
+ - Revert extended tests to require "oslo consensus" variables - http://use.perl.org/~Alias/journal/36128
+ - Add IO::Pty to META.yml requirement This has been inconsistently depended on over the years in META.yml
0.88 Tue 30 Mar 2010
- Missed dangling isa in IPC::Run::Debug
Modified: branches/upstream/libipc-run-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libipc-run-perl/current/META.yml?rev=55254&op=diff
==============================================================================
--- branches/upstream/libipc-run-perl/current/META.yml (original)
+++ branches/upstream/libipc-run-perl/current/META.yml Thu Apr 1 12:41:13 2010
@@ -1,6 +1,6 @@
--- #YAML:1.0
name: IPC-Run
-version: 0.88
+version: 0.89
abstract: system() and background procs w/ piping, redirs, ptys (Unix, Win32)
author:
- Barrie Slaymaker <barries at slaysys.com>
@@ -12,6 +12,7 @@
ExtUtils::MakeMaker: 0
Test::More: 0
requires:
+ IO::Pty: 1.08
Test::More: 0.47
resources:
bugtracker: https://rt.cpan.org/NoAuth/Bugs.html?Dist=IPC-Run
@@ -21,7 +22,7 @@
directory:
- t
- inc
-generated_by: ExtUtils::MakeMaker version 6.56
+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/libipc-run-perl/current/lib/IPC/Run.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libipc-run-perl/current/lib/IPC/Run.pm?rev=55254&op=diff
==============================================================================
--- branches/upstream/libipc-run-perl/current/lib/IPC/Run.pm (original)
+++ branches/upstream/libipc-run-perl/current/lib/IPC/Run.pm Thu Apr 1 12:41:13 2010
@@ -1013,7 +1013,7 @@
use Exporter ();
use vars qw{$VERSION @ISA @FILTER_IMP @FILTERS @API @EXPORT_OK %EXPORT_TAGS};
BEGIN {
- $VERSION = '0.88';
+ $VERSION = '0.89';
@ISA = qw{ Exporter };
## We use @EXPORT for the end user's convenience: there's only one function
Modified: branches/upstream/libipc-run-perl/current/lib/IPC/Run/Debug.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libipc-run-perl/current/lib/IPC/Run/Debug.pm?rev=55254&op=diff
==============================================================================
--- branches/upstream/libipc-run-perl/current/lib/IPC/Run/Debug.pm (original)
+++ branches/upstream/libipc-run-perl/current/lib/IPC/Run/Debug.pm Thu Apr 1 12:41:13 2010
@@ -70,7 +70,7 @@
use Exporter;
use vars qw{$VERSION @ISA @EXPORT @EXPORT_OK %EXPORT_TAGS};
BEGIN {
- $VERSION = '0.88';
+ $VERSION = '0.89';
@ISA = qw( Exporter );
@EXPORT = qw(
_debug
Modified: branches/upstream/libipc-run-perl/current/lib/IPC/Run/IO.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libipc-run-perl/current/lib/IPC/Run/IO.pm?rev=55254&op=diff
==============================================================================
--- branches/upstream/libipc-run-perl/current/lib/IPC/Run/IO.pm (original)
+++ branches/upstream/libipc-run-perl/current/lib/IPC/Run/IO.pm Thu Apr 1 12:41:13 2010
@@ -72,7 +72,7 @@
use vars qw{$VERSION};
BEGIN {
- $VERSION = '0.88';
+ $VERSION = '0.89';
if ( Win32_MODE ) {
eval "use IPC::Run::Win32Helper; require IPC::Run::Win32IO; 1"
or ( $@ && die ) or die "$!";
Modified: branches/upstream/libipc-run-perl/current/lib/IPC/Run/Timer.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libipc-run-perl/current/lib/IPC/Run/Timer.pm?rev=55254&op=diff
==============================================================================
--- branches/upstream/libipc-run-perl/current/lib/IPC/Run/Timer.pm (original)
+++ branches/upstream/libipc-run-perl/current/lib/IPC/Run/Timer.pm Thu Apr 1 12:41:13 2010
@@ -163,7 +163,7 @@
use Exporter;
use vars qw( $VERSION @ISA @EXPORT_OK %EXPORT_TAGS );
BEGIN {
- $VERSION = '0.88';
+ $VERSION = '0.89';
@ISA = qw( Exporter );
@EXPORT_OK = qw(
check
Modified: branches/upstream/libipc-run-perl/current/lib/IPC/Run/Win32Helper.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libipc-run-perl/current/lib/IPC/Run/Win32Helper.pm?rev=55254&op=diff
==============================================================================
--- branches/upstream/libipc-run-perl/current/lib/IPC/Run/Win32Helper.pm (original)
+++ branches/upstream/libipc-run-perl/current/lib/IPC/Run/Win32Helper.pm Thu Apr 1 12:41:13 2010
@@ -24,7 +24,7 @@
use IO::Handle;
use vars qw{ $VERSION @ISA @EXPORT };
BEGIN {
- $VERSION = '0.88';
+ $VERSION = '0.89';
@ISA = qw( Exporter );
@EXPORT = qw(
win32_spawn
Modified: branches/upstream/libipc-run-perl/current/lib/IPC/Run/Win32IO.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libipc-run-perl/current/lib/IPC/Run/Win32IO.pm?rev=55254&op=diff
==============================================================================
--- branches/upstream/libipc-run-perl/current/lib/IPC/Run/Win32IO.pm (original)
+++ branches/upstream/libipc-run-perl/current/lib/IPC/Run/Win32IO.pm Thu Apr 1 12:41:13 2010
@@ -31,7 +31,7 @@
use vars qw{$VERSION};
BEGIN {
- $VERSION = '0.88';
+ $VERSION = '0.89';
}
use Socket qw( IPPROTO_TCP TCP_NODELAY );
Modified: branches/upstream/libipc-run-perl/current/lib/IPC/Run/Win32Pump.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libipc-run-perl/current/lib/IPC/Run/Win32Pump.pm?rev=55254&op=diff
==============================================================================
--- branches/upstream/libipc-run-perl/current/lib/IPC/Run/Win32Pump.pm (original)
+++ branches/upstream/libipc-run-perl/current/lib/IPC/Run/Win32Pump.pm Thu Apr 1 12:41:13 2010
@@ -29,7 +29,7 @@
use strict;
use vars qw{$VERSION};
BEGIN {
- $VERSION = '0.88';
+ $VERSION = '0.89';
}
use Win32API::File qw(
Modified: branches/upstream/libipc-run-perl/current/t/98_pod.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libipc-run-perl/current/t/98_pod.t?rev=55254&op=diff
==============================================================================
--- branches/upstream/libipc-run-perl/current/t/98_pod.t (original)
+++ branches/upstream/libipc-run-perl/current/t/98_pod.t Thu Apr 1 12:41:13 2010
@@ -1,6 +1,33 @@
-#!perl -T
+#!/usr/bin/perl
+# Test that the syntax of our POD documentation is valid
+use strict;
+BEGIN {
+ $| = 1;
+ $^W = 1;
+}
+
+my @MODULES = (
+ 'Pod::Simple 3.07',
+ 'Test::Pod 1.26',
+);
+
+# Don't run tests during end-user installs
use Test::More;
-eval "use Test::Pod 1.14";
-plan skip_all => "Test::Pod 1.14 required for testing POD" if $@;
+unless ( $ENV{AUTOMATED_TESTING} or $ENV{RELEASE_TESTING} ) {
+ plan( skip_all => "Author tests not required for installation" );
+}
+
+# Load the testing modules
+foreach my $MODULE ( @MODULES ) {
+ eval "use $MODULE";
+ if ( $@ ) {
+ $ENV{RELEASE_TESTING}
+ ? die( "Failed to load required release-testing module $MODULE" )
+ : plan( skip_all => "$MODULE not available for testing" );
+ }
+}
+
all_pod_files_ok();
+
+1;
Modified: branches/upstream/libipc-run-perl/current/t/98_pod_coverage.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libipc-run-perl/current/t/98_pod_coverage.t?rev=55254&op=diff
==============================================================================
--- branches/upstream/libipc-run-perl/current/t/98_pod_coverage.t (original)
+++ branches/upstream/libipc-run-perl/current/t/98_pod_coverage.t Thu Apr 1 12:41:13 2010
@@ -1,10 +1,31 @@
-#!perl
+#!/usr/bin/perl
+# Test that the syntax of our POD documentation is valid
+use strict;
+BEGIN {
+ $| = 1;
+ $^W = 1;
+}
+
+my @MODULES = (
+ 'Test::Pod::Coverage 1.04',
+);
+
+# Don't run tests during end-user installs
use Test::More;
+unless ( $ENV{AUTOMATED_TESTING} or $ENV{RELEASE_TESTING} ) {
+ plan( skip_all => "Author tests not required for installation" );
+}
-eval "use Test::Pod::Coverage 1.04";
-plan skip_all => "Test::Pod::Coverage 1.04 required for testing POD coverage" if $@;
-
+# Load the testing modules
+foreach my $MODULE ( @MODULES ) {
+ eval "use $MODULE";
+ if ( $@ ) {
+ $ENV{RELEASE_TESTING}
+ ? die( "Failed to load required release-testing module $MODULE" )
+ : plan( skip_all => "$MODULE not available for testing" );
+ }
+}
plan tests => 7;
#my $private_subs = { private => [qr/foo_fizz/]};
Modified: branches/upstream/libipc-run-perl/current/t/99_perl_minimum_version.t
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libipc-run-perl/current/t/99_perl_minimum_version.t?rev=55254&op=diff
==============================================================================
--- branches/upstream/libipc-run-perl/current/t/99_perl_minimum_version.t (original)
+++ branches/upstream/libipc-run-perl/current/t/99_perl_minimum_version.t Thu Apr 1 12:41:13 2010
@@ -1,7 +1,6 @@
#!/usr/bin/perl
# Test that our declared minimum Perl version matches our syntax
-
use strict;
BEGIN {
$| = 1;
@@ -13,7 +12,7 @@
'Test::MinimumVersion 0.008',
);
-# Don't run tests for installs
+# Don't run tests during end-user installs
use Test::More;
unless ( $ENV{AUTOMATED_TESTING} or $ENV{RELEASE_TESTING} ) {
plan( skip_all => "Author tests not required for installation" );
@@ -30,3 +29,5 @@
}
all_minimum_version_from_metayml_ok();
+
+1;
More information about the Pkg-perl-cvs-commits
mailing list