Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the Parallel-ForkManager CPAN distribution.

Report information
The Basics
Id: 85324
Status: resolved
Priority: 0/
Queue: Parallel-ForkManager

People
Owner: Nobody in particular
Requestors: ianburrell [...] gmail.com
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 1.0.0
Fixed in: (no value)



Subject: Require File::Path 2.0 to support Perl 5.8
Parallel::ForkManager 1.0.0 uses File::Path remove_tree which was added in File::Path 2.0. File::Path 2.0 has been core since Perl 5.10, but Perl 5.8.8 has 1.08. Perl 5.8 will work with new Parallel::ForkManager if new version of File::Path is listed as requirement.
From: ianburrell [...] gmail.com
Here is a patch that adds the requirement to Makefile.PL.
Subject: 1-Require_File__Path_2_0_with_remove_tree_function__RT_85324_.patch
# HG changeset patch # User Ian Burrell <imb@rentrak.com> # Date 1368641860 25200 # Node ID 2b94cd7765387f4c2cc167e08ca93413a9b58f16 # Parent 316a857c44f0269123561f6c3fcbeb29c34bfeee Require File::Path 2.0 with remove_tree function (RT#85324) diff -r 316a857c44f0 -r 2b94cd776538 Makefile.PL --- a/Makefile.PL Wed Mar 06 11:27:22 2013 +0200 +++ b/Makefile.PL Wed May 15 11:17:40 2013 -0700 @@ -12,7 +12,7 @@ 'Storable' => 0, 'File::Spec' => 0, 'File::Temp' => 0, - 'File::Path' => 0, + 'File::Path' => 2.0, }, BUILD_REQUIRES => { 'Test::More' => '0.80',
will be in 1.04 thanks for the patch