On Thu, Mar 27, 2003 at 01:03:23PM -0600, Craig A. Berry wrote:
> Here's what I see when running the Makefile.PL:
> 
> Argument "6.06_03" isn't numeric in numeric lt (<) at makefile.pl line 32.
> Checking if your kit is complete...
> Warning: the following files are missing in your kit:
>         meta.yml
> Please inform the author.

Hmmm.  Oh, that's just because the META.yml isn't in CVS.  Fixing that.


> Warning: prerequisite Pod::Man 0 not found.

This is due to the 5.8.0 eval q{require Foo} bug mentioned earlier.  Guess I
have to do a work-around for that. :(


> Failed Test Stat Wstat Total Fail  Failed  List of Failed
> -------------------------------------------------------------------------------
> t/basic.t     44  1024    48   19  39.58%  22-26 31-32 35-45 48
> t/install.t   44  1024    18    3  16.67%  9 13 17
> 7 tests and 54 subtests skipped.
> Failed 2/30 test scripts, 93.33% okay. 22/454 subtests failed, 95.15% okay.
> 
> basic.t manages to crash Perl with an access violation (seg fault). 
> I will try to investigate these issues more later.

Install.t is failing because basic.t is leaving the dummy test module
in a weird state.  It passes fine when run against a clean dummy.  So
don't worry about that.

basic.t I'm working my way through.  22-26 are taken care of.  I should
be able to take care of it myself.


> The patch below corrects a couple of small nits I noticed while 
> reading the descrip.mms; neither of the test failures is addressed 
> here:

Good catches.  Work more on things like this.


> --- lib/ExtUtils/MM_VMS.pm;-0   Thu Mar 27 04:33:50 2003
> +++ lib/ExtUtils/MM_VMS.pm      Thu Mar 27 11:18:17 2003
> @@ -1443,7 +1443,7 @@
>      return <<'MAKE_FRAG';
>  shdist : distdir
>         $(PREOP)
> -       $(SHAR) [.$(DISTVNAME...]*.*; $(DISTVNAME).share
> +       $(SHAR) [.$(DISTVNAME)...]*.*; $(DISTVNAME).share
>         $(RM_RF) $(DISTVNAME)
>         $(POSTOP)
>  MAKE_FRAG
> --- lib/ExtUtils/MM_Unix.pm;-0  Thu Mar 27 04:07:14 2003
> +++ lib/ExtUtils/MM_Unix.pm     Thu Mar 27 11:18:18 2003
> @@ -883,9 +883,7 @@
> 
>      return <<'MAKE_FRAG';
>  uutardist : $(DISTVNAME).tar$(SUFFIX)
> -       uuencode $(DISTVNAME).tar$(SUFFIX) \\
> -               $(DISTVNAME).tar$(SUFFIX) > \\
> -               $(DISTVNAME).tar$(SUFFIX)_uu
> +       uuencode $(DISTVNAME).tar$(SUFFIX) $(DISTVNAME).tar$(SUFFIX) > 
> $(DISTVNAME).tar$(SUFFIX)_uu
>  MAKE_FRAG
>  }
>  
> [end of patch]


-- 
Milk may build strong bones, but adhesives are cement for the mind.
        http://www.goats.com/archive/990103.html

Reply via email to