Mock Version: 1.1.8 Mock Version: 1.1.8 ENTER do(['bash', '--login', '-c', 'rpmbuild -bs --target i686 --nodeps builddir/build/SPECS/perl-Coro.spec'], False, '/var/lib/mock/dist-6E-epel-build-1119178-173239/root/', None, 86400, True, 0, 495, 495, None, logger=) Executing command: ['bash', '--login', '-c', 'rpmbuild -bs --target i686 --nodeps builddir/build/SPECS/perl-Coro.spec'] warning: Could not canonicalize hostname: x86-12.phx2.fedoraproject.org Building target platforms: i686 Building for target i686 Wrote: /builddir/build/SRPMS/perl-Coro-5.372-3.el6.src.rpm Child returncode was: 0 LEAVE do --> ENTER do(['bash', '--login', '-c', 'rpmbuild -bb --target i686 --nodeps builddir/build/SPECS/perl-Coro.spec'], False, '/var/lib/mock/dist-6E-epel-build-1119178-173239/root/', None, 86400, True, 0, 495, 495, None, logger=) Executing command: ['bash', '--login', '-c', 'rpmbuild -bb --target i686 --nodeps builddir/build/SPECS/perl-Coro.spec'] Building target platforms: i686 Building for target i686 Executing(%prep): /bin/sh -e /var/tmp/rpm-tmp.oFuAOn + umask 022 + cd /builddir/build/BUILD + LANG=C + export LANG + unset DISPLAY + cd /builddir/build/BUILD + rm -rf Coro-5.372 + /usr/bin/gzip -dc /builddir/build/SOURCES/Coro-5.372.tar.gz + /bin/tar -xf - + STATUS=0 + '[' 0 -ne 0 ']' + cd Coro-5.372 + /bin/chmod -Rf a+rX,u+w,g-w,o-w . + sed -i -e '/^#!/ s|.*|#!/usr/bin/perl|' eg/myhttpd + exit 0 Executing(%build): /bin/sh -e /var/tmp/rpm-tmp.rWQH8j + umask 022 + cd /builddir/build/BUILD + cd Coro-5.372 + LANG=C + export LANG + unset DISPLAY + /usr/bin/perl Makefile.PL INSTALLDIRS=perl 'OPTIMIZE=-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m32 -march=i686 -mtune=atom -fasynchronous-unwind-tables' *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** Event version 1.13 found, building Event support. EV version 4.03 found, building EV support. Checking if your kit is complete... Looks good *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** Coro has a number of configuration options. Due to its maturity, the defaults that Coro chooses are usually fine, so you can decide to skip these questions. Only if something went wrong you should select 'n' here and manually configure Coro, and, of course, report this to the maintainer :) Skip further questions and use defaults (y/n)? [y] y *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** Coro can use a number of methods to implement coroutines at the C level. The default chosen is based on your current confguration and is correct in most cases, but you still can chose between these alternatives: u The unix 'ucontext.h' functions are relatively new and not implemented or well-tested in older unices. They allow very fast coroutine creation and reasonably fast switching. They are, however, usually slower than the other alternatives due to an extra syscall done by swapcontext. And while nominally most portable (it's the only POSIX-standardised interface for coroutines), ucontext functions are, as usual, broken on most/all BSDs. s If the ucontext functions are not working or you don't want to use them for other reasons you can try a workaround using setjmp/longjmp/sigaltstack (also standard unix functions). Coroutine creation is rather slow, but switching is very fast (often much faster than with the ucontext functions). Unfortunately, glibc-2.1 and below don't even feature a working sigaltstack. You cannot use this implementation if some other code uses SIGUSR2 or you plan to create coroutines from an alternative signal stack, as both are being used for coroutine creation. a Handcoded assembly. This is the fastest and most compatible method, with the least side effects, if it works, that is. It has been tested on GNU/Linux x86 and x86_64 systems and should work on all x86/x86_64 systems using the SVR ELF ABI (it is also reported to be working on Strawberry Perl for Windows using MinGW). This is the recommended method on supported platforms. When it doesn't work, use another method, such as (s)etjmp/longjmp. l GNU/Linux. Very old GNU/Linux systems (glibc-2.1 and below) need this hack. Since it is very linux-specific it is also quite fast and recommended even for newer versions; when it works, that is (currently x86 and a few others only. If it compiles, it's usually ok). Newer glibc versions (>= 2.5) stop working with this implementation however. i IRIX. For some reason, SGI really does not like to follow POSIX (does that surprise you?), so this workaround might be needed (it's fast), although [s] and [u] should also work now. w Microsoft Windows. Try this on Microsoft Windows when using Cygwin or the MSVC compilers (e.g. ActiveState Perl, but see "a" for Strawberry Perl), although, as there is no standard on how to do this under windows, different environments might work differently. Doh. p Use pthread API. Try to avoid this option, it was only created to make a point about the programming language shootout. It is unlikely to work with perls that have windows process emulation enabled ("perl threads"). It is also likely the slowest method of implementing coroutines. It might work fine as a last resort, however, as the pthread API is slightly better tested than ucontext functions for example. Of course, not on BSDs, who usually have very broken pthread implementations. Coro tries hard to come up with a suitable default for most systems, so pressing return at the prompt usually does the right thing. If you experience problems (e.g. make test fails) then you should experiment with this setting. Use which implementation, etjmp, ctx, sm, rix, inux, indows or

threads? [a] a Using handcoded assembler implementation *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** Per-context stack size factor: Depending on your settings, Coro tries to share the C stacks is creates as much as possible, but sometimes it needs to allocate a new one. This setting controls the maximum size that gets allocated, and should not be set too high, as memory and address space still is wasted even if it's not fully used. The value entered will be multiplied by sizeof(long), which is usually 4 on 32-bit systems, and 8 on 64-bit systems. A setting of 16384 (the default) therefore corresponds to a 64k..128k stack, which usually is ample space (you might even want to try 8192 or lower if your program creates many coroutines). On systems supporting mmap and dynamic memory management, the actual memory usually gets allocated on demand, but with many large stacks you can still run out of address space on your typical 32 bit platform (not to forget the pagetables). Some perls (mostly threaded ones and perl compiled under linux 2.6) and some programs (inefficient regexes can use a lot of stack space) may need much, much more: If Coro segfaults with weird backtraces (e.g. in a function prologue) or in t/10_bugs.t, you might want to increase this to 65536 or more. The default should be fine, and can be changed at runtime with Coro::State::cctx_stacksize. C stack size factor? [16384] 16384 using a stacksize of 16384 * sizeof(long) *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** Coro can optionally put a guard area before each stack segment: When the stack is too small and the access is not too far outside the stack (i.e. within the guard area), then the program will safely segfault instead of running into other data. The cost is some additional overhead with is usually negligible, and extra use of address space. The guard area size currently needs to be specified in pages (typical pagesizes are 4k and 8k). The guard area is only enabled on a few hardcoded architectures and is ignored on others. The actual preprocessor expression disables this feature if: !__i386 && !__x86_64 && !__powerpc && !__m68k && !__alpha && !__mips && !__sparc64 The default, as usual, should be just fine. Number of guard pages (0 disables)? [4] 4 *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** Coro can tell valgrind about its stacks and so reduce spurious warnings where valgrind would otherwise complain about possible stack switches. Enabling this does not incur noticable runtime or memory overhead, but it requires that you have the header file available. Valgrind support is completely optional, so disabling it is the safe choice. Enable valgrind support (y/n)? [n] n *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** Coro can use (or even trick) some perl functions into doing what it needs instead of relying on (some) of its own functions. This might increase chances that it compiles and works, but it could just as well result in memory leaks, crashes or silent data corruption. It certainly does result in slightly slower speed and higher memory consumption, though, so YOU SHOULD ENABLE THIS OPTION ONLY AS A LAST RESORT. Prefer perl functions over coro functions (y/n)? [n] n *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** Coro has experimental support for cloning states. This can be used to implement a scheme-like call/cc. However, this doesn't add to the expressiveness in general, and is likely perl-version specific (and perl 5.12 deliberately removed support for it). As such, it is disabled by default. Enable it when you want to play around with it, but note that it isn't supported, and unlikely ever will be. It exists mainly to prove that it could be done - if only it were useful for something. Implement Coro::State->clone method (y/n)? [n] n *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** Writing Makefile for Coro::State Writing Makefile for Coro::Event Writing Makefile for Coro::EV Writing Makefile for Coro + make -j16 make[1]: Entering directory `/builddir/build/BUILD/Coro-5.372/Coro' /usr/bin/perl /usr/share/perl5/ExtUtils/xsubpp -typemap /usr/share/perl5/ExtUtils/typemap -typemap typemap State.xs > State.xsc && mv State.xsc State.c Running Mkbootstrap for Coro::State () chmod 644 State.bs cp Coro/Select.pm blib/lib/Coro/Select.pm cp Coro/State.pm blib/lib/Coro/State.pm cp Coro/Debug.pm blib/lib/Coro/Debug.pm cp Coro/RWLock.pm blib/lib/Coro/RWLock.pm cp Coro/LWP.pm blib/lib/Coro/LWP.pm cp Coro/Semaphore.pm blib/lib/Coro/Semaphore.pm cp Coro/Timer.pm blib/lib/Coro/Timer.pm cp Coro/CoroAPI.h blib/lib/Coro/CoroAPI.h cp Coro.pm blib/lib/Coro.pm cp Coro/Signal.pm blib/lib/Coro/Signal.pm cp Coro/AnyEvent.pm blib/lib/Coro/AnyEvent.pm cp Coro/BDB.pm blib/lib/Coro/BDB.pm cp Coro/SemaphoreSet.pm blib/lib/Coro/SemaphoreSet.pm cp Coro/Storable.pm blib/lib/Coro/Storable.pm cp Coro/Util.pm blib/lib/Coro/Util.pm cp Coro/AIO.pm blib/lib/Coro/AIO.pm cp Coro/Handle.pm blib/lib/Coro/Handle.pm cp Coro/Specific.pm blib/lib/Coro/Specific.pm cp Coro/Socket.pm blib/lib/Coro/Socket.pm cp Coro/Channel.pm blib/lib/Coro/Channel.pm cp Coro/MakeMaker.pm blib/lib/Coro/MakeMaker.pm cp State.bs ../blib/arch/auto/Coro/State/State.bs chmod 644 ../blib/arch/auto/Coro/State/State.bs Skip ../blib/lib/Coro/Util.pm (unchanged) Skip ../blib/lib/Coro/Channel.pm (unchanged) Skip ../blib/lib/Coro/Specific.pm (unchanged) Skip ../blib/lib/Coro/BDB.pm (unchanged) Skip ../blib/lib/Coro/LWP.pm (unchanged) Skip ../blib/lib/Coro/AnyEvent.pm (unchanged) Skip ../blib/lib/Coro/SemaphoreSet.pm (unchanged) Skip ../blib/lib/Coro/MakeMaker.pm (unchanged) Skip ../blib/lib/Coro/Semaphore.pm (unchanged) Skip ../blib/lib/Coro/Timer.pm (unchanged) Skip ../blib/lib/Coro/AIO.pm (unchanged) Skip ../blib/lib/Coro/Debug.pm (unchanged) Skip ../blib/lib/Coro/Socket.pm (unchanged) Skip ../blib/lib/Coro/State.pm (unchanged) Skip ../blib/lib/Coro/RWLock.pm (unchanged) Skip ../blib/lib/Coro/Signal.pm (unchanged) cp Intro.pod ../blib/lib/Coro/Intro.pod Skip ../blib/lib/Coro/Handle.pm (unchanged) Skip ../blib/lib/Coro/Storable.pm (unchanged) Skip ../blib/lib/Coro/Select.pm (unchanged) gcc -c -D_REENTRANT -D_GNU_SOURCE -fno-strict-aliasing -pipe -fstack-protector -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m32 -march=i686 -mtune=atom -fasynchronous-unwind-tables -DVERSION=\"5.372\" -DXS_VERSION=\"5.372\" -fPIC "-I/usr/lib/perl5/CORE" -DHAVE_MMAP -DCORO_ASM -DCORO_STACKSIZE=16384 -DCORO_STACKGUARD=4 State.c In file included from State.xs:16: schmorp.h: In function 's_epipe_signal': schmorp.h:423: warning: ignoring return value of 'write', declared with attribute warn_unused_result schmorp.h: In function 's_epipe_drain': schmorp.h:436: warning: ignoring return value of 'read', declared with attribute warn_unused_result State.xs: In function 'cctx_destroy': State.xs:1504: warning: statement with no effect State.xs: In function 'transfer': State.xs:1591: warning: unused variable 'stacklevel_dummy' State.xs: In function 'slf_init_terminate': State.xs:2058: warning: value computed is not used State.xs: In function 'slf_check_pool_handler': State.xs:2084: warning: value computed is not used State.xs: In function 'slf_init_pool_handler': State.xs:2126: warning: value computed is not used State.xs:2495:36: warning: "/*" within comment State.xs: In function 'coro_aio_req_xs': State.xs:3035: warning: unused variable 'items' State.c: In function 'XS_Coro__State_new': State.c:3182: warning: unused variable 'klass' State.c: In function 'XS_Coro__State_transfer': State.c:3197: warning: unused variable 'items' State.c: In function 'XS_Coro__State_clone': State.c:3266: warning: unused variable 'coro' State.c: In function 'XS_Coro_terminate': State.c:3847: warning: unused variable 'items' State.c: In function 'XS_Coro_schedule': State.c:3865: warning: unused variable 'items' State.c: In function 'XS_Coro_schedule_to': State.c:3883: warning: unused variable 'items' State.c: In function 'XS_Coro_cede_to': State.c:3901: warning: unused variable 'items' State.c: In function 'XS_Coro_cede': State.c:3919: warning: unused variable 'items' State.c: In function 'XS_Coro_cede_notself': State.c:3937: warning: unused variable 'items' State.c: In function 'XS_Coro_nready': State.c:4074: warning: unused variable 'items' State.c: In function 'XS_Coro__pool_handler': State.c:4135: warning: unused variable 'items' State.c: In function 'XS_Coro_async_pool': State.c:4162: warning: unused variable 'cv' State.c: In function 'XS_Coro__Semaphore_new': State.c:4297: warning: unused variable 'klass' State.c: In function 'XS_Coro__Semaphore_down': State.c:4408: warning: unused variable 'items' State.c: In function 'XS_Coro__Semaphore_wait': State.c:4426: warning: unused variable 'items' State.c: In function 'XS_Coro__Signal_new': State.c:4558: warning: unused variable 'klass' State.c: In function 'XS_Coro__Signal_wait': State.c:4576: warning: unused variable 'items' State.c: In function 'XS_Coro__AnyEvent__schedule': State.c:4667: warning: unused variable 'items' State.xs: In function 'boot_Coro__State': State.xs:3149: warning: value computed is not used State.xs:3152: warning: value computed is not used State.c: At top level: schmorp.h:112: warning: 's_signum_croak' defined but not used schmorp.h:147: warning: 's_fileno_croak' defined but not used schmorp.h:390: warning: 's_epipe_destroy' defined but not used schmorp.h:403: warning: 's_epipe_signal' defined but not used schmorp.h:428: warning: 's_epipe_drain' defined but not used schmorp.h:442: warning: 's_epipe_renew' defined but not used schmorp.h:474: warning: 's_epipe_wait' defined but not used CoroAPI.h:74: warning: 'GCoroAPI' defined but not used State.xs: In function 'coro_new': State.xs:3057: warning: 'cb' may be used uninitialized in this function State.c: In function 'XS_Coro__State_rss': State.c:3623: warning: 'RETVAL' may be used uninitialized in this function rm -f ../blib/arch/auto/Coro/State/State.so gcc -shared -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m32 -march=i686 -mtune=atom -fasynchronous-unwind-tables -L/usr/local/lib State.o -o ../blib/arch/auto/Coro/State/State.so \ \ chmod 755 ../blib/arch/auto/Coro/State/State.so Manifying ../blib/man3/Coro::Channel.3pm Manifying ../blib/man3/Coro::Util.3pm Manifying ../blib/man3/Coro::Specific.3pm Manifying ../blib/man3/Coro::BDB.3pm Manifying ../blib/man3/Coro::AnyEvent.3pm Manifying ../blib/man3/Coro::LWP.3pm Manifying ../blib/man3/Coro::SemaphoreSet.3pm Manifying ../blib/man3/Coro::MakeMaker.3pm Manifying ../blib/man3/Coro::Semaphore.3pm Manifying ../blib/man3/Coro::Timer.3pm Manifying ../blib/man3/Coro::AIO.3pm Manifying ../blib/man3/Coro::Debug.3pm Manifying ../blib/man3/Coro::Socket.3pm Manifying ../blib/man3/Coro::State.3pm Manifying ../blib/man3/Coro::RWLock.3pm Manifying ../blib/man3/Coro::Signal.3pm Manifying ../blib/man3/Coro::Intro.3pm Manifying ../blib/man3/Coro::Handle.3pm Manifying ../blib/man3/Coro::Select.3pm Manifying ../blib/man3/Coro::Storable.3pm make[1]: Leaving directory `/builddir/build/BUILD/Coro-5.372/Coro' make[1]: Entering directory `/builddir/build/BUILD/Coro-5.372/Event' /usr/bin/perl /usr/share/perl5/ExtUtils/xsubpp -typemap /usr/share/perl5/ExtUtils/typemap Event.xs > Event.xsc && mv Event.xsc Event.c Running Mkbootstrap for Coro::Event () chmod 644 Event.bs cp Event.bs ../blib/arch/auto/Coro/Event/Event.bs chmod 644 ../blib/arch/auto/Coro/Event/Event.bs cp Event.pm ../blib/lib/Coro/Event.pm gcc -c -I/usr/lib/perl5/Event -D_REENTRANT -D_GNU_SOURCE -fno-strict-aliasing -pipe -fstack-protector -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m32 -march=i686 -mtune=atom -fasynchronous-unwind-tables -DVERSION=\"5.372\" -DXS_VERSION=\"5.372\" -fPIC "-I/usr/lib/perl5/CORE" -DHAVE_EVENT=1 -DHAVE_EV=1 Event.c Event.xs: In function 'boot_Coro__Event': Event.xs:82: warning: format '%d' expects type 'int', but argument 2 has type 'I32' Event.xs:83: warning: format '%d' expects type 'int', but argument 2 has type 'I32' Event.xs:83: warning: format '%d' expects type 'int', but argument 3 has type 'I32' rm -f ../blib/arch/auto/Coro/Event/Event.so gcc -shared -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m32 -march=i686 -mtune=atom -fasynchronous-unwind-tables -L/usr/local/lib Event.o -o ../blib/arch/auto/Coro/Event/Event.so \ \ chmod 755 ../blib/arch/auto/Coro/Event/Event.so Manifying ../blib/man3/Coro::Event.3pm make[1]: Leaving directory `/builddir/build/BUILD/Coro-5.372/Event' make[1]: Entering directory `/builddir/build/BUILD/Coro-5.372/EV' /usr/bin/perl /usr/share/perl5/ExtUtils/xsubpp -typemap /usr/share/perl5/ExtUtils/typemap EV.xs > EV.xsc && mv EV.xsc EV.c Running Mkbootstrap for Coro::EV () cp EV.pm ../blib/lib/Coro/EV.pm chmod 644 EV.bs cp EV.bs ../blib/arch/auto/Coro/EV/EV.bs chmod 644 ../blib/arch/auto/Coro/EV/EV.bs gcc -c -I/usr/lib/perl5/vendor_perl/EV -I/usr/lib/perl5/vendor_perl -D_REENTRANT -D_GNU_SOURCE -fno-strict-aliasing -pipe -fstack-protector -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m32 -march=i686 -mtune=atom -fasynchronous-unwind-tables -DVERSION=\"5.372\" -DXS_VERSION=\"5.372\" -fPIC "-I/usr/lib/perl5/CORE" -DHAVE_EVENT=1 -DHAVE_EV=1 EV.c EV.c: In function 'XS_Coro__EV_timed_io_once': EV.c:403: warning: unused variable 'items' EV.c: In function 'XS_Coro__EV_timer_once': EV.c:421: warning: unused variable 'items' EV.c: In function 'XS_Coro__EV__poll': EV.c:439: warning: unused variable 'items' EV.xs: In function 'boot_Coro__EV': EV.xs:287: warning: format '%d' expects type 'int', but argument 2 has type 'I32' EV.xs:287: warning: format '%d' expects type 'int', but argument 3 has type 'I32' EV.xs:288: warning: format '%d' expects type 'int', but argument 2 has type 'I32' EV.xs:288: warning: format '%d' expects type 'int', but argument 3 has type 'I32' EV.xs:290: warning: statement with no effect rm -f ../blib/arch/auto/Coro/EV/EV.so gcc -shared -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m32 -march=i686 -mtune=atom -fasynchronous-unwind-tables -L/usr/local/lib EV.o -o ../blib/arch/auto/Coro/EV/EV.so \ \ chmod 755 ../blib/arch/auto/Coro/EV/EV.so Manifying ../blib/man3/Coro::EV.3pm make[1]: Leaving directory `/builddir/build/BUILD/Coro-5.372/EV' Manifying blib/man3/Coro.3pm + exit 0 Executing(%install): /bin/sh -e /var/tmp/rpm-tmp.ZIi9Fq + umask 022 + cd /builddir/build/BUILD + '[' /builddir/build/BUILDROOT/perl-Coro-5.372-3.el6.i386 '!=' / ']' + rm -rf /builddir/build/BUILDROOT/perl-Coro-5.372-3.el6.i386 ++ dirname /builddir/build/BUILDROOT/perl-Coro-5.372-3.el6.i386 + mkdir -p /builddir/build/BUILDROOT + mkdir /builddir/build/BUILDROOT/perl-Coro-5.372-3.el6.i386 + cd Coro-5.372 + LANG=C + export LANG + unset DISPLAY + make pure_install PERL_INSTALL_ROOT=/builddir/build/BUILDROOT/perl-Coro-5.372-3.el6.i386 make[1]: Entering directory `/builddir/build/BUILD/Coro-5.372/Coro' make[1]: Leaving directory `/builddir/build/BUILD/Coro-5.372/Coro' make[1]: Entering directory `/builddir/build/BUILD/Coro-5.372/Event' make[1]: Leaving directory `/builddir/build/BUILD/Coro-5.372/Event' make[1]: Entering directory `/builddir/build/BUILD/Coro-5.372/EV' make[1]: Leaving directory `/builddir/build/BUILD/Coro-5.372/EV' Files found in blib/arch: installing files in blib/lib into architecture dependent library tree Installing /builddir/build/BUILDROOT/perl-Coro-5.372-3.el6.i386/usr/lib/perl5/auto/Coro/State/State.so Installing /builddir/build/BUILDROOT/perl-Coro-5.372-3.el6.i386/usr/lib/perl5/auto/Coro/State/State.bs Installing /builddir/build/BUILDROOT/perl-Coro-5.372-3.el6.i386/usr/lib/perl5/auto/Coro/Event/Event.bs Installing /builddir/build/BUILDROOT/perl-Coro-5.372-3.el6.i386/usr/lib/perl5/auto/Coro/Event/Event.so Installing /builddir/build/BUILDROOT/perl-Coro-5.372-3.el6.i386/usr/lib/perl5/auto/Coro/EV/EV.bs Installing /builddir/build/BUILDROOT/perl-Coro-5.372-3.el6.i386/usr/lib/perl5/auto/Coro/EV/EV.so Installing /builddir/build/BUILDROOT/perl-Coro-5.372-3.el6.i386/usr/lib/perl5/Coro.pm Installing /builddir/build/BUILDROOT/perl-Coro-5.372-3.el6.i386/usr/lib/perl5/Coro/Channel.pm Installing /builddir/build/BUILDROOT/perl-Coro-5.372-3.el6.i386/usr/lib/perl5/Coro/Debug.pm Installing /builddir/build/BUILDROOT/perl-Coro-5.372-3.el6.i386/usr/lib/perl5/Coro/CoroAPI.h Installing /builddir/build/BUILDROOT/perl-Coro-5.372-3.el6.i386/usr/lib/perl5/Coro/AnyEvent.pm Installing /builddir/build/BUILDROOT/perl-Coro-5.372-3.el6.i386/usr/lib/perl5/Coro/Socket.pm Installing /builddir/build/BUILDROOT/perl-Coro-5.372-3.el6.i386/usr/lib/perl5/Coro/Intro.pod Installing /builddir/build/BUILDROOT/perl-Coro-5.372-3.el6.i386/usr/lib/perl5/Coro/Specific.pm Installing /builddir/build/BUILDROOT/perl-Coro-5.372-3.el6.i386/usr/lib/perl5/Coro/Semaphore.pm Installing /builddir/build/BUILDROOT/perl-Coro-5.372-3.el6.i386/usr/lib/perl5/Coro/Handle.pm Installing /builddir/build/BUILDROOT/perl-Coro-5.372-3.el6.i386/usr/lib/perl5/Coro/RWLock.pm Installing /builddir/build/BUILDROOT/perl-Coro-5.372-3.el6.i386/usr/lib/perl5/Coro/Signal.pm Installing /builddir/build/BUILDROOT/perl-Coro-5.372-3.el6.i386/usr/lib/perl5/Coro/State.pm Installing /builddir/build/BUILDROOT/perl-Coro-5.372-3.el6.i386/usr/lib/perl5/Coro/SemaphoreSet.pm Installing /builddir/build/BUILDROOT/perl-Coro-5.372-3.el6.i386/usr/lib/perl5/Coro/Event.pm Installing /builddir/build/BUILDROOT/perl-Coro-5.372-3.el6.i386/usr/lib/perl5/Coro/Timer.pm Installing /builddir/build/BUILDROOT/perl-Coro-5.372-3.el6.i386/usr/lib/perl5/Coro/EV.pm Installing /builddir/build/BUILDROOT/perl-Coro-5.372-3.el6.i386/usr/lib/perl5/Coro/BDB.pm Installing /builddir/build/BUILDROOT/perl-Coro-5.372-3.el6.i386/usr/lib/perl5/Coro/AIO.pm Installing /builddir/build/BUILDROOT/perl-Coro-5.372-3.el6.i386/usr/lib/perl5/Coro/Storable.pm Installing /builddir/build/BUILDROOT/perl-Coro-5.372-3.el6.i386/usr/lib/perl5/Coro/LWP.pm Installing /builddir/build/BUILDROOT/perl-Coro-5.372-3.el6.i386/usr/lib/perl5/Coro/Select.pm Installing /builddir/build/BUILDROOT/perl-Coro-5.372-3.el6.i386/usr/lib/perl5/Coro/MakeMaker.pm Installing /builddir/build/BUILDROOT/perl-Coro-5.372-3.el6.i386/usr/lib/perl5/Coro/Util.pm Installing /builddir/build/BUILDROOT/perl-Coro-5.372-3.el6.i386/usr/share/man/man3/Coro::RWLock.3pm Installing /builddir/build/BUILDROOT/perl-Coro-5.372-3.el6.i386/usr/share/man/man3/Coro::Signal.3pm Installing /builddir/build/BUILDROOT/perl-Coro-5.372-3.el6.i386/usr/share/man/man3/Coro::Semaphore.3pm Installing /builddir/build/BUILDROOT/perl-Coro-5.372-3.el6.i386/usr/share/man/man3/Coro::EV.3pm Installing /builddir/build/BUILDROOT/perl-Coro-5.372-3.el6.i386/usr/share/man/man3/Coro::Select.3pm Installing /builddir/build/BUILDROOT/perl-Coro-5.372-3.el6.i386/usr/share/man/man3/Coro::MakeMaker.3pm Installing /builddir/build/BUILDROOT/perl-Coro-5.372-3.el6.i386/usr/share/man/man3/Coro::SemaphoreSet.3pm Installing /builddir/build/BUILDROOT/perl-Coro-5.372-3.el6.i386/usr/share/man/man3/Coro::Debug.3pm Installing /builddir/build/BUILDROOT/perl-Coro-5.372-3.el6.i386/usr/share/man/man3/Coro::Event.3pm Installing /builddir/build/BUILDROOT/perl-Coro-5.372-3.el6.i386/usr/share/man/man3/Coro::Storable.3pm Installing /builddir/build/BUILDROOT/perl-Coro-5.372-3.el6.i386/usr/share/man/man3/Coro::Timer.3pm Installing /builddir/build/BUILDROOT/perl-Coro-5.372-3.el6.i386/usr/share/man/man3/Coro::LWP.3pm Installing /builddir/build/BUILDROOT/perl-Coro-5.372-3.el6.i386/usr/share/man/man3/Coro::Channel.3pm Installing /builddir/build/BUILDROOT/perl-Coro-5.372-3.el6.i386/usr/share/man/man3/Coro::BDB.3pm Installing /builddir/build/BUILDROOT/perl-Coro-5.372-3.el6.i386/usr/share/man/man3/Coro::State.3pm Installing /builddir/build/BUILDROOT/perl-Coro-5.372-3.el6.i386/usr/share/man/man3/Coro::Intro.3pm Installing /builddir/build/BUILDROOT/perl-Coro-5.372-3.el6.i386/usr/share/man/man3/Coro::Util.3pm Installing /builddir/build/BUILDROOT/perl-Coro-5.372-3.el6.i386/usr/share/man/man3/Coro::Handle.3pm Installing /builddir/build/BUILDROOT/perl-Coro-5.372-3.el6.i386/usr/share/man/man3/Coro::Specific.3pm Installing /builddir/build/BUILDROOT/perl-Coro-5.372-3.el6.i386/usr/share/man/man3/Coro::Socket.3pm Installing /builddir/build/BUILDROOT/perl-Coro-5.372-3.el6.i386/usr/share/man/man3/Coro.3pm Installing /builddir/build/BUILDROOT/perl-Coro-5.372-3.el6.i386/usr/share/man/man3/Coro::AIO.3pm Installing /builddir/build/BUILDROOT/perl-Coro-5.372-3.el6.i386/usr/share/man/man3/Coro::AnyEvent.3pm + find /builddir/build/BUILDROOT/perl-Coro-5.372-3.el6.i386 -type f -name .packlist -exec rm -f '{}' ';' + find /builddir/build/BUILDROOT/perl-Coro-5.372-3.el6.i386 -type f -name '*.bs' -size 0 -exec rm -f '{}' ';' + find /builddir/build/BUILDROOT/perl-Coro-5.372-3.el6.i386 -depth -type d -exec rmdir '{}' ';' + /bin/chmod -Rf a+rX,u+w,g-w,o-w /builddir/build/BUILDROOT/perl-Coro-5.372-3.el6.i386/usr + /usr/lib/rpm/find-debuginfo.sh --strict-build-id /builddir/build/BUILD/Coro-5.372 extracting debug info from /builddir/build/BUILDROOT/perl-Coro-5.372-3.el6.i386/usr/lib/perl5/auto/Coro/State/State.so extracting debug info from /builddir/build/BUILDROOT/perl-Coro-5.372-3.el6.i386/usr/lib/perl5/auto/Coro/Event/Event.so extracting debug info from /builddir/build/BUILDROOT/perl-Coro-5.372-3.el6.i386/usr/lib/perl5/auto/Coro/EV/EV.so 562 blocks + /usr/lib/rpm/check-buildroot + /usr/lib/rpm/redhat/brp-compress + /usr/lib/rpm/redhat/brp-strip-static-archive /usr/bin/strip + /usr/lib/rpm/redhat/brp-strip-comment-note /usr/bin/strip /usr/bin/objdump + /usr/lib/rpm/brp-python-bytecompile + /usr/lib/rpm/redhat/brp-python-hardlink + /usr/lib/rpm/redhat/brp-java-repack-jars Executing(%check): /bin/sh -e /var/tmp/rpm-tmp.fZrHEz + umask 022 + cd /builddir/build/BUILD + cd Coro-5.372 + unset DISPLAY + make test make[1]: Entering directory `/builddir/build/BUILD/Coro-5.372/Coro' make[1]: Leaving directory `/builddir/build/BUILD/Coro-5.372/Coro' make[1]: Entering directory `/builddir/build/BUILD/Coro-5.372/Event' make[1]: Leaving directory `/builddir/build/BUILD/Coro-5.372/Event' make[1]: Entering directory `/builddir/build/BUILD/Coro-5.372/EV' make[1]: Leaving directory `/builddir/build/BUILD/Coro-5.372/EV' PERL_DL_NONLAZY=1 /usr/bin/perl "-MExtUtils::Command::MM" "-e" "test_harness(0, 'blib/lib', 'blib/arch')" t/*.t t/00_basic.t ...... ok t/01_process.t .... ok t/02_channel.t .... ok t/03_channel.t .... ok t/04_rwlock.t ..... ok t/05_specific.t ... ok t/06_prio.t ....... ok t/07_eval.t ....... ok t/08_join.t ....... ok t/10_bugs.t ....... ok t/11_deadlock.t ... ok t/12_exit.t ....... ok t/13_diewarn.t .... ok t/14_load.t ....... ok t/15_semaphore.t .. ok t/16_signal.t ..... ok t/17_rouse.t ...... ok t/18_winder.t ..... ok t/19_handle.t ..... ok All tests successful. Files=19, Tests=186, 0 wallclock secs ( 0.07 usr 0.01 sys + 0.34 cusr 0.05 csys = 0.47 CPU) Result: PASS make[1]: Entering directory `/builddir/build/BUILD/Coro-5.372/Coro' No tests defined for Coro::State extension. make[1]: Leaving directory `/builddir/build/BUILD/Coro-5.372/Coro' make[1]: Entering directory `/builddir/build/BUILD/Coro-5.372/Event' PERL_DL_NONLAZY=1 /usr/bin/perl "-MExtUtils::Command::MM" "-e" "test_harness(0, '../blib/lib', '../blib/arch')" t/*.t t/00_basic.t .... ok t/01_unblock.t .. ok All tests successful. Files=2, Tests=17, 0 wallclock secs ( 0.02 usr 0.00 sys + 0.07 cusr 0.03 csys = 0.12 CPU) Result: PASS make[1]: Leaving directory `/builddir/build/BUILD/Coro-5.372/Event' make[1]: Entering directory `/builddir/build/BUILD/Coro-5.372/EV' PERL_DL_NONLAZY=1 /usr/bin/perl "-MExtUtils::Command::MM" "-e" "test_harness(0, '../blib/lib', '../blib/arch')" t/*.t t/00_basic.t .... ok t/01_unblock.t .. ok All tests successful. Files=2, Tests=17, 1 wallclock secs ( 0.02 usr 0.00 sys + 0.06 cusr 0.02 csys = 0.10 CPU) Result: PASS make[1]: Leaving directory `/builddir/build/BUILD/Coro-5.372/EV' + exit 0 Processing files: perl-Coro-5.372-3.el6.i686 Executing(%doc): /bin/sh -e /var/tmp/rpm-tmp.LCDKiM + umask 022 + cd /builddir/build/BUILD + cd Coro-5.372 + DOCDIR=/builddir/build/BUILDROOT/perl-Coro-5.372-3.el6.i386/usr/share/doc/perl-Coro-5.372 + export DOCDIR + rm -rf /builddir/build/BUILDROOT/perl-Coro-5.372-3.el6.i386/usr/share/doc/perl-Coro-5.372 + /bin/mkdir -p /builddir/build/BUILDROOT/perl-Coro-5.372-3.el6.i386/usr/share/doc/perl-Coro-5.372 + cp -pr Changes COPYING README README.linux-glibc /builddir/build/BUILDROOT/perl-Coro-5.372-3.el6.i386/usr/share/doc/perl-Coro-5.372 + cp -pr doc/cede-vs-schedule eg /builddir/build/BUILDROOT/perl-Coro-5.372-3.el6.i386/usr/share/doc/perl-Coro-5.372 + exit 0 Finding Provides: /bin/sh -c " /bin/grep -v '/usr/lib/perl5/vendor_perl/.*\.so$' | /bin/grep -v -P '/usr/lib/perl5/(?!CORE/libperl).*\.so$' | /bin/grep -v '/usr/share/doc' | while read FILE; do /usr/lib/rpm/rpmdeps -P ${FILE}; done | /bin/sort -u | /bin/sed -e '/^perl(Coro)$/d' | /bin/sed -e 's/^\(perl(Coro\>[^=]*\)$/\1 = 5.372/' | /bin/sed -e '/perl(UNIVERSAL)/d; /perl(DB)/d'" Finding Requires: /bin/sh -c " /bin/grep -v '/usr/share/doc' | while read FILE; do /usr/lib/rpm/rpmdeps -R ${FILE}; done | /bin/sort -u | /bin/sed -e '/^perl(AnyEvent)$/d' | /bin/sed -e '/^perl(AnyEvent) >= 4.800001$/d' | /bin/sed -e '/^perl(AnyEvent::AIO)$/d' | /bin/sed -e '/^perl(AnyEvent::BDB)$/d' | /bin/sed -e '/^perl(EV)$/d' | /bin/sed -e '/^perl(Event)$/d' | /bin/sed -e '/^perl(Guard)$/d' | /bin/sed -e '/^perl(Storable)$/d'" Provides: perl(Coro) = 5.372 perl(Coro::AIO) = 5.372 perl(Coro::AnyEvent) = 5.372 perl(Coro::AnyEvent::CondVar) = 5.372 perl(Coro::BDB) = 5.372 perl(Coro::Channel) = 5.372 perl(Coro::Debug) = 5.372 perl(Coro::EV) = 5.372 perl(Coro::Event) = 5.372 perl(Coro::Handle) = 5.372 perl(Coro::Handle::FH) = 5.372 perl(Coro::LWP) = 5.372 perl(Coro::LWP::Socket) = 5.372 perl(Coro::MakeMaker) = 5.372 perl(Coro::RWLock) = 5.372 perl(Coro::Select) = 5.372 perl(Coro::Semaphore) = 5.372 perl(Coro::SemaphoreSet) = 5.372 perl(Coro::Signal) = 5.372 perl(Coro::Socket) = 5.372 perl(Coro::Specific) = 5.372 perl(Coro::State) = 5.372 perl(Coro::Storable) = 5.372 perl(Coro::Timer) = 5.372 perl(Coro::Timer::Timeout) = 5.372 perl(Coro::Util) = 5.372 Requires(rpmlib): rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1 rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(VersionedDependencies) <= 3.0.3-1 rpmlib(VersionedDependencies) <= 3.0.3-1 Requires: libc.so.6 libc.so.6(GLIBC_2.0) libc.so.6(GLIBC_2.1) libc.so.6(GLIBC_2.11) libc.so.6(GLIBC_2.1.3) perl(AnyEvent::DNS) perl(AnyEvent::Socket) perl(AnyEvent::Util) perl(base) perl(BDB) perl(Carp) perl(common::sense) perl(Config) perl(Coro) perl(Coro::AnyEvent) perl(Coro::Handle) perl(Coro::Select) perl(Coro::Semaphore) perl(Coro::Socket) perl(Coro::State) perl(Coro::Storable) perl(Coro::Timer) perl(Coro::Util) perl(Errno) perl(Exporter) perl(IO::AIO) >= 3.1 perl(IO::Socket::INET) perl(Net::FTP) perl(Net::HTTP) perl(Net::NNTP) perl(overload) perl(Scalar::Util) perl(Socket) perl(Time::HiRes) perl(XSLoader) rpmlib(VersionedDependencies) <= 3.0.3-1 rtld(GNU_HASH) Processing files: perl-Coro-debuginfo-5.372-3.el6.i686 Checking for unpackaged file(s): /usr/lib/rpm/check-files /builddir/build/BUILDROOT/perl-Coro-5.372-3.el6.i386 warning: Could not canonicalize hostname: x86-12.phx2.fedoraproject.org Wrote: /builddir/build/RPMS/perl-Coro-5.372-3.el6.i686.rpm Wrote: /builddir/build/RPMS/perl-Coro-debuginfo-5.372-3.el6.i686.rpm Executing(%clean): /bin/sh -e /var/tmp/rpm-tmp.JqpDqL + umask 022 + cd /builddir/build/BUILD + cd Coro-5.372 + /bin/rm -rf /builddir/build/BUILDROOT/perl-Coro-5.372-3.el6.i386 + exit 0 Child returncode was: 0 LEAVE do -->