Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the Devel-CheckOS CPAN distribution.

Report information
The Basics
Id: 33781
Status: resolved
Priority: 0/
Queue: Devel-CheckOS

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

Bug Information
Severity: Normal
Broken in: (no value)
Fixed in: 1.43



Subject: use-devel-checklib -- inc/ not added to META.yml no_index
use-devel-checklib doesn't add 'inc/' to META.yml no_index and it really should either do so or warn the user to do so. For example, the following parameter to Module::Build::new() will do the right thing: meta_add => { no_index => { directory => [ qw/ inc /], } }, Of course, parsing Module::Build and trying to add this is hard, so maybe just documenting it and also having it print out to screen and telling the user to add it to Build.PL is the right thing to do. For ExtUtils::MakeMaker, I'm not sure that there is any easy way to do the same thing.
Fixed in latest release - not using no_index but by splitting 'package Devel::blah' over two lines with a comment in the middle
Subject: Re: [rt.cpan.org #33781] use-devel-checklib -- inc/ not added to META.yml no_index
Date: Wed, 12 Mar 2008 20:23:42 -0400
To: bug-Devel-CheckOS [...] rt.cpan.org
From: "David Golden" <dagolden [...] cpan.org>
Awesome hack! On Wed, Mar 12, 2008 at 4:25 PM, David Cantrell via RT <bug-Devel-CheckOS@rt.cpan.org> wrote: Show quoted text
> > <URL: http://rt.cpan.org/Ticket/Display.html?id=33781 > > > Fixed in latest release - not using no_index but by splitting 'package Devel::blah' over two lines > with a comment in the middle >
Show quoted text
> Awesome hack!
Ugly hack, more like :-) Now that EU::MM lets me set arbitrary META.yml files I might prettify it.