r55256 - in /trunk/libipc-run-perl: ./ debian/ lib/IPC/ lib/IPC/Run/ t/

carnil-guest at users.alioth.debian.org carnil-guest at users.alioth.debian.org
Thu Apr 1 12:42:48 UTC 2010


Author: carnil-guest
Date: Thu Apr  1 12:42:38 2010
New Revision: 55256

URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=55256
Log:
Re-add versioned dependencies on libio-pty-perl with epoch in the version

Modified:
    trunk/libipc-run-perl/Changes
    trunk/libipc-run-perl/META.yml
    trunk/libipc-run-perl/debian/changelog
    trunk/libipc-run-perl/lib/IPC/Run.pm
    trunk/libipc-run-perl/lib/IPC/Run/Debug.pm
    trunk/libipc-run-perl/lib/IPC/Run/IO.pm
    trunk/libipc-run-perl/lib/IPC/Run/Timer.pm
    trunk/libipc-run-perl/lib/IPC/Run/Win32Helper.pm
    trunk/libipc-run-perl/lib/IPC/Run/Win32IO.pm
    trunk/libipc-run-perl/lib/IPC/Run/Win32Pump.pm
    trunk/libipc-run-perl/t/98_pod.t
    trunk/libipc-run-perl/t/98_pod_coverage.t
    trunk/libipc-run-perl/t/99_perl_minimum_version.t

Modified: trunk/libipc-run-perl/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libipc-run-perl/Changes?rev=55256&op=diff
==============================================================================
--- trunk/libipc-run-perl/Changes (original)
+++ trunk/libipc-run-perl/Changes Thu Apr  1 12:42:38 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: trunk/libipc-run-perl/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libipc-run-perl/META.yml?rev=55256&op=diff
==============================================================================
--- trunk/libipc-run-perl/META.yml (original)
+++ trunk/libipc-run-perl/META.yml Thu Apr  1 12:42:38 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: trunk/libipc-run-perl/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libipc-run-perl/debian/changelog?rev=55256&op=diff
==============================================================================
--- trunk/libipc-run-perl/debian/changelog (original)
+++ trunk/libipc-run-perl/debian/changelog Thu Apr  1 12:42:38 2010
@@ -1,7 +1,7 @@
-libipc-run-perl (0.88-1) UNRELEASED; urgency=low
+libipc-run-perl (0.89-1) UNRELEASED; urgency=low
 
   * New upstream release
-  * Readd versioned dependencies on libio-pty-perl with epoch in the version
+  * Re-add versioned dependencies on libio-pty-perl with epoch in the version
     string to be correct now. 
 
  -- Salvatore Bonaccorso <salvatore.bonaccorso at gmail.com>  Wed, 31 Mar 2010 08:26:40 +0200

Modified: trunk/libipc-run-perl/lib/IPC/Run.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libipc-run-perl/lib/IPC/Run.pm?rev=55256&op=diff
==============================================================================
--- trunk/libipc-run-perl/lib/IPC/Run.pm (original)
+++ trunk/libipc-run-perl/lib/IPC/Run.pm Thu Apr  1 12:42:38 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: trunk/libipc-run-perl/lib/IPC/Run/Debug.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libipc-run-perl/lib/IPC/Run/Debug.pm?rev=55256&op=diff
==============================================================================
--- trunk/libipc-run-perl/lib/IPC/Run/Debug.pm (original)
+++ trunk/libipc-run-perl/lib/IPC/Run/Debug.pm Thu Apr  1 12:42:38 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: trunk/libipc-run-perl/lib/IPC/Run/IO.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libipc-run-perl/lib/IPC/Run/IO.pm?rev=55256&op=diff
==============================================================================
--- trunk/libipc-run-perl/lib/IPC/Run/IO.pm (original)
+++ trunk/libipc-run-perl/lib/IPC/Run/IO.pm Thu Apr  1 12:42:38 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: trunk/libipc-run-perl/lib/IPC/Run/Timer.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libipc-run-perl/lib/IPC/Run/Timer.pm?rev=55256&op=diff
==============================================================================
--- trunk/libipc-run-perl/lib/IPC/Run/Timer.pm (original)
+++ trunk/libipc-run-perl/lib/IPC/Run/Timer.pm Thu Apr  1 12:42:38 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: trunk/libipc-run-perl/lib/IPC/Run/Win32Helper.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libipc-run-perl/lib/IPC/Run/Win32Helper.pm?rev=55256&op=diff
==============================================================================
--- trunk/libipc-run-perl/lib/IPC/Run/Win32Helper.pm (original)
+++ trunk/libipc-run-perl/lib/IPC/Run/Win32Helper.pm Thu Apr  1 12:42:38 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: trunk/libipc-run-perl/lib/IPC/Run/Win32IO.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libipc-run-perl/lib/IPC/Run/Win32IO.pm?rev=55256&op=diff
==============================================================================
--- trunk/libipc-run-perl/lib/IPC/Run/Win32IO.pm (original)
+++ trunk/libipc-run-perl/lib/IPC/Run/Win32IO.pm Thu Apr  1 12:42:38 2010
@@ -31,7 +31,7 @@
 
 use vars qw{$VERSION};
 BEGIN {
-	$VERSION = '0.88';
+	$VERSION = '0.89';
 }
 
 use Socket qw( IPPROTO_TCP TCP_NODELAY );

Modified: trunk/libipc-run-perl/lib/IPC/Run/Win32Pump.pm
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libipc-run-perl/lib/IPC/Run/Win32Pump.pm?rev=55256&op=diff
==============================================================================
--- trunk/libipc-run-perl/lib/IPC/Run/Win32Pump.pm (original)
+++ trunk/libipc-run-perl/lib/IPC/Run/Win32Pump.pm Thu Apr  1 12:42:38 2010
@@ -29,7 +29,7 @@
 use strict;
 use vars qw{$VERSION};
 BEGIN {
-	$VERSION = '0.88';
+	$VERSION = '0.89';
 }
 
 use Win32API::File qw(

Modified: trunk/libipc-run-perl/t/98_pod.t
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libipc-run-perl/t/98_pod.t?rev=55256&op=diff
==============================================================================
--- trunk/libipc-run-perl/t/98_pod.t (original)
+++ trunk/libipc-run-perl/t/98_pod.t Thu Apr  1 12:42:38 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: trunk/libipc-run-perl/t/98_pod_coverage.t
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libipc-run-perl/t/98_pod_coverage.t?rev=55256&op=diff
==============================================================================
--- trunk/libipc-run-perl/t/98_pod_coverage.t (original)
+++ trunk/libipc-run-perl/t/98_pod_coverage.t Thu Apr  1 12:42:38 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: trunk/libipc-run-perl/t/99_perl_minimum_version.t
URL: http://svn.debian.org/wsvn/pkg-perl/trunk/libipc-run-perl/t/99_perl_minimum_version.t?rev=55256&op=diff
==============================================================================
--- trunk/libipc-run-perl/t/99_perl_minimum_version.t (original)
+++ trunk/libipc-run-perl/t/99_perl_minimum_version.t Thu Apr  1 12:42:38 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