[UpTools] Upgrade to 8.5.5 and fixed spec file

sebelk sebelk at fedoraproject.org
Tue May 17 13:01:06 UTC 2011


commit 0861217ce755ddd7a364755111e8ab6f5b56a642
Author: Sergio Belkin <sebelk at fedoraproject.org>
Date:   Tue May 17 10:00:20 2011 -0300

    Upgrade to 8.5.5 and fixed spec file

 UpTools.spec~                                      |  174 +++++
 UpTools/8.5.5/1.fc16/UpTools-8.5.5-1.fc16.i686.rpm |  Bin 0 -> 117396 bytes
 UpTools/8.5.5/1.fc16/UpTools-8.5.5-1.fc16.src.rpm  |  Bin 0 -> 461879 bytes
 .../1.fc16/UpTools-debuginfo-8.5.5-1.fc16.i686.rpm |  Bin 0 -> 657764 bytes
 .../1.fc16/UpTools-devel-8.5.5-1.fc16.i686.rpm     |  Bin 0 -> 75688 bytes
 UpTools/8.5.5/1.fc16/build.log                     |  714 ++++++++++++++++++++
 UpTools/8.5.5/1.fc16/root.log                      |  570 ++++++++++++++++
 UpTools/8.5.5/1.fc16/state.log                     |   10 +
 8 files changed, 1468 insertions(+), 0 deletions(-)
---
diff --git a/UpTools.spec~ b/UpTools.spec~
new file mode 100644
index 0000000..79ad1b6
--- /dev/null
+++ b/UpTools.spec~
@@ -0,0 +1,174 @@
+Summary: C++ library for HPC, parallel processing, networking, DB, memory, etc
+Name: UpTools
+Version: 8.5.5
+Release: 1%{dist}
+License: BSD
+Group: Development/Libraries
+Source: http://www.palermo.edu/ingenieria/%{name}-%{version}.tar.gz
+URL: http://www.palermo.edu/ingenieria/uptools_ingles.html
+BuildRequires: mysql-devel
+BuildRequires: postgresql-devel
+BuildRequires: openssl-devel
+
+%description
+UpTools is an open source C++ development library that contains powerful
+classes to facilitate and accelerate modern application development. The
+following aspects are covered by the library: High performance computing
+(HPC), Load distribution and parallel processing, Multi-threading, Time
+and timers, Memory management, Text and strings, Database access,
+Networking, and others.
+
+UpTools is developed and maintained by the Engineering School of the
+Universidad de Palermo, and originated in its Electronics and Communications
+Department projects.
+
+%package devel
+Summary: Header files and examples for UpTools C++ library
+Group: Development/Libraries
+Requires: %{name}%{?_isa} = %{version}-%{release}
+Requires: libstdc++-devel%{?_isa}
+Requires: openssl-devel%{?_isa}
+Requires: mysql-devel%{?_isa}
+Requires: postgresql-devel%{?_isa}
+ 
+%description devel
+UpTools is an open source C++ development library that contains powerful
+classes to facilitate and accelerate modern application development. The
+following aspects are covered by the library: High performance computing
+(HPC), Load distribution and parallel processing, Multi-threading, Time
+and timers, Memory management, Text and strings, Database access,
+Networking, and others.
+
+UpTools is developed and maintained by the Engineering School of the
+Universidad de Palermo, and originated in its Electronics and Communications
+Department projects.
+
+This package include headers to build apps using UpTools and example code.
+
+
+%prep
+%setup -q  
+#Remove -no-install LDFLAG and glibc workaound test and  prevent libdir hardcoding
+cp -p configure configure.backup
+sed -i -e '2524d' -e '10935,10941d' -e '14983,14994d' configure
+touch -r configure.backup configure
+
+%build
+
+
+# We use unordered_map and unordered_set instead the hash_map and hash_set
+%configure --disable-static LDFLAGS="-L%{_libdir}/mysql"
+
+make %{?_smp_mflags} 
+
+%install
+make install DESTDIR=%{buildroot} INSTALL="install -p"
+
+rm -rf  %{buildroot}/%{_docdir}/%{name}
+
+# We don't want .la libtool archive
+rm -f %{buildroot}%{_libdir}/libUpTools.la
+%post -p /sbin/ldconfig
+
+%postun -p /sbin/ldconfig
+
+%files
+%defattr(-,root,root,-)
+%{_libdir}/libUpTools.so.*
+%doc README LICENSE doc/MULTITHREADING.INTRO doc/INTRO
+
+%files devel
+%defattr(-,root,root,-)
+%dir %{_includedir}/UpTools
+%{_includedir}/UpTools/*
+%{_libdir}/libUpTools.so
+%doc LICENSE doc/README.FEDORA doc/examples
+
+%changelog
+* Thu May 16 2011 Sergio Belkin <sebelk at fedoraproject.org> - 8.5.5-1
+- UpTimerManager extension to report on pending timers of each type, and new
+  flexibility in timer setup parameters. Method now() of UpTimerManager is
+  fortified.
+- One of the operators for UpSmartLinkPtr's is removed to help g++ resolve
+  compilation ambiguity.
+- Disable silent rules and gcc warning flags of configure.ac
+- Get rid of ugly macro AX_EXT_HAVE_LIB
+- Dropped --as-needed and -O3 flags in order to be more generic and simple build
+- Loop to search mysqlclient with proper LDFLAGS
+- Removed test for old glibc and prevent libdir harcoding
+- Remove -no-install LDFLAG
+- Not it uses 
+- Fixed license, it was tagged wrongly as "BSD with advertisement", has been
+  replaced by the recently accepted "BSD with attribution"
+- Polished the test for old glibc
+
+
+* Tue Mar 01 2011 Sergio Belkin <sebelk at fedoraproject.org> - 8.5.4-11
+- Fixed typo in previous changelog entry
+- Fixed release number in previous changelog entry
+
+* Mon Feb 28 2011 Sergio Belkin <sebelk at fedoraproject.org> - 8.5.4-10
+- Used %%{_libdir} macro instead of the conditional statement ifarch
+  and hardcoded paths
+
+* Sat Feb 26 2011 Sergio Belkin <sbelki at palermo.edu> - 8.5.4-9
+- Set LDFLAGS for mysqclient, in order to prevent misleading 
+  messages from macro ax_ext_have_lib.m4
+- Added libstdc++-devel
+- Added --disable-silent-rules to configure script 
+- Removed %%check section it is not needed
+- Minor aesthetic changes to changelog
+
+* Fri Feb 25 2011 Sergio Belkin <sbelki at palermo.edu> - 8.5.4-8
+- Removed redundant "/usr/bin" before iconv
+- Preserved timestamp using iconv
+- Removed "-Wno-deprecated"
+- Added parallel make
+- Kept timestamps on install command
+- fixed %%defattr macro
+- Added openssl-devel%{?_isa}
+- Removed message on scriplet
+- Changed from hash_map and hash_set headers to unordered_map
+- Using glob instead multiples lines of install command
+- Fixed documentation files
+- Disabled silent mode in %%check section
+
+* Tue Feb 22 2011 Sergio Belkin <sbelki at palermo.edu> 8.5.4-7
+- Fixed License in order to match the actual license
+- Clarified Base Package required
+- Disabled static subpackage
+- Removed .la libtool file instead of excluding
+- %%check section added
+- Minor change in %%description tags and Requires
+
+* Thu Feb 18 2011 Sergio Belkin <sbelki at palermo.edu> 8.5.4-6
+- Removed files creation on %%post section
+- Removed glibc-devel as BuildRequires
+
+* Thu Feb 17 2011 Sergio Belkin <sbelki at palermo.edu> 8.5.4-5
+- Removed %%clean section
+- Fixed a regression, there were incorrect paths in %%prep section
+
+* Thu Feb 15 2011 Sergio Belkin <sbelki at palermo.edu> 8.5.4-4
+- Fixed LDFLAGS problem
+- Fixed release RPM
+
+* Thu Feb 03 2011 Sergio Belkin <sbelki at palermo.edu> 8.5.4-3
+- Polished install
+- Added post-install action for devel subpackage
+- README.FEDORA moved to devel package
+- INSTALL file dropped as it is considered irrelevant
+- Added symlink file to devel package and removed from non-devel package
+
+* Mon Jan 31 2011 Sergio Belkin <sbelki at palermo.edu> 8.5.4-2
+- Styles mixing fixed
+- Added openssl-devel as BuildRequires
+- Drop "." ant the end Summary
+- Fixed BuildRoot
+- Fixed Summary and Description
+- Fixed %%pre and %%postun
+- Fixed file-not-utf8
+- Fixed spec file name
+
+* Mon Jan 01 2011 Sergio Belkin <sbelki at palermo.edu> - 8.5.4-1
+- first RPM made in Universidad de Palermo
diff --git a/UpTools/8.5.5/1.fc16/UpTools-8.5.5-1.fc16.i686.rpm b/UpTools/8.5.5/1.fc16/UpTools-8.5.5-1.fc16.i686.rpm
new file mode 100644
index 0000000..e358696
Binary files /dev/null and b/UpTools/8.5.5/1.fc16/UpTools-8.5.5-1.fc16.i686.rpm differ
diff --git a/UpTools/8.5.5/1.fc16/UpTools-8.5.5-1.fc16.src.rpm b/UpTools/8.5.5/1.fc16/UpTools-8.5.5-1.fc16.src.rpm
new file mode 100644
index 0000000..f43fdd8
Binary files /dev/null and b/UpTools/8.5.5/1.fc16/UpTools-8.5.5-1.fc16.src.rpm differ
diff --git a/UpTools/8.5.5/1.fc16/UpTools-debuginfo-8.5.5-1.fc16.i686.rpm b/UpTools/8.5.5/1.fc16/UpTools-debuginfo-8.5.5-1.fc16.i686.rpm
new file mode 100644
index 0000000..837e6a7
Binary files /dev/null and b/UpTools/8.5.5/1.fc16/UpTools-debuginfo-8.5.5-1.fc16.i686.rpm differ
diff --git a/UpTools/8.5.5/1.fc16/UpTools-devel-8.5.5-1.fc16.i686.rpm b/UpTools/8.5.5/1.fc16/UpTools-devel-8.5.5-1.fc16.i686.rpm
new file mode 100644
index 0000000..9f1530c
Binary files /dev/null and b/UpTools/8.5.5/1.fc16/UpTools-devel-8.5.5-1.fc16.i686.rpm differ
diff --git a/UpTools/8.5.5/1.fc16/build.log b/UpTools/8.5.5/1.fc16/build.log
new file mode 100644
index 0000000..82d24a3
--- /dev/null
+++ b/UpTools/8.5.5/1.fc16/build.log
@@ -0,0 +1,714 @@
+Mock Version: 1.1.9
+ENTER do(['bash', '--login', '-c', 'rpmbuild -bs --target i686 --nodeps builddir/build/SPECS/UpTools.spec'], False, '/var/lib/mock/fedora-rawhide-i386/root/', None, 0, True, 0, 500, 489, None, logger=<mock.trace_decorator.getLog object at 0x8573c6c>)
+Executing command: ['bash', '--login', '-c', 'rpmbuild -bs --target i686 --nodeps builddir/build/SPECS/UpTools.spec']
+Construyendo las plataformas de destino: i686
+Construyendo para el destino i686
+Escrito: /builddir/build/SRPMS/UpTools-8.5.5-1.fc16.src.rpm
+Child returncode was: 0
+LEAVE do --> 
+
+ENTER do(['bash', '--login', '-c', 'rpmbuild -bb --target i686 --nodeps builddir/build/SPECS/UpTools.spec'], False, '/var/lib/mock/fedora-rawhide-i386/root/', None, 0, True, 0, 500, 489, None, logger=<mock.trace_decorator.getLog object at 0x8573c6c>)
+Executing command: ['bash', '--login', '-c', 'rpmbuild -bb --target i686 --nodeps builddir/build/SPECS/UpTools.spec']
+Construyendo las plataformas de destino: i686
+Construyendo para el destino i686
+Ejecutando(%prep): /bin/sh -e /var/tmp/rpm-tmp.e6UAK4
++ umask 022
++ cd /builddir/build/BUILD
++ LANG=C
++ export LANG
++ unset DISPLAY
++ cd /builddir/build/BUILD
++ rm -rf UpTools-8.5.5
++ /usr/bin/gzip -dc /builddir/build/SOURCES/UpTools-8.5.5.tar.gz
++ /bin/tar -xf -
++ STATUS=0
++ '[' 0 -ne 0 ']'
++ cd UpTools-8.5.5
++ /bin/chmod -Rf a+rX,u+w,g-w,o-w .
++ cp -p configure configure.backup
++ sed -i -e 2524d -e 10935,10941d configure
++ touch -r configure.backup configure
++ cp -p doc/README.OLDGLIBC doc/README.CENTOS
++ exit 0
+Ejecutando(%build): /bin/sh -e /var/tmp/rpm-tmp.cEsr2F
++ umask 022
++ cd /builddir/build/BUILD
++ cd UpTools-8.5.5
++ LANG=C
++ export LANG
++ unset DISPLAY
++ CFLAGS='-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'
++ export CFLAGS
++ CXXFLAGS='-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'
++ export CXXFLAGS
++ FFLAGS='-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 -I/usr/lib/gfortran/modules'
++ export FFLAGS
++ ./configure --build=i686-pc-linux-gnu --host=i686-pc-linux-gnu --program-prefix= --disable-dependency-tracking --prefix=/usr --exec-prefix=/usr --bindir=/usr/bin --sbindir=/usr/sbin --sysconfdir=/etc --datadir=/usr/share --includedir=/usr/include --libdir=/usr/lib --libexecdir=/usr/libexec --localstatedir=/var --sharedstatedir=/var/lib --mandir=/usr/share/man --infodir=/usr/share/info --disable-dependency-tracking --enable-experimental=no --disable-static LDFLAGS=-L/usr/lib/mysql
+checking for a BSD-compatible install... /usr/bin/install -c
+checking whether build environment is sane... yes
+checking for a thread-safe mkdir -p... /bin/mkdir -p
+checking for gawk... gawk
+checking whether make sets $(MAKE)... yes
+checking build system type... i686-pc-linux-gnu
+checking host system type... i686-pc-linux-gnu
+checking how to print strings... printf
+checking for style of include used by make... GNU
+checking for i686-pc-linux-gnu-gcc... no
+checking for gcc... gcc
+checking whether the C compiler works... yes
+checking for C compiler default output file name... a.out
+checking for suffix of executables... 
+checking whether we are cross compiling... no
+checking for suffix of object files... o
+checking whether we are using the GNU C compiler... yes
+checking whether gcc accepts -g... yes
+checking for gcc option to accept ISO C89... none needed
+checking dependency style of gcc... none
+checking for a sed that does not truncate output... /bin/sed
+checking for grep that handles long lines and -e... /bin/grep
+checking for egrep... /bin/grep -E
+checking for fgrep... /bin/grep -F
+checking for ld used by gcc... /usr/bin/ld
+checking if the linker (/usr/bin/ld) is GNU ld... yes
+checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
+checking the name lister (/usr/bin/nm -B) interface... BSD nm
+checking whether ln -s works... yes
+checking the maximum length of command line arguments... 1572864
+checking whether the shell understands some XSI constructs... yes
+checking whether the shell understands "+="... yes
+checking for /usr/bin/ld option to reload object files... -r
+checking for i686-pc-linux-gnu-objdump... no
+checking for objdump... objdump
+checking how to recognize dependent libraries... pass_all
+checking for i686-pc-linux-gnu-ar... no
+checking for ar... ar
+checking for i686-pc-linux-gnu-strip... no
+checking for strip... strip
+checking for i686-pc-linux-gnu-ranlib... no
+checking for ranlib... ranlib
+checking command to parse /usr/bin/nm -B output from gcc object... ok
+checking how to run the C preprocessor... gcc -E
+checking for ANSI C header files... yes
+checking for sys/types.h... yes
+checking for sys/stat.h... yes
+checking for stdlib.h... yes
+checking for string.h... yes
+checking for memory.h... yes
+checking for strings.h... yes
+checking for inttypes.h... yes
+checking for stdint.h... yes
+checking for unistd.h... yes
+checking for dlfcn.h... yes
+checking for objdir... .libs
+checking if gcc supports -fno-rtti -fno-exceptions... no
+checking for gcc option to produce PIC... -fPIC -DPIC
+checking if gcc PIC flag -fPIC -DPIC works... yes
+checking if gcc static flag -static works... no
+checking if gcc supports -c -o file.o... yes
+checking if gcc supports -c -o file.o... (cached) yes
+checking whether the gcc linker (/usr/bin/ld) supports shared libraries... yes
+checking whether -lc should be explicitly linked in... no
+checking dynamic linker characteristics... GNU/Linux ld.so
+checking how to hardcode library paths into programs... immediate
+checking for shl_load... no
+checking for shl_load in -ldld... no
+checking for dlopen... no
+checking for dlopen in -ldl... yes
+checking whether a program can dlopen itself... yes
+checking whether a statically linked program can dlopen itself... yes
+checking whether stripping libraries is possible... yes
+checking if libtool supports shared libraries... yes
+checking whether to build shared libraries... yes
+checking whether to build static libraries... no
+checking for i686-pc-linux-gnu-g++... no
+checking for i686-pc-linux-gnu-c++... no
+checking for i686-pc-linux-gnu-gpp... no
+checking for i686-pc-linux-gnu-aCC... no
+checking for i686-pc-linux-gnu-CC... no
+checking for i686-pc-linux-gnu-cxx... no
+checking for i686-pc-linux-gnu-cc++... no
+checking for i686-pc-linux-gnu-cl.exe... no
+checking for i686-pc-linux-gnu-FCC... no
+checking for i686-pc-linux-gnu-KCC... no
+checking for i686-pc-linux-gnu-RCC... no
+checking for i686-pc-linux-gnu-xlC_r... no
+checking for i686-pc-linux-gnu-xlC... no
+checking for g++... g++
+checking whether we are using the GNU C++ compiler... yes
+checking whether g++ accepts -g... yes
+checking dependency style of g++... none
+checking how to run the C++ preprocessor... g++ -E
+checking for ld used by g++... /usr/bin/ld
+checking if the linker (/usr/bin/ld) is GNU ld... yes
+checking whether the g++ linker (/usr/bin/ld) supports shared libraries... yes
+checking for g++ option to produce PIC... -fPIC -DPIC
+checking if g++ PIC flag -fPIC -DPIC works... yes
+checking if g++ static flag -static works... no
+checking if g++ supports -c -o file.o... yes
+checking if g++ supports -c -o file.o... (cached) yes
+checking whether the g++ linker (/usr/bin/ld) supports shared libraries... yes
+checking dynamic linker characteristics... (cached) GNU/Linux ld.so
+checking how to hardcode library paths into programs... immediate
+checking whether the C++ compiler works... yes
+checking for library containing inet_net_pton... -lresolv
+checking for library containing pthread_create... -lpthread
+checking for library containing X509_free... -lcrypto
+checking for library containing SSL_library_init... -lssl
+checking openssl/ssl.h usability... yes
+checking openssl/ssl.h presence... yes
+checking for openssl/ssl.h... yes
+checking for library containing mysql_close... -lmysqlclient
+checking mysql/mysql.h usability... yes
+checking mysql/mysql.h presence... yes
+checking for mysql/mysql.h... yes
+checking for library containing PQfinish... -lpq
+checking postgresql/libpq-fe.h usability... no
+checking postgresql/libpq-fe.h presence... no
+checking for postgresql/libpq-fe.h... no
+checking libpq-fe.h usability... yes
+checking libpq-fe.h presence... yes
+checking for libpq-fe.h... yes
+checking "ns_initparse is in the text code section of libresolv.so"... "yes"
+checking for sys/types.h... (cached) yes
+checking for netinet/in.h... yes
+checking for arpa/nameser.h... yes
+checking for netdb.h... yes
+checking for resolv.h... yes
+checking if g++ supports C++0x features without additional flags... no
+checking if g++ supports C++0x features with -std=c++0x... no
+checking if g++ supports C++0x features with -std=gnu++0x... no
+checking whether the compiler supports __gnu_cxx::hash_map... yes
+checking whether the compiler supports __gnu_cxx::hash_set... yes
+checking arpa/inet.h usability... yes
+checking arpa/inet.h presence... yes
+checking for arpa/inet.h... yes
+checking fcntl.h usability... yes
+checking fcntl.h presence... yes
+checking for fcntl.h... yes
+checking for netdb.h... (cached) yes
+checking for netinet/in.h... (cached) yes
+checking for stdlib.h... (cached) yes
+checking for string.h... (cached) yes
+checking for strings.h... (cached) yes
+checking sys/ioctl.h usability... yes
+checking sys/ioctl.h presence... yes
+checking for sys/ioctl.h... yes
+checking sys/socket.h usability... yes
+checking sys/socket.h presence... yes
+checking for sys/socket.h... yes
+checking sys/time.h usability... yes
+checking sys/time.h presence... yes
+checking for sys/time.h... yes
+checking syslog.h usability... yes
+checking syslog.h presence... yes
+checking for syslog.h... yes
+checking for unistd.h... (cached) yes
+checking for arpa/nameser.h... (cached) yes
+checking bits/wordsize.h usability... yes
+checking bits/wordsize.h presence... yes
+checking for bits/wordsize.h... yes
+checking dirent.h usability... yes
+checking dirent.h presence... yes
+checking for dirent.h... yes
+checking errno.h usability... yes
+checking errno.h presence... yes
+checking for errno.h... yes
+checking ext/stdio_filebuf.h usability... yes
+checking ext/stdio_filebuf.h presence... yes
+checking for ext/stdio_filebuf.h... yes
+checking for fcntl.h... (cached) yes
+checking for netdb.h... (cached) yes
+checking net/if.h usability... yes
+checking net/if.h presence... yes
+checking for net/if.h... yes
+checking for netinet/in.h... (cached) yes
+checking pthread.h usability... yes
+checking pthread.h presence... yes
+checking for pthread.h... yes
+checking regex.h usability... yes
+checking regex.h presence... yes
+checking for regex.h... yes
+checking for resolv.h... (cached) yes
+checking semaphore.h usability... yes
+checking semaphore.h presence... yes
+checking for semaphore.h... yes
+checking signal.h usability... yes
+checking signal.h presence... yes
+checking for signal.h... yes
+checking stdio.h usability... yes
+checking stdio.h presence... yes
+checking for stdio.h... yes
+checking for stdlib.h... (cached) yes
+checking for strings.h... (cached) yes
+checking for sys/ioctl.h... (cached) yes
+checking for syslog.h... (cached) yes
+checking for sys/stat.h... (cached) yes
+checking for sys/types.h... (cached) yes
+checking sys/un.h usability... yes
+checking sys/un.h presence... yes
+checking for sys/un.h... yes
+checking time.h usability... yes
+checking time.h presence... yes
+checking for time.h... yes
+checking cassert usability... yes
+checking cassert presence... yes
+checking for cassert... yes
+checking cctype usability... yes
+checking cctype presence... yes
+checking for cctype... yes
+checking cerrno usability... yes
+checking cerrno presence... yes
+checking for cerrno... yes
+checking cmath usability... yes
+checking cmath presence... yes
+checking for cmath... yes
+checking cstddef usability... yes
+checking cstddef presence... yes
+checking for cstddef... yes
+checking cstdio usability... yes
+checking cstdio presence... yes
+checking for cstdio... yes
+checking cstdlib usability... yes
+checking cstdlib presence... yes
+checking for cstdlib... yes
+checking cstring usability... yes
+checking cstring presence... yes
+checking for cstring... yes
+checking ext/slist usability... yes
+checking ext/slist presence... yes
+checking for ext/slist... yes
+checking fstream usability... yes
+checking fstream presence... yes
+checking for fstream... yes
+checking iostream usability... yes
+checking iostream presence... yes
+checking for iostream... yes
+checking list usability... yes
+checking list presence... yes
+checking for list... yes
+checking map usability... yes
+checking map presence... yes
+checking for map... yes
+checking ostream usability... yes
+checking ostream presence... yes
+checking for ostream... yes
+checking set usability... yes
+checking set presence... yes
+checking for set... yes
+checking sstream usability... yes
+checking sstream presence... yes
+checking for sstream... yes
+checking string usability... yes
+checking string presence... yes
+checking for string... yes
+checking typeinfo usability... yes
+checking typeinfo presence... yes
+checking for typeinfo... yes
+checking for unistd.h... (cached) yes
+checking vector usability... yes
+checking vector presence... yes
+checking for vector... yes
+checking for stdbool.h that conforms to C99... yes
+checking for _Bool... no
+checking for inline... inline
+checking for size_t... yes
+checking whether time.h and sys/time.h may both be included... yes
+checking for sys/time.h... (cached) yes
+checking for unistd.h... (cached) yes
+checking for alarm... yes
+checking for working mktime... yes
+checking for gethostbyname... yes
+checking for localtime_r... yes
+checking for memmove... yes
+checking for memset... yes
+checking for regcomp... yes
+checking for select... yes
+checking for socket... yes
+checking for strcasecmp... yes
+checking for strerror... yes
+checking for strncasecmp... yes
+configure: creating ./config.status
+config.status: creating Makefile
+config.status: creating config.h
+config.status: executing depfiles commands
+config.status: executing libtool commands
+###############################################
+Congratulations! You have created a Makefile for: UpTools  8.5.5
+prefix: '/usr'.
+libdir: '/usr/lib'
+LIBS: '-lpq -lmysqlclient -lssl -lcrypto -lpthread -lresolv '
+LDFLAGS: '-L/usr/lib/mysql'
+CPPFLAGS: ''
+CXXFLAGS: '-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'
+ssl support: 'YES'
+mysql support: 'YES'
+postgresql support: 'YES'
+UpTools will be Built on: 'i686-pc-linux-gnu'
+UpTools will Built for: 'i686-pc-linux-gnu'
+EXPERIMENTAL is: 'No. It will be used hash headers'
+Now type 'make'  in order to compile
+For some examples about basic UpTools usage, you should run: 'make examples'
+After compiling, you can install with 'make install'
+At the end, you can check your installation with 'make installcheck'
+################################################
++ make -j2
+make  all-am
+make[1]: Entering directory `/builddir/build/BUILD/UpTools-8.5.5'
+\
+#	source='UpLog.cc' object='UpLog.lo' libtool=yes 
+\
+#	source='UpLine.cc' object='UpLine.lo' libtool=yes 
+/bin/sh ./libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -I./include   -ansi -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 -c -o UpLog.lo UpLog.cc
+/bin/sh ./libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -I./include   -ansi -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 -c -o UpLine.lo UpLine.cc
+libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I./include -ansi -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 -c UpLog.cc  -fPIC -DPIC -o .libs/UpLog.o
+libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I./include -ansi -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 -c UpLine.cc  -fPIC -DPIC -o .libs/UpLine.o
+UpLog.cc: In function 'void upOpenLogFileInternal(const char*, int, const char*, int, int (*)(char*))':
+UpLog.cc:121:336: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpLog.cc:121:373: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpLog.cc:133:200: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpLog.cc:133:237: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpLog.cc:133:442: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpLog.cc:133:479: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpLog.cc: In function 'void upOpenLogInternal(const char*, int, int, int)':
+UpLog.cc:102:396: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpLog.cc:102:433: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+\
+#	source='UpThread.cc' object='UpThread.lo' libtool=yes 
+/bin/sh ./libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -I./include   -ansi -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 -c -o UpThread.lo UpThread.cc
+libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I./include -ansi -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 -c UpThread.cc  -fPIC -DPIC -o .libs/UpThread.o
+\
+#	source='UpThreadWorkDistributor.cc' object='UpThreadWorkDistributor.lo' libtool=yes 
+/bin/sh ./libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -I./include   -ansi -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 -c -o UpThreadWorkDistributor.lo UpThreadWorkDistributor.cc
+\
+#	source='UpInet.cc' object='UpInet.lo' libtool=yes 
+/bin/sh ./libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -I./include   -ansi -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 -c -o UpInet.lo UpInet.cc
+libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I./include -ansi -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 -c UpThreadWorkDistributor.cc  -fPIC -DPIC -o .libs/UpThreadWorkDistributor.o
+libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I./include -ansi -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 -c UpInet.cc  -fPIC -DPIC -o .libs/UpInet.o
+UpThreadWorkDistributor.cc: In member function 'bool UpThreadWorkDistributor::processWork(UpWork*, bool)':
+UpThreadWorkDistributor.cc:457:391: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpThreadWorkDistributor.cc:457:428: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpThreadWorkDistributor.cc: In destructor 'UpThreadWorkDistributor::~UpThreadWorkDistributor()':
+UpThreadWorkDistributor.cc:250:397: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpThreadWorkDistributor.cc:250:434: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpThreadWorkDistributor.cc:260:434: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpThreadWorkDistributor.cc:260:471: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpThreadWorkDistributor.cc: In member function 'virtual void UpWork::action()':
+UpThreadWorkDistributor.cc:56:562: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpThreadWorkDistributor.cc:56:599: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+\
+#	source='UpDnsBase.cc' object='UpDnsBase.lo' libtool=yes 
+/bin/sh ./libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -I./include   -ansi -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 -c -o UpDnsBase.lo UpDnsBase.cc
+libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I./include -ansi -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 -c UpDnsBase.cc  -fPIC -DPIC -o .libs/UpDnsBase.o
+\
+#	source='UpResolver.cc' object='UpResolver.lo' libtool=yes 
+/bin/sh ./libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -I./include   -ansi -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 -c -o UpResolver.lo UpResolver.cc
+libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I./include -ansi -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 -c UpResolver.cc  -fPIC -DPIC -o .libs/UpResolver.o
+In file included from /usr/lib/gcc/i686-redhat-linux/4.6.0/../../../../include/c++/4.6.0/ext/hash_map:61:0,
+                 from ./include/UpTools/UpHashMap.h:47,
+                 from ./include/UpTools/UpDnsBase.h:41,
+                 from UpDnsBase.cc:38:
+/usr/lib/gcc/i686-redhat-linux/4.6.0/../../../../include/c++/4.6.0/backward/backward_warning.h:33:2: warning: #warning This file includes at least one deprecated or antiquated header which may be removed without further notice at a future date. Please use a non-deprecated interface with equivalent functionality instead. For a listing of replacement headers and interfaces, consult the file backward_warning.h. To disable this warning use -Wno-deprecated. [-Wcpp]
+\
+#	source='UpResolverSimple.cc' object='UpResolverSimple.lo' libtool=yes 
+/bin/sh ./libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -I./include   -ansi -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 -c -o UpResolverSimple.lo UpResolverSimple.cc
+libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I./include -ansi -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 -c UpResolverSimple.cc  -fPIC -DPIC -o .libs/UpResolverSimple.o
+In file included from /usr/lib/gcc/i686-redhat-linux/4.6.0/../../../../include/c++/4.6.0/ext/hash_map:61:0,
+                 from ./include/UpTools/UpHashMap.h:47,
+                 from ./include/UpTools/UpDnsBase.h:41,
+                 from ./include/UpTools/UpResolver.h:100,
+                 from UpResolver.cc:40:
+/usr/lib/gcc/i686-redhat-linux/4.6.0/../../../../include/c++/4.6.0/backward/backward_warning.h:33:2: warning: #warning This file includes at least one deprecated or antiquated header which may be removed without further notice at a future date. Please use a non-deprecated interface with equivalent functionality instead. For a listing of replacement headers and interfaces, consult the file backward_warning.h. To disable this warning use -Wno-deprecated. [-Wcpp]
+UpResolver.cc: In member function 'virtual void* UpResolver::run()':
+UpResolver.cc:229:407: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpResolver.cc:229:444: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpResolver.cc:233:304: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpResolver.cc:233:341: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpResolver.cc:257:365: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpResolver.cc:257:402: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpResolver.cc: In member function 'bool UpResolver::query(UpDnsQuery&)':
+UpResolver.cc:172:298: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpResolver.cc:172:335: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpResolver.cc:174:282: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpResolver.cc:174:319: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpResolver.cc:180:347: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpResolver.cc:180:384: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpResolver.cc: In member function 'bool UpResolver::selfQuery(UpDnsQuery&)':
+UpResolver.cc:138:290: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpResolver.cc:138:327: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpResolver.cc:144:355: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpResolver.cc:144:392: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpResolver.cc: In member function 'bool UpResolver::retransmitQuery(UpDnsQuery&, time_t)':
+UpResolver.cc:112:413: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpResolver.cc:112:450: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpResolver.cc:119:365: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpResolver.cc:119:402: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpResolver.cc: In member function 'bool UpResolver::init()':
+UpResolver.cc:76:337: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpResolver.cc:76:374: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpResolver.cc:82:466: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpResolver.cc:82:503: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+\
+#	source='UpDnsQuery.cc' object='UpDnsQuery.lo' libtool=yes 
+/bin/sh ./libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -I./include   -ansi -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 -c -o UpDnsQuery.lo UpDnsQuery.cc
+libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I./include -ansi -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 -c UpDnsQuery.cc  -fPIC -DPIC -o .libs/UpDnsQuery.o
+In file included from /usr/lib/gcc/i686-redhat-linux/4.6.0/../../../../include/c++/4.6.0/ext/hash_map:61:0,
+                 from ./include/UpTools/UpHashMap.h:47,
+                 from ./include/UpTools/UpDnsBase.h:41,
+                 from ./include/UpTools/UpResolverSimple.h:70,
+                 from UpResolverSimple.cc:40:
+/usr/lib/gcc/i686-redhat-linux/4.6.0/../../../../include/c++/4.6.0/backward/backward_warning.h:33:2: warning: #warning This file includes at least one deprecated or antiquated header which may be removed without further notice at a future date. Please use a non-deprecated interface with equivalent functionality instead. For a listing of replacement headers and interfaces, consult the file backward_warning.h. To disable this warning use -Wno-deprecated. [-Wcpp]
+UpResolverSimple.cc: In member function 'bool UpResolverSimple::query(UpDnsQuerySimple&)':
+UpResolverSimple.cc:89:293: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpResolverSimple.cc:89:330: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpResolverSimple.cc:105:371: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpResolverSimple.cc:105:408: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpResolverSimple.cc:107:493: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpResolverSimple.cc:107:530: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpResolverSimple.cc:121:423: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpResolverSimple.cc:121:460: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpResolverSimple.cc:127:320: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpResolverSimple.cc:127:357: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpResolverSimple.cc:131:360: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpResolverSimple.cc:131:397: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpResolverSimple.cc:144:341: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpResolverSimple.cc:144:378: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpResolverSimple.cc: In member function 'bool UpResolverSimple::init()':
+UpResolverSimple.cc:69:361: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpResolverSimple.cc:69:398: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpResolverSimple.cc:73:478: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpResolverSimple.cc:73:515: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+\
+#	source='UpDnsQuerySimple.cc' object='UpDnsQuerySimple.lo' libtool=yes 
+/bin/sh ./libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -I./include   -ansi -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 -c -o UpDnsQuerySimple.lo UpDnsQuerySimple.cc
+libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I./include -ansi -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 -c UpDnsQuerySimple.cc  -fPIC -DPIC -o .libs/UpDnsQuerySimple.o
+In file included from /usr/lib/gcc/i686-redhat-linux/4.6.0/../../../../include/c++/4.6.0/ext/hash_map:61:0,
+                 from ./include/UpTools/UpHashMap.h:47,
+                 from ./include/UpTools/UpDnsBase.h:41,
+                 from ./include/UpTools/UpResolver.h:100,
+                 from UpDnsQuery.cc:40:
+/usr/lib/gcc/i686-redhat-linux/4.6.0/../../../../include/c++/4.6.0/backward/backward_warning.h:33:2: warning: #warning This file includes at least one deprecated or antiquated header which may be removed without further notice at a future date. Please use a non-deprecated interface with equivalent functionality instead. For a listing of replacement headers and interfaces, consult the file backward_warning.h. To disable this warning use -Wno-deprecated. [-Wcpp]
+UpDnsQuery.cc: In member function 'virtual void UpDnsQuery::completed()':
+UpDnsQuery.cc:267:380: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpDnsQuery.cc:267:417: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpDnsQuery.cc:275:223: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpDnsQuery.cc:275:260: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpDnsQuery.cc: In member function 'bool UpDnsQuery::waitCompletion()':
+UpDnsQuery.cc:115:465: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpDnsQuery.cc:115:502: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpDnsQuery.cc: In member function 'void UpDnsQuery::allowWaiting()':
+UpDnsQuery.cc:92:385: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpDnsQuery.cc:92:422: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpDnsQuery.cc:97:461: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpDnsQuery.cc:97:498: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+\
+#	source='UpRegex.cc' object='UpRegex.lo' libtool=yes 
+/bin/sh ./libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -I./include   -ansi -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 -c -o UpRegex.lo UpRegex.cc
+libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I./include -ansi -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 -c UpRegex.cc  -fPIC -DPIC -o .libs/UpRegex.o
+In file included from /usr/lib/gcc/i686-redhat-linux/4.6.0/../../../../include/c++/4.6.0/ext/hash_map:61:0,
+                 from ./include/UpTools/UpHashMap.h:47,
+                 from ./include/UpTools/UpDnsBase.h:41,
+                 from ./include/UpTools/UpResolverSimple.h:70,
+                 from UpDnsQuerySimple.cc:40:
+/usr/lib/gcc/i686-redhat-linux/4.6.0/../../../../include/c++/4.6.0/backward/backward_warning.h:33:2: warning: #warning This file includes at least one deprecated or antiquated header which may be removed without further notice at a future date. Please use a non-deprecated interface with equivalent functionality instead. For a listing of replacement headers and interfaces, consult the file backward_warning.h. To disable this warning use -Wno-deprecated. [-Wcpp]
+\
+#	source='UpConf.cc' object='UpConf.lo' libtool=yes 
+/bin/sh ./libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -I./include   -ansi -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 -c -o UpConf.lo UpConf.cc
+libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I./include -ansi -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 -c UpConf.cc  -fPIC -DPIC -o .libs/UpConf.o
+\
+#	source='UpLinkable.cc' object='UpLinkable.lo' libtool=yes 
+/bin/sh ./libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -I./include   -ansi -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 -c -o UpLinkable.lo UpLinkable.cc
+libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I./include -ansi -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 -c UpLinkable.cc  -fPIC -DPIC -o .libs/UpLinkable.o
+In file included from /usr/lib/gcc/i686-redhat-linux/4.6.0/../../../../include/c++/4.6.0/ext/hash_map:61:0,
+                 from ./include/UpTools/UpHashMap.h:47,
+                 from ./include/UpTools/UpSmartLinkPtr.h:227,
+                 from UpLinkable.cc:38:
+/usr/lib/gcc/i686-redhat-linux/4.6.0/../../../../include/c++/4.6.0/backward/backward_warning.h:33:2: warning: #warning This file includes at least one deprecated or antiquated header which may be removed without further notice at a future date. Please use a non-deprecated interface with equivalent functionality instead. For a listing of replacement headers and interfaces, consult the file backward_warning.h. To disable this warning use -Wno-deprecated. [-Wcpp]
+\
+#	source='UpOp.cc' object='UpOp.lo' libtool=yes 
+/bin/sh ./libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -I./include   -ansi -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 -c -o UpOp.lo UpOp.cc
+libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I./include -ansi -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 -c UpOp.cc  -fPIC -DPIC -o .libs/UpOp.o
+In file included from /usr/lib/gcc/i686-redhat-linux/4.6.0/../../../../include/c++/4.6.0/ext/hash_map:61:0,
+                 from ./include/UpTools/UpHashMap.h:47,
+                 from ./include/UpTools/UpConf.h:41,
+                 from UpConf.cc:39:
+/usr/lib/gcc/i686-redhat-linux/4.6.0/../../../../include/c++/4.6.0/backward/backward_warning.h:33:2: warning: #warning This file includes at least one deprecated or antiquated header which may be removed without further notice at a future date. Please use a non-deprecated interface with equivalent functionality instead. For a listing of replacement headers and interfaces, consult the file backward_warning.h. To disable this warning use -Wno-deprecated. [-Wcpp]
+\
+#	source='UpTimeVal.cc' object='UpTimeVal.lo' libtool=yes 
+/bin/sh ./libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -I./include   -ansi -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 -c -o UpTimeVal.lo UpTimeVal.cc
+libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I./include -ansi -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 -c UpTimeVal.cc  -fPIC -DPIC -o .libs/UpTimeVal.o
+\
+#	source='UpTimerManager.cc' object='UpTimerManager.lo' libtool=yes 
+/bin/sh ./libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -I./include   -ansi -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 -c -o UpTimerManager.lo UpTimerManager.cc
+libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I./include -ansi -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 -c UpTimerManager.cc  -fPIC -DPIC -o .libs/UpTimerManager.o
+\
+#	source='UpSubstitute.cc' object='UpSubstitute.lo' libtool=yes 
+/bin/sh ./libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -I./include   -ansi -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 -c -o UpSubstitute.lo UpSubstitute.cc
+libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I./include -ansi -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 -c UpSubstitute.cc  -fPIC -DPIC -o .libs/UpSubstitute.o
+\
+#	source='UpNaptrQuery.cc' object='UpNaptrQuery.lo' libtool=yes 
+/bin/sh ./libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -I./include   -ansi -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 -c -o UpNaptrQuery.lo UpNaptrQuery.cc
+libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I./include -ansi -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 -c UpNaptrQuery.cc  -fPIC -DPIC -o .libs/UpNaptrQuery.o
+In file included from /usr/lib/gcc/i686-redhat-linux/4.6.0/../../../../include/c++/4.6.0/ext/hash_map:61:0,
+                 from ./include/UpTools/UpHashMap.h:47,
+                 from ./include/UpTools/UpTimerManager.h:51,
+                 from UpTimerManager.cc:38:
+/usr/lib/gcc/i686-redhat-linux/4.6.0/../../../../include/c++/4.6.0/backward/backward_warning.h:33:2: warning: #warning This file includes at least one deprecated or antiquated header which may be removed without further notice at a future date. Please use a non-deprecated interface with equivalent functionality instead. For a listing of replacement headers and interfaces, consult the file backward_warning.h. To disable this warning use -Wno-deprecated. [-Wcpp]
+./include/UpTools/UpTimer.inl: In member function 'virtual bool UpTimer::action(const UpTimeVal&)':
+./include/UpTools/UpTimer.inl:45:242: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+./include/UpTools/UpTimer.inl:45:279: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+\
+#	source='UpSql.cc' object='UpSql.lo' libtool=yes 
+/bin/sh ./libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -I./include   -ansi -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 -c -o UpSql.lo UpSql.cc
+libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I./include -ansi -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 -c UpSql.cc  -fPIC -DPIC -o .libs/UpSql.o
+In file included from /usr/lib/gcc/i686-redhat-linux/4.6.0/../../../../include/c++/4.6.0/ext/hash_map:61:0,
+                 from ./include/UpTools/UpHashMap.h:47,
+                 from ./include/UpTools/UpDnsBase.h:41,
+                 from ./include/UpTools/UpResolver.h:100,
+                 from ./include/UpTools/UpNaptrQuery.h:42,
+                 from UpNaptrQuery.cc:38:
+/usr/lib/gcc/i686-redhat-linux/4.6.0/../../../../include/c++/4.6.0/backward/backward_warning.h:33:2: warning: #warning This file includes at least one deprecated or antiquated header which may be removed without further notice at a future date. Please use a non-deprecated interface with equivalent functionality instead. For a listing of replacement headers and interfaces, consult the file backward_warning.h. To disable this warning use -Wno-deprecated. [-Wcpp]
+\
+#	source='UpSqlConnPool.cc' object='UpSqlConnPool.lo' libtool=yes 
+/bin/sh ./libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -I./include   -ansi -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 -c -o UpSqlConnPool.lo UpSqlConnPool.cc
+libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I./include -ansi -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 -c UpSqlConnPool.cc  -fPIC -DPIC -o .libs/UpSqlConnPool.o
+UpSql.cc: In member function 'bool UpSqlConn::connect()':
+UpSql.cc:164:337: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpSql.cc:164:374: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpSql.cc:179:297: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpSql.cc:179:334: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpSql.cc: In member function 'bool UpSqlConn::connect(const string&, const string&, const string&, const string&, short unsigned int, const string&)':
+UpSql.cc:154:278: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpSql.cc:154:315: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpSql.cc: In member function 'bool UpSqlConn::connect(const string&)':
+UpSql.cc:145:278: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpSql.cc:145:315: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+\
+#	source='UpSqlPgsql.cc' object='UpSqlPgsql.lo' libtool=yes 
+/bin/sh ./libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -I./include   -ansi -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 -c -o UpSqlPgsql.lo UpSqlPgsql.cc
+libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I./include -ansi -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 -c UpSqlPgsql.cc  -fPIC -DPIC -o .libs/UpSqlPgsql.o
+\
+#	source='UpSqlMysql.cc' object='UpSqlMysql.lo' libtool=yes 
+/bin/sh ./libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -I./include   -ansi -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 -c -o UpSqlMysql.lo UpSqlMysql.cc
+libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I./include -ansi -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 -c UpSqlMysql.cc  -fPIC -DPIC -o .libs/UpSqlMysql.o
+UpSqlPgsql.cc: In member function 'virtual bool UpSqlConnPgsql::exec(UpSqlQuery&, const char*)':
+UpSqlPgsql.cc:98:315: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpSqlPgsql.cc:98:352: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpSqlPgsql.cc: In member function 'virtual bool UpSqlConnPgsql::privateConnect(const string&)':
+UpSqlPgsql.cc:70:367: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpSqlPgsql.cc:70:404: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+\
+#	source='UpSsl1.cc' object='UpSsl1.lo' libtool=yes 
+/bin/sh ./libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -I./include   -ansi -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 -c -o UpSsl1.lo UpSsl1.cc
+libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I./include -ansi -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 -c UpSsl1.cc  -fPIC -DPIC -o .libs/UpSsl1.o
+UpSqlMysql.cc: In member function 'virtual bool UpSqlConnMysql::exec(UpSqlQuery&, const char*, size_t)':
+UpSqlMysql.cc:103:315: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpSqlMysql.cc:103:352: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpSqlMysql.cc:140:339: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpSqlMysql.cc:140:376: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpSqlMysql.cc: In member function 'virtual bool UpSqlConnMysql::privateConnect(const string&)':
+UpSqlMysql.cc:58:305: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpSqlMysql.cc:58:342: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpSqlMysql.cc:79:369: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+UpSqlMysql.cc:79:406: warning: ignoring return value of 'ssize_t write(int, const void*, size_t)', declared with attribute warn_unused_result [-Wunused-result]
+\
+#	source='UpSsl2.cc' object='UpSsl2.lo' libtool=yes 
+/bin/sh ./libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -I./include   -ansi -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 -c -o UpSsl2.lo UpSsl2.cc
+libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I./include -ansi -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 -c UpSsl2.cc  -fPIC -DPIC -o .libs/UpSsl2.o
+\
+#	source='UpSslThreadSafe.cc' object='UpSslThreadSafe.lo' libtool=yes 
+/bin/sh ./libtool  --tag=CXX   --mode=compile g++ -DHAVE_CONFIG_H -I.  -I./include   -ansi -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 -c -o UpSslThreadSafe.lo UpSslThreadSafe.cc
+libtool: compile:  g++ -DHAVE_CONFIG_H -I. -I./include -ansi -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 -c UpSslThreadSafe.cc  -fPIC -DPIC -o .libs/UpSslThreadSafe.o
+/bin/sh ./libtool  --tag=CXX   --mode=link g++ -ansi -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 -version-info 1:0:0 -L/usr/lib/mysql -o libUpTools.la -rpath /usr/lib UpLog.lo UpLine.lo UpThread.lo UpThreadWorkDistributor.lo UpInet.lo UpDnsBase.lo UpResolver.lo UpResolverSimple.lo UpDnsQuery.lo UpDnsQuerySimple.lo UpRegex.lo UpConf.lo UpLinkable.lo UpOp.lo UpTimeVal.lo UpTimerManager.lo UpSubstitute.lo UpNaptrQuery.lo UpSql.lo UpSqlConnPool.lo UpSqlPgsql.lo UpSqlMysql.lo UpSsl1.lo UpSsl2.lo UpSslThreadSafe.lo  -lpq -lmysqlclient -lssl -lcrypto -lpthread -lresolv 
+libtool: link: g++ -shared -nostdlib /usr/lib/gcc/i686-redhat-linux/4.6.0/../../../crti.o /usr/lib/gcc/i686-redhat-linux/4.6.0/crtbeginS.o  .libs/UpLog.o .libs/UpLine.o .libs/UpThread.o .libs/UpThreadWorkDistributor.o .libs/UpInet.o .libs/UpDnsBase.o .libs/UpResolver.o .libs/UpResolverSimple.o .libs/UpDnsQuery.o .libs/UpDnsQuerySimple.o .libs/UpRegex.o .libs/UpConf.o .libs/UpLinkable.o .libs/UpOp.o .libs/UpTimeVal.o .libs/UpTimerManager.o .libs/UpSubstitute.o .libs/UpNaptrQuery.o .libs/UpSql.o .libs/UpSqlConnPool.o .libs/UpSqlPgsql.o .libs/UpSqlMysql.o .libs/UpSsl1.o .libs/UpSsl2.o .libs/UpSslThreadSafe.o   -L/usr/lib/mysql -lpq -lmysqlclient -lssl -lcrypto -lpthread -lresolv -L/usr/lib/gcc/i686-redhat-linux/4.6.0 -L/usr/lib/gcc/i686-redhat-linux/4.6.0/../../.. -lstdc++ -lm -lc -lgcc_s /usr/lib/gcc/i686-redhat-linux/4.6.0/crtendS.o /usr/lib/gcc/i686-redhat-linux/4.6.0/../../../crtn.o  -m32 -march=i686 -mtune=atom   -Wl,-soname -Wl,libUpTools.so.1 -o .libs/libUpTools.so.1.0.0
+libtool: link: (cd ".libs" && rm -f "libUpTools.so.1" && ln -s "libUpTools.so.1.0.0" "libUpTools.so.1")
+libtool: link: (cd ".libs" && rm -f "libUpTools.so" && ln -s "libUpTools.so.1.0.0" "libUpTools.so")
+libtool: link: ( cd ".libs" && rm -f "libUpTools.la" && ln -s "../libUpTools.la" "libUpTools.la" )
+make[1]: Leaving directory `/builddir/build/BUILD/UpTools-8.5.5'
++ exit 0
+Ejecutando(%install): /bin/sh -e /var/tmp/rpm-tmp.um84R8
++ umask 022
++ cd /builddir/build/BUILD
++ '[' /builddir/build/BUILDROOT/UpTools-8.5.5-1.fc16.i386 '!=' / ']'
++ rm -rf /builddir/build/BUILDROOT/UpTools-8.5.5-1.fc16.i386
+++ dirname /builddir/build/BUILDROOT/UpTools-8.5.5-1.fc16.i386
++ mkdir -p /builddir/build/BUILDROOT
++ mkdir /builddir/build/BUILDROOT/UpTools-8.5.5-1.fc16.i386
++ cd UpTools-8.5.5
++ LANG=C
++ export LANG
++ unset DISPLAY
++ rm -rf /builddir/build/BUILDROOT/UpTools-8.5.5-1.fc16.i386
++ make install DESTDIR=/builddir/build/BUILDROOT/UpTools-8.5.5-1.fc16.i386 'INSTALL=install -p'
+make[1]: Entering directory `/builddir/build/BUILD/UpTools-8.5.5'
+test -z "/usr/lib" || /bin/mkdir -p "/builddir/build/BUILDROOT/UpTools-8.5.5-1.fc16.i386/usr/lib"
+ /bin/sh ./libtool   --mode=install install -p   libUpTools.la '/builddir/build/BUILDROOT/UpTools-8.5.5-1.fc16.i386/usr/lib'
+libtool: install: install -p .libs/libUpTools.so.1.0.0 /builddir/build/BUILDROOT/UpTools-8.5.5-1.fc16.i386/usr/lib/libUpTools.so.1.0.0
+libtool: install: (cd /builddir/build/BUILDROOT/UpTools-8.5.5-1.fc16.i386/usr/lib && { ln -s -f libUpTools.so.1.0.0 libUpTools.so.1 || { rm -f libUpTools.so.1 && ln -s libUpTools.so.1.0.0 libUpTools.so.1; }; })
+libtool: install: (cd /builddir/build/BUILDROOT/UpTools-8.5.5-1.fc16.i386/usr/lib && { ln -s -f libUpTools.so.1.0.0 libUpTools.so || { rm -f libUpTools.so && ln -s libUpTools.so.1.0.0 libUpTools.so; }; })
+libtool: install: install -p .libs/libUpTools.lai /builddir/build/BUILDROOT/UpTools-8.5.5-1.fc16.i386/usr/lib/libUpTools.la
+libtool: install: warning: remember to run `libtool --finish /usr/lib'
+test -z "/usr/share/doc/UpTools" || /bin/mkdir -p "/builddir/build/BUILDROOT/UpTools-8.5.5-1.fc16.i386/usr/share/doc/UpTools"
+ install -p -m 644 LICENSE INSTALL README doc/README.FEDORA doc/README.OLDGLIBC doc/README.UBUNTU doc/MULTITHREADING.INTRO doc/INTRO '/builddir/build/BUILDROOT/UpTools-8.5.5-1.fc16.i386/usr/share/doc/UpTools'
+test -z "/usr/share/doc/UpTools/examples" || /bin/mkdir -p "/builddir/build/BUILDROOT/UpTools-8.5.5-1.fc16.i386/usr/share/doc/UpTools/examples"
+ install -p -m 644 doc/examples/testUpThreadWorkSplittable.cc doc/examples/testNaptrAlgorithm.cc doc/examples/testUpDnsRbl.cc doc/examples/testUpThreadSpecificPtr.cc doc/examples/testUpSmartLinkPtr.cc doc/examples/testUpInet.cc doc/examples/testUpAddress2.cc doc/examples/testUpThread.cc doc/examples/testUpResolver.cc doc/examples/testUpResolverSimple.cc doc/examples/testUpLine.cc doc/examples/testUpConf.cc doc/examples/exampleConf.txt doc/examples/testUpRegex.cc doc/examples/testUpLog.cc doc/examples/testUpSelect.cc doc/examples/testUpTimer.cc doc/examples/testUpSockAddr.cc doc/examples/testUpTimeVal.cc doc/examples/testUpSockAddrMaps.cc doc/examples/testUpSockAddrMaps2.cc doc/examples/testUpCondition.cc doc/examples/testUpSubstitute.cc doc/examples/testNaptrAlgorithm2.cc doc/examples/testUpThreadWorkDistributor.cc doc/examples/testUpPgsql.cc doc/examples/testUpMysql.cc doc/examples/testUpSslServer.cc '/builddir/build/BUILDROOT/UpTools-8.5.5-1.fc16.i386/usr/share/doc/UpTools
 /examples'
+test -z "/usr/include/UpTools" || /bin/mkdir -p "/builddir/build/BUILDROOT/UpTools-8.5.5-1.fc16.i386/usr/include/UpTools"
+ install -p -m 644 include/UpTools/UpArch.h include/UpTools/UpBuf.h include/UpTools/UpCondition.h include/UpTools/UpConf.h include/UpTools/UpDnsBase.h include/UpTools/UpDnsBase.inl include/UpTools/UpHashMap.h include/UpTools/UpInet.h include/UpTools/UpInet.inl include/UpTools/UpLine.h include/UpTools/UpLog.h include/UpTools/UpLog.inl include/UpTools/UpNaptrQuery.h include/UpTools/UpOp.h include/UpTools/UpRegex.h include/UpTools/UpResolver.h include/UpTools/UpResolver.inl include/UpTools/UpResolverSimple.h include/UpTools/UpResolverSimple.inl include/UpTools/UpSelect.h include/UpTools/UpSmartLinkPtr.h include/UpTools/UpSmartLinkPtr.inl include/UpTools/UpSubstitute.h include/UpTools/UpThread.h include/UpTools/UpThread.inl include/UpTools/UpThreadSpecific.h include/UpTools/UpThreadSpecific.inl include/UpTools/UpThreadWorkDistributor.h include/UpTools/UpThreadWorkDistributor.inl include/UpTools/UpTimer.h include/UpTools/UpTimer.inl include/UpTools/UpTimerManager.h include/UpTool
 s/UpTimeVal.h include/UpTools/UpTimeVal.inl include/UpTools/UpSql.h include/UpTools/UpSql.inl include/UpTools/UpSqlConnPool.h include/UpTools/UpSqlConnPool.inl include/UpTools/UpSqlPgsql.h include/UpTools/UpSqlPgsql.inl '/builddir/build/BUILDROOT/UpTools-8.5.5-1.fc16.i386/usr/include/UpTools'
+ install -p -m 644 include/UpTools/UpSqlMysql.h include/UpTools/UpSqlMysql.inl include/UpTools/UpSsl.h include/UpTools/UpSsl.inl '/builddir/build/BUILDROOT/UpTools-8.5.5-1.fc16.i386/usr/include/UpTools'
+make[1]: Leaving directory `/builddir/build/BUILD/UpTools-8.5.5'
++ rm -rf /builddir/build/BUILDROOT/UpTools-8.5.5-1.fc16.i386//usr/share/doc/UpTools
++ rm -f /builddir/build/BUILDROOT/UpTools-8.5.5-1.fc16.i386/usr/lib/libUpTools.la
++ /usr/lib/rpm/find-debuginfo.sh --strict-build-id /builddir/build/BUILD/UpTools-8.5.5
+extracting debug info from /builddir/build/BUILDROOT/UpTools-8.5.5-1.fc16.i386/usr/lib/libUpTools.so.1.0.0
+symlinked /usr/lib/debug/usr/lib/libUpTools.so.1.0.0.debug to /usr/lib/debug/usr/lib/libUpTools.so.debug
+symlinked /usr/lib/debug/usr/lib/libUpTools.so.1.0.0.debug to /usr/lib/debug/usr/lib/libUpTools.so.1.debug
+939 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/brp-python-bytecompile /usr/bin/python 1
++ /usr/lib/rpm/redhat/brp-python-hardlink
++ /usr/lib/rpm/redhat/brp-java-repack-jars
+Procesando archivos: UpTools-8.5.5-1.fc16.i686
+Ejecutando(%doc): /bin/sh -e /var/tmp/rpm-tmp.QO1c1E
++ umask 022
++ cd /builddir/build/BUILD
++ cd UpTools-8.5.5
++ DOCDIR=/builddir/build/BUILDROOT/UpTools-8.5.5-1.fc16.i386/usr/share/doc/UpTools-8.5.5
++ export DOCDIR
++ rm -rf /builddir/build/BUILDROOT/UpTools-8.5.5-1.fc16.i386/usr/share/doc/UpTools-8.5.5
++ /bin/mkdir -p /builddir/build/BUILDROOT/UpTools-8.5.5-1.fc16.i386/usr/share/doc/UpTools-8.5.5
++ cp -pr README LICENSE doc/MULTITHREADING.INTRO doc/INTRO /builddir/build/BUILDROOT/UpTools-8.5.5-1.fc16.i386/usr/share/doc/UpTools-8.5.5
++ exit 0
+Provides: libUpTools.so.1
+Requires(interp): /sbin/ldconfig /sbin/ldconfig
+Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1
+Requires(post): /sbin/ldconfig
+Requires(postun): /sbin/ldconfig
+Requires: libc.so.6 libc.so.6(GLIBC_2.0) libc.so.6(GLIBC_2.1.2) libc.so.6(GLIBC_2.1.3) libc.so.6(GLIBC_2.2) libc.so.6(GLIBC_2.3.4) libc.so.6(GLIBC_2.4) libcrypto.so.10 libgcc_s.so.1 libgcc_s.so.1(GCC_3.0) libgcc_s.so.1(GLIBC_2.0) libm.so.6 libm.so.6(GLIBC_2.0) libmysqlclient.so.18 libmysqlclient.so.18(libmysqlclient_16) libpq.so.5 libpthread.so.0 libpthread.so.0(GLIBC_2.0) libpthread.so.0(GLIBC_2.1) libpthread.so.0(GLIBC_2.2) libpthread.so.0(GLIBC_2.3.2) libresolv.so.2 libresolv.so.2(GLIBC_2.2) libresolv.so.2(GLIBC_2.9) libssl.so.10 libstdc++.so.6 libstdc++.so.6(CXXABI_1.3) libstdc++.so.6(GLIBCXX_3.4) libstdc++.so.6(GLIBCXX_3.4.11) libstdc++.so.6(GLIBCXX_3.4.15) libstdc++.so.6(GLIBCXX_3.4.9) rtld(GNU_HASH)
+Procesando archivos: UpTools-devel-8.5.5-1.fc16.i686
+Ejecutando(%doc): /bin/sh -e /var/tmp/rpm-tmp.g3Xpsb
++ umask 022
++ cd /builddir/build/BUILD
++ cd UpTools-8.5.5
++ DOCDIR=/builddir/build/BUILDROOT/UpTools-8.5.5-1.fc16.i386/usr/share/doc/UpTools-devel-8.5.5
++ export DOCDIR
++ rm -rf /builddir/build/BUILDROOT/UpTools-8.5.5-1.fc16.i386/usr/share/doc/UpTools-devel-8.5.5
++ /bin/mkdir -p /builddir/build/BUILDROOT/UpTools-8.5.5-1.fc16.i386/usr/share/doc/UpTools-devel-8.5.5
++ cp -pr LICENSE doc/README.CENTOS doc/examples /builddir/build/BUILDROOT/UpTools-8.5.5-1.fc16.i386/usr/share/doc/UpTools-devel-8.5.5
++ exit 0
+Requires(rpmlib): rpmlib(CompressedFileNames) <= 3.0.4-1 rpmlib(FileDigests) <= 4.6.0-1 rpmlib(PayloadFilesHavePrefix) <= 4.0-1
+Requires: libUpTools.so.1
+Procesando archivos: UpTools-debuginfo-8.5.5-1.fc16.i686
+Comprobando si hay archivos desempaquetados: /usr/lib/rpm/check-files /builddir/build/BUILDROOT/UpTools-8.5.5-1.fc16.i386
+Escrito: /builddir/build/RPMS/UpTools-8.5.5-1.fc16.i686.rpm
+Escrito: /builddir/build/RPMS/UpTools-devel-8.5.5-1.fc16.i686.rpm
+Escrito: /builddir/build/RPMS/UpTools-debuginfo-8.5.5-1.fc16.i686.rpm
+Ejecutando(%clean): /bin/sh -e /var/tmp/rpm-tmp.6JRgVx
++ umask 022
++ cd /builddir/build/BUILD
++ cd UpTools-8.5.5
++ rm -rf /builddir/build/BUILDROOT/UpTools-8.5.5-1.fc16.i386
++ exit 0
+Child returncode was: 0
+LEAVE do --> 
+
diff --git a/UpTools/8.5.5/1.fc16/root.log b/UpTools/8.5.5/1.fc16/root.log
new file mode 100644
index 0000000..4bfb42e
--- /dev/null
+++ b/UpTools/8.5.5/1.fc16/root.log
@@ -0,0 +1,570 @@
+INFO backend.py:814:  Mock Version: 1.1.9
+DEBUG backend.py:266:  rootdir = /var/lib/mock/fedora-rawhide-i386/root/
+DEBUG backend.py:267:  resultdir = /home/sergio/fedora-scm/UpTools/master/UpTools/8.5.5/1.fc16
+DEBUG util.py:57:  ensuring that dir exists: /var/cache/mock/fedora-rawhide-i386/root_cache/
+DEBUG util.py:57:  ensuring that dir exists: /var/lib/mock/fedora-rawhide-i386/root/var/cache/yum
+DEBUG util.py:60:  creating dir: /var/lib/mock/fedora-rawhide-i386/root/var/cache/yum
+DEBUG util.py:57:  ensuring that dir exists: /var/lib/mock/fedora-rawhide-i386/root/tmp/ccache
+DEBUG util.py:60:  creating dir: /var/lib/mock/fedora-rawhide-i386/root/tmp/ccache
+DEBUG util.py:57:  ensuring that dir exists: /var/cache/mock/fedora-rawhide-i386/ccache/
+DEBUG backend.py:273:  create skeleton dirs
+DEBUG util.py:57:  ensuring that dir exists: /var/lib/mock/fedora-rawhide-i386/root/var/lib/rpm
+DEBUG util.py:60:  creating dir: /var/lib/mock/fedora-rawhide-i386/root/var/lib/rpm
+DEBUG util.py:57:  ensuring that dir exists: /var/lib/mock/fedora-rawhide-i386/root/var/lib/yum
+DEBUG util.py:60:  creating dir: /var/lib/mock/fedora-rawhide-i386/root/var/lib/yum
+DEBUG util.py:57:  ensuring that dir exists: /var/lib/mock/fedora-rawhide-i386/root/var/lib/dbus
+DEBUG util.py:60:  creating dir: /var/lib/mock/fedora-rawhide-i386/root/var/lib/dbus
+DEBUG util.py:57:  ensuring that dir exists: /var/lib/mock/fedora-rawhide-i386/root/var/log
+DEBUG util.py:60:  creating dir: /var/lib/mock/fedora-rawhide-i386/root/var/log
+DEBUG util.py:57:  ensuring that dir exists: /var/lib/mock/fedora-rawhide-i386/root/var/lock/rpm
+DEBUG util.py:60:  creating dir: /var/lib/mock/fedora-rawhide-i386/root/var/lock/rpm
+DEBUG util.py:57:  ensuring that dir exists: /var/lib/mock/fedora-rawhide-i386/root/etc/rpm
+DEBUG util.py:60:  creating dir: /var/lib/mock/fedora-rawhide-i386/root/etc/rpm
+DEBUG util.py:57:  ensuring that dir exists: /var/lib/mock/fedora-rawhide-i386/root/tmp
+DEBUG util.py:57:  ensuring that dir exists: /var/lib/mock/fedora-rawhide-i386/root/var/tmp
+DEBUG util.py:60:  creating dir: /var/lib/mock/fedora-rawhide-i386/root/var/tmp
+DEBUG util.py:57:  ensuring that dir exists: /var/lib/mock/fedora-rawhide-i386/root/etc/yum.repos.d
+DEBUG util.py:60:  creating dir: /var/lib/mock/fedora-rawhide-i386/root/etc/yum.repos.d
+DEBUG util.py:57:  ensuring that dir exists: /var/lib/mock/fedora-rawhide-i386/root/etc/yum
+DEBUG util.py:60:  creating dir: /var/lib/mock/fedora-rawhide-i386/root/etc/yum
+DEBUG util.py:57:  ensuring that dir exists: /var/lib/mock/fedora-rawhide-i386/root/proc
+DEBUG util.py:60:  creating dir: /var/lib/mock/fedora-rawhide-i386/root/proc
+DEBUG util.py:57:  ensuring that dir exists: /var/lib/mock/fedora-rawhide-i386/root/sys
+DEBUG util.py:60:  creating dir: /var/lib/mock/fedora-rawhide-i386/root/sys
+DEBUG backend.py:291:  touch required files
+DEBUG util.py:68:  touching file: /var/lib/mock/fedora-rawhide-i386/root/etc/mtab
+DEBUG util.py:68:  touching file: /var/lib/mock/fedora-rawhide-i386/root/etc/fstab
+DEBUG util.py:68:  touching file: /var/lib/mock/fedora-rawhide-i386/root/var/log/yum.log
+DEBUG backend.py:299:  configure yum
+DEBUG util.py:83:  remove tree: /var/lib/mock/fedora-rawhide-i386/root/dev
+DEBUG util.py:57:  ensuring that dir exists: /var/lib/mock/fedora-rawhide-i386/root/dev/pts
+DEBUG util.py:60:  creating dir: /var/lib/mock/fedora-rawhide-i386/root/dev/pts
+DEBUG util.py:57:  ensuring that dir exists: /var/lib/mock/fedora-rawhide-i386/root/dev/shm
+DEBUG util.py:60:  creating dir: /var/lib/mock/fedora-rawhide-i386/root/dev/shm
+DEBUG backend.py:394:  kver == 2.6.35.13-91.fc14.i686
+DEBUG backend.py:699:  mount -n -t proc   mock_chroot_proc   /var/lib/mock/fedora-rawhide-i386/root/proc
+DEBUG util.py:281:  Executing command: mount -n -t proc   mock_chroot_proc   /var/lib/mock/fedora-rawhide-i386/root/proc
+DEBUG util.py:320:  Child returncode was: 0
+DEBUG backend.py:699:  mount -n -t sysfs  mock_chroot_sysfs  /var/lib/mock/fedora-rawhide-i386/root/sys
+DEBUG util.py:281:  Executing command: mount -n -t sysfs  mock_chroot_sysfs  /var/lib/mock/fedora-rawhide-i386/root/sys
+DEBUG util.py:320:  Child returncode was: 0
+DEBUG backend.py:699:  mount -n --bind /var/cache/mock/fedora-rawhide-i386/yum_cache/  /var/lib/mock/fedora-rawhide-i386/root/var/cache/yum
+DEBUG util.py:281:  Executing command: mount -n --bind /var/cache/mock/fedora-rawhide-i386/yum_cache/  /var/lib/mock/fedora-rawhide-i386/root/var/cache/yum
+DEBUG util.py:320:  Child returncode was: 0
+DEBUG backend.py:699:  mount -n --bind /var/cache/mock/fedora-rawhide-i386/ccache/  /var/lib/mock/fedora-rawhide-i386/root/tmp/ccache
+DEBUG util.py:281:  Executing command: mount -n --bind /var/cache/mock/fedora-rawhide-i386/ccache/  /var/lib/mock/fedora-rawhide-i386/root/tmp/ccache
+DEBUG util.py:320:  Child returncode was: 0
+DEBUG backend.py:699:  mount -n --bind /tmp/mock-selinux-pluginTTY_7r /var/lib/mock/fedora-rawhide-i386/root/proc/filesystems
+DEBUG util.py:281:  Executing command: mount -n --bind /tmp/mock-selinux-pluginTTY_7r /var/lib/mock/fedora-rawhide-i386/root/proc/filesystems
+DEBUG util.py:320:  Child returncode was: 0
+DEBUG backend.py:699:  mount -n -t devpts -o gid=5,mode=0620,ptmxmode=0666,newinstance mock_chroot_devpts /var/lib/mock/fedora-rawhide-i386/root/dev/pts
+DEBUG util.py:281:  Executing command: mount -n -t devpts -o gid=5,mode=0620,ptmxmode=0666,newinstance mock_chroot_devpts /var/lib/mock/fedora-rawhide-i386/root/dev/pts
+DEBUG util.py:320:  Child returncode was: 0
+DEBUG backend.py:699:  mount -n -t tmpfs mock_chroot_shmfs /var/lib/mock/fedora-rawhide-i386/root/dev/shm
+DEBUG util.py:281:  Executing command: mount -n -t tmpfs mock_chroot_shmfs /var/lib/mock/fedora-rawhide-i386/root/dev/shm
+DEBUG util.py:320:  Child returncode was: 0
+DEBUG backend.py:746:  /usr/bin/yum --installroot /var/lib/mock/fedora-rawhide-i386/root/  groupinstall buildsys-build
+DEBUG util.py:281:  Executing command: /usr/bin/yum --installroot /var/lib/mock/fedora-rawhide-i386/root/  groupinstall buildsys-build --setopt=tsflags=nocontexts
+DEBUG util.py:247:  ================================================================================
+DEBUG util.py:247:   Paquete                  Arquitectura
+DEBUG util.py:247:                                     Versión                       Repositorio
+DEBUG util.py:247:                                                                            Tamaño
+DEBUG util.py:247:  ================================================================================
+DEBUG util.py:247:  Instalando:
+DEBUG util.py:247:   bash                     i686     4.2.10-2.fc16                 fedora   958 k
+DEBUG util.py:247:   bzip2                    i686     1.0.6-3.fc15                  fedora    48 k
+DEBUG util.py:247:   coreutils                i686     8.12-1.fc16                   fedora   2.9 M
+DEBUG util.py:247:   cpio                     i686     2.11-4.fc16                   fedora   202 k
+DEBUG util.py:247:   diffutils                i686     3.0-1.fc16                    fedora   290 k
+DEBUG util.py:247:   fedora-release           noarch   16-0.1                        fedora    23 k
+DEBUG util.py:247:   findutils                i686     1:4.5.10-1.fc16               fedora   525 k
+DEBUG util.py:247:   gawk                     i686     3.1.8-3.fc15                  fedora   775 k
+DEBUG util.py:247:   gcc                      i686     4.6.0-6.fc15                  fedora    11 M
+DEBUG util.py:247:   gcc-c++                  i686     4.6.0-6.fc15                  fedora   4.9 M
+DEBUG util.py:247:   grep                     i686     2.7-5.fc16                    fedora   248 k
+DEBUG util.py:247:   gzip                     i686     1.4-3.fc15                    fedora   111 k
+DEBUG util.py:247:   info                     i686     4.13a-15.fc15                 fedora   173 k
+DEBUG util.py:247:   make                     i686     1:3.82-6.fc16                 fedora   410 k
+DEBUG util.py:247:   patch                    i686     2.6.1-9.fc16                  fedora    96 k
+DEBUG util.py:247:   redhat-rpm-config        noarch   9.1.0-5.fc14                  fedora    63 k
+DEBUG util.py:247:   rpm-build                i686     4.9.0-7.fc16                  fedora   124 k
+DEBUG util.py:247:   sed                      i686     4.2.1-6.fc15                  fedora   213 k
+DEBUG util.py:247:   shadow-utils             i686     2:4.1.4.2-11.fc15             fedora   861 k
+DEBUG util.py:247:   tar                      i686     2:1.26-1.fc16                 fedora   823 k
+DEBUG util.py:247:   unzip                    i686     6.0-4.fc15                    fedora   145 k
+DEBUG util.py:247:   util-linux               i686     2.19.1-1.fc16                 fedora   1.5 M
+DEBUG util.py:247:   which                    i686     2.20-2.fc15                   fedora    38 k
+DEBUG util.py:247:   xz                       i686     5.0.2-1.fc16                  fedora   179 k
+DEBUG util.py:247:  Instalando para las dependencias:
+DEBUG util.py:247:   audit-libs               i686     2.1.1-1.fc16                  fedora    61 k
+DEBUG util.py:247:   basesystem               noarch   10.0-3                        fedora   4.2 k
+DEBUG util.py:247:   binutils                 i686     2.21.51.0.9-1.fc16            fedora   3.4 M
+DEBUG util.py:247:   bzip2-libs               i686     1.0.6-3.fc15                  fedora    37 k
+DEBUG util.py:247:   ca-certificates          noarch   2011.74-1.fc16                fedora   358 k
+DEBUG util.py:247:   chkconfig                i686     1.3.52-1.fc16                 fedora   154 k
+DEBUG util.py:247:   cloog-ppl                i686     0.15.9-3.fc15                 fedora    93 k
+DEBUG util.py:247:   coreutils-libs           i686     8.12-1.fc16                   fedora    47 k
+DEBUG util.py:247:   cpp                      i686     4.6.0-6.fc15                  fedora   3.9 M
+DEBUG util.py:247:   cracklib                 i686     2.8.18-2.fc15                 fedora    71 k
+DEBUG util.py:247:   cracklib-dicts           i686     2.8.18-2.fc15                 fedora   3.5 M
+DEBUG util.py:247:   curl                     i686     7.21.6-1.fc16                 fedora   236 k
+DEBUG util.py:247:   cyrus-sasl-lib           i686     2.1.23-19.fc16                fedora   135 k
+DEBUG util.py:247:   db4                      i686     4.8.30-3.fc15                 fedora   615 k
+DEBUG util.py:247:   db4-utils                i686     4.8.30-3.fc15                 fedora   130 k
+DEBUG util.py:247:   elfutils                 i686     0.152-1.fc16                  fedora   211 k
+DEBUG util.py:247:   elfutils-libelf          i686     0.152-1.fc16                  fedora   173 k
+DEBUG util.py:247:   elfutils-libs            i686     0.152-1.fc16                  fedora   196 k
+DEBUG util.py:247:   expat                    i686     2.0.1-11.fc15                 fedora    76 k
+DEBUG util.py:247:   fedora-release-rawhide   noarch   16-0.1                        fedora   9.3 k
+DEBUG util.py:247:   file                     i686     5.07-1.fc16                   fedora    46 k
+DEBUG util.py:247:   file-libs                i686     5.07-1.fc16                   fedora   322 k
+DEBUG util.py:247:   filesystem               i686     2.4.41-1.fc16                 fedora   1.0 M
+DEBUG util.py:247:   gamin                    i686     0.1.10-9.fc15                 fedora   120 k
+DEBUG util.py:247:   gdb                      i686     7.2.90.20110429-36.fc15       fedora   1.9 M
+DEBUG util.py:247:   gdbm                     i686     1.8.3-9.fc15                  fedora    30 k
+DEBUG util.py:247:   glib2                    i686     2.29.4-1.fc16                 fedora   1.7 M
+DEBUG util.py:247:   glibc                    i686     2.13.90-11                    fedora   3.9 M
+DEBUG util.py:247:   glibc-common             i686     2.13.90-11                    fedora    10 M
+DEBUG util.py:247:   glibc-devel              i686     2.13.90-11                    fedora   971 k
+DEBUG util.py:247:   glibc-headers            i686     2.13.90-11                    fedora   548 k
+DEBUG util.py:247:   gmp                      i686     1:4.3.2-3.fc15                fedora   335 k
+DEBUG util.py:247:   gnupg2                   i686     2.0.17-1.fc15                 fedora   1.3 M
+DEBUG util.py:247:   kernel-headers           i686     2.6.39-0.rc7.git6.1.fc16      fedora   743 k
+DEBUG util.py:247:   keyutils-libs            i686     1.2-7.fc15                    fedora    19 k
+DEBUG util.py:247:   krb5-libs                i686     1.9.1-1.fc16                  fedora   709 k
+DEBUG util.py:247:   libacl                   i686     2.2.51-2.fc16                 fedora    23 k
+DEBUG util.py:247:   libassuan                i686     2.0.0-4.fc15                  fedora    57 k
+DEBUG util.py:247:   libattr                  i686     2.4.46-2.fc16                 fedora    15 k
+DEBUG util.py:247:   libblkid                 i686     2.19.1-1.fc16                 fedora   131 k
+DEBUG util.py:247:   libcap                   i686     2.17-2.fc15                   fedora    30 k
+DEBUG util.py:247:   libcom_err               i686     1.41.14-2.fc15                fedora    35 k
+DEBUG util.py:247:   libcurl                  i686     7.21.6-1.fc16                 fedora   188 k
+DEBUG util.py:247:   libffi                   i686     3.0.9-2.fc15                  fedora    22 k
+DEBUG util.py:247:   libgcc                   i686     4.6.0-6.fc15                  fedora    74 k
+DEBUG util.py:247:   libgcrypt                i686     1.4.6-1.fc16                  fedora   228 k
+DEBUG util.py:247:   libgomp                  i686     4.6.0-6.fc15                  fedora    87 k
+DEBUG util.py:247:   libgpg-error             i686     1.9-2.fc15                    fedora    74 k
+DEBUG util.py:247:   libidn                   i686     1.22-1.fc16                   fedora   205 k
+DEBUG util.py:247:   libmount                 i686     2.19.1-1.fc16                 fedora   113 k
+DEBUG util.py:247:   libmpc                   i686     0.8.3-0.3.svn855.fc15         fedora    49 k
+DEBUG util.py:247:   libselinux               i686     2.0.102-4.fc16                fedora   110 k
+DEBUG util.py:247:   libsepol                 i686     2.0.44-2.fc16                 fedora   128 k
+DEBUG util.py:247:   libssh2                  i686     1.2.7-1.fc15                  fedora    78 k
+DEBUG util.py:247:   libstdc++                i686     4.6.0-6.fc15                  fedora   288 k
+DEBUG util.py:247:   libstdc++-devel          i686     4.6.0-6.fc15                  fedora   1.3 M
+DEBUG util.py:247:   libutempter              i686     1.1.5-5.fc15                  fedora    22 k
+DEBUG util.py:247:   libuuid                  i686     2.19.1-1.fc16                 fedora    63 k
+DEBUG util.py:247:   libxml2                  i686     2.7.8-6.fc16                  fedora   794 k
+DEBUG util.py:247:   lua                      i686     5.1.4-9.fc16                  fedora   204 k
+DEBUG util.py:247:   mpfr                     i686     3.0.0-4.fc15                  fedora   167 k
+DEBUG util.py:247:   ncurses                  i686     5.9-1.fc16                    fedora   274 k
+DEBUG util.py:247:   ncurses-base             i686     5.9-1.fc16                    fedora    65 k
+DEBUG util.py:247:   ncurses-libs             i686     5.9-1.fc16                    fedora   254 k
+DEBUG util.py:247:   nspr                     i686     4.8.8-1.fc16                  fedora   112 k
+DEBUG util.py:247:   nss                      i686     3.12.10-1.fc16                fedora   768 k
+DEBUG util.py:247:   nss-softokn              i686     3.12.10-1.fc16                fedora   173 k
+DEBUG util.py:247:   nss-softokn-freebl       i686     3.12.10-1.fc16                fedora   117 k
+DEBUG util.py:247:   nss-sysinit              i686     3.12.10-1.fc16                fedora    30 k
+DEBUG util.py:247:   nss-util                 i686     3.12.10-1.fc16                fedora    45 k
+DEBUG util.py:247:   openldap                 i686     2.4.24-2.fc16                 fedora   261 k
+DEBUG util.py:247:   openssl                  i686     1.0.0d-3.fc16                 fedora   1.3 M
+DEBUG util.py:247:   pam                      i686     1.1.3-8.fc15                  fedora   644 k
+DEBUG util.py:247:   pcre                     i686     8.12-4.fc16                   fedora   225 k
+DEBUG util.py:247:   perl                     i686     4:5.12.3-160.fc16             fedora    10 M
+DEBUG util.py:247:   perl-Module-Pluggable    noarch   1:3.90-160.fc16               fedora    39 k
+DEBUG util.py:247:   perl-PathTools           i686     3.33-1.fc16                   fedora    89 k
+DEBUG util.py:247:   perl-Pod-Escapes         noarch   1:1.04-160.fc16               fedora    31 k
+DEBUG util.py:247:   perl-Pod-Simple          noarch   1:3.13-160.fc16               fedora   209 k
+DEBUG util.py:247:   perl-Scalar-List-Utils   i686     1.23-1.fc16                   fedora    33 k
+DEBUG util.py:247:   perl-libs                i686     4:5.12.3-160.fc16             fedora   602 k
+DEBUG util.py:247:   perl-threads             i686     1.83-1.fc16                   fedora    46 k
+DEBUG util.py:247:   perl-threads-shared      i686     1.37-1.fc16                   fedora    34 k
+DEBUG util.py:247:   pinentry                 i686     0.8.1-3.fc16                  fedora    67 k
+DEBUG util.py:247:   pkgconfig                i686     1:0.25-3.fc15                 fedora    50 k
+DEBUG util.py:247:   popt                     i686     1.13-8.fc15                   fedora    39 k
+DEBUG util.py:247:   ppl                      i686     0.11.2-1.fc15                 fedora   1.5 M
+DEBUG util.py:247:   ppl-pwl                  i686     0.11.2-1.fc15                 fedora    35 k
+DEBUG util.py:247:   pth                      i686     2.0.7-10                      fedora    85 k
+DEBUG util.py:247:   python-libs              i686     2.7.1-7.fc16                  fedora   5.5 M
+DEBUG util.py:247:   readline                 i686     6.2-2.fc16                    fedora   181 k
+DEBUG util.py:247:   rpm                      i686     4.9.0-7.fc16                  fedora   971 k
+DEBUG util.py:247:   rpm-build-libs           i686     4.9.0-7.fc16                  fedora    88 k
+DEBUG util.py:247:   rpm-libs                 i686     4.9.0-7.fc16                  fedora   242 k
+DEBUG util.py:247:   setup                    noarch   2.8.32-1.fc16                 fedora   152 k
+DEBUG util.py:247:   shared-mime-info         i686     0.90-7.fc16                   fedora   239 k
+DEBUG util.py:247:   sqlite                   i686     3.7.6.2-2.fc16                fedora   328 k
+DEBUG util.py:247:   tzdata                   noarch   2011g-1.fc16                  fedora   427 k
+DEBUG util.py:247:   xz-libs                  i686     5.0.2-1.fc16                  fedora    97 k
+DEBUG util.py:247:   zlib                     i686     1.2.5-4.fc16                  fedora    82 k
+DEBUG util.py:247:  Resumen de la transacción
+DEBUG util.py:247:  ================================================================================
+DEBUG util.py:247:  Install     124 Package(s)
+DEBUG util.py:247:  Tamaño total de la descarga: 94 M
+DEBUG util.py:247:  Tamaño instalado: 367 M
+DEBUG util.py:247:  advertencia:/etc/hosts creado como /etc/hosts.rpmnew
+DEBUG util.py:247:  Instalado:
+DEBUG util.py:247:    bash.i686 0:4.2.10-2.fc16            bzip2.i686 0:1.0.6-3.fc15               
+DEBUG util.py:247:    coreutils.i686 0:8.12-1.fc16         cpio.i686 0:2.11-4.fc16                 
+DEBUG util.py:247:    diffutils.i686 0:3.0-1.fc16          fedora-release.noarch 0:16-0.1          
+DEBUG util.py:247:    findutils.i686 1:4.5.10-1.fc16       gawk.i686 0:3.1.8-3.fc15                
+DEBUG util.py:247:    gcc.i686 0:4.6.0-6.fc15              gcc-c++.i686 0:4.6.0-6.fc15             
+DEBUG util.py:247:    grep.i686 0:2.7-5.fc16               gzip.i686 0:1.4-3.fc15                  
+DEBUG util.py:247:    info.i686 0:4.13a-15.fc15            make.i686 1:3.82-6.fc16                 
+DEBUG util.py:247:    patch.i686 0:2.6.1-9.fc16            redhat-rpm-config.noarch 0:9.1.0-5.fc14 
+DEBUG util.py:247:    rpm-build.i686 0:4.9.0-7.fc16        sed.i686 0:4.2.1-6.fc15                 
+DEBUG util.py:247:    shadow-utils.i686 2:4.1.4.2-11.fc15  tar.i686 2:1.26-1.fc16                  
+DEBUG util.py:247:    unzip.i686 0:6.0-4.fc15              util-linux.i686 0:2.19.1-1.fc16         
+DEBUG util.py:247:    which.i686 0:2.20-2.fc15             xz.i686 0:5.0.2-1.fc16                  
+DEBUG util.py:247:  Dependencia(s) instalada(s):
+DEBUG util.py:247:    audit-libs.i686 0:2.1.1-1.fc16                                                
+DEBUG util.py:247:    basesystem.noarch 0:10.0-3                                                    
+DEBUG util.py:247:    binutils.i686 0:2.21.51.0.9-1.fc16                                            
+DEBUG util.py:247:    bzip2-libs.i686 0:1.0.6-3.fc15                                                
+DEBUG util.py:247:    ca-certificates.noarch 0:2011.74-1.fc16                                       
+DEBUG util.py:247:    chkconfig.i686 0:1.3.52-1.fc16                                                
+DEBUG util.py:247:    cloog-ppl.i686 0:0.15.9-3.fc15                                                
+DEBUG util.py:247:    coreutils-libs.i686 0:8.12-1.fc16                                             
+DEBUG util.py:247:    cpp.i686 0:4.6.0-6.fc15                                                       
+DEBUG util.py:247:    cracklib.i686 0:2.8.18-2.fc15                                                 
+DEBUG util.py:247:    cracklib-dicts.i686 0:2.8.18-2.fc15                                           
+DEBUG util.py:247:    curl.i686 0:7.21.6-1.fc16                                                     
+DEBUG util.py:247:    cyrus-sasl-lib.i686 0:2.1.23-19.fc16                                          
+DEBUG util.py:247:    db4.i686 0:4.8.30-3.fc15                                                      
+DEBUG util.py:247:    db4-utils.i686 0:4.8.30-3.fc15                                                
+DEBUG util.py:247:    elfutils.i686 0:0.152-1.fc16                                                  
+DEBUG util.py:247:    elfutils-libelf.i686 0:0.152-1.fc16                                           
+DEBUG util.py:247:    elfutils-libs.i686 0:0.152-1.fc16                                             
+DEBUG util.py:247:    expat.i686 0:2.0.1-11.fc15                                                    
+DEBUG util.py:247:    fedora-release-rawhide.noarch 0:16-0.1                                        
+DEBUG util.py:247:    file.i686 0:5.07-1.fc16                                                       
+DEBUG util.py:247:    file-libs.i686 0:5.07-1.fc16                                                  
+DEBUG util.py:247:    filesystem.i686 0:2.4.41-1.fc16                                               
+DEBUG util.py:247:    gamin.i686 0:0.1.10-9.fc15                                                    
+DEBUG util.py:247:    gdb.i686 0:7.2.90.20110429-36.fc15                                            
+DEBUG util.py:247:    gdbm.i686 0:1.8.3-9.fc15                                                      
+DEBUG util.py:247:    glib2.i686 0:2.29.4-1.fc16                                                    
+DEBUG util.py:247:    glibc.i686 0:2.13.90-11                                                       
+DEBUG util.py:247:    glibc-common.i686 0:2.13.90-11                                                
+DEBUG util.py:247:    glibc-devel.i686 0:2.13.90-11                                                 
+DEBUG util.py:247:    glibc-headers.i686 0:2.13.90-11                                               
+DEBUG util.py:247:    gmp.i686 1:4.3.2-3.fc15                                                       
+DEBUG util.py:247:    gnupg2.i686 0:2.0.17-1.fc15                                                   
+DEBUG util.py:247:    kernel-headers.i686 0:2.6.39-0.rc7.git6.1.fc16                                
+DEBUG util.py:247:    keyutils-libs.i686 0:1.2-7.fc15                                               
+DEBUG util.py:247:    krb5-libs.i686 0:1.9.1-1.fc16                                                 
+DEBUG util.py:247:    libacl.i686 0:2.2.51-2.fc16                                                   
+DEBUG util.py:247:    libassuan.i686 0:2.0.0-4.fc15                                                 
+DEBUG util.py:247:    libattr.i686 0:2.4.46-2.fc16                                                  
+DEBUG util.py:247:    libblkid.i686 0:2.19.1-1.fc16                                                 
+DEBUG util.py:247:    libcap.i686 0:2.17-2.fc15                                                     
+DEBUG util.py:247:    libcom_err.i686 0:1.41.14-2.fc15                                              
+DEBUG util.py:247:    libcurl.i686 0:7.21.6-1.fc16                                                  
+DEBUG util.py:247:    libffi.i686 0:3.0.9-2.fc15                                                    
+DEBUG util.py:247:    libgcc.i686 0:4.6.0-6.fc15                                                    
+DEBUG util.py:247:    libgcrypt.i686 0:1.4.6-1.fc16                                                 
+DEBUG util.py:247:    libgomp.i686 0:4.6.0-6.fc15                                                   
+DEBUG util.py:247:    libgpg-error.i686 0:1.9-2.fc15                                                
+DEBUG util.py:247:    libidn.i686 0:1.22-1.fc16                                                     
+DEBUG util.py:247:    libmount.i686 0:2.19.1-1.fc16                                                 
+DEBUG util.py:247:    libmpc.i686 0:0.8.3-0.3.svn855.fc15                                           
+DEBUG util.py:247:    libselinux.i686 0:2.0.102-4.fc16                                              
+DEBUG util.py:247:    libsepol.i686 0:2.0.44-2.fc16                                                 
+DEBUG util.py:247:    libssh2.i686 0:1.2.7-1.fc15                                                   
+DEBUG util.py:247:    libstdc++.i686 0:4.6.0-6.fc15                                                 
+DEBUG util.py:247:    libstdc++-devel.i686 0:4.6.0-6.fc15                                           
+DEBUG util.py:247:    libutempter.i686 0:1.1.5-5.fc15                                               
+DEBUG util.py:247:    libuuid.i686 0:2.19.1-1.fc16                                                  
+DEBUG util.py:247:    libxml2.i686 0:2.7.8-6.fc16                                                   
+DEBUG util.py:247:    lua.i686 0:5.1.4-9.fc16                                                       
+DEBUG util.py:247:    mpfr.i686 0:3.0.0-4.fc15                                                      
+DEBUG util.py:247:    ncurses.i686 0:5.9-1.fc16                                                     
+DEBUG util.py:247:    ncurses-base.i686 0:5.9-1.fc16                                                
+DEBUG util.py:247:    ncurses-libs.i686 0:5.9-1.fc16                                                
+DEBUG util.py:247:    nspr.i686 0:4.8.8-1.fc16                                                      
+DEBUG util.py:247:    nss.i686 0:3.12.10-1.fc16                                                     
+DEBUG util.py:247:    nss-softokn.i686 0:3.12.10-1.fc16                                             
+DEBUG util.py:247:    nss-softokn-freebl.i686 0:3.12.10-1.fc16                                      
+DEBUG util.py:247:    nss-sysinit.i686 0:3.12.10-1.fc16                                             
+DEBUG util.py:247:    nss-util.i686 0:3.12.10-1.fc16                                                
+DEBUG util.py:247:    openldap.i686 0:2.4.24-2.fc16                                                 
+DEBUG util.py:247:    openssl.i686 0:1.0.0d-3.fc16                                                  
+DEBUG util.py:247:    pam.i686 0:1.1.3-8.fc15                                                       
+DEBUG util.py:247:    pcre.i686 0:8.12-4.fc16                                                       
+DEBUG util.py:247:    perl.i686 4:5.12.3-160.fc16                                                   
+DEBUG util.py:247:    perl-Module-Pluggable.noarch 1:3.90-160.fc16                                  
+DEBUG util.py:247:    perl-PathTools.i686 0:3.33-1.fc16                                             
+DEBUG util.py:247:    perl-Pod-Escapes.noarch 1:1.04-160.fc16                                       
+DEBUG util.py:247:    perl-Pod-Simple.noarch 1:3.13-160.fc16                                        
+DEBUG util.py:247:    perl-Scalar-List-Utils.i686 0:1.23-1.fc16                                     
+DEBUG util.py:247:    perl-libs.i686 4:5.12.3-160.fc16                                              
+DEBUG util.py:247:    perl-threads.i686 0:1.83-1.fc16                                               
+DEBUG util.py:247:    perl-threads-shared.i686 0:1.37-1.fc16                                        
+DEBUG util.py:247:    pinentry.i686 0:0.8.1-3.fc16                                                  
+DEBUG util.py:247:    pkgconfig.i686 1:0.25-3.fc15                                                  
+DEBUG util.py:247:    popt.i686 0:1.13-8.fc15                                                       
+DEBUG util.py:247:    ppl.i686 0:0.11.2-1.fc15                                                      
+DEBUG util.py:247:    ppl-pwl.i686 0:0.11.2-1.fc15                                                  
+DEBUG util.py:247:    pth.i686 0:2.0.7-10                                                           
+DEBUG util.py:247:    python-libs.i686 0:2.7.1-7.fc16                                               
+DEBUG util.py:247:    readline.i686 0:6.2-2.fc16                                                    
+DEBUG util.py:247:    rpm.i686 0:4.9.0-7.fc16                                                       
+DEBUG util.py:247:    rpm-build-libs.i686 0:4.9.0-7.fc16                                            
+DEBUG util.py:247:    rpm-libs.i686 0:4.9.0-7.fc16                                                  
+DEBUG util.py:247:    setup.noarch 0:2.8.32-1.fc16                                                  
+DEBUG util.py:247:    shared-mime-info.i686 0:0.90-7.fc16                                           
+DEBUG util.py:247:    sqlite.i686 0:3.7.6.2-2.fc16                                                  
+DEBUG util.py:247:    tzdata.noarch 0:2011g-1.fc16                                                  
+DEBUG util.py:247:    xz-libs.i686 0:5.0.2-1.fc16                                                   
+DEBUG util.py:247:    zlib.i686 0:1.2.5-4.fc16                                                      
+DEBUG util.py:320:  Child returncode was: 0
+DEBUG util.py:83:  remove tree: /var/lib/mock/fedora-rawhide-i386/root/builddir
+DEBUG util.py:281:  Executing command: ['/usr/sbin/userdel', '-r', '-f', 'mockbuild']
+DEBUG util.py:247:  userdel: user 'mockbuild' does not exist
+DEBUG util.py:320:  Child returncode was: 6
+DEBUG util.py:281:  Executing command: ['/usr/sbin/groupdel', 'mockbuild']
+DEBUG util.py:247:  groupdel: group 'mockbuild' does not exist
+DEBUG util.py:320:  Child returncode was: 6
+DEBUG util.py:281:  Executing command: ['/usr/sbin/groupadd', '-g', '489', 'mockbuild']
+DEBUG util.py:320:  Child returncode was: 0
+DEBUG util.py:281:  Executing command: /usr/sbin/useradd -o -m -u 500 -g 489 -d /builddir -n mockbuild
+DEBUG util.py:320:  Child returncode was: 0
+DEBUG util.py:57:  ensuring that dir exists: /var/lib/mock/fedora-rawhide-i386/root/builddir/build/RPMS
+DEBUG util.py:60:  creating dir: /var/lib/mock/fedora-rawhide-i386/root/builddir/build/RPMS
+DEBUG util.py:57:  ensuring that dir exists: /var/lib/mock/fedora-rawhide-i386/root/builddir/build/SRPMS
+DEBUG util.py:60:  creating dir: /var/lib/mock/fedora-rawhide-i386/root/builddir/build/SRPMS
+DEBUG util.py:57:  ensuring that dir exists: /var/lib/mock/fedora-rawhide-i386/root/builddir/build/SOURCES
+DEBUG util.py:60:  creating dir: /var/lib/mock/fedora-rawhide-i386/root/builddir/build/SOURCES
+DEBUG util.py:57:  ensuring that dir exists: /var/lib/mock/fedora-rawhide-i386/root/builddir/build/SPECS
+DEBUG util.py:60:  creating dir: /var/lib/mock/fedora-rawhide-i386/root/builddir/build/SPECS
+DEBUG util.py:57:  ensuring that dir exists: /var/lib/mock/fedora-rawhide-i386/root/builddir/build/BUILD
+DEBUG util.py:60:  creating dir: /var/lib/mock/fedora-rawhide-i386/root/builddir/build/BUILD
+DEBUG util.py:57:  ensuring that dir exists: /var/lib/mock/fedora-rawhide-i386/root/builddir/build/BUILDROOT
+DEBUG util.py:60:  creating dir: /var/lib/mock/fedora-rawhide-i386/root/builddir/build/BUILDROOT
+DEBUG util.py:57:  ensuring that dir exists: /var/lib/mock/fedora-rawhide-i386/root/builddir/build/originals
+DEBUG util.py:60:  creating dir: /var/lib/mock/fedora-rawhide-i386/root/builddir/build/originals
+DEBUG util.py:281:  Executing command: ['sync']
+DEBUG util.py:320:  Child returncode was: 0
+DEBUG util.py:281:  Executing command: ['tar', '--use-compress-program', 'pigz', '-cf', '/var/cache/mock/fedora-rawhide-i386/root_cache/cache.tar.gz', '-C', '/var/lib/mock/fedora-rawhide-i386/root/', '--exclude=./proc', '--exclude=./sys', '--exclude=./dev', '--exclude=./tmp/ccache', '--exclude=./var/cache/yum', '.']
+DEBUG util.py:320:  Child returncode was: 0
+DEBUG util.py:281:  Executing command: umount -n /var/lib/mock/fedora-rawhide-i386/root/dev/shm
+DEBUG util.py:320:  Child returncode was: 0
+DEBUG util.py:281:  Executing command: umount -n /var/lib/mock/fedora-rawhide-i386/root/dev/pts
+DEBUG util.py:320:  Child returncode was: 0
+DEBUG util.py:281:  Executing command: umount -n /var/lib/mock/fedora-rawhide-i386/root/proc/filesystems
+DEBUG util.py:320:  Child returncode was: 0
+DEBUG util.py:281:  Executing command: umount -n /var/lib/mock/fedora-rawhide-i386/root/tmp/ccache
+DEBUG util.py:320:  Child returncode was: 0
+DEBUG util.py:281:  Executing command: umount -n /var/lib/mock/fedora-rawhide-i386/root/var/cache/yum
+DEBUG util.py:320:  Child returncode was: 0
+DEBUG util.py:281:  Executing command: umount -n /var/lib/mock/fedora-rawhide-i386/root/sys
+DEBUG util.py:320:  Child returncode was: 0
+DEBUG util.py:281:  Executing command: umount -n /var/lib/mock/fedora-rawhide-i386/root/proc
+DEBUG util.py:320:  Child returncode was: 0
+DEBUG util.py:83:  remove tree: /var/lib/mock/fedora-rawhide-i386/root/dev
+DEBUG util.py:57:  ensuring that dir exists: /var/lib/mock/fedora-rawhide-i386/root/dev/pts
+DEBUG util.py:60:  creating dir: /var/lib/mock/fedora-rawhide-i386/root/dev/pts
+DEBUG util.py:57:  ensuring that dir exists: /var/lib/mock/fedora-rawhide-i386/root/dev/shm
+DEBUG util.py:60:  creating dir: /var/lib/mock/fedora-rawhide-i386/root/dev/shm
+DEBUG backend.py:394:  kver == 2.6.35.13-91.fc14.i686
+DEBUG backend.py:699:  mount -n -t proc   mock_chroot_proc   /var/lib/mock/fedora-rawhide-i386/root/proc
+DEBUG util.py:281:  Executing command: mount -n -t proc   mock_chroot_proc   /var/lib/mock/fedora-rawhide-i386/root/proc
+DEBUG util.py:320:  Child returncode was: 0
+DEBUG backend.py:699:  mount -n -t sysfs  mock_chroot_sysfs  /var/lib/mock/fedora-rawhide-i386/root/sys
+DEBUG util.py:281:  Executing command: mount -n -t sysfs  mock_chroot_sysfs  /var/lib/mock/fedora-rawhide-i386/root/sys
+DEBUG util.py:320:  Child returncode was: 0
+DEBUG backend.py:699:  mount -n --bind /var/cache/mock/fedora-rawhide-i386/yum_cache/  /var/lib/mock/fedora-rawhide-i386/root/var/cache/yum
+DEBUG util.py:281:  Executing command: mount -n --bind /var/cache/mock/fedora-rawhide-i386/yum_cache/  /var/lib/mock/fedora-rawhide-i386/root/var/cache/yum
+DEBUG util.py:320:  Child returncode was: 0
+DEBUG backend.py:699:  mount -n --bind /var/cache/mock/fedora-rawhide-i386/ccache/  /var/lib/mock/fedora-rawhide-i386/root/tmp/ccache
+DEBUG util.py:281:  Executing command: mount -n --bind /var/cache/mock/fedora-rawhide-i386/ccache/  /var/lib/mock/fedora-rawhide-i386/root/tmp/ccache
+DEBUG util.py:320:  Child returncode was: 0
+DEBUG backend.py:699:  mount -n --bind /tmp/mock-selinux-pluginTTY_7r /var/lib/mock/fedora-rawhide-i386/root/proc/filesystems
+DEBUG util.py:281:  Executing command: mount -n --bind /tmp/mock-selinux-pluginTTY_7r /var/lib/mock/fedora-rawhide-i386/root/proc/filesystems
+DEBUG util.py:320:  Child returncode was: 0
+DEBUG backend.py:699:  mount -n -t devpts -o gid=5,mode=0620,ptmxmode=0666,newinstance mock_chroot_devpts /var/lib/mock/fedora-rawhide-i386/root/dev/pts
+DEBUG util.py:281:  Executing command: mount -n -t devpts -o gid=5,mode=0620,ptmxmode=0666,newinstance mock_chroot_devpts /var/lib/mock/fedora-rawhide-i386/root/dev/pts
+DEBUG util.py:320:  Child returncode was: 0
+DEBUG backend.py:699:  mount -n -t tmpfs mock_chroot_shmfs /var/lib/mock/fedora-rawhide-i386/root/dev/shm
+DEBUG util.py:281:  Executing command: mount -n -t tmpfs mock_chroot_shmfs /var/lib/mock/fedora-rawhide-i386/root/dev/shm
+DEBUG util.py:320:  Child returncode was: 0
+DEBUG util.py:281:  Executing command: ['rpm', '-Uvh', '--nodeps', '/builddir/build/originals/UpTools-8.5.5-1.fc16.src.rpm']
+DEBUG util.py:247:  UpTools                     advertencia:usuario sergio no existe - utilizando root
+DEBUG util.py:247:  advertencia:grupo sergio no existe - utilizando root
+DEBUG util.py:247:  #################################################advertencia:usuario sergio no existe - utilizando root
+DEBUG util.py:247:  advertencia:grupo sergio no existe - utilizando root
+DEBUG util.py:247:  #
+DEBUG util.py:320:  Child returncode was: 0
+DEBUG backend.py:746:  /usr/bin/yum --installroot /var/lib/mock/fedora-rawhide-i386/root/  resolvedep  ccache 
+DEBUG util.py:281:  Executing command: /usr/bin/yum --installroot /var/lib/mock/fedora-rawhide-i386/root/  resolvedep  ccache  --setopt=tsflags=nocontexts
+DEBUG util.py:247:  0:ccache-3.1.4-4.fc15.i686
+DEBUG util.py:320:  Child returncode was: 0
+DEBUG backend.py:746:  /usr/bin/yum --installroot /var/lib/mock/fedora-rawhide-i386/root/  install  ccache 
+DEBUG util.py:281:  Executing command: /usr/bin/yum --installroot /var/lib/mock/fedora-rawhide-i386/root/  install  ccache  --setopt=tsflags=nocontexts
+DEBUG util.py:247:  ================================================================================
+DEBUG util.py:247:   Paquete          Arquitectura   Versión                 Repositorio      Tamaño
+DEBUG util.py:247:  ================================================================================
+DEBUG util.py:247:  Instalando:
+DEBUG util.py:247:   ccache           i686           3.1.4-4.fc15            fedora           118 k
+DEBUG util.py:247:  Resumen de la transacción
+DEBUG util.py:247:  ================================================================================
+DEBUG util.py:247:  Install       1 Package(s)
+DEBUG util.py:247:  Tamaño total de la descarga: 118 k
+DEBUG util.py:247:  Tamaño instalado: 339 k
+DEBUG util.py:247:  Instalado:
+DEBUG util.py:247:    ccache.i686 0:3.1.4-4.fc15                                                    
+DEBUG util.py:320:  Child returncode was: 0
+DEBUG backend.py:746:  /usr/bin/yum-builddep --installroot /var/lib/mock/fedora-rawhide-i386/root/  '/var/lib/mock/fedora-rawhide-i386/root///builddir/build/SRPMS/UpTools-8.5.5-1.fc16.src.rpm'
+DEBUG util.py:281:  Executing command: /usr/bin/yum-builddep --installroot /var/lib/mock/fedora-rawhide-i386/root/  '/var/lib/mock/fedora-rawhide-i386/root///builddir/build/SRPMS/UpTools-8.5.5-1.fc16.src.rpm' --setopt=tsflags=nocontexts
+DEBUG util.py:247:  Getting requirements for UpTools-8.5.5-1.fc16.src
+DEBUG util.py:247:   --> mysql-devel-5.5.12-1.fc16.i686
+DEBUG util.py:247:   --> postgresql-devel-9.0.4-2.fc16.i686
+DEBUG util.py:247:   --> openssl-devel-1.0.0d-3.fc16.i686
+DEBUG util.py:247:  ================================================================================
+DEBUG util.py:247:   Paquete                 Arquitectura
+DEBUG util.py:247:                                     Versión                      Repositorio
+DEBUG util.py:247:                                                                            Tamaño
+DEBUG util.py:247:  ================================================================================
+DEBUG util.py:247:  Instalando:
+DEBUG util.py:247:   mysql-devel             i686      5.5.12-1.fc16                fedora    163 k
+DEBUG util.py:247:   openssl-devel           i686      1.0.0d-3.fc16                fedora    1.1 M
+DEBUG util.py:247:   postgresql-devel        i686      9.0.4-2.fc16                 fedora    823 k
+DEBUG util.py:247:  Instalando para las dependencias:
+DEBUG util.py:247:   authconfig              i686      6.1.13-1.fc15                fedora    341 k
+DEBUG util.py:247:   cryptsetup-luks-libs    i686      1.3.0-1.fc16                 fedora     54 k
+DEBUG util.py:247:   dash                    i686      0.5.6-3.fc15                 fedora     72 k
+DEBUG util.py:247:   dbus                    i686      1:1.4.6-4.fc15               fedora    220 k
+DEBUG util.py:247:   dbus-libs               i686      1:1.4.6-4.fc15               fedora    136 k
+DEBUG util.py:247:   device-mapper           i686      1.02.63-1.fc15               fedora    135 k
+DEBUG util.py:247:   device-mapper-libs      i686      1.02.63-1.fc15               fedora    142 k
+DEBUG util.py:247:   dracut                  noarch    010-1.fc16                   fedora    144 k
+DEBUG util.py:247:   fedora-logos            noarch    15.0.0-3.fc16                fedora    1.5 M
+DEBUG util.py:247:   grubby                  i686      7.0.16-3.fc15                fedora     42 k
+DEBUG util.py:247:   hostname                i686      3.06-1.fc16                  fedora     19 k
+DEBUG util.py:247:   hwdata                  noarch    0.232-1.fc16                 fedora    919 k
+DEBUG util.py:247:   initscripts             i686      9.30-1.fc16                  fedora    922 k
+DEBUG util.py:247:   iproute                 i686      2.6.38.1-4.fc16              fedora    359 k
+DEBUG util.py:247:   iptables                i686      1.4.10-2.fc16                fedora    251 k
+DEBUG util.py:247:   iputils                 i686      20101006-8.fc16              fedora    125 k
+DEBUG util.py:247:   kbd                     i686      1.15.2-3.fc16                fedora    274 k
+DEBUG util.py:247:   kbd-misc                noarch    1.15.2-3.fc16                fedora    889 k
+DEBUG util.py:247:   kernel                  i686      2.6.39-0.rc7.git6.1.fc16     fedora     22 M
+DEBUG util.py:247:   keyutils-libs-devel     i686      1.2-7.fc15                   fedora     29 k
+DEBUG util.py:247:   krb5-devel              i686      1.9.1-1.fc16                 fedora    1.2 M
+DEBUG util.py:247:   libcap-ng               i686      0.6.5-2.fc15                 fedora     22 k
+DEBUG util.py:247:   libcom_err-devel        i686      1.41.14-2.fc15               fedora     26 k
+DEBUG util.py:247:   libdrm                  i686      2.4.25-3.fc16                fedora     70 k
+DEBUG util.py:247:   libselinux-devel        i686      2.0.102-4.fc16               fedora    142 k
+DEBUG util.py:247:   libsepol-devel          i686      2.0.44-2.fc16                fedora     64 k
+DEBUG util.py:247:   libudev                 i686      167-4.fc16                   fedora     76 k
+DEBUG util.py:247:   libusb                  i686      1:0.1.3-7.fc15               fedora     17 k
+DEBUG util.py:247:   libusb1                 i686      1.0.8-7.fc15                 fedora     59 k
+DEBUG util.py:247:   linux-atm-libs          i686      2.5.1-3.fc15                 fedora     25 k
+DEBUG util.py:247:   linux-firmware          noarch    20110304-1.fc16              fedora    7.4 M
+DEBUG util.py:247:   mingetty                i686      1.08-7.fc15                  fedora     21 k
+DEBUG util.py:247:   module-init-tools       i686      3.12-5.fc16                  fedora    430 k
+DEBUG util.py:247:   mysql                   i686      5.5.12-1.fc16                fedora    4.2 M
+DEBUG util.py:247:   mysql-libs              i686      5.5.12-1.fc16                fedora    684 k
+DEBUG util.py:247:   net-tools               i686      1.60-119.fc16                fedora    249 k
+DEBUG util.py:247:   newt                    i686      0.52.12-3.fc15               fedora     97 k
+DEBUG util.py:247:   newt-python             i686      0.52.12-3.fc15               fedora     49 k
+DEBUG util.py:247:   plymouth                i686      0.8.4-0.1.20110304.1.fc16    fedora     87 k
+DEBUG util.py:247:   plymouth-core-libs      i686      0.8.4-0.1.20110304.1.fc16    fedora     84 k
+DEBUG util.py:247:   plymouth-scripts        i686      0.8.4-0.1.20110304.1.fc16    fedora     25 k
+DEBUG util.py:247:   postgresql              i686      9.0.4-2.fc16                 fedora    2.7 M
+DEBUG util.py:247:   postgresql-libs         i686      9.0.4-2.fc16                 fedora    204 k
+DEBUG util.py:247:   procps                  i686      3.2.8-19.20110302git.fc16    fedora    197 k
+DEBUG util.py:247:   psmisc                  i686      22.13-8.fc15                 fedora    118 k
+DEBUG util.py:247:   python                  i686      2.7.1-7.fc16                 fedora     72 k
+DEBUG util.py:247:   slang                   i686      2.2.4-1.fc16                 fedora    493 k
+DEBUG util.py:247:   systemd                 i686      26-1.fc15                    fedora    553 k
+DEBUG util.py:247:   systemd-units           i686      26-1.fc15                    fedora    132 k
+DEBUG util.py:247:   sysvinit-tools          i686      2.88-3.dsf.fc15              fedora     68 k
+DEBUG util.py:247:   tcp_wrappers-libs       i686      7.6-62.fc16                  fedora     61 k
+DEBUG util.py:247:   udev                    i686      167-4.fc16                   fedora    353 k
+DEBUG util.py:247:   zlib-devel              i686      1.2.5-4.fc16                 fedora     44 k
+DEBUG util.py:247:  Resumen de la transacción
+DEBUG util.py:247:  ================================================================================
+DEBUG util.py:247:  Install      56 Package(s)
+DEBUG util.py:247:  Tamaño total de la descarga: 51 M
+DEBUG util.py:247:  Tamaño instalado: 184 M
+DEBUG util.py:247:  /bin/grep: /etc/pam.d/system-auth-ac: No existe el fichero o el directorio
+DEBUG util.py:247:  5044 blocks
+DEBUG util.py:247:  Instalado:
+DEBUG util.py:247:    mysql-devel.i686 0:5.5.12-1.fc16        openssl-devel.i686 0:1.0.0d-3.fc16   
+DEBUG util.py:247:    postgresql-devel.i686 0:9.0.4-2.fc16   
+DEBUG util.py:247:  Dependencia(s) instalada(s):
+DEBUG util.py:247:    authconfig.i686 0:6.1.13-1.fc15                                               
+DEBUG util.py:247:    cryptsetup-luks-libs.i686 0:1.3.0-1.fc16                                      
+DEBUG util.py:247:    dash.i686 0:0.5.6-3.fc15                                                      
+DEBUG util.py:247:    dbus.i686 1:1.4.6-4.fc15                                                      
+DEBUG util.py:247:    dbus-libs.i686 1:1.4.6-4.fc15                                                 
+DEBUG util.py:247:    device-mapper.i686 0:1.02.63-1.fc15                                           
+DEBUG util.py:247:    device-mapper-libs.i686 0:1.02.63-1.fc15                                      
+DEBUG util.py:247:    dracut.noarch 0:010-1.fc16                                                    
+DEBUG util.py:247:    fedora-logos.noarch 0:15.0.0-3.fc16                                           
+DEBUG util.py:247:    grubby.i686 0:7.0.16-3.fc15                                                   
+DEBUG util.py:247:    hostname.i686 0:3.06-1.fc16                                                   
+DEBUG util.py:247:    hwdata.noarch 0:0.232-1.fc16                                                  
+DEBUG util.py:247:    initscripts.i686 0:9.30-1.fc16                                                
+DEBUG util.py:247:    iproute.i686 0:2.6.38.1-4.fc16                                                
+DEBUG util.py:247:    iptables.i686 0:1.4.10-2.fc16                                                 
+DEBUG util.py:247:    iputils.i686 0:20101006-8.fc16                                                
+DEBUG util.py:247:    kbd.i686 0:1.15.2-3.fc16                                                      
+DEBUG util.py:247:    kbd-misc.noarch 0:1.15.2-3.fc16                                               
+DEBUG util.py:247:    kernel.i686 0:2.6.39-0.rc7.git6.1.fc16                                        
+DEBUG util.py:247:    keyutils-libs-devel.i686 0:1.2-7.fc15                                         
+DEBUG util.py:247:    krb5-devel.i686 0:1.9.1-1.fc16                                                
+DEBUG util.py:247:    libcap-ng.i686 0:0.6.5-2.fc15                                                 
+DEBUG util.py:247:    libcom_err-devel.i686 0:1.41.14-2.fc15                                        
+DEBUG util.py:247:    libdrm.i686 0:2.4.25-3.fc16                                                   
+DEBUG util.py:247:    libselinux-devel.i686 0:2.0.102-4.fc16                                        
+DEBUG util.py:247:    libsepol-devel.i686 0:2.0.44-2.fc16                                           
+DEBUG util.py:247:    libudev.i686 0:167-4.fc16                                                     
+DEBUG util.py:247:    libusb.i686 1:0.1.3-7.fc15                                                    
+DEBUG util.py:247:    libusb1.i686 0:1.0.8-7.fc15                                                   
+DEBUG util.py:247:    linux-atm-libs.i686 0:2.5.1-3.fc15                                            
+DEBUG util.py:247:    linux-firmware.noarch 0:20110304-1.fc16                                       
+DEBUG util.py:247:    mingetty.i686 0:1.08-7.fc15                                                   
+DEBUG util.py:247:    module-init-tools.i686 0:3.12-5.fc16                                          
+DEBUG util.py:247:    mysql.i686 0:5.5.12-1.fc16                                                    
+DEBUG util.py:247:    mysql-libs.i686 0:5.5.12-1.fc16                                               
+DEBUG util.py:247:    net-tools.i686 0:1.60-119.fc16                                                
+DEBUG util.py:247:    newt.i686 0:0.52.12-3.fc15                                                    
+DEBUG util.py:247:    newt-python.i686 0:0.52.12-3.fc15                                             
+DEBUG util.py:247:    plymouth.i686 0:0.8.4-0.1.20110304.1.fc16                                     
+DEBUG util.py:247:    plymouth-core-libs.i686 0:0.8.4-0.1.20110304.1.fc16                           
+DEBUG util.py:247:    plymouth-scripts.i686 0:0.8.4-0.1.20110304.1.fc16                             
+DEBUG util.py:247:    postgresql.i686 0:9.0.4-2.fc16                                                
+DEBUG util.py:247:    postgresql-libs.i686 0:9.0.4-2.fc16                                           
+DEBUG util.py:247:    procps.i686 0:3.2.8-19.20110302git.fc16                                       
+DEBUG util.py:247:    psmisc.i686 0:22.13-8.fc15                                                    
+DEBUG util.py:247:    python.i686 0:2.7.1-7.fc16                                                    
+DEBUG util.py:247:    slang.i686 0:2.2.4-1.fc16                                                     
+DEBUG util.py:247:    systemd.i686 0:26-1.fc15                                                      
+DEBUG util.py:247:    systemd-units.i686 0:26-1.fc15                                                
+DEBUG util.py:247:    sysvinit-tools.i686 0:2.88-3.dsf.fc15                                         
+DEBUG util.py:247:    tcp_wrappers-libs.i686 0:7.6-62.fc16                                          
+DEBUG util.py:247:    udev.i686 0:167-4.fc16                                                        
+DEBUG util.py:247:    zlib-devel.i686 0:1.2.5-4.fc16                                                
+DEBUG util.py:320:  Child returncode was: 0
+DEBUG util.py:281:  Executing command: ['ccache', '-M', '4G']
+DEBUG util.py:247:  Set cache size limit to 4.0 Gbytes
+DEBUG util.py:320:  Child returncode was: 0
+DEBUG backend.py:585:  Copying packages to result dir
+DEBUG util.py:281:  Executing command: umount -n /var/lib/mock/fedora-rawhide-i386/root/dev/shm
+DEBUG util.py:320:  Child returncode was: 0
+DEBUG util.py:281:  Executing command: umount -n /var/lib/mock/fedora-rawhide-i386/root/dev/pts
+DEBUG util.py:320:  Child returncode was: 0
+DEBUG util.py:281:  Executing command: umount -n /var/lib/mock/fedora-rawhide-i386/root/proc/filesystems
+DEBUG util.py:320:  Child returncode was: 0
+DEBUG util.py:281:  Executing command: umount -n /var/lib/mock/fedora-rawhide-i386/root/tmp/ccache
+DEBUG util.py:320:  Child returncode was: 0
+DEBUG util.py:281:  Executing command: umount -n /var/lib/mock/fedora-rawhide-i386/root/var/cache/yum
+DEBUG util.py:320:  Child returncode was: 0
+DEBUG util.py:281:  Executing command: umount -n /var/lib/mock/fedora-rawhide-i386/root/sys
+DEBUG util.py:320:  Child returncode was: 0
+DEBUG util.py:281:  Executing command: umount -n /var/lib/mock/fedora-rawhide-i386/root/proc
+DEBUG util.py:320:  Child returncode was: 0
+DEBUG util.py:83:  remove tree: /var/lib/mock/fedora-rawhide-i386.tmp
+INFO backend.py:164:  chroot (/var/lib/mock/fedora-rawhide-i386) unlocked and deleted
+DEBUG util.py:110:  kill orphans
diff --git a/UpTools/8.5.5/1.fc16/state.log b/UpTools/8.5.5/1.fc16/state.log
new file mode 100644
index 0000000..ff5533d
--- /dev/null
+++ b/UpTools/8.5.5/1.fc16/state.log
@@ -0,0 +1,10 @@
+2011-05-17 08:29:35,599 - Mock Version: 1.1.9
+2011-05-17 08:29:35,705 - State Changed: cleaning yum metadata
+2011-05-17 08:29:36,096 - State Changed: running yum
+2011-05-17 08:41:00,812 - State Changed: creating cache
+2011-05-17 08:42:50,858 - State Changed: unlock buildroot
+2011-05-17 08:42:51,223 - State Changed: setup
+2011-05-17 08:49:45,873 - State Changed: build
+2011-05-17 08:51:35,859 - State Changed: lock buildroot
+2011-05-17 08:51:35,860 - State Changed: clean
+2011-05-17 08:51:43,387 - State Changed: unlock buildroot


More information about the scm-commits mailing list