r36886 - in /branches/upstream/libipc-run3-perl/current: ./ bin/ lib/IPC/ lib/IPC/Run3/
nhandler-guest at users.alioth.debian.org
nhandler-guest at users.alioth.debian.org
Sun May 31 03:19:00 UTC 2009
Author: nhandler-guest
Date: Sun May 31 03:18:55 2009
New Revision: 36886
URL: http://svn.debian.org/wsvn/pkg-perl/?sc=1&rev=36886
Log:
[svn-upgrade] Integrating new upstream version, libipc-run3-perl (0.043)
Modified:
branches/upstream/libipc-run3-perl/current/Changes
branches/upstream/libipc-run3-perl/current/META.yml
branches/upstream/libipc-run3-perl/current/Makefile.PL
branches/upstream/libipc-run3-perl/current/README
branches/upstream/libipc-run3-perl/current/bin/run3profpp
branches/upstream/libipc-run3-perl/current/lib/IPC/Run3.pm
branches/upstream/libipc-run3-perl/current/lib/IPC/Run3/ProfArrayBuffer.pm
branches/upstream/libipc-run3-perl/current/lib/IPC/Run3/ProfLogReader.pm
branches/upstream/libipc-run3-perl/current/lib/IPC/Run3/ProfLogger.pm
branches/upstream/libipc-run3-perl/current/lib/IPC/Run3/ProfPP.pm
branches/upstream/libipc-run3-perl/current/lib/IPC/Run3/ProfReporter.pm
Modified: branches/upstream/libipc-run3-perl/current/Changes
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libipc-run3-perl/current/Changes?rev=36886&op=diff
==============================================================================
--- branches/upstream/libipc-run3-perl/current/Changes (original)
+++ branches/upstream/libipc-run3-perl/current/Changes Sun May 31 03:18:55 2009
@@ -1,4 +1,9 @@
Changes file for IPC::Run3
+
+0.043 2009-05-30
+ No code changes
+ add repository location to META.yml
+ avoid hand-written META.yml by using META_MERGE
0.042 2008-08-09
No code changes
Modified: branches/upstream/libipc-run3-perl/current/META.yml
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libipc-run3-perl/current/META.yml?rev=36886&op=diff
==============================================================================
--- branches/upstream/libipc-run3-perl/current/META.yml (original)
+++ branches/upstream/libipc-run3-perl/current/META.yml Sun May 31 03:18:55 2009
@@ -1,20 +1,29 @@
--- #YAML:1.0
-name: IPC-Run3
-version: 0.042
-abstract: run a subprocess with input/ouput redirection
-license: open_source
-author: Barrie Slaymaker <barries at slaysys.com>
-generated_by: ExtUtils::MakeMaker version 6.42
-distribution_type: module
-requires:
- perl: 5.6.0
- Test::More: 0.31
- Time::HiRes: 0
+name: IPC-Run3
+version: 0.043
+abstract: run a subprocess with input/ouput redirection
+author:
+ - Barrie Slaymaker <barries at slaysys.com>
+license: open_source
+distribution_type: module
+configure_requires:
+ ExtUtils::MakeMaker: 0
+build_requires:
+ ExtUtils::MakeMaker: 0
+requires:
+ Test::More: 0.31
+ Time::HiRes: 0
+resources:
+ repository: http://github.com/rjbs/ipc-run3/
no_index:
dir:
- lib/IPC/Run3
+ directory:
+ - t
+ - inc
file:
- bin/run3profpp
+generated_by: ExtUtils::MakeMaker version 6.50
meta-spec:
- url: http://module-build.sourceforge.net/META-spec-v1.3.html
- version: 1.3
+ url: http://module-build.sourceforge.net/META-spec-v1.4.html
+ version: 1.4
Modified: branches/upstream/libipc-run3-perl/current/Makefile.PL
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libipc-run3-perl/current/Makefile.PL?rev=36886&op=diff
==============================================================================
--- branches/upstream/libipc-run3-perl/current/Makefile.PL (original)
+++ branches/upstream/libipc-run3-perl/current/Makefile.PL Sun May 31 03:18:55 2009
@@ -6,12 +6,20 @@
ABSTRACT_FROM => 'lib/IPC/Run3.pm',
AUTHOR => 'Barrie Slaymaker <barries at slaysys.com>',
(eval { ExtUtils::MakeMaker->VERSION(6.21) } ? (LICENSE => 'open_source') : ()),
- EXE_FILES => [],
- PREREQ_PM => {
+ EXE_FILES => [],
+ PREREQ_PM => {
'Test::More' => '0.31',
'Time::HiRes' => 0,
($^O =~ /Win32/ ? (Win32 => 0) : ())
},
- NO_META => 1,
+ META_MERGE => {
+ resources => {
+ repository => 'http://github.com/rjbs/ipc-run3/',
+ },
+ no_index => {
+ dir => [ qw(lib/IPC/Run3) ],
+ file => [ qw(bin/run3profpp) ],
+ },
+ },
clean => { FILES => [ "t/test.txt", "t/utf8.txt" ] },
);
Modified: branches/upstream/libipc-run3-perl/current/README
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libipc-run3-perl/current/README?rev=36886&op=diff
==============================================================================
--- branches/upstream/libipc-run3-perl/current/README (original)
+++ branches/upstream/libipc-run3-perl/current/README Sun May 31 03:18:55 2009
@@ -1,4 +1,4 @@
-README for IPC-Run3
+README for IPC-Run3 0.043
IPC::Run3 - run a subprocess in batch mode (a la system) on Unix, Win32, etc.
Modified: branches/upstream/libipc-run3-perl/current/bin/run3profpp
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libipc-run3-perl/current/bin/run3profpp?rev=36886&op=diff
==============================================================================
--- branches/upstream/libipc-run3-perl/current/bin/run3profpp (original)
+++ branches/upstream/libipc-run3-perl/current/bin/run3profpp Sun May 31 03:18:55 2009
@@ -1,6 +1,6 @@
#!/usr/local/bin/perl -w
-$VERSION = 0.000_1;
+$VERSION = 0.043;
=head1 NAME
Modified: branches/upstream/libipc-run3-perl/current/lib/IPC/Run3.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libipc-run3-perl/current/lib/IPC/Run3.pm?rev=36886&op=diff
==============================================================================
--- branches/upstream/libipc-run3-perl/current/lib/IPC/Run3.pm (original)
+++ branches/upstream/libipc-run3-perl/current/lib/IPC/Run3.pm Sun May 31 03:18:55 2009
@@ -1,4 +1,6 @@
package IPC::Run3;
+BEGIN { require 5.006_000; } # i.e. 5.6.0
+use strict;
=head1 NAME
@@ -6,11 +8,11 @@
=head1 VERSION
-version 0.041
+version 0.043
=cut
-$VERSION = '0.042';
+our $VERSION = '0.043';
=head1 SYNOPSIS
@@ -31,14 +33,11 @@
=cut
-use 5.006_000; # i.e. v5.6.0
-
- at EXPORT = qw( run3 );
-%EXPORT_TAGS = ( all => \@EXPORT );
- at ISA = qw( Exporter );
use Exporter;
-
-use strict;
+our @ISA = qw(Exporter);
+our @EXPORT = qw( run3 );
+our %EXPORT_TAGS = ( all => \@EXPORT );
+
use constant debugging => $ENV{IPCRUN3DEBUG} || $ENV{IPCRUNDEBUG} || 0;
use constant profiling => $ENV{IPCRUN3PROFILE} || $ENV{IPCRUNPROFILE} || 0;
use constant is_win32 => 0 <= index $^O, "Win32";
Modified: branches/upstream/libipc-run3-perl/current/lib/IPC/Run3/ProfArrayBuffer.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libipc-run3-perl/current/lib/IPC/Run3/ProfArrayBuffer.pm?rev=36886&op=diff
==============================================================================
--- branches/upstream/libipc-run3-perl/current/lib/IPC/Run3/ProfArrayBuffer.pm (original)
+++ branches/upstream/libipc-run3-perl/current/lib/IPC/Run3/ProfArrayBuffer.pm Sun May 31 03:18:55 2009
@@ -1,6 +1,6 @@
package IPC::Run3::ProfArrayBuffer;
-$VERSION = 0.038;
+$VERSION = 0.043;
=head1 NAME
Modified: branches/upstream/libipc-run3-perl/current/lib/IPC/Run3/ProfLogReader.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libipc-run3-perl/current/lib/IPC/Run3/ProfLogReader.pm?rev=36886&op=diff
==============================================================================
--- branches/upstream/libipc-run3-perl/current/lib/IPC/Run3/ProfLogReader.pm (original)
+++ branches/upstream/libipc-run3-perl/current/lib/IPC/Run3/ProfLogReader.pm Sun May 31 03:18:55 2009
@@ -1,6 +1,6 @@
package IPC::Run3::ProfLogReader;
-$VERSION = 0.038;
+$VERSION = 0.043;
=head1 NAME
Modified: branches/upstream/libipc-run3-perl/current/lib/IPC/Run3/ProfLogger.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libipc-run3-perl/current/lib/IPC/Run3/ProfLogger.pm?rev=36886&op=diff
==============================================================================
--- branches/upstream/libipc-run3-perl/current/lib/IPC/Run3/ProfLogger.pm (original)
+++ branches/upstream/libipc-run3-perl/current/lib/IPC/Run3/ProfLogger.pm Sun May 31 03:18:55 2009
@@ -1,6 +1,6 @@
package IPC::Run3::ProfLogger;
-$VERSION = 0.038;
+$VERSION = 0.043;
=head1 NAME
Modified: branches/upstream/libipc-run3-perl/current/lib/IPC/Run3/ProfPP.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libipc-run3-perl/current/lib/IPC/Run3/ProfPP.pm?rev=36886&op=diff
==============================================================================
--- branches/upstream/libipc-run3-perl/current/lib/IPC/Run3/ProfPP.pm (original)
+++ branches/upstream/libipc-run3-perl/current/lib/IPC/Run3/ProfPP.pm Sun May 31 03:18:55 2009
@@ -1,6 +1,6 @@
package IPC::Run3::ProfPP;
-$VERSION = 0.000_1;
+$VERSION = 0.043;
=head1 NAME
Modified: branches/upstream/libipc-run3-perl/current/lib/IPC/Run3/ProfReporter.pm
URL: http://svn.debian.org/wsvn/pkg-perl/branches/upstream/libipc-run3-perl/current/lib/IPC/Run3/ProfReporter.pm?rev=36886&op=diff
==============================================================================
--- branches/upstream/libipc-run3-perl/current/lib/IPC/Run3/ProfReporter.pm (original)
+++ branches/upstream/libipc-run3-perl/current/lib/IPC/Run3/ProfReporter.pm Sun May 31 03:18:55 2009
@@ -1,6 +1,6 @@
package IPC::Run3::ProfReporter;
-$VERSION = 0.000_1;
+$VERSION = 0.043;
=head1 NAME
More information about the Pkg-perl-cvs-commits
mailing list