Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the Test-Fixme CPAN distribution.

Report information
The Basics
Id: 50375
Status: resolved
Priority: 0/
Queue: Test-Fixme

People
Owner: Nobody in particular
Requestors: lodin [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Critical
Broken in: 0.04
Fixed in: (no value)



Subject: Removing dependency on File::Finder
I could not install Test::Fixme because the dependency of File::Finder. As seen at http://matrix.cpantesters.org/?dist=File-Finder+0.53 this is not unique and File::Finder has not been updated for four years. I have rewritten my copy of Test::Fixme to use the core module File::Find instead. I have attached the diff outputs if you want to use the same solution. All tests pass on my Strawberry Perl 5.10.0. Regards, Johan Lodin
Subject: Makefile.PL.diff
12c12 < 'File::Finder' => 0, --- > 'File::Find' => 0,
Subject: Fixme.pm.diff
7c7 < use File::Finder; --- > use File::Find 'find'; 134d133 < my @files = (); 137d135 < 140d137 < push @files, File::Finder->type('f')->in($path); 143c140,151 < # Find files using File::Finder. --- > my @files; > find( > { > wanted => sub { > push @files, $File::Find::name > if -f $File::Find::name; > }, > no_chdir => 1, > }, > @paths > ); >
Subject: Changes.diff
2a3,5 > 0.04_01 2009-10-10 (LODIN) > - Replaced File::Finder with File::Find. >
Subject: Re: [rt.cpan.org #50375] Removing dependency on File::Finder
Date: Thu, 15 Oct 2009 19:58:59 +0100
To: bug-Test-Fixme <bug-Test-Fixme [...] rt.cpan.org>
From: Edmund von der Burg <edmund.vonderburg [...] gmail.com>
Great stuff - I'll apply the patches and release a new module in the next couple of weeks. Really busy at the moment, but do appreciate your contribution. Cheers, Edmund. 2009/10/10 Johan Lodin via RT <bug-Test-Fixme@rt.cpan.org>: Show quoted text
> Sat Oct 10 09:50:59 2009: Request 50375 was acted upon. > Transaction: Ticket created by LODIN >       Queue: Test-Fixme >     Subject: Removing dependency on File::Finder >   Broken in: 0.04 >    Severity: Critical >       Owner: Nobody >  Requestors: lodin@cpan.org >      Status: new >  Ticket <URL: https://rt.cpan.org/Ticket/Display.html?id=50375 > > > > I could not install Test::Fixme because the dependency of File::Finder. > As seen at http://matrix.cpantesters.org/?dist=File-Finder+0.53 this is > not unique and File::Finder has not been updated for four years. > > I have rewritten my copy of Test::Fixme to use the core module > File::Find instead. I have attached the diff outputs if you want to use > the same solution. All tests pass on my Strawberry Perl 5.10.0. > > Regards, > Johan Lodin >
fixed in 0.05