PATH=/usr/bin:/bin:/Users/fly2400/cpanfly-5.24/var/megalib/bin Start 2018-01-22T02:00:40 ActivePerl-2400 CPAN-2.10 Reading '/Users/fly2400/cpanfly-5.24/var/cpan/Metadata' Database was generated on Sun, 21 Jan 2018 06:54:22 GMT Checksum for /Users/fly2400/cpanfly-5.24/var/cpan/sources/authors/id/M/MG/MGV/Slob-0.002002.tar.gz ok Slob-0.002002/ Slob-0.002002/t/ Slob-0.002002/t/freedict-lzma2.slob Slob-0.002002/t/freedict-uncompressed.slob Slob-0.002002/t/freedict-bz2.slob Slob-0.002002/t/Slob.t Slob-0.002002/t/freedict-zlib.slob Slob-0.002002/Changes Slob-0.002002/README Slob-0.002002/Makefile.PL Slob-0.002002/MANIFEST Slob-0.002002/lib/ Slob-0.002002/lib/Slob.pm Slob-0.002002/META.yml Slob-0.002002/META.json Slob-0.002002/SIGNATURE Configuring M/MG/MGV/Slob-0.002002.tar.gz with Makefile.PL >>> /Users/fly2400/ap2400-300558/bin/perl-dynamic Makefile.PL Warning: prerequisite Compress::Raw::Lzma 0 not found. Checking if your kit is complete... Looks good Have /Users/fly2400/cpanfly-5.24/var/megalib Want /Users/fly2400/ap2400-300558/lib Your perl and your Config.pm seem to have different ideas about the architecture they are running on. Perl thinks: [megalib] Config says: [darwin-thread-multi-2level] This may or may not cause problems. Please check your installation of perl if you have problems building this extension. Generating a Unix-style Makefile Writing Makefile for Slob Writing MYMETA.yml and MYMETA.json MGV/Slob-0.002002.tar.gz /Users/fly2400/ap2400-300558/bin/perl-dynamic Makefile.PL -- OK Running make for M/MG/MGV/Slob-0.002002.tar.gz ---- Unsatisfied dependencies detected during ---- ---- MGV/Slob-0.002002.tar.gz ---- Compress::Raw::Lzma [requires] Running test for module 'Compress::Raw::Lzma' ______________________ D i s t r o P r e f s ______________________ Compress-Raw-Lzma.yml[0] Checksum for /Users/fly2400/cpanfly-5.24/var/cpan/sources/authors/id/P/PM/PMQS/Compress-Raw-Lzma-2.074.tar.gz ok Compress-Raw-Lzma-2.074/ Compress-Raw-Lzma-2.074/lib/ Compress-Raw-Lzma-2.074/lib/Compress/ Compress-Raw-Lzma-2.074/lib/Compress/Raw/ Compress-Raw-Lzma-2.074/lib/Compress/Raw/Lzma.pm Compress-Raw-Lzma-2.074/MANIFEST Compress-Raw-Lzma-2.074/private/ Compress-Raw-Lzma-2.074/private/MakeUtil.pm Compress-Raw-Lzma-2.074/README Compress-Raw-Lzma-2.074/ppport.h Compress-Raw-Lzma-2.074/Changes Compress-Raw-Lzma-2.074/config.in Compress-Raw-Lzma-2.074/Makefile.PL Compress-Raw-Lzma-2.074/typemap Compress-Raw-Lzma-2.074/t/ Compress-Raw-Lzma-2.074/t/001version.t Compress-Raw-Lzma-2.074/t/050interop-xz.t Compress-Raw-Lzma-2.074/t/09limitoutput.t Compress-Raw-Lzma-2.074/t/19nonpv.t Compress-Raw-Lzma-2.074/t/01llzma-generic.t Compress-Raw-Lzma-2.074/t/Test/ Compress-Raw-Lzma-2.074/t/Test/Builder.pm Compress-Raw-Lzma-2.074/t/Test/More.pm Compress-Raw-Lzma-2.074/t/Test/Simple.pm Compress-Raw-Lzma-2.074/t/99pod.t Compress-Raw-Lzma-2.074/t/compress/ Compress-Raw-Lzma-2.074/t/compress/CompTestUtils.pm Compress-Raw-Lzma-2.074/t/02filters.t Compress-Raw-Lzma-2.074/META.json Compress-Raw-Lzma-2.074/META.yml Compress-Raw-Lzma-2.074/fallback/ Compress-Raw-Lzma-2.074/fallback/constants.h Compress-Raw-Lzma-2.074/fallback/constants.xs Compress-Raw-Lzma-2.074/Lzma.xs Applying 1 patch: /Users/fly2400/cpanfly-5.24/etc/distroprefs/Compress-Raw-Lzma.patch /usr/bin/patch -N --fuzz=3 -p1 < Date: Tue, 19 Apr 2016 09:40:01 -0400 Subject: [PATCH] Point to our lzma library --- Makefile.PL | 3 +++ config.in | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) mode change 100644 => 100755 Makefile.PL diff --git a/Makefile.PL b/Makefile.PL old mode 100644 new mode 100755 index 500224f..6a1760d --- a/Makefile.PL +++ b/Makefile.PL @@ -13,6 +13,9 @@ my $LIBLZMA_LIB ; my $LIBLZMA_INCLUDE ; my $LIBS = '-llzma'; +$ENV{LIBLZMA_INCLUDE} = $ENV{FLY_LIBS} . '/include'; +$ENV{LIBLZMA_LIB} = $ENV{FLY_LIBS} . '/lib'; + ParseCONFIG() ; UpDowngrade(getPerlFiles('MANIFEST')) diff --git a/config.in b/config.in index 811ea17..ddd6ccb 100755 --- a/config.in +++ b/config.in @@ -14,8 +14,8 @@ # Controlling the version of liblzma used by Compress::Raw::Lzma # -INCLUDE = /usr/local/include -LIB = /usr/local/lib +INCLUDE = # LIBLZMA_INCLUDE env var will be used +LIB = # LIBLZMA_LIB env var will be used #INCLUDE = ./libraries/5.2.1/include #LIB = ./libraries/5.2.1/lib -- 2.6.4 (Apple Git-63) EOT patching file Makefile.PL Hunk #1 succeeded at 14 (offset 1 line). patching file config.in Configuring P/PM/PMQS/Compress-Raw-Lzma-2.074.tar.gz with Makefile.PL >>> /Users/fly2400/ap2400-300558/bin/perl-dynamic Makefile.PL Up/Downgrade not needed. Parsing config.in... Looks Good. Checking if your kit is complete... Looks good Have /Users/fly2400/cpanfly-5.24/var/megalib Want /Users/fly2400/ap2400-300558/lib Your perl and your Config.pm seem to have different ideas about the architecture they are running on. Perl thinks: [megalib] Config says: [darwin-thread-multi-2level] This may or may not cause problems. Please check your installation of perl if you have problems building this extension. Generating a Unix-style Makefile Writing Makefile for Compress::Raw::Lzma Writing MYMETA.yml and MYMETA.json PMQS/Compress-Raw-Lzma-2.074.tar.gz /Users/fly2400/ap2400-300558/bin/perl-dynamic Makefile.PL -- OK Running make for P/PM/PMQS/Compress-Raw-Lzma-2.074.tar.gz >>> make cp lib/Compress/Raw/Lzma.pm blib/lib/Compress/Raw/Lzma.pm AutoSplitting blib/lib/Compress/Raw/Lzma.pm (blib/lib/auto/Compress/Raw/Lzma) Running Mkbootstrap for Lzma () chmod 644 "Lzma.bs" "/Users/fly2400/ap2400-300558/bin/perl-dynamic" -MExtUtils::Command::MM -e 'cp_nonempty' -- Lzma.bs blib/arch/auto/Compress/Raw/Lzma/Lzma.bs 644 "/Users/fly2400/ap2400-300558/bin/perl-dynamic" "/Users/fly2400/cpanfly-5.24/var/megalib/ExtUtils/xsubpp" -typemap '/Users/fly2400/ap2400-300558/lib/ExtUtils/typemap' -typemap '/Users/fly2400/cpanfly-5.24/var/tmp/cpan_build/Compress-Raw-Lzma-2.074-4X4aFo/typemap' Lzma.xs > Lzma.xsc mv Lzma.xsc Lzma.c gcc -c -I/Users/fly2400/cpanfly-5.24/var/libs/include -fno-common -DPERL_DARWIN -no-cpp-precomp -mmacosx-version-min=10.9 -arch x86_64 -DUSE_SITECUSTOMIZE -DPERL_RELOCATABLE_INCPUSH -fno-strict-aliasing -pipe -fstack-protector -DPERL_USE_SAFE_PUTENV -O3 -DVERSION=\"2.074\" -DXS_VERSION=\"2.074\" "-I/Users/fly2400/ap2400-300558/lib/CORE" -Wall -Wno-comment Lzma.c Lzma.xs:18:10: fatal error: 'lzma.h' file not found #include "lzma.h" ^ 1 error generated. make: *** [Lzma.o] Error 1 PMQS/Compress-Raw-Lzma-2.074.tar.gz make -- NOT OK MGV/Slob-0.002002.tar.gz Has already been unwrapped into directory /Users/fly2400/cpanfly-5.24/var/tmp/cpan_build/Slob-0.002002-7JrGpA MGV/Slob-0.002002.tar.gz Has already been prepared Running make for M/MG/MGV/Slob-0.002002.tar.gz Warning: Prerequisite 'Compress::Raw::Lzma => 0' for 'MGV/Slob-0.002002.tar.gz' failed when processing 'PMQS/Compress-Raw-Lzma-2.074.tar.gz' with 'make => NO'. Continuing, but chances to succeed are limited. >>> make cp lib/Slob.pm blib/lib/Slob.pm Manifying 1 pod document MGV/Slob-0.002002.tar.gz make -- OK Running make test >>> make test TEST_VERBOSE=1 PERL_DL_NONLAZY=1 "/Users/fly2400/ap2400-300558/bin/perl-dynamic" "-MExtUtils::Command::MM" "-MTest::Harness" "-e" "undef *Test::Harness::Switches; test_harness(1, 'blib/lib', 'blib/arch')" t/*.t # Failed test 'use Slob;' # at t/Slob.t line 6. # Tried to use 'Slob'. # Error: Can't locate Compress/Raw/Lzma.pm in @INC (you may need to install the Compress::Raw::Lzma module) (@INC contains: /Users/fly2400/cpanfly-5.24/var/tmp/cpan_build/Slob-0.002002-7JrGpA/blib/lib /Users/fly2400/cpanfly-5.24/var/tmp/cpan_build/Slob-0.002002-7JrGpA/blib/arch /Users/fly2400/cpanfly-5.24/var/megalib /Users/fly2400/cpanfly-5.24/var/megalib /Users/fly2400/Library/ActivePerl-5.24/lib /Users/fly2400/ap2400-300558/site/lib /Users/fly2400/ap2400-300558/lib .) at /Users/fly2400/cpanfly-5.24/var/tmp/cpan_build/Slob-0.002002-7JrGpA/blib/lib/Slob.pm line 14. # BEGIN failed--compilation aborted at /Users/fly2400/cpanfly-5.24/var/tmp/cpan_build/Slob-0.002002-7JrGpA/blib/lib/Slob.pm line 14. # Compilation failed in require at t/Slob.t line 6. # BEGIN failed--compilation aborted at t/Slob.t line 6. Can't locate object method "new" via package "Slob" at t/Slob.t line 10. # Looks like your test exited with 255 just after 1. t/Slob.t .. 1..25 not ok 1 - use Slob; # Now using t/freedict-bz2.slob Dubious, test returned 255 (wstat 65280, 0xff00) Failed 25/25 subtests Test Summary Report ------------------- t/Slob.t (Wstat: 65280 Tests: 1 Failed: 1) Failed test: 1 Non-zero exit status: 255 Parse errors: Bad plan. You planned 25 tests but ran 1. Files=1, Tests=1, 0 wallclock secs ( 0.02 usr 0.00 sys + 0.05 cusr 0.01 csys = 0.08 CPU) Result: FAIL Failed 1/1 test programs. 1/1 subtests failed. make: *** [test_dynamic] Error 255 MGV/Slob-0.002002.tar.gz one dependency not OK (Compress::Raw::Lzma); additionally test harness failed make test TEST_VERBOSE=1 -- NOT OK //hint// to see the cpan-testers results for installing this module, try: reports MGV/Slob-0.002002.tar.gz Finished 2018-01-22T02:00:43