Skip Menu |

This queue is for tickets about the POE CPAN distribution.

Report information
The Basics
Id: 12101
Status: resolved
Priority: 0/
Queue: POE

People
Owner: Nobody in particular
Requestors: merlyn [...] stonehenge.com
Cc:
AdminCc:

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



Subject: Test::Harness is being indexed as part of POE
It appears that Test::Harness is being indexed, because search.cpan.org showed me POE when I was looking for Test::Harness. I may be misinterpreting the result though.
[guest - Thu Mar 31 16:08:52 2005]: Show quoted text
> It appears that Test::Harness is being indexed, because > search.cpan.org showed me POE when I was looking for Test::Harness. I > may be misinterpreting the result though.
I have no idea why this happens. META.yml doesn't list Test::Harness in its "provides" section. I've also placed it in the mylib directory of the tarball which should be off limits to the CPAN indexer. So... I've added Test::Harness as a prerequisite to POE. Maybe that will force the indexer to think it's an outside entity. I'm surprised ExtUtils::AutoInstall is not similarly listed. Hmm... I just checked. It is listed under POE (and many many other distributions). Maybe this is an issue with search.cpan.org?
From: adamk [...] cpan.org
[RCAPUTO - Mon Apr 11 22:39:02 2005]: Show quoted text
> [guest - Thu Mar 31 16:08:52 2005]: >
> > It appears that Test::Harness is being indexed, because > > search.cpan.org showed me POE when I was looking for Test::Harness.
> I
> > may be misinterpreting the result though.
> > I have no idea why this happens. META.yml doesn't list Test::Harness > in > its "provides" section. I've also placed it in the mylib directory of > the tarball which should be off limits to the CPAN indexer. > > So... I've added Test::Harness as a prerequisite to POE. Maybe that > will force the indexer to think it's an outside entity. I'm surprised > ExtUtils::AutoInstall is not similarly listed. > > Hmm... I just checked. It is listed under POE (and many many other > distributions). Maybe this is an issue with search.cpan.org?
Nope, not it's fault. There's nothing that says that mylib is special that I know of. If you have any directories that contain Perl things you want everything to ignore, you need to be adding no_index entries to the META.yml file. Everything should ignore whatever you don't want them to see. Including Test::Harness. So, add a no_index entry for mylib, and this problem will do away
no_index: dir: - mylib generated_by: Module::Build version 0.2709 As of revision 1910. Thanks for poking me about this.