Two problems:

1.  The distribution included the two *.tmp files that were not listed in 
the MANIFEST - pod2htmd.tmp and pod2htmi.tmp - so CPANPLUS wouldn't trust 
the distribution.

Fix:

Black JL: cd DateTime-TimeZone-0.6601
Black JL: ls *.tmp
pod2htmd.tmp  pod2htmi.tmp
Black JL: rm *.tmp


2.  The test phase failed, both times with a problem involving 
Australia/Melbourne.  My timezone is US/Pacific - aka America::Los_Angeles 
- which may be a factor in the problem.  The 'pminst' script is a shell 
script that runs either 'perl Makefile.PL && make && make test && make 
install' or 'perl Build.PL &&perl Build && perl Build test && perl Build 
install' -- ie, that only continues if the previous step succeeds (source 
below).

Black JL: pminst
Checking whether your kit is complete...
Looks good

Checking prerequisites...
Looks good

Deleting Build
Removed previous script 'Build'

Creating new 'Build' script for 'DateTime-TimeZone' version '0.6601'
t/01load....................ok
t/02basic...................ok
t/03link....................ok
t/04local...................ok 420/542
#   Failed test 'The object isa DateTime::TimeZone::Australia::Melbourne'
t/04local...................NOK 529/542#   at t/04local.t line 116.
#     The object isn't a 'DateTime::TimeZone::Australia::Melbourne' it's a 
'DateTime::TimeZone::America::Los_Angeles'
t/04local...................ok 530/542# Looks like you failed 1 test of 
542.
t/04local...................dubious
        Test returned status 1 (wstat 256, 0x100)
DIED. FAILED test 529
        Failed 1/542 tests, 99.82% okay (less 17 skipped tests: 524 okay, 
96.68%)
t/05offset..................ok
t/06no-dst..................ok
t/07offset-only.............ok
t/08name....................ok
t/09changes.................ok
t/11valid-name..............ok
t/12storable................ok
t/13short-name-has-slash....ok
t/14invalid-name............ok
t/15catalog.................ok
t/16has-dst-changes.........ok
t/17special-names...........ok
t/18olson-version-check.....ok
t/99-pod....................ok
Failed Test Stat Wstat Total Fail  List of Failed
-------------------------------------------------------------------------------
t/04local.t    1   256   542    1  529
17 subtests skipped.
Failed 1/18 test scripts. 1/3168 subtests failed.
Files=18, Tests=3168, 69 wallclock secs (65.71 cusr +  2.29 csys = 68.00 
CPU)
Failed 1/18 test programs. 1/3168 subtests failed.


If you need 'perl -V' output, I'll send it.

Source for pminst:
:       "@(#)$Id: pmbld.sh,v 2003.2 2003/07/03 18:42:30 jleffler Exp $"
#
#       Build and test (and possibly install) a Perl module
#       Handles both Module::Build and ExtUtils::MakeMaker modules.

: ${PERL:=perl}

if [ -f Build.PL ]
then
        $PERL Build.PL "$@" &&
        $PERL Build &&
        $PERL Build test &&
        [ `basename $0 .sh` = "pminst" ] && $PERL Build install
elif [ -f Makefile.PL ]
then
        $PERL Makefile.PL "$@" &&
        make &&
        make test &&
        [ `basename $0 .sh` = "pminst" ] && make install
else
        echo "$0: no Build.PL nor Makefile.PL - is this a Perl module?" 
1>&1
        exit 1
fi

-- 
Jonathan Leffler ([EMAIL PROTECTED])
STSM, Informix Database Engineering, IBM Information Management Division
4100 Bohannon Drive, Menlo Park, CA 94025-1013
Tel: +1 650-926-6921    Tie-Line: 630-6921
"I don't suffer from insanity; I enjoy every minute of it!"

Reply via email to