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

Lucas Nussbaum lucas at alioth.debian.org
Wed Jun 8 15:00:09 UTC 2011


Author: lucas
Date: 2011-06-08 15:00:09 +0000 (Wed, 08 Jun 2011)
New Revision: 1956

Added:
   collab-qa-tools/test/dest/asterisk-flite_0.1~beta2-1_lsid64.buildoutput
   collab-qa-tools/test/dest/derivations_0.52.20100310-1_lsid64.buildoutput
   collab-qa-tools/test/dest/merkaartor_0.17.2-3_lsid64.buildoutput
   collab-qa-tools/test/dest/stage_2.1.1-1_lsid64.buildoutput
   collab-qa-tools/test/dest/tipcutils_1.0.4-7_lsid64.buildoutput
   collab-qa-tools/test/dest/twidge_1.0.8.1_lsid64.buildoutput
   collab-qa-tools/test/dest/wiipdf_1.4-1_lsid64.buildoutput
   collab-qa-tools/test/source/asterisk-flite_0.1~beta2-1_lsid64.buildlog
   collab-qa-tools/test/source/derivations_0.52.20100310-1_lsid64.buildlog
   collab-qa-tools/test/source/merkaartor_0.17.2-3_lsid64.buildlog
   collab-qa-tools/test/source/stage_2.1.1-1_lsid64.buildlog
   collab-qa-tools/test/source/tipcutils_1.0.4-7_lsid64.buildlog
   collab-qa-tools/test/source/twidge_1.0.8.1_lsid64.buildlog
   collab-qa-tools/test/source/wiipdf_1.4-1_lsid64.buildlog
Modified:
   collab-qa-tools/lib/collab-qa/log-parser-build.rb
Log:
add build-dep failures parser for sbuild 0.62

Modified: collab-qa-tools/lib/collab-qa/log-parser-build.rb
===================================================================
--- collab-qa-tools/lib/collab-qa/log-parser-build.rb	2011-06-08 12:37:50 UTC (rev 1955)
+++ collab-qa-tools/lib/collab-qa/log-parser-build.rb	2011-06-08 15:00:09 UTC (rev 1956)
@@ -153,6 +153,60 @@
     ]
 
     def extract_log_builddeps
+      if not @lines.grep(/^│ Install .* build dependencies \(apt-based resolver\) /).empty?
+        extract_log_builddeps_new
+      else
+        extract_log_builddeps_old
+      end
+    end
+
+    def extract_log_builddeps_new
+      @sum_ml = []
+      @sum_1l = ""
+      beg_full = @lines.grep_index(/^│ Install (.*) build dependencies \(apt-based resolver\) /)[-1]
+      @lines[beg_full].match(/^│ Install (.*) build dependencies \(apt-based resolver\) /)
+      pkg = $1
+
+      @extract = @lines[(beg_full-1)..-1]
+      if not (e = @extract.grep_index(/^E: Broken packages$/)).empty?
+        @extract = @extract[0..e[0]]
+      elsif not (e = @extract.grep_index(/^apt-get failed.$/)).empty?
+        @extract = @extract[0..e[0]]
+      else
+        g = @extract.grep_index(/^│ Cleanup /)[0] - 2
+        @extract = @extract[0..e]
+      end
+      @sum_ml = @extract
+
+      @sum_1l = 'DEPS'
+      b = @extract.index('The following packages have unmet dependencies:')
+      e = @extract.index('E: 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$/
+          @sum_1l = "build-dependency not installable: #{$1}"
+        elsif l =~ /^ sbuild-build-depends-#{pkg}-dummy : Depends: (.* but .* is to be installed)$/
+          @sum_1l = "unsatisfiable build-dependency: #{$1}"
+        elsif l =~ /^ sbuild-build-depends-#{pkg}-dummy : Depends: (.*) but it is not going to be installed$/
+          @sum_1l = "build-dependency not installable: #{$1}"
+        elsif l =~ /^ sbuild-build-depends-#{pkg}-dummy : Depends: (.*)$/
+          @sum_1l = "unsatisfiable build-dependency: #{$1} (versioned dep on a virtual pkg?)"
+        end
+      else # multi-line
+        lines = @extract[b+1..e-1]
+        if lines.all? { |l| l =~ /Depends: .* but (it is not installable|it is not going to be installed)$/ }
+          lines.map! { |l| l.gsub(/.*Depends: (.*) but (it is not installable|it is not going to be installed)$/, '\1') }
+          @sum_1l = "unsatisfiable build-dependencies: #{lines.join(', ')}"
+        elsif lines.all? { |l| l =~ /Depends: .*\)$/ }
+          lines.map! { |l| l.gsub(/.*Depends: (.*\))$/, '\1') }
+          @sum_1l = "unsatisfiable build-dependencies (purely virtual?): #{lines.join(', ')}"
+        else
+          @sum_1l = "unsatisfiable build-dependencies: XXX"
+        end
+      end
+    end
+
+    def extract_log_builddeps_old
       beg_full = @lines.index('** Using build dependencies supplied by package:')
       beg_full = 0 if beg_full.nil?
       if not @lines.grep(/^Source-dependencies not satisfied; skipping/).empty?

Added: collab-qa-tools/test/dest/asterisk-flite_0.1~beta2-1_lsid64.buildoutput
===================================================================
--- collab-qa-tools/test/dest/asterisk-flite_0.1~beta2-1_lsid64.buildoutput	                        (rev 0)
+++ collab-qa-tools/test/dest/asterisk-flite_0.1~beta2-1_lsid64.buildoutput	2011-06-08 15:00:09 UTC (rev 1956)
@@ -0,0 +1,43 @@
+asterisk-flite 0.1~beta2-1 Failed 35.376398
+Reason: BUILDDEPS
+
+1-line summary:
+unsatisfiable build-dependency: asterisk-dev (< 1:1.6.3) but 1:1.8.4.2-1 is to be installed
+
+multi-line summary:
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Install asterisk-flite 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-asterisk-flite-dummy : Depends: asterisk-dev (< 1:1.6.3) but 1:1.8.4.2-1 is to be installed
+E: Broken packages
+
+excerpt for mail:
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Install asterisk-flite 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-asterisk-flite-dummy : Depends: asterisk-dev (< 1:1.6.3) but 1:1.8.4.2-1 is to be installed
+E: Broken packages

Added: collab-qa-tools/test/dest/derivations_0.52.20100310-1_lsid64.buildoutput
===================================================================
--- collab-qa-tools/test/dest/derivations_0.52.20100310-1_lsid64.buildoutput	                        (rev 0)
+++ collab-qa-tools/test/dest/derivations_0.52.20100310-1_lsid64.buildoutput	2011-06-08 15:00:09 UTC (rev 1956)
@@ -0,0 +1,43 @@
+derivations 0.52.20100310-1 Failed 22.812204
+Reason: BUILDDEPS
+
+1-line summary:
+unsatisfiable build-dependency: texlive-base-bin (>= 2005) (versioned dep on a virtual pkg?)
+
+multi-line summary:
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Install derivations 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-derivations-dummy : Depends: texlive-base-bin (>= 2005)
+E: Broken packages
+
+excerpt for mail:
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Install derivations 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-derivations-dummy : Depends: texlive-base-bin (>= 2005)
+E: Broken packages

Added: collab-qa-tools/test/dest/merkaartor_0.17.2-3_lsid64.buildoutput
===================================================================
--- collab-qa-tools/test/dest/merkaartor_0.17.2-3_lsid64.buildoutput	                        (rev 0)
+++ collab-qa-tools/test/dest/merkaartor_0.17.2-3_lsid64.buildoutput	2011-06-08 15:00:09 UTC (rev 1956)
@@ -0,0 +1,47 @@
+merkaartor 0.17.2-3 Failed 28.49801
+Reason: BUILDDEPS
+
+1-line summary:
+unsatisfiable build-dependencies: XXX
+
+multi-line summary:
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Install merkaartor 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-merkaartor-dummy : Depends: libqt4-dev (<= 4:4.7.0~beta1) but 4:4.7.3-1 is to be installed
+                                         Depends: libzbarqt-dev (>= 0.10) but it is not going to be installed
+                                         Depends: libzbar-dev (>= 0.10) but it is not going to be installed
+E: Broken packages
+
+excerpt for mail:
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Install merkaartor 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-merkaartor-dummy : Depends: libqt4-dev (<= 4:4.7.0~beta1) but 4:4.7.3-1 is to be installed
+                                         Depends: libzbarqt-dev (>= 0.10) but it is not going to be installed
+                                         Depends: libzbar-dev (>= 0.10) but it is not going to be installed
+E: Broken packages

Added: collab-qa-tools/test/dest/stage_2.1.1-1_lsid64.buildoutput
===================================================================
--- collab-qa-tools/test/dest/stage_2.1.1-1_lsid64.buildoutput	                        (rev 0)
+++ collab-qa-tools/test/dest/stage_2.1.1-1_lsid64.buildoutput	2011-06-08 15:00:09 UTC (rev 1956)
@@ -0,0 +1,45 @@
+stage 2.1.1-1 Failed 28.115024
+Reason: BUILDDEPS
+
+1-line summary:
+unsatisfiable build-dependencies (purely virtual?): libplayercore2-dev (>= 2.1.0), libplayerc2-dev (>= 2.1.0)
+
+multi-line summary:
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Install stage 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-stage-dummy : Depends: libplayercore2-dev (>= 2.1.0)
+                                    Depends: libplayerc2-dev (>= 2.1.0)
+E: Broken packages
+
+excerpt for mail:
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Install stage 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-stage-dummy : Depends: libplayercore2-dev (>= 2.1.0)
+                                    Depends: libplayerc2-dev (>= 2.1.0)
+E: Broken packages

Added: collab-qa-tools/test/dest/tipcutils_1.0.4-7_lsid64.buildoutput
===================================================================
--- collab-qa-tools/test/dest/tipcutils_1.0.4-7_lsid64.buildoutput	                        (rev 0)
+++ collab-qa-tools/test/dest/tipcutils_1.0.4-7_lsid64.buildoutput	2011-06-08 15:00:09 UTC (rev 1956)
@@ -0,0 +1,43 @@
+tipcutils 1.0.4-7 Failed 18.452295
+Reason: BUILDDEPS
+
+1-line summary:
+unsatisfiable build-dependency: linux-libc-dev (< 2.6.34) but 2.6.39-1+b1 is to be installed
+
+multi-line summary:
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Install tipcutils 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-tipcutils-dummy : Depends: linux-libc-dev (< 2.6.34) but 2.6.39-1+b1 is to be installed
+E: Broken packages
+
+excerpt for mail:
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Install tipcutils 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-tipcutils-dummy : Depends: linux-libc-dev (< 2.6.34) but 2.6.39-1+b1 is to be installed
+E: Broken packages

Added: collab-qa-tools/test/dest/twidge_1.0.8.1_lsid64.buildoutput
===================================================================
--- collab-qa-tools/test/dest/twidge_1.0.8.1_lsid64.buildoutput	                        (rev 0)
+++ collab-qa-tools/test/dest/twidge_1.0.8.1_lsid64.buildoutput	2011-06-08 15:00:09 UTC (rev 1956)
@@ -0,0 +1,47 @@
+twidge 1.0.8.1 Failed 21.83446
+Reason: BUILDDEPS
+
+1-line summary:
+unsatisfiable build-dependencies: libghc6-unix-dev, libghc6-filepath-dev, libghc6-utf8-string-dev
+
+multi-line summary:
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Install twidge 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-twidge-dummy : Depends: libghc6-unix-dev but it is not installable
+                                     Depends: libghc6-filepath-dev but it is not installable
+                                     Depends: libghc6-utf8-string-dev but it is not installable
+E: Broken packages
+
+excerpt for mail:
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Install twidge 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-twidge-dummy : Depends: libghc6-unix-dev but it is not installable
+                                     Depends: libghc6-filepath-dev but it is not installable
+                                     Depends: libghc6-utf8-string-dev but it is not installable
+E: Broken packages

Added: collab-qa-tools/test/dest/wiipdf_1.4-1_lsid64.buildoutput
===================================================================
--- collab-qa-tools/test/dest/wiipdf_1.4-1_lsid64.buildoutput	                        (rev 0)
+++ collab-qa-tools/test/dest/wiipdf_1.4-1_lsid64.buildoutput	2011-06-08 15:00:09 UTC (rev 1956)
@@ -0,0 +1,43 @@
+wiipdf 1.4-1 Failed 25.603709
+Reason: BUILDDEPS
+
+1-line summary:
+build-dependency not installable: libcwiid1-dev
+
+multi-line summary:
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Install wiipdf 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-wiipdf-dummy : Depends: libcwiid1-dev but it is not installable
+E: Broken packages
+
+excerpt for mail:
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Install wiipdf 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-wiipdf-dummy : Depends: libcwiid1-dev but it is not installable
+E: Broken packages

Added: collab-qa-tools/test/source/asterisk-flite_0.1~beta2-1_lsid64.buildlog
===================================================================
--- collab-qa-tools/test/source/asterisk-flite_0.1~beta2-1_lsid64.buildlog	                        (rev 0)
+++ collab-qa-tools/test/source/asterisk-flite_0.1~beta2-1_lsid64.buildlog	2011-06-08 15:00:09 UTC (rev 1956)
@@ -0,0 +1,326 @@
+DC-Build-Header: asterisk-flite 0.1~beta2-1 / Wed Jun 08 01:14:20 +0200 2011
+sbuild (Debian sbuild) 0.62.2 (05 Apr 2011) on talc-31.nancy.grid5000.fr
+
+╔══════════════════════════════════════════════════════════════════════════════╗
+║ asterisk-flite 0.1~beta2-1 (amd64)                         08 Jun 2011 01:14 ║
+╚══════════════════════════════════════════════════════════════════════════════╝
+
+Package: asterisk-flite
+Version: 0.1~beta2-1
+Source Version: 0.1~beta2-1
+Distribution: lsid64
+Architecture: amd64
+
+I: NOTICE: Log filtering will replace 'build/asterisk-flite-OwUUcL' with '«BUILDDIR»'
+I: NOTICE: Log filtering will replace 'var/lib/schroot/mount/lsid64-66d8282e-eac9-4d5e-b26c-4c856f012463' with '«CHROOT»'
+
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Update chroot                                                                │
+└──────────────────────────────────────────────────────────────────────────────┘
+
+Ign http://localhost sid InRelease
+Hit http://localhost sid Release.gpg
+Hit http://localhost sid Release
+Ign http://localhost sid/main Sources/DiffIndex
+Ign http://localhost sid/contrib Sources/DiffIndex
+Ign http://localhost sid/non-free Sources/DiffIndex
+Ign http://localhost sid/main amd64 Packages/DiffIndex
+Ign http://localhost sid/contrib amd64 Packages/DiffIndex
+Ign http://localhost sid/non-free amd64 Packages/DiffIndex
+Ign http://localhost sid/contrib TranslationIndex
+Ign http://localhost sid/main TranslationIndex
+Ign http://localhost sid/non-free TranslationIndex
+Hit http://localhost sid/main Sources
+Hit http://localhost sid/contrib Sources
+Hit http://localhost sid/non-free Sources
+Hit http://localhost sid/main amd64 Packages
+Hit http://localhost sid/contrib amd64 Packages
+Hit http://localhost sid/non-free amd64 Packages
+Ign http://localhost sid/contrib Translation-en
+Ign http://localhost sid/main Translation-en
+Ign http://localhost sid/non-free Translation-en
+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: 'asterisk-flite' packaging is maintained in the 'Git' version control system at:
+git://git.debian.org/git/collab-maint/asterisk-flite.git
+Need to get 15.3 kB of source archives.
+Get:1 http://localhost/debian/ sid/main asterisk-flite 0.1~beta2-1 (dsc) [1316 B]
+Get:2 http://localhost/debian/ sid/main asterisk-flite 0.1~beta2-1 (tar) [10.5 kB]
+Get:3 http://localhost/debian/ sid/main asterisk-flite 0.1~beta2-1 (diff) [3442 B]
+Fetched 15.3 kB in 0s (167 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-qCI1d2/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 package was automatically installed and is no longer required:
+  libdb4.7
+Use 'apt-get autoremove' to remove them.
+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/702 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
+Authentication warning overridden.
+Selecting previously deselected package sbuild-build-depends-core-dummy.
+(Reading database ... 10732 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) ...
+Cannot open /var/lib/schroot/mount/lsid64-66d8282e-eac9-4d5e-b26c-4c856f012463/etc/lsb-release: No such file or directory
+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), cdbs, debhelper (>= 6), asterisk-dev (>= 1:1.6.2), asterisk-dev (<< 1:1.6.3), flite-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), cdbs, debhelper (>= 6), asterisk-dev (>= 1:1.6.2), asterisk-dev (<< 1:1.6.3), flite-dev
+dpkg-deb: building package `sbuild-build-depends-asterisk-flite-dummy' in `/«BUILDDIR»/resolver-gRS5rh/apt_archive/sbuild-build-depends-asterisk-flite-dummy.deb'.
+OK
+Reading package lists...
+
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Install asterisk-flite 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-asterisk-flite-dummy : Depends: asterisk-dev (< 1:1.6.3) but 1:1.8.4.2-1 is to be installed
+E: Broken packages
+apt-get failed.
+Package installation failed
+Not removing build depends: cloned chroot in use
+
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Cleanup                                                                      │
+└──────────────────────────────────────────────────────────────────────────────┘
+
+Purging /«CHROOT»/«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: lsid64
+Fail-Stage: install-deps
+Install-Time: 0
+Job: asterisk-flite_0.1~beta2-1
+Package: asterisk-flite
+Package-Time: 0
+Source-Version: 0.1~beta2-1
+Space: 0
+Status: failed
+Version: 0.1~beta2-1
+────────────────────────────────────────────────────────────────────────────────
+Finished at 20110608-0114
+Build needed 00:00:00, 0k disc space
+E: Package build dependencies not satisfied; skipping
+DC-Message: Failed, but took only 25.956377. Retrying, you never know.
+sbuild (Debian sbuild) 0.62.2 (05 Apr 2011) on talc-31.nancy.grid5000.fr
+
+╔══════════════════════════════════════════════════════════════════════════════╗
+║ asterisk-flite 0.1~beta2-1 (amd64)                         08 Jun 2011 01:14 ║
+╚══════════════════════════════════════════════════════════════════════════════╝
+
+Package: asterisk-flite
+Version: 0.1~beta2-1
+Source Version: 0.1~beta2-1
+Distribution: lsid64
+Architecture: amd64
+
+I: NOTICE: Log filtering will replace 'build/asterisk-flite-fG1RvZ' with '«BUILDDIR»'
+I: NOTICE: Log filtering will replace 'var/lib/schroot/mount/lsid64-18aa47e2-7360-4d41-a4a3-4246def57f10' with '«CHROOT»'
+
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Update chroot                                                                │
+└──────────────────────────────────────────────────────────────────────────────┘
+
+Ign http://localhost sid InRelease
+Hit http://localhost sid Release.gpg
+Hit http://localhost sid Release
+Ign http://localhost sid/main Sources/DiffIndex
+Ign http://localhost sid/contrib Sources/DiffIndex
+Ign http://localhost sid/non-free Sources/DiffIndex
+Ign http://localhost sid/main amd64 Packages/DiffIndex
+Ign http://localhost sid/contrib amd64 Packages/DiffIndex
+Ign http://localhost sid/non-free amd64 Packages/DiffIndex
+Ign http://localhost sid/contrib TranslationIndex
+Ign http://localhost sid/main TranslationIndex
+Ign http://localhost sid/non-free TranslationIndex
+Hit http://localhost sid/main Sources
+Hit http://localhost sid/contrib Sources
+Hit http://localhost sid/non-free Sources
+Hit http://localhost sid/main amd64 Packages
+Hit http://localhost sid/contrib amd64 Packages
+Hit http://localhost sid/non-free amd64 Packages
+Ign http://localhost sid/contrib Translation-en
+Ign http://localhost sid/main Translation-en
+Ign http://localhost sid/non-free Translation-en
+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: 'asterisk-flite' packaging is maintained in the 'Git' version control system at:
+git://git.debian.org/git/collab-maint/asterisk-flite.git
+Need to get 15.3 kB of source archives.
+Get:1 http://localhost/debian/ sid/main asterisk-flite 0.1~beta2-1 (dsc) [1316 B]
+Get:2 http://localhost/debian/ sid/main asterisk-flite 0.1~beta2-1 (tar) [10.5 kB]
+Get:3 http://localhost/debian/ sid/main asterisk-flite 0.1~beta2-1 (diff) [3442 B]
+Fetched 15.3 kB in 0s (0 B/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-TQ4rIr/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 package was automatically installed and is no longer required:
+  libdb4.7
+Use 'apt-get autoremove' to remove them.
+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/700 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
+Authentication warning overridden.
+Selecting previously deselected package sbuild-build-depends-core-dummy.
+(Reading database ... 10732 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) ...
+Cannot open /var/lib/schroot/mount/lsid64-18aa47e2-7360-4d41-a4a3-4246def57f10/etc/lsb-release: No such file or directory
+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), cdbs, debhelper (>= 6), asterisk-dev (>= 1:1.6.2), asterisk-dev (<< 1:1.6.3), flite-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), cdbs, debhelper (>= 6), asterisk-dev (>= 1:1.6.2), asterisk-dev (<< 1:1.6.3), flite-dev
+dpkg-deb: building package `sbuild-build-depends-asterisk-flite-dummy' in `/«BUILDDIR»/resolver-3BegaT/apt_archive/sbuild-build-depends-asterisk-flite-dummy.deb'.
+OK
+Reading package lists...
+
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Install asterisk-flite 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-asterisk-flite-dummy : Depends: asterisk-dev (< 1:1.6.3) but 1:1.8.4.2-1 is to be installed
+E: Broken packages
+apt-get failed.
+Package installation failed
+Not removing build depends: cloned chroot in use
+
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Cleanup                                                                      │
+└──────────────────────────────────────────────────────────────────────────────┘
+
+Purging /«CHROOT»/«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: lsid64
+Fail-Stage: install-deps
+Install-Time: 0
+Job: asterisk-flite_0.1~beta2-1
+Package: asterisk-flite
+Package-Time: 0
+Source-Version: 0.1~beta2-1
+Space: 0
+Status: failed
+Version: 0.1~beta2-1
+────────────────────────────────────────────────────────────────────────────────
+Finished at 20110608-0114
+Build needed 00:00:00, 0k disc space
+E: Package build dependencies not satisfied; skipping
+DC-Build-Status: Failed 35.376398s
+### Content of /var/log/daemon.log ###
+### End of content of /var/log/daemon.log ###
+DC-Time-Estimation: 35.376398 versus expected 32000 (r/m: 903.557891959492 ; m: 35.376398)

Added: collab-qa-tools/test/source/derivations_0.52.20100310-1_lsid64.buildlog
===================================================================
--- collab-qa-tools/test/source/derivations_0.52.20100310-1_lsid64.buildlog	                        (rev 0)
+++ collab-qa-tools/test/source/derivations_0.52.20100310-1_lsid64.buildlog	2011-06-08 15:00:09 UTC (rev 1956)
@@ -0,0 +1,322 @@
+DC-Build-Header: derivations 0.52.20100310-1 / Wed Jun 08 01:20:21 +0200 2011
+sbuild (Debian sbuild) 0.62.2 (05 Apr 2011) on talc-129.nancy.grid5000.fr
+
+╔══════════════════════════════════════════════════════════════════════════════╗
+║ derivations 0.52.20100310-1 (amd64)                        08 Jun 2011 01:20 ║
+╚══════════════════════════════════════════════════════════════════════════════╝
+
+Package: derivations
+Version: 0.52.20100310-1
+Source Version: 0.52.20100310-1
+Distribution: lsid64
+Architecture: amd64
+
+I: NOTICE: Log filtering will replace 'build/derivations-7iFLsl' with '«BUILDDIR»'
+I: NOTICE: Log filtering will replace 'var/lib/schroot/mount/lsid64-11d4ecbb-20d7-47e7-88eb-0b0b56580e2b' with '«CHROOT»'
+
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Update chroot                                                                │
+└──────────────────────────────────────────────────────────────────────────────┘
+
+Ign http://localhost sid InRelease
+Hit http://localhost sid Release.gpg
+Hit http://localhost sid Release
+Ign http://localhost sid/main Sources/DiffIndex
+Ign http://localhost sid/contrib Sources/DiffIndex
+Ign http://localhost sid/non-free Sources/DiffIndex
+Ign http://localhost sid/main amd64 Packages/DiffIndex
+Ign http://localhost sid/contrib amd64 Packages/DiffIndex
+Ign http://localhost sid/non-free amd64 Packages/DiffIndex
+Ign http://localhost sid/contrib TranslationIndex
+Ign http://localhost sid/main TranslationIndex
+Ign http://localhost sid/non-free TranslationIndex
+Hit http://localhost sid/main Sources
+Hit http://localhost sid/contrib Sources
+Hit http://localhost sid/non-free Sources
+Hit http://localhost sid/main amd64 Packages
+Hit http://localhost sid/contrib amd64 Packages
+Hit http://localhost sid/non-free amd64 Packages
+Ign http://localhost sid/contrib Translation-en
+Ign http://localhost sid/main Translation-en
+Ign http://localhost sid/non-free Translation-en
+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 490 kB of source archives.
+Get:1 http://localhost/debian/ sid/main derivations 0.52.20100310-1 (dsc) [1343 B]
+Get:2 http://localhost/debian/ sid/main derivations 0.52.20100310-1 (tar) [465 kB]
+Get:3 http://localhost/debian/ sid/main derivations 0.52.20100310-1 (diff) [23.0 kB]
+Fetched 490 kB in 0s (3641 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-EzU801/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 package was automatically installed and is no longer required:
+  libdb4.7
+Use 'apt-get autoremove' to remove them.
+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/698 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
+Authentication warning overridden.
+Selecting previously deselected package sbuild-build-depends-core-dummy.
+(Reading database ... 10732 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) ...
+Cannot open /var/lib/schroot/mount/lsid64-11d4ecbb-20d7-47e7-88eb-0b0b56580e2b/etc/lsb-release: No such file or directory
+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 (>= 5), texlive-common (>= 2005), texlive-base (>= 2005), texlive-base-bin (>= 2005) | texlive-binaries (>= 2009), texlive-generic-recommended (>= 2005), texlive-latex-base (>= 2005), texlive-pstricks (>= 2005), lmodern (>= 1.00), rubber (>= 1.1), ghostscript (>= 8.62), libpoppler-dev (>= 0.8.7)
+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 (>= 5), texlive-common (>= 2005), texlive-base (>= 2005), texlive-base-bin (>= 2005), texlive-generic-recommended (>= 2005), texlive-latex-base (>= 2005), texlive-pstricks (>= 2005), lmodern (>= 1.00), rubber (>= 1.1), ghostscript (>= 8.62), libpoppler-dev (>= 0.8.7)
+dpkg-deb: building package `sbuild-build-depends-derivations-dummy' in `/«BUILDDIR»/resolver-zAb1FC/apt_archive/sbuild-build-depends-derivations-dummy.deb'.
+OK
+Reading package lists...
+
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Install derivations 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-derivations-dummy : Depends: texlive-base-bin (>= 2005)
+E: Broken packages
+apt-get failed.
+Package installation failed
+Not removing build depends: cloned chroot in use
+
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Cleanup                                                                      │
+└──────────────────────────────────────────────────────────────────────────────┘
+
+Purging /«CHROOT»/«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: lsid64
+Fail-Stage: install-deps
+Install-Time: 0
+Job: derivations_0.52.20100310-1
+Package: derivations
+Package-Time: 0
+Source-Version: 0.52.20100310-1
+Space: 0
+Status: failed
+Version: 0.52.20100310-1
+────────────────────────────────────────────────────────────────────────────────
+Finished at 20110608-0120
+Build needed 00:00:00, 0k disc space
+E: Package build dependencies not satisfied; skipping
+DC-Message: Failed, but took only 13.377025. Retrying, you never know.
+sbuild (Debian sbuild) 0.62.2 (05 Apr 2011) on talc-129.nancy.grid5000.fr
+
+╔══════════════════════════════════════════════════════════════════════════════╗
+║ derivations 0.52.20100310-1 (amd64)                        08 Jun 2011 01:20 ║
+╚══════════════════════════════════════════════════════════════════════════════╝
+
+Package: derivations
+Version: 0.52.20100310-1
+Source Version: 0.52.20100310-1
+Distribution: lsid64
+Architecture: amd64
+
+I: NOTICE: Log filtering will replace 'build/derivations-cFcnbk' with '«BUILDDIR»'
+I: NOTICE: Log filtering will replace 'var/lib/schroot/mount/lsid64-df78d2a3-8b9d-4458-abee-d6561aab8850' with '«CHROOT»'
+
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Update chroot                                                                │
+└──────────────────────────────────────────────────────────────────────────────┘
+
+Ign http://localhost sid InRelease
+Hit http://localhost sid Release.gpg
+Hit http://localhost sid Release
+Ign http://localhost sid/main Sources/DiffIndex
+Ign http://localhost sid/contrib Sources/DiffIndex
+Ign http://localhost sid/non-free Sources/DiffIndex
+Ign http://localhost sid/main amd64 Packages/DiffIndex
+Ign http://localhost sid/contrib amd64 Packages/DiffIndex
+Ign http://localhost sid/non-free amd64 Packages/DiffIndex
+Ign http://localhost sid/contrib TranslationIndex
+Ign http://localhost sid/main TranslationIndex
+Ign http://localhost sid/non-free TranslationIndex
+Hit http://localhost sid/main Sources
+Hit http://localhost sid/contrib Sources
+Hit http://localhost sid/non-free Sources
+Hit http://localhost sid/main amd64 Packages
+Hit http://localhost sid/contrib amd64 Packages
+Hit http://localhost sid/non-free amd64 Packages
+Ign http://localhost sid/contrib Translation-en
+Ign http://localhost sid/main Translation-en
+Ign http://localhost sid/non-free Translation-en
+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 490 kB of source archives.
+Get:1 http://localhost/debian/ sid/main derivations 0.52.20100310-1 (dsc) [1343 B]
+Get:2 http://localhost/debian/ sid/main derivations 0.52.20100310-1 (tar) [465 kB]
+Get:3 http://localhost/debian/ sid/main derivations 0.52.20100310-1 (diff) [23.0 kB]
+Fetched 490 kB in 0s (33.0 MB/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-Ojb3oq/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 package was automatically installed and is no longer required:
+  libdb4.7
+Use 'apt-get autoremove' to remove them.
+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/702 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
+Authentication warning overridden.
+Selecting previously deselected package sbuild-build-depends-core-dummy.
+(Reading database ... 10732 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) ...
+Cannot open /var/lib/schroot/mount/lsid64-df78d2a3-8b9d-4458-abee-d6561aab8850/etc/lsb-release: No such file or directory
+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 (>= 5), texlive-common (>= 2005), texlive-base (>= 2005), texlive-base-bin (>= 2005) | texlive-binaries (>= 2009), texlive-generic-recommended (>= 2005), texlive-latex-base (>= 2005), texlive-pstricks (>= 2005), lmodern (>= 1.00), rubber (>= 1.1), ghostscript (>= 8.62), libpoppler-dev (>= 0.8.7)
+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 (>= 5), texlive-common (>= 2005), texlive-base (>= 2005), texlive-base-bin (>= 2005), texlive-generic-recommended (>= 2005), texlive-latex-base (>= 2005), texlive-pstricks (>= 2005), lmodern (>= 1.00), rubber (>= 1.1), ghostscript (>= 8.62), libpoppler-dev (>= 0.8.7)
+dpkg-deb: building package `sbuild-build-depends-derivations-dummy' in `/«BUILDDIR»/resolver-LDdj6S/apt_archive/sbuild-build-depends-derivations-dummy.deb'.
+OK
+Reading package lists...
+
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Install derivations 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-derivations-dummy : Depends: texlive-base-bin (>= 2005)
+E: Broken packages
+apt-get failed.
+Package installation failed
+Not removing build depends: cloned chroot in use
+
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Cleanup                                                                      │
+└──────────────────────────────────────────────────────────────────────────────┘
+
+Purging /«CHROOT»/«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: lsid64
+Fail-Stage: install-deps
+Install-Time: 0
+Job: derivations_0.52.20100310-1
+Package: derivations
+Package-Time: 0
+Source-Version: 0.52.20100310-1
+Space: 0
+Status: failed
+Version: 0.52.20100310-1
+────────────────────────────────────────────────────────────────────────────────
+Finished at 20110608-0120
+Build needed 00:00:00, 0k disc space
+E: Package build dependencies not satisfied; skipping
+DC-Build-Status: Failed 22.812204s
+### Content of /var/log/daemon.log ###
+### End of content of /var/log/daemon.log ###
+DC-Time-Estimation: 22.812204 versus expected 32000 (r/m: 1401.7579272919 ; m: 22.812204)

Added: collab-qa-tools/test/source/merkaartor_0.17.2-3_lsid64.buildlog
===================================================================
--- collab-qa-tools/test/source/merkaartor_0.17.2-3_lsid64.buildlog	                        (rev 0)
+++ collab-qa-tools/test/source/merkaartor_0.17.2-3_lsid64.buildlog	2011-06-08 15:00:09 UTC (rev 1956)
@@ -0,0 +1,440 @@
+DC-Build-Header: merkaartor 0.17.2-3 / Wed Jun 08 00:52:05 +0200 2011
+sbuild (Debian sbuild) 0.62.2 (05 Apr 2011) on talc-67.nancy.grid5000.fr
+
+╔══════════════════════════════════════════════════════════════════════════════╗
+║ merkaartor 0.17.2-3 (amd64)                                08 Jun 2011 00:52 ║
+╚══════════════════════════════════════════════════════════════════════════════╝
+
+Package: merkaartor
+Version: 0.17.2-3
+Source Version: 0.17.2-3
+Distribution: lsid64
+Architecture: amd64
+
+I: NOTICE: Log filtering will replace 'build/merkaartor-PAcxkk' with '«BUILDDIR»'
+I: NOTICE: Log filtering will replace 'var/lib/schroot/mount/lsid64-5482caef-3fd3-4a0d-88bc-b464bb1ab058' with '«CHROOT»'
+
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Update chroot                                                                │
+└──────────────────────────────────────────────────────────────────────────────┘
+
+Ign http://localhost sid InRelease
+Hit http://localhost sid Release.gpg
+Hit http://localhost sid Release
+Ign http://localhost sid/main Sources/DiffIndex
+Ign http://localhost sid/contrib Sources/DiffIndex
+Ign http://localhost sid/non-free Sources/DiffIndex
+Ign http://localhost sid/main amd64 Packages/DiffIndex
+Ign http://localhost sid/contrib amd64 Packages/DiffIndex
+Ign http://localhost sid/non-free amd64 Packages/DiffIndex
+Ign http://localhost sid/contrib TranslationIndex
+Ign http://localhost sid/main TranslationIndex
+Ign http://localhost sid/non-free TranslationIndex
+Hit http://localhost sid/main Sources
+Hit http://localhost sid/contrib Sources
+Hit http://localhost sid/non-free Sources
+Hit http://localhost sid/main amd64 Packages
+Hit http://localhost sid/contrib amd64 Packages
+Hit http://localhost sid/non-free amd64 Packages
+Ign http://localhost sid/contrib Translation-en
+Ign http://localhost sid/main Translation-en
+Ign http://localhost sid/non-free Translation-en
+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: 'merkaartor' packaging is maintained in the 'Git' version control system at:
+git://git.debian.org/users/bzed/merkaartor.git
+Need to get 8485 kB of source archives.
+Get:1 http://localhost/debian/ sid/main merkaartor 0.17.2-3 (dsc) [2116 B]
+Get:2 http://localhost/debian/ sid/main merkaartor 0.17.2-3 (tar) [8463 kB]
+Get:3 http://localhost/debian/ sid/main merkaartor 0.17.2-3 (diff) [20.5 kB]
+Fetched 8485 kB in 1s (4454 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-PJXZBs/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 package was automatically installed and is no longer required:
+  libdb4.7
+Use 'apt-get autoremove' to remove them.
+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/700 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
+Authentication warning overridden.
+Selecting previously deselected package sbuild-build-depends-core-dummy.
+(Reading database ... 10732 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) ...
+Cannot open /var/lib/schroot/mount/lsid64-5482caef-3fd3-4a0d-88bc-b464bb1ab058/etc/lsb-release: No such file or directory
+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), quilt, zlib1g-dev, libqt4-dev (<= 4:4.7.0~beta1) | libqtwebkit-dev, libqt4-dev (>= 4:4.4.3), libexiv2-dev, sharutils, libgdal1-dev, libxml2-dev, libxslt1-dev, libboost-dev (>= 1.38), libboost-math-dev (>= 1.38), libboost-serialization-dev (>= 1.38), libgps-dev, libzbarqt-dev (>= 0.10), libzbar-dev (>= 0.10), libspatialite-dev, libproj-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), quilt, zlib1g-dev, libqt4-dev (<= 4:4.7.0~beta1), libqt4-dev (>= 4:4.4.3), libexiv2-dev, sharutils, libgdal1-dev, libxml2-dev, libxslt1-dev, libboost-dev (>= 1.38), libboost-math-dev (>= 1.38), libboost-serialization-dev (>= 1.38), libgps-dev, libzbarqt-dev (>= 0.10), libzbar-dev (>= 0.10), libspatialite-dev, libproj-dev
+dpkg-deb: building package `sbuild-build-depends-merkaartor-dummy' in `/«BUILDDIR»/resolver-H5X5Pk/apt_archive/sbuild-build-depends-merkaartor-dummy.deb'.
+OK
+Reading package lists...
+
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Install merkaartor 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-merkaartor-dummy : Depends: libqt4-dev (<= 4:4.7.0~beta1) but 4:4.7.3-1 is to be installed
+                                         Depends: libzbarqt-dev (>= 0.10) but it is not going to be installed
+                                         Depends: libzbar-dev (>= 0.10) but it is not going to be installed
+E: Broken packages
+apt-get failed.
+Package installation failed
+Not removing build depends: cloned chroot in use
+
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Cleanup                                                                      │
+└──────────────────────────────────────────────────────────────────────────────┘
+
+Purging /«CHROOT»/«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: lsid64
+Fail-Stage: install-deps
+Install-Time: 0
+Job: merkaartor_0.17.2-3
+Package: merkaartor
+Package-Time: 0
+Source-Version: 0.17.2-3
+Space: 0
+Status: failed
+Version: 0.17.2-3
+────────────────────────────────────────────────────────────────────────────────
+Finished at 20110608-0052
+Build needed 00:00:00, 0k disc space
+E: Package build dependencies not satisfied; skipping
+DC-Message: Failed, but took only 15.128504. Retrying, you never know.
+sbuild (Debian sbuild) 0.62.2 (05 Apr 2011) on talc-67.nancy.grid5000.fr
+
+╔══════════════════════════════════════════════════════════════════════════════╗
+║ merkaartor 0.17.2-3 (amd64)                                08 Jun 2011 00:52 ║
+╚══════════════════════════════════════════════════════════════════════════════╝
+
+Package: merkaartor
+Version: 0.17.2-3
+Source Version: 0.17.2-3
+Distribution: lsid64
+Architecture: amd64
+
+I: NOTICE: Log filtering will replace 'build/merkaartor-BHgKdR' with '«BUILDDIR»'
+I: NOTICE: Log filtering will replace 'var/lib/schroot/mount/lsid64-23a684fd-1b31-42bc-a986-70647bf7642b' with '«CHROOT»'
+
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Update chroot                                                                │
+└──────────────────────────────────────────────────────────────────────────────┘
+
+Ign http://localhost sid InRelease
+Hit http://localhost sid Release.gpg
+Hit http://localhost sid Release
+Ign http://localhost sid/main Sources/DiffIndex
+Ign http://localhost sid/contrib Sources/DiffIndex
+Ign http://localhost sid/non-free Sources/DiffIndex
+Ign http://localhost sid/main amd64 Packages/DiffIndex
+Ign http://localhost sid/contrib amd64 Packages/DiffIndex
+Ign http://localhost sid/non-free amd64 Packages/DiffIndex
+Ign http://localhost sid/contrib TranslationIndex
+Ign http://localhost sid/main TranslationIndex
+Ign http://localhost sid/non-free TranslationIndex
+Hit http://localhost sid/main Sources
+Hit http://localhost sid/contrib Sources
+Hit http://localhost sid/non-free Sources
+Hit http://localhost sid/main amd64 Packages
+Hit http://localhost sid/contrib amd64 Packages
+Hit http://localhost sid/non-free amd64 Packages
+Ign http://localhost sid/contrib Translation-en
+Ign http://localhost sid/main Translation-en
+Ign http://localhost sid/non-free Translation-en
+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: 'merkaartor' packaging is maintained in the 'Git' version control system at:
+git://git.debian.org/users/bzed/merkaartor.git
+Need to get 8485 kB of source archives.
+Get:1 http://localhost/debian/ sid/main merkaartor 0.17.2-3 (dsc) [2116 B]
+Get:2 http://localhost/debian/ sid/main merkaartor 0.17.2-3 (tar) [8463 kB]
+Get:3 http://localhost/debian/ sid/main merkaartor 0.17.2-3 (diff) [20.5 kB]
+Fetched 8485 kB in 0s (59.2 MB/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-BiG8MO/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 package was automatically installed and is no longer required:
+  libdb4.7
+Use 'apt-get autoremove' to remove them.
+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/702 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
+Authentication warning overridden.
+Selecting previously deselected package sbuild-build-depends-core-dummy.
+(Reading database ... 10732 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) ...
+Cannot open /var/lib/schroot/mount/lsid64-23a684fd-1b31-42bc-a986-70647bf7642b/etc/lsb-release: No such file or directory
+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), quilt, zlib1g-dev, libqt4-dev (<= 4:4.7.0~beta1) | libqtwebkit-dev, libqt4-dev (>= 4:4.4.3), libexiv2-dev, sharutils, libgdal1-dev, libxml2-dev, libxslt1-dev, libboost-dev (>= 1.38), libboost-math-dev (>= 1.38), libboost-serialization-dev (>= 1.38), libgps-dev, libzbarqt-dev (>= 0.10), libzbar-dev (>= 0.10), libspatialite-dev, libproj-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), quilt, zlib1g-dev, libqt4-dev (<= 4:4.7.0~beta1), libqt4-dev (>= 4:4.4.3), libexiv2-dev, sharutils, libgdal1-dev, libxml2-dev, libxslt1-dev, libboost-dev (>= 1.38), libboost-math-dev (>= 1.38), libboost-serialization-dev (>= 1.38), libgps-dev, libzbarqt-dev (>= 0.10), libzbar-dev (>= 0.10), libspatialite-dev, libproj-dev
+dpkg-deb: building package `sbuild-build-depends-merkaartor-dummy' in `/«BUILDDIR»/resolver-g8A8PM/apt_archive/sbuild-build-depends-merkaartor-dummy.deb'.
+OK
+Reading package lists...
+
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Install merkaartor 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-merkaartor-dummy : Depends: libqt4-dev (<= 4:4.7.0~beta1) but 4:4.7.3-1 is to be installed
+                                         Depends: libzbarqt-dev (>= 0.10) but it is not going to be installed
+                                         Depends: libzbar-dev (>= 0.10) but it is not going to be installed
+E: Broken packages
+apt-get failed.
+Package installation failed
+Not removing build depends: cloned chroot in use
+
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Cleanup                                                                      │
+└──────────────────────────────────────────────────────────────────────────────┘
+
+Purging /«CHROOT»/«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: lsid64
+Fail-Stage: install-deps
+Install-Time: 0
+Job: merkaartor_0.17.2-3
+Package: merkaartor
+Package-Time: 0
+Source-Version: 0.17.2-3
+Space: 0
+Status: failed
+Version: 0.17.2-3
+────────────────────────────────────────────────────────────────────────────────
+Finished at 20110608-0052
+Build needed 00:00:00, 0k disc space
+E: Package build dependencies not satisfied; skipping
+DC-Build-Status: Failed 28.49801s
+### Content of /var/log/daemon.log ###
+### End of content of /var/log/daemon.log ###
+DC-Time-Estimation: 28.49801 versus expected 32000 (r/m: 1121.88542252599 ; m: 28.49801)
+DC-Build-Network: USED. See /tmp/rulesafter.vYPWX4 !
+************************************************************
+# Generated by iptables-save v1.4.8 on Wed Jun  8 00:52:34 2011
+*filter
+:INPUT ACCEPT [441116:1111061898]
+:FORWARD ACCEPT [0:0]
+:OUTPUT DROP [0:0]
+:LD - [0:0]
+[63607:680838495] -A OUTPUT -o lo -j ACCEPT 
+[0:0] -A OUTPUT -d 129.88.0.0/16 -j ACCEPT 
+[0:0] -A OUTPUT -d 10.0.0.0/8 -j ACCEPT 
+[0:0] -A OUTPUT -d 192.168.133.0/24 -j ACCEPT 
+[0:0] -A OUTPUT -d 192.168.159.0/24 -j ACCEPT 
+[0:0] -A OUTPUT -d 192.168.160.0/24 -j ACCEPT 
+[0:0] -A OUTPUT -d 10.69.0.0/17 -j ACCEPT 
+[0:0] -A OUTPUT -d 172.28.52.0/22 -j ACCEPT 
+[0:0] -A OUTPUT -d 172.24.0.0/16 -j ACCEPT 
+[0:0] -A OUTPUT -d 131.254.202.0/23 -j ACCEPT 
+[0:0] -A OUTPUT -d 138.96.20.0/22 -j ACCEPT 
+[0:0] -A OUTPUT -d 192.168.22.0/24 -j ACCEPT 
+[148022:10671888] -A OUTPUT -d 172.16.0.0/16 -j ACCEPT 
+[770:81456] -A OUTPUT -d 224.0.0.0/4 -p udp -j ACCEPT 
+[1:40] -A OUTPUT -j LD 
+[1:40] -A LD -j LOG 
+[1:40] -A LD -j REJECT --reject-with icmp-port-unreachable 
+COMMIT
+# Completed on Wed Jun  8 00:52:34 2011
+************************************************************
+--- /tmp/rulesbefore.4Fsb4k	2011-06-08 00:52:05.910624798 +0200
++++ /tmp/rulesafter.vYPWX4	2011-06-08 00:52:34.418625094 +0200
+@@ -1,10 +1,10 @@
+-# Generated by iptables-save v1.4.8 on Wed Jun  8 00:52:05 2011
++# Generated by iptables-save v1.4.8 on Wed Jun  8 00:52:34 2011
+ *filter
+-:INPUT ACCEPT [431077:1084986513]
++:INPUT ACCEPT [441116:1111061898]
+ :FORWARD ACCEPT [0:0]
+ :OUTPUT DROP [0:0]
+ :LD - [0:0]
+-[61108:663701967] -A OUTPUT -o lo -j ACCEPT 
++[63607:680838495] -A OUTPUT -o lo -j ACCEPT 
+ [0:0] -A OUTPUT -d 129.88.0.0/16 -j ACCEPT 
+ [0:0] -A OUTPUT -d 10.0.0.0/8 -j ACCEPT 
+ [0:0] -A OUTPUT -d 192.168.133.0/24 -j ACCEPT 
+@@ -16,10 +16,10 @@
+ [0:0] -A OUTPUT -d 131.254.202.0/23 -j ACCEPT 
+ [0:0] -A OUTPUT -d 138.96.20.0/22 -j ACCEPT 
+ [0:0] -A OUTPUT -d 192.168.22.0/24 -j ACCEPT 
+-[144154:10447980] -A OUTPUT -d 172.16.0.0/16 -j ACCEPT 
+-[763:80800] -A OUTPUT -d 224.0.0.0/4 -p udp -j ACCEPT 
++[148022:10671888] -A OUTPUT -d 172.16.0.0/16 -j ACCEPT 
++[770:81456] -A OUTPUT -d 224.0.0.0/4 -p udp -j ACCEPT 
+ [1:40] -A OUTPUT -j LD 
+ [1:40] -A LD -j LOG 
+ [1:40] -A LD -j REJECT --reject-with icmp-port-unreachable 
+ COMMIT
+-# Completed on Wed Jun  8 00:52:05 2011
++# Completed on Wed Jun  8 00:52:34 2011
+************************************************************
+[   11.569451] ioatdma 0000:00:0f.0: setting latency timer to 64
+[   11.569506]   alloc irq_desc for 56 on node -1
+[   11.569512]   alloc kstat_irqs on node -1
+[   11.569525] ioatdma 0000:00:0f.0: irq 56 for MSI/MSI-X
+[   11.569527]   alloc irq_desc for 57 on node -1
+[   11.569528]   alloc kstat_irqs on node -1
+[   11.569532] ioatdma 0000:00:0f.0: irq 57 for MSI/MSI-X
+[   11.569533]   alloc irq_desc for 58 on node -1
+[   11.569535]   alloc kstat_irqs on node -1
+[   11.569537] ioatdma 0000:00:0f.0: irq 58 for MSI/MSI-X
+[   11.569539]   alloc irq_desc for 59 on node -1
+[   11.569540]   alloc kstat_irqs on node -1
+[   11.569543] ioatdma 0000:00:0f.0: irq 59 for MSI/MSI-X
+[   11.569982] ACPI: SSDT 00000000bff0106e 0016E (v01  PmRef  CPU4Ist 00003000 INTL 20050228)
+[   11.620377] processor LNXCPU:04: registered as cooling_device4
+[   11.621535] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
+[   11.622389] EDAC MC0: Giving out device to 'i5400_edac.c' 'I5400': DEV 0000:00:10.0
+[   11.622417] EDAC PCI0: Giving out device to module 'i5400_edac' controller 'EDAC PCI controller': DEV '0000:00:10.0' (POLLED)
+[   11.809949] ACPI: 
+[   11.810694] i801_smbus 0000:00:1f.3: PCI INT B -> GSI 23 (level, low) -> IRQ 23
+[   11.865988] SSDT 00000000bff011dc 0016E (v01  PmRef  CPU5Ist 00003000 INTL 20050228)
+[   11.867556] Error: Driver 'pcspkr' is already registered, aborting...
+[   11.951188] 
+[   11.960672] processor LNXCPU:05: registered as cooling_device5
+[   11.996177] ACPI: SSDT 00000000bff0134a 0016E (v01  PmRef  Cpu6Ist 00003000 INTL 20050228)
+[   12.046512] processor LNXCPU:06: registered as cooling_device6
+[   12.082107] ACPI: SSDT 00000000bff014b8 0016E (v01  PmRef  Cpu7Ist 00003000 INTL 20050228)
+[   12.132491] processor LNXCPU:07: registered as cooling_device7
+[   12.544961] EXT3 FS on sda3, internal journal
+[   12.785100] kjournald starting.  Commit interval 5 seconds
+[   12.785106] EXT3-fs warning: maximal mount count reached, running e2fsck is recommended
+[   12.785383] EXT3 FS on sda5, internal journal
+[   12.785387] EXT3-fs: mounted filesystem with ordered data mode.
+[   13.308257] e1000e 0000:0f:00.0: irq 54 for MSI/MSI-X
+[   13.364051] e1000e 0000:0f:00.0: irq 54 for MSI/MSI-X
+[   13.366170] ADDRCONF(NETDEV_UP): eth0: link is not ready
+[   16.539945] e1000e: eth0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX/TX
+[   16.589648] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+[   27.156004] eth0: no IPv6 routers present
+[  192.834937] RPC: Registered udp transport module.
+[  192.863206] RPC: Registered tcp transport module.
+[  192.891417] RPC: Registered tcp NFSv4.1 backchannel transport module.
+[  192.966778] Slow work thread pool: Starting up
+[  192.993555] Slow work thread pool: Ready
+[  193.017144] FS-Cache: Loaded
+[  193.056870] FS-Cache: Netfs 'nfs' registered for caching
+[  193.105775] svc: failed to register lockdv1 RPC service (errno 97).
+[  251.336358] Adding 296929352k swap on /dev/sda5.  Priority:-1 extents:1 across:296929352k 
+[  269.758304] ip_tables: (C) 2000-2006 Netfilter Core Team
+[  274.092009] IN= OUT=eth0 SRC=172.16.66.67 DST=224.0.0.22 LEN=40 TOS=0x00 PREC=0xC0 TTL=1 ID=0 DF PROTO=2 
+************************************************************

Added: collab-qa-tools/test/source/stage_2.1.1-1_lsid64.buildlog
===================================================================
--- collab-qa-tools/test/source/stage_2.1.1-1_lsid64.buildlog	                        (rev 0)
+++ collab-qa-tools/test/source/stage_2.1.1-1_lsid64.buildlog	2011-06-08 15:00:09 UTC (rev 1956)
@@ -0,0 +1,434 @@
+DC-Build-Header: stage 2.1.1-1 / Wed Jun 08 01:18:48 +0200 2011
+sbuild (Debian sbuild) 0.62.2 (05 Apr 2011) on talc-93.nancy.grid5000.fr
+
+╔══════════════════════════════════════════════════════════════════════════════╗
+║ stage 2.1.1-1 (amd64)                                      08 Jun 2011 01:18 ║
+╚══════════════════════════════════════════════════════════════════════════════╝
+
+Package: stage
+Version: 2.1.1-1
+Source Version: 2.1.1-1
+Distribution: lsid64
+Architecture: amd64
+
+I: NOTICE: Log filtering will replace 'build/stage-okaRO6' with '«BUILDDIR»'
+I: NOTICE: Log filtering will replace 'var/lib/schroot/mount/lsid64-da92e36e-1a2d-4720-a797-7f2adb004812' with '«CHROOT»'
+
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Update chroot                                                                │
+└──────────────────────────────────────────────────────────────────────────────┘
+
+Ign http://localhost sid InRelease
+Hit http://localhost sid Release.gpg
+Hit http://localhost sid Release
+Ign http://localhost sid/main Sources/DiffIndex
+Ign http://localhost sid/contrib Sources/DiffIndex
+Ign http://localhost sid/non-free Sources/DiffIndex
+Ign http://localhost sid/main amd64 Packages/DiffIndex
+Ign http://localhost sid/contrib amd64 Packages/DiffIndex
+Ign http://localhost sid/non-free amd64 Packages/DiffIndex
+Ign http://localhost sid/contrib TranslationIndex
+Ign http://localhost sid/main TranslationIndex
+Ign http://localhost sid/non-free TranslationIndex
+Hit http://localhost sid/main Sources
+Hit http://localhost sid/contrib Sources
+Hit http://localhost sid/non-free Sources
+Hit http://localhost sid/main amd64 Packages
+Hit http://localhost sid/contrib amd64 Packages
+Hit http://localhost sid/non-free amd64 Packages
+Ign http://localhost sid/contrib Translation-en
+Ign http://localhost sid/main Translation-en
+Ign http://localhost sid/non-free Translation-en
+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 1096 kB of source archives.
+Get:1 http://localhost/debian/ sid/main stage 2.1.1-1 (dsc) [1149 B]
+Get:2 http://localhost/debian/ sid/main stage 2.1.1-1 (tar) [719 kB]
+Get:3 http://localhost/debian/ sid/main stage 2.1.1-1 (diff) [376 kB]
+Fetched 1096 kB in 0s (2747 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-LE3J_b/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 package was automatically installed and is no longer required:
+  libdb4.7
+Use 'apt-get autoremove' to remove them.
+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/702 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
+Authentication warning overridden.
+Selecting previously deselected package sbuild-build-depends-core-dummy.
+(Reading database ... 10732 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) ...
+Cannot open /var/lib/schroot/mount/lsid64-da92e36e-1a2d-4720-a797-7f2adb004812/etc/lsb-release: No such file or directory
+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 (>= 5), autotools-dev, libplayercore2-dev (>= 2.1.0), libplayerc2-dev (>= 2.1.0), libgtk2.0-dev, libltdl3-dev, libjpeg62-dev, dpatch, doxygen, graphviz, libraw1394-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 (>= 5), autotools-dev, libplayercore2-dev (>= 2.1.0), libplayerc2-dev (>= 2.1.0), libgtk2.0-dev, libltdl3-dev, libjpeg62-dev, dpatch, doxygen, graphviz, libraw1394-dev
+dpkg-deb: building package `sbuild-build-depends-stage-dummy' in `/«BUILDDIR»/resolver-Du1QHo/apt_archive/sbuild-build-depends-stage-dummy.deb'.
+OK
+Reading package lists...
+
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Install stage 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-stage-dummy : Depends: libplayercore2-dev (>= 2.1.0)
+                                    Depends: libplayerc2-dev (>= 2.1.0)
+E: Broken packages
+apt-get failed.
+Package installation failed
+Not removing build depends: cloned chroot in use
+
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Cleanup                                                                      │
+└──────────────────────────────────────────────────────────────────────────────┘
+
+Purging /«CHROOT»/«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: lsid64
+Fail-Stage: install-deps
+Install-Time: 0
+Job: stage_2.1.1-1
+Package: stage
+Package-Time: 0
+Source-Version: 2.1.1-1
+Space: 0
+Status: failed
+Version: 2.1.1-1
+────────────────────────────────────────────────────────────────────────────────
+Finished at 20110608-0118
+Build needed 00:00:00, 0k disc space
+E: Package build dependencies not satisfied; skipping
+DC-Message: Failed, but took only 9.59194. Retrying, you never know.
+sbuild (Debian sbuild) 0.62.2 (05 Apr 2011) on talc-93.nancy.grid5000.fr
+
+╔══════════════════════════════════════════════════════════════════════════════╗
+║ stage 2.1.1-1 (amd64)                                      08 Jun 2011 01:18 ║
+╚══════════════════════════════════════════════════════════════════════════════╝
+
+Package: stage
+Version: 2.1.1-1
+Source Version: 2.1.1-1
+Distribution: lsid64
+Architecture: amd64
+
+I: NOTICE: Log filtering will replace 'build/stage-Jx7mFZ' with '«BUILDDIR»'
+I: NOTICE: Log filtering will replace 'var/lib/schroot/mount/lsid64-d6e7a9d1-3afb-42e2-a997-ad0d62257a44' with '«CHROOT»'
+
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Update chroot                                                                │
+└──────────────────────────────────────────────────────────────────────────────┘
+
+Ign http://localhost sid InRelease
+Hit http://localhost sid Release.gpg
+Hit http://localhost sid Release
+Ign http://localhost sid/main Sources/DiffIndex
+Ign http://localhost sid/contrib Sources/DiffIndex
+Ign http://localhost sid/non-free Sources/DiffIndex
+Ign http://localhost sid/main amd64 Packages/DiffIndex
+Ign http://localhost sid/contrib amd64 Packages/DiffIndex
+Ign http://localhost sid/non-free amd64 Packages/DiffIndex
+Ign http://localhost sid/contrib TranslationIndex
+Ign http://localhost sid/main TranslationIndex
+Ign http://localhost sid/non-free TranslationIndex
+Hit http://localhost sid/main Sources
+Hit http://localhost sid/contrib Sources
+Hit http://localhost sid/non-free Sources
+Hit http://localhost sid/main amd64 Packages
+Hit http://localhost sid/contrib amd64 Packages
+Hit http://localhost sid/non-free amd64 Packages
+Ign http://localhost sid/contrib Translation-en
+Ign http://localhost sid/main Translation-en
+Ign http://localhost sid/non-free Translation-en
+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 1096 kB of source archives.
+Get:1 http://localhost/debian/ sid/main stage 2.1.1-1 (dsc) [1149 B]
+Get:2 http://localhost/debian/ sid/main stage 2.1.1-1 (tar) [719 kB]
+Get:3 http://localhost/debian/ sid/main stage 2.1.1-1 (diff) [376 kB]
+Fetched 1096 kB in 0s (44.4 MB/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-_vXY4_/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 package was automatically installed and is no longer required:
+  libdb4.7
+Use 'apt-get autoremove' to remove them.
+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/700 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
+Authentication warning overridden.
+Selecting previously deselected package sbuild-build-depends-core-dummy.
+(Reading database ... 10732 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) ...
+Cannot open /var/lib/schroot/mount/lsid64-d6e7a9d1-3afb-42e2-a997-ad0d62257a44/etc/lsb-release: No such file or directory
+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 (>= 5), autotools-dev, libplayercore2-dev (>= 2.1.0), libplayerc2-dev (>= 2.1.0), libgtk2.0-dev, libltdl3-dev, libjpeg62-dev, dpatch, doxygen, graphviz, libraw1394-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 (>= 5), autotools-dev, libplayercore2-dev (>= 2.1.0), libplayerc2-dev (>= 2.1.0), libgtk2.0-dev, libltdl3-dev, libjpeg62-dev, dpatch, doxygen, graphviz, libraw1394-dev
+dpkg-deb: building package `sbuild-build-depends-stage-dummy' in `/«BUILDDIR»/resolver-VylmKd/apt_archive/sbuild-build-depends-stage-dummy.deb'.
+OK
+Reading package lists...
+
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Install stage 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-stage-dummy : Depends: libplayercore2-dev (>= 2.1.0)
+                                    Depends: libplayerc2-dev (>= 2.1.0)
+E: Broken packages
+apt-get failed.
+Package installation failed
+Not removing build depends: cloned chroot in use
+
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Cleanup                                                                      │
+└──────────────────────────────────────────────────────────────────────────────┘
+
+Purging /«CHROOT»/«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: lsid64
+Fail-Stage: install-deps
+Install-Time: 0
+Job: stage_2.1.1-1
+Package: stage
+Package-Time: 0
+Source-Version: 2.1.1-1
+Space: 0
+Status: failed
+Version: 2.1.1-1
+────────────────────────────────────────────────────────────────────────────────
+Finished at 20110608-0118
+Build needed 00:00:00, 0k disc space
+E: Package build dependencies not satisfied; skipping
+DC-Build-Status: Failed 28.115024s
+### Content of /var/log/daemon.log ###
+### End of content of /var/log/daemon.log ###
+DC-Time-Estimation: 28.115024 versus expected 32000 (r/m: 1137.18149328274 ; m: 28.115024)
+DC-Build-Network: USED. See /tmp/rulesafter.eKEcGj !
+************************************************************
+# Generated by iptables-save v1.4.8 on Wed Jun  8 01:19:16 2011
+*filter
+:INPUT ACCEPT [796524:2355352596]
+:FORWARD ACCEPT [0:0]
+:OUTPUT DROP [0:0]
+:LD - [0:0]
+[143805:1663257907] -A OUTPUT -o lo -j ACCEPT 
+[0:0] -A OUTPUT -d 129.88.0.0/16 -j ACCEPT 
+[0:0] -A OUTPUT -d 10.0.0.0/8 -j ACCEPT 
+[0:0] -A OUTPUT -d 192.168.133.0/24 -j ACCEPT 
+[0:0] -A OUTPUT -d 192.168.159.0/24 -j ACCEPT 
+[0:0] -A OUTPUT -d 192.168.160.0/24 -j ACCEPT 
+[0:0] -A OUTPUT -d 10.69.0.0/17 -j ACCEPT 
+[0:0] -A OUTPUT -d 172.28.52.0/22 -j ACCEPT 
+[0:0] -A OUTPUT -d 172.24.0.0/16 -j ACCEPT 
+[0:0] -A OUTPUT -d 131.254.202.0/23 -j ACCEPT 
+[0:0] -A OUTPUT -d 138.96.20.0/22 -j ACCEPT 
+[0:0] -A OUTPUT -d 192.168.22.0/24 -j ACCEPT 
+[209126:15729649] -A OUTPUT -d 172.16.0.0/16 -j ACCEPT 
+[1353:139048] -A OUTPUT -d 224.0.0.0/4 -p udp -j ACCEPT 
+[1:40] -A OUTPUT -j LD 
+[1:40] -A LD -j LOG 
+[1:40] -A LD -j REJECT --reject-with icmp-port-unreachable 
+COMMIT
+# Completed on Wed Jun  8 01:19:16 2011
+************************************************************
+--- /tmp/rulesbefore.HyCU9a	2011-06-08 01:18:48.370449757 +0200
++++ /tmp/rulesafter.eKEcGj	2011-06-08 01:19:16.494699907 +0200
+@@ -1,10 +1,10 @@
+-# Generated by iptables-save v1.4.8 on Wed Jun  8 01:18:48 2011
++# Generated by iptables-save v1.4.8 on Wed Jun  8 01:19:16 2011
+ *filter
+-:INPUT ACCEPT [793048:2351760126]
++:INPUT ACCEPT [796524:2355352596]
+ :FORWARD ACCEPT [0:0]
+ :OUTPUT DROP [0:0]
+ :LD - [0:0]
+-[143169:1660997505] -A OUTPUT -o lo -j ACCEPT 
++[143805:1663257907] -A OUTPUT -o lo -j ACCEPT 
+ [0:0] -A OUTPUT -d 129.88.0.0/16 -j ACCEPT 
+ [0:0] -A OUTPUT -d 10.0.0.0/8 -j ACCEPT 
+ [0:0] -A OUTPUT -d 192.168.133.0/24 -j ACCEPT 
+@@ -16,10 +16,10 @@
+ [0:0] -A OUTPUT -d 131.254.202.0/23 -j ACCEPT 
+ [0:0] -A OUTPUT -d 138.96.20.0/22 -j ACCEPT 
+ [0:0] -A OUTPUT -d 192.168.22.0/24 -j ACCEPT 
+-[207994:15648022] -A OUTPUT -d 172.16.0.0/16 -j ACCEPT 
+-[1330:136888] -A OUTPUT -d 224.0.0.0/4 -p udp -j ACCEPT 
++[209126:15729649] -A OUTPUT -d 172.16.0.0/16 -j ACCEPT 
++[1353:139048] -A OUTPUT -d 224.0.0.0/4 -p udp -j ACCEPT 
+ [1:40] -A OUTPUT -j LD 
+ [1:40] -A LD -j LOG 
+ [1:40] -A LD -j REJECT --reject-with icmp-port-unreachable 
+ COMMIT
+-# Completed on Wed Jun  8 01:18:48 2011
++# Completed on Wed Jun  8 01:19:16 2011
+************************************************************
+[   11.184782] ACPI: SSDT 00000000bff014b8 0016E (v01  PmRef  Cpu7Ist 00003000 INTL 20050228)
+[   11.235047] processor LNXCPU:07: registered as cooling_device7
+[   11.243219] EDAC MC: Ver: 2.1.0 Mar  7 2011
+[   11.244347] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A03:00/PNP0C0C:00/input/input2
+[   11.244392] ACPI: Power Button [PWRB]
+[   11.245671] ioatdma: Intel(R) QuickData Technology Driver 4.00
+[   11.245734] ioatdma 0000:00:0f.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
+[   11.450216] ioatdma 0000:00:0f.0: setting latency timer to 64
+[   11.450286]   alloc irq_desc for 56 on node -1
+[   11.450289]   alloc kstat_irqs on node -1
+[   11.450303] ioatdma 0000:00:0f.0: irq 56 for MSI/MSI-X
+[   11.450305]   alloc irq_desc for 57 on node -1
+[   11.450309] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
+[   11.450378] ACPI: Power Button [PWRF]
+[   11.452751]   alloc kstat_irqs on node -1
+[   11.516652] ioatdma 0000:00:0f.0: irq 57 for MSI/MSI-X
+[   11.516654]   alloc irq_desc for 58 on node -1
+[   11.516655]   alloc kstat_irqs on node -1
+[   11.516658] ioatdma 0000:00:0f.0: irq 58 for MSI/MSI-X
+[   11.516660]   alloc irq_desc for 59 on node -1
+[   11.516661]   alloc kstat_irqs on node -1
+[   11.516664] ioatdma 0000:00:0f.0: irq 59 for MSI/MSI-X
+[   11.516684] intel_rng: FWH not detected
+[   11.540105] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
+[   11.540482] i801_smbus 0000:00:1f.3: PCI INT B -> GSI 23 (level, low) -> IRQ 23
+[   11.671461] EDAC MC0: Giving out device to 'i5400_edac.c' 'I5400': DEV 0000:00:10.0
+[   11.717415] EDAC PCI0: Giving out device to module 'i5400_edac' controller 'EDAC PCI controller': DEV '0000:00:10.0' (POLLED)
+[   11.954083] Error: Driver 'pcspkr' is already registered, aborting...
+[   12.155261] EXT3 FS on sda3, internal journal
+[   12.400699] kjournald starting.  Commit interval 5 seconds
+[   12.400705] EXT3-fs warning: maximal mount count reached, running e2fsck is recommended
+[   12.400847] EXT3 FS on sda5, internal journal
+[   12.400851] EXT3-fs: mounted filesystem with ordered data mode.
+[   12.884251] e1000e 0000:0f:00.0: irq 54 for MSI/MSI-X
+[   12.940049] e1000e 0000:0f:00.0: irq 54 for MSI/MSI-X
+[   12.942166] ADDRCONF(NETDEV_UP): eth0: link is not ready
+[   15.551934] e1000e: eth0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX/TX
+[   15.601590] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+[   26.240004] eth0: no IPv6 routers present
+[  196.767439] RPC: Registered udp transport module.
+[  196.795670] RPC: Registered tcp transport module.
+[  196.823879] RPC: Registered tcp NFSv4.1 backchannel transport module.
+[  196.893668] Slow work thread pool: Starting up
+[  196.920416] Slow work thread pool: Ready
+[  196.943972] FS-Cache: Loaded
+[  196.990719] FS-Cache: Netfs 'nfs' registered for caching
+[  197.026694] svc: failed to register lockdv1 RPC service (errno 97).
+[  249.096414] Adding 296929352k swap on /dev/sda5.  Priority:-1 extents:1 across:296929352k 
+[  264.983709] ip_tables: (C) 2000-2006 Netfilter Core Team
+[  271.936015] IN= OUT=eth0 SRC=172.16.66.93 DST=224.0.0.22 LEN=40 TOS=0x00 PREC=0xC0 TTL=1 ID=0 DF PROTO=2 
+************************************************************

Added: collab-qa-tools/test/source/tipcutils_1.0.4-7_lsid64.buildlog
===================================================================
--- collab-qa-tools/test/source/tipcutils_1.0.4-7_lsid64.buildlog	                        (rev 0)
+++ collab-qa-tools/test/source/tipcutils_1.0.4-7_lsid64.buildlog	2011-06-08 15:00:09 UTC (rev 1956)
@@ -0,0 +1,432 @@
+DC-Build-Header: tipcutils 1.0.4-7 / Wed Jun 08 00:53:34 +0200 2011
+sbuild (Debian sbuild) 0.62.2 (05 Apr 2011) on talc-65.nancy.grid5000.fr
+
+╔══════════════════════════════════════════════════════════════════════════════╗
+║ tipcutils 1.0.4-7 (amd64)                                  08 Jun 2011 00:53 ║
+╚══════════════════════════════════════════════════════════════════════════════╝
+
+Package: tipcutils
+Version: 1.0.4-7
+Source Version: 1.0.4-7
+Distribution: lsid64
+Architecture: amd64
+
+I: NOTICE: Log filtering will replace 'build/tipcutils-kM6QVS' with '«BUILDDIR»'
+I: NOTICE: Log filtering will replace 'var/lib/schroot/mount/lsid64-ddb7bbb1-6964-44ad-9c25-286ac860e873' with '«CHROOT»'
+
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Update chroot                                                                │
+└──────────────────────────────────────────────────────────────────────────────┘
+
+Ign http://localhost sid InRelease
+Hit http://localhost sid Release.gpg
+Hit http://localhost sid Release
+Ign http://localhost sid/main Sources/DiffIndex
+Ign http://localhost sid/contrib Sources/DiffIndex
+Ign http://localhost sid/non-free Sources/DiffIndex
+Ign http://localhost sid/main amd64 Packages/DiffIndex
+Ign http://localhost sid/contrib amd64 Packages/DiffIndex
+Ign http://localhost sid/non-free amd64 Packages/DiffIndex
+Ign http://localhost sid/contrib TranslationIndex
+Ign http://localhost sid/main TranslationIndex
+Ign http://localhost sid/non-free TranslationIndex
+Hit http://localhost sid/main Sources
+Hit http://localhost sid/contrib Sources
+Hit http://localhost sid/non-free Sources
+Hit http://localhost sid/main amd64 Packages
+Hit http://localhost sid/contrib amd64 Packages
+Hit http://localhost sid/non-free amd64 Packages
+Ign http://localhost sid/contrib Translation-en
+Ign http://localhost sid/main Translation-en
+Ign http://localhost sid/non-free Translation-en
+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 41.6 kB of source archives.
+Get:1 http://localhost/debian/ sid/main tipcutils 1.0.4-7 (dsc) [1692 B]
+Get:2 http://localhost/debian/ sid/main tipcutils 1.0.4-7 (tar) [12.9 kB]
+Get:3 http://localhost/debian/ sid/main tipcutils 1.0.4-7 (diff) [27.0 kB]
+Fetched 41.6 kB in 0s (359 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-hgKBwW/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 package was automatically installed and is no longer required:
+  libdb4.7
+Use 'apt-get autoremove' to remove them.
+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/702 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
+Authentication warning overridden.
+Selecting previously deselected package sbuild-build-depends-core-dummy.
+(Reading database ... 10732 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) ...
+Cannot open /var/lib/schroot/mount/lsid64-ddb7bbb1-6964-44ad-9c25-286ac860e873/etc/lsb-release: No such file or directory
+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 (>= 5), linux-libc-dev (>= 2.6.21-2), linux-libc-dev (<< 2.6.34), po-debconf
+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 (>= 5), linux-libc-dev (>= 2.6.21-2), linux-libc-dev (<< 2.6.34), po-debconf
+dpkg-deb: building package `sbuild-build-depends-tipcutils-dummy' in `/«BUILDDIR»/resolver-G8pkDu/apt_archive/sbuild-build-depends-tipcutils-dummy.deb'.
+OK
+Reading package lists...
+
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Install tipcutils 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-tipcutils-dummy : Depends: linux-libc-dev (< 2.6.34) but 2.6.39-1+b1 is to be installed
+E: Broken packages
+apt-get failed.
+Package installation failed
+Not removing build depends: cloned chroot in use
+
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Cleanup                                                                      │
+└──────────────────────────────────────────────────────────────────────────────┘
+
+Purging /«CHROOT»/«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: lsid64
+Fail-Stage: install-deps
+Install-Time: 0
+Job: tipcutils_1.0.4-7
+Package: tipcutils
+Package-Time: 0
+Source-Version: 1.0.4-7
+Space: 0
+Status: failed
+Version: 1.0.4-7
+────────────────────────────────────────────────────────────────────────────────
+Finished at 20110608-0053
+Build needed 00:00:00, 0k disc space
+E: Package build dependencies not satisfied; skipping
+DC-Message: Failed, but took only 9.258485. Retrying, you never know.
+sbuild (Debian sbuild) 0.62.2 (05 Apr 2011) on talc-65.nancy.grid5000.fr
+
+╔══════════════════════════════════════════════════════════════════════════════╗
+║ tipcutils 1.0.4-7 (amd64)                                  08 Jun 2011 00:53 ║
+╚══════════════════════════════════════════════════════════════════════════════╝
+
+Package: tipcutils
+Version: 1.0.4-7
+Source Version: 1.0.4-7
+Distribution: lsid64
+Architecture: amd64
+
+I: NOTICE: Log filtering will replace 'build/tipcutils-OoQG6C' with '«BUILDDIR»'
+I: NOTICE: Log filtering will replace 'var/lib/schroot/mount/lsid64-f5e69563-e634-4374-ab24-1ac7edc29aa2' with '«CHROOT»'
+
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Update chroot                                                                │
+└──────────────────────────────────────────────────────────────────────────────┘
+
+Ign http://localhost sid InRelease
+Hit http://localhost sid Release.gpg
+Hit http://localhost sid Release
+Ign http://localhost sid/main Sources/DiffIndex
+Ign http://localhost sid/contrib Sources/DiffIndex
+Ign http://localhost sid/non-free Sources/DiffIndex
+Ign http://localhost sid/main amd64 Packages/DiffIndex
+Ign http://localhost sid/contrib amd64 Packages/DiffIndex
+Ign http://localhost sid/non-free amd64 Packages/DiffIndex
+Ign http://localhost sid/contrib TranslationIndex
+Ign http://localhost sid/main TranslationIndex
+Ign http://localhost sid/non-free TranslationIndex
+Hit http://localhost sid/main Sources
+Hit http://localhost sid/contrib Sources
+Hit http://localhost sid/non-free Sources
+Hit http://localhost sid/main amd64 Packages
+Hit http://localhost sid/contrib amd64 Packages
+Hit http://localhost sid/non-free amd64 Packages
+Ign http://localhost sid/contrib Translation-en
+Ign http://localhost sid/main Translation-en
+Ign http://localhost sid/non-free Translation-en
+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 41.6 kB of source archives.
+Get:1 http://localhost/debian/ sid/main tipcutils 1.0.4-7 (dsc) [1692 B]
+Get:2 http://localhost/debian/ sid/main tipcutils 1.0.4-7 (tar) [12.9 kB]
+Get:3 http://localhost/debian/ sid/main tipcutils 1.0.4-7 (diff) [27.0 kB]
+Fetched 41.6 kB in 0s (0 B/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-NcaDzA/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 package was automatically installed and is no longer required:
+  libdb4.7
+Use 'apt-get autoremove' to remove them.
+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/696 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
+Authentication warning overridden.
+Selecting previously deselected package sbuild-build-depends-core-dummy.
+(Reading database ... 10732 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) ...
+Cannot open /var/lib/schroot/mount/lsid64-f5e69563-e634-4374-ab24-1ac7edc29aa2/etc/lsb-release: No such file or directory
+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 (>= 5), linux-libc-dev (>= 2.6.21-2), linux-libc-dev (<< 2.6.34), po-debconf
+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 (>= 5), linux-libc-dev (>= 2.6.21-2), linux-libc-dev (<< 2.6.34), po-debconf
+dpkg-deb: building package `sbuild-build-depends-tipcutils-dummy' in `/«BUILDDIR»/resolver-aSXFvm/apt_archive/sbuild-build-depends-tipcutils-dummy.deb'.
+OK
+Reading package lists...
+
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Install tipcutils 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-tipcutils-dummy : Depends: linux-libc-dev (< 2.6.34) but 2.6.39-1+b1 is to be installed
+E: Broken packages
+apt-get failed.
+Package installation failed
+Not removing build depends: cloned chroot in use
+
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Cleanup                                                                      │
+└──────────────────────────────────────────────────────────────────────────────┘
+
+Purging /«CHROOT»/«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: lsid64
+Fail-Stage: install-deps
+Install-Time: 0
+Job: tipcutils_1.0.4-7
+Package: tipcutils
+Package-Time: 0
+Source-Version: 1.0.4-7
+Space: 0
+Status: failed
+Version: 1.0.4-7
+────────────────────────────────────────────────────────────────────────────────
+Finished at 20110608-0053
+Build needed 00:00:00, 0k disc space
+E: Package build dependencies not satisfied; skipping
+DC-Build-Status: Failed 18.452295s
+### Content of /var/log/daemon.log ###
+### End of content of /var/log/daemon.log ###
+DC-Time-Estimation: 18.452295 versus expected 32000 (r/m: 1733.20162641016 ; m: 18.452295)
+DC-Build-Network: USED. See /tmp/rulesafter.7V90yq !
+************************************************************
+# Generated by iptables-save v1.4.8 on Wed Jun  8 00:53:52 2011
+*filter
+:INPUT ACCEPT [384855:831383703]
+:FORWARD ACCEPT [0:0]
+:OUTPUT DROP [0:0]
+:LD - [0:0]
+[50239:468768683] -A OUTPUT -o lo -j ACCEPT 
+[0:0] -A OUTPUT -d 129.88.0.0/16 -j ACCEPT 
+[0:0] -A OUTPUT -d 10.0.0.0/8 -j ACCEPT 
+[0:0] -A OUTPUT -d 192.168.133.0/24 -j ACCEPT 
+[0:0] -A OUTPUT -d 192.168.159.0/24 -j ACCEPT 
+[0:0] -A OUTPUT -d 192.168.160.0/24 -j ACCEPT 
+[0:0] -A OUTPUT -d 10.69.0.0/17 -j ACCEPT 
+[0:0] -A OUTPUT -d 172.28.52.0/22 -j ACCEPT 
+[0:0] -A OUTPUT -d 172.24.0.0/16 -j ACCEPT 
+[0:0] -A OUTPUT -d 131.254.202.0/23 -j ACCEPT 
+[0:0] -A OUTPUT -d 138.96.20.0/22 -j ACCEPT 
+[0:0] -A OUTPUT -d 192.168.22.0/24 -j ACCEPT 
+[128741:8812257] -A OUTPUT -d 172.16.0.0/16 -j ACCEPT 
+[772:81876] -A OUTPUT -d 224.0.0.0/4 -p udp -j ACCEPT 
+[1:40] -A OUTPUT -j LD 
+[1:40] -A LD -j LOG 
+[1:40] -A LD -j REJECT --reject-with icmp-port-unreachable 
+COMMIT
+# Completed on Wed Jun  8 00:53:52 2011
+************************************************************
+--- /tmp/rulesbefore.RpbG62	2011-06-08 00:53:34.218781159 +0200
++++ /tmp/rulesafter.7V90yq	2011-06-08 00:53:52.679531015 +0200
+@@ -1,10 +1,10 @@
+-# Generated by iptables-save v1.4.8 on Wed Jun  8 00:53:34 2011
++# Generated by iptables-save v1.4.8 on Wed Jun  8 00:53:52 2011
+ *filter
+-:INPUT ACCEPT [383411:831099654]
++:INPUT ACCEPT [384855:831383703]
+ :FORWARD ACCEPT [0:0]
+ :OUTPUT DROP [0:0]
+ :LD - [0:0]
+-[49896:468631593] -A OUTPUT -o lo -j ACCEPT 
++[50239:468768683] -A OUTPUT -o lo -j ACCEPT 
+ [0:0] -A OUTPUT -d 129.88.0.0/16 -j ACCEPT 
+ [0:0] -A OUTPUT -d 10.0.0.0/8 -j ACCEPT 
+ [0:0] -A OUTPUT -d 192.168.133.0/24 -j ACCEPT 
+@@ -16,10 +16,10 @@
+ [0:0] -A OUTPUT -d 131.254.202.0/23 -j ACCEPT 
+ [0:0] -A OUTPUT -d 138.96.20.0/22 -j ACCEPT 
+ [0:0] -A OUTPUT -d 192.168.22.0/24 -j ACCEPT 
+-[128086:8755410] -A OUTPUT -d 172.16.0.0/16 -j ACCEPT 
+-[765:81220] -A OUTPUT -d 224.0.0.0/4 -p udp -j ACCEPT 
++[128741:8812257] -A OUTPUT -d 172.16.0.0/16 -j ACCEPT 
++[772:81876] -A OUTPUT -d 224.0.0.0/4 -p udp -j ACCEPT 
+ [1:40] -A OUTPUT -j LD 
+ [1:40] -A LD -j LOG 
+ [1:40] -A LD -j REJECT --reject-with icmp-port-unreachable 
+ COMMIT
+-# Completed on Wed Jun  8 00:53:34 2011
++# Completed on Wed Jun  8 00:53:52 2011
+************************************************************
+[   11.386862] 
+[   11.395833] intel_rng: FWH not detected
+[   11.419478] processor LNXCPU:04: registered as cooling_device4
+[   11.421303] EDAC MC0: Giving out device to 'i5400_edac.c' 'I5400': DEV 0000:00:10.0
+[   11.421322] EDAC PCI0: Giving out device to module 'i5400_edac' controller 'EDAC PCI controller': DEV '0000:00:10.0' (POLLED)
+[   11.568785] ACPI: SSDT 00000000bff011dc 0016E (v01  PmRef  CPU5Ist 00003000 INTL 20050228)
+[   11.619148] processor LNXCPU:05: registered as cooling_device5
+[   11.654663] ACPI: SSDT 00000000bff0134a 0016E (v01  PmRef  Cpu6Ist 00003000 INTL 20050228)
+[   11.674919] ioatdma: Intel(R) QuickData Technology Driver 4.00
+[   11.674965] ioatdma 0000:00:0f.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
+[   11.781672] 
+[   11.781684] ioatdma 0000:00:0f.0: setting latency timer to 64
+[   11.790654]   alloc irq_desc for 56 on node -1
+[   11.790657]   alloc kstat_irqs on node -1
+[   11.790665] ioatdma 0000:00:0f.0: irq 56 for MSI/MSI-X
+[   11.790667]   alloc irq_desc for 57 on node -1
+[   11.790669]   alloc kstat_irqs on node -1
+[   11.790672] ioatdma 0000:00:0f.0: irq 57 for MSI/MSI-X
+[   11.790674]   alloc irq_desc for 58 on node -1
+[   11.790675]   alloc kstat_irqs on node -1
+[   11.790677] ioatdma 0000:00:0f.0: irq 58 for MSI/MSI-X
+[   11.790679]   alloc irq_desc for 59 on node -1
+[   11.790680]   alloc kstat_irqs on node -1
+[   11.790683] ioatdma 0000:00:0f.0: irq 59 for MSI/MSI-X
+[   11.791152] processor LNXCPU:06: registered as cooling_device6
+[   11.826746] ACPI: SSDT 00000000bff014b8 0016E (v01  PmRef  Cpu7Ist 00003000 INTL 20050228)
+[   11.877098] processor LNXCPU:07: registered as cooling_device7
+[   12.104533] Error: Driver 'pcspkr' is already registered, aborting...
+[   12.270631] EXT3 FS on sda3, internal journal
+[   12.526897] kjournald starting.  Commit interval 5 seconds
+[   12.526903] EXT3-fs warning: maximal mount count reached, running e2fsck is recommended
+[   12.527049] EXT3 FS on sda5, internal journal
+[   12.527053] EXT3-fs: mounted filesystem with ordered data mode.
+[   13.021754] e1000e 0000:0f:00.0: irq 54 for MSI/MSI-X
+[   13.076049] e1000e 0000:0f:00.0: irq 54 for MSI/MSI-X
+[   13.078184] ADDRCONF(NETDEV_UP): eth0: link is not ready
+[   16.131934] e1000e: eth0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX/TX
+[   16.181626] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+[   26.304003] eth0: no IPv6 routers present
+[  191.743647] RPC: Registered udp transport module.
+[  191.771883] RPC: Registered tcp transport module.
+[  191.800095] RPC: Registered tcp NFSv4.1 backchannel transport module.
+[  191.875534] Slow work thread pool: Starting up
+[  191.902286] Slow work thread pool: Ready
+[  191.925854] FS-Cache: Loaded
+[  191.972597] FS-Cache: Netfs 'nfs' registered for caching
+[  192.020905] svc: failed to register lockdv1 RPC service (errno 97).
+[  248.661661] Adding 296929352k swap on /dev/sda5.  Priority:-1 extents:1 across:296929352k 
+[  267.996899] ip_tables: (C) 2000-2006 Netfilter Core Team
+[  268.388009] IN= OUT=eth0 SRC=172.16.66.65 DST=224.0.0.22 LEN=40 TOS=0x00 PREC=0xC0 TTL=1 ID=0 DF PROTO=2 
+************************************************************

Added: collab-qa-tools/test/source/twidge_1.0.8.1_lsid64.buildlog
===================================================================
--- collab-qa-tools/test/source/twidge_1.0.8.1_lsid64.buildlog	                        (rev 0)
+++ collab-qa-tools/test/source/twidge_1.0.8.1_lsid64.buildlog	2011-06-08 15:00:09 UTC (rev 1956)
@@ -0,0 +1,438 @@
+DC-Build-Header: twidge 1.0.8.1 / Wed Jun 08 01:11:20 +0200 2011
+sbuild (Debian sbuild) 0.62.2 (05 Apr 2011) on talc-73.nancy.grid5000.fr
+
+╔══════════════════════════════════════════════════════════════════════════════╗
+║ twidge 1.0.8.1 (amd64)                                     08 Jun 2011 01:11 ║
+╚══════════════════════════════════════════════════════════════════════════════╝
+
+Package: twidge
+Version: 1.0.8.1
+Source Version: 1.0.8.1
+Distribution: lsid64
+Architecture: amd64
+
+I: NOTICE: Log filtering will replace 'build/twidge-AwFzjd' with '«BUILDDIR»'
+I: NOTICE: Log filtering will replace 'var/lib/schroot/mount/lsid64-7cc44cc1-43d0-49fa-8e3b-ac6743fb5e2b' with '«CHROOT»'
+
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Update chroot                                                                │
+└──────────────────────────────────────────────────────────────────────────────┘
+
+Ign http://localhost sid InRelease
+Hit http://localhost sid Release.gpg
+Hit http://localhost sid Release
+Ign http://localhost sid/main Sources/DiffIndex
+Ign http://localhost sid/contrib Sources/DiffIndex
+Ign http://localhost sid/non-free Sources/DiffIndex
+Ign http://localhost sid/main amd64 Packages/DiffIndex
+Ign http://localhost sid/contrib amd64 Packages/DiffIndex
+Ign http://localhost sid/non-free amd64 Packages/DiffIndex
+Ign http://localhost sid/contrib TranslationIndex
+Ign http://localhost sid/main TranslationIndex
+Ign http://localhost sid/non-free TranslationIndex
+Hit http://localhost sid/main Sources
+Hit http://localhost sid/contrib Sources
+Hit http://localhost sid/non-free Sources
+Hit http://localhost sid/main amd64 Packages
+Hit http://localhost sid/contrib amd64 Packages
+Hit http://localhost sid/non-free amd64 Packages
+Ign http://localhost sid/contrib Translation-en
+Ign http://localhost sid/main Translation-en
+Ign http://localhost sid/non-free Translation-en
+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: 'twidge' packaging is maintained in the 'Git' version control system at:
+git://git.complete.org/twidge
+Need to get 56.8 kB of source archives.
+Get:1 http://localhost/debian/ sid/main twidge 1.0.8.1 (dsc) [1911 B]
+Get:2 http://localhost/debian/ sid/main twidge 1.0.8.1 (tar) [54.9 kB]
+Fetched 56.8 kB in 0s (554 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-ZUIehh/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 package was automatically installed and is no longer required:
+  libdb4.7
+Use 'apt-get autoremove' to remove them.
+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/700 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
+Authentication warning overridden.
+Selecting previously deselected package sbuild-build-depends-core-dummy.
+(Reading database ... 10732 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) ...
+Cannot open /var/lib/schroot/mount/lsid64-7cc44cc1-43d0-49fa-8e3b-ac6743fb5e2b/etc/lsb-release: No such file or directory
+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), groff, docbook-utils, jade, lynx, scons, poppler-utils, sgml2x, gtk-doc-tools, ghc6 (>= 6.8.2), haskell-devscripts (>= 0.6.6), libghc6-missingh-dev (>= 1.0.0), libghc6-network-dev, libghc6-unix-dev, libghc6-mtl-dev, libghc6-haxml-dev (>= 1.13.2-3), libghc6-filepath-dev, libghc6-configfile-dev (>= 1.0.4.5), libghc6-hslogger-dev (>= 1.0.7.1), libghc6-regex-posix-dev, libghc6-utf8-string-dev, libghc6-hsh-dev (>= 1.2.6.3), libghc6-hoauth-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), groff, docbook-utils, jade, lynx, scons, poppler-utils, sgml2x, gtk-doc-tools, ghc6 (>= 6.8.2), haskell-devscripts (>= 0.6.6), libghc6-missingh-dev (>= 1.0.0), libghc6-network-dev, libghc6-unix-dev, libghc6-mtl-dev, libghc6-haxml-dev (>= 1.13.2-3), libghc6-filepath-dev, libghc6-configfile-dev (>= 1.0.4.5), libghc6-hslogger-dev (>= 1.0.7.1), libghc6-regex-posix-dev, libghc6-utf8-string-dev, libghc6-hsh-dev (>= 1.2.6.3), libghc6-hoauth-dev
+dpkg-deb: building package `sbuild-build-depends-twidge-dummy' in `/«BUILDDIR»/resolver-SUWaW4/apt_archive/sbuild-build-depends-twidge-dummy.deb'.
+OK
+Reading package lists...
+
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Install twidge 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-twidge-dummy : Depends: libghc6-unix-dev but it is not installable
+                                     Depends: libghc6-filepath-dev but it is not installable
+                                     Depends: libghc6-utf8-string-dev but it is not installable
+E: Broken packages
+apt-get failed.
+Package installation failed
+Not removing build depends: cloned chroot in use
+
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Cleanup                                                                      │
+└──────────────────────────────────────────────────────────────────────────────┘
+
+Purging /«CHROOT»/«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: lsid64
+Fail-Stage: install-deps
+Install-Time: 0
+Job: twidge_1.0.8.1
+Package: twidge
+Package-Time: 0
+Source-Version: 1.0.8.1
+Space: 0
+Status: failed
+Version: 1.0.8.1
+────────────────────────────────────────────────────────────────────────────────
+Finished at 20110608-0111
+Build needed 00:00:00, 0k disc space
+E: Package build dependencies not satisfied; skipping
+DC-Message: Failed, but took only 10.356937. Retrying, you never know.
+sbuild (Debian sbuild) 0.62.2 (05 Apr 2011) on talc-73.nancy.grid5000.fr
+
+╔══════════════════════════════════════════════════════════════════════════════╗
+║ twidge 1.0.8.1 (amd64)                                     08 Jun 2011 01:11 ║
+╚══════════════════════════════════════════════════════════════════════════════╝
+
+Package: twidge
+Version: 1.0.8.1
+Source Version: 1.0.8.1
+Distribution: lsid64
+Architecture: amd64
+
+I: NOTICE: Log filtering will replace 'build/twidge-Lsm3iM' with '«BUILDDIR»'
+I: NOTICE: Log filtering will replace 'var/lib/schroot/mount/lsid64-85848fba-3b56-48b1-8ee6-5c6d0f208473' with '«CHROOT»'
+
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Update chroot                                                                │
+└──────────────────────────────────────────────────────────────────────────────┘
+
+Ign http://localhost sid InRelease
+Hit http://localhost sid Release.gpg
+Hit http://localhost sid Release
+Ign http://localhost sid/main Sources/DiffIndex
+Ign http://localhost sid/contrib Sources/DiffIndex
+Ign http://localhost sid/non-free Sources/DiffIndex
+Ign http://localhost sid/main amd64 Packages/DiffIndex
+Ign http://localhost sid/contrib amd64 Packages/DiffIndex
+Ign http://localhost sid/non-free amd64 Packages/DiffIndex
+Ign http://localhost sid/contrib TranslationIndex
+Ign http://localhost sid/main TranslationIndex
+Ign http://localhost sid/non-free TranslationIndex
+Hit http://localhost sid/main Sources
+Hit http://localhost sid/contrib Sources
+Hit http://localhost sid/non-free Sources
+Hit http://localhost sid/main amd64 Packages
+Hit http://localhost sid/contrib amd64 Packages
+Hit http://localhost sid/non-free amd64 Packages
+Ign http://localhost sid/contrib Translation-en
+Ign http://localhost sid/main Translation-en
+Ign http://localhost sid/non-free Translation-en
+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: 'twidge' packaging is maintained in the 'Git' version control system at:
+git://git.complete.org/twidge
+Need to get 56.8 kB of source archives.
+Get:1 http://localhost/debian/ sid/main twidge 1.0.8.1 (dsc) [1911 B]
+Get:2 http://localhost/debian/ sid/main twidge 1.0.8.1 (tar) [54.9 kB]
+Fetched 56.8 kB in 0s (0 B/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-wkoTjl/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 package was automatically installed and is no longer required:
+  libdb4.7
+Use 'apt-get autoremove' to remove them.
+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/700 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
+Authentication warning overridden.
+Selecting previously deselected package sbuild-build-depends-core-dummy.
+(Reading database ... 10732 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) ...
+Cannot open /var/lib/schroot/mount/lsid64-85848fba-3b56-48b1-8ee6-5c6d0f208473/etc/lsb-release: No such file or directory
+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), groff, docbook-utils, jade, lynx, scons, poppler-utils, sgml2x, gtk-doc-tools, ghc6 (>= 6.8.2), haskell-devscripts (>= 0.6.6), libghc6-missingh-dev (>= 1.0.0), libghc6-network-dev, libghc6-unix-dev, libghc6-mtl-dev, libghc6-haxml-dev (>= 1.13.2-3), libghc6-filepath-dev, libghc6-configfile-dev (>= 1.0.4.5), libghc6-hslogger-dev (>= 1.0.7.1), libghc6-regex-posix-dev, libghc6-utf8-string-dev, libghc6-hsh-dev (>= 1.2.6.3), libghc6-hoauth-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), groff, docbook-utils, jade, lynx, scons, poppler-utils, sgml2x, gtk-doc-tools, ghc6 (>= 6.8.2), haskell-devscripts (>= 0.6.6), libghc6-missingh-dev (>= 1.0.0), libghc6-network-dev, libghc6-unix-dev, libghc6-mtl-dev, libghc6-haxml-dev (>= 1.13.2-3), libghc6-filepath-dev, libghc6-configfile-dev (>= 1.0.4.5), libghc6-hslogger-dev (>= 1.0.7.1), libghc6-regex-posix-dev, libghc6-utf8-string-dev, libghc6-hsh-dev (>= 1.2.6.3), libghc6-hoauth-dev
+dpkg-deb: building package `sbuild-build-depends-twidge-dummy' in `/«BUILDDIR»/resolver-rLrU42/apt_archive/sbuild-build-depends-twidge-dummy.deb'.
+OK
+Reading package lists...
+
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Install twidge 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-twidge-dummy : Depends: libghc6-unix-dev but it is not installable
+                                     Depends: libghc6-filepath-dev but it is not installable
+                                     Depends: libghc6-utf8-string-dev but it is not installable
+E: Broken packages
+apt-get failed.
+Package installation failed
+Not removing build depends: cloned chroot in use
+
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Cleanup                                                                      │
+└──────────────────────────────────────────────────────────────────────────────┘
+
+Purging /«CHROOT»/«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: lsid64
+Fail-Stage: install-deps
+Install-Time: 0
+Job: twidge_1.0.8.1
+Package: twidge
+Package-Time: 0
+Source-Version: 1.0.8.1
+Space: 0
+Status: failed
+Version: 1.0.8.1
+────────────────────────────────────────────────────────────────────────────────
+Finished at 20110608-0111
+Build needed 00:00:00, 0k disc space
+E: Package build dependencies not satisfied; skipping
+DC-Build-Status: Failed 21.83446s
+### Content of /var/log/daemon.log ###
+### End of content of /var/log/daemon.log ###
+DC-Time-Estimation: 21.83446 versus expected 32000 (r/m: 1464.57322690829 ; m: 21.83446)
+DC-Build-Network: USED. See /tmp/rulesafter.j8dEh2 !
+************************************************************
+# Generated by iptables-save v1.4.8 on Wed Jun  8 01:11:42 2011
+*filter
+:INPUT ACCEPT [1077608:3767407317]
+:FORWARD ACCEPT [0:0]
+:OUTPUT DROP [0:0]
+:LD - [0:0]
+[245506:2772464184] -A OUTPUT -o lo -j ACCEPT 
+[0:0] -A OUTPUT -d 129.88.0.0/16 -j ACCEPT 
+[0:0] -A OUTPUT -d 10.0.0.0/8 -j ACCEPT 
+[0:0] -A OUTPUT -d 192.168.133.0/24 -j ACCEPT 
+[0:0] -A OUTPUT -d 192.168.159.0/24 -j ACCEPT 
+[0:0] -A OUTPUT -d 192.168.160.0/24 -j ACCEPT 
+[0:0] -A OUTPUT -d 10.69.0.0/17 -j ACCEPT 
+[0:0] -A OUTPUT -d 172.28.52.0/22 -j ACCEPT 
+[0:0] -A OUTPUT -d 172.24.0.0/16 -j ACCEPT 
+[0:0] -A OUTPUT -d 131.254.202.0/23 -j ACCEPT 
+[0:0] -A OUTPUT -d 138.96.20.0/22 -j ACCEPT 
+[0:0] -A OUTPUT -d 192.168.22.0/24 -j ACCEPT 
+[323059:22750233] -A OUTPUT -d 172.16.0.0/16 -j ACCEPT 
+[1317:134760] -A OUTPUT -d 224.0.0.0/4 -p udp -j ACCEPT 
+[1:40] -A OUTPUT -j LD 
+[1:40] -A LD -j LOG 
+[1:40] -A LD -j REJECT --reject-with icmp-port-unreachable 
+COMMIT
+# Completed on Wed Jun  8 01:11:42 2011
+************************************************************
+--- /tmp/rulesbefore.kPJsYG	2011-06-08 01:11:20.462473930 +0200
++++ /tmp/rulesafter.j8dEh2	2011-06-08 01:11:42.303473842 +0200
+@@ -1,10 +1,10 @@
+-# Generated by iptables-save v1.4.8 on Wed Jun  8 01:11:20 2011
++# Generated by iptables-save v1.4.8 on Wed Jun  8 01:11:42 2011
+ *filter
+-:INPUT ACCEPT [1075980:3767062605]
++:INPUT ACCEPT [1077608:3767407317]
+ :FORWARD ACCEPT [0:0]
+ :OUTPUT DROP [0:0]
+ :LD - [0:0]
+-[245149:2772296732] -A OUTPUT -o lo -j ACCEPT 
++[245506:2772464184] -A OUTPUT -o lo -j ACCEPT 
+ [0:0] -A OUTPUT -d 129.88.0.0/16 -j ACCEPT 
+ [0:0] -A OUTPUT -d 10.0.0.0/8 -j ACCEPT 
+ [0:0] -A OUTPUT -d 192.168.133.0/24 -j ACCEPT 
+@@ -16,10 +16,10 @@
+ [0:0] -A OUTPUT -d 131.254.202.0/23 -j ACCEPT 
+ [0:0] -A OUTPUT -d 138.96.20.0/22 -j ACCEPT 
+ [0:0] -A OUTPUT -d 192.168.22.0/24 -j ACCEPT 
+-[322410:22694028] -A OUTPUT -d 172.16.0.0/16 -j ACCEPT 
+-[1310:134104] -A OUTPUT -d 224.0.0.0/4 -p udp -j ACCEPT 
++[323059:22750233] -A OUTPUT -d 172.16.0.0/16 -j ACCEPT 
++[1317:134760] -A OUTPUT -d 224.0.0.0/4 -p udp -j ACCEPT 
+ [1:40] -A OUTPUT -j LD 
+ [1:40] -A LD -j LOG 
+ [1:40] -A LD -j REJECT --reject-with icmp-port-unreachable 
+ COMMIT
+-# Completed on Wed Jun  8 01:11:20 2011
++# Completed on Wed Jun  8 01:11:42 2011
+************************************************************
+[   11.626919] 
+[   11.635930] intel_rng: FWH not detected
+[   11.659536] processor LNXCPU:03: registered as cooling_device3
+[   11.660197] i801_smbus 0000:00:1f.3: PCI INT B -> GSI 23 (level, low) -> IRQ 23
+[   11.738942] ACPI: SSDT 00000000bff0106e 0016E (v01  PmRef  CPU4Ist 00003000 INTL 20050228)
+[   11.789370] processor LNXCPU:04: registered as cooling_device4
+[   11.794678] ioatdma: Intel(R) QuickData Technology Driver 4.00
+[   11.794742] ioatdma 0000:00:0f.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
+[   11.901639] ioatdma 0000:00:0f.0: setting latency timer to 64
+[   11.901685]   alloc irq_desc for 56 on node -1
+[   11.901687]   alloc kstat_irqs on node -1
+[   11.901696] ioatdma 0000:00:0f.0: irq 56 for MSI/MSI-X
+[   11.901698]   alloc irq_desc for 57 on node -1
+[   11.901699]   alloc kstat_irqs on node -1
+[   11.901702] ioatdma 0000:00:0f.0: irq 57 for MSI/MSI-X
+[   11.901704]   alloc irq_desc for 58 on node -1
+[   11.901705]   alloc kstat_irqs on node -1
+[   11.901712] ioatdma 0000:00:0f.0: irq 58 for MSI/MSI-X
+[   11.901714]   alloc irq_desc for 59 on node -1
+[   11.901715]   alloc kstat_irqs on node -1
+[   11.901717] ioatdma 0000:00:0f.0: irq 59 for MSI/MSI-X
+[   11.902221] ACPI: SSDT 00000000bff011dc 0016E (v01  PmRef  CPU5Ist 00003000 INTL 20050228)
+[   11.952659] processor LNXCPU:05: registered as cooling_device5
+[   11.988217] ACPI: SSDT 00000000bff0134a 0016E (v01  PmRef  Cpu6Ist 00003000 INTL 20050228)
+[   12.038629] processor LNXCPU:06: registered as cooling_device6
+[   12.074156] ACPI: SSDT 00000000bff014b8 0016E (v01  PmRef  Cpu7Ist 00003000 INTL 20050228)
+[   12.124466] processor LNXCPU:07: registered as cooling_device7
+[   12.218550] Error: Driver 'pcspkr' is already registered, aborting...
+[   12.389607] EXT3 FS on sda3, internal journal
+[   12.640575] kjournald starting.  Commit interval 5 seconds
+[   12.640580] EXT3-fs warning: maximal mount count reached, running e2fsck is recommended
+[   12.721494] EXT3 FS on sda5, internal journal
+[   12.747761] EXT3-fs: mounted filesystem with ordered data mode.
+[   13.201756] e1000e 0000:0f:00.0: irq 54 for MSI/MSI-X
+[   13.256049] e1000e 0000:0f:00.0: irq 54 for MSI/MSI-X
+[   13.258182] ADDRCONF(NETDEV_UP): eth0: link is not ready
+[   16.055940] e1000e: eth0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX/TX
+[   16.105481] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+[   26.788004] eth0: no IPv6 routers present
+[  189.917564] RPC: Registered udp transport module.
+[  189.945823] RPC: Registered tcp transport module.
+[  189.974037] RPC: Registered tcp NFSv4.1 backchannel transport module.
+[  190.043378] Slow work thread pool: Starting up
+[  190.070182] Slow work thread pool: Ready
+[  190.093782] FS-Cache: Loaded
+[  190.144987] FS-Cache: Netfs 'nfs' registered for caching
+[  190.196019] svc: failed to register lockdv1 RPC service (errno 97).
+[  250.460046] Adding 296929352k swap on /dev/sda5.  Priority:-1 extents:1 across:296929352k 
+[  269.712992] ip_tables: (C) 2000-2006 Netfilter Core Team
+[  273.360011] IN= OUT=eth0 SRC=172.16.66.73 DST=224.0.0.22 LEN=40 TOS=0x00 PREC=0xC0 TTL=1 ID=0 DF PROTO=2 
+************************************************************

Added: collab-qa-tools/test/source/wiipdf_1.4-1_lsid64.buildlog
===================================================================
--- collab-qa-tools/test/source/wiipdf_1.4-1_lsid64.buildlog	                        (rev 0)
+++ collab-qa-tools/test/source/wiipdf_1.4-1_lsid64.buildlog	2011-06-08 15:00:09 UTC (rev 1956)
@@ -0,0 +1,432 @@
+DC-Build-Header: wiipdf 1.4-1 / Wed Jun 08 00:50:53 +0200 2011
+sbuild (Debian sbuild) 0.62.2 (05 Apr 2011) on talc-8.nancy.grid5000.fr
+
+╔══════════════════════════════════════════════════════════════════════════════╗
+║ wiipdf 1.4-1 (amd64)                                       08 Jun 2011 00:50 ║
+╚══════════════════════════════════════════════════════════════════════════════╝
+
+Package: wiipdf
+Version: 1.4-1
+Source Version: 1.4-1
+Distribution: lsid64
+Architecture: amd64
+
+I: NOTICE: Log filtering will replace 'build/wiipdf-UVXSdm' with '«BUILDDIR»'
+I: NOTICE: Log filtering will replace 'var/lib/schroot/mount/lsid64-894a458d-8436-413c-84bc-5776641fd89f' with '«CHROOT»'
+
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Update chroot                                                                │
+└──────────────────────────────────────────────────────────────────────────────┘
+
+Ign http://localhost sid InRelease
+Hit http://localhost sid Release.gpg
+Hit http://localhost sid Release
+Ign http://localhost sid/main Sources/DiffIndex
+Ign http://localhost sid/contrib Sources/DiffIndex
+Ign http://localhost sid/non-free Sources/DiffIndex
+Ign http://localhost sid/main amd64 Packages/DiffIndex
+Ign http://localhost sid/contrib amd64 Packages/DiffIndex
+Ign http://localhost sid/non-free amd64 Packages/DiffIndex
+Ign http://localhost sid/contrib TranslationIndex
+Ign http://localhost sid/main TranslationIndex
+Ign http://localhost sid/non-free TranslationIndex
+Hit http://localhost sid/main Sources
+Hit http://localhost sid/contrib Sources
+Hit http://localhost sid/non-free Sources
+Hit http://localhost sid/main amd64 Packages
+Hit http://localhost sid/contrib amd64 Packages
+Hit http://localhost sid/non-free amd64 Packages
+Ign http://localhost sid/contrib Translation-en
+Ign http://localhost sid/main Translation-en
+Ign http://localhost sid/non-free Translation-en
+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 6600 B of source archives.
+Get:1 http://localhost/debian/ sid/main wiipdf 1.4-1 (dsc) [1007 B]
+Get:2 http://localhost/debian/ sid/main wiipdf 1.4-1 (tar) [2897 B]
+Get:3 http://localhost/debian/ sid/main wiipdf 1.4-1 (diff) [2696 B]
+Fetched 6600 B in 0s (68.4 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-b3R7Zl/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 package was automatically installed and is no longer required:
+  libdb4.7
+Use 'apt-get autoremove' to remove them.
+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/702 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
+Authentication warning overridden.
+Selecting previously deselected package sbuild-build-depends-core-dummy.
+(Reading database ... 10732 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) ...
+Cannot open /var/lib/schroot/mount/lsid64-894a458d-8436-413c-84bc-5776641fd89f/etc/lsb-release: No such file or directory
+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), libcwiid1-dev, debhelper (>= 5)
+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), libcwiid1-dev, debhelper (>= 5)
+dpkg-deb: building package `sbuild-build-depends-wiipdf-dummy' in `/«BUILDDIR»/resolver-kYrbol/apt_archive/sbuild-build-depends-wiipdf-dummy.deb'.
+OK
+Reading package lists...
+
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Install wiipdf 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-wiipdf-dummy : Depends: libcwiid1-dev but it is not installable
+E: Broken packages
+apt-get failed.
+Package installation failed
+Not removing build depends: cloned chroot in use
+
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Cleanup                                                                      │
+└──────────────────────────────────────────────────────────────────────────────┘
+
+Purging /«CHROOT»/«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: lsid64
+Fail-Stage: install-deps
+Install-Time: 0
+Job: wiipdf_1.4-1
+Package: wiipdf
+Package-Time: 0
+Source-Version: 1.4-1
+Space: 0
+Status: failed
+Version: 1.4-1
+────────────────────────────────────────────────────────────────────────────────
+Finished at 20110608-0050
+Build needed 00:00:00, 0k disc space
+E: Package build dependencies not satisfied; skipping
+DC-Message: Failed, but took only 15.360717. Retrying, you never know.
+sbuild (Debian sbuild) 0.62.2 (05 Apr 2011) on talc-8.nancy.grid5000.fr
+
+╔══════════════════════════════════════════════════════════════════════════════╗
+║ wiipdf 1.4-1 (amd64)                                       08 Jun 2011 00:51 ║
+╚══════════════════════════════════════════════════════════════════════════════╝
+
+Package: wiipdf
+Version: 1.4-1
+Source Version: 1.4-1
+Distribution: lsid64
+Architecture: amd64
+
+I: NOTICE: Log filtering will replace 'build/wiipdf-0hOMux' with '«BUILDDIR»'
+I: NOTICE: Log filtering will replace 'var/lib/schroot/mount/lsid64-f925fa08-6c67-4db3-bc30-025473afb49b' with '«CHROOT»'
+
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Update chroot                                                                │
+└──────────────────────────────────────────────────────────────────────────────┘
+
+Ign http://localhost sid InRelease
+Hit http://localhost sid Release.gpg
+Hit http://localhost sid Release
+Ign http://localhost sid/main Sources/DiffIndex
+Ign http://localhost sid/contrib Sources/DiffIndex
+Ign http://localhost sid/non-free Sources/DiffIndex
+Ign http://localhost sid/main amd64 Packages/DiffIndex
+Ign http://localhost sid/contrib amd64 Packages/DiffIndex
+Ign http://localhost sid/non-free amd64 Packages/DiffIndex
+Ign http://localhost sid/contrib TranslationIndex
+Ign http://localhost sid/main TranslationIndex
+Ign http://localhost sid/non-free TranslationIndex
+Hit http://localhost sid/main Sources
+Hit http://localhost sid/contrib Sources
+Hit http://localhost sid/non-free Sources
+Hit http://localhost sid/main amd64 Packages
+Hit http://localhost sid/contrib amd64 Packages
+Hit http://localhost sid/non-free amd64 Packages
+Ign http://localhost sid/contrib Translation-en
+Ign http://localhost sid/main Translation-en
+Ign http://localhost sid/non-free Translation-en
+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 6600 B of source archives.
+Get:1 http://localhost/debian/ sid/main wiipdf 1.4-1 (dsc) [1007 B]
+Get:2 http://localhost/debian/ sid/main wiipdf 1.4-1 (tar) [2897 B]
+Get:3 http://localhost/debian/ sid/main wiipdf 1.4-1 (diff) [2696 B]
+Fetched 6600 B in 0s (0 B/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-oUBnxn/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 package was automatically installed and is no longer required:
+  libdb4.7
+Use 'apt-get autoremove' to remove them.
+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/702 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
+Authentication warning overridden.
+Selecting previously deselected package sbuild-build-depends-core-dummy.
+(Reading database ... 10732 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) ...
+Cannot open /var/lib/schroot/mount/lsid64-f925fa08-6c67-4db3-bc30-025473afb49b/etc/lsb-release: No such file or directory
+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), libcwiid1-dev, debhelper (>= 5)
+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), libcwiid1-dev, debhelper (>= 5)
+dpkg-deb: building package `sbuild-build-depends-wiipdf-dummy' in `/«BUILDDIR»/resolver-UYjD8R/apt_archive/sbuild-build-depends-wiipdf-dummy.deb'.
+OK
+Reading package lists...
+
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Install wiipdf 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-wiipdf-dummy : Depends: libcwiid1-dev but it is not installable
+E: Broken packages
+apt-get failed.
+Package installation failed
+Not removing build depends: cloned chroot in use
+
+┌──────────────────────────────────────────────────────────────────────────────┐
+│ Cleanup                                                                      │
+└──────────────────────────────────────────────────────────────────────────────┘
+
+Purging /«CHROOT»/«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: lsid64
+Fail-Stage: install-deps
+Install-Time: 0
+Job: wiipdf_1.4-1
+Package: wiipdf
+Package-Time: 0
+Source-Version: 1.4-1
+Space: 0
+Status: failed
+Version: 1.4-1
+────────────────────────────────────────────────────────────────────────────────
+Finished at 20110608-0051
+Build needed 00:00:00, 0k disc space
+E: Package build dependencies not satisfied; skipping
+DC-Build-Status: Failed 25.603709s
+### Content of /var/log/daemon.log ###
+### End of content of /var/log/daemon.log ###
+DC-Time-Estimation: 25.603709 versus expected 32000 (r/m: 1248.81892271936 ; m: 25.603709)
+DC-Build-Network: USED. See /tmp/rulesafter.AiHkye !
+************************************************************
+# Generated by iptables-save v1.4.8 on Wed Jun  8 00:51:19 2011
+*filter
+:INPUT ACCEPT [422621:823517387]
+:FORWARD ACCEPT [0:0]
+:OUTPUT DROP [0:0]
+:LD - [0:0]
+[45811:386538645] -A OUTPUT -o lo -j ACCEPT 
+[0:0] -A OUTPUT -d 129.88.0.0/16 -j ACCEPT 
+[0:0] -A OUTPUT -d 10.0.0.0/8 -j ACCEPT 
+[0:0] -A OUTPUT -d 192.168.133.0/24 -j ACCEPT 
+[0:0] -A OUTPUT -d 192.168.159.0/24 -j ACCEPT 
+[0:0] -A OUTPUT -d 192.168.160.0/24 -j ACCEPT 
+[0:0] -A OUTPUT -d 10.69.0.0/17 -j ACCEPT 
+[0:0] -A OUTPUT -d 172.28.52.0/22 -j ACCEPT 
+[0:0] -A OUTPUT -d 172.24.0.0/16 -j ACCEPT 
+[0:0] -A OUTPUT -d 131.254.202.0/23 -j ACCEPT 
+[0:0] -A OUTPUT -d 138.96.20.0/22 -j ACCEPT 
+[0:0] -A OUTPUT -d 192.168.22.0/24 -j ACCEPT 
+[150833:10038180] -A OUTPUT -d 172.16.0.0/16 -j ACCEPT 
+[614:64996] -A OUTPUT -d 224.0.0.0/4 -p udp -j ACCEPT 
+[1:40] -A OUTPUT -j LD 
+[1:40] -A LD -j LOG 
+[1:40] -A LD -j REJECT --reject-with icmp-port-unreachable 
+COMMIT
+# Completed on Wed Jun  8 00:51:19 2011
+************************************************************
+--- /tmp/rulesbefore.4q25lA	2011-06-08 00:50:53.922718890 +0200
++++ /tmp/rulesafter.AiHkye	2011-06-08 00:51:19.534969030 +0200
+@@ -1,10 +1,10 @@
+-# Generated by iptables-save v1.4.8 on Wed Jun  8 00:50:53 2011
++# Generated by iptables-save v1.4.8 on Wed Jun  8 00:51:19 2011
+ *filter
+-:INPUT ACCEPT [419523:823181179]
++:INPUT ACCEPT [422621:823517387]
+ :FORWARD ACCEPT [0:0]
+ :OUTPUT DROP [0:0]
+ :LD - [0:0]
+-[45470:386471761] -A OUTPUT -o lo -j ACCEPT 
++[45811:386538645] -A OUTPUT -o lo -j ACCEPT 
+ [0:0] -A OUTPUT -d 129.88.0.0/16 -j ACCEPT 
+ [0:0] -A OUTPUT -d 10.0.0.0/8 -j ACCEPT 
+ [0:0] -A OUTPUT -d 192.168.133.0/24 -j ACCEPT 
+@@ -16,10 +16,10 @@
+ [0:0] -A OUTPUT -d 131.254.202.0/23 -j ACCEPT 
+ [0:0] -A OUTPUT -d 138.96.20.0/22 -j ACCEPT 
+ [0:0] -A OUTPUT -d 192.168.22.0/24 -j ACCEPT 
+-[150205:9982753] -A OUTPUT -d 172.16.0.0/16 -j ACCEPT 
+-[586:62464] -A OUTPUT -d 224.0.0.0/4 -p udp -j ACCEPT 
++[150833:10038180] -A OUTPUT -d 172.16.0.0/16 -j ACCEPT 
++[614:64996] -A OUTPUT -d 224.0.0.0/4 -p udp -j ACCEPT 
+ [1:40] -A OUTPUT -j LD 
+ [1:40] -A LD -j LOG 
+ [1:40] -A LD -j REJECT --reject-with icmp-port-unreachable 
+ COMMIT
+-# Completed on Wed Jun  8 00:50:53 2011
++# Completed on Wed Jun  8 00:51:19 2011
+************************************************************
+[   11.330839] ioatdma: Intel(R) QuickData Technology Driver 4.00
+[   11.330915] ioatdma 0000:00:0f.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
+[   11.439238] ioatdma 0000:00:0f.0: setting latency timer to 64
+[   11.439307]   alloc irq_desc for 56 on node -1
+[   11.439309]   alloc kstat_irqs on node -1
+[   11.439319] ioatdma 0000:00:0f.0: irq 56 for MSI/MSI-X
+[   11.439321]   alloc irq_desc for 57 on node -1
+[   11.439322]   alloc kstat_irqs on node -1
+[   11.439326] ioatdma 0000:00:0f.0: irq 57 for MSI/MSI-X
+[   11.439327]   alloc irq_desc for 58 on node -1
+[   11.439328]   alloc kstat_irqs on node -1
+[   11.439331] ioatdma 0000:00:0f.0: irq 58 for MSI/MSI-X
+[   11.439333]   alloc irq_desc for 59 on node -1
+[   11.439334]   alloc kstat_irqs on node -1
+[   11.439337] ioatdma 0000:00:0f.0: irq 59 for MSI/MSI-X
+[   11.439750] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
+[   11.479999] ACPI: 
+[   11.486754] i801_smbus 0000:00:1f.3: PCI INT B -> GSI 23 (level, low) -> IRQ 23
+[   11.536030] SSDT 00000000bff011dc 0016E (v01  PmRef  CPU5Ist 00003000 INTL 20050228)
+[   11.583136] processor LNXCPU:05: registered as cooling_device5
+[   11.585892] EDAC MC: Ver: 2.1.0 Mar  7 2011
+[   11.643796] ACPI: SSDT 00000000bff0134a 0016E (v01  PmRef  Cpu6Ist 00003000 INTL 20050228)
+[   11.694084] processor LNXCPU:06: registered as cooling_device6
+[   11.729566] ACPI: SSDT 00000000bff014b8 0016E (v01  PmRef  Cpu7Ist 00003000 INTL 20050228)
+[   11.779892] processor LNXCPU:07: registered as cooling_device7
+[   11.798375] EDAC MC0: Giving out device to 'i5400_edac.c' 'I5400': DEV 0000:00:10.0
+[   11.798395] EDAC PCI0: Giving out device to module 'i5400_edac' controller 'EDAC PCI controller': DEV '0000:00:10.0' (POLLED)
+[   11.950644] Error: Driver 'pcspkr' is already registered, aborting...
+[   12.281256] EXT3 FS on sda3, internal journal
+[   12.530092] kjournald starting.  Commit interval 5 seconds
+[   12.530099] EXT3-fs warning: maximal mount count reached, running e2fsck is recommended
+[   12.611019] EXT3 FS on sda5, internal journal
+[   12.637290] EXT3-fs: mounted filesystem with ordered data mode.
+[   13.060262] e1000e 0000:0f:00.0: irq 54 for MSI/MSI-X
+[   13.116048] e1000e 0000:0f:00.0: irq 54 for MSI/MSI-X
+[   13.118178] ADDRCONF(NETDEV_UP): eth0: link is not ready
+[   15.747942] e1000e: eth0 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX/TX
+[   15.797630] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
+[   26.284004] eth0: no IPv6 routers present
+[  185.511983] RPC: Registered udp transport module.
+[  185.540235] RPC: Registered tcp transport module.
+[  185.568446] RPC: Registered tcp NFSv4.1 backchannel transport module.
+[  185.637878] Slow work thread pool: Starting up
+[  185.664605] Slow work thread pool: Ready
+[  185.688197] FS-Cache: Loaded
+[  185.739549] FS-Cache: Netfs 'nfs' registered for caching
+[  185.775220] svc: failed to register lockdv1 RPC service (errno 97).
+[  242.200753] Adding 296929352k swap on /dev/sda5.  Priority:-1 extents:1 across:296929352k 
+[  261.596692] ip_tables: (C) 2000-2006 Netfilter Core Team
+[  263.944011] IN= OUT=eth0 SRC=172.16.66.8 DST=224.0.0.22 LEN=40 TOS=0x00 PREC=0xC0 TTL=1 ID=0 DF PROTO=2 
+************************************************************




More information about the Collab-qa-commits mailing list