On Mon Sep 27 14:58:09 2010, JOHND wrote:
Show quoted text
Aha!
In order to make that search.cpan.org page comprehensible, I have to add
most files in the distro to the "no_index" section of META.yml --
otherwise search.cpan.org clutters it up with a bunch of private
classes, build files, etc. This is done automatically, and Changes was
being added to "no_index" erroneously. Fixed by r6366:
===================================================================
--- buildlib/KinoSearch/Build.pm (revision 6360)
+++ buildlib/KinoSearch/Build.pm (working copy)
@@ -619,8 +619,8 @@
my @excluded_files;
for my $entry (@manifest_entries) {
- # Allow README.
- next if $entry =~ m#^README#;
+ # Allow README and Changes.
+ next if $entry =~ m#^(README|Changes)#;
Show quoted text> Thanks for an *excellent* piece of work.
Thanks for the kind words, and for the bug report!
Cheers,
Marvin Humphrey