[Collab-qa-commits] r2275 - in collab-qa-tools: lib/collab-qa test test/dest test/source

Lucas Nussbaum lucas at alioth.debian.org
Mon May 7 09:50:33 UTC 2012


Author: lucas
Date: 2012-05-07 09:50:33 +0000 (Mon, 07 May 2012)
New Revision: 2275

Added:
   collab-qa-tools/test/dest/cairo-5c_1.6_unstable.output
   collab-qa-tools/test/dest/clxclient_3.6.1-4_unstable-gcc47.output
   collab-qa-tools/test/dest/crystalspace_1.4.0+dfsg-4_unstable.output
   collab-qa-tools/test/dest/ftpgrab_0.1.5-2_unstable-gcc47.output
   collab-qa-tools/test/source/cairo-5c_1.6_unstable.log
   collab-qa-tools/test/source/clxclient_3.6.1-4_unstable-gcc47.log
   collab-qa-tools/test/source/crystalspace_1.4.0+dfsg-4_unstable.log
   collab-qa-tools/test/source/ftpgrab_0.1.5-2_unstable-gcc47.log
Modified:
   collab-qa-tools/lib/collab-qa/log-parser-build.rb
   collab-qa-tools/lib/collab-qa/log-parser.rb
   collab-qa-tools/test/tc_logs.rb
Log:
log parser improvements

Modified: collab-qa-tools/lib/collab-qa/log-parser-build.rb
===================================================================
--- collab-qa-tools/lib/collab-qa/log-parser-build.rb	2012-05-07 03:00:33 UTC (rev 2274)
+++ collab-qa-tools/lib/collab-qa/log-parser-build.rb	2012-05-07 09:50:33 UTC (rev 2275)
@@ -181,7 +181,7 @@
 
       @sum_1l = 'DEPS'
       if (b = @extract.index('The following packages have unmet dependencies:'))
-        e = @extract.index('E: Broken packages')
+        e = @extract.index('E: Broken packages') || @extract.index('E: Unable to correct problems, you have held broken packages.')
         if e - b == 2 # only one line
           l = @extract[b+1]
           if l =~ /^ sbuild-build-depends-#{pkg}-dummy : Depends: (.*) but it is not installable$/
@@ -352,6 +352,7 @@
       /is not a valid libtool archive$/,
       /^Failed .* test scripts, .* okay. .* subtests failed/,
       /^make(\[\d+\])?: \*\*\* No rule to make target .* Stop.$/,
+      /^make(\[\d+\])?: \*\*\* No targets specified and no makefile found.  Stop.$/,
       /: not found$/,
       /: command not found$/i,
       /: missing operand$/,
@@ -378,7 +379,8 @@
       /error CS\d+:/,
       /dh_install:.*missing files/,
       /java.*cannot find symbol/,
-      /g\+\+: error: unrecognized option/
+      /g\+\+: error: unrecognized option/,
+      /g\+\+: error: unrecognized command line option/
     ]
 
     POSSIBLE_CUTS = [

Modified: collab-qa-tools/lib/collab-qa/log-parser.rb
===================================================================
--- collab-qa-tools/lib/collab-qa/log-parser.rb	2012-05-07 03:00:33 UTC (rev 2274)
+++ collab-qa-tools/lib/collab-qa/log-parser.rb	2012-05-07 09:50:33 UTC (rev 2275)
@@ -46,7 +46,7 @@
         end
         dbn = @lines.grep(/^Build needed/)[0]
         if dbn
-          b1, b2, t, rest = dbn.split(' ',4)
+          t, rest = dbn.split(' ',4)
           @buildtime = t.split(/:|,/).map { |i| i.to_i }.inject(0) { |a, b| a * 60 + b }
         end
       else
@@ -291,6 +291,39 @@
 
 #{bfooter}
 EOF
+        elsif bugtype == 'noarchall'
+          s = <<-EOF
+From: #{fullname} <#{email}>
+To: submit at bugs.debian.org
+Subject: #{@package}: FTBFS: #{@sum_1l}
+
+Source: #{@package}
+Version: #{@version}
+Severity: serious
+Tags: wheezy sid
+User: debian-qa at lists.debian.org
+Usertags: qa-ftbfs-#{sdate} qa-ftbfs qa-ftbfs-buildarch
+Justification: FTBFS on amd64
+
+Hi,
+
+During a rebuild of all packages in sid, your package failed to build on
+amd64.
+
+This rebuild was done by building only architecture:any binary packages
+(binary-arch target of debian/rules), and using a recent dpkg that uses the
+build-arch target if available.
+Also, only the Build-Depends were installed, not the Build-Depends-Indep.
+
+Relevant part:
+> #{@extract.join("\n> ")}
+
+The full build log is available from:
+   http://people.debian.org/~lucas/logs/#{date}/#{filename}
+
+#{bfooter}
+EOF
+
         else
           s = <<-EOF
 From: #{fullname} <#{email}>

Added: collab-qa-tools/test/dest/cairo-5c_1.6_unstable.output
===================================================================
--- collab-qa-tools/test/dest/cairo-5c_1.6_unstable.output	                        (rev 0)
+++ collab-qa-tools/test/dest/cairo-5c_1.6_unstable.output	2012-05-07 09:50:33 UTC (rev 2275)
@@ -0,0 +1,17 @@
+cairo-5c 1.6 Failed 74.354425
+Reason: UNKNOWN
+
+1-line summary:
+make[1]: *** No targets specified and no makefile found.  Stop.
+
+multi-line summary:
+make[1]: *** No targets specified and no makefile found.  Stop.
+
+excerpt for mail:
+ debian/rules build-arch
+dh_testdir
+/usr/bin/make
+make[1]: Entering directory `/«PKGBUILDDIR»'
+make[1]: *** No targets specified and no makefile found.  Stop.
+make[1]: Leaving directory `/«PKGBUILDDIR»'
+make: *** [build-stamp] Error 2

Added: collab-qa-tools/test/dest/clxclient_3.6.1-4_unstable-gcc47.output
===================================================================
--- collab-qa-tools/test/dest/clxclient_3.6.1-4_unstable-gcc47.output	                        (rev 0)
+++ collab-qa-tools/test/dest/clxclient_3.6.1-4_unstable-gcc47.output	2012-05-07 09:50:33 UTC (rev 2275)
@@ -0,0 +1,71 @@
+clxclient 3.6.1-4 Failed 106.566636
+Reason: UNKNOWN
+
+1-line summary:
+XXX
+
+multi-line summary:
+UNKNOWN
+
+excerpt for mail:
+make[1]: Entering directory `/«PKGBUILDDIR»'
+/usr/bin/install -d /«PKGBUILDDIR»/debian/tmp/usr/lib/x86_64-linux-gnu
+/usr/bin/install -d /«PKGBUILDDIR»/debian/tmp/usr/include
+/usr/bin/install -m 644 clxclient.h /«PKGBUILDDIR»/debian/tmp/usr/include
+/usr/bin/install -m 755 libclxclient.so.3.6.1 /«PKGBUILDDIR»/debian/tmp/usr/lib/x86_64-linux-gnu
+/sbin/ldconfig -n /«PKGBUILDDIR»/debian/tmp/usr/lib/x86_64-linux-gnu
+ln -sf libclxclient.so.3.6.1 /«PKGBUILDDIR»/debian/tmp/usr/lib/x86_64-linux-gnu/libclxclient.so
+make[1]: Leaving directory `/«PKGBUILDDIR»'
+   dh_install -a -O-Smakefile
+   dh_installdocs -a -O-Smakefile
+   dh_installchangelogs -a -O-Smakefile
+   dh_installexamples -a -O-Smakefile
+   dh_installman -a -O-Smakefile
+   dh_installcatalogs -a -O-Smakefile
+   dh_installcron -a -O-Smakefile
+   dh_installdebconf -a -O-Smakefile
+   dh_installemacsen -a -O-Smakefile
+   dh_installifupdown -a -O-Smakefile
+   dh_installinfo -a -O-Smakefile
+   dh_installinit -a -O-Smakefile
+   dh_installmenu -a -O-Smakefile
+   dh_installmime -a -O-Smakefile
+   dh_installmodules -a -O-Smakefile
+   dh_installlogcheck -a -O-Smakefile
+   dh_installlogrotate -a -O-Smakefile
+   dh_installpam -a -O-Smakefile
+   dh_installppp -a -O-Smakefile
+   dh_installudev -a -O-Smakefile
+   dh_installwm -a -O-Smakefile
+   dh_installxfonts -a -O-Smakefile
+   dh_installgsettings -a -O-Smakefile
+   dh_bugfiles -a -O-Smakefile
+   dh_ucf -a -O-Smakefile
+   dh_lintian -a -O-Smakefile
+   dh_gconf -a -O-Smakefile
+   dh_icons -a -O-Smakefile
+   dh_perl -a -O-Smakefile
+   dh_usrlocal -a -O-Smakefile
+   dh_link -a -O-Smakefile
+   dh_compress -a -O-Smakefile
+   dh_fixperms -a -O-Smakefile
+   dh_strip -a -O-Smakefile
+   dh_makeshlibs -a -O-Smakefile
+dpkg-gensymbols: warning: some symbols or patterns disappeared in the symbols file: see diff output below
+dpkg-gensymbols: warning: debian/libclxclient3/DEBIAN/symbols doesn't match completely debian/libclxclient3.symbols.amd64
+--- debian/libclxclient3.symbols.amd64 (libclxclient3_3.6.1-4_amd64)
++++ dpkg-gensymbolsqXR1dK	2012-03-30 01:12:04.997222968 +0000
+@@ -9,8 +9,8 @@
+  _ZN5EdestD0Ev at Base 3.6.1
+  _ZN5EdestD1Ev at Base 3.6.1
+  _ZN5EdestD2Ev at Base 3.6.1
+- _ZN5EsyncD1Ev at Base 3.6.1
+- _ZN5EsyncD2Ev at Base 3.6.1
++#MISSING: 3.6.1-4# _ZN5EsyncD1Ev at Base 3.6.1
++#MISSING: 3.6.1-4# _ZN5EsyncD2Ev at Base 3.6.1
+  _ZN6X_draw10drawpointsEiP6XPoint at Base 3.6.1
+  _ZN6X_draw10drawstringEPKci at Base 3.6.1
+  _ZN6X_draw12drawsegmentsEiP8XSegment at Base 3.6.1
+dh_makeshlibs: dpkg-gensymbols -plibclxclient3 -Idebian/libclxclient3.symbols.amd64 -Pdebian/libclxclient3 -edebian/libclxclient3/usr/lib/x86_64-linux-gnu/libclxclient.so.3.6.1
+ returned exit code 1
+make: *** [binary-arch] Error 1

Added: collab-qa-tools/test/dest/crystalspace_1.4.0+dfsg-4_unstable.output
===================================================================
--- collab-qa-tools/test/dest/crystalspace_1.4.0+dfsg-4_unstable.output	                        (rev 0)
+++ collab-qa-tools/test/dest/crystalspace_1.4.0+dfsg-4_unstable.output	2012-05-07 09:50:33 UTC (rev 2275)
@@ -0,0 +1,49 @@
+crystalspace 1.4.0+dfsg-4 Failed 43.391978
+Reason: BUILDDEPS
+
+1-line summary:
+unsatisfiable build-dependencies: libmng-dev, libcegui-mk2-dev, libcucul-dev
+
+multi-line summary:
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Install crystalspace build dependencies (apt-based resolver)                 │
+└──────────────────────────────────────────────────────────────────────────────┘
+
+Installing build dependencies
+Reading package lists...
+Building dependency tree...
+Reading state information...
+Some packages could not be installed. This may mean that you have
+requested an impossible situation or if you are using the unstable
+distribution that some required packages have not yet been created
+or been moved out of Incoming.
+The following information may help to resolve the situation:
+
+The following packages have unmet dependencies:
+ sbuild-build-depends-crystalspace-dummy : Depends: libmng-dev but it is not going to be installed
+                                           Depends: libcegui-mk2-dev but it is not going to be installed
+                                           Depends: libcucul-dev but it is not installable
+E: Unable to correct problems, you have held broken packages.
+apt-get failed.
+
+excerpt for mail:
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Install crystalspace build dependencies (apt-based resolver)                 │
+└──────────────────────────────────────────────────────────────────────────────┘
+
+Installing build dependencies
+Reading package lists...
+Building dependency tree...
+Reading state information...
+Some packages could not be installed. This may mean that you have
+requested an impossible situation or if you are using the unstable
+distribution that some required packages have not yet been created
+or been moved out of Incoming.
+The following information may help to resolve the situation:
+
+The following packages have unmet dependencies:
+ sbuild-build-depends-crystalspace-dummy : Depends: libmng-dev but it is not going to be installed
+                                           Depends: libcegui-mk2-dev but it is not going to be installed
+                                           Depends: libcucul-dev but it is not installable
+E: Unable to correct problems, you have held broken packages.
+apt-get failed.

Added: collab-qa-tools/test/dest/ftpgrab_0.1.5-2_unstable-gcc47.output
===================================================================
--- collab-qa-tools/test/dest/ftpgrab_0.1.5-2_unstable-gcc47.output	                        (rev 0)
+++ collab-qa-tools/test/dest/ftpgrab_0.1.5-2_unstable-gcc47.output	2012-05-07 09:50:33 UTC (rev 2275)
@@ -0,0 +1,44 @@
+ftpgrab 0.1.5-2 Failed 109.031874
+Reason: UNKNOWN
+
+1-line summary:
+g++: error: unrecognized command line option '-Wl'
+
+multi-line summary:
+g++: error: unrecognized command line option '-Wl'
+
+excerpt for mail:
+make[1]: Entering directory `/«PKGBUILDDIR»'
+g++ -c main.cc -O2 -Wall
+g++ -c fgstring.cc -O2 -Wall
+g++ -c fgexc.cc -O2 -Wall
+g++ -c fgftpcon.cc -O2 -Wall
+g++ -c fgfileinfo.cc -O2 -Wall
+g++ -c fgfilegrab.cc -O2 -Wall
+fgfilegrab.cc: In member function 'void FGFileGrab::FreeResources()':
+fgfilegrab.cc:131:12: warning: deleting object of abstract class type 'FGFilePickerInterface' which has non-virtual destructor will cause undefined behaviour [-Wdelete-non-virtual-dtor]
+g++ -c fgalist.cc -O2 -Wall
+g++ -c fgfshelp.cc -O2 -Wall
+g++ -c fgpickall.cc -O2 -Wall
+g++ -c fgdlist.cc -O2 -Wall
+g++ -c fgdlaction.cc -O2 -Wall
+g++ -c fgactioni.cc -O2 -Wall
+g++ -c fgfilelist.cc -O2 -Wall
+g++ -c fgpickallsync.cc -O2 -Wall
+g++ -c fgdelaction.cc -O2 -Wall
+g++ -c fgfpicki.cc -O2 -Wall
+g++ -c fgpickbest.cc -O2 -Wall
+g++ -c fgscomp.cc -O2 -Wall
+g++ -c fgicomp.cc -O2 -Wall
+g++ -c fgbdfname.cc -O2 -Wall
+g++ -c fgmrank.cc -O2 -Wall
+g++ -c fglogger.cc -O2 -Wall
+g++ -c fgdyymmddcomp.cc -O2 -Wall
+g++ -c fgfncomp.cc -O2 -Wall
+g++ -c fgpickregexp.cc -O2 -Wall
+g++ -c fgpickregexpsync.cc -O2 -Wall
+g++ -c fgconi.cc -O2 -Wall
+g++ -c fgcharcomp.cc -O2 -Wall
+g++ -o ftpgrab main.o fgstring.o fgexc.o fgftpcon.o fgfileinfo.o fgfilegrab.o fgalist.o fgfshelp.o fgpickall.o fgdlist.o fgdlaction.o fgactioni.o fgfilelist.o fgpickallsync.o fgdelaction.o fgfpicki.o fgpickbest.o fgscomp.o fgicomp.o fgbdfname.o fgmrank.o fglogger.o fgdyymmddcomp.o fgfncomp.o fgpickregexp.o fgpickregexpsync.o fgconi.o fgcharcomp.o -Wl -lpthread
+g++: error: unrecognized command line option '-Wl'
+make[1]: *** [ftpgrab] Error 1

Added: collab-qa-tools/test/source/cairo-5c_1.6_unstable.log
===================================================================
--- collab-qa-tools/test/source/cairo-5c_1.6_unstable.log	                        (rev 0)
+++ collab-qa-tools/test/source/cairo-5c_1.6_unstable.log	2012-05-07 09:50:33 UTC (rev 2275)
@@ -0,0 +1,643 @@
+DC-Build-Header: cairo-5c 1.6 / Thu Mar 29 23:56:16 +0000 2012
+DC-Task: logfile:/tmp/cairo-5c_1.6_unstable.log version:1.6 chroot:unstable modes:binary-only source:cairo-5c architecture:any esttime:100
+DC-Sbuild-call: su user -c 'sbuild -n --apt-update -d unstable -v cairo-5c_1.6'
+sbuild (Debian sbuild) 0.62.5 (13 Jul 2011) on ip-10-251-41-98.eu-west-1.compute.internal
+
+╔══════════════════════════════════════════════════════════════════════════════╗
+║ cairo-5c 1.6 (amd64)                                       29 Mar 2012 23:56 ║
+╚══════════════════════════════════════════════════════════════════════════════╝
+
+Package: cairo-5c
+Version: 1.6
+Source Version: 1.6
+Distribution: unstable
+Architecture: amd64
+
+I: NOTICE: Log filtering will replace 'build/cairo-5c-7XUBB4/cairo-5c-1.6' with '«PKGBUILDDIR»'
+I: NOTICE: Log filtering will replace 'build/cairo-5c-7XUBB4' with '«BUILDDIR»'
+I: NOTICE: Log filtering will replace 'var/lib/schroot/mount/unstable-amd64-sbuild-5f01dd48-fc05-483c-9bc5-3d5041b7799b' with '«CHROOT»'
+
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Update chroot                                                                │
+└──────────────────────────────────────────────────────────────────────────────┘
+
+Ign http://localhost unstable InRelease
+Get:1 http://localhost unstable Release.gpg [836 B]
+Get:2 http://localhost unstable Release [206 kB]
+Get:3 http://localhost unstable/main Sources/DiffIndex [7876 B]
+Get:4 http://localhost unstable/main amd64 Packages/DiffIndex [7876 B]
+Get:5 http://localhost unstable/main TranslationIndex [2223 B]
+Get:6 http://localhost unstable/main 2012-03-29-1410.05.pdiff [6476 B]
+Get:7 http://localhost unstable/main amd64 2012-03-29-1410.05.pdiff [10.1 kB]
+Get:8 http://localhost unstable/main 2012-03-29-1410.05.pdiff [6476 B]
+Get:9 http://localhost unstable/main Translation-en [3924 kB]
+Get:10 http://localhost unstable/main amd64 2012-03-29-1410.05.pdiff [10.1 kB]
+Fetched 4165 kB in 9s (434 kB/s)
+Reading package lists...
+Reading package lists...
+Building dependency tree...
+Reading state information...
+0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
+
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Fetch source files                                                           │
+└──────────────────────────────────────────────────────────────────────────────┘
+
+
+Check APT
+─────────
+
+Checking available source versions...
+
+Download source files with APT
+──────────────────────────────
+
+Reading package lists...
+Building dependency tree...
+Reading state information...
+Need to get 434 kB of source archives.
+Get:1 http://localhost/debian/ unstable/main cairo-5c 1.6 (dsc) [849 B]
+Get:2 http://localhost/debian/ unstable/main cairo-5c 1.6 (tar) [433 kB]
+Fetched 434 kB in 0s (2430 kB/s)
+Download complete and in download only mode
+
+Check arch
+──────────
+
+Merged Build-Depends: build-essential, fakeroot
+Filtered Build-Depends: build-essential, fakeroot
+dpkg-deb: building package `sbuild-build-depends-core-dummy' in `/«BUILDDIR»/resolver-RwKdUE/apt_archive/sbuild-build-depends-core-dummy.deb'.
+OK
+Reading package lists...
+
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Install core build dependencies (apt-based resolver)                         │
+└──────────────────────────────────────────────────────────────────────────────┘
+
+Installing build dependencies
+Reading package lists...
+Building dependency tree...
+Reading state information...
+The following NEW packages will be installed:
+  sbuild-build-depends-core-dummy
+debconf: delaying package configuration, since apt-utils is not installed
+0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
+Need to get 0 B/710 B of archives.
+After this operation, 0 B of additional disk space will be used.
+Selecting previously unselected package sbuild-build-depends-core-dummy.
+(Reading database ... 10924 files and directories currently installed.)
+Unpacking sbuild-build-depends-core-dummy (from .../sbuild-build-depends-core-dummy.deb) ...
+Setting up sbuild-build-depends-core-dummy (0.invalid.0) ...
+Merged Build-Depends: base-files, base-passwd, bash, coreutils, dash, debianutils, diffutils, dpkg, e2fsprogs, findutils, grep, gzip, hostname, ncurses-base, ncurses-bin, perl-base, sed, login, sysvinit-utils, sysvinit, tar, bsdutils, mount, util-linux, libc6-dev | libc-dev, gcc (>= 4:4.4.3), g++ (>= 4:4.4.3), make, dpkg-dev (>= 1.13.5), debhelper (>= 7), libcairo2-dev, librsvg2-dev, nickle (>= 2.73), libx11-dev, libfreetype6-dev
+Filtered Build-Depends: base-files, base-passwd, bash, coreutils, dash, debianutils, diffutils, dpkg, e2fsprogs, findutils, grep, gzip, hostname, ncurses-base, ncurses-bin, perl-base, sed, login, sysvinit-utils, sysvinit, tar, bsdutils, mount, util-linux, libc6-dev, gcc (>= 4:4.4.3), g++ (>= 4:4.4.3), make, dpkg-dev (>= 1.13.5), debhelper (>= 7), libcairo2-dev, librsvg2-dev, nickle (>= 2.73), libx11-dev, libfreetype6-dev
+dpkg-deb: building package `sbuild-build-depends-cairo-5c-dummy' in `/«BUILDDIR»/resolver-ZG507Q/apt_archive/sbuild-build-depends-cairo-5c-dummy.deb'.
+OK
+Reading package lists...
+
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Install cairo-5c build dependencies (apt-based resolver)                     │
+└──────────────────────────────────────────────────────────────────────────────┘
+
+Installing build dependencies
+Reading package lists...
+Building dependency tree...
+Reading state information...
+The following extra packages will be installed:
+  bsdmainutils debhelper file fontconfig fontconfig-config gettext
+  gettext-base gir1.2-freedesktop gir1.2-gdkpixbuf-2.0 gir1.2-glib-2.0
+  gir1.2-rsvg-2.0 groff-base html2text intltool-debian libcairo-gobject2
+  libcairo-script-interpreter2 libcairo2 libcairo2-dev libcroco3 libdatrie1
+  libexpat1 libexpat1-dev libffi5 libfontconfig1 libfontconfig1-dev
+  libfreetype6 libfreetype6-dev libgdk-pixbuf2.0-0 libgdk-pixbuf2.0-common
+  libgdk-pixbuf2.0-dev libgirepository-1.0-1 libglib2.0-0 libglib2.0-bin
+  libglib2.0-data libglib2.0-dev libice-dev libice6 libjasper1 libjpeg8
+  libmagic1 libpango1.0-0 libpcre3 libpipeline1 libpixman-1-0 libpixman-1-dev
+  libpng12-0 libpng12-dev libpopt0 libpthread-stubs0 libpthread-stubs0-dev
+  librsvg2-2 librsvg2-common librsvg2-dev libsm-dev libsm6 libthai-data
+  libthai0 libtiff4 libunistring0 libx11-6 libx11-data libx11-dev libxau-dev
+  libxau6 libxcb-render0 libxcb-render0-dev libxcb-shm0 libxcb-shm0-dev
+  libxcb1 libxcb1-dev libxdmcp-dev libxdmcp6 libxft2 libxml2 libxrender-dev
+  libxrender1 man-db nickle pkg-config po-debconf ttf-dejavu-core x11-common
+  x11proto-core-dev x11proto-input-dev x11proto-kb-dev x11proto-render-dev
+  xorg-sgml-doctools xtrans-dev zlib1g-dev
+Suggested packages:
+  wamerican wordlist whois vacation dh-make defoma gettext-doc groff
+  libcairo2-doc libglib2.0-doc libjasper-runtime ttf-baekmuk
+  ttf-arphic-gbsn00lp ttf-arphic-bsmi00lp ttf-arphic-gkai00mp
+  ttf-arphic-bkai00mp librsvg2-bin librsvg2-doc libxcb-doc less www-browser
+  libmail-box-perl
+Recommended packages:
+  curl wget lynx-cur autopoint shared-mime-info python libx11-doc xml-core
+  libmail-sendmail-perl
+The following NEW packages will be installed:
+  bsdmainutils debhelper file fontconfig fontconfig-config gettext
+  gettext-base gir1.2-freedesktop gir1.2-gdkpixbuf-2.0 gir1.2-glib-2.0
+  gir1.2-rsvg-2.0 groff-base html2text intltool-debian libcairo-gobject2
+  libcairo-script-interpreter2 libcairo2 libcairo2-dev libcroco3 libdatrie1
+  libexpat1 libexpat1-dev libffi5 libfontconfig1 libfontconfig1-dev
+  libfreetype6 libfreetype6-dev libgdk-pixbuf2.0-0 libgdk-pixbuf2.0-common
+  libgdk-pixbuf2.0-dev libgirepository-1.0-1 libglib2.0-0 libglib2.0-bin
+  libglib2.0-data libglib2.0-dev libice-dev libice6 libjasper1 libjpeg8
+  libmagic1 libpango1.0-0 libpcre3 libpipeline1 libpixman-1-0 libpixman-1-dev
+  libpng12-0 libpng12-dev libpopt0 libpthread-stubs0 libpthread-stubs0-dev
+  librsvg2-2 librsvg2-common librsvg2-dev libsm-dev libsm6 libthai-data
+  libthai0 libtiff4 libunistring0 libx11-6 libx11-data libx11-dev libxau-dev
+  libxau6 libxcb-render0 libxcb-render0-dev libxcb-shm0 libxcb-shm0-dev
+  libxcb1 libxcb1-dev libxdmcp-dev libxdmcp6 libxft2 libxml2 libxrender-dev
+  libxrender1 man-db nickle pkg-config po-debconf
+  sbuild-build-depends-cairo-5c-dummy ttf-dejavu-core x11-common
+  x11proto-core-dev x11proto-input-dev x11proto-kb-dev x11proto-render-dev
+  xorg-sgml-doctools xtrans-dev zlib1g-dev
+0 upgraded, 90 newly installed, 0 to remove and 0 not upgraded.
+Need to get 32.1 MB/32.1 MB of archives.
+After this operation, 85.4 MB of additional disk space will be used.
+Get:1 http://localhost/debian/ unstable/main libpipeline1 amd64 1.2.1-1 [39.2 kB]
+Get:2 http://localhost/debian/ unstable/main libpopt0 amd64 1.16-3 [55.2 kB]
+Get:3 http://localhost/debian/ unstable/main libmagic1 amd64 5.11-1 [250 kB]
+Get:4 http://localhost/debian/ unstable/main libpcre3 amd64 1:8.30-4 [242 kB]
+Get:5 http://localhost/debian/ unstable/main libexpat1 amd64 2.1.0~beta3-2 [141 kB]
+Get:6 http://localhost/debian/ unstable/main libfreetype6 amd64 2.4.9-1 [450 kB]
+Get:7 http://localhost/debian/ unstable/main ttf-dejavu-core all 2.33-2 [1552 kB]
+Get:8 http://localhost/debian/ unstable/main fontconfig-config all 2.8.0-3.1 [219 kB]
+Get:9 http://localhost/debian/ unstable/main libfontconfig1 amd64 2.8.0-3.1 [283 kB]
+Get:10 http://localhost/debian/ unstable/main libpixman-1-0 amd64 0.24.4-1 [406 kB]
+Get:11 http://localhost/debian/ unstable/main libpng12-0 amd64 1.2.47-2 [190 kB]
+Get:12 http://localhost/debian/ unstable/main libxau6 amd64 1:1.0.6-4 [17.1 kB]
+Get:13 http://localhost/debian/ unstable/main libxdmcp6 amd64 1:1.1.0-4 [22.9 kB]
+Get:14 http://localhost/debian/ unstable/main libxcb1 amd64 1.8.1-1 [50.0 kB]
+Get:15 http://localhost/debian/ unstable/main libx11-data all 2:1.4.4-4 [187 kB]
+Get:16 http://localhost/debian/ unstable/main libx11-6 amd64 2:1.4.4-4 [889 kB]
+Get:17 http://localhost/debian/ unstable/main libxcb-render0 amd64 1.8.1-1 [18.4 kB]
+Get:18 http://localhost/debian/ unstable/main libxcb-shm0 amd64 1.8.1-1 [10.1 kB]
+Get:19 http://localhost/debian/ unstable/main libxrender1 amd64 1:0.9.6-2 [31.5 kB]
+Get:20 http://localhost/debian/ unstable/main libcairo2 amd64 1.10.2-7 [933 kB]
+Get:21 http://localhost/debian/ unstable/main libffi5 amd64 3.0.10-3 [24.8 kB]
+Get:22 http://localhost/debian/ unstable/main libglib2.0-0 amd64 2.30.2-6 [1846 kB]
+Get:23 http://localhost/debian/ unstable/main libcairo-gobject2 amd64 1.10.2-7 [590 kB]
+Get:24 http://localhost/debian/ unstable/main libcairo-script-interpreter2 amd64 1.10.2-7 [629 kB]
+Get:25 http://localhost/debian/ unstable/main libxml2 amd64 2.7.8.dfsg-7 [895 kB]
+Get:26 http://localhost/debian/ unstable/main libcroco3 amd64 0.6.5-1 [151 kB]
+Get:27 http://localhost/debian/ unstable/main libdatrie1 amd64 0.2.5-3 [28.6 kB]
+Get:28 http://localhost/debian/ unstable/main libjpeg8 amd64 8d-1 [134 kB]
+Get:29 http://localhost/debian/ unstable/main libjasper1 amd64 1.900.1-13 [159 kB]
+Get:30 http://localhost/debian/ unstable/main libtiff4 amd64 3.9.6-1 [199 kB]
+Get:31 http://localhost/debian/ unstable/main libgdk-pixbuf2.0-common all 2.24.1-1 [485 kB]
+Get:32 http://localhost/debian/ unstable/main libgdk-pixbuf2.0-0 amd64 2.24.1-1 [200 kB]
+Get:33 http://localhost/debian/ unstable/main x11-common all 1:7.6+12 [283 kB]
+Get:34 http://localhost/debian/ unstable/main libice6 amd64 2:1.0.7-2 [56.5 kB]
+Get:35 http://localhost/debian/ unstable/main libthai-data all 0.1.17-1 [205 kB]
+Get:36 http://localhost/debian/ unstable/main libthai0 amd64 0.1.17-1 [44.8 kB]
+Get:37 http://localhost/debian/ unstable/main libxft2 amd64 2.2.0-3 [58.1 kB]
+Get:38 http://localhost/debian/ unstable/main fontconfig amd64 2.8.0-3.1 [335 kB]
+Get:39 http://localhost/debian/ unstable/main libpango1.0-0 amd64 1.29.4-3+b1 [457 kB]
+Get:40 http://localhost/debian/ unstable/main librsvg2-2 amd64 2.36.0-1 [253 kB]
+Get:41 http://localhost/debian/ unstable/main libsm6 amd64 2:1.2.0-2 [29.8 kB]
+Get:42 http://localhost/debian/ unstable/main libunistring0 amd64 0.9.3-5 [434 kB]
+Get:43 http://localhost/debian/ unstable/main bsdmainutils amd64 9.0.1 [210 kB]
+Get:44 http://localhost/debian/ unstable/main groff-base amd64 1.21-6 [1150 kB]
+Get:45 http://localhost/debian/ unstable/main man-db amd64 2.6.1-1 [1057 kB]
+Get:46 http://localhost/debian/ unstable/main file amd64 5.11-1 [53.2 kB]
+Get:47 http://localhost/debian/ unstable/main gettext-base amd64 0.18.1.1-5 [154 kB]
+Get:48 http://localhost/debian/ unstable/main html2text amd64 1.3.2a-15 [103 kB]
+Get:49 http://localhost/debian/ unstable/main gettext amd64 0.18.1.1-5 [2080 kB]
+Get:50 http://localhost/debian/ unstable/main intltool-debian all 0.35.0+20060710.1 [30.8 kB]
+Get:51 http://localhost/debian/ unstable/main po-debconf all 1.0.16+nmu2 [224 kB]
+Get:52 http://localhost/debian/ unstable/main debhelper all 9.20120322 [694 kB]
+Get:53 http://localhost/debian/ unstable/main libgirepository-1.0-1 amd64 1.31.22-1 [108 kB]
+Get:54 http://localhost/debian/ unstable/main gir1.2-glib-2.0 amd64 1.31.22-1 [166 kB]
+Get:55 http://localhost/debian/ unstable/main gir1.2-freedesktop amd64 1.31.22-1 [21.8 kB]
+Get:56 http://localhost/debian/ unstable/main gir1.2-gdkpixbuf-2.0 amd64 2.24.1-1 [14.1 kB]
+Get:57 http://localhost/debian/ unstable/main gir1.2-rsvg-2.0 amd64 2.36.0-1 [159 kB]
+Get:58 http://localhost/debian/ unstable/main libexpat1-dev amd64 2.1.0~beta3-2 [229 kB]
+Get:59 http://localhost/debian/ unstable/main zlib1g-dev amd64 1:1.2.6.dfsg-2 [213 kB]
+Get:60 http://localhost/debian/ unstable/main libfreetype6-dev amd64 2.4.9-1 [803 kB]
+Get:61 http://localhost/debian/ unstable/main pkg-config amd64 0.26-1 [59.5 kB]
+Get:62 http://localhost/debian/ unstable/main libfontconfig1-dev amd64 2.8.0-3.1 [835 kB]
+Get:63 http://localhost/debian/ unstable/main xorg-sgml-doctools all 1:1.10-1 [24.1 kB]
+Get:64 http://localhost/debian/ unstable/main x11proto-core-dev all 7.0.22-1 [323 kB]
+Get:65 http://localhost/debian/ unstable/main libxau-dev amd64 1:1.0.6-4 [20.6 kB]
+Get:66 http://localhost/debian/ unstable/main libxdmcp-dev amd64 1:1.1.0-4 [39.3 kB]
+Get:67 http://localhost/debian/ unstable/main x11proto-input-dev all 2.1-1 [145 kB]
+Get:68 http://localhost/debian/ unstable/main x11proto-kb-dev all 1.0.5-2 [27.5 kB]
+Get:69 http://localhost/debian/ unstable/main xtrans-dev all 1.2.6-2 [101 kB]
+Get:70 http://localhost/debian/ unstable/main libpthread-stubs0 amd64 0.3-3 [3228 B]
+Get:71 http://localhost/debian/ unstable/main libpthread-stubs0-dev amd64 0.3-3 [3998 B]
+Get:72 http://localhost/debian/ unstable/main libxcb1-dev amd64 1.8.1-1 [86.6 kB]
+Get:73 http://localhost/debian/ unstable/main libx11-dev amd64 2:1.4.4-4 [1027 kB]
+Get:74 http://localhost/debian/ unstable/main x11proto-render-dev all 2:0.11.1-2 [20.8 kB]
+Get:75 http://localhost/debian/ unstable/main libxrender-dev amd64 1:0.9.6-2 [39.7 kB]
+Get:76 http://localhost/debian/ unstable/main libpng12-dev amd64 1.2.47-2 [267 kB]
+Get:77 http://localhost/debian/ unstable/main libice-dev amd64 2:1.0.7-2 [143 kB]
+Get:78 http://localhost/debian/ unstable/main libsm-dev amd64 2:1.2.0-2 [101 kB]
+Get:79 http://localhost/debian/ unstable/main libpixman-1-dev amd64 0.24.4-1 [436 kB]
+Get:80 http://localhost/debian/ unstable/main libxcb-render0-dev amd64 1.8.1-1 [25.8 kB]
+Get:81 http://localhost/debian/ unstable/main libxcb-shm0-dev amd64 1.8.1-1 [11.5 kB]
+Get:82 http://localhost/debian/ unstable/main libglib2.0-data all 2.30.2-6 [2319 kB]
+Get:83 http://localhost/debian/ unstable/main libglib2.0-bin amd64 2.30.2-6 [640 kB]
+Get:84 http://localhost/debian/ unstable/main libglib2.0-dev amd64 2.30.2-6 [2383 kB]
+Get:85 http://localhost/debian/ unstable/main libcairo2-dev amd64 1.10.2-7 [1145 kB]
+Get:86 http://localhost/debian/ unstable/main libgdk-pixbuf2.0-dev amd64 2.24.1-1 [53.9 kB]
+Get:87 http://localhost/debian/ unstable/main librsvg2-common amd64 2.36.0-1 [161 kB]
+Get:88 http://localhost/debian/ unstable/main librsvg2-dev amd64 2.36.0-1 [284 kB]
+Get:89 http://localhost/debian/ unstable/main nickle amd64 2.74-1 [375 kB]
+debconf: delaying package configuration, since apt-utils is not installed
+Fetched 32.1 MB in 2s (15.5 MB/s)
+Selecting previously unselected package libpipeline1:amd64.
+(Reading database ... 10924 files and directories currently installed.)
+Unpacking libpipeline1:amd64 (from .../libpipeline1_1.2.1-1_amd64.deb) ...
+Selecting previously unselected package libpopt0:amd64.
+Unpacking libpopt0:amd64 (from .../libpopt0_1.16-3_amd64.deb) ...
+Selecting previously unselected package libmagic1:amd64.
+Unpacking libmagic1:amd64 (from .../libmagic1_5.11-1_amd64.deb) ...
+Selecting previously unselected package libpcre3:amd64.
+Unpacking libpcre3:amd64 (from .../libpcre3_1%3a8.30-4_amd64.deb) ...
+Selecting previously unselected package libexpat1:amd64.
+Unpacking libexpat1:amd64 (from .../libexpat1_2.1.0~beta3-2_amd64.deb) ...
+Selecting previously unselected package libfreetype6:amd64.
+Unpacking libfreetype6:amd64 (from .../libfreetype6_2.4.9-1_amd64.deb) ...
+Selecting previously unselected package ttf-dejavu-core.
+Unpacking ttf-dejavu-core (from .../ttf-dejavu-core_2.33-2_all.deb) ...
+Selecting previously unselected package fontconfig-config.
+Unpacking fontconfig-config (from .../fontconfig-config_2.8.0-3.1_all.deb) ...
+Selecting previously unselected package libfontconfig1:amd64.
+Unpacking libfontconfig1:amd64 (from .../libfontconfig1_2.8.0-3.1_amd64.deb) ...
+Selecting previously unselected package libpixman-1-0:amd64.
+Unpacking libpixman-1-0:amd64 (from .../libpixman-1-0_0.24.4-1_amd64.deb) ...
+Selecting previously unselected package libpng12-0:amd64.
+Unpacking libpng12-0:amd64 (from .../libpng12-0_1.2.47-2_amd64.deb) ...
+Selecting previously unselected package libxau6:amd64.
+Unpacking libxau6:amd64 (from .../libxau6_1%3a1.0.6-4_amd64.deb) ...
+Selecting previously unselected package libxdmcp6:amd64.
+Unpacking libxdmcp6:amd64 (from .../libxdmcp6_1%3a1.1.0-4_amd64.deb) ...
+Selecting previously unselected package libxcb1:amd64.
+Unpacking libxcb1:amd64 (from .../libxcb1_1.8.1-1_amd64.deb) ...
+Selecting previously unselected package libx11-data.
+Unpacking libx11-data (from .../libx11-data_2%3a1.4.4-4_all.deb) ...
+Selecting previously unselected package libx11-6:amd64.
+Unpacking libx11-6:amd64 (from .../libx11-6_2%3a1.4.4-4_amd64.deb) ...
+Selecting previously unselected package libxcb-render0:amd64.
+Unpacking libxcb-render0:amd64 (from .../libxcb-render0_1.8.1-1_amd64.deb) ...
+Selecting previously unselected package libxcb-shm0:amd64.
+Unpacking libxcb-shm0:amd64 (from .../libxcb-shm0_1.8.1-1_amd64.deb) ...
+Selecting previously unselected package libxrender1:amd64.
+Unpacking libxrender1:amd64 (from .../libxrender1_1%3a0.9.6-2_amd64.deb) ...
+Selecting previously unselected package libcairo2:amd64.
+Unpacking libcairo2:amd64 (from .../libcairo2_1.10.2-7_amd64.deb) ...
+Selecting previously unselected package libffi5:amd64.
+Unpacking libffi5:amd64 (from .../libffi5_3.0.10-3_amd64.deb) ...
+Selecting previously unselected package libglib2.0-0:amd64.
+Unpacking libglib2.0-0:amd64 (from .../libglib2.0-0_2.30.2-6_amd64.deb) ...
+Selecting previously unselected package libcairo-gobject2:amd64.
+Unpacking libcairo-gobject2:amd64 (from .../libcairo-gobject2_1.10.2-7_amd64.deb) ...
+Selecting previously unselected package libcairo-script-interpreter2:amd64.
+Unpacking libcairo-script-interpreter2:amd64 (from .../libcairo-script-interpreter2_1.10.2-7_amd64.deb) ...
+Selecting previously unselected package libxml2.
+Unpacking libxml2 (from .../libxml2_2.7.8.dfsg-7_amd64.deb) ...
+Selecting previously unselected package libcroco3:amd64.
+Unpacking libcroco3:amd64 (from .../libcroco3_0.6.5-1_amd64.deb) ...
+Selecting previously unselected package libdatrie1:amd64.
+Unpacking libdatrie1:amd64 (from .../libdatrie1_0.2.5-3_amd64.deb) ...
+Selecting previously unselected package libjpeg8:amd64.
+Unpacking libjpeg8:amd64 (from .../libjpeg8_8d-1_amd64.deb) ...
+Selecting previously unselected package libjasper1:amd64.
+Unpacking libjasper1:amd64 (from .../libjasper1_1.900.1-13_amd64.deb) ...
+Selecting previously unselected package libtiff4:amd64.
+Unpacking libtiff4:amd64 (from .../libtiff4_3.9.6-1_amd64.deb) ...
+Selecting previously unselected package libgdk-pixbuf2.0-common.
+Unpacking libgdk-pixbuf2.0-common (from .../libgdk-pixbuf2.0-common_2.24.1-1_all.deb) ...
+Selecting previously unselected package libgdk-pixbuf2.0-0:amd64.
+Unpacking libgdk-pixbuf2.0-0:amd64 (from .../libgdk-pixbuf2.0-0_2.24.1-1_amd64.deb) ...
+Selecting previously unselected package x11-common.
+Unpacking x11-common (from .../x11-common_1%3a7.6+12_all.deb) ...
+Selecting previously unselected package libice6:amd64.
+Unpacking libice6:amd64 (from .../libice6_2%3a1.0.7-2_amd64.deb) ...
+Selecting previously unselected package libthai-data.
+Unpacking libthai-data (from .../libthai-data_0.1.17-1_all.deb) ...
+Selecting previously unselected package libthai0:amd64.
+Unpacking libthai0:amd64 (from .../libthai0_0.1.17-1_amd64.deb) ...
+Selecting previously unselected package libxft2:amd64.
+Unpacking libxft2:amd64 (from .../libxft2_2.2.0-3_amd64.deb) ...
+Selecting previously unselected package fontconfig.
+Unpacking fontconfig (from .../fontconfig_2.8.0-3.1_amd64.deb) ...
+Selecting previously unselected package libpango1.0-0:amd64.
+Unpacking libpango1.0-0:amd64 (from .../libpango1.0-0_1.29.4-3+b1_amd64.deb) ...
+Selecting previously unselected package librsvg2-2:amd64.
+Unpacking librsvg2-2:amd64 (from .../librsvg2-2_2.36.0-1_amd64.deb) ...
+Selecting previously unselected package libsm6:amd64.
+Unpacking libsm6:amd64 (from .../libsm6_2%3a1.2.0-2_amd64.deb) ...
+Selecting previously unselected package libunistring0:amd64.
+Unpacking libunistring0:amd64 (from .../libunistring0_0.9.3-5_amd64.deb) ...
+Selecting previously unselected package bsdmainutils.
+Unpacking bsdmainutils (from .../bsdmainutils_9.0.1_amd64.deb) ...
+Selecting previously unselected package groff-base.
+Unpacking groff-base (from .../groff-base_1.21-6_amd64.deb) ...
+Selecting previously unselected package man-db.
+Unpacking man-db (from .../man-db_2.6.1-1_amd64.deb) ...
+Selecting previously unselected package file.
+Unpacking file (from .../archives/file_5.11-1_amd64.deb) ...
+Selecting previously unselected package gettext-base.
+Unpacking gettext-base (from .../gettext-base_0.18.1.1-5_amd64.deb) ...
+Selecting previously unselected package html2text.
+Unpacking html2text (from .../html2text_1.3.2a-15_amd64.deb) ...
+Selecting previously unselected package gettext.
+Unpacking gettext (from .../gettext_0.18.1.1-5_amd64.deb) ...
+Selecting previously unselected package intltool-debian.
+Unpacking intltool-debian (from .../intltool-debian_0.35.0+20060710.1_all.deb) ...
+Selecting previously unselected package po-debconf.
+Unpacking po-debconf (from .../po-debconf_1.0.16+nmu2_all.deb) ...
+Selecting previously unselected package debhelper.
+Unpacking debhelper (from .../debhelper_9.20120322_all.deb) ...
+Selecting previously unselected package libgirepository-1.0-1.
+Unpacking libgirepository-1.0-1 (from .../libgirepository-1.0-1_1.31.22-1_amd64.deb) ...
+Selecting previously unselected package gir1.2-glib-2.0.
+Unpacking gir1.2-glib-2.0 (from .../gir1.2-glib-2.0_1.31.22-1_amd64.deb) ...
+Selecting previously unselected package gir1.2-freedesktop.
+Unpacking gir1.2-freedesktop (from .../gir1.2-freedesktop_1.31.22-1_amd64.deb) ...
+Selecting previously unselected package gir1.2-gdkpixbuf-2.0.
+Unpacking gir1.2-gdkpixbuf-2.0 (from .../gir1.2-gdkpixbuf-2.0_2.24.1-1_amd64.deb) ...
+Selecting previously unselected package gir1.2-rsvg-2.0.
+Unpacking gir1.2-rsvg-2.0 (from .../gir1.2-rsvg-2.0_2.36.0-1_amd64.deb) ...
+Selecting previously unselected package libexpat1-dev.
+Unpacking libexpat1-dev (from .../libexpat1-dev_2.1.0~beta3-2_amd64.deb) ...
+Selecting previously unselected package zlib1g-dev:amd64.
+Unpacking zlib1g-dev:amd64 (from .../zlib1g-dev_1%3a1.2.6.dfsg-2_amd64.deb) ...
+Selecting previously unselected package libfreetype6-dev.
+Unpacking libfreetype6-dev (from .../libfreetype6-dev_2.4.9-1_amd64.deb) ...
+Selecting previously unselected package pkg-config.
+Unpacking pkg-config (from .../pkg-config_0.26-1_amd64.deb) ...
+Selecting previously unselected package libfontconfig1-dev.
+Unpacking libfontconfig1-dev (from .../libfontconfig1-dev_2.8.0-3.1_amd64.deb) ...
+Selecting previously unselected package xorg-sgml-doctools.
+Unpacking xorg-sgml-doctools (from .../xorg-sgml-doctools_1%3a1.10-1_all.deb) ...
+Selecting previously unselected package x11proto-core-dev.
+Unpacking x11proto-core-dev (from .../x11proto-core-dev_7.0.22-1_all.deb) ...
+Selecting previously unselected package libxau-dev:amd64.
+Unpacking libxau-dev:amd64 (from .../libxau-dev_1%3a1.0.6-4_amd64.deb) ...
+Selecting previously unselected package libxdmcp-dev:amd64.
+Unpacking libxdmcp-dev:amd64 (from .../libxdmcp-dev_1%3a1.1.0-4_amd64.deb) ...
+Selecting previously unselected package x11proto-input-dev.
+Unpacking x11proto-input-dev (from .../x11proto-input-dev_2.1-1_all.deb) ...
+Selecting previously unselected package x11proto-kb-dev.
+Unpacking x11proto-kb-dev (from .../x11proto-kb-dev_1.0.5-2_all.deb) ...
+Selecting previously unselected package xtrans-dev.
+Unpacking xtrans-dev (from .../xtrans-dev_1.2.6-2_all.deb) ...
+Selecting previously unselected package libpthread-stubs0:amd64.
+Unpacking libpthread-stubs0:amd64 (from .../libpthread-stubs0_0.3-3_amd64.deb) ...
+Selecting previously unselected package libpthread-stubs0-dev:amd64.
+Unpacking libpthread-stubs0-dev:amd64 (from .../libpthread-stubs0-dev_0.3-3_amd64.deb) ...
+Selecting previously unselected package libxcb1-dev:amd64.
+Unpacking libxcb1-dev:amd64 (from .../libxcb1-dev_1.8.1-1_amd64.deb) ...
+Selecting previously unselected package libx11-dev:amd64.
+Unpacking libx11-dev:amd64 (from .../libx11-dev_2%3a1.4.4-4_amd64.deb) ...
+Selecting previously unselected package x11proto-render-dev.
+Unpacking x11proto-render-dev (from .../x11proto-render-dev_2%3a0.11.1-2_all.deb) ...
+Selecting previously unselected package libxrender-dev.
+Unpacking libxrender-dev (from .../libxrender-dev_1%3a0.9.6-2_amd64.deb) ...
+Selecting previously unselected package libpng12-dev.
+Unpacking libpng12-dev (from .../libpng12-dev_1.2.47-2_amd64.deb) ...
+Selecting previously unselected package libice-dev.
+Unpacking libice-dev (from .../libice-dev_2%3a1.0.7-2_amd64.deb) ...
+Selecting previously unselected package libsm-dev.
+Unpacking libsm-dev (from .../libsm-dev_2%3a1.2.0-2_amd64.deb) ...
+Selecting previously unselected package libpixman-1-dev.
+Unpacking libpixman-1-dev (from .../libpixman-1-dev_0.24.4-1_amd64.deb) ...
+Selecting previously unselected package libxcb-render0-dev:amd64.
+Unpacking libxcb-render0-dev:amd64 (from .../libxcb-render0-dev_1.8.1-1_amd64.deb) ...
+Selecting previously unselected package libxcb-shm0-dev:amd64.
+Unpacking libxcb-shm0-dev:amd64 (from .../libxcb-shm0-dev_1.8.1-1_amd64.deb) ...
+Selecting previously unselected package libglib2.0-data.
+Unpacking libglib2.0-data (from .../libglib2.0-data_2.30.2-6_all.deb) ...
+Selecting previously unselected package libglib2.0-bin.
+Unpacking libglib2.0-bin (from .../libglib2.0-bin_2.30.2-6_amd64.deb) ...
+Selecting previously unselected package libglib2.0-dev.
+Unpacking libglib2.0-dev (from .../libglib2.0-dev_2.30.2-6_amd64.deb) ...
+Selecting previously unselected package libcairo2-dev.
+Unpacking libcairo2-dev (from .../libcairo2-dev_1.10.2-7_amd64.deb) ...
+Selecting previously unselected package libgdk-pixbuf2.0-dev.
+Unpacking libgdk-pixbuf2.0-dev (from .../libgdk-pixbuf2.0-dev_2.24.1-1_amd64.deb) ...
+Selecting previously unselected package librsvg2-common:amd64.
+Unpacking librsvg2-common:amd64 (from .../librsvg2-common_2.36.0-1_amd64.deb) ...
+Selecting previously unselected package librsvg2-dev.
+Unpacking librsvg2-dev (from .../librsvg2-dev_2.36.0-1_amd64.deb) ...
+Selecting previously unselected package nickle.
+Unpacking nickle (from .../nickle_2.74-1_amd64.deb) ...
+Selecting previously unselected package sbuild-build-depends-cairo-5c-dummy.
+Unpacking sbuild-build-depends-cairo-5c-dummy (from .../sbuild-build-depends-cairo-5c-dummy.deb) ...
+Setting up libpipeline1:amd64 (1.2.1-1) ...
+Setting up libpopt0:amd64 (1.16-3) ...
+Setting up libmagic1:amd64 (5.11-1) ...
+Setting up libpcre3:amd64 (1:8.30-4) ...
+Setting up libexpat1:amd64 (2.1.0~beta3-2) ...
+Setting up libfreetype6:amd64 (2.4.9-1) ...
+Setting up ttf-dejavu-core (2.33-2) ...
+Setting up fontconfig-config (2.8.0-3.1) ...
+Setting up libfontconfig1:amd64 (2.8.0-3.1) ...
+Setting up libpixman-1-0:amd64 (0.24.4-1) ...
+Setting up libpng12-0:amd64 (1.2.47-2) ...
+Setting up libxau6:amd64 (1:1.0.6-4) ...
+Setting up libxdmcp6:amd64 (1:1.1.0-4) ...
+Setting up libxcb1:amd64 (1.8.1-1) ...
+Setting up libx11-data (2:1.4.4-4) ...
+Setting up libx11-6:amd64 (2:1.4.4-4) ...
+Setting up libxcb-render0:amd64 (1.8.1-1) ...
+Setting up libxcb-shm0:amd64 (1.8.1-1) ...
+Setting up libxrender1:amd64 (1:0.9.6-2) ...
+Setting up libcairo2:amd64 (1.10.2-7) ...
+Setting up libffi5:amd64 (3.0.10-3) ...
+Setting up libglib2.0-0:amd64 (2.30.2-6) ...
+No schema files found: doing nothing.
+Setting up libcairo-gobject2:amd64 (1.10.2-7) ...
+Setting up libcairo-script-interpreter2:amd64 (1.10.2-7) ...
+Setting up libxml2 (2.7.8.dfsg-7) ...
+Setting up libcroco3:amd64 (0.6.5-1) ...
+Setting up libdatrie1:amd64 (0.2.5-3) ...
+Setting up libjpeg8:amd64 (8d-1) ...
+Setting up libjasper1:amd64 (1.900.1-13) ...
+Setting up libtiff4:amd64 (3.9.6-1) ...
+Setting up libgdk-pixbuf2.0-common (2.24.1-1) ...
+Setting up libgdk-pixbuf2.0-0:amd64 (2.24.1-1) ...
+Setting up x11-common (1:7.6+12) ...
+All runlevel operations denied by policy
+invoke-rc.d: policy-rc.d denied execution of start.
+Setting up libice6:amd64 (2:1.0.7-2) ...
+Setting up libthai-data (0.1.17-1) ...
+Setting up libthai0:amd64 (0.1.17-1) ...
+Setting up libxft2:amd64 (2.2.0-3) ...
+Setting up fontconfig (2.8.0-3.1) ...
+Cleaning up old fontconfig caches... done.
+Regenerating fonts cache... done.
+Setting up libpango1.0-0:amd64 (1.29.4-3+b1) ...
+Setting up librsvg2-2:amd64 (2.36.0-1) ...
+Setting up libsm6:amd64 (2:1.2.0-2) ...
+Setting up libunistring0:amd64 (0.9.3-5) ...
+Setting up bsdmainutils (9.0.1) ...
+update-alternatives: using /usr/bin/bsd-write to provide /usr/bin/write (write) in auto mode.
+update-alternatives: using /usr/bin/bsd-from to provide /usr/bin/from (from) in auto mode.
+Setting up groff-base (1.21-6) ...
+Setting up man-db (2.6.1-1) ...
+Building database of manual pages ...
+Setting up file (5.11-1) ...
+Setting up gettext-base (0.18.1.1-5) ...
+Setting up html2text (1.3.2a-15) ...
+Setting up gettext (0.18.1.1-5) ...
+Setting up intltool-debian (0.35.0+20060710.1) ...
+Setting up po-debconf (1.0.16+nmu2) ...
+Setting up debhelper (9.20120322) ...
+Setting up libgirepository-1.0-1 (1.31.22-1) ...
+Setting up gir1.2-glib-2.0 (1.31.22-1) ...
+Setting up gir1.2-freedesktop (1.31.22-1) ...
+Setting up gir1.2-gdkpixbuf-2.0 (2.24.1-1) ...
+Setting up gir1.2-rsvg-2.0 (2.36.0-1) ...
+Setting up libexpat1-dev (2.1.0~beta3-2) ...
+Setting up zlib1g-dev:amd64 (1:1.2.6.dfsg-2) ...
+Setting up libfreetype6-dev (2.4.9-1) ...
+Setting up pkg-config (0.26-1) ...
+Setting up libfontconfig1-dev (2.8.0-3.1) ...
+Setting up xorg-sgml-doctools (1:1.10-1) ...
+Setting up x11proto-core-dev (7.0.22-1) ...
+Setting up libxau-dev:amd64 (1:1.0.6-4) ...
+Setting up libxdmcp-dev:amd64 (1:1.1.0-4) ...
+Setting up x11proto-input-dev (2.1-1) ...
+Setting up x11proto-kb-dev (1.0.5-2) ...
+Setting up xtrans-dev (1.2.6-2) ...
+Setting up libpthread-stubs0:amd64 (0.3-3) ...
+Setting up libpthread-stubs0-dev:amd64 (0.3-3) ...
+Setting up libxcb1-dev:amd64 (1.8.1-1) ...
+Setting up libx11-dev:amd64 (2:1.4.4-4) ...
+Setting up x11proto-render-dev (2:0.11.1-2) ...
+Setting up libxrender-dev (1:0.9.6-2) ...
+Setting up libpng12-dev (1.2.47-2) ...
+Setting up libice-dev (2:1.0.7-2) ...
+Setting up libsm-dev (2:1.2.0-2) ...
+Setting up libpixman-1-dev (0.24.4-1) ...
+Setting up libxcb-render0-dev:amd64 (1.8.1-1) ...
+Setting up libxcb-shm0-dev:amd64 (1.8.1-1) ...
+Setting up libglib2.0-data (2.30.2-6) ...
+Setting up libglib2.0-bin (2.30.2-6) ...
+Setting up libglib2.0-dev (2.30.2-6) ...
+Setting up libcairo2-dev (1.10.2-7) ...
+Setting up libgdk-pixbuf2.0-dev (2.24.1-1) ...
+Setting up librsvg2-common:amd64 (2.36.0-1) ...
+Setting up librsvg2-dev (2.36.0-1) ...
+Setting up nickle (2.74-1) ...
+Setting up sbuild-build-depends-cairo-5c-dummy (0.invalid.0) ...
+Processing triggers for libgdk-pixbuf2.0-0:amd64 ...
+
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Build environment                                                            │
+└──────────────────────────────────────────────────────────────────────────────┘
+
+Kernel: Linux 2.6.32-5-xen-amd64 amd64 (x86_64)
+Toolchain package versions: binutils_2.22-6 dpkg-dev_1.16.2 g++-4.6_4.6.3-1 gcc-4.6_4.6.3-1 libc6-dev_2.13-27 libstdc++6_4.7.0-1 libstdc++6-4.6-dev_4.6.3-1 linux-libc-dev_3.2.13-1
+Package versions: apt_0.8.15.10 base-files_6.7 base-passwd_3.5.24 bash_4.2-1 binutils_2.22-6 bsdmainutils_9.0.1 bsdutils_1:2.20.1-4 build-essential_11.5 bzip2_1.0.6-1 coreutils_8.13-3.1 cpp_4:4.6.3-3 cpp-4.6_4.6.3-1 dash_0.5.7-3 debconf_1.5.42 debconf-i18n_1.5.42 debfoster_2.7-1.1 debhelper_9.20120322 debian-archive-keyring_2010.08.28 debianutils_4.3 diffutils_1:3.2-2 dpkg_1.16.2 dpkg-dev_1.16.2 e2fslibs_1.42.2-1 e2fsprogs_1.42.2-1 fakeroot_1.18.2-1 file_5.11-1 findutils_4.4.2-4 fontconfig_2.8.0-3.1 fontconfig-config_2.8.0-3.1 g++_4:4.6.3-3 g++-4.6_4.6.3-1 gcc_4:4.6.3-3 gcc-4.4-base_4.4.7-1 gcc-4.5-base_4.5.3-12 gcc-4.6_4.6.3-1 gcc-4.6-base_4.6.3-1 gcc-4.7-base_4.7.0-1 gettext_0.18.1.1-5 gettext-base_0.18.1.1-5 gir1.2-freedesktop_1.31.22-1 gir1.2-gdkpixbuf-2.0_2.24.1-1 gir1.2-glib-2.0_1.31.22-1 gir1.2-rsvg-2.0_2.36.0-1 gnupg_1.4.12-4 gpgv_1.4.12-4 grep_2.10-1 groff-base_1.21-6 gzip_1.4-5 hostname_3.11 html2text_1.3.2a-15 initscripts_2.88dsf-22.1 insserv_1.14.0-2.2 intltool-debian_0.35.0+20060710.1 libacl1_2.2.51-5 libattr1_1:2.4.46-5 libblkid1_2.20.1-4 libbz2-1.0_1.0.6-1 libc-bin_2.13-27 libc-dev-bin_2.13-27 libc6_2.13-27 libc6-dev_2.13-27 libcairo-gobject2_1.10.2-7 libcairo-script-interpreter2_1.10.2-7 libcairo2_1.10.2-7 libcairo2-dev_1.10.2-7 libclass-isa-perl_0.36-3 libcomerr2_1.42.2-1 libcroco3_0.6.5-1 libdatrie1_0.2.5-3 libdb5.1_5.1.29-1 libdpkg-perl_1.16.2 libexpat1_2.1.0~beta3-2 libexpat1-dev_2.1.0~beta3-2 libffi5_3.0.10-3 libfile-fcntllock-perl_0.14-1+b1 libfontconfig1_2.8.0-3.1 libfontconfig1-dev_2.8.0-3.1 libfreetype6_2.4.9-1 libfreetype6-dev_2.4.9-1 libgc1c2_1:7.1-8 libgcc1_1:4.7.0-1 libgdbm3_1.8.3-10 libgdk-pixbuf2.0-0_2.24.1-1 libgdk-pixbuf2.0-common_2.24.1-1 libgdk-pixbuf2.0-dev_2.24.1-1 libgirepository-1.0-1_1.31.22-1 libglib2.0-0_2.30.2-6 libglib2.0-bin_2.30.2-6 libglib2.0-data_2.30.2-6 libglib2.0-dev_2.30.2-6 libgmp10_2:5.0.4+dfsg-1 libgomp1_4.7.0-1 libice-dev_2:1.0.7-2 libice6_2:1.0.7-2 libjasper1_1.900.1-13 libjpeg8_8d-1 liblocale-gettext-perl_1.05-7+b1 liblzma5_5.1.1alpha+20110809-3 libmagic1_5.11-1 libmount1_2.20.1-4 libmpc2_0.9-4 libmpfr4_3.1.0-4 libncurses5_5.9-5 libpam-modules_1.1.3-7 libpam-modules-bin_1.1.3-7 libpam-runtime_1.1.3-7 libpam0g_1.1.3-7 libpango1.0-0_1.29.4-3+b1 libpcre3_1:8.30-4 libpipeline1_1.2.1-1 libpixman-1-0_0.24.4-1 libpixman-1-dev_0.24.4-1 libpng12-0_1.2.47-2 libpng12-dev_1.2.47-2 libpopt0_1.16-3 libpthread-stubs0_0.3-3 libpthread-stubs0-dev_0.3-3 libquadmath0_4.7.0-1 libreadline6_6.2-8 librsvg2-2_2.36.0-1 librsvg2-common_2.36.0-1 librsvg2-dev_2.36.0-1 libselinux1_2.1.9-4 libsemanage-common_2.1.6-4 libsemanage1_2.1.6-4 libsepol1_2.1.4-2 libslang2_2.2.4-7 libsm-dev_2:1.2.0-2 libsm6_2:1.2.0-2 libss2_1.42.2-1 libstdc++6_4.7.0-1 libstdc++6-4.6-dev_4.6.3-1 libswitch-perl_2.16-2 libtext-charwidth-perl_0.04-7+b1 libtext-iconv-perl_1.7-5 libtext-wrapi18n-perl_0.06-7 libthai-data_0.1.17-1 libthai0_0.1.17-1 libtiff4_3.9.6-1 libtimedate-perl_1.2000-1 libtinfo5_5.9-5 libunistring0_0.9.3-5 libusb-0.1-4_2:0.1.12-20 libustr-1.0-1_1.0.4-2 libuuid1_2.20.1-4 libx11-6_2:1.4.4-4 libx11-data_2:1.4.4-4 libx11-dev_2:1.4.4-4 libxau-dev_1:1.0.6-4 libxau6_1:1.0.6-4 libxcb-render0_1.8.1-1 libxcb-render0-dev_1.8.1-1 libxcb-shm0_1.8.1-1 libxcb-shm0-dev_1.8.1-1 libxcb1_1.8.1-1 libxcb1-dev_1.8.1-1 libxdmcp-dev_1:1.1.0-4 libxdmcp6_1:1.1.0-4 libxft2_2.2.0-3 libxml2_2.7.8.dfsg-7 libxrender-dev_1:0.9.6-2 libxrender1_1:0.9.6-2 linux-libc-dev_3.2.13-1 login_1:4.1.5-1 lsb-base_4.1+Debian0 make_3.81-8.1 man-db_2.6.1-1 mawk_1.3.3-17 mount_2.20.1-4 multiarch-support_2.13-27 ncurses-base_5.9-5 ncurses-bin_5.9-5 nickle_2.74-1 passwd_1:4.1.5-1 patch_2.6.1-3 perl_5.14.2-9 perl-base_5.14.2-9 perl-modules_5.14.2-9 pkg-config_0.26-1 po-debconf_1.0.16+nmu2 readline-common_6.2-8 sbuild-build-depends-cairo-5c-dummy_0.invalid.0 sbuild-build-depends-core-dummy_0.invalid.0 sed_4.2.1-9 sensible-utils_0.0.6 sysv-rc_2.88dsf-22.1 sysvinit_2.88dsf-22.1 sysvinit-utils_2.88dsf-22.1 tar_1.26-4 ttf-dejavu-core_2.33-2 tzdata_2012b-1 ucf_3.0025+nmu2 util-linux_2.20.1-4 x11-common_1:7.6+12 x11proto-core-dev_7.0.22-1 x11proto-input-dev_2.1-1 x11proto-kb-dev_1.0.5-2 x11proto-render-dev_2:0.11.1-2 xorg-sgml-doctools_1:1.10-1 xtrans-dev_1.2.6-2 xz-utils_5.1.1alpha+20110809-3 zlib1g_1:1.2.6.dfsg-2 zlib1g-dev_1:1.2.6.dfsg-2
+
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Build                                                                        │
+└──────────────────────────────────────────────────────────────────────────────┘
+
+
+Unpack source
+─────────────
+
+gpgv: keyblock resource `/sbuild-nonexistent/.gnupg/trustedkeys.gpg': file open error
+gpgv: Signature made Sun Mar  4 06:13:50 2012 UTC using DSA key ID 096C4DD3
+gpgv: Can't check signature: public key not found
+dpkg-source: warning: failed to verify signature on ./cairo-5c_1.6.dsc
+dpkg-source: info: extracting cairo-5c in cairo-5c-1.6
+dpkg-source: info: unpacking cairo-5c_1.6.tar.gz
+
+Check disc space
+────────────────
+
+Sufficient free space for build
+
+User Environment
+────────────────
+
+HOME=/sbuild-nonexistent
+LOGNAME=user
+PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
+SCHROOT_CHROOT_NAME=unstable-amd64-sbuild
+SCHROOT_COMMAND=env
+SCHROOT_GID=1000
+SCHROOT_GROUP=user
+SCHROOT_SESSION_ID=unstable-amd64-sbuild-5f01dd48-fc05-483c-9bc5-3d5041b7799b
+SCHROOT_UID=1000
+SCHROOT_USER=user
+SHELL=/bin/sh
+USER=user
+
+dpkg-buildpackage
+─────────────────
+
+dpkg-buildpackage: source package cairo-5c
+dpkg-buildpackage: source version 1.6
+dpkg-buildpackage: source changed by Keith Packard <keithp at keithp.com>
+ dpkg-source --before-build cairo-5c-1.6
+dpkg-buildpackage: host architecture amd64
+ fakeroot debian/rules clean
+dh_testdir
+dh_testroot
+rm -f build-stamp configure-stamp
+if test -f Makefile; then /usr/bin/make distclean; else true; fi
+dh_clean
+	rm -f debian/cairo-5c.substvars
+	rm -f debian/cairo-5c.*.debhelper
+	rm -rf debian/cairo-5c/
+	rm -f debian/libcairo5c-0.substvars
+	rm -f debian/libcairo5c-0.*.debhelper
+	rm -rf debian/libcairo5c-0/
+	rm -f debian/*.debhelper.log
+	rm -f debian/files
+	find .  \( \( -type f -a \
+	        \( -name '#*#' -o -name '.*~' -o -name '*~' -o -name DEADJOE \
+		 -o -name '*.orig' -o -name '*.rej' -o -name '*.bak' \
+		 -o -name '.*.orig' -o -name .*.rej -o -name '.SUMS' \
+		 -o -name TAGS -o \( -path '*/.deps/*' -a -name '*.P' \) \
+		\) -exec rm -f {} \; \) -o \
+		\( -type d -a -name autom4te.cache -prune -exec rm -rf {} \; \) \)
+	rm -f *-stamp
+ debian/rules build-arch
+dh_testdir
+/usr/bin/make
+make[1]: Entering directory `/«PKGBUILDDIR»'
+make[1]: *** No targets specified and no makefile found.  Stop.
+make[1]: Leaving directory `/«PKGBUILDDIR»'
+make: *** [build-stamp] Error 2
+dpkg-buildpackage: error: debian/rules build-arch gave error exit status 2
+────────────────────────────────────────────────────────────────────────────────
+Build finished at 20120329-2357
+
+Finished
+────────
+
+E: Build failure (dpkg-buildpackage died)
+
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Cleanup                                                                      │
+└──────────────────────────────────────────────────────────────────────────────┘
+
+Purging /«BUILDDIR»
+Not cleaning session: cloned chroot in use
+
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Summary                                                                      │
+└──────────────────────────────────────────────────────────────────────────────┘
+
+Architecture: amd64
+Build-Space: 1980
+Build-Time: 3
+Distribution: unstable
+Fail-Stage: build
+Install-Time: 32
+Job: cairo-5c_1.6
+Package: cairo-5c
+Package-Time: 72
+Source-Version: 1.6
+Space: 1980
+Status: attempted
+Version: 1.6
+────────────────────────────────────────────────────────────────────────────────
+Finished at 20120329-2357
+Build needed 00:01:12, 1980k disc space
+DC-Build-Status: Failed 74.354425s

Added: collab-qa-tools/test/source/clxclient_3.6.1-4_unstable-gcc47.log
===================================================================
--- collab-qa-tools/test/source/clxclient_3.6.1-4_unstable-gcc47.log	                        (rev 0)
+++ collab-qa-tools/test/source/clxclient_3.6.1-4_unstable-gcc47.log	2012-05-07 09:50:33 UTC (rev 2275)
@@ -0,0 +1,626 @@
+DC-Build-Header: clxclient 3.6.1-4 / Fri Mar 30 01:10:19 +0000 2012
+DC-Task: logfile:/tmp/clxclient_3.6.1-4_unstable-gcc47.log version:3.6.1-4 chroot:unstable-gcc47 modes:binary-only source:clxclient architecture:any esttime:75
+DC-Sbuild-call: su user -c 'sbuild -n --apt-update -d unstable-gcc47 -v clxclient_3.6.1-4'
+sbuild (Debian sbuild) 0.62.5 (13 Jul 2011) on ip-10-251-43-162.eu-west-1.compute.internal
+
+╔══════════════════════════════════════════════════════════════════════════════╗
+║ clxclient 3.6.1-4 (amd64)                                  30 Mar 2012 01:10 ║
+╚══════════════════════════════════════════════════════════════════════════════╝
+
+Package: clxclient
+Version: 3.6.1-4
+Source Version: 3.6.1-4
+Distribution: unstable-gcc47
+Architecture: amd64
+
+I: NOTICE: Log filtering will replace 'build/clxclient-4T4XJh/clxclient-3.6.1' with '«PKGBUILDDIR»'
+I: NOTICE: Log filtering will replace 'build/clxclient-4T4XJh' with '«BUILDDIR»'
+I: NOTICE: Log filtering will replace 'var/lib/schroot/mount/unstable-gcc47-amd64-sbuild-d07dfa85-8d0c-4267-9f80-cc2971e32810' with '«CHROOT»'
+
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Update chroot                                                                │
+└──────────────────────────────────────────────────────────────────────────────┘
+
+Ign http://localhost unstable InRelease
+Ign http://localhost ./ InRelease
+Get:1 http://localhost unstable Release.gpg [836 B]
+Ign http://localhost ./ Release.gpg
+Get:2 http://localhost unstable Release [206 kB]
+Ign http://localhost ./ Release
+Get:3 http://localhost unstable/main Sources/DiffIndex [7876 B]
+Get:4 http://localhost unstable/main amd64 Packages/DiffIndex [7876 B]
+Get:5 http://localhost unstable/main TranslationIndex [2223 B]
+Ign http://localhost ./ Packages/DiffIndex
+Get:6 http://localhost unstable/main 2012-03-29-0812.49.pdiff [4428 B]
+Get:7 http://localhost unstable/main amd64 2012-03-29-0812.49.pdiff [3922 B]
+Get:8 http://localhost unstable/main 2012-03-29-0812.49.pdiff [4428 B]
+Get:9 http://localhost unstable/main Translation-en [3924 kB]
+Hit http://localhost ./ Packages
+Ign http://localhost ./ Translation-en
+Get:10 http://localhost unstable/main amd64 2012-03-29-0812.49.pdiff [3922 B]
+Get:11 http://localhost unstable/main 2012-03-29-1410.05.pdiff [6476 B]
+Get:12 http://localhost unstable/main 2012-03-29-1410.05.pdiff [6476 B]
+Get:13 http://localhost unstable/main amd64 2012-03-29-1410.05.pdiff [10.1 kB]
+Get:14 http://localhost unstable/main amd64 2012-03-29-1410.05.pdiff [10.1 kB]
+Fetched 4173 kB in 16s (261 kB/s)
+Reading package lists...
+Reading package lists...
+Building dependency tree...
+Reading state information...
+0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
+
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Fetch source files                                                           │
+└──────────────────────────────────────────────────────────────────────────────┘
+
+
+Check APT
+─────────
+
+Checking available source versions...
+
+Download source files with APT
+──────────────────────────────
+
+Reading package lists...
+Building dependency tree...
+Reading state information...
+NOTICE: 'clxclient' packaging is maintained in the 'Git' version control system at:
+git://git.debian.org/git/pkg-multimedia/clxclient.git
+Need to get 42.4 kB of source archives.
+Get:1 http://localhost/debian/ unstable/main clxclient 3.6.1-4 (dsc) [2174 B]
+Get:2 http://localhost/debian/ unstable/main clxclient 3.6.1-4 (tar) [33.5 kB]
+Get:3 http://localhost/debian/ unstable/main clxclient 3.6.1-4 (diff) [6763 B]
+Fetched 42.4 kB in 0s (274 kB/s)
+Download complete and in download only mode
+
+Check arch
+──────────
+
+Merged Build-Depends: build-essential, fakeroot
+Filtered Build-Depends: build-essential, fakeroot
+dpkg-deb: building package `sbuild-build-depends-core-dummy' in `/«BUILDDIR»/resolver-2SyWNz/apt_archive/sbuild-build-depends-core-dummy.deb'.
+OK
+Reading package lists...
+
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Install core build dependencies (apt-based resolver)                         │
+└──────────────────────────────────────────────────────────────────────────────┘
+
+Installing build dependencies
+Reading package lists...
+Building dependency tree...
+Reading state information...
+The following NEW packages will be installed:
+  sbuild-build-depends-core-dummy
+0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
+Need to get 0 B/710 B of archives.
+After this operation, 0 B of additional disk space will be used.
+WARNING: The following packages cannot be authenticated!
+  sbuild-build-depends-core-dummy
+debconf: delaying package configuration, since apt-utils is not installed
+Authentication warning overridden.
+Selecting previously unselected package sbuild-build-depends-core-dummy.
+(Reading database ... 11028 files and directories currently installed.)
+Unpacking sbuild-build-depends-core-dummy (from .../sbuild-build-depends-core-dummy.deb) ...
+Setting up sbuild-build-depends-core-dummy (0.invalid.0) ...
+Merged Build-Depends: base-files, base-passwd, bash, coreutils, dash, debianutils, diffutils, dpkg, e2fsprogs, findutils, grep, gzip, hostname, ncurses-base, ncurses-bin, perl-base, sed, login, sysvinit-utils, sysvinit, tar, bsdutils, mount, util-linux, libc6-dev | libc-dev, gcc (>= 4:4.4.3), g++ (>= 4:4.4.3), make, dpkg-dev (>= 1.13.5), debhelper (>= 8.1.3~), libasound2-dev, libx11-dev, libclthreads-dev, libxft-dev
+Filtered Build-Depends: base-files, base-passwd, bash, coreutils, dash, debianutils, diffutils, dpkg, e2fsprogs, findutils, grep, gzip, hostname, ncurses-base, ncurses-bin, perl-base, sed, login, sysvinit-utils, sysvinit, tar, bsdutils, mount, util-linux, libc6-dev, gcc (>= 4:4.4.3), g++ (>= 4:4.4.3), make, dpkg-dev (>= 1.13.5), debhelper (>= 8.1.3~), libasound2-dev, libx11-dev, libclthreads-dev, libxft-dev
+dpkg-deb: building package `sbuild-build-depends-clxclient-dummy' in `/«BUILDDIR»/resolver-HpnOOZ/apt_archive/sbuild-build-depends-clxclient-dummy.deb'.
+OK
+Reading package lists...
+
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Install clxclient build dependencies (apt-based resolver)                    │
+└──────────────────────────────────────────────────────────────────────────────┘
+
+Installing build dependencies
+Reading package lists...
+Building dependency tree...
+Reading state information...
+The following extra packages will be installed:
+  bsdmainutils debhelper file fontconfig-config gettext gettext-base
+  groff-base html2text intltool-debian libasound2 libasound2-dev
+  libclthreads-dev libclthreads2 libcroco3 libexpat1 libexpat1-dev libffi5
+  libfontconfig1 libfontconfig1-dev libfreetype6 libfreetype6-dev libglib2.0-0
+  libmagic1 libpcre3 libpipeline1 libpopt0 libpthread-stubs0
+  libpthread-stubs0-dev libunistring0 libx11-6 libx11-data libx11-dev
+  libxau-dev libxau6 libxcb1 libxcb1-dev libxdmcp-dev libxdmcp6 libxft-dev
+  libxft2 libxml2 libxrender-dev libxrender1 man-db pkg-config po-debconf
+  ttf-dejavu-core x11proto-core-dev x11proto-input-dev x11proto-kb-dev
+  x11proto-render-dev xorg-sgml-doctools xtrans-dev zlib1g-dev
+Suggested packages:
+  wamerican wordlist whois vacation dh-make gettext-doc groff
+  libasound2-plugins libasound2-doc libxcb-doc less www-browser
+  libmail-box-perl
+Recommended packages:
+  curl wget lynx-cur autopoint libglib2.0-data shared-mime-info libx11-doc
+  xml-core libmail-sendmail-perl
+The following NEW packages will be installed:
+  bsdmainutils debhelper file fontconfig-config gettext gettext-base
+  groff-base html2text intltool-debian libasound2 libasound2-dev
+  libclthreads-dev libclthreads2 libcroco3 libexpat1 libexpat1-dev libffi5
+  libfontconfig1 libfontconfig1-dev libfreetype6 libfreetype6-dev libglib2.0-0
+  libmagic1 libpcre3 libpipeline1 libpopt0 libpthread-stubs0
+  libpthread-stubs0-dev libunistring0 libx11-6 libx11-data libx11-dev
+  libxau-dev libxau6 libxcb1 libxcb1-dev libxdmcp-dev libxdmcp6 libxft-dev
+  libxft2 libxml2 libxrender-dev libxrender1 man-db pkg-config po-debconf
+  sbuild-build-depends-clxclient-dummy ttf-dejavu-core x11proto-core-dev
+  x11proto-input-dev x11proto-kb-dev x11proto-render-dev xorg-sgml-doctools
+  xtrans-dev zlib1g-dev
+0 upgraded, 55 newly installed, 0 to remove and 0 not upgraded.
+Need to get 18.2 MB/18.2 MB of archives.
+After this operation, 50.1 MB of additional disk space will be used.
+WARNING: The following packages cannot be authenticated!
+  libpipeline1 libpopt0 libmagic1 libpcre3 libasound2 libffi5 libglib2.0-0
+  libxml2 libcroco3 libexpat1 libfreetype6 ttf-dejavu-core fontconfig-config
+  libfontconfig1 libunistring0 libxau6 libxdmcp6 libxcb1 libx11-data libx11-6
+  libxrender1 libxft2 libclthreads2 bsdmainutils groff-base man-db file
+  gettext-base html2text gettext intltool-debian po-debconf debhelper
+  libasound2-dev libexpat1-dev zlib1g-dev libfreetype6-dev pkg-config
+  libfontconfig1-dev libpthread-stubs0 libpthread-stubs0-dev
+  xorg-sgml-doctools x11proto-core-dev libxau-dev libxdmcp-dev
+  x11proto-input-dev x11proto-kb-dev xtrans-dev libxcb1-dev libx11-dev
+  x11proto-render-dev libxrender-dev libxft-dev libclthreads-dev
+  sbuild-build-depends-clxclient-dummy
+Authentication warning overridden.
+Get:1 http://localhost/debian/ unstable/main libpipeline1 amd64 1.2.1-1 [39.2 kB]
+Get:2 http://localhost/debian/ unstable/main libpopt0 amd64 1.16-3 [55.2 kB]
+Get:3 http://localhost/debian/ unstable/main libmagic1 amd64 5.11-1 [250 kB]
+Get:4 http://localhost/debian/ unstable/main libpcre3 amd64 1:8.30-4 [242 kB]
+Get:5 http://localhost/debian/ unstable/main libasound2 amd64 1.0.25-2 [458 kB]
+Get:6 http://localhost/debian/ unstable/main libffi5 amd64 3.0.10-3 [24.8 kB]
+Get:7 http://localhost/debian/ unstable/main libglib2.0-0 amd64 2.30.2-6 [1846 kB]
+Get:8 http://localhost/debian/ unstable/main libxml2 amd64 2.7.8.dfsg-7 [895 kB]
+Get:9 http://localhost/debian/ unstable/main libcroco3 amd64 0.6.5-1 [151 kB]
+Get:10 http://localhost/debian/ unstable/main libexpat1 amd64 2.1.0~beta3-2 [141 kB]
+Get:11 http://localhost/debian/ unstable/main libfreetype6 amd64 2.4.9-1 [450 kB]
+Get:12 http://localhost/debian/ unstable/main ttf-dejavu-core all 2.33-2 [1552 kB]
+Get:13 http://localhost/debian/ unstable/main fontconfig-config all 2.8.0-3.1 [219 kB]
+Get:14 http://localhost/debian/ unstable/main libfontconfig1 amd64 2.8.0-3.1 [283 kB]
+Get:15 http://localhost/debian/ unstable/main libunistring0 amd64 0.9.3-5 [434 kB]
+Get:16 http://localhost/debian/ unstable/main libxau6 amd64 1:1.0.6-4 [17.1 kB]
+Get:17 http://localhost/debian/ unstable/main libxdmcp6 amd64 1:1.1.0-4 [22.9 kB]
+Get:18 http://localhost/debian/ unstable/main libxcb1 amd64 1.8.1-1 [50.0 kB]
+Get:19 http://localhost/debian/ unstable/main libx11-data all 2:1.4.4-4 [187 kB]
+Get:20 http://localhost/debian/ unstable/main libx11-6 amd64 2:1.4.4-4 [889 kB]
+Get:21 http://localhost/debian/ unstable/main libxrender1 amd64 1:0.9.6-2 [31.5 kB]
+Get:22 http://localhost/debian/ unstable/main libxft2 amd64 2.2.0-3 [58.1 kB]
+Get:23 http://localhost/debian/ unstable/main libclthreads2 amd64 2.4.0-4 [14.3 kB]
+Get:24 http://localhost/debian/ unstable/main bsdmainutils amd64 9.0.1 [210 kB]
+Get:25 http://localhost/debian/ unstable/main groff-base amd64 1.21-6 [1150 kB]
+Get:26 http://localhost/debian/ unstable/main man-db amd64 2.6.1-1 [1057 kB]
+Get:27 http://localhost/debian/ unstable/main file amd64 5.11-1 [53.2 kB]
+Get:28 http://localhost/debian/ unstable/main gettext-base amd64 0.18.1.1-5 [154 kB]
+Get:29 http://localhost/debian/ unstable/main html2text amd64 1.3.2a-15 [103 kB]
+Get:30 http://localhost/debian/ unstable/main gettext amd64 0.18.1.1-5 [2080 kB]
+Get:31 http://localhost/debian/ unstable/main intltool-debian all 0.35.0+20060710.1 [30.8 kB]
+Get:32 http://localhost/debian/ unstable/main po-debconf all 1.0.16+nmu2 [224 kB]
+Get:33 http://localhost/debian/ unstable/main debhelper all 9.20120322 [694 kB]
+Get:34 http://localhost/debian/ unstable/main libasound2-dev amd64 1.0.25-2 [69.4 kB]
+Get:35 http://localhost/debian/ unstable/main libexpat1-dev amd64 2.1.0~beta3-2 [229 kB]
+Get:36 http://localhost/debian/ unstable/main zlib1g-dev amd64 1:1.2.6.dfsg-2 [213 kB]
+Get:37 http://localhost/debian/ unstable/main libfreetype6-dev amd64 2.4.9-1 [803 kB]
+Get:38 http://localhost/debian/ unstable/main pkg-config amd64 0.26-1 [59.5 kB]
+Get:39 http://localhost/debian/ unstable/main libfontconfig1-dev amd64 2.8.0-3.1 [835 kB]
+Get:40 http://localhost/debian/ unstable/main libpthread-stubs0 amd64 0.3-3 [3228 B]
+Get:41 http://localhost/debian/ unstable/main libpthread-stubs0-dev amd64 0.3-3 [3998 B]
+Get:42 http://localhost/debian/ unstable/main xorg-sgml-doctools all 1:1.10-1 [24.1 kB]
+Get:43 http://localhost/debian/ unstable/main x11proto-core-dev all 7.0.22-1 [323 kB]
+Get:44 http://localhost/debian/ unstable/main libxau-dev amd64 1:1.0.6-4 [20.6 kB]
+Get:45 http://localhost/debian/ unstable/main libxdmcp-dev amd64 1:1.1.0-4 [39.3 kB]
+Get:46 http://localhost/debian/ unstable/main x11proto-input-dev all 2.1-1 [145 kB]
+Get:47 http://localhost/debian/ unstable/main x11proto-kb-dev all 1.0.5-2 [27.5 kB]
+Get:48 http://localhost/debian/ unstable/main xtrans-dev all 1.2.6-2 [101 kB]
+Get:49 http://localhost/debian/ unstable/main libxcb1-dev amd64 1.8.1-1 [86.6 kB]
+Get:50 http://localhost/debian/ unstable/main libx11-dev amd64 2:1.4.4-4 [1027 kB]
+Get:51 http://localhost/debian/ unstable/main x11proto-render-dev all 2:0.11.1-2 [20.8 kB]
+Get:52 http://localhost/debian/ unstable/main libxrender-dev amd64 1:0.9.6-2 [39.7 kB]
+Get:53 http://localhost/debian/ unstable/main libxft-dev amd64 2.2.0-3 [71.5 kB]
+Get:54 http://localhost/debian/ unstable/main libclthreads-dev amd64 2.4.0-4 [6398 B]
+debconf: delaying package configuration, since apt-utils is not installed
+Fetched 18.2 MB in 1s (14.9 MB/s)
+Selecting previously unselected package libpipeline1:amd64.
+(Reading database ... 11028 files and directories currently installed.)
+Unpacking libpipeline1:amd64 (from .../libpipeline1_1.2.1-1_amd64.deb) ...
+Selecting previously unselected package libpopt0:amd64.
+Unpacking libpopt0:amd64 (from .../libpopt0_1.16-3_amd64.deb) ...
+Selecting previously unselected package libmagic1:amd64.
+Unpacking libmagic1:amd64 (from .../libmagic1_5.11-1_amd64.deb) ...
+Selecting previously unselected package libpcre3:amd64.
+Unpacking libpcre3:amd64 (from .../libpcre3_1%3a8.30-4_amd64.deb) ...
+Selecting previously unselected package libasound2:amd64.
+Unpacking libasound2:amd64 (from .../libasound2_1.0.25-2_amd64.deb) ...
+Selecting previously unselected package libffi5:amd64.
+Unpacking libffi5:amd64 (from .../libffi5_3.0.10-3_amd64.deb) ...
+Selecting previously unselected package libglib2.0-0:amd64.
+Unpacking libglib2.0-0:amd64 (from .../libglib2.0-0_2.30.2-6_amd64.deb) ...
+Selecting previously unselected package libxml2.
+Unpacking libxml2 (from .../libxml2_2.7.8.dfsg-7_amd64.deb) ...
+Selecting previously unselected package libcroco3:amd64.
+Unpacking libcroco3:amd64 (from .../libcroco3_0.6.5-1_amd64.deb) ...
+Selecting previously unselected package libexpat1:amd64.
+Unpacking libexpat1:amd64 (from .../libexpat1_2.1.0~beta3-2_amd64.deb) ...
+Selecting previously unselected package libfreetype6:amd64.
+Unpacking libfreetype6:amd64 (from .../libfreetype6_2.4.9-1_amd64.deb) ...
+Selecting previously unselected package ttf-dejavu-core.
+Unpacking ttf-dejavu-core (from .../ttf-dejavu-core_2.33-2_all.deb) ...
+Selecting previously unselected package fontconfig-config.
+Unpacking fontconfig-config (from .../fontconfig-config_2.8.0-3.1_all.deb) ...
+Selecting previously unselected package libfontconfig1:amd64.
+Unpacking libfontconfig1:amd64 (from .../libfontconfig1_2.8.0-3.1_amd64.deb) ...
+Selecting previously unselected package libunistring0:amd64.
+Unpacking libunistring0:amd64 (from .../libunistring0_0.9.3-5_amd64.deb) ...
+Selecting previously unselected package libxau6:amd64.
+Unpacking libxau6:amd64 (from .../libxau6_1%3a1.0.6-4_amd64.deb) ...
+Selecting previously unselected package libxdmcp6:amd64.
+Unpacking libxdmcp6:amd64 (from .../libxdmcp6_1%3a1.1.0-4_amd64.deb) ...
+Selecting previously unselected package libxcb1:amd64.
+Unpacking libxcb1:amd64 (from .../libxcb1_1.8.1-1_amd64.deb) ...
+Selecting previously unselected package libx11-data.
+Unpacking libx11-data (from .../libx11-data_2%3a1.4.4-4_all.deb) ...
+Selecting previously unselected package libx11-6:amd64.
+Unpacking libx11-6:amd64 (from .../libx11-6_2%3a1.4.4-4_amd64.deb) ...
+Selecting previously unselected package libxrender1:amd64.
+Unpacking libxrender1:amd64 (from .../libxrender1_1%3a0.9.6-2_amd64.deb) ...
+Selecting previously unselected package libxft2:amd64.
+Unpacking libxft2:amd64 (from .../libxft2_2.2.0-3_amd64.deb) ...
+Selecting previously unselected package libclthreads2:amd64.
+Unpacking libclthreads2:amd64 (from .../libclthreads2_2.4.0-4_amd64.deb) ...
+Selecting previously unselected package bsdmainutils.
+Unpacking bsdmainutils (from .../bsdmainutils_9.0.1_amd64.deb) ...
+Selecting previously unselected package groff-base.
+Unpacking groff-base (from .../groff-base_1.21-6_amd64.deb) ...
+Selecting previously unselected package man-db.
+Unpacking man-db (from .../man-db_2.6.1-1_amd64.deb) ...
+Selecting previously unselected package file.
+Unpacking file (from .../archives/file_5.11-1_amd64.deb) ...
+Selecting previously unselected package gettext-base.
+Unpacking gettext-base (from .../gettext-base_0.18.1.1-5_amd64.deb) ...
+Selecting previously unselected package html2text.
+Unpacking html2text (from .../html2text_1.3.2a-15_amd64.deb) ...
+Selecting previously unselected package gettext.
+Unpacking gettext (from .../gettext_0.18.1.1-5_amd64.deb) ...
+Selecting previously unselected package intltool-debian.
+Unpacking intltool-debian (from .../intltool-debian_0.35.0+20060710.1_all.deb) ...
+Selecting previously unselected package po-debconf.
+Unpacking po-debconf (from .../po-debconf_1.0.16+nmu2_all.deb) ...
+Selecting previously unselected package debhelper.
+Unpacking debhelper (from .../debhelper_9.20120322_all.deb) ...
+Selecting previously unselected package libasound2-dev.
+Unpacking libasound2-dev (from .../libasound2-dev_1.0.25-2_amd64.deb) ...
+Selecting previously unselected package libexpat1-dev.
+Unpacking libexpat1-dev (from .../libexpat1-dev_2.1.0~beta3-2_amd64.deb) ...
+Selecting previously unselected package zlib1g-dev:amd64.
+Unpacking zlib1g-dev:amd64 (from .../zlib1g-dev_1%3a1.2.6.dfsg-2_amd64.deb) ...
+Selecting previously unselected package libfreetype6-dev.
+Unpacking libfreetype6-dev (from .../libfreetype6-dev_2.4.9-1_amd64.deb) ...
+Selecting previously unselected package pkg-config.
+Unpacking pkg-config (from .../pkg-config_0.26-1_amd64.deb) ...
+Selecting previously unselected package libfontconfig1-dev.
+Unpacking libfontconfig1-dev (from .../libfontconfig1-dev_2.8.0-3.1_amd64.deb) ...
+Selecting previously unselected package libpthread-stubs0:amd64.
+Unpacking libpthread-stubs0:amd64 (from .../libpthread-stubs0_0.3-3_amd64.deb) ...
+Selecting previously unselected package libpthread-stubs0-dev:amd64.
+Unpacking libpthread-stubs0-dev:amd64 (from .../libpthread-stubs0-dev_0.3-3_amd64.deb) ...
+Selecting previously unselected package xorg-sgml-doctools.
+Unpacking xorg-sgml-doctools (from .../xorg-sgml-doctools_1%3a1.10-1_all.deb) ...
+Selecting previously unselected package x11proto-core-dev.
+Unpacking x11proto-core-dev (from .../x11proto-core-dev_7.0.22-1_all.deb) ...
+Selecting previously unselected package libxau-dev:amd64.
+Unpacking libxau-dev:amd64 (from .../libxau-dev_1%3a1.0.6-4_amd64.deb) ...
+Selecting previously unselected package libxdmcp-dev:amd64.
+Unpacking libxdmcp-dev:amd64 (from .../libxdmcp-dev_1%3a1.1.0-4_amd64.deb) ...
+Selecting previously unselected package x11proto-input-dev.
+Unpacking x11proto-input-dev (from .../x11proto-input-dev_2.1-1_all.deb) ...
+Selecting previously unselected package x11proto-kb-dev.
+Unpacking x11proto-kb-dev (from .../x11proto-kb-dev_1.0.5-2_all.deb) ...
+Selecting previously unselected package xtrans-dev.
+Unpacking xtrans-dev (from .../xtrans-dev_1.2.6-2_all.deb) ...
+Selecting previously unselected package libxcb1-dev:amd64.
+Unpacking libxcb1-dev:amd64 (from .../libxcb1-dev_1.8.1-1_amd64.deb) ...
+Selecting previously unselected package libx11-dev:amd64.
+Unpacking libx11-dev:amd64 (from .../libx11-dev_2%3a1.4.4-4_amd64.deb) ...
+Selecting previously unselected package x11proto-render-dev.
+Unpacking x11proto-render-dev (from .../x11proto-render-dev_2%3a0.11.1-2_all.deb) ...
+Selecting previously unselected package libxrender-dev.
+Unpacking libxrender-dev (from .../libxrender-dev_1%3a0.9.6-2_amd64.deb) ...
+Selecting previously unselected package libxft-dev.
+Unpacking libxft-dev (from .../libxft-dev_2.2.0-3_amd64.deb) ...
+Selecting previously unselected package libclthreads-dev:amd64.
+Unpacking libclthreads-dev:amd64 (from .../libclthreads-dev_2.4.0-4_amd64.deb) ...
+Selecting previously unselected package sbuild-build-depends-clxclient-dummy.
+Unpacking sbuild-build-depends-clxclient-dummy (from .../sbuild-build-depends-clxclient-dummy.deb) ...
+Setting up libpipeline1:amd64 (1.2.1-1) ...
+Setting up libpopt0:amd64 (1.16-3) ...
+Setting up libmagic1:amd64 (5.11-1) ...
+Setting up libpcre3:amd64 (1:8.30-4) ...
+Setting up libasound2:amd64 (1.0.25-2) ...
+Setting up libffi5:amd64 (3.0.10-3) ...
+Setting up libglib2.0-0:amd64 (2.30.2-6) ...
+No schema files found: doing nothing.
+Setting up libxml2 (2.7.8.dfsg-7) ...
+Setting up libcroco3:amd64 (0.6.5-1) ...
+Setting up libexpat1:amd64 (2.1.0~beta3-2) ...
+Setting up libfreetype6:amd64 (2.4.9-1) ...
+Setting up ttf-dejavu-core (2.33-2) ...
+Setting up fontconfig-config (2.8.0-3.1) ...
+Setting up libfontconfig1:amd64 (2.8.0-3.1) ...
+Setting up libunistring0:amd64 (0.9.3-5) ...
+Setting up libxau6:amd64 (1:1.0.6-4) ...
+Setting up libxdmcp6:amd64 (1:1.1.0-4) ...
+Setting up libxcb1:amd64 (1.8.1-1) ...
+Setting up libx11-data (2:1.4.4-4) ...
+Setting up libx11-6:amd64 (2:1.4.4-4) ...
+Setting up libxrender1:amd64 (1:0.9.6-2) ...
+Setting up libxft2:amd64 (2.2.0-3) ...
+Setting up libclthreads2:amd64 (2.4.0-4) ...
+Setting up bsdmainutils (9.0.1) ...
+update-alternatives: using /usr/bin/bsd-write to provide /usr/bin/write (write) in auto mode.
+update-alternatives: using /usr/bin/bsd-from to provide /usr/bin/from (from) in auto mode.
+Setting up groff-base (1.21-6) ...
+Setting up man-db (2.6.1-1) ...
+Building database of manual pages ...
+Setting up file (5.11-1) ...
+Setting up gettext-base (0.18.1.1-5) ...
+Setting up html2text (1.3.2a-15) ...
+Setting up gettext (0.18.1.1-5) ...
+Setting up intltool-debian (0.35.0+20060710.1) ...
+Setting up po-debconf (1.0.16+nmu2) ...
+Setting up debhelper (9.20120322) ...
+Setting up libasound2-dev (1.0.25-2) ...
+Setting up libexpat1-dev (2.1.0~beta3-2) ...
+Setting up zlib1g-dev:amd64 (1:1.2.6.dfsg-2) ...
+Setting up libfreetype6-dev (2.4.9-1) ...
+Setting up pkg-config (0.26-1) ...
+Setting up libfontconfig1-dev (2.8.0-3.1) ...
+Setting up libpthread-stubs0:amd64 (0.3-3) ...
+Setting up libpthread-stubs0-dev:amd64 (0.3-3) ...
+Setting up xorg-sgml-doctools (1:1.10-1) ...
+Setting up x11proto-core-dev (7.0.22-1) ...
+Setting up libxau-dev:amd64 (1:1.0.6-4) ...
+Setting up libxdmcp-dev:amd64 (1:1.1.0-4) ...
+Setting up x11proto-input-dev (2.1-1) ...
+Setting up x11proto-kb-dev (1.0.5-2) ...
+Setting up xtrans-dev (1.2.6-2) ...
+Setting up libxcb1-dev:amd64 (1.8.1-1) ...
+Setting up libx11-dev:amd64 (2:1.4.4-4) ...
+Setting up x11proto-render-dev (2:0.11.1-2) ...
+Setting up libxrender-dev (1:0.9.6-2) ...
+Setting up libxft-dev (2.2.0-3) ...
+Setting up libclthreads-dev:amd64 (2.4.0-4) ...
+Setting up sbuild-build-depends-clxclient-dummy (0.invalid.0) ...
+
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Build environment                                                            │
+└──────────────────────────────────────────────────────────────────────────────┘
+
+Kernel: Linux 2.6.32-5-xen-amd64 amd64 (x86_64)
+Toolchain package versions: binutils_2.22-6 dpkg-dev_1.16.2 g++-4.7_4.7.0-1 gcc-4.7_4.7.0-1 libc6-dev_2.13-27 libstdc++6_4.7.0-1 libstdc++6-4.7-dev_4.7.0-1 linux-libc-dev_3.2.13-1
+Package versions: apt_0.8.15.10 base-files_6.7 base-passwd_3.5.24 bash_4.2-1 binutils_2.22-6 bsdmainutils_9.0.1 bsdutils_1:2.20.1-4 build-essential_11.5 bzip2_1.0.6-1 coreutils_8.13-3.1 cpp_4:4.7.0-3exp1 cpp-4.7_4.7.0-1 dash_0.5.7-3 debconf_1.5.42 debconf-i18n_1.5.42 debfoster_2.7-1.1 debhelper_9.20120322 debian-archive-keyring_2010.08.28 debianutils_4.3 diffutils_1:3.2-2 dpkg_1.16.2 dpkg-dev_1.16.2 e2fslibs_1.42.2-1 e2fsprogs_1.42.2-1 fakeroot_1.18.2-1 file_5.11-1 findutils_4.4.2-4 fontconfig-config_2.8.0-3.1 g++_4:4.7.0-3exp1 g++-4.7_4.7.0-1 gcc_4:4.7.0-3exp1 gcc-4.4-base_4.4.7-1 gcc-4.5-base_4.5.3-12 gcc-4.6-base_4.6.3-1 gcc-4.7_4.7.0-1 gcc-4.7-base_4.7.0-1 gettext_0.18.1.1-5 gettext-base_0.18.1.1-5 gnupg_1.4.12-4 gpgv_1.4.12-4 grep_2.10-1 groff-base_1.21-6 gzip_1.4-5 hostname_3.11 html2text_1.3.2a-15 initscripts_2.88dsf-22.1 insserv_1.14.0-2.2 intltool-debian_0.35.0+20060710.1 libacl1_2.2.51-5 libasound2_1.0.25-2 libasound2-dev_1.0.25-2 libattr1_1:2.4.46-5 libblkid1_2.20.1-4 libbz2-1.0_1.0.6-1 libc-bin_2.13-27 libc-dev-bin_2.13-27 libc6_2.13-27 libc6-dev_2.13-27 libclass-isa-perl_0.36-3 libcloog-ppl0_0.15.11-4 libclthreads-dev_2.4.0-4 libclthreads2_2.4.0-4 libcomerr2_1.42.2-1 libcroco3_0.6.5-1 libdb5.1_5.1.29-1 libdpkg-perl_1.16.2 libexpat1_2.1.0~beta3-2 libexpat1-dev_2.1.0~beta3-2 libffi5_3.0.10-3 libfile-fcntllock-perl_0.14-1+b1 libfontconfig1_2.8.0-3.1 libfontconfig1-dev_2.8.0-3.1 libfreetype6_2.4.9-1 libfreetype6-dev_2.4.9-1 libgc1c2_1:7.1-8 libgcc1_1:4.7.0-1 libgdbm3_1.8.3-10 libglib2.0-0_2.30.2-6 libgmp10_2:5.0.4+dfsg-1 libgmpxx4ldbl_2:5.0.4+dfsg-1 libgomp1_4.7.0-1 libgpm2_1.20.4-4 libitm1_4.7.0-1 liblocale-gettext-perl_1.05-7+b1 liblzma5_5.1.1alpha+20110809-3 libmagic1_5.11-1 libmount1_2.20.1-4 libmpc2_0.9-4 libmpfr4_3.1.0-4 libncurses5_5.9-5 libncursesw5_5.9-5 libpam-modules_1.1.3-7 libpam-modules-bin_1.1.3-7 libpam-runtime_1.1.3-7 libpam0g_1.1.3-7 libpcre3_1:8.30-4 libpipeline1_1.2.1-1 libpopt0_1.16-3 libppl-c4_0.11.2-6 libppl9_0.11.2-6 libpthread-stubs0_0.3-3 libpthread-stubs0-dev_0.3-3 libpwl5_0.11.2-6 libquadmath0_4.7.0-1 libreadline6_6.2-8 libselinux1_2.1.9-4 libsemanage-common_2.1.6-4 libsemanage1_2.1.6-4 libsepol1_2.1.4-2 libslang2_2.2.4-7 libss2_1.42.2-1 libstdc++6_4.7.0-1 libstdc++6-4.7-dev_4.7.0-1 libswitch-perl_2.16-2 libtext-charwidth-perl_0.04-7+b1 libtext-iconv-perl_1.7-5 libtext-wrapi18n-perl_0.06-7 libtimedate-perl_1.2000-1 libtinfo5_5.9-5 libunistring0_0.9.3-5 libusb-0.1-4_2:0.1.12-20 libustr-1.0-1_1.0.4-2 libuuid1_2.20.1-4 libx11-6_2:1.4.4-4 libx11-data_2:1.4.4-4 libx11-dev_2:1.4.4-4 libxau-dev_1:1.0.6-4 libxau6_1:1.0.6-4 libxcb1_1.8.1-1 libxcb1-dev_1.8.1-1 libxdmcp-dev_1:1.1.0-4 libxdmcp6_1:1.1.0-4 libxft-dev_2.2.0-3 libxft2_2.2.0-3 libxml2_2.7.8.dfsg-7 libxrender-dev_1:0.9.6-2 libxrender1_1:0.9.6-2 linux-libc-dev_3.2.13-1 login_1:4.1.5-1 lsb-base_4.1+Debian0 make_3.81-8.1 man-db_2.6.1-1 mawk_1.3.3-17 mount_2.20.1-4 multiarch-support_2.13-27 ncurses-base_5.9-5 ncurses-bin_5.9-5 nvi_1.81.6-8.2 nvi-doc_1.81.6-8.2 passwd_1:4.1.5-1 patch_2.6.1-3 perl_5.14.2-9 perl-base_5.14.2-9 perl-modules_5.14.2-9 pkg-config_0.26-1 po-debconf_1.0.16+nmu2 readline-common_6.2-8 sbuild-build-depends-clxclient-dummy_0.invalid.0 sbuild-build-depends-core-dummy_0.invalid.0 sed_4.2.1-9 sensible-utils_0.0.6 sysv-rc_2.88dsf-22.1 sysvinit_2.88dsf-22.1 sysvinit-utils_2.88dsf-22.1 tar_1.26-4 ttf-dejavu-core_2.33-2 tzdata_2012b-1 ucf_3.0025+nmu2 util-linux_2.20.1-4 x11proto-core-dev_7.0.22-1 x11proto-input-dev_2.1-1 x11proto-kb-dev_1.0.5-2 x11proto-render-dev_2:0.11.1-2 xorg-sgml-doctools_1:1.10-1 xtrans-dev_1.2.6-2 xz-utils_5.1.1alpha+20110809-3 zlib1g_1:1.2.6.dfsg-2 zlib1g-dev_1:1.2.6.dfsg-2
+
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Build                                                                        │
+└──────────────────────────────────────────────────────────────────────────────┘
+
+
+Unpack source
+─────────────
+
+gpgv: keyblock resource `/sbuild-nonexistent/.gnupg/trustedkeys.gpg': file open error
+gpgv: Signature made Thu Feb  2 01:43:35 2012 UTC using RSA key ID E2B84FA5
+gpgv: Can't check signature: public key not found
+dpkg-source: warning: failed to verify signature on ./clxclient_3.6.1-4.dsc
+dpkg-source: info: extracting clxclient in clxclient-3.6.1
+dpkg-source: info: unpacking clxclient_3.6.1.orig.tar.gz
+dpkg-source: info: unpacking clxclient_3.6.1-4.debian.tar.gz
+dpkg-source: info: applying makefile-01.patch
+dpkg-source: info: applying makefile-02.patch
+
+Check disc space
+────────────────
+
+Sufficient free space for build
+
+User Environment
+────────────────
+
+HOME=/sbuild-nonexistent
+LOGNAME=user
+PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
+SCHROOT_CHROOT_NAME=unstable-gcc47-amd64-sbuild
+SCHROOT_COMMAND=env
+SCHROOT_GID=1000
+SCHROOT_GROUP=user
+SCHROOT_SESSION_ID=unstable-gcc47-amd64-sbuild-d07dfa85-8d0c-4267-9f80-cc2971e32810
+SCHROOT_UID=1000
+SCHROOT_USER=user
+SHELL=/bin/sh
+USER=user
+
+dpkg-buildpackage
+─────────────────
+
+dpkg-buildpackage: source package clxclient
+dpkg-buildpackage: source version 3.6.1-4
+dpkg-buildpackage: source changed by Jaromír Mikeš <mira.mikes at seznam.cz>
+ dpkg-source --before-build clxclient-3.6.1
+dpkg-buildpackage: host architecture amd64
+ fakeroot debian/rules clean
+dh clean -Smakefile
+   dh_testdir -O-Smakefile
+   dh_auto_clean -O-Smakefile
+make[1]: Entering directory `/«PKGBUILDDIR»'
+/bin/rm -f *~ *.o *.a *.d *.so.*
+make[1]: Leaving directory `/«PKGBUILDDIR»'
+   dh_clean -O-Smakefile
+ debian/rules build-arch
+dh build-arch -Smakefile
+   dh_testdir -a -O-Smakefile
+   dh_auto_configure -a -O-Smakefile
+   dh_auto_build -a -O-Smakefile
+make[1]: Entering directory `/«PKGBUILDDIR»'
+g++ -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Wformat-security -Werror=format-security -D_FORTIFY_SOURCE=2 -Wall -I. -I/usr/X11R6/include `freetype-config --cflags` -fpic -DVERSION=\"3.6.1\" -D_REENTRANT -D_POSIX_PTHREAD_SEMANTICS -O2   -c -o xdisplay.o xdisplay.cc
+xdisplay.cc:192:1: warning: narrowing conversion of '128' from 'int' to 'char' inside { } is ill-formed in C++11 [-Wnarrowing]
+xdisplay.cc:192:1: warning: narrowing conversion of '192' from 'int' to 'char' inside { } is ill-formed in C++11 [-Wnarrowing]
+xdisplay.cc:192:1: warning: narrowing conversion of '224' from 'int' to 'char' inside { } is ill-formed in C++11 [-Wnarrowing]
+xdisplay.cc:192:1: warning: narrowing conversion of '192' from 'int' to 'char' inside { } is ill-formed in C++11 [-Wnarrowing]
+xdisplay.cc:192:1: warning: narrowing conversion of '128' from 'int' to 'char' inside { } is ill-formed in C++11 [-Wnarrowing]
+xdisplay.cc:192:1: warning: narrowing conversion of '224' from 'int' to 'char' inside { } is ill-formed in C++11 [-Wnarrowing]
+xdisplay.cc:192:1: warning: narrowing conversion of '224' from 'int' to 'char' inside { } is ill-formed in C++11 [-Wnarrowing]
+xdisplay.cc:192:1: warning: narrowing conversion of '224' from 'int' to 'char' inside { } is ill-formed in C++11 [-Wnarrowing]
+xdisplay.cc:192:1: warning: narrowing conversion of '224' from 'int' to 'char' inside { } is ill-formed in C++11 [-Wnarrowing]
+xdisplay.cc:192:1: warning: narrowing conversion of '224' from 'int' to 'char' inside { } is ill-formed in C++11 [-Wnarrowing]
+xdisplay.cc:192:1: warning: narrowing conversion of '128' from 'int' to 'char' inside { } is ill-formed in C++11 [-Wnarrowing]
+xdisplay.cc:192:1: warning: narrowing conversion of '192' from 'int' to 'char' inside { } is ill-formed in C++11 [-Wnarrowing]
+xdisplay.cc:192:1: warning: narrowing conversion of '224' from 'int' to 'char' inside { } is ill-formed in C++11 [-Wnarrowing]
+xdisplay.cc:192:1: warning: narrowing conversion of '240' from 'int' to 'char' inside { } is ill-formed in C++11 [-Wnarrowing]
+xdisplay.cc:192:1: warning: narrowing conversion of '248' from 'int' to 'char' inside { } is ill-formed in C++11 [-Wnarrowing]
+xdisplay.cc:192:1: warning: narrowing conversion of '248' from 'int' to 'char' inside { } is ill-formed in C++11 [-Wnarrowing]
+xdisplay.cc:192:1: warning: narrowing conversion of '240' from 'int' to 'char' inside { } is ill-formed in C++11 [-Wnarrowing]
+xdisplay.cc:192:1: warning: narrowing conversion of '224' from 'int' to 'char' inside { } is ill-formed in C++11 [-Wnarrowing]
+xdisplay.cc:192:1: warning: narrowing conversion of '192' from 'int' to 'char' inside { } is ill-formed in C++11 [-Wnarrowing]
+xdisplay.cc:192:1: warning: narrowing conversion of '128' from 'int' to 'char' inside { } is ill-formed in C++11 [-Wnarrowing]
+xdisplay.cc:192:1: warning: narrowing conversion of '192' from 'int' to 'char' inside { } is ill-formed in C++11 [-Wnarrowing]
+xdisplay.cc:192:1: warning: narrowing conversion of '192' from 'int' to 'char' inside { } is ill-formed in C++11 [-Wnarrowing]
+xdisplay.cc:192:1: warning: narrowing conversion of '192' from 'int' to 'char' inside { } is ill-formed in C++11 [-Wnarrowing]
+xdisplay.cc:192:1: warning: narrowing conversion of '248' from 'int' to 'char' inside { } is ill-formed in C++11 [-Wnarrowing]
+xdisplay.cc:192:1: warning: narrowing conversion of '248' from 'int' to 'char' inside { } is ill-formed in C++11 [-Wnarrowing]
+xdisplay.cc:192:1: warning: narrowing conversion of '248' from 'int' to 'char' inside { } is ill-formed in C++11 [-Wnarrowing]
+xdisplay.cc:192:1: warning: narrowing conversion of '192' from 'int' to 'char' inside { } is ill-formed in C++11 [-Wnarrowing]
+xdisplay.cc:192:1: warning: narrowing conversion of '192' from 'int' to 'char' inside { } is ill-formed in C++11 [-Wnarrowing]
+xdisplay.cc:192:1: warning: narrowing conversion of '192' from 'int' to 'char' inside { } is ill-formed in C++11 [-Wnarrowing]
+xdisplay.cc:192:1: warning: narrowing conversion of '248' from 'int' to 'char' inside { } is ill-formed in C++11 [-Wnarrowing]
+xdisplay.cc:192:1: warning: narrowing conversion of '248' from 'int' to 'char' inside { } is ill-formed in C++11 [-Wnarrowing]
+xdisplay.cc:192:1: warning: narrowing conversion of '248' from 'int' to 'char' inside { } is ill-formed in C++11 [-Wnarrowing]
+xdisplay.cc:192:1: warning: narrowing conversion of '248' from 'int' to 'char' inside { } is ill-formed in C++11 [-Wnarrowing]
+xdisplay.cc:192:1: warning: narrowing conversion of '248' from 'int' to 'char' inside { } is ill-formed in C++11 [-Wnarrowing]
+xdisplay.cc:192:1: warning: narrowing conversion of '248' from 'int' to 'char' inside { } is ill-formed in C++11 [-Wnarrowing]
+xdisplay.cc:192:1: warning: narrowing conversion of '248' from 'int' to 'char' inside { } is ill-formed in C++11 [-Wnarrowing]
+xdisplay.cc:192:1: warning: narrowing conversion of '224' from 'int' to 'char' inside { } is ill-formed in C++11 [-Wnarrowing]
+xdisplay.cc:192:1: warning: narrowing conversion of '224' from 'int' to 'char' inside { } is ill-formed in C++11 [-Wnarrowing]
+xdisplay.cc:192:1: warning: narrowing conversion of '224' from 'int' to 'char' inside { } is ill-formed in C++11 [-Wnarrowing]
+xdisplay.cc:192:1: warning: narrowing conversion of '224' from 'int' to 'char' inside { } is ill-formed in C++11 [-Wnarrowing]
+xdisplay.cc:192:1: warning: narrowing conversion of '224' from 'int' to 'char' inside { } is ill-formed in C++11 [-Wnarrowing]
+g++ -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Wformat-security -Werror=format-security -D_FORTIFY_SOURCE=2 -Wall -I. -I/usr/X11R6/include `freetype-config --cflags` -fpic -DVERSION=\"3.6.1\" -D_REENTRANT -D_POSIX_PTHREAD_SEMANTICS -O2   -c -o xresman.o xresman.cc
+xresman.cc: In member function 'void X_resman::init(int*, char**, char*, XrmOptionDescRec*, int)':
+xresman.cc:69:29: warning: deprecated conversion from string constant to 'char*' [-Wwrite-strings]
+g++ -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Wformat-security -Werror=format-security -D_FORTIFY_SOURCE=2 -Wall -I. -I/usr/X11R6/include `freetype-config --cflags` -fpic -DVERSION=\"3.6.1\" -D_REENTRANT -D_POSIX_PTHREAD_SEMANTICS -O2   -c -o xhandler.o xhandler.cc
+g++ -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Wformat-security -Werror=format-security -D_FORTIFY_SOURCE=2 -Wall -I. -I/usr/X11R6/include `freetype-config --cflags` -fpic -DVERSION=\"3.6.1\" -D_REENTRANT -D_POSIX_PTHREAD_SEMANTICS -O2   -c -o xwindow.o xwindow.cc
+g++ -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Wformat-security -Werror=format-security -D_FORTIFY_SOURCE=2 -Wall -I. -I/usr/X11R6/include `freetype-config --cflags` -fpic -DVERSION=\"3.6.1\" -D_REENTRANT -D_POSIX_PTHREAD_SEMANTICS -O2   -c -o xdraw.o xdraw.cc
+g++ -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Wformat-security -Werror=format-security -D_FORTIFY_SOURCE=2 -Wall -I. -I/usr/X11R6/include `freetype-config --cflags` -fpic -DVERSION=\"3.6.1\" -D_REENTRANT -D_POSIX_PTHREAD_SEMANTICS -O2   -c -o button.o button.cc
+g++ -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Wformat-security -Werror=format-security -D_FORTIFY_SOURCE=2 -Wall -I. -I/usr/X11R6/include `freetype-config --cflags` -fpic -DVERSION=\"3.6.1\" -D_REENTRANT -D_POSIX_PTHREAD_SEMANTICS -O2   -c -o textip.o textip.cc
+g++ -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Wformat-security -Werror=format-security -D_FORTIFY_SOURCE=2 -Wall -I. -I/usr/X11R6/include `freetype-config --cflags` -fpic -DVERSION=\"3.6.1\" -D_REENTRANT -D_POSIX_PTHREAD_SEMANTICS -O2   -c -o enumip.o enumip.cc
+g++ -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Wformat-security -Werror=format-security -D_FORTIFY_SOURCE=2 -Wall -I. -I/usr/X11R6/include `freetype-config --cflags` -fpic -DVERSION=\"3.6.1\" -D_REENTRANT -D_POSIX_PTHREAD_SEMANTICS -O2   -c -o menuwin.o menuwin.cc
+g++ -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Wformat-security -Werror=format-security -D_FORTIFY_SOURCE=2 -Wall -I. -I/usr/X11R6/include `freetype-config --cflags` -fpic -DVERSION=\"3.6.1\" -D_REENTRANT -D_POSIX_PTHREAD_SEMANTICS -O2   -c -o scale.o scale.cc
+g++ -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Wformat-security -Werror=format-security -D_FORTIFY_SOURCE=2 -Wall -I. -I/usr/X11R6/include `freetype-config --cflags` -fpic -DVERSION=\"3.6.1\" -D_REENTRANT -D_POSIX_PTHREAD_SEMANTICS -O2   -c -o slider.o slider.cc
+g++ -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Wformat-security -Werror=format-security -D_FORTIFY_SOURCE=2 -Wall -I. -I/usr/X11R6/include `freetype-config --cflags` -fpic -DVERSION=\"3.6.1\" -D_REENTRANT -D_POSIX_PTHREAD_SEMANTICS -O2   -c -o scroll.o scroll.cc
+g++ -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Wformat-security -Werror=format-security -D_FORTIFY_SOURCE=2 -Wall -I. -I/usr/X11R6/include `freetype-config --cflags` -fpic -DVERSION=\"3.6.1\" -D_REENTRANT -D_POSIX_PTHREAD_SEMANTICS -O2   -c -o mclist.o mclist.cc
+g++ -g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Wformat-security -Werror=format-security -D_FORTIFY_SOURCE=2 -Wall -I. -I/usr/X11R6/include `freetype-config --cflags` -fpic -DVERSION=\"3.6.1\" -D_REENTRANT -D_POSIX_PTHREAD_SEMANTICS -O2   -c -o meter.o meter.cc
+g++ -shared -Wl,-z,relro -L/usr/lib/x86_64-linux-gnu -L/usr/X11R6/lib/x86_64-linux-gnu -Wl,--as-needed `freetype-config --libs` -Wl,-soname,libclxclient.so.3 -o libclxclient.so.3.6.1 xdisplay.o xresman.o xhandler.o xwindow.o xdraw.o button.o textip.o enumip.o menuwin.o scale.o slider.o scroll.o mclist.o meter.o -lpthread -lXft -lX11 -lclthreads
+make[1]: Leaving directory `/«PKGBUILDDIR»'
+   dh_auto_test -a -O-Smakefile
+ fakeroot debian/rules binary-arch
+dh binary-arch -Smakefile
+   dh_testroot -a -O-Smakefile
+   dh_prep -a -O-Smakefile
+   dh_installdirs -a -O-Smakefile
+   dh_auto_install -a -O-Smakefile
+make[1]: Entering directory `/«PKGBUILDDIR»'
+/usr/bin/install -d /«PKGBUILDDIR»/debian/tmp/usr/lib/x86_64-linux-gnu
+/usr/bin/install -d /«PKGBUILDDIR»/debian/tmp/usr/include
+/usr/bin/install -m 644 clxclient.h /«PKGBUILDDIR»/debian/tmp/usr/include
+/usr/bin/install -m 755 libclxclient.so.3.6.1 /«PKGBUILDDIR»/debian/tmp/usr/lib/x86_64-linux-gnu
+/sbin/ldconfig -n /«PKGBUILDDIR»/debian/tmp/usr/lib/x86_64-linux-gnu
+ln -sf libclxclient.so.3.6.1 /«PKGBUILDDIR»/debian/tmp/usr/lib/x86_64-linux-gnu/libclxclient.so
+make[1]: Leaving directory `/«PKGBUILDDIR»'
+   dh_install -a -O-Smakefile
+   dh_installdocs -a -O-Smakefile
+   dh_installchangelogs -a -O-Smakefile
+   dh_installexamples -a -O-Smakefile
+   dh_installman -a -O-Smakefile
+   dh_installcatalogs -a -O-Smakefile
+   dh_installcron -a -O-Smakefile
+   dh_installdebconf -a -O-Smakefile
+   dh_installemacsen -a -O-Smakefile
+   dh_installifupdown -a -O-Smakefile
+   dh_installinfo -a -O-Smakefile
+   dh_installinit -a -O-Smakefile
+   dh_installmenu -a -O-Smakefile
+   dh_installmime -a -O-Smakefile
+   dh_installmodules -a -O-Smakefile
+   dh_installlogcheck -a -O-Smakefile
+   dh_installlogrotate -a -O-Smakefile
+   dh_installpam -a -O-Smakefile
+   dh_installppp -a -O-Smakefile
+   dh_installudev -a -O-Smakefile
+   dh_installwm -a -O-Smakefile
+   dh_installxfonts -a -O-Smakefile
+   dh_installgsettings -a -O-Smakefile
+   dh_bugfiles -a -O-Smakefile
+   dh_ucf -a -O-Smakefile
+   dh_lintian -a -O-Smakefile
+   dh_gconf -a -O-Smakefile
+   dh_icons -a -O-Smakefile
+   dh_perl -a -O-Smakefile
+   dh_usrlocal -a -O-Smakefile
+   dh_link -a -O-Smakefile
+   dh_compress -a -O-Smakefile
+   dh_fixperms -a -O-Smakefile
+   dh_strip -a -O-Smakefile
+   dh_makeshlibs -a -O-Smakefile
+dpkg-gensymbols: warning: some symbols or patterns disappeared in the symbols file: see diff output below
+dpkg-gensymbols: warning: debian/libclxclient3/DEBIAN/symbols doesn't match completely debian/libclxclient3.symbols.amd64
+--- debian/libclxclient3.symbols.amd64 (libclxclient3_3.6.1-4_amd64)
++++ dpkg-gensymbolsqXR1dK	2012-03-30 01:12:04.997222968 +0000
+@@ -9,8 +9,8 @@
+  _ZN5EdestD0Ev at Base 3.6.1
+  _ZN5EdestD1Ev at Base 3.6.1
+  _ZN5EdestD2Ev at Base 3.6.1
+- _ZN5EsyncD1Ev at Base 3.6.1
+- _ZN5EsyncD2Ev at Base 3.6.1
++#MISSING: 3.6.1-4# _ZN5EsyncD1Ev at Base 3.6.1
++#MISSING: 3.6.1-4# _ZN5EsyncD2Ev at Base 3.6.1
+  _ZN6X_draw10drawpointsEiP6XPoint at Base 3.6.1
+  _ZN6X_draw10drawstringEPKci at Base 3.6.1
+  _ZN6X_draw12drawsegmentsEiP8XSegment at Base 3.6.1
+dh_makeshlibs: dpkg-gensymbols -plibclxclient3 -Idebian/libclxclient3.symbols.amd64 -Pdebian/libclxclient3 -edebian/libclxclient3/usr/lib/x86_64-linux-gnu/libclxclient.so.3.6.1
+ returned exit code 1
+make: *** [binary-arch] Error 1
+dpkg-buildpackage: error: fakeroot debian/rules binary-arch gave error exit status 2
+────────────────────────────────────────────────────────────────────────────────
+Build finished at 20120330-0112
+
+Finished
+────────
+
+E: Build failure (dpkg-buildpackage died)
+
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Cleanup                                                                      │
+└──────────────────────────────────────────────────────────────────────────────┘
+
+Purging /«BUILDDIR»
+Not cleaning session: cloned chroot in use
+
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Summary                                                                      │
+└──────────────────────────────────────────────────────────────────────────────┘
+
+Architecture: amd64
+Build-Space: 3956
+Build-Time: 38
+Distribution: unstable-gcc47
+Fail-Stage: build
+Install-Time: 24
+Job: clxclient_3.6.1-4
+Package: clxclient
+Package-Time: 105
+Source-Version: 3.6.1-4
+Space: 3956
+Status: attempted
+Version: 3.6.1-4
+────────────────────────────────────────────────────────────────────────────────
+Finished at 20120330-0112
+Build needed 00:01:45, 3956k disc space
+DC-Build-Status: Failed 106.566636s

Added: collab-qa-tools/test/source/crystalspace_1.4.0+dfsg-4_unstable.log
===================================================================
--- collab-qa-tools/test/source/crystalspace_1.4.0+dfsg-4_unstable.log	                        (rev 0)
+++ collab-qa-tools/test/source/crystalspace_1.4.0+dfsg-4_unstable.log	2012-05-07 09:50:33 UTC (rev 2275)
@@ -0,0 +1,154 @@
+DC-Build-Header: crystalspace 1.4.0+dfsg-4 / Thu Apr 19 09:02:30 +0000 2012
+DC-Task: logfile:/tmp/crystalspace_1.4.0+dfsg-4_unstable.log version:1.4.0+dfsg-4 modes: chroot:unstable source:crystalspace esttime: architecture:any
+DC-Sbuild-call: su user -c 'sbuild -n -A -s --force-orig-source --apt-update -d unstable -v crystalspace_1.4.0+dfsg-4'
+sbuild (Debian sbuild) 0.62.5 (13 Jul 2011) on ip-10-250-125-254.eu-west-1.compute.internal
+
+╔══════════════════════════════════════════════════════════════════════════════╗
+║ crystalspace 1.4.0+dfsg-4 (amd64)                          19 Apr 2012 09:02 ║
+╚══════════════════════════════════════════════════════════════════════════════╝
+
+Package: crystalspace
+Version: 1.4.0+dfsg-4
+Source Version: 1.4.0+dfsg-4
+Distribution: unstable
+Architecture: amd64
+
+I: NOTICE: Log filtering will replace 'build/crystalspace-Bx3yvZ/crystalspace-1.4.0+dfsg' with '«PKGBUILDDIR»'
+I: NOTICE: Log filtering will replace 'build/crystalspace-Bx3yvZ' with '«BUILDDIR»'
+I: NOTICE: Log filtering will replace 'var/lib/schroot/mount/unstable-amd64-sbuild-744a1431-6993-4030-9900-c38862c1a46c' with '«CHROOT»'
+
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Update chroot                                                                │
+└──────────────────────────────────────────────────────────────────────────────┘
+
+Ign http://localhost unstable InRelease
+Get:1 http://localhost unstable Release.gpg [836 B]
+Get:2 http://localhost unstable Release [209 kB]
+Get:3 http://localhost unstable/main Sources/DiffIndex [7876 B]
+Get:4 http://localhost unstable/main amd64 Packages/DiffIndex [7876 B]
+Get:5 http://localhost unstable/main Translation-en/DiffIndex [7876 B]
+Get:6 http://localhost unstable/main 2012-04-19-0814.57.pdiff [5337 B]
+Get:7 http://localhost unstable/main amd64 2012-04-19-0814.57.pdiff [3541 B]
+Get:8 http://localhost unstable/main 2012-04-19-0814.57.pdiff [5337 B]
+Get:9 http://localhost unstable/main 2012-04-19-0814.57.pdiff [224 B]
+Get:10 http://localhost unstable/main amd64 2012-04-19-0814.57.pdiff [3541 B]
+Get:11 http://localhost unstable/main 2012-04-19-0814.57.pdiff [224 B]
+Fetched 242 kB in 6s (38.1 kB/s)
+Reading package lists...
+Reading package lists...
+Building dependency tree...
+Reading state information...
+0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
+
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Fetch source files                                                           │
+└──────────────────────────────────────────────────────────────────────────────┘
+
+
+Check APT
+─────────
+
+Checking available source versions...
+
+Download source files with APT
+──────────────────────────────
+
+Reading package lists...
+Building dependency tree...
+Reading state information...
+NOTICE: 'crystalspace' packaging is maintained in the 'Svn' version control system at:
+svn://svn.debian.org/svn/pkg-games/packages/trunk/crystalspace/
+Need to get 44.5 MB of source archives.
+Get:1 http://localhost/debian/ unstable/main crystalspace 1.4.0+dfsg-4 (dsc) [2066 B]
+Get:2 http://localhost/debian/ unstable/main crystalspace 1.4.0+dfsg-4 (tar) [44.4 MB]
+Get:3 http://localhost/debian/ unstable/main crystalspace 1.4.0+dfsg-4 (diff) [56.9 kB]
+Fetched 44.5 MB in 21s (2071 kB/s)
+Download complete and in download only mode
+
+Check arch
+──────────
+
+Merged Build-Depends: build-essential, fakeroot
+Filtered Build-Depends: build-essential, fakeroot
+dpkg-deb: building package `sbuild-build-depends-core-dummy' in `/«BUILDDIR»/resolver-ivYa73/apt_archive/sbuild-build-depends-core-dummy.deb'.
+OK
+Reading package lists...
+
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Install core build dependencies (apt-based resolver)                         │
+└──────────────────────────────────────────────────────────────────────────────┘
+
+Installing build dependencies
+Reading package lists...
+Building dependency tree...
+Reading state information...
+The following NEW packages will be installed:
+  sbuild-build-depends-core-dummy
+debconf: delaying package configuration, since apt-utils is not installed
+0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
+Need to get 0 B/710 B of archives.
+After this operation, 0 B of additional disk space will be used.
+Selecting previously unselected package sbuild-build-depends-core-dummy.
+(Reading database ... 10858 files and directories currently installed.)
+Unpacking sbuild-build-depends-core-dummy (from .../sbuild-build-depends-core-dummy.deb) ...
+Setting up sbuild-build-depends-core-dummy (0.invalid.0) ...
+Merged Build-Depends: base-files, base-passwd, bash, coreutils, dash, debianutils, diffutils, dpkg, e2fsprogs, findutils, grep, gzip, hostname, ncurses-base, ncurses-bin, perl-base, sed, login, sysvinit-utils, sysvinit, tar, bsdutils, mount, util-linux, libc6-dev | libc-dev, gcc (>= 4:4.4.3), g++ (>= 4:4.4.3), make, dpkg-dev (>= 1.13.5), debhelper (>= 7.2.6), lib3ds-dev, autoconf, libogg-dev, libjpeg62-dev, libfreetype6-dev, zlib1g-dev, libode-dev | libode0-dev, libopenal-dev, libcal3d-dev, swig, flex, bison, doxygen, libmng-dev, libsdl1.2-dev, libx11-dev, libcaca-dev, libwxgtk2.8-dev, libcegui-mk2-dev, python-dev, libcppunit-dev, libcucul-dev, libasound-dev, liblcms-dev, libcairo-dev, libcairomm-1.0-dev, libgtk2.0-dev, jam, libgl1-mesa-dev | libgl-dev, libvorbis-dev, libxxf86vm-dev, libxaw7-dev, default-jdk, libpng12-dev
+Filtered Build-Depends: base-files, base-passwd, bash, coreutils, dash, debianutils, diffutils, dpkg, e2fsprogs, findutils, grep, gzip, hostname, ncurses-base, ncurses-bin, perl-base, sed, login, sysvinit-utils, sysvinit, tar, bsdutils, mount, util-linux, libc6-dev, gcc (>= 4:4.4.3), g++ (>= 4:4.4.3), make, dpkg-dev (>= 1.13.5), debhelper (>= 7.2.6), lib3ds-dev, autoconf, libogg-dev, libjpeg62-dev, libfreetype6-dev, zlib1g-dev, libode-dev, libopenal-dev, libcal3d-dev, swig, flex, bison, doxygen, libmng-dev, libsdl1.2-dev, libx11-dev, libcaca-dev, libwxgtk2.8-dev, libcegui-mk2-dev, python-dev, libcppunit-dev, libcucul-dev, libasound-dev, liblcms-dev, libcairo-dev, libcairomm-1.0-dev, libgtk2.0-dev, jam, libgl1-mesa-dev, libvorbis-dev, libxxf86vm-dev, libxaw7-dev, default-jdk, libpng12-dev
+dpkg-deb: building package `sbuild-build-depends-crystalspace-dummy' in `/«BUILDDIR»/resolver-jgpuH_/apt_archive/sbuild-build-depends-crystalspace-dummy.deb'.
+OK
+Reading package lists...
+
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Install crystalspace build dependencies (apt-based resolver)                 │
+└──────────────────────────────────────────────────────────────────────────────┘
+
+Installing build dependencies
+Reading package lists...
+Building dependency tree...
+Reading state information...
+Some packages could not be installed. This may mean that you have
+requested an impossible situation or if you are using the unstable
+distribution that some required packages have not yet been created
+or been moved out of Incoming.
+The following information may help to resolve the situation:
+
+The following packages have unmet dependencies:
+ sbuild-build-depends-crystalspace-dummy : Depends: libmng-dev but it is not going to be installed
+                                           Depends: libcegui-mk2-dev but it is not going to be installed
+                                           Depends: libcucul-dev but it is not installable
+E: Unable to correct problems, you have held broken packages.
+apt-get failed.
+Package installation failed
+Not removing build depends: cloned chroot in use
+
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Cleanup                                                                      │
+└──────────────────────────────────────────────────────────────────────────────┘
+
+Purging /«BUILDDIR»
+Not cleaning session: cloned chroot in use
+E: Package build dependencies not satisfied; skipping
+
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Summary                                                                      │
+└──────────────────────────────────────────────────────────────────────────────┘
+
+Architecture: amd64
+Build-Space: 0
+Build-Time: 0
+Distribution: unstable
+Fail-Stage: install-deps
+Install-Time: 0
+Job: crystalspace_1.4.0+dfsg-4
+Package: crystalspace
+Package-Time: 0
+Source-Version: 1.4.0+dfsg-4
+Space: 0
+Status: failed
+Version: 1.4.0+dfsg-4
+────────────────────────────────────────────────────────────────────────────────
+Finished at 20120419-0902
+Build needed 00:00:00, 0k disc space
+E: Package build dependencies not satisfied; skipping
+DC-Build-Status: Failed 43.391978s
+DC-Time-Estimation: 43.391978 versus expected 1 (r/m: 42.391978 ; m: 1.0)

Added: collab-qa-tools/test/source/ftpgrab_0.1.5-2_unstable-gcc47.log
===================================================================
--- collab-qa-tools/test/source/ftpgrab_0.1.5-2_unstable-gcc47.log	                        (rev 0)
+++ collab-qa-tools/test/source/ftpgrab_0.1.5-2_unstable-gcc47.log	2012-05-07 09:50:33 UTC (rev 2275)
@@ -0,0 +1,371 @@
+DC-Build-Header: ftpgrab 0.1.5-2 / Fri Mar 30 01:52:52 +0000 2012
+DC-Task: logfile:/tmp/ftpgrab_0.1.5-2_unstable-gcc47.log version:0.1.5-2 chroot:unstable-gcc47 modes:binary-only source:ftpgrab architecture:any esttime:63
+DC-Sbuild-call: su user -c 'sbuild -n --apt-update -d unstable-gcc47 -v ftpgrab_0.1.5-2'
+sbuild (Debian sbuild) 0.62.5 (13 Jul 2011) on ip-10-58-130-201.eu-west-1.compute.internal
+
+╔══════════════════════════════════════════════════════════════════════════════╗
+║ ftpgrab 0.1.5-2 (amd64)                                    30 Mar 2012 01:52 ║
+╚══════════════════════════════════════════════════════════════════════════════╝
+
+Package: ftpgrab
+Version: 0.1.5-2
+Source Version: 0.1.5-2
+Distribution: unstable-gcc47
+Architecture: amd64
+
+I: NOTICE: Log filtering will replace 'build/ftpgrab-xNsDg6/ftpgrab-0.1.5' with '«PKGBUILDDIR»'
+I: NOTICE: Log filtering will replace 'build/ftpgrab-xNsDg6' with '«BUILDDIR»'
+I: NOTICE: Log filtering will replace 'var/lib/schroot/mount/unstable-gcc47-amd64-sbuild-b15bed79-8d53-4445-83a8-9f7f7df78b13' with '«CHROOT»'
+
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Update chroot                                                                │
+└──────────────────────────────────────────────────────────────────────────────┘
+
+Ign http://localhost unstable InRelease
+Ign http://localhost ./ InRelease
+Get:1 http://localhost unstable Release.gpg [836 B]
+Ign http://localhost ./ Release.gpg
+Get:2 http://localhost unstable Release [206 kB]
+Ign http://localhost ./ Release
+Get:3 http://localhost unstable/main Sources/DiffIndex [7876 B]
+Get:4 http://localhost unstable/main amd64 Packages/DiffIndex [7876 B]
+Get:5 http://localhost unstable/main TranslationIndex [2223 B]
+Ign http://localhost ./ Packages/DiffIndex
+Get:6 http://localhost unstable/main 2012-03-29-0812.49.pdiff [4428 B]
+Get:7 http://localhost unstable/main amd64 2012-03-29-0812.49.pdiff [3922 B]
+Get:8 http://localhost unstable/main 2012-03-29-0812.49.pdiff [4428 B]
+Get:9 http://localhost unstable/main Translation-en [3924 kB]
+Hit http://localhost ./ Packages
+Get:10 http://localhost unstable/main amd64 2012-03-29-0812.49.pdiff [3922 B]
+Ign http://localhost ./ Translation-en
+Get:11 http://localhost unstable/main 2012-03-29-1410.05.pdiff [6476 B]
+Get:12 http://localhost unstable/main 2012-03-29-1410.05.pdiff [6476 B]
+Get:13 http://localhost unstable/main amd64 2012-03-29-1410.05.pdiff [10.1 kB]
+Get:14 http://localhost unstable/main amd64 2012-03-29-1410.05.pdiff [10.1 kB]
+Fetched 4173 kB in 17s (236 kB/s)
+Reading package lists...
+Reading package lists...
+Building dependency tree...
+Reading state information...
+0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
+
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Fetch source files                                                           │
+└──────────────────────────────────────────────────────────────────────────────┘
+
+
+Check APT
+─────────
+
+Checking available source versions...
+
+Download source files with APT
+──────────────────────────────
+
+Reading package lists...
+Building dependency tree...
+Reading state information...
+Need to get 43.0 kB of source archives.
+Get:1 http://localhost/debian/ unstable/main ftpgrab 0.1.5-2 (dsc) [1015 B]
+Get:2 http://localhost/debian/ unstable/main ftpgrab 0.1.5-2 (tar) [37.0 kB]
+Get:3 http://localhost/debian/ unstable/main ftpgrab 0.1.5-2 (diff) [4975 B]
+Fetched 43.0 kB in 0s (200 kB/s)
+Download complete and in download only mode
+
+Check arch
+──────────
+
+Merged Build-Depends: build-essential, fakeroot
+Filtered Build-Depends: build-essential, fakeroot
+dpkg-deb: building package `sbuild-build-depends-core-dummy' in `/«BUILDDIR»/resolver-xAgsdv/apt_archive/sbuild-build-depends-core-dummy.deb'.
+OK
+Reading package lists...
+
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Install core build dependencies (apt-based resolver)                         │
+└──────────────────────────────────────────────────────────────────────────────┘
+
+Installing build dependencies
+Reading package lists...
+Building dependency tree...
+Reading state information...
+The following NEW packages will be installed:
+  sbuild-build-depends-core-dummy
+0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
+Need to get 0 B/710 B of archives.
+After this operation, 0 B of additional disk space will be used.
+WARNING: The following packages cannot be authenticated!
+  sbuild-build-depends-core-dummy
+debconf: delaying package configuration, since apt-utils is not installed
+Authentication warning overridden.
+Selecting previously unselected package sbuild-build-depends-core-dummy.
+(Reading database ... 11028 files and directories currently installed.)
+Unpacking sbuild-build-depends-core-dummy (from .../sbuild-build-depends-core-dummy.deb) ...
+Setting up sbuild-build-depends-core-dummy (0.invalid.0) ...
+Merged Build-Depends: base-files, base-passwd, bash, coreutils, dash, debianutils, diffutils, dpkg, e2fsprogs, findutils, grep, gzip, hostname, ncurses-base, ncurses-bin, perl-base, sed, login, sysvinit-utils, sysvinit, tar, bsdutils, mount, util-linux, libc6-dev | libc-dev, gcc (>= 4:4.4.3), g++ (>= 4:4.4.3), make, dpkg-dev (>= 1.13.5), debhelper (>= 8.0.0)
+Filtered Build-Depends: base-files, base-passwd, bash, coreutils, dash, debianutils, diffutils, dpkg, e2fsprogs, findutils, grep, gzip, hostname, ncurses-base, ncurses-bin, perl-base, sed, login, sysvinit-utils, sysvinit, tar, bsdutils, mount, util-linux, libc6-dev, gcc (>= 4:4.4.3), g++ (>= 4:4.4.3), make, dpkg-dev (>= 1.13.5), debhelper (>= 8.0.0)
+dpkg-deb: building package `sbuild-build-depends-ftpgrab-dummy' in `/«BUILDDIR»/resolver-DHeh9H/apt_archive/sbuild-build-depends-ftpgrab-dummy.deb'.
+OK
+Reading package lists...
+
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Install ftpgrab build dependencies (apt-based resolver)                      │
+└──────────────────────────────────────────────────────────────────────────────┘
+
+Installing build dependencies
+Reading package lists...
+Building dependency tree...
+Reading state information...
+The following extra packages will be installed:
+  bsdmainutils debhelper file gettext gettext-base groff-base html2text
+  intltool-debian libcroco3 libffi5 libglib2.0-0 libmagic1 libpcre3
+  libpipeline1 libunistring0 libxml2 man-db po-debconf
+Suggested packages:
+  wamerican wordlist whois vacation dh-make gettext-doc groff less www-browser
+  libmail-box-perl
+Recommended packages:
+  curl wget lynx-cur autopoint libglib2.0-data shared-mime-info xml-core
+  libmail-sendmail-perl
+The following NEW packages will be installed:
+  bsdmainutils debhelper file gettext gettext-base groff-base html2text
+  intltool-debian libcroco3 libffi5 libglib2.0-0 libmagic1 libpcre3
+  libpipeline1 libunistring0 libxml2 man-db po-debconf
+  sbuild-build-depends-ftpgrab-dummy
+0 upgraded, 19 newly installed, 0 to remove and 0 not upgraded.
+Need to get 9636 kB/9637 kB of archives.
+After this operation, 26.0 MB of additional disk space will be used.
+WARNING: The following packages cannot be authenticated!
+  libpipeline1 libmagic1 libpcre3 libffi5 libglib2.0-0 libxml2 libcroco3
+  libunistring0 bsdmainutils groff-base man-db file gettext-base html2text
+  gettext intltool-debian po-debconf debhelper
+  sbuild-build-depends-ftpgrab-dummy
+Authentication warning overridden.
+Get:1 http://localhost/debian/ unstable/main libpipeline1 amd64 1.2.1-1 [39.2 kB]
+Get:2 http://localhost/debian/ unstable/main libmagic1 amd64 5.11-1 [250 kB]
+Get:3 http://localhost/debian/ unstable/main libpcre3 amd64 1:8.30-4 [242 kB]
+Get:4 http://localhost/debian/ unstable/main libffi5 amd64 3.0.10-3 [24.8 kB]
+Get:5 http://localhost/debian/ unstable/main libglib2.0-0 amd64 2.30.2-6 [1846 kB]
+Get:6 http://localhost/debian/ unstable/main libxml2 amd64 2.7.8.dfsg-7 [895 kB]
+Get:7 http://localhost/debian/ unstable/main libcroco3 amd64 0.6.5-1 [151 kB]
+Get:8 http://localhost/debian/ unstable/main libunistring0 amd64 0.9.3-5 [434 kB]
+Get:9 http://localhost/debian/ unstable/main bsdmainutils amd64 9.0.1 [210 kB]
+Get:10 http://localhost/debian/ unstable/main groff-base amd64 1.21-6 [1150 kB]
+Get:11 http://localhost/debian/ unstable/main man-db amd64 2.6.1-1 [1057 kB]
+Get:12 http://localhost/debian/ unstable/main file amd64 5.11-1 [53.2 kB]
+Get:13 http://localhost/debian/ unstable/main gettext-base amd64 0.18.1.1-5 [154 kB]
+Get:14 http://localhost/debian/ unstable/main html2text amd64 1.3.2a-15 [103 kB]
+Get:15 http://localhost/debian/ unstable/main gettext amd64 0.18.1.1-5 [2080 kB]
+Get:16 http://localhost/debian/ unstable/main intltool-debian all 0.35.0+20060710.1 [30.8 kB]
+Get:17 http://localhost/debian/ unstable/main po-debconf all 1.0.16+nmu2 [224 kB]
+Get:18 http://localhost/debian/ unstable/main debhelper all 9.20120322 [694 kB]
+debconf: delaying package configuration, since apt-utils is not installed
+Fetched 9636 kB in 0s (12.1 MB/s)
+Selecting previously unselected package libpipeline1:amd64.
+(Reading database ... 11028 files and directories currently installed.)
+Unpacking libpipeline1:amd64 (from .../libpipeline1_1.2.1-1_amd64.deb) ...
+Selecting previously unselected package libmagic1:amd64.
+Unpacking libmagic1:amd64 (from .../libmagic1_5.11-1_amd64.deb) ...
+Selecting previously unselected package libpcre3:amd64.
+Unpacking libpcre3:amd64 (from .../libpcre3_1%3a8.30-4_amd64.deb) ...
+Selecting previously unselected package libffi5:amd64.
+Unpacking libffi5:amd64 (from .../libffi5_3.0.10-3_amd64.deb) ...
+Selecting previously unselected package libglib2.0-0:amd64.
+Unpacking libglib2.0-0:amd64 (from .../libglib2.0-0_2.30.2-6_amd64.deb) ...
+Selecting previously unselected package libxml2.
+Unpacking libxml2 (from .../libxml2_2.7.8.dfsg-7_amd64.deb) ...
+Selecting previously unselected package libcroco3:amd64.
+Unpacking libcroco3:amd64 (from .../libcroco3_0.6.5-1_amd64.deb) ...
+Selecting previously unselected package libunistring0:amd64.
+Unpacking libunistring0:amd64 (from .../libunistring0_0.9.3-5_amd64.deb) ...
+Selecting previously unselected package bsdmainutils.
+Unpacking bsdmainutils (from .../bsdmainutils_9.0.1_amd64.deb) ...
+Selecting previously unselected package groff-base.
+Unpacking groff-base (from .../groff-base_1.21-6_amd64.deb) ...
+Selecting previously unselected package man-db.
+Unpacking man-db (from .../man-db_2.6.1-1_amd64.deb) ...
+Selecting previously unselected package file.
+Unpacking file (from .../archives/file_5.11-1_amd64.deb) ...
+Selecting previously unselected package gettext-base.
+Unpacking gettext-base (from .../gettext-base_0.18.1.1-5_amd64.deb) ...
+Selecting previously unselected package html2text.
+Unpacking html2text (from .../html2text_1.3.2a-15_amd64.deb) ...
+Selecting previously unselected package gettext.
+Unpacking gettext (from .../gettext_0.18.1.1-5_amd64.deb) ...
+Selecting previously unselected package intltool-debian.
+Unpacking intltool-debian (from .../intltool-debian_0.35.0+20060710.1_all.deb) ...
+Selecting previously unselected package po-debconf.
+Unpacking po-debconf (from .../po-debconf_1.0.16+nmu2_all.deb) ...
+Selecting previously unselected package debhelper.
+Unpacking debhelper (from .../debhelper_9.20120322_all.deb) ...
+Selecting previously unselected package sbuild-build-depends-ftpgrab-dummy.
+Unpacking sbuild-build-depends-ftpgrab-dummy (from .../sbuild-build-depends-ftpgrab-dummy.deb) ...
+Setting up libpipeline1:amd64 (1.2.1-1) ...
+Setting up libmagic1:amd64 (5.11-1) ...
+Setting up libpcre3:amd64 (1:8.30-4) ...
+Setting up libffi5:amd64 (3.0.10-3) ...
+Setting up libglib2.0-0:amd64 (2.30.2-6) ...
+No schema files found: doing nothing.
+Setting up libxml2 (2.7.8.dfsg-7) ...
+Setting up libcroco3:amd64 (0.6.5-1) ...
+Setting up libunistring0:amd64 (0.9.3-5) ...
+Setting up bsdmainutils (9.0.1) ...
+update-alternatives: using /usr/bin/bsd-write to provide /usr/bin/write (write) in auto mode.
+update-alternatives: using /usr/bin/bsd-from to provide /usr/bin/from (from) in auto mode.
+Setting up groff-base (1.21-6) ...
+Setting up man-db (2.6.1-1) ...
+Building database of manual pages ...
+Setting up file (5.11-1) ...
+Setting up gettext-base (0.18.1.1-5) ...
+Setting up html2text (1.3.2a-15) ...
+Setting up gettext (0.18.1.1-5) ...
+Setting up intltool-debian (0.35.0+20060710.1) ...
+Setting up po-debconf (1.0.16+nmu2) ...
+Setting up debhelper (9.20120322) ...
+Setting up sbuild-build-depends-ftpgrab-dummy (0.invalid.0) ...
+
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Build environment                                                            │
+└──────────────────────────────────────────────────────────────────────────────┘
+
+Kernel: Linux 2.6.32-5-xen-amd64 amd64 (x86_64)
+Toolchain package versions: binutils_2.22-6 dpkg-dev_1.16.2 g++-4.7_4.7.0-1 gcc-4.7_4.7.0-1 libc6-dev_2.13-27 libstdc++6_4.7.0-1 libstdc++6-4.7-dev_4.7.0-1 linux-libc-dev_3.2.13-1
+Package versions: apt_0.8.15.10 base-files_6.7 base-passwd_3.5.24 bash_4.2-1 binutils_2.22-6 bsdmainutils_9.0.1 bsdutils_1:2.20.1-4 build-essential_11.5 bzip2_1.0.6-1 coreutils_8.13-3.1 cpp_4:4.7.0-3exp1 cpp-4.7_4.7.0-1 dash_0.5.7-3 debconf_1.5.42 debconf-i18n_1.5.42 debfoster_2.7-1.1 debhelper_9.20120322 debian-archive-keyring_2010.08.28 debianutils_4.3 diffutils_1:3.2-2 dpkg_1.16.2 dpkg-dev_1.16.2 e2fslibs_1.42.2-1 e2fsprogs_1.42.2-1 fakeroot_1.18.2-1 file_5.11-1 findutils_4.4.2-4 g++_4:4.7.0-3exp1 g++-4.7_4.7.0-1 gcc_4:4.7.0-3exp1 gcc-4.4-base_4.4.7-1 gcc-4.5-base_4.5.3-12 gcc-4.6-base_4.6.3-1 gcc-4.7_4.7.0-1 gcc-4.7-base_4.7.0-1 gettext_0.18.1.1-5 gettext-base_0.18.1.1-5 gnupg_1.4.12-4 gpgv_1.4.12-4 grep_2.10-1 groff-base_1.21-6 gzip_1.4-5 hostname_3.11 html2text_1.3.2a-15 initscripts_2.88dsf-22.1 insserv_1.14.0-2.2 intltool-debian_0.35.0+20060710.1 libacl1_2.2.51-5 libattr1_1:2.4.46-5 libblkid1_2.20.1-4 libbz2-1.0_1.0.6-1 libc-bin_2.13-27 libc-dev-bin_2.13-27 libc6_2.13-27 libc6-dev_2.13-27 libclass-isa-perl_0.36-3 libcloog-ppl0_0.15.11-4 libcomerr2_1.42.2-1 libcroco3_0.6.5-1 libdb5.1_5.1.29-1 libdpkg-perl_1.16.2 libffi5_3.0.10-3 libfile-fcntllock-perl_0.14-1+b1 libgc1c2_1:7.1-8 libgcc1_1:4.7.0-1 libgdbm3_1.8.3-10 libglib2.0-0_2.30.2-6 libgmp10_2:5.0.4+dfsg-1 libgmpxx4ldbl_2:5.0.4+dfsg-1 libgomp1_4.7.0-1 libgpm2_1.20.4-4 libitm1_4.7.0-1 liblocale-gettext-perl_1.05-7+b1 liblzma5_5.1.1alpha+20110809-3 libmagic1_5.11-1 libmount1_2.20.1-4 libmpc2_0.9-4 libmpfr4_3.1.0-4 libncurses5_5.9-5 libncursesw5_5.9-5 libpam-modules_1.1.3-7 libpam-modules-bin_1.1.3-7 libpam-runtime_1.1.3-7 libpam0g_1.1.3-7 libpcre3_1:8.30-4 libpipeline1_1.2.1-1 libppl-c4_0.11.2-6 libppl9_0.11.2-6 libpwl5_0.11.2-6 libquadmath0_4.7.0-1 libreadline6_6.2-8 libselinux1_2.1.9-4 libsemanage-common_2.1.6-4 libsemanage1_2.1.6-4 libsepol1_2.1.4-2 libslang2_2.2.4-7 libss2_1.42.2-1 libstdc++6_4.7.0-1 libstdc++6-4.7-dev_4.7.0-1 libswitch-perl_2.16-2 libtext-charwidth-perl_0.04-7+b1 libtext-iconv-perl_1.7-5 libtext-wrapi18n-perl_0.06-7 libtimedate-perl_1.2000-1 libtinfo5_5.9-5 libunistring0_0.9.3-5 libusb-0.1-4_2:0.1.12-20 libustr-1.0-1_1.0.4-2 libuuid1_2.20.1-4 libxml2_2.7.8.dfsg-7 linux-libc-dev_3.2.13-1 login_1:4.1.5-1 lsb-base_4.1+Debian0 make_3.81-8.1 man-db_2.6.1-1 mawk_1.3.3-17 mount_2.20.1-4 multiarch-support_2.13-27 ncurses-base_5.9-5 ncurses-bin_5.9-5 nvi_1.81.6-8.2 nvi-doc_1.81.6-8.2 passwd_1:4.1.5-1 patch_2.6.1-3 perl_5.14.2-9 perl-base_5.14.2-9 perl-modules_5.14.2-9 po-debconf_1.0.16+nmu2 readline-common_6.2-8 sbuild-build-depends-core-dummy_0.invalid.0 sbuild-build-depends-ftpgrab-dummy_0.invalid.0 sed_4.2.1-9 sensible-utils_0.0.6 sysv-rc_2.88dsf-22.1 sysvinit_2.88dsf-22.1 sysvinit-utils_2.88dsf-22.1 tar_1.26-4 tzdata_2012b-1 ucf_3.0025+nmu2 util-linux_2.20.1-4 xz-utils_5.1.1alpha+20110809-3 zlib1g_1:1.2.6.dfsg-2
+
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Build                                                                        │
+└──────────────────────────────────────────────────────────────────────────────┘
+
+
+Unpack source
+─────────────
+
+gpgv: keyblock resource `/sbuild-nonexistent/.gnupg/trustedkeys.gpg': file open error
+gpgv: Signature made Thu Oct 27 21:05:00 2011 UTC using DSA key ID DDA51280
+gpgv: Can't check signature: public key not found
+dpkg-source: warning: failed to verify signature on ./ftpgrab_0.1.5-2.dsc
+dpkg-source: info: extracting ftpgrab in ftpgrab-0.1.5
+dpkg-source: info: unpacking ftpgrab_0.1.5.orig.tar.gz
+dpkg-source: info: unpacking ftpgrab_0.1.5-2.debian.tar.gz
+dpkg-source: info: applying 0001_Makefile_install
+dpkg-source: info: applying 0002_README
+dpkg-source: info: applying 0003_Makefile_nostrip
+dpkg-source: info: applying 0004_ftpgrabrc
+dpkg-source: info: applying 0005_spelling
+
+Check disc space
+────────────────
+
+Sufficient free space for build
+
+User Environment
+────────────────
+
+HOME=/sbuild-nonexistent
+LOGNAME=user
+PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
+SCHROOT_CHROOT_NAME=unstable-gcc47-amd64-sbuild
+SCHROOT_COMMAND=env
+SCHROOT_GID=1000
+SCHROOT_GROUP=user
+SCHROOT_SESSION_ID=unstable-gcc47-amd64-sbuild-b15bed79-8d53-4445-83a8-9f7f7df78b13
+SCHROOT_UID=1000
+SCHROOT_USER=user
+SHELL=/bin/sh
+USER=user
+
+dpkg-buildpackage
+─────────────────
+
+dpkg-buildpackage: source package ftpgrab
+dpkg-buildpackage: source version 0.1.5-2
+dpkg-buildpackage: source changed by Christian T. Steigies <cts at debian.org>
+ dpkg-source --before-build ftpgrab-0.1.5
+dpkg-buildpackage: host architecture amd64
+ fakeroot debian/rules clean
+dh clean
+   dh_testdir
+   dh_auto_clean
+make[1]: Entering directory `/«PKGBUILDDIR»'
+rm -f *.o ftpgrab fglog.out
+make[1]: Leaving directory `/«PKGBUILDDIR»'
+   dh_clean
+ debian/rules build-arch
+dh build-arch
+   dh_testdir -a
+   dh_auto_configure -a
+   dh_auto_build -a
+make[1]: Entering directory `/«PKGBUILDDIR»'
+g++ -c main.cc -O2 -Wall
+g++ -c fgstring.cc -O2 -Wall
+g++ -c fgexc.cc -O2 -Wall
+g++ -c fgftpcon.cc -O2 -Wall
+g++ -c fgfileinfo.cc -O2 -Wall
+g++ -c fgfilegrab.cc -O2 -Wall
+fgfilegrab.cc: In member function 'void FGFileGrab::FreeResources()':
+fgfilegrab.cc:131:12: warning: deleting object of abstract class type 'FGFilePickerInterface' which has non-virtual destructor will cause undefined behaviour [-Wdelete-non-virtual-dtor]
+g++ -c fgalist.cc -O2 -Wall
+g++ -c fgfshelp.cc -O2 -Wall
+g++ -c fgpickall.cc -O2 -Wall
+g++ -c fgdlist.cc -O2 -Wall
+g++ -c fgdlaction.cc -O2 -Wall
+g++ -c fgactioni.cc -O2 -Wall
+g++ -c fgfilelist.cc -O2 -Wall
+g++ -c fgpickallsync.cc -O2 -Wall
+g++ -c fgdelaction.cc -O2 -Wall
+g++ -c fgfpicki.cc -O2 -Wall
+g++ -c fgpickbest.cc -O2 -Wall
+g++ -c fgscomp.cc -O2 -Wall
+g++ -c fgicomp.cc -O2 -Wall
+g++ -c fgbdfname.cc -O2 -Wall
+g++ -c fgmrank.cc -O2 -Wall
+g++ -c fglogger.cc -O2 -Wall
+g++ -c fgdyymmddcomp.cc -O2 -Wall
+g++ -c fgfncomp.cc -O2 -Wall
+g++ -c fgpickregexp.cc -O2 -Wall
+g++ -c fgpickregexpsync.cc -O2 -Wall
+g++ -c fgconi.cc -O2 -Wall
+g++ -c fgcharcomp.cc -O2 -Wall
+g++ -o ftpgrab main.o fgstring.o fgexc.o fgftpcon.o fgfileinfo.o fgfilegrab.o fgalist.o fgfshelp.o fgpickall.o fgdlist.o fgdlaction.o fgactioni.o fgfilelist.o fgpickallsync.o fgdelaction.o fgfpicki.o fgpickbest.o fgscomp.o fgicomp.o fgbdfname.o fgmrank.o fglogger.o fgdyymmddcomp.o fgfncomp.o fgpickregexp.o fgpickregexpsync.o fgconi.o fgcharcomp.o -Wl -lpthread
+g++: error: unrecognized command line option '-Wl'
+make[1]: *** [ftpgrab] Error 1
+make[1]: Leaving directory `/«PKGBUILDDIR»'
+dh_auto_build: make -j1 returned exit code 2
+make: *** [build-arch] Error 2
+dpkg-buildpackage: error: debian/rules build-arch gave error exit status 2
+────────────────────────────────────────────────────────────────────────────────
+Build finished at 20120330-0154
+
+Finished
+────────
+
+E: Build failure (dpkg-buildpackage died)
+
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Cleanup                                                                      │
+└──────────────────────────────────────────────────────────────────────────────┘
+
+Purging /«BUILDDIR»
+Not cleaning session: cloned chroot in use
+
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Summary                                                                      │
+└──────────────────────────────────────────────────────────────────────────────┘
+
+Architecture: amd64
+Build-Space: 720
+Build-Time: 28
+Distribution: unstable-gcc47
+Fail-Stage: build
+Install-Time: 27
+Job: ftpgrab_0.1.5-2
+Package: ftpgrab
+Package-Time: 106
+Source-Version: 0.1.5-2
+Space: 720
+Status: attempted
+Version: 0.1.5-2
+────────────────────────────────────────────────────────────────────────────────
+Finished at 20120330-0154
+Build needed 00:01:46, 720k disc space
+DC-Build-Status: Failed 109.031874s
+DC-Time-Estimation: 109.031874 versus expected 63 (r/m: 0.730664666666667 ; m: 63.0)

Modified: collab-qa-tools/test/tc_logs.rb
===================================================================
--- collab-qa-tools/test/tc_logs.rb	2012-05-07 03:00:33 UTC (rev 2274)
+++ collab-qa-tools/test/tc_logs.rb	2012-05-07 09:50:33 UTC (rev 2275)
@@ -39,8 +39,8 @@
         end
       else
         puts "Missing #{DSTDIR + '/' + f.gsub(/log$/, 'output')}. Writing it, but check manually!"
-        File::open(DSTDIR + '/' + f.gsub(/log$/, 'output'), "w") do |f|
-          f.print(str)
+        File::open(DSTDIR + '/' + f.gsub(/log$/, 'output'), "w") do |fd|
+          fd.print(str)
         end
         allok = false
       end




More information about the Collab-qa-commits mailing list