This distribution has been tested as part of the cpan-testers
effort to test as many new uploads to CPAN as possible.  See
http://testers.cpan.org/

Please cc any replies to [email protected] to keep other
test volunteers informed and to prevent any duplicate effort.

--

Dear IWADE,
    
This is a computer-generated error report created automatically by
CPANPLUS, version 0.82. Testers personal comments may appear 
at the end of this report.


Thank you for uploading your work to CPAN.  However, it appears that
there were some problems testing your distribution.

TEST RESULTS:

Below is the error stack from stage 'make test':

[MSG] [Wed Sep 19 06:19:35 2007] Trying to get 
'rsync://mirrors.kernel.org/mirrors/CPAN/authors/id/I/IW/IWADE/Apache2-S3-0.04.tar.gz'
[MSG] [Wed Sep 19 06:19:37 2007] Trying to get 
'rsync://mirrors.kernel.org/mirrors/CPAN/authors/id/I/IW/IWADE/CHECKSUMS'
[MSG] [Wed Sep 19 06:19:38 2007] Checksum matches for 'Apache2-S3-0.04.tar.gz'
[MSG] [Wed Sep 19 06:19:38 2007] Extracted 'Apache2-S3-0.04/'
[MSG] [Wed Sep 19 06:19:38 2007] Extracted 'Apache2-S3-0.04/META.yml'
[MSG] [Wed Sep 19 06:19:38 2007] Extracted 'Apache2-S3-0.04/README'
[MSG] [Wed Sep 19 06:19:38 2007] Extracted 'Apache2-S3-0.04/lib/'
[MSG] [Wed Sep 19 06:19:38 2007] Extracted 'Apache2-S3-0.04/lib/Apache2/'
[MSG] [Wed Sep 19 06:19:38 2007] Extracted 'Apache2-S3-0.04/lib/Apache2/S3.pm'
[MSG] [Wed Sep 19 06:19:38 2007] Extracted 'Apache2-S3-0.04/MANIFEST'
[MSG] [Wed Sep 19 06:19:38 2007] Extracted 'Apache2-S3-0.04/Makefile.PL'
[MSG] [Wed Sep 19 06:19:38 2007] Extracted 'Apache2-S3-0.04/Changes'
[MSG] [Wed Sep 19 06:19:38 2007] Extracted 'Apache2-S3-0.04/t/'
[MSG] [Wed Sep 19 06:19:38 2007] Extracted 'Apache2-S3-0.04/t/Apache2-S3.t'
[MSG] [Wed Sep 19 06:19:38 2007] Extracted 'Apache2::S3' to 
'/Users/schwern/.cpanplus/5.8.8/build/Apache2-S3-0.04'
[MSG] [Wed Sep 19 06:19:39 2007] Checking if your kit is complete...
Looks good
Writing Makefile for Apache2::S3

[MSG] [Wed Sep 19 06:19:39 2007] DEFAULT 'filter_prereqs' HANDLER RETURNING 
'sub return value'
[MSG] [Wed Sep 19 06:19:40 2007] cp lib/Apache2/S3.pm blib/lib/Apache2/S3.pm
Manifying blib/man3/Apache2::S3.3

[ERROR] [Wed Sep 19 06:19:41 2007] MAKE TEST failed:  PERL_DL_NONLAZY=1 
/usr/local/perl/5.8.8/bin/perl "-MExtUtils::Command::MM" "-e" "test_harness(0, 
'blib/lib', 'blib/arch')" t/*.t
t/Apache2-S3......Can't locate Apache2/Const.pm in @INC (@INC contains: 
/Users/schwern/.cpanplus/5.8.8/build/Apache2-S3-0.04/blib/lib 
/Users/schwern/.cpanplus/5.8.8/build/Apache2-S3-0.04/blib/arch /sw/lib/perl5 
/sw/lib/perl5/darwin /Users/schwern/.cpanplus/5.8.8/build/Apache2-S3-0.04/blib 
/Users/schwern/.cpanplus/5.8.8/build/Apache2-S3-0.04/blib/lib 
/Users/schwern/.cpanplus/5.8.8/build/Apache2-S3-0.04/blib/arch /sw/lib/perl5 
/sw/lib/perl5/darwin /Users/schwern/.cpanplus/5.8.8/build/Apache2-S3-0.04/blib 
/sw/lib/perl5 /sw/lib/perl5/darwin 
/Users/schwern/.cpanplus/5.8.8/build/Apache2-S3-0.04/blib/lib 
/Users/schwern/.cpanplus/5.8.8/build/Apache2-S3-0.04/blib/arch 
/Users/schwern/.cpanplus/5.8.8/build/Apache2-S3-0.04/blib 
/usr/local/perl/5.8.8/lib/darwin-thread-multi-2level /usr/local/perl/5.8.8/lib 
/usr/local/lib/site_perl/5.8/darwin-thread-multi-2level 
/usr/local/lib/site_perl /usr/local/lib/site_perl .) at 
/Users/schwern/.cpanplus/5.8.8/build/Apache2-S3-0.04/blib/lib/Apache2/S3.
 pm line 6.
BEGIN failed--compilation aborted at 
/Users/schwern/.cpanplus/5.8.8/build/Apache2-S3-0.04/blib/lib/Apache2/S3.pm 
line 6.
Compilation failed in require at t/Apache2-S3.t line 10.
BEGIN failed--compilation aborted at t/Apache2-S3.t line 10.
 Dubious, test returned 2 (wstat 512, 0x200)
 Failed 1/1 subtests 

Test Summary Report
-------------------
t/Apache2-S3.t (Wstat: 512 Tests: 0 Failed: 0)
  Non-zero exit status: 2
  Parse errors: Bad plan.  You planned 1 tests but ran 0.
Files=1, Tests=0,  0 wallclock secs ( 0.01 usr  0.00 sys +  0.01 cusr  0.04 
csys =  0.06 CPU)
Result: NOTESTS
Failed 1/1 test programs. 0/0 subtests failed.

[MSG] [Wed Sep 19 06:19:41 2007] DEFAULT 'proceed_on_test_failure' HANDLER 
RETURNING 'sub return value'


MISSING PREREQUISITES:

It was observed that the test suite seem to fail without these modules:

Apache2::Const

As such, adding the prerequisite module(s) to 'PREREQ_PM' in your
Makefile.PL should solve this problem.  For example:

WriteMakefile(
    AUTHOR      => 'IWADE ([EMAIL PROTECTED])',
    ... # other information
    PREREQ_PM   => {
        'Apache2::Const'        => '0', # or a minimum working version
    }
);

If you are interested in making a more flexible Makefile.PL that can
probe for missing dependencies and install them, ExtUtils::AutoInstall
at <http://search.cpan.org/dist/ExtUtils-AutoInstall/> may be
worth a look.

Thanks! :-)

PREREQUISITES:

Here is a list of prerequisites you specified and versions we 
managed to load:
                                
          Module Name                        Have     Want
          Digest::HMAC                       1.01        0
          Digest::SHA1                       2.11        0
          HTML::Entities                     1.35        0
          MIME::Base64                       3.07        0
          XML::Parser                        2.34        0

******************************** NOTE ********************************
The comments above are created mechanically, possibly without manual
checking by the sender.  As there are many people performing automatic
tests on each upload to CPAN, it is likely that you will receive 
identical messages about the same problem.

If you believe that the message is mistaken, please reply to the first
one with correction and/or additional informations, and do not take
it personally.  We appreciate your patience. :)
**********************************************************************

Additional comments:
 

This report was machine-generated by CPAN::YACSmoke 0.0307.

--

Summary of my perl5 (revision 5 version 8 subversion 8) configuration:
  Platform:
    osname=darwin, osvers=8.8.1, archname=darwin-thread-multi-2level
    uname='darwin windhund.local 8.8.1 darwin kernel version 8.8.1: mon sep 25 
19:42:00 pdt 2006; root:xnu-792.13.8.obj~1release_i386 i386 i386 macbook1,1 
darwin '
    config_args='-Dprefix=/usr/local/perl/5.8.8 -Duseithreads 
-Dccflags=-I/sw/include -Dldflags=-L/sw/lib [EMAIL PROTECTED] [EMAIL PROTECTED] 
-Dmyhostname=windhund -Dmydomain=.schwern.org 
-Dprivlib=/usr/local/perl/5.8.8/lib -Dsiteprefix=/usr/local 
-Dsitelib=/usr/local/lib/site_perl -Dlibpth=/usr/local/lib /sw/lib 
/opt/local/lib /usr/lib -Dnetdb_host_type=const char * 
-Dnetdb_hlen_type=socklen_t -Uinstallusrbinperl'
    hint=recommended, useposix=true, d_sigaction=define
    usethreads=define use5005threads=undef useithreads=define 
usemultiplicity=define
    useperlio=define d_sfio=undef uselargefiles=define usesocks=undef
    use64bitint=undef use64bitall=undef uselongdouble=undef
    usemymalloc=n, bincompat5005=undef
  Compiler:
    cc='cc', ccflags ='-I/sw/include -fno-common -DPERL_DARWIN -no-cpp-precomp 
-fno-strict-aliasing -pipe -Wdeclaration-after-statement -I/opt/local/include',
    optimize='-O3',
    cppflags='-no-cpp-precomp -I/sw/include -fno-common -DPERL_DARWIN 
-no-cpp-precomp -fno-strict-aliasing -pipe -Wdeclaration-after-statement 
-I/opt/local/include'
    ccversion='', gccversion='4.0.1 (Apple Computer, Inc. build 5363)', 
gccosandvers=''
    intsize=4, longsize=4, ptrsize=4, doublesize=8, byteorder=1234
    d_longlong=define, longlongsize=8, d_longdbl=define, longdblsize=16
    ivtype='long', ivsize=4, nvtype='double', nvsize=8, Off_t='off_t', 
lseeksize=8
    alignbytes=8, prototype=define
  Linker and Libraries:
    ld='env MACOSX_DEPLOYMENT_TARGET=10.3 cc', ldflags ='-L/sw/lib 
-L/usr/local/lib -L/opt/local/lib'
    libpth=/usr/local/lib /sw/lib /opt/local/lib /usr/lib
    libs=-lgdbm -ldbm -ldl -lm -lc
    perllibs=-ldl -lm -lc
    libc=/usr/lib/libc.dylib, so=dylib, useshrplib=false, libperl=libperl.a
    gnulibc_version=''
  Dynamic Linking:
    dlsrc=dl_dlopen.xs, dlext=bundle, d_dlsymun=undef, ccdlflags=' '
    cccdlflags=' ', lddlflags='-L/sw/lib -bundle -undefined dynamic_lookup 
-L/usr/local/lib -L/opt/local/lib'

Reply via email to