1. * Package: dev-perl/Coro-6.80.0
  2. * Repository: gentoo
  3. * Maintainer: perl@gentoo.org
  4. * USE: amd64 elibc_glibc kernel_linux multilib test userland_GNU
  5. * FEATURES: sandbox test userpriv usersandbox
  6. >>> Unpacking source...
  7. >>> Unpacking Coro-6.08.tar.gz to /tmp/portage/dev-perl/Coro-6.80.0/work
  8. >>> Source unpacked in /tmp/portage/dev-perl/Coro-6.80.0/work
  9. >>> Preparing source in /tmp/portage/dev-perl/Coro-6.80.0/work/Coro-6.08 ...
  10. >>> Source prepared.
  11. >>> Configuring source in /tmp/portage/dev-perl/Coro-6.80.0/work/Coro-6.08 ...
  12. * Using ExtUtils::MakeMaker
  13. * perl Makefile.PL PREFIX=/usr INSTALLDIRS=vendor INSTALLMAN3DIR=none DESTDIR=/tmp/portage/dev-perl/Coro-6.80.0/image/
  14. *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
  15. Event version 1.20 found, building Event support.
  16. EV version 4.11 found, building EV support.
  17. Checking if your kit is complete...
  18. Looks good
  19. *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
  20. Coro has a number of configuration options. Due to its maturity, the
  21. defaults that Coro chooses are usually fine, so you can decide to skip
  22. these questions. Only if something went wrong you should select 'n'
  23. here and manually configure Coro, and, of course, report this to the
  24. maintainer :)
  25. Skip further questions and use defaults (y/n)? [y] y
  26. *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
  27. Coro can use a number of methods to implement coroutines at the C
  28. level. The default chosen is based on your current confguration and is
  29. correct in most cases, but you still can chose between these alternatives:
  30. u The unix 'ucontext.h' functions are relatively new and not implemented
  31. or well-tested in older unices. They allow very fast coroutine creation
  32. and reasonably fast switching. They are, however, usually slower than
  33. the other alternatives due to an extra syscall done by swapcontext. And
  34. while nominally most portable (it's the only POSIX-standardised
  35. interface for coroutines), ucontext functions are, as usual, broken on
  36. most/all BSDs.
  37. s If the ucontext functions are not working or you don't want
  38. to use them for other reasons you can try a workaround using
  39. setjmp/longjmp/sigaltstack (also standard unix functions). Coroutine
  40. creation is rather slow, but switching is very fast (often much faster
  41. than with the ucontext functions). Unfortunately, glibc-2.1 and
  42. below don't even feature a working sigaltstack. You cannot use this
  43. implementation if some other code uses SIGUSR2 or you plan to create
  44. coroutines from an alternative signal stack, as both are being used for
  45. coroutine creation.
  46. a Handcoded assembly. This is the fastest and most compatible method,
  47. with the least side effects, if it works, that is. It has been tested
  48. on GNU/Linux x86 and x86_64 systems and should work on all x86/x86_64
  49. systems using the SVR ELF ABI (it is also reported to be working on
  50. Strawberry Perl for Windows using MinGW). This is the recommended
  51. method on supported platforms. When it doesn't work, use another
  52. method, such as (s)etjmp/longjmp.
  53. l GNU/Linux. Very old GNU/Linux systems (glibc-2.1 and below) need
  54. this hack. Since it is very linux-specific it is also quite fast and
  55. recommended even for newer versions; when it works, that is (currently
  56. x86 and a few others only. If it compiles, it's usually ok). Newer
  57. glibc versions (>= 2.5) stop working with this implementation however.
  58. i IRIX. For some reason, SGI really does not like to follow POSIX (does
  59. that surprise you?), so this workaround might be needed (it's fast),
  60. although [s] and [u] should also work now.
  61. w Microsoft Windows. Try this on Microsoft Windows when using Cygwin or
  62. the MSVC compilers (e.g. ActiveState Perl, but see "a" for Strawberry
  63. Perl), although, as there is no standard on how to do this under
  64. windows, different environments might work differently. Doh.
  65. p Use pthread API. Try to avoid this option, it was only created to
  66. make a point about the programming language shootout. It is unlikely
  67. to work with perls that have windows process emulation enabled ("perl
  68. threads"). It is also likely the slowest method of implementing
  69. coroutines. It might work fine as a last resort, however, as the
  70. pthread API is slightly better tested than ucontext functions for
  71. example. Of course, not on BSDs, who usually have very broken pthread
  72. implementations.
  73. Coro tries hard to come up with a suitable default for most systems,
  74. so pressing return at the prompt usually does the right thing. If you
  75. experience problems (e.g. make test fails) then you should experiment with
  76. this setting.
  77. Use which implementation,
  78. <s>etjmp, <u>ctx, <a>sm, <i>rix, <l>inux, <w>indows or <p>threads? [a] a
  79. Using handcoded assembler implementation
  80. *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
  81. Per-context stack size factor: Depending on your settings, Coro tries to
  82. share the C stacks is creates as much as possible, but sometimes it needs
  83. to allocate a new one. This setting controls the maximum size that gets
  84. allocated, and should not be set too high, as memory and address space
  85. still is wasted even if it's not fully used. The value entered will be
  86. multiplied by sizeof(long), which is usually 4 on 32-bit systems, and 8 on
  87. 64-bit systems.
  88. A setting of 16384 (the default) therefore corresponds to a 64k..128k
  89. stack, which usually is ample space (you might even want to try 8192 or
  90. lower if your program creates many coroutines).
  91. On systems supporting mmap and dynamic memory management, the actual
  92. memory usually gets allocated on demand, but with many large stacks you
  93. can still run out of address space on your typical 32 bit platform (not to
  94. forget the pagetables).
  95. Some perls (mostly threaded ones and perl compiled under linux 2.6) and
  96. some programs (inefficient regexes can use a lot of stack space) may
  97. need much, much more: If Coro segfaults with weird backtraces (e.g. in a
  98. function prologue) or in t/10_bugs.t, you might want to increase this to
  99. 65536 or more.
  100. The default should be fine, and can be changed at runtime with
  101. Coro::State::cctx_stacksize.
  102. C stack size factor? [16384] 16384
  103. using a stacksize of 16384 * sizeof(long)
  104. *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
  105. Coro can optionally put a guard area before each stack segment: When the
  106. stack is too small and the access is not too far outside the stack (i.e.
  107. within the guard area), then the program will safely segfault instead of
  108. running into other data. The cost is some additional overhead with is
  109. usually negligible, and extra use of address space.
  110. The guard area size currently needs to be specified in pages (typical
  111. pagesizes are 4k and 8k). The guard area is only enabled on a few
  112. hardcoded architectures and is ignored on others. The actual preprocessor
  113. expression disables this feature if:
  114. !__i386 && !__x86_64 && !__powerpc && !__m68k
  115. && !__alpha && !__mips && !__sparc64
  116. The default, as usual, should be just fine.
  117. Number of guard pages (0 disables)? [4] 4
  118. *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
  119. Coro can tell valgrind about its stacks and so reduce spurious warnings
  120. where valgrind would otherwise complain about possible stack switches.
  121. Enabling this does not incur noticable runtime or memory overhead, but it
  122. requires that you have the <valgrind/valgrind.h> header file available.
  123. Valgrind support is completely optional, so disabling it is the safe
  124. choice.
  125. Enable valgrind support (y/n)? [y] y
  126. *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
  127. Coro can use (or even trick) some perl functions into doing what it needs
  128. instead of relying on (some) of its own functions. This might increase
  129. chances that it compiles and works, but it could just as well result in
  130. memory leaks, crashes or silent data corruption. It certainly does result
  131. in slightly slower speed and higher memory consumption, though, so YOU
  132. SHOULD ENABLE THIS OPTION ONLY AS A LAST RESORT.
  133. Prefer perl functions over coro functions (y/n)? [n] n
  134. *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
  135. Coro can use a simple JIT compiler to compile a part of the thread switch
  136. function at runtime. On perls with windows process emulation (most!),
  137. this results in a 50% speed improvement. On sane perls, the gain is much
  138. less, usually around 5%. If you enable this option, then the JIT will
  139. be enabled, on compatible operating systems and CPUs (currently only
  140. x86/amd64 on certain unix clones). Otherwise, it will be disabled. It
  141. should be safe to leave on - this setting is only here so you can switch
  142. it off in case of problems.
  143. Try to use the JIT compiler, if available? [y] y
  144. *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
  145. Coro has experimental support for cloning states. This can be used
  146. to implement a scheme-like call/cc. However, this doesn't add to the
  147. expressiveness in general, and is likely perl-version specific (and perl
  148. 5.12 deliberately removed support for it). As such, it is disabled by
  149. default. Enable it when you want to play around with it, but note that it
  150. isn't supported, and unlikely ever will be. It exists mainly to prove that
  151. it could be done - if only it were useful for something.
  152. Implement Coro::State->clone method (y/n)? [n] n
  153. *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
  154. Writing Makefile for Coro::State
  155. Writing MYMETA.yml and MYMETA.json
  156. Writing Makefile for Coro::Event
  157. Writing MYMETA.yml and MYMETA.json
  158. Writing Makefile for Coro::EV
  159. Writing MYMETA.yml and MYMETA.json
  160. Writing Makefile for Coro
  161. Writing MYMETA.yml and MYMETA.json
  162. >>> Source configured.
  163. >>> Compiling source in /tmp/portage/dev-perl/Coro-6.80.0/work/Coro-6.08 ...
  164. * emake OTHERLDFLAGS=-Wl,-O1 -Wl,--as-needed
  165. make -j24 'OTHERLDFLAGS=-Wl,-O1 -Wl,--as-needed'
  166. make[1]: Entering directory `/tmp/portage/dev-perl/Coro-6.80.0/work/Coro-6.08/Coro'
  167. /usr/bin/perl5.16.0 /usr/lib64/perl5/vendor_perl/5.16.0/ExtUtils/xsubpp -typemap /usr/lib64/perl5/5.16.0/ExtUtils/typemap -typemap typemap State.xs > State.xsc && mv State.xsc State.c
  168. cp Coro/Select.pm blib/lib/Coro/Select.pm
  169. cp Coro/State.pm blib/lib/Coro/State.pm
  170. Running Mkbootstrap for Coro::State ()
  171. cp Coro/Debug.pm blib/lib/Coro/Debug.pm
  172. cp Coro/RWLock.pm blib/lib/Coro/RWLock.pm
  173. cp Coro/LWP.pm blib/lib/Coro/LWP.pm
  174. cp Coro/jit-amd64-unix.pl blib/lib/Coro/jit-amd64-unix.pl
  175. cp Coro/jit-x86-unix.pl blib/lib/Coro/jit-x86-unix.pl
  176. cp Coro/Semaphore.pm blib/lib/Coro/Semaphore.pm
  177. cp Coro/Timer.pm blib/lib/Coro/Timer.pm
  178. cp Coro/CoroAPI.h blib/lib/Coro/CoroAPI.h
  179. cp Coro.pm blib/lib/Coro.pm
  180. cp Coro/Signal.pm blib/lib/Coro/Signal.pm
  181. cp Coro/AnyEvent.pm blib/lib/Coro/AnyEvent.pm
  182. Skip ../blib/lib/Coro/jit-amd64-unix.pl (unchanged)
  183. cp Util.pm ../blib/lib/Coro/Util.pm
  184. cp Coro/BDB.pm blib/lib/Coro/BDB.pm
  185. cp Channel.pm ../blib/lib/Coro/Channel.pm
  186. cp Coro/SemaphoreSet.pm blib/lib/Coro/SemaphoreSet.pm
  187. Skip blib/lib/Coro/Util.pm (unchanged)
  188. cp Specific.pm ../blib/lib/Coro/Specific.pm
  189. cp Coro/Storable.pm blib/lib/Coro/Storable.pm
  190. Skip ../blib/lib/Coro/BDB.pm (unchanged)
  191. Skip ../blib/lib/Coro/AnyEvent.pm (unchanged)
  192. Skip ../blib/lib/Coro/LWP.pm (unchanged)
  193. Skip ../blib/lib/Coro/SemaphoreSet.pm (unchanged)
  194. cp Coro/AIO.pm blib/lib/Coro/AIO.pm
  195. Skip ../blib/lib/Coro/Semaphore.pm (unchanged)
  196. cp MakeMaker.pm ../blib/lib/Coro/MakeMaker.pm
  197. cp Coro/Handle.pm blib/lib/Coro/Handle.pm
  198. Skip ../blib/lib/Coro/AIO.pm (unchanged)
  199. Skip ../blib/lib/Coro/Timer.pm (unchanged)
  200. Skip ../blib/lib/Coro/Debug.pm (unchanged)
  201. cp Socket.pm ../blib/lib/Coro/Socket.pm
  202. Skip blib/lib/Coro/Specific.pm (unchanged)
  203. Skip blib/lib/Coro/Socket.pm (unchanged)
  204. Skip blib/lib/Coro/Channel.pm (unchanged)
  205. Skip blib/lib/Coro/MakeMaker.pm (unchanged)
  206. Skip ../blib/lib/Coro/State.pm (unchanged)
  207. Skip ../blib/lib/Coro/RWLock.pm (unchanged)
  208. Skip ../blib/lib/Coro/jit-x86-unix.pl (unchanged)
  209. Skip ../blib/lib/Coro/Signal.pm (unchanged)
  210. cp Intro.pod ../blib/lib/Coro/Intro.pod
  211. Skip ../blib/lib/Coro/Handle.pm (unchanged)
  212. Skip ../blib/lib/Coro/Select.pm (unchanged)
  213. Skip ../blib/lib/Coro/Storable.pm (unchanged)
  214. chmod 644 State.bs
  215. cp State.bs ../blib/arch/auto/Coro/State/State.bs
  216. chmod 644 ../blib/arch/auto/Coro/State/State.bs
  217. Warning: Aliases 'is_zombie' and 'is_destroyed' have identical values in State.xs, line 3660
  218. x86_64-pc-linux-gnu-gcc -c -fno-strict-aliasing -pipe -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -O2 -pipe -ggdb -march=native -ftracer -DVERSION=\"6.08\" -DXS_VERSION=\"6.08\" -fPIC "-I/usr/lib64/perl5/5.16.0/x86_64-linux/CORE" -DHAVE_MMAP -DCORO_ASM -DCORO_STACKSIZE=16384 -DCORO_STACKGUARD=4 -DCORO_USE_VALGRIND=1 -DCORO_JIT=1 State.c
  219. rm -f ../blib/arch/auto/Coro/State/State.so
  220. x86_64-pc-linux-gnu-gcc -shared -O2 -pipe -ggdb -march=native -ftracer -Wl,-O1 -Wl,--as-needed State.o -Wl,-O1 -Wl,--as-needed -o ../blib/arch/auto/Coro/State/State.so \
  221. \
  222. chmod 755 ../blib/arch/auto/Coro/State/State.so
  223. Manifying ../blib/man3/Coro::Util.3pm
  224. Manifying ../blib/man3/Coro::Channel.3pm
  225. Manifying ../blib/man3/Coro::Specific.3pm
  226. Manifying ../blib/man3/Coro::BDB.3pm
  227. Manifying ../blib/man3/Coro::AnyEvent.3pm
  228. Manifying ../blib/man3/Coro::LWP.3pm
  229. Manifying ../blib/man3/Coro::SemaphoreSet.3pm
  230. Manifying ../blib/man3/Coro::Semaphore.3pm
  231. Manifying ../blib/man3/Coro::MakeMaker.3pm
  232. Manifying ../blib/man3/Coro::AIO.3pm
  233. Manifying ../blib/man3/Coro::Timer.3pm
  234. Manifying ../blib/man3/Coro::Debug.3pm
  235. Manifying ../blib/man3/Coro::Socket.3pm
  236. Manifying ../blib/man3/Coro::State.3pm
  237. Manifying ../blib/man3/Coro::RWLock.3pm
  238. Manifying ../blib/man3/Coro::Signal.3pm
  239. Manifying ../blib/man3/Coro::Intro.3pm
  240. Manifying ../blib/man3/Coro::Handle.3pm
  241. Manifying ../blib/man3/Coro::Storable.3pm
  242. Manifying ../blib/man3/Coro::Select.3pm
  243. make[1]: Leaving directory `/tmp/portage/dev-perl/Coro-6.80.0/work/Coro-6.08/Coro'
  244. make[1]: Entering directory `/tmp/portage/dev-perl/Coro-6.80.0/work/Coro-6.08/Event'
  245. /usr/bin/perl5.16.0 /usr/lib64/perl5/vendor_perl/5.16.0/ExtUtils/xsubpp -typemap /usr/lib64/perl5/5.16.0/ExtUtils/typemap Event.xs > Event.xsc && mv Event.xsc Event.c
  246. Running Mkbootstrap for Coro::Event ()
  247. cp Event.pm ../blib/lib/Coro/Event.pm
  248. chmod 644 Event.bs
  249. cp Event.bs ../blib/arch/auto/Coro/Event/Event.bs
  250. chmod 644 ../blib/arch/auto/Coro/Event/Event.bs
  251. x86_64-pc-linux-gnu-gcc -c -I/usr/lib64/perl5/vendor_perl/5.16.0/x86_64-linux/Event -fno-strict-aliasing -pipe -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -O2 -pipe -ggdb -march=native -ftracer -DVERSION=\"6.08\" -DXS_VERSION=\"6.08\" -fPIC "-I/usr/lib64/perl5/5.16.0/x86_64-linux/CORE" -DHAVE_EVENT=1 -DHAVE_EV=1 Event.c
  252. rm -f ../blib/arch/auto/Coro/Event/Event.so
  253. x86_64-pc-linux-gnu-gcc -shared -O2 -pipe -ggdb -march=native -ftracer -Wl,-O1 -Wl,--as-needed Event.o -Wl,-O1 -Wl,--as-needed -o ../blib/arch/auto/Coro/Event/Event.so \
  254. \
  255. chmod 755 ../blib/arch/auto/Coro/Event/Event.so
  256. Manifying ../blib/man3/Coro::Event.3pm
  257. make[1]: Leaving directory `/tmp/portage/dev-perl/Coro-6.80.0/work/Coro-6.08/Event'
  258. make[1]: Entering directory `/tmp/portage/dev-perl/Coro-6.80.0/work/Coro-6.08/EV'
  259. /usr/bin/perl5.16.0 /usr/lib64/perl5/vendor_perl/5.16.0/ExtUtils/xsubpp -typemap /usr/lib64/perl5/5.16.0/ExtUtils/typemap EV.xs > EV.xsc && mv EV.xsc EV.c
  260. Running Mkbootstrap for Coro::EV ()
  261. cp EV.pm ../blib/lib/Coro/EV.pm
  262. chmod 644 EV.bs
  263. cp EV.bs ../blib/arch/auto/Coro/EV/EV.bs
  264. chmod 644 ../blib/arch/auto/Coro/EV/EV.bs
  265. x86_64-pc-linux-gnu-gcc -c -I/usr/lib64/perl5/vendor_perl/5.16.0/x86_64-linux/EV -I/usr/lib64/perl5/vendor_perl/5.16.0/x86_64-linux -fno-strict-aliasing -pipe -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -O2 -pipe -ggdb -march=native -ftracer -DVERSION=\"6.08\" -DXS_VERSION=\"6.08\" -fPIC "-I/usr/lib64/perl5/5.16.0/x86_64-linux/CORE" -DHAVE_EVENT=1 -DHAVE_EV=1 EV.c
  266. rm -f ../blib/arch/auto/Coro/EV/EV.so
  267. x86_64-pc-linux-gnu-gcc -shared -O2 -pipe -ggdb -march=native -ftracer -Wl,-O1 -Wl,--as-needed EV.o -Wl,-O1 -Wl,--as-needed -o ../blib/arch/auto/Coro/EV/EV.so \
  268. \
  269. chmod 755 ../blib/arch/auto/Coro/EV/EV.so
  270. Manifying ../blib/man3/Coro::EV.3pm
  271. make[1]: Leaving directory `/tmp/portage/dev-perl/Coro-6.80.0/work/Coro-6.08/EV'
  272. >>> Source compiled.
  273. make -j24 test TEST_VERBOSE=1
  274. make[1]: Entering directory `/tmp/portage/dev-perl/Coro-6.80.0/work/Coro-6.08/Coro'
  275. make[1]: Entering directory `/tmp/portage/dev-perl/Coro-6.80.0/work/Coro-6.08/Coro'
  276. No tests defined for Coro::State extension.
  277. make[1]: Leaving directory `/tmp/portage/dev-perl/Coro-6.80.0/work/Coro-6.08/Coro'
  278. make[1]: Entering directory `/tmp/portage/dev-perl/Coro-6.80.0/work/Coro-6.08/Event'
  279. PERL_DL_NONLAZY=1 /usr/bin/perl5.16.0 "-MExtUtils::Command::MM" "-e" "test_harness(1, '../blib/lib', '../blib/arch')" t/*.t
  280. make[1]: Leaving directory `/tmp/portage/dev-perl/Coro-6.80.0/work/Coro-6.08/Coro'
  281. make[1]: Entering directory `/tmp/portage/dev-perl/Coro-6.80.0/work/Coro-6.08/Event'
  282. t/00_basic.t ....
  283. 1..5
  284. Failed 5/5 subtests
  285. t/01_unblock.t .. No subtests run
  286. Test Summary Report
  287. -------------------
  288. t/00_basic.t (Wstat: 11 Tests: 0 Failed: 0)
  289. Non-zero wait status: 11
  290. Parse errors: Bad plan. You planned 5 tests but ran 0.
  291. t/01_unblock.t (Wstat: 11 Tests: 0 Failed: 0)
  292. Non-zero wait status: 11
  293. Parse errors: No plan found in TAP output
  294. Files=2, Tests=0, 0 wallclock secs ( 0.03 usr 0.01 sys + 0.03 cusr 0.01 csys = 0.08 CPU)
  295. Result: FAIL
  296. Failed 2/2 test programs. 0/0 subtests failed.
  297. make[1]: Leaving directory `/tmp/portage/dev-perl/Coro-6.80.0/work/Coro-6.08/Event'
  298. make[1]: *** [test_dynamic] Error 255
  299. make[1]: Leaving directory `/tmp/portage/dev-perl/Coro-6.80.0/work/Coro-6.08/Event'
  300. make: *** [subdirs-test] Error 2
  301. make: *** Waiting for unfinished jobs....
  302. make[1]: Entering directory `/tmp/portage/dev-perl/Coro-6.80.0/work/Coro-6.08/EV'
  303. make[1]: Leaving directory `/tmp/portage/dev-perl/Coro-6.80.0/work/Coro-6.08/EV'
  304. * ERROR: dev-perl/Coro-6.80.0 failed (test phase):
  305. * emake failed
  306. *
  307. * If you need support, post the output of `emerge --info '=dev-perl/Coro-6.80.0'`,
  308. * the complete build log and the output of `emerge -pqv '=dev-perl/Coro-6.80.0'`.
  309. * The complete build log is located at '/var/log/portage/dev-perl:Coro-6.80.0:20120619-212130.log'.
  310. * For convenience, a symlink to the build log is located at '/tmp/portage/dev-perl/Coro-6.80.0/temp/build.log'.
  311. * The ebuild environment file is located at '/tmp/portage/dev-perl/Coro-6.80.0/temp/environment'.
  312. * Working directory: '/tmp/portage/dev-perl/Coro-6.80.0/work/Coro-6.08'
  313. * S: '/tmp/portage/dev-perl/Coro-6.80.0/work/Coro-6.08'
  314. >>> Install Coro-6.80.0 into /tmp/portage/dev-perl/Coro-6.80.0/image/ category dev-perl
  315. make -j24 pure_install
  316. make[1]: Entering directory `/tmp/portage/dev-perl/Coro-6.80.0/work/Coro-6.08/Coro'
  317. make[1]: Leaving directory `/tmp/portage/dev-perl/Coro-6.80.0/work/Coro-6.08/Coro'
  318. make[1]: Entering directory `/tmp/portage/dev-perl/Coro-6.80.0/work/Coro-6.08/Event'
  319. make[1]: Leaving directory `/tmp/portage/dev-perl/Coro-6.80.0/work/Coro-6.08/Event'
  320. make[1]: Entering directory `/tmp/portage/dev-perl/Coro-6.80.0/work/Coro-6.08/EV'
  321. make[1]: Leaving directory `/tmp/portage/dev-perl/Coro-6.80.0/work/Coro-6.08/EV'
  322. Files found in blib/arch: installing files in blib/lib into architecture dependent library tree
  323. Installing /tmp/portage/dev-perl/Coro-6.80.0/image/usr/lib64/perl5/vendor_perl/5.16.0/x86_64-linux/auto/Coro/EV/EV.so
  324. Installing /tmp/portage/dev-perl/Coro-6.80.0/image/usr/lib64/perl5/vendor_perl/5.16.0/x86_64-linux/auto/Coro/EV/EV.bs
  325. Installing /tmp/portage/dev-perl/Coro-6.80.0/image/usr/lib64/perl5/vendor_perl/5.16.0/x86_64-linux/auto/Coro/Event/Event.so
  326. Installing /tmp/portage/dev-perl/Coro-6.80.0/image/usr/lib64/perl5/vendor_perl/5.16.0/x86_64-linux/auto/Coro/Event/Event.bs
  327. Installing /tmp/portage/dev-perl/Coro-6.80.0/image/usr/lib64/perl5/vendor_perl/5.16.0/x86_64-linux/auto/Coro/State/State.so
  328. Installing /tmp/portage/dev-perl/Coro-6.80.0/image/usr/lib64/perl5/vendor_perl/5.16.0/x86_64-linux/auto/Coro/State/State.bs
  329. Installing /tmp/portage/dev-perl/Coro-6.80.0/image/usr/lib64/perl5/vendor_perl/5.16.0/x86_64-linux/Coro.pm
  330. Installing /tmp/portage/dev-perl/Coro-6.80.0/image/usr/lib64/perl5/vendor_perl/5.16.0/x86_64-linux/Coro/EV.pm
  331. Installing /tmp/portage/dev-perl/Coro-6.80.0/image/usr/lib64/perl5/vendor_perl/5.16.0/x86_64-linux/Coro/Event.pm
  332. Installing /tmp/portage/dev-perl/Coro-6.80.0/image/usr/lib64/perl5/vendor_perl/5.16.0/x86_64-linux/Coro/Intro.pod
  333. Installing /tmp/portage/dev-perl/Coro-6.80.0/image/usr/lib64/perl5/vendor_perl/5.16.0/x86_64-linux/Coro/Socket.pm
  334. Installing /tmp/portage/dev-perl/Coro-6.80.0/image/usr/lib64/perl5/vendor_perl/5.16.0/x86_64-linux/Coro/Handle.pm
  335. Installing /tmp/portage/dev-perl/Coro-6.80.0/image/usr/lib64/perl5/vendor_perl/5.16.0/x86_64-linux/Coro/MakeMaker.pm
  336. Installing /tmp/portage/dev-perl/Coro-6.80.0/image/usr/lib64/perl5/vendor_perl/5.16.0/x86_64-linux/Coro/AIO.pm
  337. Installing /tmp/portage/dev-perl/Coro-6.80.0/image/usr/lib64/perl5/vendor_perl/5.16.0/x86_64-linux/Coro/Storable.pm
  338. Installing /tmp/portage/dev-perl/Coro-6.80.0/image/usr/lib64/perl5/vendor_perl/5.16.0/x86_64-linux/Coro/Specific.pm
  339. Installing /tmp/portage/dev-perl/Coro-6.80.0/image/usr/lib64/perl5/vendor_perl/5.16.0/x86_64-linux/Coro/SemaphoreSet.pm
  340. Installing /tmp/portage/dev-perl/Coro-6.80.0/image/usr/lib64/perl5/vendor_perl/5.16.0/x86_64-linux/Coro/Channel.pm
  341. Installing /tmp/portage/dev-perl/Coro-6.80.0/image/usr/lib64/perl5/vendor_perl/5.16.0/x86_64-linux/Coro/BDB.pm
  342. Installing /tmp/portage/dev-perl/Coro-6.80.0/image/usr/lib64/perl5/vendor_perl/5.16.0/x86_64-linux/Coro/Util.pm
  343. Installing /tmp/portage/dev-perl/Coro-6.80.0/image/usr/lib64/perl5/vendor_perl/5.16.0/x86_64-linux/Coro/AnyEvent.pm
  344. Installing /tmp/portage/dev-perl/Coro-6.80.0/image/usr/lib64/perl5/vendor_perl/5.16.0/x86_64-linux/Coro/Signal.pm
  345. Installing /tmp/portage/dev-perl/Coro-6.80.0/image/usr/lib64/perl5/vendor_perl/5.16.0/x86_64-linux/Coro/CoroAPI.h
  346. Installing /tmp/portage/dev-perl/Coro-6.80.0/image/usr/lib64/perl5/vendor_perl/5.16.0/x86_64-linux/Coro/Timer.pm
  347. Installing /tmp/portage/dev-perl/Coro-6.80.0/image/usr/lib64/perl5/vendor_perl/5.16.0/x86_64-linux/Coro/Semaphore.pm
  348. Installing /tmp/portage/dev-perl/Coro-6.80.0/image/usr/lib64/perl5/vendor_perl/5.16.0/x86_64-linux/Coro/jit-x86-unix.pl
  349. Installing /tmp/portage/dev-perl/Coro-6.80.0/image/usr/lib64/perl5/vendor_perl/5.16.0/x86_64-linux/Coro/jit-amd64-unix.pl
  350. Installing /tmp/portage/dev-perl/Coro-6.80.0/image/usr/lib64/perl5/vendor_perl/5.16.0/x86_64-linux/Coro/LWP.pm
  351. Installing /tmp/portage/dev-perl/Coro-6.80.0/image/usr/lib64/perl5/vendor_perl/5.16.0/x86_64-linux/Coro/RWLock.pm
  352. Installing /tmp/portage/dev-perl/Coro-6.80.0/image/usr/lib64/perl5/vendor_perl/5.16.0/x86_64-linux/Coro/Debug.pm
  353. Installing /tmp/portage/dev-perl/Coro-6.80.0/image/usr/lib64/perl5/vendor_perl/5.16.0/x86_64-linux/Coro/State.pm
  354. Installing /tmp/portage/dev-perl/Coro-6.80.0/image/usr/lib64/perl5/vendor_perl/5.16.0/x86_64-linux/Coro/Select.pm
  355. Installing /tmp/portage/dev-perl/Coro-6.80.0/image/usr/share/man/man3/Coro::EV.3pm
  356. Installing /tmp/portage/dev-perl/Coro-6.80.0/image/usr/share/man/man3/Coro::Event.3pm
  357. Installing /tmp/portage/dev-perl/Coro-6.80.0/image/usr/share/man/man3/Coro::Select.3pm
  358. Installing /tmp/portage/dev-perl/Coro-6.80.0/image/usr/share/man/man3/Coro::Storable.3pm
  359. Installing /tmp/portage/dev-perl/Coro-6.80.0/image/usr/share/man/man3/Coro::Handle.3pm
  360. Installing /tmp/portage/dev-perl/Coro-6.80.0/image/usr/share/man/man3/Coro::Intro.3pm
  361. Installing /tmp/portage/dev-perl/Coro-6.80.0/image/usr/share/man/man3/Coro::Signal.3pm
  362. Installing /tmp/portage/dev-perl/Coro-6.80.0/image/usr/share/man/man3/Coro::RWLock.3pm
  363. Installing /tmp/portage/dev-perl/Coro-6.80.0/image/usr/share/man/man3/Coro::State.3pm
  364. Installing /tmp/portage/dev-perl/Coro-6.80.0/image/usr/share/man/man3/Coro::Socket.3pm
  365. Installing /tmp/portage/dev-perl/Coro-6.80.0/image/usr/share/man/man3/Coro::Debug.3pm
  366. Installing /tmp/portage/dev-perl/Coro-6.80.0/image/usr/share/man/man3/Coro::Timer.3pm
  367. Installing /tmp/portage/dev-perl/Coro-6.80.0/image/usr/share/man/man3/Coro::AIO.3pm
  368. Installing /tmp/portage/dev-perl/Coro-6.80.0/image/usr/share/man/man3/Coro::MakeMaker.3pm
  369. Installing /tmp/portage/dev-perl/Coro-6.80.0/image/usr/share/man/man3/Coro::Semaphore.3pm
  370. Installing /tmp/portage/dev-perl/Coro-6.80.0/image/usr/share/man/man3/Coro::SemaphoreSet.3pm
  371. Installing /tmp/portage/dev-perl/Coro-6.80.0/image/usr/share/man/man3/Coro::LWP.3pm
  372. Installing /tmp/portage/dev-perl/Coro-6.80.0/image/usr/share/man/man3/Coro::AnyEvent.3pm
  373. Installing /tmp/portage/dev-perl/Coro-6.80.0/image/usr/share/man/man3/Coro::BDB.3pm
  374. Installing /tmp/portage/dev-perl/Coro-6.80.0/image/usr/share/man/man3/Coro::Specific.3pm
  375. Installing /tmp/portage/dev-perl/Coro-6.80.0/image/usr/share/man/man3/Coro::Channel.3pm
  376. Installing /tmp/portage/dev-perl/Coro-6.80.0/image/usr/share/man/man3/Coro::Util.3pm
  377. >>> Completed installing Coro-6.80.0 into /tmp/portage/dev-perl/Coro-6.80.0/image/
  378. strip: x86_64-pc-linux-gnu-strip --strip-unneeded -R .comment -R .GCC.command.line
  379. usr/lib64/perl5/vendor_perl/5.16.0/x86_64-linux/auto/Coro/Event/Event.so
  380. usr/lib64/perl5/vendor_perl/5.16.0/x86_64-linux/auto/Coro/State/State.so
  381. usr/lib64/perl5/vendor_perl/5.16.0/x86_64-linux/auto/Coro/EV/EV.so
  382. ecompressdir: bzip2 -9 /usr/share/doc