David Cantrell wrote:
Looks like the NA is being generated because of this in Makefile.PL: my $found = 0; for (@INC) { if (-f catfile( $_, q(version.pm) )) { $found = 1; last } } exit 0 unless ($found);
In which case I have misunderstood. I thought that "exit 0" from a Makefile.PL would not generate an NA. So I've learnt something, thank you
which is a rather odd way of checking for version.pm's presence, especially considering that you then list it in PREREQ_PM. But in any case, the NA report is legitimate, as (if I'm right about where it's coming from :-) your code isn't intended to run on that platform.
A belt and braces approach. Since I "use version; our $VERSION = qv(...)" ExtUtils::MakeMaker will fail to extract the version from the module if version.pm is not already installed. Older testing platforms apparently ignore the configure_requires attribute in the the META.yml
Where did you get that address from? Here <http://perl.grango.org/cpanmail.html> is the tool to convert from an NNTP id to an email address.
I was assuming that chris is a PAUSE id and obtained the email address from the authors page on CPAN. I tried typing chris and CHRIS into the textfield on that page and clicking the SEARCH button, but I received a completely blank page in response
-- Regards