[Collab-qa-commits] r735 - in collab-qa-tools: . bin lib/collab-qa test/dest test/source

lucas at alioth.debian.org lucas at alioth.debian.org
Tue Mar 11 08:06:39 UTC 2008


Author: lucas
Date: 2008-03-11 08:06:38 +0000 (Tue, 11 Mar 2008)
New Revision: 735

Added:
   collab-qa-tools/test/dest/ktimetrace_0.2.36-4.1_sid32.buildoutput
   collab-qa-tools/test/dest/tomboy_0.8.2-1_sid32.buildoutput
   collab-qa-tools/test/dest/ttf-jsmath_0.01-1_sid32.buildoutput
   collab-qa-tools/test/source/ktimetrace_0.2.36-4.1_sid32.buildlog
   collab-qa-tools/test/source/tomboy_0.8.2-1_sid32.buildlog
   collab-qa-tools/test/source/ttf-jsmath_0.01-1_sid32.buildlog
Modified:
   collab-qa-tools/InstalledFiles
   collab-qa-tools/bin/cqa-fetchbugs
   collab-qa-tools/bin/cqa-scanlogs
   collab-qa-tools/lib/collab-qa/log-parser.rb
Log:
cqa-tools improvements

Modified: collab-qa-tools/InstalledFiles
===================================================================
--- collab-qa-tools/InstalledFiles	2008-03-11 07:30:17 UTC (rev 734)
+++ collab-qa-tools/InstalledFiles	2008-03-11 08:06:38 UTC (rev 735)
@@ -1,2 +1 @@
 /usr/bin/cqa-fetchbugs
-/usr/local/lib/site_ruby/1.8/collab-qa/log-parser.rb

Modified: collab-qa-tools/bin/cqa-fetchbugs
===================================================================
--- collab-qa-tools/bin/cqa-fetchbugs	2008-03-11 07:30:17 UTC (rev 734)
+++ collab-qa-tools/bin/cqa-fetchbugs	2008-03-11 08:06:38 UTC (rev 735)
@@ -3,7 +3,9 @@
 # because of dependancies problems.
 
 require 'collab-qa'
+require 'optparse'
 require 'soap/rpc/driver'
+
 bts = SOAP::RPC::Driver::new('http://bugs.debian.org/cgi-bin/soap.cgi', '/Debbugs/SOAP')
 bts.add_method('get_status', 'bugs')
 bts.add_method('get_bugs', 'params')
@@ -11,24 +13,46 @@
 bts.add_method('get_usertag', 'email', 'tag')
 bts.add_method('newest_bugs', 'num')
 
-if ARGV[0]
-  dir = ARGV[0]
+verbose = false
+todofile = nil
+progname = File::basename($PROGRAM_NAME)
+opts = OptionParser::new do |opts|
+  opts.program_name = progname
+  opts.banner = "Usage: #{progname} [options]"
+  opts.separator ""
+  opts.separator "Options:"
+
+  opts.on("-v", "--verbose", "Verbose mode") do |v|
+    verbose = true
+  end
+
+  opts.on("-t", "--TODO FILE", "Only TODO lines from file") do |f|
+    todofile = f
+  end
+end
+opts.parse!(ARGV)
+
+if todofile
+  pkgs = IO::read(todofile).split(/\n/).grep(/ TODO/).map { |e| e.split(' ')[0] }
+  files = []
+  pkgs.each do |pkg|
+    g = Dir::glob("#{pkg}_*log")
+    files << g[0] if g[0] != nil
+  end
 else
-  dir = '.'
+  files = Dir::glob("*log")
 end
 
-logs = Dir::glob(dir + '/*log').sort
 n = 0
-logs.each do |l|
-  p l
+files.sort.each do |l|
+  puts "#{l}... (#{n}/#{files.length})"
   log = CollabQA::Log::new(l)
   pkg = log.package
   n += 1
-  puts "#{pkg}... (#{n}/#{logs.length})"
-  next if File::exists?(dir + "/.bugs.#{pkg}")
+  next if File::exists?(".bugs.#{pkg}")
   bugs = bts.get_bugs(['src', pkg])
   status = bts.get_status(bugs)
-  f = File::new(dir + "/.bugs.#{pkg}", 'w')
+  f = File::new(".bugs.#{pkg}", 'w')
   if bugs.length > 0
     status.each_pair do |k,v|
       next if v.subject !~ /ftbfs/i and v.subject !~ /piuparts/i and v.subject != /installation/i and v.subject != /(post|pre)(rm|inst)/i

Modified: collab-qa-tools/bin/cqa-scanlogs
===================================================================
--- collab-qa-tools/bin/cqa-scanlogs	2008-03-11 07:30:17 UTC (rev 734)
+++ collab-qa-tools/bin/cqa-scanlogs	2008-03-11 08:06:38 UTC (rev 735)
@@ -3,9 +3,29 @@
 # because of dependancies problems.
 
 require 'collab-qa'
+require 'optparse'
 
-if ARGV.length > 0
-  pkgs = IO::read(ARGV[0]).split(/\n/).grep(/ TODO/).map { |e| e.split(' ')[0] }
+verbose = false
+todofile = nil
+progname = File::basename($PROGRAM_NAME)
+opts = OptionParser::new do |opts|
+  opts.program_name = progname
+  opts.banner = "Usage: #{progname} [options]"
+  opts.separator ""
+  opts.separator "Options:"
+
+  opts.on("-v", "--verbose", "Verbose mode") do |v|
+    verbose = true
+  end
+
+  opts.on("-t", "--TODO FILE", "Only TODO lines from file") do |f|
+    todofile = f
+  end
+end
+opts.parse!(ARGV)
+
+if todofile
+  pkgs = IO::read(todofile).split(/\n/).grep(/ TODO/).map { |e| e.split(' ')[0] }
   files = []
   pkgs.each do |pkg|
     g = Dir::glob("#{pkg}_*log")
@@ -15,8 +35,8 @@
   files = Dir::glob("*log")
 end
 
-files.each do |file|
-#  p file
+files.sort.each do |file|
+  puts "Parsing #{file}" if verbose
   log = CollabQA::Log::new(file)
   log.extract_log
   puts "#{log.package} [#{log.reasons.join('/')}] #{log.sum_1l}"

Modified: collab-qa-tools/lib/collab-qa/log-parser.rb
===================================================================
--- collab-qa-tools/lib/collab-qa/log-parser.rb	2008-03-11 07:30:17 UTC (rev 734)
+++ collab-qa-tools/lib/collab-qa/log-parser.rb	2008-03-11 08:06:38 UTC (rev 735)
@@ -236,6 +236,17 @@
           @extract = @lines[beg_full..end_full]
           @sum_1l = "Unsatisfiable build-dependency: #{@sum_ml[0]}"
           return
+        elsif not (g = @lines.grep_index(/^E: Sub-process \/usr\/bin\/dpkg returned an error code/)).empty?
+          end_full = g[0]
+          h = @lines.grep_index(/^Errors were encountered while processing:$/)
+          if h.empty?
+            @sum_ml = [@lines[end_full]]
+          else
+            @sum_ml = @lines[h[0]..end_full]
+          end
+          @extract = @lines[beg_full..end_full]
+          @sum_1l = "Dependencies installation failed."
+          return
         else
           raise "Unknown case."
         end
@@ -277,9 +288,10 @@
       /is not a valid libtool archive$/,
       /^Failed .* test scripts, .* okay. .* subtests failed/,
       /^make(\[\d+\])?: \*\*\* No rule to make target .* Stop.$/,
-      /: command not found$/,
+      /: command not found$/i,
       /: missing operand$/,
-      /LaTeX Error: /
+      /LaTeX Error: /,
+      /: error CS\d+: /
     ]
 
     POSSIBLE_CUTS = [

Added: collab-qa-tools/test/dest/ktimetrace_0.2.36-4.1_sid32.buildoutput
===================================================================
--- collab-qa-tools/test/dest/ktimetrace_0.2.36-4.1_sid32.buildoutput	                        (rev 0)
+++ collab-qa-tools/test/dest/ktimetrace_0.2.36-4.1_sid32.buildoutput	2008-03-11 08:06:38 UTC (rev 735)
@@ -0,0 +1,959 @@
+ktimetrace 0.2.36-4.1 Failed 373.23361
+Reason: BUILDDEPS
+
+1-line summary:
+Dependencies installation failed.
+
+multi-line summary:
+Errors were encountered while processing:
+ libcomedi0
+ libcomedi-dev
+E: Sub-process /usr/bin/dpkg returned an error code (1)
+
+excerpt for mail:
+** Using build dependencies supplied by package:
+Build-Depends: debhelper (>> 3.0.0), libcomedi-dev (>= 0.7.16-1.1), kdelibs4-dev, zlib1g-dev
+Checking for already installed source dependencies...
+debhelper: missing
+Using default version 6.0.7
+libcomedi-dev: missing
+Using default version 0.8.1-3
+kdelibs4-dev: missing
+zlib1g-dev: missing
+Checking for source dependency conflicts...
+Reading package lists...
+Building dependency tree...
+Reading state information...
+The following extra packages will be installed:
+  bsdmainutils comerr-dev defoma esound-common file fontconfig
+  fontconfig-config gettext gettext-base groff-base hicolor-icon-theme
+  html2text intltool-debian kdelibs-data kdelibs4c2a libacl1-dev libart-2.0-2
+  libart-2.0-dev libarts1-dev libarts1c2a libartsc0 libartsc0-dev libasound2
+  libasound2-dev libaspell-dev libaspell15 libattr1-dev libaudio-dev libaudio2
+  libaudiofile-dev libaudiofile0 libavahi-client-dev libavahi-client3
+  libavahi-common-data libavahi-common-dev libavahi-common3 libavahi-qt3-1
+  libavahi-qt3-dev libavc1394-0 libbz2-dev libcomedi0 libcupsys2
+  libcupsys2-dev libdbus-1-3 libdbus-1-dev libdrm2 libesd0 libesd0-dev
+  libexpat1 libexpat1-dev libfam-dev libfam0 libfontconfig1 libfontconfig1-dev
+  libfreebob0 libfreetype6 libfreetype6-dev libgcrypt11-dev libgl1-mesa-dev
+  libgl1-mesa-glx libglib2.0-0 libglib2.0-dev libglu1-mesa libglu1-mesa-dev
+  libgnutls-dev libgomp1 libgpg-error-dev libice-dev libice6 libidn11
+  libidn11-dev libiec61883-0 libjack-dev libjack0 libjack0.100.0-dev
+  libjasper-dev libjasper1 libjpeg62 libjpeg62-dev libkadm55 libkeyutils1
+  libkrb5-dev libkrb53 liblcms1 liblcms1-dev liblua50 liblua50-dev liblualib50
+  liblualib50-dev libmad0 libmad0-dev libmagic1 libmng-dev libmng1 libnewt0.52
+  libogg-dev libogg0 libopencdk10-dev libopenexr-dev libopenexr2ldbl libpcre3
+  libpcre3-dev libpcrecpp0 libpng12-0 libpng12-dev libpopt0 libqt3-headers
+  libqt3-mt libqt3-mt-dev libraw1394-8 libruby1.8 libsasl2-dev
+  libsasl2-modules libsm-dev libsm6 libssl-dev libssl0.9.8 libtasn1-3-dev
+  libtiff4 libtiff4-dev libtiffxx0c2 libvorbis-dev libvorbis0a libvorbisenc2
+  libvorbisfile3 libx11-6 libx11-data libx11-dev libxau-dev libxau6 libxaw7
+  libxcursor-dev libxcursor1 libxdamage1 libxdmcp-dev libxdmcp6 libxext-dev
+  libxext6 libxfixes-dev libxfixes3 libxft-dev libxft2 libxi-dev libxi6
+  libxinerama-dev libxinerama1 libxml2 libxml2-dev libxml2-utils libxmu-dev
+  libxmu-headers libxmu6 libxmuu1 libxpm4 libxrandr-dev libxrandr2
+  libxrender-dev libxrender1 libxslt1-dev libxslt1.1 libxt-dev libxt6
+  libxtrap6 libxxf86misc1 libxxf86vm1 lua50 man-db menu-xdg mesa-common-dev
+  module-init-tools oss-compat pkg-config po-debconf qt3-dev-tools ttf-dejavu
+  ttf-dejavu-core ttf-dejavu-extra ucf whiptail x11-common x11-xserver-utils
+  x11proto-core-dev x11proto-fixes-dev x11proto-input-dev x11proto-kb-dev
+  x11proto-randr-dev x11proto-render-dev x11proto-xext-dev
+  x11proto-xinerama-dev xauth xtrans-dev
+Suggested packages:
+  wamerican wordlist whois vacation doc-base dh-make defoma-doc dfontmgr
+  psfontmgr x-ttcidfont-conf cvs gettext-doc groff fam perl-suid
+  libasound2-plugins libasound2-doc aspell-doc aspell nas cupsys-common esound
+  libgcrypt11-doc libglib2.0-doc gnutls-bin gnutls-doc guile-gnutls jackd
+  libjasper-runtime krb5-doc krb5-user liblcms-utils libqt3-mt-mysql
+  libqt3-mt-odbc libqt3-mt-psql libqt3-i18n qt3-doc libraw1394-doc
+  libsasl2-modules-gssapi-mit libsasl2-modules-gssapi-heimdal
+  libsasl2-modules-ldap libsasl2-modules-otp libsasl2-modules-sql www-browser
+  pdksh
+Recommended packages:
+  libft-perl curl wget lynx libarts1-akode aspell-en aspell-dictionary
+  aspell6a-dictionary dbus esound-clients libglib2.0-data libfribidi0
+  libqt3-compat-headers xml-core menu libcompress-zlib-perl libmail-box-perl
+  libmail-sendmail-perl
+The following NEW packages will be installed:
+  bsdmainutils comerr-dev debhelper defoma esound-common file fontconfig
+  fontconfig-config gettext gettext-base groff-base hicolor-icon-theme
+  html2text intltool-debian kdelibs-data kdelibs4-dev kdelibs4c2a libacl1-dev
+  libart-2.0-2 libart-2.0-dev libarts1-dev libarts1c2a libartsc0 libartsc0-dev
+  libasound2 libasound2-dev libaspell-dev libaspell15 libattr1-dev
+  libaudio-dev libaudio2 libaudiofile-dev libaudiofile0 libavahi-client-dev
+  libavahi-client3 libavahi-common-data libavahi-common-dev libavahi-common3
+  libavahi-qt3-1 libavahi-qt3-dev libavc1394-0 libbz2-dev libcomedi-dev
+  libcomedi0 libcupsys2 libcupsys2-dev libdbus-1-3 libdbus-1-dev libdrm2
+  libesd0 libesd0-dev libexpat1 libexpat1-dev libfam-dev libfam0
+  libfontconfig1 libfontconfig1-dev libfreebob0 libfreetype6 libfreetype6-dev
+  libgcrypt11-dev libgl1-mesa-dev libgl1-mesa-glx libglib2.0-0 libglib2.0-dev
+  libglu1-mesa libglu1-mesa-dev libgnutls-dev libgomp1 libgpg-error-dev
+  libice-dev libice6 libidn11 libidn11-dev libiec61883-0 libjack-dev libjack0
+  libjack0.100.0-dev libjasper-dev libjasper1 libjpeg62 libjpeg62-dev
+  libkadm55 libkeyutils1 libkrb5-dev libkrb53 liblcms1 liblcms1-dev liblua50
+  liblua50-dev liblualib50 liblualib50-dev libmad0 libmad0-dev libmagic1
+  libmng-dev libmng1 libnewt0.52 libogg-dev libogg0 libopencdk10-dev
+  libopenexr-dev libopenexr2ldbl libpcre3 libpcre3-dev libpcrecpp0 libpng12-0
+  libpng12-dev libpopt0 libqt3-headers libqt3-mt libqt3-mt-dev libraw1394-8
+  libruby1.8 libsasl2-dev libsasl2-modules libsm-dev libsm6 libssl-dev
+  libssl0.9.8 libtasn1-3-dev libtiff4 libtiff4-dev libtiffxx0c2 libvorbis-dev
+  libvorbis0a libvorbisenc2 libvorbisfile3 libx11-6 libx11-data libx11-dev
+  libxau-dev libxau6 libxaw7 libxcursor-dev libxcursor1 libxdamage1
+  libxdmcp-dev libxdmcp6 libxext-dev libxext6 libxfixes-dev libxfixes3
+  libxft-dev libxft2 libxi-dev libxi6 libxinerama-dev libxinerama1 libxml2
+  libxml2-dev libxml2-utils libxmu-dev libxmu-headers libxmu6 libxmuu1 libxpm4
+  libxrandr-dev libxrandr2 libxrender-dev libxrender1 libxslt1-dev libxslt1.1
+  libxt-dev libxt6 libxtrap6 libxxf86misc1 libxxf86vm1 lua50 man-db menu-xdg
+  mesa-common-dev module-init-tools oss-compat pkg-config po-debconf
+  qt3-dev-tools ttf-dejavu ttf-dejavu-core ttf-dejavu-extra ucf whiptail
+  x11-common x11-xserver-utils x11proto-core-dev x11proto-fixes-dev
+  x11proto-input-dev x11proto-kb-dev x11proto-randr-dev x11proto-render-dev
+  x11proto-xext-dev x11proto-xinerama-dev xauth xtrans-dev zlib1g-dev
+0 upgraded, 195 newly installed, 0 to remove and 0 not upgraded.
+Need to get 70.2MB of archives.
+After this operation, 222MB of additional disk space will be used.
+WARNING: The following packages cannot be authenticated!
+  x11-common libice6 x11proto-core-dev libice-dev libsm6 libsm-dev libxau6
+  libxdmcp6 libx11-data libx11-6 libxau-dev libxdmcp-dev libxext6
+  x11proto-input-dev x11proto-xext-dev libxext-dev x11proto-kb-dev xtrans-dev
+  libx11-dev libxfixes3 libxrender1 libxcursor1 x11proto-render-dev
+  libxrender-dev x11proto-fixes-dev libxfixes-dev libxcursor-dev libexpat1
+  libfreetype6 ucf libmagic1 file libnewt0.52 libpopt0 whiptail defoma
+  ttf-dejavu-core ttf-dejavu-extra ttf-dejavu fontconfig-config libfontconfig1
+  libxft2 libexpat1-dev zlib1g-dev libfreetype6-dev libpcre3 libglib2.0-0
+  pkg-config libfontconfig1-dev libxft-dev libxi6 libxi-dev libxinerama1
+  x11proto-xinerama-dev libxinerama-dev libxmu-headers libxrandr2
+  x11proto-randr-dev libxrandr-dev libxt6 libxt-dev libxmu6 libxpm4 libxaw7
+  libxmuu1 libxtrap6 libxxf86misc1 libxxf86vm1 x11-xserver-utils xauth
+  bsdmainutils groff-base libssl0.9.8 man-db module-init-tools gettext-base
+  libidn11 libkeyutils1 libkrb53 html2text libgomp1 gettext intltool-debian
+  po-debconf debhelper esound-common fontconfig hicolor-icon-theme
+  kdelibs-data libart-2.0-2 libartsc0 libasound2 libaudio2 libaudiofile0
+  libesd0 libraw1394-8 libavc1394-0 libiec61883-0 libxml2 libfreebob0 libjack0
+  libmad0 libjpeg62 liblcms1 libmng1 libpng12-0 libqt3-mt libogg0 libvorbis0a
+  libvorbisfile3 oss-compat libarts1c2a libaspell15 libavahi-common-data
+  libavahi-common3 libdbus-1-3 libavahi-client3 libavahi-qt3-1 libcupsys2
+  libfam0 libjasper1 liblua50 liblualib50 libopenexr2ldbl libtiff4 libxslt1.1
+  menu-xdg kdelibs4c2a libattr1-dev libacl1-dev libart-2.0-dev libglib2.0-dev
+  libartsc0-dev libasound2-dev libaudio-dev libaudiofile-dev libesd0-dev
+  libjack-dev libjack0.100.0-dev libmad0-dev libogg-dev libgpg-error-dev
+  libgcrypt11-dev libopencdk10-dev libtasn1-3-dev libgnutls-dev comerr-dev
+  libkadm55 libkrb5-dev libcupsys2-dev libdrm2 libxdamage1 libgl1-mesa-glx
+  mesa-common-dev libgl1-mesa-dev libglu1-mesa libglu1-mesa-dev libjpeg62-dev
+  liblcms1-dev libmng-dev libpng12-dev libqt3-headers libxmu-dev qt3-dev-tools
+  libqt3-mt-dev libvorbisenc2 libvorbis-dev libarts1-dev libaspell-dev
+  libavahi-common-dev libdbus-1-dev libavahi-client-dev libavahi-qt3-dev
+  libbz2-dev libfam-dev libidn11-dev libjasper-dev lua50 liblua50-dev
+  liblualib50-dev libopenexr-dev libpcrecpp0 libpcre3-dev libsasl2-modules
+  libsasl2-dev libssl-dev libtiffxx0c2 libtiff4-dev libxml2-dev libxml2-utils
+  libxslt1-dev kdelibs4-dev libruby1.8 libcomedi0 libcomedi-dev
+Authentication warning overridden.
+Get:1 http://idpot.grenoble.grid5000.fr sid/main x11-common 1:7.3+10 [345kB]
+Get:2 http://idpot.grenoble.grid5000.fr sid/main libice6 2:1.0.4-1 [46.6kB]
+Get:3 http://idpot.grenoble.grid5000.fr sid/main x11proto-core-dev 7.0.12-1 [89.6kB]
+Get:4 http://idpot.grenoble.grid5000.fr sid/main libice-dev 2:1.0.4-1 [55.1kB]
+Get:5 http://idpot.grenoble.grid5000.fr sid/main libsm6 2:1.0.3-1+b1 [21.8kB]
+Get:6 http://idpot.grenoble.grid5000.fr sid/main libsm-dev 2:1.0.3-1+b1 [24.3kB]
+Get:7 http://idpot.grenoble.grid5000.fr sid/main libxau6 1:1.0.3-2 [11.7kB]
+Get:8 http://idpot.grenoble.grid5000.fr sid/main libxdmcp6 1:1.0.2-2 [16.7kB]
+Get:9 http://idpot.grenoble.grid5000.fr sid/main libx11-data 2:1.0.3-7 [157kB]
+Get:10 http://idpot.grenoble.grid5000.fr sid/main libx11-6 2:1.0.3-7 [567kB]
+Get:11 http://idpot.grenoble.grid5000.fr sid/main libxau-dev 1:1.0.3-2 [15.4kB]
+Get:12 http://idpot.grenoble.grid5000.fr sid/main libxdmcp-dev 1:1.0.2-2 [19.8kB]
+Get:13 http://idpot.grenoble.grid5000.fr sid/main libxext6 2:1.0.4-1 [33.5kB]
+Get:14 http://idpot.grenoble.grid5000.fr sid/main x11proto-input-dev 1.4.3-1 [15.9kB]
+Get:15 http://idpot.grenoble.grid5000.fr sid/main x11proto-xext-dev 7.0.2-5 [41.7kB]
+Get:16 http://idpot.grenoble.grid5000.fr sid/main libxext-dev 2:1.0.4-1 [84.2kB]
+Get:17 http://idpot.grenoble.grid5000.fr sid/main x11proto-kb-dev 1.0.3-2 [26.8kB]
+Get:18 http://idpot.grenoble.grid5000.fr sid/main xtrans-dev 1.1-1 [73.7kB]
+Get:19 http://idpot.grenoble.grid5000.fr sid/main libx11-dev 2:1.0.3-7 [1269kB]
+Get:20 http://idpot.grenoble.grid5000.fr sid/main libxfixes3 1:4.0.3-2 [9572B]
+Get:21 http://idpot.grenoble.grid5000.fr sid/main libxrender1 1:0.9.4-1 [25.4kB]
+Get:22 http://idpot.grenoble.grid5000.fr sid/main libxcursor1 1:1.1.9-1 [24.0kB]
+Get:23 http://idpot.grenoble.grid5000.fr sid/main x11proto-render-dev 2:0.9.3-2 [7062B]
+Get:24 http://idpot.grenoble.grid5000.fr sid/main libxrender-dev 1:0.9.4-1 [28.5kB]
+Get:25 http://idpot.grenoble.grid5000.fr sid/main x11proto-fixes-dev 4.0-2 [5640B]
+Get:26 http://idpot.grenoble.grid5000.fr sid/main libxfixes-dev 1:4.0.3-2 [12.1kB]
+Get:27 http://idpot.grenoble.grid5000.fr sid/main libxcursor-dev 1:1.1.9-1 [30.8kB]
+Get:28 http://idpot.grenoble.grid5000.fr sid/main libexpat1 1.95.8-4 [63.9kB]
+Get:29 http://idpot.grenoble.grid5000.fr sid/main libfreetype6 2.3.5-1+b1 [347kB]
+Get:30 http://idpot.grenoble.grid5000.fr sid/main ucf 3.005 [61.2kB]
+Get:31 http://idpot.grenoble.grid5000.fr sid/main libmagic1 4.23-2 [342kB]
+Get:32 http://idpot.grenoble.grid5000.fr sid/main file 4.23-2 [41.0kB]
+Get:33 http://idpot.grenoble.grid5000.fr sid/main libnewt0.52 0.52.2-11.2 [67.2kB]
+Get:34 http://idpot.grenoble.grid5000.fr sid/main libpopt0 1.10-3 [33.1kB]
+Get:35 http://idpot.grenoble.grid5000.fr sid/main whiptail 0.52.2-11.2 [34.8kB]
+Get:36 http://idpot.grenoble.grid5000.fr sid/main defoma 0.11.10-0.2 [101kB]
+Get:37 http://idpot.grenoble.grid5000.fr sid/main ttf-dejavu-core 2.23-1 [1347kB]
+Get:38 http://idpot.grenoble.grid5000.fr sid/main ttf-dejavu-extra 2.23-1 [2949kB]
+Get:39 http://idpot.grenoble.grid5000.fr sid/main ttf-dejavu 2.23-1 [24.3kB]
+Get:40 http://idpot.grenoble.grid5000.fr sid/main fontconfig-config 2.5.0-2 [179kB]
+Get:41 http://idpot.grenoble.grid5000.fr sid/main libfontconfig1 2.5.0-2 [110kB]
+Get:42 http://idpot.grenoble.grid5000.fr sid/main libxft2 2.1.12-2 [47.6kB]
+Get:43 http://idpot.grenoble.grid5000.fr sid/main libexpat1-dev 1.95.8-4 [129kB]
+Get:44 http://idpot.grenoble.grid5000.fr sid/main zlib1g-dev 1:1.2.3.3.dfsg-11 [157kB]
+Get:45 http://idpot.grenoble.grid5000.fr sid/main libfreetype6-dev 2.3.5-1+b1 [662kB]
+Get:46 http://idpot.grenoble.grid5000.fr sid/main libpcre3 7.6-2 [208kB]
+Get:47 http://idpot.grenoble.grid5000.fr sid/main libglib2.0-0 2.14.6-1 [561kB]
+Get:48 http://idpot.grenoble.grid5000.fr sid/main pkg-config 0.22-1 [52.2kB]
+Get:49 http://idpot.grenoble.grid5000.fr sid/main libfontconfig1-dev 2.5.0-2 [595kB]
+Get:50 http://idpot.grenoble.grid5000.fr sid/main libxft-dev 2.1.12-2 [61.3kB]
+Get:51 http://idpot.grenoble.grid5000.fr sid/main libxi6 2:1.1.3-1 [24.6kB]
+Get:52 http://idpot.grenoble.grid5000.fr sid/main libxi-dev 2:1.1.3-1 [69.0kB]
+Get:53 http://idpot.grenoble.grid5000.fr sid/main libxinerama1 2:1.0.3-1 [9874B]
+Get:54 http://idpot.grenoble.grid5000.fr sid/main x11proto-xinerama-dev 1.1.2-4 [5074B]
+Get:55 http://idpot.grenoble.grid5000.fr sid/main libxinerama-dev 2:1.0.3-1 [11.4kB]
+Get:56 http://idpot.grenoble.grid5000.fr sid/main libxmu-headers 2:1.0.4-1 [21.0kB]
+Get:57 http://idpot.grenoble.grid5000.fr sid/main libxrandr2 2:1.2.2-1 [20.4kB]
+Get:58 http://idpot.grenoble.grid5000.fr sid/main x11proto-randr-dev 1.2.1-2 [28.6kB]
+Get:59 http://idpot.grenoble.grid5000.fr sid/main libxrandr-dev 2:1.2.2-1 [27.8kB]
+Get:60 http://idpot.grenoble.grid5000.fr sid/main libxt6 1:1.0.5-3 [166kB]
+Get:61 http://idpot.grenoble.grid5000.fr sid/main libxt-dev 1:1.0.5-3 [480kB]
+Get:62 http://idpot.grenoble.grid5000.fr sid/main libxmu6 2:1.0.4-1 [51.1kB]
+Get:63 http://idpot.grenoble.grid5000.fr sid/main libxpm4 1:3.5.7-1 [40.3kB]
+Get:64 http://idpot.grenoble.grid5000.fr sid/main libxaw7 2:1.0.4-1 [186kB]
+Get:65 http://idpot.grenoble.grid5000.fr sid/main libxmuu1 2:1.0.4-1 [13.2kB]
+Get:66 http://idpot.grenoble.grid5000.fr sid/main libxtrap6 1:1.0.0-4 [16.6kB]
+Get:67 http://idpot.grenoble.grid5000.fr sid/main libxxf86misc1 1:1.0.1-2 [7674B]
+Get:68 http://idpot.grenoble.grid5000.fr sid/main libxxf86vm1 1:1.0.1-2 [9778B]
+Get:69 http://idpot.grenoble.grid5000.fr sid/main x11-xserver-utils 7.3+2 [171kB]
+Get:70 http://idpot.grenoble.grid5000.fr sid/main xauth 1:1.0.2-2 [29.7kB]
+Get:71 http://idpot.grenoble.grid5000.fr sid/main bsdmainutils 6.1.10 [172kB]
+Get:72 http://idpot.grenoble.grid5000.fr sid/main groff-base 1.18.1.1-17 [844kB]
+Get:73 http://idpot.grenoble.grid5000.fr sid/main libssl0.9.8 0.9.8g-7 [2900kB]
+Get:74 http://idpot.grenoble.grid5000.fr sid/main man-db 2.5.1-2 [997kB]
+Get:75 http://idpot.grenoble.grid5000.fr sid/main module-init-tools 3.3-pre11-4 [69.6kB]
+Get:76 http://idpot.grenoble.grid5000.fr sid/main gettext-base 0.17-2 [123kB]
+Get:77 http://idpot.grenoble.grid5000.fr sid/main libidn11 1.4-1 [138kB]
+Get:78 http://idpot.grenoble.grid5000.fr sid/main libkeyutils1 1.2-6 [5206B]
+Get:79 http://idpot.grenoble.grid5000.fr sid/main libkrb53 1.6.dfsg.3~beta1-3 [464kB]
+Get:80 http://idpot.grenoble.grid5000.fr sid/main html2text 1.3.2a-3 [98.9kB]
+Get:81 http://idpot.grenoble.grid5000.fr sid/main libgomp1 4.3.0-1 [13.3kB]
+Get:82 http://idpot.grenoble.grid5000.fr sid/main gettext 0.17-2 [2683kB]
+Get:83 http://idpot.grenoble.grid5000.fr sid/main intltool-debian 0.35.0+20060710.1 [30.8kB]
+Get:84 http://idpot.grenoble.grid5000.fr sid/main po-debconf 1.0.12 [237kB]
+Get:85 http://idpot.grenoble.grid5000.fr sid/main debhelper 6.0.7 [521kB]
+Get:86 http://idpot.grenoble.grid5000.fr sid/main esound-common 0.2.36-3 [38.2kB]
+Get:87 http://idpot.grenoble.grid5000.fr sid/main fontconfig 2.5.0-2 [43.0kB]
+Get:88 http://idpot.grenoble.grid5000.fr sid/main hicolor-icon-theme 0.10-1 [10.1kB]
+Get:89 http://idpot.grenoble.grid5000.fr sid/main kdelibs-data 4:3.5.9.dfsg.1-1 [8677kB]
+Get:90 http://idpot.grenoble.grid5000.fr sid/main libart-2.0-2 2.3.20-1 [64.7kB]
+Get:91 http://idpot.grenoble.grid5000.fr sid/main libartsc0 1.5.9-1 [15.2kB]
+Get:92 http://idpot.grenoble.grid5000.fr sid/main libasound2 1.0.16-1 [356kB]
+Get:93 http://idpot.grenoble.grid5000.fr sid/main libaudio2 1.9.1-2 [78.9kB]
+Get:94 http://idpot.grenoble.grid5000.fr sid/main libaudiofile0 0.2.6-7 [76.4kB]
+Get:95 http://idpot.grenoble.grid5000.fr sid/main libesd0 0.2.36-3 [18.9kB]
+Get:96 http://idpot.grenoble.grid5000.fr sid/main libraw1394-8 1.3.0-3 [26.9kB]
+Get:97 http://idpot.grenoble.grid5000.fr sid/main libavc1394-0 0.5.3-1+b1 [20.7kB]
+Get:98 http://idpot.grenoble.grid5000.fr sid/main libiec61883-0 1.1.0-2 [31.5kB]
+Get:99 http://idpot.grenoble.grid5000.fr sid/main libxml2 2.6.31.dfsg-2 [782kB]
+Get:100 http://idpot.grenoble.grid5000.fr sid/main libfreebob0 1.0.7-1 [158kB]
+Get:101 http://idpot.grenoble.grid5000.fr sid/main libjack0 0.109.2-1 [116kB]
+Get:102 http://idpot.grenoble.grid5000.fr sid/main libmad0 0.15.1b-2.1 [74.8kB]
+Get:103 http://idpot.grenoble.grid5000.fr sid/main libjpeg62 6b-14 [86.0kB]
+Get:104 http://idpot.grenoble.grid5000.fr sid/main liblcms1 1.16-8 [97.2kB]
+Get:105 http://idpot.grenoble.grid5000.fr sid/main libmng1 1.0.9-1 [189kB]
+Get:106 http://idpot.grenoble.grid5000.fr sid/main libpng12-0 1.2.15~beta5-3 [187kB]
+Get:107 http://idpot.grenoble.grid5000.fr sid/main libqt3-mt 3:3.3.8b-4 [3173kB]
+Get:108 http://idpot.grenoble.grid5000.fr sid/main libogg0 1.1.3-3 [14.1kB]
+Get:109 http://idpot.grenoble.grid5000.fr sid/main libvorbis0a 1.2.0.dfsg-3 [99.9kB]
+Get:110 http://idpot.grenoble.grid5000.fr sid/main libvorbisfile3 1.2.0.dfsg-3 [20.5kB]
+Get:111 http://idpot.grenoble.grid5000.fr sid/main oss-compat 0.0.4 [2166B]
+Get:112 http://idpot.grenoble.grid5000.fr sid/main libarts1c2a 1.5.9-1 [1106kB]
+Get:113 http://idpot.grenoble.grid5000.fr sid/main libaspell15 0.60.5-2 [635kB]
+Get:114 http://idpot.grenoble.grid5000.fr sid/main libavahi-common-data 0.6.22-2 [98.7kB]
+Get:115 http://idpot.grenoble.grid5000.fr sid/main libavahi-common3 0.6.22-2 [114kB]
+Get:116 http://idpot.grenoble.grid5000.fr sid/main libdbus-1-3 1.1.20-1 [143kB]
+Get:117 http://idpot.grenoble.grid5000.fr sid/main libavahi-client3 0.6.22-2 [118kB]
+Get:118 http://idpot.grenoble.grid5000.fr sid/main libavahi-qt3-1 0.6.22-2 [102kB]
+Get:119 http://idpot.grenoble.grid5000.fr sid/main libcupsys2 1.3.6-1 [156kB]
+Get:120 http://idpot.grenoble.grid5000.fr sid/main libfam0 2.7.0-13.1 [27.9kB]
+Get:121 http://idpot.grenoble.grid5000.fr sid/main libjasper1 1.900.1-4 [143kB]
+Get:122 http://idpot.grenoble.grid5000.fr sid/main liblua50 5.0.3-3 [48.7kB]
+Get:123 http://idpot.grenoble.grid5000.fr sid/main liblualib50 5.0.3-3 [34.6kB]
+Get:124 http://idpot.grenoble.grid5000.fr sid/main libopenexr2ldbl 1.2.2-4.4 [305kB]
+Get:125 http://idpot.grenoble.grid5000.fr sid/main libtiff4 3.8.2-7 [483kB]
+Get:126 http://idpot.grenoble.grid5000.fr sid/main libxslt1.1 1.1.22-1 [219kB]
+Get:127 http://idpot.grenoble.grid5000.fr sid/main menu-xdg 0.3 [4720B]
+Get:128 http://idpot.grenoble.grid5000.fr sid/main kdelibs4c2a 4:3.5.9.dfsg.1-1 [9869kB]
+Get:129 http://idpot.grenoble.grid5000.fr sid/main libattr1-dev 1:2.4.41-1 [30.3kB]
+Get:130 http://idpot.grenoble.grid5000.fr sid/main libacl1-dev 2.2.45-1 [76.2kB]
+Get:131 http://idpot.grenoble.grid5000.fr sid/main libart-2.0-dev 2.3.20-1 [81.7kB]
+Get:132 http://idpot.grenoble.grid5000.fr sid/main libglib2.0-dev 2.14.6-1 [569kB]
+Get:133 http://idpot.grenoble.grid5000.fr sid/main libartsc0-dev 1.5.9-1 [21.2kB]
+Get:134 http://idpot.grenoble.grid5000.fr sid/main libasound2-dev 1.0.16-1 [495kB]
+Get:135 http://idpot.grenoble.grid5000.fr sid/main libaudio-dev 1.9.1-2 [503kB]
+Get:136 http://idpot.grenoble.grid5000.fr sid/main libaudiofile-dev 0.2.6-7 [116kB]
+Get:137 http://idpot.grenoble.grid5000.fr sid/main libesd0-dev 0.2.36-3 [23.7kB]
+Get:138 http://idpot.grenoble.grid5000.fr sid/main libjack-dev 0.109.2-1 [161kB]
+Get:139 http://idpot.grenoble.grid5000.fr sid/main libjack0.100.0-dev 0.109.2-1 [12.8kB]
+Get:140 http://idpot.grenoble.grid5000.fr sid/main libmad0-dev 0.15.1b-2.1 [85.6kB]
+Get:141 http://idpot.grenoble.grid5000.fr sid/main libogg-dev 1.1.3-3 [57.0kB]
+Get:142 http://idpot.grenoble.grid5000.fr sid/main libgpg-error-dev 1.4-2 [33.6kB]
+Get:143 http://idpot.grenoble.grid5000.fr sid/main libgcrypt11-dev 1.4.0-3 [319kB]
+Get:144 http://idpot.grenoble.grid5000.fr sid/main libopencdk10-dev 0.6.6-1 [117kB]
+Get:145 http://idpot.grenoble.grid5000.fr sid/main libtasn1-3-dev 1.3-1 [372kB]
+Get:146 http://idpot.grenoble.grid5000.fr sid/main libgnutls-dev 2.2.2-1 [439kB]
+Get:147 http://idpot.grenoble.grid5000.fr sid/main comerr-dev 2.1-1.40.7-1 [41.6kB]
+Get:148 http://idpot.grenoble.grid5000.fr sid/main libkadm55 1.6.dfsg.3~beta1-3 [147kB]
+Get:149 http://idpot.grenoble.grid5000.fr sid/main libkrb5-dev 1.6.dfsg.3~beta1-3 [89.3kB]
+Get:150 http://idpot.grenoble.grid5000.fr sid/main libcupsys2-dev 1.3.6-1 [145kB]
+Get:151 http://idpot.grenoble.grid5000.fr sid/main libdrm2 2.3.0-4 [20.7kB]
+Get:152 http://idpot.grenoble.grid5000.fr sid/main libxdamage1 1:1.1.1-3 [9804B]
+Get:153 http://idpot.grenoble.grid5000.fr sid/main libgl1-mesa-glx 7.0.3~rc2-1 [149kB]
+Get:154 http://idpot.grenoble.grid5000.fr sid/main mesa-common-dev 7.0.3~rc2-1 [183kB]
+Get:155 http://idpot.grenoble.grid5000.fr sid/main libgl1-mesa-dev 7.0.3~rc2-1 [25.3kB]
+Get:156 http://idpot.grenoble.grid5000.fr sid/main libglu1-mesa 7.0.3~rc2-1 [238kB]
+Get:157 http://idpot.grenoble.grid5000.fr sid/main libglu1-mesa-dev 7.0.3~rc2-1 [256kB]
+Get:158 http://idpot.grenoble.grid5000.fr sid/main libjpeg62-dev 6b-14 [186kB]
+Get:159 http://idpot.grenoble.grid5000.fr sid/main liblcms1-dev 1.16-8 [619kB]
+Get:160 http://idpot.grenoble.grid5000.fr sid/main libmng-dev 1.0.9-1 [285kB]
+Get:161 http://idpot.grenoble.grid5000.fr sid/main libpng12-dev 1.2.15~beta5-3 [171kB]
+Get:162 http://idpot.grenoble.grid5000.fr sid/main libqt3-headers 3:3.3.8b-4 [357kB]
+Get:163 http://idpot.grenoble.grid5000.fr sid/main libxmu-dev 2:1.0.4-1 [54.5kB]
+Get:164 http://idpot.grenoble.grid5000.fr sid/main qt3-dev-tools 3:3.3.8b-4 [1346kB]
+Get:165 http://idpot.grenoble.grid5000.fr sid/main libqt3-mt-dev 3:3.3.8b-4 [49.8kB]
+Get:166 http://idpot.grenoble.grid5000.fr sid/main libvorbisenc2 1.2.0.dfsg-3 [76.8kB]
+Get:167 http://idpot.grenoble.grid5000.fr sid/main libvorbis-dev 1.2.0.dfsg-3 [461kB]
+Get:168 http://idpot.grenoble.grid5000.fr sid/main libarts1-dev 1.5.9-1 [1167kB]
+Get:169 http://idpot.grenoble.grid5000.fr sid/main libaspell-dev 0.60.5-2 [49.0kB]
+Get:170 http://idpot.grenoble.grid5000.fr sid/main libavahi-common-dev 0.6.22-2 [134kB]
+Get:171 http://idpot.grenoble.grid5000.fr sid/main libdbus-1-dev 1.1.20-1 [212kB]
+Get:172 http://idpot.grenoble.grid5000.fr sid/main libavahi-client-dev 0.6.22-2 [128kB]
+Get:173 http://idpot.grenoble.grid5000.fr sid/main libavahi-qt3-dev 0.6.22-2 [102kB]
+Get:174 http://idpot.grenoble.grid5000.fr sid/main libbz2-dev 1.0.4-3 [31.6kB]
+Get:175 http://idpot.grenoble.grid5000.fr sid/main libfam-dev 2.7.0-13.1 [38.1kB]
+Get:176 http://idpot.grenoble.grid5000.fr sid/main libidn11-dev 1.4-1 [589kB]
+Get:177 http://idpot.grenoble.grid5000.fr sid/main libjasper-dev 1.900.1-4 [546kB]
+Get:178 http://idpot.grenoble.grid5000.fr sid/main lua50 5.0.3-3 [25.6kB]
+Get:179 http://idpot.grenoble.grid5000.fr sid/main liblua50-dev 5.0.3-3 [55.4kB]
+Get:180 http://idpot.grenoble.grid5000.fr sid/main liblualib50-dev 5.0.3-3 [36.0kB]
+Get:181 http://idpot.grenoble.grid5000.fr sid/main libopenexr-dev 1.2.2-4.4 [499kB]
+Get:182 http://idpot.grenoble.grid5000.fr sid/main libpcrecpp0 7.6-2 [93.9kB]
+Get:183 http://idpot.grenoble.grid5000.fr sid/main libpcre3-dev 7.6-2 [254kB]
+Get:184 http://idpot.grenoble.grid5000.fr sid/main libsasl2-modules 2.1.22.dfsg1-18 [142kB]
+Get:185 http://idpot.grenoble.grid5000.fr sid/main libsasl2-dev 2.1.22.dfsg1-18 [257kB]
+Get:186 http://idpot.grenoble.grid5000.fr sid/main libssl-dev 0.9.8g-7 [2077kB]
+Get:187 http://idpot.grenoble.grid5000.fr sid/main libtiffxx0c2 3.8.2-7 [5006B]
+Get:188 http://idpot.grenoble.grid5000.fr sid/main libtiff4-dev 3.8.2-7 [233kB]
+Get:189 http://idpot.grenoble.grid5000.fr sid/main libxml2-dev 2.6.31.dfsg-2 [673kB]
+Get:190 http://idpot.grenoble.grid5000.fr sid/main libxml2-utils 2.6.31.dfsg-2 [33.9kB]
+Get:191 http://idpot.grenoble.grid5000.fr sid/main libxslt1-dev 1.1.22-1 [595kB]
+Get:192 http://idpot.grenoble.grid5000.fr sid/main kdelibs4-dev 4:3.5.9.dfsg.1-1 [1396kB]
+Get:193 http://idpot.grenoble.grid5000.fr sid/main libruby1.8 1.8.6.114-1 [1570kB]
+Get:194 http://idpot.grenoble.grid5000.fr sid/main libcomedi0 0.8.1-3 [89.3kB]
+Get:195 http://idpot.grenoble.grid5000.fr sid/main libcomedi-dev 0.8.1-3 [775kB]
+debconf: delaying package configuration, since apt-utils is not installed
+Fetched 70.2MB in 4s (14.3MB/s)
+Selecting previously deselected package x11-common.
+(Reading database ... 9174 files and directories currently installed.)
+Unpacking x11-common (from .../x11-common_1%3a7.3+10_i386.deb) ...
+Selecting previously deselected package libice6.
+Unpacking libice6 (from .../libice6_2%3a1.0.4-1_i386.deb) ...
+Setting up x11-common (1:7.3+10) ...
+Selecting previously deselected package x11proto-core-dev.
+(Reading database ... 9212 files and directories currently installed.)
+Unpacking x11proto-core-dev (from .../x11proto-core-dev_7.0.12-1_all.deb) ...
+Selecting previously deselected package libice-dev.
+Unpacking libice-dev (from .../libice-dev_2%3a1.0.4-1_i386.deb) ...
+Selecting previously deselected package libsm6.
+Unpacking libsm6 (from .../libsm6_2%3a1.0.3-1+b1_i386.deb) ...
+Selecting previously deselected package libsm-dev.
+Unpacking libsm-dev (from .../libsm-dev_2%3a1.0.3-1+b1_i386.deb) ...
+Selecting previously deselected package libxau6.
+Unpacking libxau6 (from .../libxau6_1%3a1.0.3-2_i386.deb) ...
+Selecting previously deselected package libxdmcp6.
+Unpacking libxdmcp6 (from .../libxdmcp6_1%3a1.0.2-2_i386.deb) ...
+Selecting previously deselected package libx11-data.
+Unpacking libx11-data (from .../libx11-data_2%3a1.0.3-7_all.deb) ...
+Selecting previously deselected package libx11-6.
+Unpacking libx11-6 (from .../libx11-6_2%3a1.0.3-7_i386.deb) ...
+Selecting previously deselected package libxau-dev.
+Unpacking libxau-dev (from .../libxau-dev_1%3a1.0.3-2_i386.deb) ...
+Selecting previously deselected package libxdmcp-dev.
+Unpacking libxdmcp-dev (from .../libxdmcp-dev_1%3a1.0.2-2_i386.deb) ...
+Selecting previously deselected package libxext6.
+Unpacking libxext6 (from .../libxext6_2%3a1.0.4-1_i386.deb) ...
+Selecting previously deselected package x11proto-input-dev.
+Unpacking x11proto-input-dev (from .../x11proto-input-dev_1.4.3-1_all.deb) ...
+Selecting previously deselected package x11proto-xext-dev.
+Unpacking x11proto-xext-dev (from .../x11proto-xext-dev_7.0.2-5_all.deb) ...
+Selecting previously deselected package libxext-dev.
+Unpacking libxext-dev (from .../libxext-dev_2%3a1.0.4-1_i386.deb) ...
+Selecting previously deselected package x11proto-kb-dev.
+Unpacking x11proto-kb-dev (from .../x11proto-kb-dev_1.0.3-2_all.deb) ...
+Selecting previously deselected package xtrans-dev.
+Unpacking xtrans-dev (from .../xtrans-dev_1.1-1_all.deb) ...
+Selecting previously deselected package libx11-dev.
+Unpacking libx11-dev (from .../libx11-dev_2%3a1.0.3-7_i386.deb) ...
+Selecting previously deselected package libxfixes3.
+Unpacking libxfixes3 (from .../libxfixes3_1%3a4.0.3-2_i386.deb) ...
+Selecting previously deselected package libxrender1.
+Unpacking libxrender1 (from .../libxrender1_1%3a0.9.4-1_i386.deb) ...
+Selecting previously deselected package libxcursor1.
+Unpacking libxcursor1 (from .../libxcursor1_1%3a1.1.9-1_i386.deb) ...
+Selecting previously deselected package x11proto-render-dev.
+Unpacking x11proto-render-dev (from .../x11proto-render-dev_2%3a0.9.3-2_all.deb) ...
+Selecting previously deselected package libxrender-dev.
+Unpacking libxrender-dev (from .../libxrender-dev_1%3a0.9.4-1_i386.deb) ...
+Selecting previously deselected package x11proto-fixes-dev.
+Unpacking x11proto-fixes-dev (from .../x11proto-fixes-dev_4.0-2_all.deb) ...
+Selecting previously deselected package libxfixes-dev.
+Unpacking libxfixes-dev (from .../libxfixes-dev_1%3a4.0.3-2_i386.deb) ...
+Selecting previously deselected package libxcursor-dev.
+Unpacking libxcursor-dev (from .../libxcursor-dev_1%3a1.1.9-1_i386.deb) ...
+Selecting previously deselected package libexpat1.
+Unpacking libexpat1 (from .../libexpat1_1.95.8-4_i386.deb) ...
+Selecting previously deselected package libfreetype6.
+Unpacking libfreetype6 (from .../libfreetype6_2.3.5-1+b1_i386.deb) ...
+Selecting previously deselected package ucf.
+Unpacking ucf (from .../apt/archives/ucf_3.005_all.deb) ...
+Moving old data out of the way
+Selecting previously deselected package libmagic1.
+Unpacking libmagic1 (from .../libmagic1_4.23-2_i386.deb) ...
+Selecting previously deselected package file.
+Unpacking file (from .../archives/file_4.23-2_i386.deb) ...
+Selecting previously deselected package libnewt0.52.
+Unpacking libnewt0.52 (from .../libnewt0.52_0.52.2-11.2_i386.deb) ...
+Selecting previously deselected package libpopt0.
+Unpacking libpopt0 (from .../libpopt0_1.10-3_i386.deb) ...
+Selecting previously deselected package whiptail.
+Unpacking whiptail (from .../whiptail_0.52.2-11.2_i386.deb) ...
+Selecting previously deselected package defoma.
+Unpacking defoma (from .../defoma_0.11.10-0.2_all.deb) ...
+Selecting previously deselected package ttf-dejavu-core.
+Unpacking ttf-dejavu-core (from .../ttf-dejavu-core_2.23-1_all.deb) ...
+Selecting previously deselected package ttf-dejavu-extra.
+Unpacking ttf-dejavu-extra (from .../ttf-dejavu-extra_2.23-1_all.deb) ...
+Selecting previously deselected package ttf-dejavu.
+Unpacking ttf-dejavu (from .../ttf-dejavu_2.23-1_all.deb) ...
+Selecting previously deselected package fontconfig-config.
+Unpacking fontconfig-config (from .../fontconfig-config_2.5.0-2_all.deb) ...
+Selecting previously deselected package libfontconfig1.
+Unpacking libfontconfig1 (from .../libfontconfig1_2.5.0-2_i386.deb) ...
+Selecting previously deselected package libxft2.
+Unpacking libxft2 (from .../libxft2_2.1.12-2_i386.deb) ...
+Selecting previously deselected package libexpat1-dev.
+Unpacking libexpat1-dev (from .../libexpat1-dev_1.95.8-4_i386.deb) ...
+Selecting previously deselected package zlib1g-dev.
+Unpacking zlib1g-dev (from .../zlib1g-dev_1%3a1.2.3.3.dfsg-11_i386.deb) ...
+Selecting previously deselected package libfreetype6-dev.
+Unpacking libfreetype6-dev (from .../libfreetype6-dev_2.3.5-1+b1_i386.deb) ...
+Selecting previously deselected package libpcre3.
+Unpacking libpcre3 (from .../libpcre3_7.6-2_i386.deb) ...
+Selecting previously deselected package libglib2.0-0.
+Unpacking libglib2.0-0 (from .../libglib2.0-0_2.14.6-1_i386.deb) ...
+Selecting previously deselected package pkg-config.
+Unpacking pkg-config (from .../pkg-config_0.22-1_i386.deb) ...
+Selecting previously deselected package libfontconfig1-dev.
+Unpacking libfontconfig1-dev (from .../libfontconfig1-dev_2.5.0-2_i386.deb) ...
+Selecting previously deselected package libxft-dev.
+Unpacking libxft-dev (from .../libxft-dev_2.1.12-2_i386.deb) ...
+Selecting previously deselected package libxi6.
+Unpacking libxi6 (from .../libxi6_2%3a1.1.3-1_i386.deb) ...
+Selecting previously deselected package libxi-dev.
+Unpacking libxi-dev (from .../libxi-dev_2%3a1.1.3-1_i386.deb) ...
+Selecting previously deselected package libxinerama1.
+Unpacking libxinerama1 (from .../libxinerama1_2%3a1.0.3-1_i386.deb) ...
+Selecting previously deselected package x11proto-xinerama-dev.
+Unpacking x11proto-xinerama-dev (from .../x11proto-xinerama-dev_1.1.2-4_all.deb) ...
+Selecting previously deselected package libxinerama-dev.
+Unpacking libxinerama-dev (from .../libxinerama-dev_2%3a1.0.3-1_i386.deb) ...
+Selecting previously deselected package libxmu-headers.
+Unpacking libxmu-headers (from .../libxmu-headers_2%3a1.0.4-1_all.deb) ...
+Selecting previously deselected package libxrandr2.
+Unpacking libxrandr2 (from .../libxrandr2_2%3a1.2.2-1_i386.deb) ...
+Selecting previously deselected package x11proto-randr-dev.
+Unpacking x11proto-randr-dev (from .../x11proto-randr-dev_1.2.1-2_all.deb) ...
+Selecting previously deselected package libxrandr-dev.
+Unpacking libxrandr-dev (from .../libxrandr-dev_2%3a1.2.2-1_i386.deb) ...
+Selecting previously deselected package libxt6.
+Unpacking libxt6 (from .../libxt6_1%3a1.0.5-3_i386.deb) ...
+Selecting previously deselected package libxt-dev.
+Unpacking libxt-dev (from .../libxt-dev_1%3a1.0.5-3_i386.deb) ...
+Selecting previously deselected package libxmu6.
+Unpacking libxmu6 (from .../libxmu6_2%3a1.0.4-1_i386.deb) ...
+Selecting previously deselected package libxpm4.
+Unpacking libxpm4 (from .../libxpm4_1%3a3.5.7-1_i386.deb) ...
+Selecting previously deselected package libxaw7.
+Unpacking libxaw7 (from .../libxaw7_2%3a1.0.4-1_i386.deb) ...
+Selecting previously deselected package libxmuu1.
+Unpacking libxmuu1 (from .../libxmuu1_2%3a1.0.4-1_i386.deb) ...
+Selecting previously deselected package libxtrap6.
+Unpacking libxtrap6 (from .../libxtrap6_1%3a1.0.0-4_i386.deb) ...
+Selecting previously deselected package libxxf86misc1.
+Unpacking libxxf86misc1 (from .../libxxf86misc1_1%3a1.0.1-2_i386.deb) ...
+Selecting previously deselected package libxxf86vm1.
+Unpacking libxxf86vm1 (from .../libxxf86vm1_1%3a1.0.1-2_i386.deb) ...
+Selecting previously deselected package x11-xserver-utils.
+Unpacking x11-xserver-utils (from .../x11-xserver-utils_7.3+2_i386.deb) ...
+Selecting previously deselected package xauth.
+Unpacking xauth (from .../xauth_1%3a1.0.2-2_i386.deb) ...
+Selecting previously deselected package bsdmainutils.
+Unpacking bsdmainutils (from .../bsdmainutils_6.1.10_i386.deb) ...
+Selecting previously deselected package groff-base.
+Unpacking groff-base (from .../groff-base_1.18.1.1-17_i386.deb) ...
+Selecting previously deselected package libssl0.9.8.
+Unpacking libssl0.9.8 (from .../libssl0.9.8_0.9.8g-7_i386.deb) ...
+Selecting previously deselected package man-db.
+Unpacking man-db (from .../man-db_2.5.1-2_i386.deb) ...
+Selecting previously deselected package module-init-tools.
+Unpacking module-init-tools (from .../module-init-tools_3.3-pre11-4_i386.deb) ...
+Selecting previously deselected package gettext-base.
+Unpacking gettext-base (from .../gettext-base_0.17-2_i386.deb) ...
+Selecting previously deselected package libidn11.
+Unpacking libidn11 (from .../libidn11_1.4-1_i386.deb) ...
+Selecting previously deselected package libkeyutils1.
+Unpacking libkeyutils1 (from .../libkeyutils1_1.2-6_i386.deb) ...
+Selecting previously deselected package libkrb53.
+Unpacking libkrb53 (from .../libkrb53_1.6.dfsg.3~beta1-3_i386.deb) ...
+Selecting previously deselected package html2text.
+Unpacking html2text (from .../html2text_1.3.2a-3_i386.deb) ...
+Selecting previously deselected package libgomp1.
+Unpacking libgomp1 (from .../libgomp1_4.3.0-1_i386.deb) ...
+Selecting previously deselected package gettext.
+Unpacking gettext (from .../gettext_0.17-2_i386.deb) ...
+Selecting previously deselected package intltool-debian.
+Unpacking intltool-debian (from .../intltool-debian_0.35.0+20060710.1_all.deb) ...
+Selecting previously deselected package po-debconf.
+Unpacking po-debconf (from .../po-debconf_1.0.12_all.deb) ...
+Selecting previously deselected package debhelper.
+Unpacking debhelper (from .../debhelper_6.0.7_all.deb) ...
+Selecting previously deselected package esound-common.
+Unpacking esound-common (from .../esound-common_0.2.36-3_all.deb) ...
+Selecting previously deselected package fontconfig.
+Unpacking fontconfig (from .../fontconfig_2.5.0-2_i386.deb) ...
+Selecting previously deselected package hicolor-icon-theme.
+Unpacking hicolor-icon-theme (from .../hicolor-icon-theme_0.10-1_all.deb) ...
+Selecting previously deselected package kdelibs-data.
+Unpacking kdelibs-data (from .../kdelibs-data_4%3a3.5.9.dfsg.1-1_all.deb) ...
+Selecting previously deselected package libart-2.0-2.
+Unpacking libart-2.0-2 (from .../libart-2.0-2_2.3.20-1_i386.deb) ...
+Selecting previously deselected package libartsc0.
+Unpacking libartsc0 (from .../libartsc0_1.5.9-1_i386.deb) ...
+Selecting previously deselected package libasound2.
+Unpacking libasound2 (from .../libasound2_1.0.16-1_i386.deb) ...
+Selecting previously deselected package libaudio2.
+Unpacking libaudio2 (from .../libaudio2_1.9.1-2_i386.deb) ...
+Selecting previously deselected package libaudiofile0.
+Unpacking libaudiofile0 (from .../libaudiofile0_0.2.6-7_i386.deb) ...
+Selecting previously deselected package libesd0.
+Unpacking libesd0 (from .../libesd0_0.2.36-3_i386.deb) ...
+Selecting previously deselected package libraw1394-8.
+Unpacking libraw1394-8 (from .../libraw1394-8_1.3.0-3_i386.deb) ...
+Selecting previously deselected package libavc1394-0.
+Unpacking libavc1394-0 (from .../libavc1394-0_0.5.3-1+b1_i386.deb) ...
+Selecting previously deselected package libiec61883-0.
+Unpacking libiec61883-0 (from .../libiec61883-0_1.1.0-2_i386.deb) ...
+Selecting previously deselected package libxml2.
+Unpacking libxml2 (from .../libxml2_2.6.31.dfsg-2_i386.deb) ...
+Selecting previously deselected package libfreebob0.
+Unpacking libfreebob0 (from .../libfreebob0_1.0.7-1_i386.deb) ...
+Selecting previously deselected package libjack0.
+Unpacking libjack0 (from .../libjack0_0.109.2-1_i386.deb) ...
+Selecting previously deselected package libmad0.
+Unpacking libmad0 (from .../libmad0_0.15.1b-2.1_i386.deb) ...
+Selecting previously deselected package libjpeg62.
+Unpacking libjpeg62 (from .../libjpeg62_6b-14_i386.deb) ...
+Selecting previously deselected package liblcms1.
+Unpacking liblcms1 (from .../liblcms1_1.16-8_i386.deb) ...
+Selecting previously deselected package libmng1.
+Unpacking libmng1 (from .../libmng1_1.0.9-1_i386.deb) ...
+Selecting previously deselected package libpng12-0.
+Unpacking libpng12-0 (from .../libpng12-0_1.2.15~beta5-3_i386.deb) ...
+Selecting previously deselected package libqt3-mt.
+Unpacking libqt3-mt (from .../libqt3-mt_3%3a3.3.8b-4_i386.deb) ...
+Selecting previously deselected package libogg0.
+Unpacking libogg0 (from .../libogg0_1.1.3-3_i386.deb) ...
+Selecting previously deselected package libvorbis0a.
+Unpacking libvorbis0a (from .../libvorbis0a_1.2.0.dfsg-3_i386.deb) ...
+Selecting previously deselected package libvorbisfile3.
+Unpacking libvorbisfile3 (from .../libvorbisfile3_1.2.0.dfsg-3_i386.deb) ...
+Selecting previously deselected package oss-compat.
+Unpacking oss-compat (from .../oss-compat_0.0.4_all.deb) ...
+Selecting previously deselected package libarts1c2a.
+Unpacking libarts1c2a (from .../libarts1c2a_1.5.9-1_i386.deb) ...
+Selecting previously deselected package libaspell15.
+Unpacking libaspell15 (from .../libaspell15_0.60.5-2_i386.deb) ...
+Selecting previously deselected package libavahi-common-data.
+Unpacking libavahi-common-data (from .../libavahi-common-data_0.6.22-2_i386.deb) ...
+Selecting previously deselected package libavahi-common3.
+Unpacking libavahi-common3 (from .../libavahi-common3_0.6.22-2_i386.deb) ...
+Selecting previously deselected package libdbus-1-3.
+Unpacking libdbus-1-3 (from .../libdbus-1-3_1.1.20-1_i386.deb) ...
+Selecting previously deselected package libavahi-client3.
+Unpacking libavahi-client3 (from .../libavahi-client3_0.6.22-2_i386.deb) ...
+Selecting previously deselected package libavahi-qt3-1.
+Unpacking libavahi-qt3-1 (from .../libavahi-qt3-1_0.6.22-2_i386.deb) ...
+Selecting previously deselected package libcupsys2.
+Unpacking libcupsys2 (from .../libcupsys2_1.3.6-1_i386.deb) ...
+Selecting previously deselected package libfam0.
+Unpacking libfam0 (from .../libfam0_2.7.0-13.1_i386.deb) ...
+Selecting previously deselected package libjasper1.
+Unpacking libjasper1 (from .../libjasper1_1.900.1-4_i386.deb) ...
+Selecting previously deselected package liblua50.
+Unpacking liblua50 (from .../liblua50_5.0.3-3_i386.deb) ...
+Selecting previously deselected package liblualib50.
+Unpacking liblualib50 (from .../liblualib50_5.0.3-3_i386.deb) ...
+Selecting previously deselected package libopenexr2ldbl.
+Unpacking libopenexr2ldbl (from .../libopenexr2ldbl_1.2.2-4.4_i386.deb) ...
+Selecting previously deselected package libtiff4.
+Unpacking libtiff4 (from .../libtiff4_3.8.2-7_i386.deb) ...
+Selecting previously deselected package libxslt1.1.
+Unpacking libxslt1.1 (from .../libxslt1.1_1.1.22-1_i386.deb) ...
+Selecting previously deselected package menu-xdg.
+Unpacking menu-xdg (from .../archives/menu-xdg_0.3_all.deb) ...
+Selecting previously deselected package kdelibs4c2a.
+Unpacking kdelibs4c2a (from .../kdelibs4c2a_4%3a3.5.9.dfsg.1-1_i386.deb) ...
+Selecting previously deselected package libattr1-dev.
+Unpacking libattr1-dev (from .../libattr1-dev_1%3a2.4.41-1_i386.deb) ...
+Selecting previously deselected package libacl1-dev.
+Unpacking libacl1-dev (from .../libacl1-dev_2.2.45-1_i386.deb) ...
+Selecting previously deselected package libart-2.0-dev.
+Unpacking libart-2.0-dev (from .../libart-2.0-dev_2.3.20-1_i386.deb) ...
+Selecting previously deselected package libglib2.0-dev.
+Unpacking libglib2.0-dev (from .../libglib2.0-dev_2.14.6-1_i386.deb) ...
+Selecting previously deselected package libartsc0-dev.
+Unpacking libartsc0-dev (from .../libartsc0-dev_1.5.9-1_i386.deb) ...
+Selecting previously deselected package libasound2-dev.
+Unpacking libasound2-dev (from .../libasound2-dev_1.0.16-1_i386.deb) ...
+Selecting previously deselected package libaudio-dev.
+Unpacking libaudio-dev (from .../libaudio-dev_1.9.1-2_i386.deb) ...
+Selecting previously deselected package libaudiofile-dev.
+Unpacking libaudiofile-dev (from .../libaudiofile-dev_0.2.6-7_i386.deb) ...
+Selecting previously deselected package libesd0-dev.
+Unpacking libesd0-dev (from .../libesd0-dev_0.2.36-3_i386.deb) ...
+Selecting previously deselected package libjack-dev.
+Unpacking libjack-dev (from .../libjack-dev_0.109.2-1_i386.deb) ...
+Selecting previously deselected package libjack0.100.0-dev.
+Unpacking libjack0.100.0-dev (from .../libjack0.100.0-dev_0.109.2-1_all.deb) ...
+Selecting previously deselected package libmad0-dev.
+Unpacking libmad0-dev (from .../libmad0-dev_0.15.1b-2.1_i386.deb) ...
+Selecting previously deselected package libogg-dev.
+Unpacking libogg-dev (from .../libogg-dev_1.1.3-3_i386.deb) ...
+Selecting previously deselected package libgpg-error-dev.
+Unpacking libgpg-error-dev (from .../libgpg-error-dev_1.4-2_i386.deb) ...
+Selecting previously deselected package libgcrypt11-dev.
+Unpacking libgcrypt11-dev (from .../libgcrypt11-dev_1.4.0-3_i386.deb) ...
+Selecting previously deselected package libopencdk10-dev.
+Unpacking libopencdk10-dev (from .../libopencdk10-dev_0.6.6-1_i386.deb) ...
+Selecting previously deselected package libtasn1-3-dev.
+Unpacking libtasn1-3-dev (from .../libtasn1-3-dev_1.3-1_i386.deb) ...
+Selecting previously deselected package libgnutls-dev.
+Unpacking libgnutls-dev (from .../libgnutls-dev_2.2.2-1_i386.deb) ...
+Selecting previously deselected package comerr-dev.
+Unpacking comerr-dev (from .../comerr-dev_2.1-1.40.7-1_i386.deb) ...
+Selecting previously deselected package libkadm55.
+Unpacking libkadm55 (from .../libkadm55_1.6.dfsg.3~beta1-3_i386.deb) ...
+Selecting previously deselected package libkrb5-dev.
+Unpacking libkrb5-dev (from .../libkrb5-dev_1.6.dfsg.3~beta1-3_i386.deb) ...
+Selecting previously deselected package libcupsys2-dev.
+Unpacking libcupsys2-dev (from .../libcupsys2-dev_1.3.6-1_i386.deb) ...
+Selecting previously deselected package libdrm2.
+Unpacking libdrm2 (from .../libdrm2_2.3.0-4_i386.deb) ...
+Selecting previously deselected package libxdamage1.
+Unpacking libxdamage1 (from .../libxdamage1_1%3a1.1.1-3_i386.deb) ...
+Selecting previously deselected package libgl1-mesa-glx.
+Unpacking libgl1-mesa-glx (from .../libgl1-mesa-glx_7.0.3~rc2-1_i386.deb) ...
+Selecting previously deselected package mesa-common-dev.
+Unpacking mesa-common-dev (from .../mesa-common-dev_7.0.3~rc2-1_all.deb) ...
+Selecting previously deselected package libgl1-mesa-dev.
+Unpacking libgl1-mesa-dev (from .../libgl1-mesa-dev_7.0.3~rc2-1_all.deb) ...
+Selecting previously deselected package libglu1-mesa.
+Unpacking libglu1-mesa (from .../libglu1-mesa_7.0.3~rc2-1_i386.deb) ...
+Selecting previously deselected package libglu1-mesa-dev.
+Unpacking libglu1-mesa-dev (from .../libglu1-mesa-dev_7.0.3~rc2-1_i386.deb) ...
+Selecting previously deselected package libjpeg62-dev.
+Unpacking libjpeg62-dev (from .../libjpeg62-dev_6b-14_i386.deb) ...
+Selecting previously deselected package liblcms1-dev.
+Unpacking liblcms1-dev (from .../liblcms1-dev_1.16-8_i386.deb) ...
+Selecting previously deselected package libmng-dev.
+Unpacking libmng-dev (from .../libmng-dev_1.0.9-1_i386.deb) ...
+Selecting previously deselected package libpng12-dev.
+Unpacking libpng12-dev (from .../libpng12-dev_1.2.15~beta5-3_i386.deb) ...
+Selecting previously deselected package libqt3-headers.
+Unpacking libqt3-headers (from .../libqt3-headers_3%3a3.3.8b-4_i386.deb) ...
+Selecting previously deselected package libxmu-dev.
+Unpacking libxmu-dev (from .../libxmu-dev_2%3a1.0.4-1_i386.deb) ...
+Selecting previously deselected package qt3-dev-tools.
+Unpacking qt3-dev-tools (from .../qt3-dev-tools_3%3a3.3.8b-4_i386.deb) ...
+Selecting previously deselected package libqt3-mt-dev.
+Unpacking libqt3-mt-dev (from .../libqt3-mt-dev_3%3a3.3.8b-4_i386.deb) ...
+Selecting previously deselected package libvorbisenc2.
+Unpacking libvorbisenc2 (from .../libvorbisenc2_1.2.0.dfsg-3_i386.deb) ...
+Selecting previously deselected package libvorbis-dev.
+Unpacking libvorbis-dev (from .../libvorbis-dev_1.2.0.dfsg-3_i386.deb) ...
+Selecting previously deselected package libarts1-dev.
+Unpacking libarts1-dev (from .../libarts1-dev_1.5.9-1_i386.deb) ...
+Selecting previously deselected package libaspell-dev.
+Unpacking libaspell-dev (from .../libaspell-dev_0.60.5-2_i386.deb) ...
+Selecting previously deselected package libavahi-common-dev.
+Unpacking libavahi-common-dev (from .../libavahi-common-dev_0.6.22-2_i386.deb) ...
+Selecting previously deselected package libdbus-1-dev.
+Unpacking libdbus-1-dev (from .../libdbus-1-dev_1.1.20-1_i386.deb) ...
+Selecting previously deselected package libavahi-client-dev.
+Unpacking libavahi-client-dev (from .../libavahi-client-dev_0.6.22-2_i386.deb) ...
+Selecting previously deselected package libavahi-qt3-dev.
+Unpacking libavahi-qt3-dev (from .../libavahi-qt3-dev_0.6.22-2_i386.deb) ...
+Selecting previously deselected package libbz2-dev.
+Unpacking libbz2-dev (from .../libbz2-dev_1.0.4-3_i386.deb) ...
+Selecting previously deselected package libfam-dev.
+Unpacking libfam-dev (from .../libfam-dev_2.7.0-13.1_i386.deb) ...
+Selecting previously deselected package libidn11-dev.
+Unpacking libidn11-dev (from .../libidn11-dev_1.4-1_i386.deb) ...
+Selecting previously deselected package libjasper-dev.
+Unpacking libjasper-dev (from .../libjasper-dev_1.900.1-4_i386.deb) ...
+Selecting previously deselected package lua50.
+Unpacking lua50 (from .../lua50_5.0.3-3_i386.deb) ...
+Selecting previously deselected package liblua50-dev.
+Unpacking liblua50-dev (from .../liblua50-dev_5.0.3-3_i386.deb) ...
+Selecting previously deselected package liblualib50-dev.
+Unpacking liblualib50-dev (from .../liblualib50-dev_5.0.3-3_i386.deb) ...
+Selecting previously deselected package libopenexr-dev.
+Unpacking libopenexr-dev (from .../libopenexr-dev_1.2.2-4.4_i386.deb) ...
+Selecting previously deselected package libpcrecpp0.
+Unpacking libpcrecpp0 (from .../libpcrecpp0_7.6-2_i386.deb) ...
+Selecting previously deselected package libpcre3-dev.
+Unpacking libpcre3-dev (from .../libpcre3-dev_7.6-2_i386.deb) ...
+Selecting previously deselected package libsasl2-modules.
+Unpacking libsasl2-modules (from .../libsasl2-modules_2.1.22.dfsg1-18_i386.deb) ...
+Selecting previously deselected package libsasl2-dev.
+Unpacking libsasl2-dev (from .../libsasl2-dev_2.1.22.dfsg1-18_i386.deb) ...
+Selecting previously deselected package libssl-dev.
+Unpacking libssl-dev (from .../libssl-dev_0.9.8g-7_i386.deb) ...
+Selecting previously deselected package libtiffxx0c2.
+Unpacking libtiffxx0c2 (from .../libtiffxx0c2_3.8.2-7_i386.deb) ...
+Selecting previously deselected package libtiff4-dev.
+Unpacking libtiff4-dev (from .../libtiff4-dev_3.8.2-7_i386.deb) ...
+Selecting previously deselected package libxml2-dev.
+Unpacking libxml2-dev (from .../libxml2-dev_2.6.31.dfsg-2_i386.deb) ...
+Selecting previously deselected package libxml2-utils.
+Unpacking libxml2-utils (from .../libxml2-utils_2.6.31.dfsg-2_i386.deb) ...
+Selecting previously deselected package libxslt1-dev.
+Unpacking libxslt1-dev (from .../libxslt1-dev_1.1.22-1_i386.deb) ...
+Selecting previously deselected package kdelibs4-dev.
+Unpacking kdelibs4-dev (from .../kdelibs4-dev_4%3a3.5.9.dfsg.1-1_i386.deb) ...
+Selecting previously deselected package libruby1.8.
+Unpacking libruby1.8 (from .../libruby1.8_1.8.6.114-1_i386.deb) ...
+Selecting previously deselected package libcomedi0.
+Unpacking libcomedi0 (from .../libcomedi0_0.8.1-3_i386.deb) ...
+Selecting previously deselected package libcomedi-dev.
+Unpacking libcomedi-dev (from .../libcomedi-dev_0.8.1-3_i386.deb) ...
+Setting up libice6 (2:1.0.4-1) ...
+Setting up x11proto-core-dev (7.0.12-1) ...
+Setting up libice-dev (2:1.0.4-1) ...
+Setting up libsm6 (2:1.0.3-1+b1) ...
+Setting up libsm-dev (2:1.0.3-1+b1) ...
+Setting up libxau6 (1:1.0.3-2) ...
+Setting up libxdmcp6 (1:1.0.2-2) ...
+Setting up libx11-data (2:1.0.3-7) ...
+Setting up libx11-6 (2:1.0.3-7) ...
+Setting up libxau-dev (1:1.0.3-2) ...
+Setting up libxdmcp-dev (1:1.0.2-2) ...
+Setting up libxext6 (2:1.0.4-1) ...
+Setting up x11proto-input-dev (1.4.3-1) ...
+Setting up x11proto-xext-dev (7.0.2-5) ...
+Setting up x11proto-kb-dev (1.0.3-2) ...
+Setting up xtrans-dev (1.1-1) ...
+Setting up libxfixes3 (1:4.0.3-2) ...
+Setting up libxrender1 (1:0.9.4-1) ...
+Setting up libxcursor1 (1:1.1.9-1) ...
+Setting up x11proto-render-dev (2:0.9.3-2) ...
+Setting up x11proto-fixes-dev (4.0-2) ...
+Setting up libexpat1 (1.95.8-4) ...
+Setting up libfreetype6 (2.3.5-1+b1) ...
+Setting up ucf (3.005) ...
+Setting up libmagic1 (4.23-2) ...
+Setting up file (4.23-2) ...
+Setting up libnewt0.52 (0.52.2-11.2) ...
+Setting up libpopt0 (1.10-3) ...
+Setting up whiptail (0.52.2-11.2) ...
+Setting up defoma (0.11.10-0.2) ...
+Setting up ttf-dejavu-core (2.23-1) ...
+Setting up ttf-dejavu-extra (2.23-1) ...
+Setting up ttf-dejavu (2.23-1) ...
+Setting up fontconfig-config (2.5.0-2) ...
+Setting up libfontconfig1 (2.5.0-2) ...
+Setting up libxft2 (2.1.12-2) ...
+Setting up libexpat1-dev (1.95.8-4) ...
+Setting up zlib1g-dev (1:1.2.3.3.dfsg-11) ...
+Setting up libfreetype6-dev (2.3.5-1+b1) ...
+Setting up libpcre3 (7.6-2) ...
+Setting up libglib2.0-0 (2.14.6-1) ...
+Setting up pkg-config (0.22-1) ...
+Setting up libfontconfig1-dev (2.5.0-2) ...
+Setting up libxi6 (2:1.1.3-1) ...
+Setting up libxinerama1 (2:1.0.3-1) ...
+Setting up x11proto-xinerama-dev (1.1.2-4) ...
+Setting up libxrandr2 (2:1.2.2-1) ...
+Setting up x11proto-randr-dev (1.2.1-2) ...
+Setting up libxt6 (1:1.0.5-3) ...
+Setting up libxmu6 (2:1.0.4-1) ...
+Setting up libxpm4 (1:3.5.7-1) ...
+Setting up libxaw7 (2:1.0.4-1) ...
+Setting up libxmuu1 (2:1.0.4-1) ...
+Setting up libxtrap6 (1:1.0.0-4) ...
+Setting up libxxf86misc1 (1:1.0.1-2) ...
+Setting up libxxf86vm1 (1:1.0.1-2) ...
+Setting up x11-xserver-utils (7.3+2) ...
+Setting up xauth (1:1.0.2-2) ...
+Setting up bsdmainutils (6.1.10) ...
+Setting up groff-base (1.18.1.1-17) ...
+Setting up libssl0.9.8 (0.9.8g-7) ...
+Setting up man-db (2.5.1-2) ...
+Building database of manual pages ...
+Setting up module-init-tools (3.3-pre11-4) ...
+Setting up gettext-base (0.17-2) ...
+Setting up libidn11 (1.4-1) ...
+Setting up libkeyutils1 (1.2-6) ...
+Setting up libkrb53 (1.6.dfsg.3~beta1-3) ...
+Setting up html2text (1.3.2a-3) ...
+Setting up libgomp1 (4.3.0-1) ...
+Setting up gettext (0.17-2) ...
+Setting up intltool-debian (0.35.0+20060710.1) ...
+Setting up po-debconf (1.0.12) ...
+Setting up debhelper (6.0.7) ...
+Setting up esound-common (0.2.36-3) ...
+Setting up fontconfig (2.5.0-2) ...
+Updating font configuration of fontconfig...
+Cleaning up category cid..
+Cleaning up category truetype..
+Cleaning up category type1..
+Updating category type1..
+Updating category truetype..
+Updating category cid..
+Updating fontconfig cache for /usr/share/fonts/truetype/ttf-dejavu
+Cleaning up old fontconfig caches... done.
+Regenerating fonts cache... done.
+Setting up hicolor-icon-theme (0.10-1) ...
+Setting up kdelibs-data (4:3.5.9.dfsg.1-1) ...
+Setting up libart-2.0-2 (2.3.20-1) ...
+Setting up libartsc0 (1.5.9-1) ...
+Setting up libasound2 (1.0.16-1) ...
+Setting up libaudio2 (1.9.1-2) ...
+Setting up libaudiofile0 (0.2.6-7) ...
+Setting up libesd0 (0.2.36-3) ...
+Setting up libraw1394-8 (1.3.0-3) ...
+Creating device node /dev/raw1394... done.
+Setting up libavc1394-0 (0.5.3-1+b1) ...
+Setting up libiec61883-0 (1.1.0-2) ...
+Setting up libxml2 (2.6.31.dfsg-2) ...
+Setting up libfreebob0 (1.0.7-1) ...
+Setting up libjack0 (0.109.2-1) ...
+Setting up libmad0 (0.15.1b-2.1) ...
+Setting up libjpeg62 (6b-14) ...
+Setting up liblcms1 (1.16-8) ...
+Setting up libmng1 (1.0.9-1) ...
+Setting up libpng12-0 (1.2.15~beta5-3) ...
+Setting up libqt3-mt (3:3.3.8b-4) ...
+Setting up libogg0 (1.1.3-3) ...
+Setting up libvorbis0a (1.2.0.dfsg-3) ...
+Setting up libvorbisfile3 (1.2.0.dfsg-3) ...
+Setting up oss-compat (0.0.4) ...
+Setting up libarts1c2a (1.5.9-1) ...
+Setting up libaspell15 (0.60.5-2) ...
+Setting up libavahi-common-data (0.6.22-2) ...
+Setting up libavahi-common3 (0.6.22-2) ...
+Setting up libdbus-1-3 (1.1.20-1) ...
+Setting up libavahi-client3 (0.6.22-2) ...
+Setting up libavahi-qt3-1 (0.6.22-2) ...
+Setting up libcupsys2 (1.3.6-1) ...
+Setting up libfam0 (2.7.0-13.1) ...
+Setting up libjasper1 (1.900.1-4) ...
+Setting up liblua50 (5.0.3-3) ...
+Setting up liblualib50 (5.0.3-3) ...
+Setting up libopenexr2ldbl (1.2.2-4.4) ...
+Setting up libtiff4 (3.8.2-7) ...
+Setting up libxslt1.1 (1.1.22-1) ...
+Setting up menu-xdg (0.3) ...
+Setting up kdelibs4c2a (4:3.5.9.dfsg.1-1) ...
+Setting up libattr1-dev (1:2.4.41-1) ...
+Setting up libacl1-dev (2.2.45-1) ...
+Setting up libart-2.0-dev (2.3.20-1) ...
+Setting up libglib2.0-dev (2.14.6-1) ...
+Setting up libartsc0-dev (1.5.9-1) ...
+Setting up libasound2-dev (1.0.16-1) ...
+Setting up libaudio-dev (1.9.1-2) ...
+Setting up libaudiofile-dev (0.2.6-7) ...
+Setting up libesd0-dev (0.2.36-3) ...
+Setting up libjack-dev (0.109.2-1) ...
+Setting up libjack0.100.0-dev (0.109.2-1) ...
+Setting up libmad0-dev (0.15.1b-2.1) ...
+Setting up libogg-dev (1.1.3-3) ...
+Setting up libgpg-error-dev (1.4-2) ...
+Setting up libgcrypt11-dev (1.4.0-3) ...
+Setting up libopencdk10-dev (0.6.6-1) ...
+Setting up libtasn1-3-dev (1.3-1) ...
+Setting up libgnutls-dev (2.2.2-1) ...
+Setting up comerr-dev (2.1-1.40.7-1) ...
+Setting up libkadm55 (1.6.dfsg.3~beta1-3) ...
+Setting up libkrb5-dev (1.6.dfsg.3~beta1-3) ...
+Setting up libcupsys2-dev (1.3.6-1) ...
+Setting up libdrm2 (2.3.0-4) ...
+Setting up libxdamage1 (1:1.1.1-3) ...
+Setting up libgl1-mesa-glx (7.0.3~rc2-1) ...
+Setting up libglu1-mesa (7.0.3~rc2-1) ...
+Setting up libjpeg62-dev (6b-14) ...
+Setting up liblcms1-dev (1.16-8) ...
+Setting up libmng-dev (1.0.9-1) ...
+Setting up libpng12-dev (1.2.15~beta5-3) ...
+Setting up libqt3-headers (3:3.3.8b-4) ...
+Setting up qt3-dev-tools (3:3.3.8b-4) ...
+Setting up libvorbisenc2 (1.2.0.dfsg-3) ...
+Setting up libvorbis-dev (1.2.0.dfsg-3) ...
+Setting up libaspell-dev (0.60.5-2) ...
+Setting up libavahi-common-dev (0.6.22-2) ...
+Setting up libdbus-1-dev (1.1.20-1) ...
+Setting up libavahi-client-dev (0.6.22-2) ...
+Setting up libbz2-dev (1.0.4-3) ...
+Setting up libfam-dev (2.7.0-13.1) ...
+Setting up libidn11-dev (1.4-1) ...
+Setting up libjasper-dev (1.900.1-4) ...
+Setting up lua50 (5.0.3-3) ...
+Setting up liblua50-dev (5.0.3-3) ...
+Setting up liblualib50-dev (5.0.3-3) ...
+Setting up libpcrecpp0 (7.6-2) ...
+Setting up libpcre3-dev (7.6-2) ...
+Setting up libsasl2-modules (2.1.22.dfsg1-18) ...
+Setting up libsasl2-dev (2.1.22.dfsg1-18) ...
+Setting up libssl-dev (0.9.8g-7) ...
+Setting up libtiffxx0c2 (3.8.2-7) ...
+Setting up libtiff4-dev (3.8.2-7) ...
+Setting up libxml2-dev (2.6.31.dfsg-2) ...
+Setting up libxml2-utils (2.6.31.dfsg-2) ...
+Setting up libxslt1-dev (1.1.22-1) ...
+Setting up libruby1.8 (1.8.6.114-1) ...
+Setting up libcomedi0 (0.8.1-3) ...
+creating iocard group...
+/var/lib/dpkg/info/libcomedi0.postinst: line 9: addgroup: command not found
+dpkg: error processing libcomedi0 (--configure):
+ subprocess post-installation script returned error exit status 127
+dpkg: dependency problems prevent configuration of libcomedi-dev:
+ libcomedi-dev depends on libcomedi0; however:
+  Package libcomedi0 is not configured yet.
+dpkg: error processing libcomedi-dev (--configure):
+ dependency problems - leaving unconfigured
+Setting up libxext-dev (2:1.0.4-1) ...
+Setting up libx11-dev (2:1.0.3-7) ...
+Setting up libxrender-dev (1:0.9.4-1) ...
+Setting up libxfixes-dev (1:4.0.3-2) ...
+Setting up libxcursor-dev (1:1.1.9-1) ...
+Setting up libxft-dev (2.1.12-2) ...
+Setting up libxi-dev (2:1.1.3-1) ...
+Setting up libxinerama-dev (2:1.0.3-1) ...
+Setting up libxmu-headers (2:1.0.4-1) ...
+Setting up libxrandr-dev (2:1.2.2-1) ...
+Setting up libxt-dev (1:1.0.5-3) ...
+Setting up mesa-common-dev (7.0.3~rc2-1) ...
+Setting up libgl1-mesa-dev (7.0.3~rc2-1) ...
+Setting up libglu1-mesa-dev (7.0.3~rc2-1) ...
+Setting up libxmu-dev (2:1.0.4-1) ...
+Setting up libqt3-mt-dev (3:3.3.8b-4) ...
+Setting up libarts1-dev (1.5.9-1) ...
+Setting up libavahi-qt3-dev (0.6.22-2) ...
+Setting up libopenexr-dev (1.2.2-4.4) ...
+Setting up kdelibs4-dev (4:3.5.9.dfsg.1-1) ...
+Errors were encountered while processing:
+ libcomedi0
+ libcomedi-dev
+E: Sub-process /usr/bin/dpkg returned an error code (1)

Added: collab-qa-tools/test/dest/tomboy_0.8.2-1_sid32.buildoutput
===================================================================
--- collab-qa-tools/test/dest/tomboy_0.8.2-1_sid32.buildoutput	                        (rev 0)
+++ collab-qa-tools/test/dest/tomboy_0.8.2-1_sid32.buildoutput	2008-03-11 08:06:38 UTC (rev 735)
@@ -0,0 +1,47 @@
+tomboy 0.8.2-1 Failed 295.658188
+Reason: COMPIL_FAILED
+
+1-line summary:
+PreferencesDialog.cs(5,1): error CS0246: The type or namespace name `GConf.PropertyEditors' could not be found. Are you missing a using directive or an assembly reference?
+
+multi-line summary:
+PreferencesDialog.cs(5,1): error CS0246: The type or namespace name `GConf.PropertyEditors' could not be found. Are you missing a using directive or an assembly reference?
+
+excerpt for mail:
+make[4]: Entering directory `/build/user/tomboy-0.8.2/Tomboy'
+sed -e "s|\@prefix\@|/usr|g" 		\
+	    -e "s|\@pkglibdir\@|/usr/lib/tomboy|g" 	\
+	    -e "s|\@bindir\@|/usr/bin|g"		\
+	    -e "s|\@target\@|Tomboy.exe|g" 		\
+	    -e "s|\@wrapper\@|tomboy|g"		\
+	    -e "s|\@extragac\@||g"	\
+	    -e "s|\@srcdir\@|/build/user/tomboy-0.8.2/Tomboy|g"	\
+	    < tomboy.in > tomboy
+chmod +x tomboy
+sed -e "s|\@prefix\@|/usr|g" 		\
+	    -e "s|\@pkglibdir\@|/usr/lib/tomboy|g" 	\
+	    -e "s|\@bindir\@|/usr/bin|g"		\
+	    -e "s|\@target\@|Tomboy.exe|g" 		\
+	    -e "s|\@wrapper\@|tomboy|g"		\
+	    -e "s|\@extragac\@||g"	\
+	    -e "s|\@srcdir\@|/build/user/tomboy-0.8.2/Tomboy|g"	\
+	    < tomboy-panel.in > tomboy-panel
+chmod +x tomboy-panel
+sed -e "s|\@version\@|0.8.2|"     \
+	    -e "s|\@datadir\@|/usr/share|"     \
+	    -e "s|\@pkglibdir\@|/usr/lib/tomboy|" \
+	    < Defines.cs.in > Defines.cs
+gmcs -debug -target:exe -out:Tomboy.exe -debug -define:DEBUG -unsafe -target:exe -define:ENABLE_DBUS -define:FIXED_GTKSPELL Tomboy.cs AbstractAddin.cs ActionManager.cs AddinManager.cs AddinPreferenceFactory.cs Applet.cs ApplicationAddin.cs Logger.cs Note.cs NoteAddin.cs NoteEditor.cs NoteManager.cs NoteWindow.cs NoteBuffer.cs NoteTag.cs Preferences.cs PreferencesDialog.cs RecentChanges.cs Tag.cs TagButton.cs TagManager.cs Tray.cs Trie.cs Undo.cs Utils.cs Watchers.cs WrapBox.cs XKeybinder.cs Synchronization/FileSystemSyncServer.cs Synchronization/FuseSyncServiceAddin.cs Synchronization/SyncDialog.cs Synchronization/SyncManager.cs Synchronization/SyncServiceAddin.cs Synchronization/SyncUtils.cs Synchronization/TomboySyncClient.cs panelapplet/BonoboUIVerb.cs panelapplet/ChangeBackgroundHandler.cs panelapplet/ChangeSizeHandler.cs panelapplet/GnomeSharp.PanelAppletFactoryCallbackNative.cs panelapplet/MoveFocusOutOfAppletHandler.cs panelapplet/ObjectManager.cs panelapplet/PanelApplet.cs panelapplet/PanelAppletBackgroundType.cs panelapplet/PanelAppletFactory.cs panelapplet/PanelAppletFactoryCallback.cs panelapplet/PanelAppletFlags.cs Gnome.Keyring/AccessRights.cs Gnome.Keyring/AttributeType.cs Gnome.Keyring/GenericItemData.cs Gnome.Keyring/ItemACL.cs Gnome.Keyring/ItemData.cs Gnome.Keyring/ItemType.cs Gnome.Keyring/KeyringException.cs Gnome.Keyring/KeyringInfo.cs Gnome.Keyring/NetItemData.cs Gnome.Keyring/NoteItemData.cs Gnome.Keyring/Operation.cs Gnome.Keyring/RequestMessage.cs Gnome.Keyring/ResponseMessage.cs Gnome.Keyring/ResultCode.cs Gnome.Keyring/Ring.cs RemoteControl.cs RemoteControlProxy.cs Defines.cs -r:/usr/lib/pkgconfig/../../lib/mono/gtk-sharp-2.0/pango-sharp.dll -r:/usr/lib/pkgconfig/../../lib/mono/gtk-sharp-2.0/atk-sharp.dll -r:/usr/lib/pkgconfig/../../lib/mono/gtk-sharp-2.0/gdk-sharp.dll -r:/usr/lib/pkgconfig/../../lib/mono/gtk-sharp-2.0/gtk-sharp.dll -r:/usr/lib/pkgconfig/../../lib/mono/gtk-sharp-2.0/glib-sharp.dll -r:/usr/lib/pkgconfig/../../lib/mono/gtk-sharp-2.0/gnome-sharp.dll -r:/usr/lib/pkgconfig/../../lib/mono/gtk-sharp-2.0/art-sharp.dll -r:/usr/lib/pkgconfig/../../lib/mono/gtk-sharp-2.0/gnome-vfs-sharp.dll -r:/usr/lib/pkgconfig/../../lib/mono/gtk-sharp-2.0/gconf-sharp.dll   -r:Mono.Posix -r:/usr/lib/cli/ndesk-dbus-1.0/NDesk.DBus.dll -r:/usr/lib/cli/ndesk-dbus-glib-1.0/NDesk.DBus.GLib.dll   -r:/usr/lib/cli/mono-addins-0.2/Mono.Addins.dll -r:/usr/lib/cli/mono-addins-0.2/Mono.Addins.Gui.dll -r:/usr/lib/pkgconfig/../../lib/mono/gtk-sharp-2.0/gnome-sharp.dll -r:/usr/lib/pkgconfig/../../lib/mono/gtk-sharp-2.0/pango-sharp.dll -r:/usr/lib/pkgconfig/../../lib/mono/gtk-sharp-2.0/atk-sharp.dll -r:/usr/lib/pkgconfig/../../lib/mono/gtk-sharp-2.0/gdk-sharp.dll -r:/usr/lib/pkgconfig/../../lib/mono/gtk-sharp-2.0/gtk-sharp.dll -r:/usr/lib/pkgconfig/../../lib/mono/gtk-sharp-2.0/glade-sharp.dll -r:/usr/lib/pkgconfig/../../lib/mono/gtk-sharp-2.0/art-sharp.dll -r:/usr/lib/pkgconfig/../../lib/mono/gtk-sharp-2.0/gnome-vfs-sharp.dll -r:/usr/lib/pkgconfig/../../lib/mono/gtk-sharp-2.0/glib-sharp.dll -r:/usr/lib/cli/mono-addins-0.2/Mono.Addins.Setup.dll   -resource:../data/GNOME_TomboyApplet.xml,GNOME_TomboyApplet.xml -resource:../data/UIManagerLayout.xml -resource:../data/images/tomboy.png,tomboy.png -resource:../data/images/tomboy-note-16.png,tomboy-note.png -resource:../data/images/gnome-searchtool.png,gnome-searchtool.png -resource:../data/images/pinup.png,pinup.png -resource:../data/images/pinup-active.png,pinup-active.png -resource:../data/images/pindown.png,pindown.png -resource:./Tomboy.addin.xml
+Synchronization/FuseSyncServiceAddin.cs(127,41): warning CS0642: Possible mistaken empty statement
+Synchronization/FuseSyncServiceAddin.cs(130,49): warning CS0642: Possible mistaken empty statement
+NoteTag.cs(325,40): warning CS0108: `Tomboy.DepthNoteTag.Direction' hides inherited member `Gtk.TextTag.Direction'. Use the new keyword if hiding was intended
+/usr/lib/mono/gac/gtk-sharp/2.10.0.0__35e10195dab3c99f/gtk-sharp.dll (Location of the symbol related to previous warning)
+PreferencesDialog.cs(5,13): error CS0234: The type or namespace name `PropertyEditors' does not exist in the namespace `GConf'. Are you missing an assembly reference?
+PreferencesDialog.cs(5,1): error CS0246: The type or namespace name `GConf.PropertyEditors' could not be found. Are you missing a using directive or an assembly reference?
+PreferencesDialog.cs(753,43): error CS0246: The type or namespace name `PropertyEditor' could not be found. Are you missing a using directive or an assembly reference?
+WrapBox.cs(103,29): warning CS0108: `Tomboy.WrapBox.Remove(Gtk.Widget)' hides inherited member `Gtk.Container.Remove(Gtk.Widget)'. Use the new keyword if hiding was intended
+/usr/lib/mono/gac/gtk-sharp/2.10.0.0__35e10195dab3c99f/gtk-sharp.dll (Location of the symbol related to previous warning)
+PreferencesDialog.cs(5,13): error CS0234: The type or namespace name `PropertyEditors' does not exist in the namespace `GConf'. Are you missing an assembly reference?
+PreferencesDialog.cs(5,1): error CS0246: The type or namespace name `GConf.PropertyEditors' could not be found. Are you missing a using directive or an assembly reference?
+Compilation failed: 5 error(s), 4 warnings
+make[4]: *** [Tomboy.exe] Error 1

Added: collab-qa-tools/test/dest/ttf-jsmath_0.01-1_sid32.buildoutput
===================================================================
--- collab-qa-tools/test/dest/ttf-jsmath_0.01-1_sid32.buildoutput	                        (rev 0)
+++ collab-qa-tools/test/dest/ttf-jsmath_0.01-1_sid32.buildoutput	2008-03-11 08:06:38 UTC (rev 735)
@@ -0,0 +1,26 @@
+ttf-jsmath 0.01-1 Failed 50.292711
+Reason: NO_SUCH_FILE
+
+1-line summary:
+make: dh_installdefoma: Command not found
+
+multi-line summary:
+make: dh_installdefoma: Command not found
+
+excerpt for mail:
+ /usr/bin/fakeroot debian/rules binary
+dh_testdir
+dh_testroot
+dh_clean -k 
+dh_installdirs
+# Add here commands to install the package into debian/ttf-jsmath.
+#/usr/bin/make DESTDIR=/build/user/ttf-jsmath-0.01/debian/ttf-jsmath install
+install -m 0644 *.ttf /build/user/ttf-jsmath-0.01/debian/ttf-jsmath/usr/share/fonts/truetype/jsmath/
+dh_testdir
+dh_testroot
+dh_installchangelogs 
+dh_installdocs
+dh_installexamples
+dh_installdefoma
+make: dh_installdefoma: Command not found
+make: *** [binary-indep] Error 127

Added: collab-qa-tools/test/source/ktimetrace_0.2.36-4.1_sid32.buildlog
===================================================================
--- collab-qa-tools/test/source/ktimetrace_0.2.36-4.1_sid32.buildlog	                        (rev 0)
+++ collab-qa-tools/test/source/ktimetrace_0.2.36-4.1_sid32.buildlog	2008-03-11 08:06:38 UTC (rev 735)
@@ -0,0 +1,1270 @@
+DC-Build-Header: ktimetrace 0.2.36-4.1 / Tue Mar 11 03:02:36 +0100 2008
+Automatic build of ktimetrace_0.2.36-4.1 on grelon-90.nancy.grid5000.fr by sbuild/amd64 0.57.0
+Build started at 20080311-0302
+******************************************************************************
+Failed to open ./ktimetrace_0.2.36-4.1.dsc
+Checking available source versions...
+Fetching source files...
+Reading package lists...
+Building dependency tree...
+Reading state information...
+Need to get 422kB of source archives.
+Get:1 http://idpot.grenoble.grid5000.fr sid/main ktimetrace 0.2.36-4.1 (dsc) [636B]
+Get:2 http://idpot.grenoble.grid5000.fr sid/main ktimetrace 0.2.36-4.1 (tar) [370kB]
+Get:3 http://idpot.grenoble.grid5000.fr sid/main ktimetrace 0.2.36-4.1 (diff) [51.0kB]
+Fetched 422kB in 0s (1430kB/s)
+Download complete and in download only mode
+** Using build dependencies supplied by package:
+Build-Depends: debhelper (>> 3.0.0), libcomedi-dev (>= 0.7.16-1.1), kdelibs4-dev, zlib1g-dev
+Checking for already installed source dependencies...
+debhelper: missing
+Using default version 6.0.7
+libcomedi-dev: missing
+Using default version 0.8.1-3
+kdelibs4-dev: missing
+zlib1g-dev: missing
+Checking for source dependency conflicts...
+Reading package lists...
+Building dependency tree...
+Reading state information...
+The following extra packages will be installed:
+  bsdmainutils comerr-dev defoma esound-common file fontconfig
+  fontconfig-config gettext gettext-base groff-base hicolor-icon-theme
+  html2text intltool-debian kdelibs-data kdelibs4c2a libacl1-dev libart-2.0-2
+  libart-2.0-dev libarts1-dev libarts1c2a libartsc0 libartsc0-dev libasound2
+  libasound2-dev libaspell-dev libaspell15 libattr1-dev libaudio-dev libaudio2
+  libaudiofile-dev libaudiofile0 libavahi-client-dev libavahi-client3
+  libavahi-common-data libavahi-common-dev libavahi-common3 libavahi-qt3-1
+  libavahi-qt3-dev libavc1394-0 libbz2-dev libcomedi0 libcupsys2
+  libcupsys2-dev libdbus-1-3 libdbus-1-dev libdrm2 libesd0 libesd0-dev
+  libexpat1 libexpat1-dev libfam-dev libfam0 libfontconfig1 libfontconfig1-dev
+  libfreebob0 libfreetype6 libfreetype6-dev libgcrypt11-dev libgl1-mesa-dev
+  libgl1-mesa-glx libglib2.0-0 libglib2.0-dev libglu1-mesa libglu1-mesa-dev
+  libgnutls-dev libgomp1 libgpg-error-dev libice-dev libice6 libidn11
+  libidn11-dev libiec61883-0 libjack-dev libjack0 libjack0.100.0-dev
+  libjasper-dev libjasper1 libjpeg62 libjpeg62-dev libkadm55 libkeyutils1
+  libkrb5-dev libkrb53 liblcms1 liblcms1-dev liblua50 liblua50-dev liblualib50
+  liblualib50-dev libmad0 libmad0-dev libmagic1 libmng-dev libmng1 libnewt0.52
+  libogg-dev libogg0 libopencdk10-dev libopenexr-dev libopenexr2ldbl libpcre3
+  libpcre3-dev libpcrecpp0 libpng12-0 libpng12-dev libpopt0 libqt3-headers
+  libqt3-mt libqt3-mt-dev libraw1394-8 libruby1.8 libsasl2-dev
+  libsasl2-modules libsm-dev libsm6 libssl-dev libssl0.9.8 libtasn1-3-dev
+  libtiff4 libtiff4-dev libtiffxx0c2 libvorbis-dev libvorbis0a libvorbisenc2
+  libvorbisfile3 libx11-6 libx11-data libx11-dev libxau-dev libxau6 libxaw7
+  libxcursor-dev libxcursor1 libxdamage1 libxdmcp-dev libxdmcp6 libxext-dev
+  libxext6 libxfixes-dev libxfixes3 libxft-dev libxft2 libxi-dev libxi6
+  libxinerama-dev libxinerama1 libxml2 libxml2-dev libxml2-utils libxmu-dev
+  libxmu-headers libxmu6 libxmuu1 libxpm4 libxrandr-dev libxrandr2
+  libxrender-dev libxrender1 libxslt1-dev libxslt1.1 libxt-dev libxt6
+  libxtrap6 libxxf86misc1 libxxf86vm1 lua50 man-db menu-xdg mesa-common-dev
+  module-init-tools oss-compat pkg-config po-debconf qt3-dev-tools ttf-dejavu
+  ttf-dejavu-core ttf-dejavu-extra ucf whiptail x11-common x11-xserver-utils
+  x11proto-core-dev x11proto-fixes-dev x11proto-input-dev x11proto-kb-dev
+  x11proto-randr-dev x11proto-render-dev x11proto-xext-dev
+  x11proto-xinerama-dev xauth xtrans-dev
+Suggested packages:
+  wamerican wordlist whois vacation doc-base dh-make defoma-doc dfontmgr
+  psfontmgr x-ttcidfont-conf cvs gettext-doc groff fam perl-suid
+  libasound2-plugins libasound2-doc aspell-doc aspell nas cupsys-common esound
+  libgcrypt11-doc libglib2.0-doc gnutls-bin gnutls-doc guile-gnutls jackd
+  libjasper-runtime krb5-doc krb5-user liblcms-utils libqt3-mt-mysql
+  libqt3-mt-odbc libqt3-mt-psql libqt3-i18n qt3-doc libraw1394-doc
+  libsasl2-modules-gssapi-mit libsasl2-modules-gssapi-heimdal
+  libsasl2-modules-ldap libsasl2-modules-otp libsasl2-modules-sql www-browser
+  pdksh
+Recommended packages:
+  libft-perl curl wget lynx libarts1-akode aspell-en aspell-dictionary
+  aspell6a-dictionary dbus esound-clients libglib2.0-data libfribidi0
+  libqt3-compat-headers xml-core menu libcompress-zlib-perl libmail-box-perl
+  libmail-sendmail-perl
+The following NEW packages will be installed:
+  bsdmainutils comerr-dev debhelper defoma esound-common file fontconfig
+  fontconfig-config gettext gettext-base groff-base hicolor-icon-theme
+  html2text intltool-debian kdelibs-data kdelibs4-dev kdelibs4c2a libacl1-dev
+  libart-2.0-2 libart-2.0-dev libarts1-dev libarts1c2a libartsc0 libartsc0-dev
+  libasound2 libasound2-dev libaspell-dev libaspell15 libattr1-dev
+  libaudio-dev libaudio2 libaudiofile-dev libaudiofile0 libavahi-client-dev
+  libavahi-client3 libavahi-common-data libavahi-common-dev libavahi-common3
+  libavahi-qt3-1 libavahi-qt3-dev libavc1394-0 libbz2-dev libcomedi-dev
+  libcomedi0 libcupsys2 libcupsys2-dev libdbus-1-3 libdbus-1-dev libdrm2
+  libesd0 libesd0-dev libexpat1 libexpat1-dev libfam-dev libfam0
+  libfontconfig1 libfontconfig1-dev libfreebob0 libfreetype6 libfreetype6-dev
+  libgcrypt11-dev libgl1-mesa-dev libgl1-mesa-glx libglib2.0-0 libglib2.0-dev
+  libglu1-mesa libglu1-mesa-dev libgnutls-dev libgomp1 libgpg-error-dev
+  libice-dev libice6 libidn11 libidn11-dev libiec61883-0 libjack-dev libjack0
+  libjack0.100.0-dev libjasper-dev libjasper1 libjpeg62 libjpeg62-dev
+  libkadm55 libkeyutils1 libkrb5-dev libkrb53 liblcms1 liblcms1-dev liblua50
+  liblua50-dev liblualib50 liblualib50-dev libmad0 libmad0-dev libmagic1
+  libmng-dev libmng1 libnewt0.52 libogg-dev libogg0 libopencdk10-dev
+  libopenexr-dev libopenexr2ldbl libpcre3 libpcre3-dev libpcrecpp0 libpng12-0
+  libpng12-dev libpopt0 libqt3-headers libqt3-mt libqt3-mt-dev libraw1394-8
+  libruby1.8 libsasl2-dev libsasl2-modules libsm-dev libsm6 libssl-dev
+  libssl0.9.8 libtasn1-3-dev libtiff4 libtiff4-dev libtiffxx0c2 libvorbis-dev
+  libvorbis0a libvorbisenc2 libvorbisfile3 libx11-6 libx11-data libx11-dev
+  libxau-dev libxau6 libxaw7 libxcursor-dev libxcursor1 libxdamage1
+  libxdmcp-dev libxdmcp6 libxext-dev libxext6 libxfixes-dev libxfixes3
+  libxft-dev libxft2 libxi-dev libxi6 libxinerama-dev libxinerama1 libxml2
+  libxml2-dev libxml2-utils libxmu-dev libxmu-headers libxmu6 libxmuu1 libxpm4
+  libxrandr-dev libxrandr2 libxrender-dev libxrender1 libxslt1-dev libxslt1.1
+  libxt-dev libxt6 libxtrap6 libxxf86misc1 libxxf86vm1 lua50 man-db menu-xdg
+  mesa-common-dev module-init-tools oss-compat pkg-config po-debconf
+  qt3-dev-tools ttf-dejavu ttf-dejavu-core ttf-dejavu-extra ucf whiptail
+  x11-common x11-xserver-utils x11proto-core-dev x11proto-fixes-dev
+  x11proto-input-dev x11proto-kb-dev x11proto-randr-dev x11proto-render-dev
+  x11proto-xext-dev x11proto-xinerama-dev xauth xtrans-dev zlib1g-dev
+0 upgraded, 195 newly installed, 0 to remove and 0 not upgraded.
+Need to get 70.2MB of archives.
+After this operation, 222MB of additional disk space will be used.
+WARNING: The following packages cannot be authenticated!
+  x11-common libice6 x11proto-core-dev libice-dev libsm6 libsm-dev libxau6
+  libxdmcp6 libx11-data libx11-6 libxau-dev libxdmcp-dev libxext6
+  x11proto-input-dev x11proto-xext-dev libxext-dev x11proto-kb-dev xtrans-dev
+  libx11-dev libxfixes3 libxrender1 libxcursor1 x11proto-render-dev
+  libxrender-dev x11proto-fixes-dev libxfixes-dev libxcursor-dev libexpat1
+  libfreetype6 ucf libmagic1 file libnewt0.52 libpopt0 whiptail defoma
+  ttf-dejavu-core ttf-dejavu-extra ttf-dejavu fontconfig-config libfontconfig1
+  libxft2 libexpat1-dev zlib1g-dev libfreetype6-dev libpcre3 libglib2.0-0
+  pkg-config libfontconfig1-dev libxft-dev libxi6 libxi-dev libxinerama1
+  x11proto-xinerama-dev libxinerama-dev libxmu-headers libxrandr2
+  x11proto-randr-dev libxrandr-dev libxt6 libxt-dev libxmu6 libxpm4 libxaw7
+  libxmuu1 libxtrap6 libxxf86misc1 libxxf86vm1 x11-xserver-utils xauth
+  bsdmainutils groff-base libssl0.9.8 man-db module-init-tools gettext-base
+  libidn11 libkeyutils1 libkrb53 html2text libgomp1 gettext intltool-debian
+  po-debconf debhelper esound-common fontconfig hicolor-icon-theme
+  kdelibs-data libart-2.0-2 libartsc0 libasound2 libaudio2 libaudiofile0
+  libesd0 libraw1394-8 libavc1394-0 libiec61883-0 libxml2 libfreebob0 libjack0
+  libmad0 libjpeg62 liblcms1 libmng1 libpng12-0 libqt3-mt libogg0 libvorbis0a
+  libvorbisfile3 oss-compat libarts1c2a libaspell15 libavahi-common-data
+  libavahi-common3 libdbus-1-3 libavahi-client3 libavahi-qt3-1 libcupsys2
+  libfam0 libjasper1 liblua50 liblualib50 libopenexr2ldbl libtiff4 libxslt1.1
+  menu-xdg kdelibs4c2a libattr1-dev libacl1-dev libart-2.0-dev libglib2.0-dev
+  libartsc0-dev libasound2-dev libaudio-dev libaudiofile-dev libesd0-dev
+  libjack-dev libjack0.100.0-dev libmad0-dev libogg-dev libgpg-error-dev
+  libgcrypt11-dev libopencdk10-dev libtasn1-3-dev libgnutls-dev comerr-dev
+  libkadm55 libkrb5-dev libcupsys2-dev libdrm2 libxdamage1 libgl1-mesa-glx
+  mesa-common-dev libgl1-mesa-dev libglu1-mesa libglu1-mesa-dev libjpeg62-dev
+  liblcms1-dev libmng-dev libpng12-dev libqt3-headers libxmu-dev qt3-dev-tools
+  libqt3-mt-dev libvorbisenc2 libvorbis-dev libarts1-dev libaspell-dev
+  libavahi-common-dev libdbus-1-dev libavahi-client-dev libavahi-qt3-dev
+  libbz2-dev libfam-dev libidn11-dev libjasper-dev lua50 liblua50-dev
+  liblualib50-dev libopenexr-dev libpcrecpp0 libpcre3-dev libsasl2-modules
+  libsasl2-dev libssl-dev libtiffxx0c2 libtiff4-dev libxml2-dev libxml2-utils
+  libxslt1-dev kdelibs4-dev libruby1.8 libcomedi0 libcomedi-dev
+Authentication warning overridden.
+Get:1 http://idpot.grenoble.grid5000.fr sid/main x11-common 1:7.3+10 [345kB]
+Get:2 http://idpot.grenoble.grid5000.fr sid/main libice6 2:1.0.4-1 [46.6kB]
+Get:3 http://idpot.grenoble.grid5000.fr sid/main x11proto-core-dev 7.0.12-1 [89.6kB]
+Get:4 http://idpot.grenoble.grid5000.fr sid/main libice-dev 2:1.0.4-1 [55.1kB]
+Get:5 http://idpot.grenoble.grid5000.fr sid/main libsm6 2:1.0.3-1+b1 [21.8kB]
+Get:6 http://idpot.grenoble.grid5000.fr sid/main libsm-dev 2:1.0.3-1+b1 [24.3kB]
+Get:7 http://idpot.grenoble.grid5000.fr sid/main libxau6 1:1.0.3-2 [11.7kB]
+Get:8 http://idpot.grenoble.grid5000.fr sid/main libxdmcp6 1:1.0.2-2 [16.7kB]
+Get:9 http://idpot.grenoble.grid5000.fr sid/main libx11-data 2:1.0.3-7 [157kB]
+Get:10 http://idpot.grenoble.grid5000.fr sid/main libx11-6 2:1.0.3-7 [567kB]
+Get:11 http://idpot.grenoble.grid5000.fr sid/main libxau-dev 1:1.0.3-2 [15.4kB]
+Get:12 http://idpot.grenoble.grid5000.fr sid/main libxdmcp-dev 1:1.0.2-2 [19.8kB]
+Get:13 http://idpot.grenoble.grid5000.fr sid/main libxext6 2:1.0.4-1 [33.5kB]
+Get:14 http://idpot.grenoble.grid5000.fr sid/main x11proto-input-dev 1.4.3-1 [15.9kB]
+Get:15 http://idpot.grenoble.grid5000.fr sid/main x11proto-xext-dev 7.0.2-5 [41.7kB]
+Get:16 http://idpot.grenoble.grid5000.fr sid/main libxext-dev 2:1.0.4-1 [84.2kB]
+Get:17 http://idpot.grenoble.grid5000.fr sid/main x11proto-kb-dev 1.0.3-2 [26.8kB]
+Get:18 http://idpot.grenoble.grid5000.fr sid/main xtrans-dev 1.1-1 [73.7kB]
+Get:19 http://idpot.grenoble.grid5000.fr sid/main libx11-dev 2:1.0.3-7 [1269kB]
+Get:20 http://idpot.grenoble.grid5000.fr sid/main libxfixes3 1:4.0.3-2 [9572B]
+Get:21 http://idpot.grenoble.grid5000.fr sid/main libxrender1 1:0.9.4-1 [25.4kB]
+Get:22 http://idpot.grenoble.grid5000.fr sid/main libxcursor1 1:1.1.9-1 [24.0kB]
+Get:23 http://idpot.grenoble.grid5000.fr sid/main x11proto-render-dev 2:0.9.3-2 [7062B]
+Get:24 http://idpot.grenoble.grid5000.fr sid/main libxrender-dev 1:0.9.4-1 [28.5kB]
+Get:25 http://idpot.grenoble.grid5000.fr sid/main x11proto-fixes-dev 4.0-2 [5640B]
+Get:26 http://idpot.grenoble.grid5000.fr sid/main libxfixes-dev 1:4.0.3-2 [12.1kB]
+Get:27 http://idpot.grenoble.grid5000.fr sid/main libxcursor-dev 1:1.1.9-1 [30.8kB]
+Get:28 http://idpot.grenoble.grid5000.fr sid/main libexpat1 1.95.8-4 [63.9kB]
+Get:29 http://idpot.grenoble.grid5000.fr sid/main libfreetype6 2.3.5-1+b1 [347kB]
+Get:30 http://idpot.grenoble.grid5000.fr sid/main ucf 3.005 [61.2kB]
+Get:31 http://idpot.grenoble.grid5000.fr sid/main libmagic1 4.23-2 [342kB]
+Get:32 http://idpot.grenoble.grid5000.fr sid/main file 4.23-2 [41.0kB]
+Get:33 http://idpot.grenoble.grid5000.fr sid/main libnewt0.52 0.52.2-11.2 [67.2kB]
+Get:34 http://idpot.grenoble.grid5000.fr sid/main libpopt0 1.10-3 [33.1kB]
+Get:35 http://idpot.grenoble.grid5000.fr sid/main whiptail 0.52.2-11.2 [34.8kB]
+Get:36 http://idpot.grenoble.grid5000.fr sid/main defoma 0.11.10-0.2 [101kB]
+Get:37 http://idpot.grenoble.grid5000.fr sid/main ttf-dejavu-core 2.23-1 [1347kB]
+Get:38 http://idpot.grenoble.grid5000.fr sid/main ttf-dejavu-extra 2.23-1 [2949kB]
+Get:39 http://idpot.grenoble.grid5000.fr sid/main ttf-dejavu 2.23-1 [24.3kB]
+Get:40 http://idpot.grenoble.grid5000.fr sid/main fontconfig-config 2.5.0-2 [179kB]
+Get:41 http://idpot.grenoble.grid5000.fr sid/main libfontconfig1 2.5.0-2 [110kB]
+Get:42 http://idpot.grenoble.grid5000.fr sid/main libxft2 2.1.12-2 [47.6kB]
+Get:43 http://idpot.grenoble.grid5000.fr sid/main libexpat1-dev 1.95.8-4 [129kB]
+Get:44 http://idpot.grenoble.grid5000.fr sid/main zlib1g-dev 1:1.2.3.3.dfsg-11 [157kB]
+Get:45 http://idpot.grenoble.grid5000.fr sid/main libfreetype6-dev 2.3.5-1+b1 [662kB]
+Get:46 http://idpot.grenoble.grid5000.fr sid/main libpcre3 7.6-2 [208kB]
+Get:47 http://idpot.grenoble.grid5000.fr sid/main libglib2.0-0 2.14.6-1 [561kB]
+Get:48 http://idpot.grenoble.grid5000.fr sid/main pkg-config 0.22-1 [52.2kB]
+Get:49 http://idpot.grenoble.grid5000.fr sid/main libfontconfig1-dev 2.5.0-2 [595kB]
+Get:50 http://idpot.grenoble.grid5000.fr sid/main libxft-dev 2.1.12-2 [61.3kB]
+Get:51 http://idpot.grenoble.grid5000.fr sid/main libxi6 2:1.1.3-1 [24.6kB]
+Get:52 http://idpot.grenoble.grid5000.fr sid/main libxi-dev 2:1.1.3-1 [69.0kB]
+Get:53 http://idpot.grenoble.grid5000.fr sid/main libxinerama1 2:1.0.3-1 [9874B]
+Get:54 http://idpot.grenoble.grid5000.fr sid/main x11proto-xinerama-dev 1.1.2-4 [5074B]
+Get:55 http://idpot.grenoble.grid5000.fr sid/main libxinerama-dev 2:1.0.3-1 [11.4kB]
+Get:56 http://idpot.grenoble.grid5000.fr sid/main libxmu-headers 2:1.0.4-1 [21.0kB]
+Get:57 http://idpot.grenoble.grid5000.fr sid/main libxrandr2 2:1.2.2-1 [20.4kB]
+Get:58 http://idpot.grenoble.grid5000.fr sid/main x11proto-randr-dev 1.2.1-2 [28.6kB]
+Get:59 http://idpot.grenoble.grid5000.fr sid/main libxrandr-dev 2:1.2.2-1 [27.8kB]
+Get:60 http://idpot.grenoble.grid5000.fr sid/main libxt6 1:1.0.5-3 [166kB]
+Get:61 http://idpot.grenoble.grid5000.fr sid/main libxt-dev 1:1.0.5-3 [480kB]
+Get:62 http://idpot.grenoble.grid5000.fr sid/main libxmu6 2:1.0.4-1 [51.1kB]
+Get:63 http://idpot.grenoble.grid5000.fr sid/main libxpm4 1:3.5.7-1 [40.3kB]
+Get:64 http://idpot.grenoble.grid5000.fr sid/main libxaw7 2:1.0.4-1 [186kB]
+Get:65 http://idpot.grenoble.grid5000.fr sid/main libxmuu1 2:1.0.4-1 [13.2kB]
+Get:66 http://idpot.grenoble.grid5000.fr sid/main libxtrap6 1:1.0.0-4 [16.6kB]
+Get:67 http://idpot.grenoble.grid5000.fr sid/main libxxf86misc1 1:1.0.1-2 [7674B]
+Get:68 http://idpot.grenoble.grid5000.fr sid/main libxxf86vm1 1:1.0.1-2 [9778B]
+Get:69 http://idpot.grenoble.grid5000.fr sid/main x11-xserver-utils 7.3+2 [171kB]
+Get:70 http://idpot.grenoble.grid5000.fr sid/main xauth 1:1.0.2-2 [29.7kB]
+Get:71 http://idpot.grenoble.grid5000.fr sid/main bsdmainutils 6.1.10 [172kB]
+Get:72 http://idpot.grenoble.grid5000.fr sid/main groff-base 1.18.1.1-17 [844kB]
+Get:73 http://idpot.grenoble.grid5000.fr sid/main libssl0.9.8 0.9.8g-7 [2900kB]
+Get:74 http://idpot.grenoble.grid5000.fr sid/main man-db 2.5.1-2 [997kB]
+Get:75 http://idpot.grenoble.grid5000.fr sid/main module-init-tools 3.3-pre11-4 [69.6kB]
+Get:76 http://idpot.grenoble.grid5000.fr sid/main gettext-base 0.17-2 [123kB]
+Get:77 http://idpot.grenoble.grid5000.fr sid/main libidn11 1.4-1 [138kB]
+Get:78 http://idpot.grenoble.grid5000.fr sid/main libkeyutils1 1.2-6 [5206B]
+Get:79 http://idpot.grenoble.grid5000.fr sid/main libkrb53 1.6.dfsg.3~beta1-3 [464kB]
+Get:80 http://idpot.grenoble.grid5000.fr sid/main html2text 1.3.2a-3 [98.9kB]
+Get:81 http://idpot.grenoble.grid5000.fr sid/main libgomp1 4.3.0-1 [13.3kB]
+Get:82 http://idpot.grenoble.grid5000.fr sid/main gettext 0.17-2 [2683kB]
+Get:83 http://idpot.grenoble.grid5000.fr sid/main intltool-debian 0.35.0+20060710.1 [30.8kB]
+Get:84 http://idpot.grenoble.grid5000.fr sid/main po-debconf 1.0.12 [237kB]
+Get:85 http://idpot.grenoble.grid5000.fr sid/main debhelper 6.0.7 [521kB]
+Get:86 http://idpot.grenoble.grid5000.fr sid/main esound-common 0.2.36-3 [38.2kB]
+Get:87 http://idpot.grenoble.grid5000.fr sid/main fontconfig 2.5.0-2 [43.0kB]
+Get:88 http://idpot.grenoble.grid5000.fr sid/main hicolor-icon-theme 0.10-1 [10.1kB]
+Get:89 http://idpot.grenoble.grid5000.fr sid/main kdelibs-data 4:3.5.9.dfsg.1-1 [8677kB]
+Get:90 http://idpot.grenoble.grid5000.fr sid/main libart-2.0-2 2.3.20-1 [64.7kB]
+Get:91 http://idpot.grenoble.grid5000.fr sid/main libartsc0 1.5.9-1 [15.2kB]
+Get:92 http://idpot.grenoble.grid5000.fr sid/main libasound2 1.0.16-1 [356kB]
+Get:93 http://idpot.grenoble.grid5000.fr sid/main libaudio2 1.9.1-2 [78.9kB]
+Get:94 http://idpot.grenoble.grid5000.fr sid/main libaudiofile0 0.2.6-7 [76.4kB]
+Get:95 http://idpot.grenoble.grid5000.fr sid/main libesd0 0.2.36-3 [18.9kB]
+Get:96 http://idpot.grenoble.grid5000.fr sid/main libraw1394-8 1.3.0-3 [26.9kB]
+Get:97 http://idpot.grenoble.grid5000.fr sid/main libavc1394-0 0.5.3-1+b1 [20.7kB]
+Get:98 http://idpot.grenoble.grid5000.fr sid/main libiec61883-0 1.1.0-2 [31.5kB]
+Get:99 http://idpot.grenoble.grid5000.fr sid/main libxml2 2.6.31.dfsg-2 [782kB]
+Get:100 http://idpot.grenoble.grid5000.fr sid/main libfreebob0 1.0.7-1 [158kB]
+Get:101 http://idpot.grenoble.grid5000.fr sid/main libjack0 0.109.2-1 [116kB]
+Get:102 http://idpot.grenoble.grid5000.fr sid/main libmad0 0.15.1b-2.1 [74.8kB]
+Get:103 http://idpot.grenoble.grid5000.fr sid/main libjpeg62 6b-14 [86.0kB]
+Get:104 http://idpot.grenoble.grid5000.fr sid/main liblcms1 1.16-8 [97.2kB]
+Get:105 http://idpot.grenoble.grid5000.fr sid/main libmng1 1.0.9-1 [189kB]
+Get:106 http://idpot.grenoble.grid5000.fr sid/main libpng12-0 1.2.15~beta5-3 [187kB]
+Get:107 http://idpot.grenoble.grid5000.fr sid/main libqt3-mt 3:3.3.8b-4 [3173kB]
+Get:108 http://idpot.grenoble.grid5000.fr sid/main libogg0 1.1.3-3 [14.1kB]
+Get:109 http://idpot.grenoble.grid5000.fr sid/main libvorbis0a 1.2.0.dfsg-3 [99.9kB]
+Get:110 http://idpot.grenoble.grid5000.fr sid/main libvorbisfile3 1.2.0.dfsg-3 [20.5kB]
+Get:111 http://idpot.grenoble.grid5000.fr sid/main oss-compat 0.0.4 [2166B]
+Get:112 http://idpot.grenoble.grid5000.fr sid/main libarts1c2a 1.5.9-1 [1106kB]
+Get:113 http://idpot.grenoble.grid5000.fr sid/main libaspell15 0.60.5-2 [635kB]
+Get:114 http://idpot.grenoble.grid5000.fr sid/main libavahi-common-data 0.6.22-2 [98.7kB]
+Get:115 http://idpot.grenoble.grid5000.fr sid/main libavahi-common3 0.6.22-2 [114kB]
+Get:116 http://idpot.grenoble.grid5000.fr sid/main libdbus-1-3 1.1.20-1 [143kB]
+Get:117 http://idpot.grenoble.grid5000.fr sid/main libavahi-client3 0.6.22-2 [118kB]
+Get:118 http://idpot.grenoble.grid5000.fr sid/main libavahi-qt3-1 0.6.22-2 [102kB]
+Get:119 http://idpot.grenoble.grid5000.fr sid/main libcupsys2 1.3.6-1 [156kB]
+Get:120 http://idpot.grenoble.grid5000.fr sid/main libfam0 2.7.0-13.1 [27.9kB]
+Get:121 http://idpot.grenoble.grid5000.fr sid/main libjasper1 1.900.1-4 [143kB]
+Get:122 http://idpot.grenoble.grid5000.fr sid/main liblua50 5.0.3-3 [48.7kB]
+Get:123 http://idpot.grenoble.grid5000.fr sid/main liblualib50 5.0.3-3 [34.6kB]
+Get:124 http://idpot.grenoble.grid5000.fr sid/main libopenexr2ldbl 1.2.2-4.4 [305kB]
+Get:125 http://idpot.grenoble.grid5000.fr sid/main libtiff4 3.8.2-7 [483kB]
+Get:126 http://idpot.grenoble.grid5000.fr sid/main libxslt1.1 1.1.22-1 [219kB]
+Get:127 http://idpot.grenoble.grid5000.fr sid/main menu-xdg 0.3 [4720B]
+Get:128 http://idpot.grenoble.grid5000.fr sid/main kdelibs4c2a 4:3.5.9.dfsg.1-1 [9869kB]
+Get:129 http://idpot.grenoble.grid5000.fr sid/main libattr1-dev 1:2.4.41-1 [30.3kB]
+Get:130 http://idpot.grenoble.grid5000.fr sid/main libacl1-dev 2.2.45-1 [76.2kB]
+Get:131 http://idpot.grenoble.grid5000.fr sid/main libart-2.0-dev 2.3.20-1 [81.7kB]
+Get:132 http://idpot.grenoble.grid5000.fr sid/main libglib2.0-dev 2.14.6-1 [569kB]
+Get:133 http://idpot.grenoble.grid5000.fr sid/main libartsc0-dev 1.5.9-1 [21.2kB]
+Get:134 http://idpot.grenoble.grid5000.fr sid/main libasound2-dev 1.0.16-1 [495kB]
+Get:135 http://idpot.grenoble.grid5000.fr sid/main libaudio-dev 1.9.1-2 [503kB]
+Get:136 http://idpot.grenoble.grid5000.fr sid/main libaudiofile-dev 0.2.6-7 [116kB]
+Get:137 http://idpot.grenoble.grid5000.fr sid/main libesd0-dev 0.2.36-3 [23.7kB]
+Get:138 http://idpot.grenoble.grid5000.fr sid/main libjack-dev 0.109.2-1 [161kB]
+Get:139 http://idpot.grenoble.grid5000.fr sid/main libjack0.100.0-dev 0.109.2-1 [12.8kB]
+Get:140 http://idpot.grenoble.grid5000.fr sid/main libmad0-dev 0.15.1b-2.1 [85.6kB]
+Get:141 http://idpot.grenoble.grid5000.fr sid/main libogg-dev 1.1.3-3 [57.0kB]
+Get:142 http://idpot.grenoble.grid5000.fr sid/main libgpg-error-dev 1.4-2 [33.6kB]
+Get:143 http://idpot.grenoble.grid5000.fr sid/main libgcrypt11-dev 1.4.0-3 [319kB]
+Get:144 http://idpot.grenoble.grid5000.fr sid/main libopencdk10-dev 0.6.6-1 [117kB]
+Get:145 http://idpot.grenoble.grid5000.fr sid/main libtasn1-3-dev 1.3-1 [372kB]
+Get:146 http://idpot.grenoble.grid5000.fr sid/main libgnutls-dev 2.2.2-1 [439kB]
+Get:147 http://idpot.grenoble.grid5000.fr sid/main comerr-dev 2.1-1.40.7-1 [41.6kB]
+Get:148 http://idpot.grenoble.grid5000.fr sid/main libkadm55 1.6.dfsg.3~beta1-3 [147kB]
+Get:149 http://idpot.grenoble.grid5000.fr sid/main libkrb5-dev 1.6.dfsg.3~beta1-3 [89.3kB]
+Get:150 http://idpot.grenoble.grid5000.fr sid/main libcupsys2-dev 1.3.6-1 [145kB]
+Get:151 http://idpot.grenoble.grid5000.fr sid/main libdrm2 2.3.0-4 [20.7kB]
+Get:152 http://idpot.grenoble.grid5000.fr sid/main libxdamage1 1:1.1.1-3 [9804B]
+Get:153 http://idpot.grenoble.grid5000.fr sid/main libgl1-mesa-glx 7.0.3~rc2-1 [149kB]
+Get:154 http://idpot.grenoble.grid5000.fr sid/main mesa-common-dev 7.0.3~rc2-1 [183kB]
+Get:155 http://idpot.grenoble.grid5000.fr sid/main libgl1-mesa-dev 7.0.3~rc2-1 [25.3kB]
+Get:156 http://idpot.grenoble.grid5000.fr sid/main libglu1-mesa 7.0.3~rc2-1 [238kB]
+Get:157 http://idpot.grenoble.grid5000.fr sid/main libglu1-mesa-dev 7.0.3~rc2-1 [256kB]
+Get:158 http://idpot.grenoble.grid5000.fr sid/main libjpeg62-dev 6b-14 [186kB]
+Get:159 http://idpot.grenoble.grid5000.fr sid/main liblcms1-dev 1.16-8 [619kB]
+Get:160 http://idpot.grenoble.grid5000.fr sid/main libmng-dev 1.0.9-1 [285kB]
+Get:161 http://idpot.grenoble.grid5000.fr sid/main libpng12-dev 1.2.15~beta5-3 [171kB]
+Get:162 http://idpot.grenoble.grid5000.fr sid/main libqt3-headers 3:3.3.8b-4 [357kB]
+Get:163 http://idpot.grenoble.grid5000.fr sid/main libxmu-dev 2:1.0.4-1 [54.5kB]
+Get:164 http://idpot.grenoble.grid5000.fr sid/main qt3-dev-tools 3:3.3.8b-4 [1346kB]
+Get:165 http://idpot.grenoble.grid5000.fr sid/main libqt3-mt-dev 3:3.3.8b-4 [49.8kB]
+Get:166 http://idpot.grenoble.grid5000.fr sid/main libvorbisenc2 1.2.0.dfsg-3 [76.8kB]
+Get:167 http://idpot.grenoble.grid5000.fr sid/main libvorbis-dev 1.2.0.dfsg-3 [461kB]
+Get:168 http://idpot.grenoble.grid5000.fr sid/main libarts1-dev 1.5.9-1 [1167kB]
+Get:169 http://idpot.grenoble.grid5000.fr sid/main libaspell-dev 0.60.5-2 [49.0kB]
+Get:170 http://idpot.grenoble.grid5000.fr sid/main libavahi-common-dev 0.6.22-2 [134kB]
+Get:171 http://idpot.grenoble.grid5000.fr sid/main libdbus-1-dev 1.1.20-1 [212kB]
+Get:172 http://idpot.grenoble.grid5000.fr sid/main libavahi-client-dev 0.6.22-2 [128kB]
+Get:173 http://idpot.grenoble.grid5000.fr sid/main libavahi-qt3-dev 0.6.22-2 [102kB]
+Get:174 http://idpot.grenoble.grid5000.fr sid/main libbz2-dev 1.0.4-3 [31.6kB]
+Get:175 http://idpot.grenoble.grid5000.fr sid/main libfam-dev 2.7.0-13.1 [38.1kB]
+Get:176 http://idpot.grenoble.grid5000.fr sid/main libidn11-dev 1.4-1 [589kB]
+Get:177 http://idpot.grenoble.grid5000.fr sid/main libjasper-dev 1.900.1-4 [546kB]
+Get:178 http://idpot.grenoble.grid5000.fr sid/main lua50 5.0.3-3 [25.6kB]
+Get:179 http://idpot.grenoble.grid5000.fr sid/main liblua50-dev 5.0.3-3 [55.4kB]
+Get:180 http://idpot.grenoble.grid5000.fr sid/main liblualib50-dev 5.0.3-3 [36.0kB]
+Get:181 http://idpot.grenoble.grid5000.fr sid/main libopenexr-dev 1.2.2-4.4 [499kB]
+Get:182 http://idpot.grenoble.grid5000.fr sid/main libpcrecpp0 7.6-2 [93.9kB]
+Get:183 http://idpot.grenoble.grid5000.fr sid/main libpcre3-dev 7.6-2 [254kB]
+Get:184 http://idpot.grenoble.grid5000.fr sid/main libsasl2-modules 2.1.22.dfsg1-18 [142kB]
+Get:185 http://idpot.grenoble.grid5000.fr sid/main libsasl2-dev 2.1.22.dfsg1-18 [257kB]
+Get:186 http://idpot.grenoble.grid5000.fr sid/main libssl-dev 0.9.8g-7 [2077kB]
+Get:187 http://idpot.grenoble.grid5000.fr sid/main libtiffxx0c2 3.8.2-7 [5006B]
+Get:188 http://idpot.grenoble.grid5000.fr sid/main libtiff4-dev 3.8.2-7 [233kB]
+Get:189 http://idpot.grenoble.grid5000.fr sid/main libxml2-dev 2.6.31.dfsg-2 [673kB]
+Get:190 http://idpot.grenoble.grid5000.fr sid/main libxml2-utils 2.6.31.dfsg-2 [33.9kB]
+Get:191 http://idpot.grenoble.grid5000.fr sid/main libxslt1-dev 1.1.22-1 [595kB]
+Get:192 http://idpot.grenoble.grid5000.fr sid/main kdelibs4-dev 4:3.5.9.dfsg.1-1 [1396kB]
+Get:193 http://idpot.grenoble.grid5000.fr sid/main libruby1.8 1.8.6.114-1 [1570kB]
+Get:194 http://idpot.grenoble.grid5000.fr sid/main libcomedi0 0.8.1-3 [89.3kB]
+Get:195 http://idpot.grenoble.grid5000.fr sid/main libcomedi-dev 0.8.1-3 [775kB]
+debconf: delaying package configuration, since apt-utils is not installed
+Fetched 70.2MB in 4s (14.3MB/s)
+Selecting previously deselected package x11-common.
+(Reading database ... 9174 files and directories currently installed.)
+Unpacking x11-common (from .../x11-common_1%3a7.3+10_i386.deb) ...
+Selecting previously deselected package libice6.
+Unpacking libice6 (from .../libice6_2%3a1.0.4-1_i386.deb) ...
+Setting up x11-common (1:7.3+10) ...
+Selecting previously deselected package x11proto-core-dev.
+(Reading database ... 9212 files and directories currently installed.)
+Unpacking x11proto-core-dev (from .../x11proto-core-dev_7.0.12-1_all.deb) ...
+Selecting previously deselected package libice-dev.
+Unpacking libice-dev (from .../libice-dev_2%3a1.0.4-1_i386.deb) ...
+Selecting previously deselected package libsm6.
+Unpacking libsm6 (from .../libsm6_2%3a1.0.3-1+b1_i386.deb) ...
+Selecting previously deselected package libsm-dev.
+Unpacking libsm-dev (from .../libsm-dev_2%3a1.0.3-1+b1_i386.deb) ...
+Selecting previously deselected package libxau6.
+Unpacking libxau6 (from .../libxau6_1%3a1.0.3-2_i386.deb) ...
+Selecting previously deselected package libxdmcp6.
+Unpacking libxdmcp6 (from .../libxdmcp6_1%3a1.0.2-2_i386.deb) ...
+Selecting previously deselected package libx11-data.
+Unpacking libx11-data (from .../libx11-data_2%3a1.0.3-7_all.deb) ...
+Selecting previously deselected package libx11-6.
+Unpacking libx11-6 (from .../libx11-6_2%3a1.0.3-7_i386.deb) ...
+Selecting previously deselected package libxau-dev.
+Unpacking libxau-dev (from .../libxau-dev_1%3a1.0.3-2_i386.deb) ...
+Selecting previously deselected package libxdmcp-dev.
+Unpacking libxdmcp-dev (from .../libxdmcp-dev_1%3a1.0.2-2_i386.deb) ...
+Selecting previously deselected package libxext6.
+Unpacking libxext6 (from .../libxext6_2%3a1.0.4-1_i386.deb) ...
+Selecting previously deselected package x11proto-input-dev.
+Unpacking x11proto-input-dev (from .../x11proto-input-dev_1.4.3-1_all.deb) ...
+Selecting previously deselected package x11proto-xext-dev.
+Unpacking x11proto-xext-dev (from .../x11proto-xext-dev_7.0.2-5_all.deb) ...
+Selecting previously deselected package libxext-dev.
+Unpacking libxext-dev (from .../libxext-dev_2%3a1.0.4-1_i386.deb) ...
+Selecting previously deselected package x11proto-kb-dev.
+Unpacking x11proto-kb-dev (from .../x11proto-kb-dev_1.0.3-2_all.deb) ...
+Selecting previously deselected package xtrans-dev.
+Unpacking xtrans-dev (from .../xtrans-dev_1.1-1_all.deb) ...
+Selecting previously deselected package libx11-dev.
+Unpacking libx11-dev (from .../libx11-dev_2%3a1.0.3-7_i386.deb) ...
+Selecting previously deselected package libxfixes3.
+Unpacking libxfixes3 (from .../libxfixes3_1%3a4.0.3-2_i386.deb) ...
+Selecting previously deselected package libxrender1.
+Unpacking libxrender1 (from .../libxrender1_1%3a0.9.4-1_i386.deb) ...
+Selecting previously deselected package libxcursor1.
+Unpacking libxcursor1 (from .../libxcursor1_1%3a1.1.9-1_i386.deb) ...
+Selecting previously deselected package x11proto-render-dev.
+Unpacking x11proto-render-dev (from .../x11proto-render-dev_2%3a0.9.3-2_all.deb) ...
+Selecting previously deselected package libxrender-dev.
+Unpacking libxrender-dev (from .../libxrender-dev_1%3a0.9.4-1_i386.deb) ...
+Selecting previously deselected package x11proto-fixes-dev.
+Unpacking x11proto-fixes-dev (from .../x11proto-fixes-dev_4.0-2_all.deb) ...
+Selecting previously deselected package libxfixes-dev.
+Unpacking libxfixes-dev (from .../libxfixes-dev_1%3a4.0.3-2_i386.deb) ...
+Selecting previously deselected package libxcursor-dev.
+Unpacking libxcursor-dev (from .../libxcursor-dev_1%3a1.1.9-1_i386.deb) ...
+Selecting previously deselected package libexpat1.
+Unpacking libexpat1 (from .../libexpat1_1.95.8-4_i386.deb) ...
+Selecting previously deselected package libfreetype6.
+Unpacking libfreetype6 (from .../libfreetype6_2.3.5-1+b1_i386.deb) ...
+Selecting previously deselected package ucf.
+Unpacking ucf (from .../apt/archives/ucf_3.005_all.deb) ...
+Moving old data out of the way
+Selecting previously deselected package libmagic1.
+Unpacking libmagic1 (from .../libmagic1_4.23-2_i386.deb) ...
+Selecting previously deselected package file.
+Unpacking file (from .../archives/file_4.23-2_i386.deb) ...
+Selecting previously deselected package libnewt0.52.
+Unpacking libnewt0.52 (from .../libnewt0.52_0.52.2-11.2_i386.deb) ...
+Selecting previously deselected package libpopt0.
+Unpacking libpopt0 (from .../libpopt0_1.10-3_i386.deb) ...
+Selecting previously deselected package whiptail.
+Unpacking whiptail (from .../whiptail_0.52.2-11.2_i386.deb) ...
+Selecting previously deselected package defoma.
+Unpacking defoma (from .../defoma_0.11.10-0.2_all.deb) ...
+Selecting previously deselected package ttf-dejavu-core.
+Unpacking ttf-dejavu-core (from .../ttf-dejavu-core_2.23-1_all.deb) ...
+Selecting previously deselected package ttf-dejavu-extra.
+Unpacking ttf-dejavu-extra (from .../ttf-dejavu-extra_2.23-1_all.deb) ...
+Selecting previously deselected package ttf-dejavu.
+Unpacking ttf-dejavu (from .../ttf-dejavu_2.23-1_all.deb) ...
+Selecting previously deselected package fontconfig-config.
+Unpacking fontconfig-config (from .../fontconfig-config_2.5.0-2_all.deb) ...
+Selecting previously deselected package libfontconfig1.
+Unpacking libfontconfig1 (from .../libfontconfig1_2.5.0-2_i386.deb) ...
+Selecting previously deselected package libxft2.
+Unpacking libxft2 (from .../libxft2_2.1.12-2_i386.deb) ...
+Selecting previously deselected package libexpat1-dev.
+Unpacking libexpat1-dev (from .../libexpat1-dev_1.95.8-4_i386.deb) ...
+Selecting previously deselected package zlib1g-dev.
+Unpacking zlib1g-dev (from .../zlib1g-dev_1%3a1.2.3.3.dfsg-11_i386.deb) ...
+Selecting previously deselected package libfreetype6-dev.
+Unpacking libfreetype6-dev (from .../libfreetype6-dev_2.3.5-1+b1_i386.deb) ...
+Selecting previously deselected package libpcre3.
+Unpacking libpcre3 (from .../libpcre3_7.6-2_i386.deb) ...
+Selecting previously deselected package libglib2.0-0.
+Unpacking libglib2.0-0 (from .../libglib2.0-0_2.14.6-1_i386.deb) ...
+Selecting previously deselected package pkg-config.
+Unpacking pkg-config (from .../pkg-config_0.22-1_i386.deb) ...
+Selecting previously deselected package libfontconfig1-dev.
+Unpacking libfontconfig1-dev (from .../libfontconfig1-dev_2.5.0-2_i386.deb) ...
+Selecting previously deselected package libxft-dev.
+Unpacking libxft-dev (from .../libxft-dev_2.1.12-2_i386.deb) ...
+Selecting previously deselected package libxi6.
+Unpacking libxi6 (from .../libxi6_2%3a1.1.3-1_i386.deb) ...
+Selecting previously deselected package libxi-dev.
+Unpacking libxi-dev (from .../libxi-dev_2%3a1.1.3-1_i386.deb) ...
+Selecting previously deselected package libxinerama1.
+Unpacking libxinerama1 (from .../libxinerama1_2%3a1.0.3-1_i386.deb) ...
+Selecting previously deselected package x11proto-xinerama-dev.
+Unpacking x11proto-xinerama-dev (from .../x11proto-xinerama-dev_1.1.2-4_all.deb) ...
+Selecting previously deselected package libxinerama-dev.
+Unpacking libxinerama-dev (from .../libxinerama-dev_2%3a1.0.3-1_i386.deb) ...
+Selecting previously deselected package libxmu-headers.
+Unpacking libxmu-headers (from .../libxmu-headers_2%3a1.0.4-1_all.deb) ...
+Selecting previously deselected package libxrandr2.
+Unpacking libxrandr2 (from .../libxrandr2_2%3a1.2.2-1_i386.deb) ...
+Selecting previously deselected package x11proto-randr-dev.
+Unpacking x11proto-randr-dev (from .../x11proto-randr-dev_1.2.1-2_all.deb) ...
+Selecting previously deselected package libxrandr-dev.
+Unpacking libxrandr-dev (from .../libxrandr-dev_2%3a1.2.2-1_i386.deb) ...
+Selecting previously deselected package libxt6.
+Unpacking libxt6 (from .../libxt6_1%3a1.0.5-3_i386.deb) ...
+Selecting previously deselected package libxt-dev.
+Unpacking libxt-dev (from .../libxt-dev_1%3a1.0.5-3_i386.deb) ...
+Selecting previously deselected package libxmu6.
+Unpacking libxmu6 (from .../libxmu6_2%3a1.0.4-1_i386.deb) ...
+Selecting previously deselected package libxpm4.
+Unpacking libxpm4 (from .../libxpm4_1%3a3.5.7-1_i386.deb) ...
+Selecting previously deselected package libxaw7.
+Unpacking libxaw7 (from .../libxaw7_2%3a1.0.4-1_i386.deb) ...
+Selecting previously deselected package libxmuu1.
+Unpacking libxmuu1 (from .../libxmuu1_2%3a1.0.4-1_i386.deb) ...
+Selecting previously deselected package libxtrap6.
+Unpacking libxtrap6 (from .../libxtrap6_1%3a1.0.0-4_i386.deb) ...
+Selecting previously deselected package libxxf86misc1.
+Unpacking libxxf86misc1 (from .../libxxf86misc1_1%3a1.0.1-2_i386.deb) ...
+Selecting previously deselected package libxxf86vm1.
+Unpacking libxxf86vm1 (from .../libxxf86vm1_1%3a1.0.1-2_i386.deb) ...
+Selecting previously deselected package x11-xserver-utils.
+Unpacking x11-xserver-utils (from .../x11-xserver-utils_7.3+2_i386.deb) ...
+Selecting previously deselected package xauth.
+Unpacking xauth (from .../xauth_1%3a1.0.2-2_i386.deb) ...
+Selecting previously deselected package bsdmainutils.
+Unpacking bsdmainutils (from .../bsdmainutils_6.1.10_i386.deb) ...
+Selecting previously deselected package groff-base.
+Unpacking groff-base (from .../groff-base_1.18.1.1-17_i386.deb) ...
+Selecting previously deselected package libssl0.9.8.
+Unpacking libssl0.9.8 (from .../libssl0.9.8_0.9.8g-7_i386.deb) ...
+Selecting previously deselected package man-db.
+Unpacking man-db (from .../man-db_2.5.1-2_i386.deb) ...
+Selecting previously deselected package module-init-tools.
+Unpacking module-init-tools (from .../module-init-tools_3.3-pre11-4_i386.deb) ...
+Selecting previously deselected package gettext-base.
+Unpacking gettext-base (from .../gettext-base_0.17-2_i386.deb) ...
+Selecting previously deselected package libidn11.
+Unpacking libidn11 (from .../libidn11_1.4-1_i386.deb) ...
+Selecting previously deselected package libkeyutils1.
+Unpacking libkeyutils1 (from .../libkeyutils1_1.2-6_i386.deb) ...
+Selecting previously deselected package libkrb53.
+Unpacking libkrb53 (from .../libkrb53_1.6.dfsg.3~beta1-3_i386.deb) ...
+Selecting previously deselected package html2text.
+Unpacking html2text (from .../html2text_1.3.2a-3_i386.deb) ...
+Selecting previously deselected package libgomp1.
+Unpacking libgomp1 (from .../libgomp1_4.3.0-1_i386.deb) ...
+Selecting previously deselected package gettext.
+Unpacking gettext (from .../gettext_0.17-2_i386.deb) ...
+Selecting previously deselected package intltool-debian.
+Unpacking intltool-debian (from .../intltool-debian_0.35.0+20060710.1_all.deb) ...
+Selecting previously deselected package po-debconf.
+Unpacking po-debconf (from .../po-debconf_1.0.12_all.deb) ...
+Selecting previously deselected package debhelper.
+Unpacking debhelper (from .../debhelper_6.0.7_all.deb) ...
+Selecting previously deselected package esound-common.
+Unpacking esound-common (from .../esound-common_0.2.36-3_all.deb) ...
+Selecting previously deselected package fontconfig.
+Unpacking fontconfig (from .../fontconfig_2.5.0-2_i386.deb) ...
+Selecting previously deselected package hicolor-icon-theme.
+Unpacking hicolor-icon-theme (from .../hicolor-icon-theme_0.10-1_all.deb) ...
+Selecting previously deselected package kdelibs-data.
+Unpacking kdelibs-data (from .../kdelibs-data_4%3a3.5.9.dfsg.1-1_all.deb) ...
+Selecting previously deselected package libart-2.0-2.
+Unpacking libart-2.0-2 (from .../libart-2.0-2_2.3.20-1_i386.deb) ...
+Selecting previously deselected package libartsc0.
+Unpacking libartsc0 (from .../libartsc0_1.5.9-1_i386.deb) ...
+Selecting previously deselected package libasound2.
+Unpacking libasound2 (from .../libasound2_1.0.16-1_i386.deb) ...
+Selecting previously deselected package libaudio2.
+Unpacking libaudio2 (from .../libaudio2_1.9.1-2_i386.deb) ...
+Selecting previously deselected package libaudiofile0.
+Unpacking libaudiofile0 (from .../libaudiofile0_0.2.6-7_i386.deb) ...
+Selecting previously deselected package libesd0.
+Unpacking libesd0 (from .../libesd0_0.2.36-3_i386.deb) ...
+Selecting previously deselected package libraw1394-8.
+Unpacking libraw1394-8 (from .../libraw1394-8_1.3.0-3_i386.deb) ...
+Selecting previously deselected package libavc1394-0.
+Unpacking libavc1394-0 (from .../libavc1394-0_0.5.3-1+b1_i386.deb) ...
+Selecting previously deselected package libiec61883-0.
+Unpacking libiec61883-0 (from .../libiec61883-0_1.1.0-2_i386.deb) ...
+Selecting previously deselected package libxml2.
+Unpacking libxml2 (from .../libxml2_2.6.31.dfsg-2_i386.deb) ...
+Selecting previously deselected package libfreebob0.
+Unpacking libfreebob0 (from .../libfreebob0_1.0.7-1_i386.deb) ...
+Selecting previously deselected package libjack0.
+Unpacking libjack0 (from .../libjack0_0.109.2-1_i386.deb) ...
+Selecting previously deselected package libmad0.
+Unpacking libmad0 (from .../libmad0_0.15.1b-2.1_i386.deb) ...
+Selecting previously deselected package libjpeg62.
+Unpacking libjpeg62 (from .../libjpeg62_6b-14_i386.deb) ...
+Selecting previously deselected package liblcms1.
+Unpacking liblcms1 (from .../liblcms1_1.16-8_i386.deb) ...
+Selecting previously deselected package libmng1.
+Unpacking libmng1 (from .../libmng1_1.0.9-1_i386.deb) ...
+Selecting previously deselected package libpng12-0.
+Unpacking libpng12-0 (from .../libpng12-0_1.2.15~beta5-3_i386.deb) ...
+Selecting previously deselected package libqt3-mt.
+Unpacking libqt3-mt (from .../libqt3-mt_3%3a3.3.8b-4_i386.deb) ...
+Selecting previously deselected package libogg0.
+Unpacking libogg0 (from .../libogg0_1.1.3-3_i386.deb) ...
+Selecting previously deselected package libvorbis0a.
+Unpacking libvorbis0a (from .../libvorbis0a_1.2.0.dfsg-3_i386.deb) ...
+Selecting previously deselected package libvorbisfile3.
+Unpacking libvorbisfile3 (from .../libvorbisfile3_1.2.0.dfsg-3_i386.deb) ...
+Selecting previously deselected package oss-compat.
+Unpacking oss-compat (from .../oss-compat_0.0.4_all.deb) ...
+Selecting previously deselected package libarts1c2a.
+Unpacking libarts1c2a (from .../libarts1c2a_1.5.9-1_i386.deb) ...
+Selecting previously deselected package libaspell15.
+Unpacking libaspell15 (from .../libaspell15_0.60.5-2_i386.deb) ...
+Selecting previously deselected package libavahi-common-data.
+Unpacking libavahi-common-data (from .../libavahi-common-data_0.6.22-2_i386.deb) ...
+Selecting previously deselected package libavahi-common3.
+Unpacking libavahi-common3 (from .../libavahi-common3_0.6.22-2_i386.deb) ...
+Selecting previously deselected package libdbus-1-3.
+Unpacking libdbus-1-3 (from .../libdbus-1-3_1.1.20-1_i386.deb) ...
+Selecting previously deselected package libavahi-client3.
+Unpacking libavahi-client3 (from .../libavahi-client3_0.6.22-2_i386.deb) ...
+Selecting previously deselected package libavahi-qt3-1.
+Unpacking libavahi-qt3-1 (from .../libavahi-qt3-1_0.6.22-2_i386.deb) ...
+Selecting previously deselected package libcupsys2.
+Unpacking libcupsys2 (from .../libcupsys2_1.3.6-1_i386.deb) ...
+Selecting previously deselected package libfam0.
+Unpacking libfam0 (from .../libfam0_2.7.0-13.1_i386.deb) ...
+Selecting previously deselected package libjasper1.
+Unpacking libjasper1 (from .../libjasper1_1.900.1-4_i386.deb) ...
+Selecting previously deselected package liblua50.
+Unpacking liblua50 (from .../liblua50_5.0.3-3_i386.deb) ...
+Selecting previously deselected package liblualib50.
+Unpacking liblualib50 (from .../liblualib50_5.0.3-3_i386.deb) ...
+Selecting previously deselected package libopenexr2ldbl.
+Unpacking libopenexr2ldbl (from .../libopenexr2ldbl_1.2.2-4.4_i386.deb) ...
+Selecting previously deselected package libtiff4.
+Unpacking libtiff4 (from .../libtiff4_3.8.2-7_i386.deb) ...
+Selecting previously deselected package libxslt1.1.
+Unpacking libxslt1.1 (from .../libxslt1.1_1.1.22-1_i386.deb) ...
+Selecting previously deselected package menu-xdg.
+Unpacking menu-xdg (from .../archives/menu-xdg_0.3_all.deb) ...
+Selecting previously deselected package kdelibs4c2a.
+Unpacking kdelibs4c2a (from .../kdelibs4c2a_4%3a3.5.9.dfsg.1-1_i386.deb) ...
+Selecting previously deselected package libattr1-dev.
+Unpacking libattr1-dev (from .../libattr1-dev_1%3a2.4.41-1_i386.deb) ...
+Selecting previously deselected package libacl1-dev.
+Unpacking libacl1-dev (from .../libacl1-dev_2.2.45-1_i386.deb) ...
+Selecting previously deselected package libart-2.0-dev.
+Unpacking libart-2.0-dev (from .../libart-2.0-dev_2.3.20-1_i386.deb) ...
+Selecting previously deselected package libglib2.0-dev.
+Unpacking libglib2.0-dev (from .../libglib2.0-dev_2.14.6-1_i386.deb) ...
+Selecting previously deselected package libartsc0-dev.
+Unpacking libartsc0-dev (from .../libartsc0-dev_1.5.9-1_i386.deb) ...
+Selecting previously deselected package libasound2-dev.
+Unpacking libasound2-dev (from .../libasound2-dev_1.0.16-1_i386.deb) ...
+Selecting previously deselected package libaudio-dev.
+Unpacking libaudio-dev (from .../libaudio-dev_1.9.1-2_i386.deb) ...
+Selecting previously deselected package libaudiofile-dev.
+Unpacking libaudiofile-dev (from .../libaudiofile-dev_0.2.6-7_i386.deb) ...
+Selecting previously deselected package libesd0-dev.
+Unpacking libesd0-dev (from .../libesd0-dev_0.2.36-3_i386.deb) ...
+Selecting previously deselected package libjack-dev.
+Unpacking libjack-dev (from .../libjack-dev_0.109.2-1_i386.deb) ...
+Selecting previously deselected package libjack0.100.0-dev.
+Unpacking libjack0.100.0-dev (from .../libjack0.100.0-dev_0.109.2-1_all.deb) ...
+Selecting previously deselected package libmad0-dev.
+Unpacking libmad0-dev (from .../libmad0-dev_0.15.1b-2.1_i386.deb) ...
+Selecting previously deselected package libogg-dev.
+Unpacking libogg-dev (from .../libogg-dev_1.1.3-3_i386.deb) ...
+Selecting previously deselected package libgpg-error-dev.
+Unpacking libgpg-error-dev (from .../libgpg-error-dev_1.4-2_i386.deb) ...
+Selecting previously deselected package libgcrypt11-dev.
+Unpacking libgcrypt11-dev (from .../libgcrypt11-dev_1.4.0-3_i386.deb) ...
+Selecting previously deselected package libopencdk10-dev.
+Unpacking libopencdk10-dev (from .../libopencdk10-dev_0.6.6-1_i386.deb) ...
+Selecting previously deselected package libtasn1-3-dev.
+Unpacking libtasn1-3-dev (from .../libtasn1-3-dev_1.3-1_i386.deb) ...
+Selecting previously deselected package libgnutls-dev.
+Unpacking libgnutls-dev (from .../libgnutls-dev_2.2.2-1_i386.deb) ...
+Selecting previously deselected package comerr-dev.
+Unpacking comerr-dev (from .../comerr-dev_2.1-1.40.7-1_i386.deb) ...
+Selecting previously deselected package libkadm55.
+Unpacking libkadm55 (from .../libkadm55_1.6.dfsg.3~beta1-3_i386.deb) ...
+Selecting previously deselected package libkrb5-dev.
+Unpacking libkrb5-dev (from .../libkrb5-dev_1.6.dfsg.3~beta1-3_i386.deb) ...
+Selecting previously deselected package libcupsys2-dev.
+Unpacking libcupsys2-dev (from .../libcupsys2-dev_1.3.6-1_i386.deb) ...
+Selecting previously deselected package libdrm2.
+Unpacking libdrm2 (from .../libdrm2_2.3.0-4_i386.deb) ...
+Selecting previously deselected package libxdamage1.
+Unpacking libxdamage1 (from .../libxdamage1_1%3a1.1.1-3_i386.deb) ...
+Selecting previously deselected package libgl1-mesa-glx.
+Unpacking libgl1-mesa-glx (from .../libgl1-mesa-glx_7.0.3~rc2-1_i386.deb) ...
+Selecting previously deselected package mesa-common-dev.
+Unpacking mesa-common-dev (from .../mesa-common-dev_7.0.3~rc2-1_all.deb) ...
+Selecting previously deselected package libgl1-mesa-dev.
+Unpacking libgl1-mesa-dev (from .../libgl1-mesa-dev_7.0.3~rc2-1_all.deb) ...
+Selecting previously deselected package libglu1-mesa.
+Unpacking libglu1-mesa (from .../libglu1-mesa_7.0.3~rc2-1_i386.deb) ...
+Selecting previously deselected package libglu1-mesa-dev.
+Unpacking libglu1-mesa-dev (from .../libglu1-mesa-dev_7.0.3~rc2-1_i386.deb) ...
+Selecting previously deselected package libjpeg62-dev.
+Unpacking libjpeg62-dev (from .../libjpeg62-dev_6b-14_i386.deb) ...
+Selecting previously deselected package liblcms1-dev.
+Unpacking liblcms1-dev (from .../liblcms1-dev_1.16-8_i386.deb) ...
+Selecting previously deselected package libmng-dev.
+Unpacking libmng-dev (from .../libmng-dev_1.0.9-1_i386.deb) ...
+Selecting previously deselected package libpng12-dev.
+Unpacking libpng12-dev (from .../libpng12-dev_1.2.15~beta5-3_i386.deb) ...
+Selecting previously deselected package libqt3-headers.
+Unpacking libqt3-headers (from .../libqt3-headers_3%3a3.3.8b-4_i386.deb) ...
+Selecting previously deselected package libxmu-dev.
+Unpacking libxmu-dev (from .../libxmu-dev_2%3a1.0.4-1_i386.deb) ...
+Selecting previously deselected package qt3-dev-tools.
+Unpacking qt3-dev-tools (from .../qt3-dev-tools_3%3a3.3.8b-4_i386.deb) ...
+Selecting previously deselected package libqt3-mt-dev.
+Unpacking libqt3-mt-dev (from .../libqt3-mt-dev_3%3a3.3.8b-4_i386.deb) ...
+Selecting previously deselected package libvorbisenc2.
+Unpacking libvorbisenc2 (from .../libvorbisenc2_1.2.0.dfsg-3_i386.deb) ...
+Selecting previously deselected package libvorbis-dev.
+Unpacking libvorbis-dev (from .../libvorbis-dev_1.2.0.dfsg-3_i386.deb) ...
+Selecting previously deselected package libarts1-dev.
+Unpacking libarts1-dev (from .../libarts1-dev_1.5.9-1_i386.deb) ...
+Selecting previously deselected package libaspell-dev.
+Unpacking libaspell-dev (from .../libaspell-dev_0.60.5-2_i386.deb) ...
+Selecting previously deselected package libavahi-common-dev.
+Unpacking libavahi-common-dev (from .../libavahi-common-dev_0.6.22-2_i386.deb) ...
+Selecting previously deselected package libdbus-1-dev.
+Unpacking libdbus-1-dev (from .../libdbus-1-dev_1.1.20-1_i386.deb) ...
+Selecting previously deselected package libavahi-client-dev.
+Unpacking libavahi-client-dev (from .../libavahi-client-dev_0.6.22-2_i386.deb) ...
+Selecting previously deselected package libavahi-qt3-dev.
+Unpacking libavahi-qt3-dev (from .../libavahi-qt3-dev_0.6.22-2_i386.deb) ...
+Selecting previously deselected package libbz2-dev.
+Unpacking libbz2-dev (from .../libbz2-dev_1.0.4-3_i386.deb) ...
+Selecting previously deselected package libfam-dev.
+Unpacking libfam-dev (from .../libfam-dev_2.7.0-13.1_i386.deb) ...
+Selecting previously deselected package libidn11-dev.
+Unpacking libidn11-dev (from .../libidn11-dev_1.4-1_i386.deb) ...
+Selecting previously deselected package libjasper-dev.
+Unpacking libjasper-dev (from .../libjasper-dev_1.900.1-4_i386.deb) ...
+Selecting previously deselected package lua50.
+Unpacking lua50 (from .../lua50_5.0.3-3_i386.deb) ...
+Selecting previously deselected package liblua50-dev.
+Unpacking liblua50-dev (from .../liblua50-dev_5.0.3-3_i386.deb) ...
+Selecting previously deselected package liblualib50-dev.
+Unpacking liblualib50-dev (from .../liblualib50-dev_5.0.3-3_i386.deb) ...
+Selecting previously deselected package libopenexr-dev.
+Unpacking libopenexr-dev (from .../libopenexr-dev_1.2.2-4.4_i386.deb) ...
+Selecting previously deselected package libpcrecpp0.
+Unpacking libpcrecpp0 (from .../libpcrecpp0_7.6-2_i386.deb) ...
+Selecting previously deselected package libpcre3-dev.
+Unpacking libpcre3-dev (from .../libpcre3-dev_7.6-2_i386.deb) ...
+Selecting previously deselected package libsasl2-modules.
+Unpacking libsasl2-modules (from .../libsasl2-modules_2.1.22.dfsg1-18_i386.deb) ...
+Selecting previously deselected package libsasl2-dev.
+Unpacking libsasl2-dev (from .../libsasl2-dev_2.1.22.dfsg1-18_i386.deb) ...
+Selecting previously deselected package libssl-dev.
+Unpacking libssl-dev (from .../libssl-dev_0.9.8g-7_i386.deb) ...
+Selecting previously deselected package libtiffxx0c2.
+Unpacking libtiffxx0c2 (from .../libtiffxx0c2_3.8.2-7_i386.deb) ...
+Selecting previously deselected package libtiff4-dev.
+Unpacking libtiff4-dev (from .../libtiff4-dev_3.8.2-7_i386.deb) ...
+Selecting previously deselected package libxml2-dev.
+Unpacking libxml2-dev (from .../libxml2-dev_2.6.31.dfsg-2_i386.deb) ...
+Selecting previously deselected package libxml2-utils.
+Unpacking libxml2-utils (from .../libxml2-utils_2.6.31.dfsg-2_i386.deb) ...
+Selecting previously deselected package libxslt1-dev.
+Unpacking libxslt1-dev (from .../libxslt1-dev_1.1.22-1_i386.deb) ...
+Selecting previously deselected package kdelibs4-dev.
+Unpacking kdelibs4-dev (from .../kdelibs4-dev_4%3a3.5.9.dfsg.1-1_i386.deb) ...
+Selecting previously deselected package libruby1.8.
+Unpacking libruby1.8 (from .../libruby1.8_1.8.6.114-1_i386.deb) ...
+Selecting previously deselected package libcomedi0.
+Unpacking libcomedi0 (from .../libcomedi0_0.8.1-3_i386.deb) ...
+Selecting previously deselected package libcomedi-dev.
+Unpacking libcomedi-dev (from .../libcomedi-dev_0.8.1-3_i386.deb) ...
+Setting up libice6 (2:1.0.4-1) ...
+Setting up x11proto-core-dev (7.0.12-1) ...
+Setting up libice-dev (2:1.0.4-1) ...
+Setting up libsm6 (2:1.0.3-1+b1) ...
+Setting up libsm-dev (2:1.0.3-1+b1) ...
+Setting up libxau6 (1:1.0.3-2) ...
+Setting up libxdmcp6 (1:1.0.2-2) ...
+Setting up libx11-data (2:1.0.3-7) ...
+Setting up libx11-6 (2:1.0.3-7) ...
+Setting up libxau-dev (1:1.0.3-2) ...
+Setting up libxdmcp-dev (1:1.0.2-2) ...
+Setting up libxext6 (2:1.0.4-1) ...
+Setting up x11proto-input-dev (1.4.3-1) ...
+Setting up x11proto-xext-dev (7.0.2-5) ...
+Setting up x11proto-kb-dev (1.0.3-2) ...
+Setting up xtrans-dev (1.1-1) ...
+Setting up libxfixes3 (1:4.0.3-2) ...
+Setting up libxrender1 (1:0.9.4-1) ...
+Setting up libxcursor1 (1:1.1.9-1) ...
+Setting up x11proto-render-dev (2:0.9.3-2) ...
+Setting up x11proto-fixes-dev (4.0-2) ...
+Setting up libexpat1 (1.95.8-4) ...
+Setting up libfreetype6 (2.3.5-1+b1) ...
+Setting up ucf (3.005) ...
+Setting up libmagic1 (4.23-2) ...
+Setting up file (4.23-2) ...
+Setting up libnewt0.52 (0.52.2-11.2) ...
+Setting up libpopt0 (1.10-3) ...
+Setting up whiptail (0.52.2-11.2) ...
+Setting up defoma (0.11.10-0.2) ...
+Setting up ttf-dejavu-core (2.23-1) ...
+Setting up ttf-dejavu-extra (2.23-1) ...
+Setting up ttf-dejavu (2.23-1) ...
+Setting up fontconfig-config (2.5.0-2) ...
+Setting up libfontconfig1 (2.5.0-2) ...
+Setting up libxft2 (2.1.12-2) ...
+Setting up libexpat1-dev (1.95.8-4) ...
+Setting up zlib1g-dev (1:1.2.3.3.dfsg-11) ...
+Setting up libfreetype6-dev (2.3.5-1+b1) ...
+Setting up libpcre3 (7.6-2) ...
+Setting up libglib2.0-0 (2.14.6-1) ...
+Setting up pkg-config (0.22-1) ...
+Setting up libfontconfig1-dev (2.5.0-2) ...
+Setting up libxi6 (2:1.1.3-1) ...
+Setting up libxinerama1 (2:1.0.3-1) ...
+Setting up x11proto-xinerama-dev (1.1.2-4) ...
+Setting up libxrandr2 (2:1.2.2-1) ...
+Setting up x11proto-randr-dev (1.2.1-2) ...
+Setting up libxt6 (1:1.0.5-3) ...
+Setting up libxmu6 (2:1.0.4-1) ...
+Setting up libxpm4 (1:3.5.7-1) ...
+Setting up libxaw7 (2:1.0.4-1) ...
+Setting up libxmuu1 (2:1.0.4-1) ...
+Setting up libxtrap6 (1:1.0.0-4) ...
+Setting up libxxf86misc1 (1:1.0.1-2) ...
+Setting up libxxf86vm1 (1:1.0.1-2) ...
+Setting up x11-xserver-utils (7.3+2) ...
+Setting up xauth (1:1.0.2-2) ...
+Setting up bsdmainutils (6.1.10) ...
+Setting up groff-base (1.18.1.1-17) ...
+Setting up libssl0.9.8 (0.9.8g-7) ...
+Setting up man-db (2.5.1-2) ...
+Building database of manual pages ...
+Setting up module-init-tools (3.3-pre11-4) ...
+Setting up gettext-base (0.17-2) ...
+Setting up libidn11 (1.4-1) ...
+Setting up libkeyutils1 (1.2-6) ...
+Setting up libkrb53 (1.6.dfsg.3~beta1-3) ...
+Setting up html2text (1.3.2a-3) ...
+Setting up libgomp1 (4.3.0-1) ...
+Setting up gettext (0.17-2) ...
+Setting up intltool-debian (0.35.0+20060710.1) ...
+Setting up po-debconf (1.0.12) ...
+Setting up debhelper (6.0.7) ...
+Setting up esound-common (0.2.36-3) ...
+Setting up fontconfig (2.5.0-2) ...
+Updating font configuration of fontconfig...
+Cleaning up category cid..
+Cleaning up category truetype..
+Cleaning up category type1..
+Updating category type1..
+Updating category truetype..
+Updating category cid..
+Updating fontconfig cache for /usr/share/fonts/truetype/ttf-dejavu
+Cleaning up old fontconfig caches... done.
+Regenerating fonts cache... done.
+Setting up hicolor-icon-theme (0.10-1) ...
+Setting up kdelibs-data (4:3.5.9.dfsg.1-1) ...
+Setting up libart-2.0-2 (2.3.20-1) ...
+Setting up libartsc0 (1.5.9-1) ...
+Setting up libasound2 (1.0.16-1) ...
+Setting up libaudio2 (1.9.1-2) ...
+Setting up libaudiofile0 (0.2.6-7) ...
+Setting up libesd0 (0.2.36-3) ...
+Setting up libraw1394-8 (1.3.0-3) ...
+Creating device node /dev/raw1394... done.
+Setting up libavc1394-0 (0.5.3-1+b1) ...
+Setting up libiec61883-0 (1.1.0-2) ...
+Setting up libxml2 (2.6.31.dfsg-2) ...
+Setting up libfreebob0 (1.0.7-1) ...
+Setting up libjack0 (0.109.2-1) ...
+Setting up libmad0 (0.15.1b-2.1) ...
+Setting up libjpeg62 (6b-14) ...
+Setting up liblcms1 (1.16-8) ...
+Setting up libmng1 (1.0.9-1) ...
+Setting up libpng12-0 (1.2.15~beta5-3) ...
+Setting up libqt3-mt (3:3.3.8b-4) ...
+Setting up libogg0 (1.1.3-3) ...
+Setting up libvorbis0a (1.2.0.dfsg-3) ...
+Setting up libvorbisfile3 (1.2.0.dfsg-3) ...
+Setting up oss-compat (0.0.4) ...
+Setting up libarts1c2a (1.5.9-1) ...
+Setting up libaspell15 (0.60.5-2) ...
+Setting up libavahi-common-data (0.6.22-2) ...
+Setting up libavahi-common3 (0.6.22-2) ...
+Setting up libdbus-1-3 (1.1.20-1) ...
+Setting up libavahi-client3 (0.6.22-2) ...
+Setting up libavahi-qt3-1 (0.6.22-2) ...
+Setting up libcupsys2 (1.3.6-1) ...
+Setting up libfam0 (2.7.0-13.1) ...
+Setting up libjasper1 (1.900.1-4) ...
+Setting up liblua50 (5.0.3-3) ...
+Setting up liblualib50 (5.0.3-3) ...
+Setting up libopenexr2ldbl (1.2.2-4.4) ...
+Setting up libtiff4 (3.8.2-7) ...
+Setting up libxslt1.1 (1.1.22-1) ...
+Setting up menu-xdg (0.3) ...
+Setting up kdelibs4c2a (4:3.5.9.dfsg.1-1) ...
+Setting up libattr1-dev (1:2.4.41-1) ...
+Setting up libacl1-dev (2.2.45-1) ...
+Setting up libart-2.0-dev (2.3.20-1) ...
+Setting up libglib2.0-dev (2.14.6-1) ...
+Setting up libartsc0-dev (1.5.9-1) ...
+Setting up libasound2-dev (1.0.16-1) ...
+Setting up libaudio-dev (1.9.1-2) ...
+Setting up libaudiofile-dev (0.2.6-7) ...
+Setting up libesd0-dev (0.2.36-3) ...
+Setting up libjack-dev (0.109.2-1) ...
+Setting up libjack0.100.0-dev (0.109.2-1) ...
+Setting up libmad0-dev (0.15.1b-2.1) ...
+Setting up libogg-dev (1.1.3-3) ...
+Setting up libgpg-error-dev (1.4-2) ...
+Setting up libgcrypt11-dev (1.4.0-3) ...
+Setting up libopencdk10-dev (0.6.6-1) ...
+Setting up libtasn1-3-dev (1.3-1) ...
+Setting up libgnutls-dev (2.2.2-1) ...
+Setting up comerr-dev (2.1-1.40.7-1) ...
+Setting up libkadm55 (1.6.dfsg.3~beta1-3) ...
+Setting up libkrb5-dev (1.6.dfsg.3~beta1-3) ...
+Setting up libcupsys2-dev (1.3.6-1) ...
+Setting up libdrm2 (2.3.0-4) ...
+Setting up libxdamage1 (1:1.1.1-3) ...
+Setting up libgl1-mesa-glx (7.0.3~rc2-1) ...
+Setting up libglu1-mesa (7.0.3~rc2-1) ...
+Setting up libjpeg62-dev (6b-14) ...
+Setting up liblcms1-dev (1.16-8) ...
+Setting up libmng-dev (1.0.9-1) ...
+Setting up libpng12-dev (1.2.15~beta5-3) ...
+Setting up libqt3-headers (3:3.3.8b-4) ...
+Setting up qt3-dev-tools (3:3.3.8b-4) ...
+Setting up libvorbisenc2 (1.2.0.dfsg-3) ...
+Setting up libvorbis-dev (1.2.0.dfsg-3) ...
+Setting up libaspell-dev (0.60.5-2) ...
+Setting up libavahi-common-dev (0.6.22-2) ...
+Setting up libdbus-1-dev (1.1.20-1) ...
+Setting up libavahi-client-dev (0.6.22-2) ...
+Setting up libbz2-dev (1.0.4-3) ...
+Setting up libfam-dev (2.7.0-13.1) ...
+Setting up libidn11-dev (1.4-1) ...
+Setting up libjasper-dev (1.900.1-4) ...
+Setting up lua50 (5.0.3-3) ...
+Setting up liblua50-dev (5.0.3-3) ...
+Setting up liblualib50-dev (5.0.3-3) ...
+Setting up libpcrecpp0 (7.6-2) ...
+Setting up libpcre3-dev (7.6-2) ...
+Setting up libsasl2-modules (2.1.22.dfsg1-18) ...
+Setting up libsasl2-dev (2.1.22.dfsg1-18) ...
+Setting up libssl-dev (0.9.8g-7) ...
+Setting up libtiffxx0c2 (3.8.2-7) ...
+Setting up libtiff4-dev (3.8.2-7) ...
+Setting up libxml2-dev (2.6.31.dfsg-2) ...
+Setting up libxml2-utils (2.6.31.dfsg-2) ...
+Setting up libxslt1-dev (1.1.22-1) ...
+Setting up libruby1.8 (1.8.6.114-1) ...
+Setting up libcomedi0 (0.8.1-3) ...
+creating iocard group...
+/var/lib/dpkg/info/libcomedi0.postinst: line 9: addgroup: command not found
+dpkg: error processing libcomedi0 (--configure):
+ subprocess post-installation script returned error exit status 127
+dpkg: dependency problems prevent configuration of libcomedi-dev:
+ libcomedi-dev depends on libcomedi0; however:
+  Package libcomedi0 is not configured yet.
+dpkg: error processing libcomedi-dev (--configure):
+ dependency problems - leaving unconfigured
+Setting up libxext-dev (2:1.0.4-1) ...
+Setting up libx11-dev (2:1.0.3-7) ...
+Setting up libxrender-dev (1:0.9.4-1) ...
+Setting up libxfixes-dev (1:4.0.3-2) ...
+Setting up libxcursor-dev (1:1.1.9-1) ...
+Setting up libxft-dev (2.1.12-2) ...
+Setting up libxi-dev (2:1.1.3-1) ...
+Setting up libxinerama-dev (2:1.0.3-1) ...
+Setting up libxmu-headers (2:1.0.4-1) ...
+Setting up libxrandr-dev (2:1.2.2-1) ...
+Setting up libxt-dev (1:1.0.5-3) ...
+Setting up mesa-common-dev (7.0.3~rc2-1) ...
+Setting up libgl1-mesa-dev (7.0.3~rc2-1) ...
+Setting up libglu1-mesa-dev (7.0.3~rc2-1) ...
+Setting up libxmu-dev (2:1.0.4-1) ...
+Setting up libqt3-mt-dev (3:3.3.8b-4) ...
+Setting up libarts1-dev (1.5.9-1) ...
+Setting up libavahi-qt3-dev (0.6.22-2) ...
+Setting up libopenexr-dev (1.2.2-4.4) ...
+Setting up kdelibs4-dev (4:3.5.9.dfsg.1-1) ...
+Errors were encountered while processing:
+ libcomedi0
+ libcomedi-dev
+E: Sub-process /usr/bin/dpkg returned an error code (1)
+apt-get failed.
+Package installation failed
+Trying to reinstall removed packages:
+Trying to uninstall newly installed packages:
+(Reading database ... 24794 files and directories currently installed.)
+Removing debhelper ...
+Removing html2text ...
+Purging configuration files for html2text ...
+Removing kdelibs4-dev ...
+Removing kdelibs4c2a ...
+Purging configuration files for kdelibs4c2a ...
+Removing libacl1-dev ...
+Removing libart-2.0-dev ...
+Removing libarts1-dev ...
+Removing libarts1c2a ...
+Purging configuration files for libarts1c2a ...
+Removing libartsc0-dev ...
+Removing libasound2-dev ...
+Removing libaspell-dev ...
+Removing libaspell15 ...
+Purging configuration files for libaspell15 ...
+Removing libattr1-dev ...
+Removing libavahi-client-dev ...
+Removing libavahi-client3 ...
+Purging configuration files for libavahi-client3 ...
+Removing libavahi-qt3-dev ...
+Removing libbz2-dev ...
+Removing libcomedi-dev ...
+Removing libcomedi0 ...
+Purging configuration files for libcomedi0 ...
+Removing libdbus-1-dev ...
+Removing libesd0-dev ...
+Removing libfam-dev ...
+Removing libfam0 ...
+Purging configuration files for libfam0 ...
+Removing libglib2.0-dev ...
+Removing libidn11-dev ...
+Removing libjack0.100.0-dev ...
+Removing libjasper-dev ...
+Removing libjasper1 ...
+Purging configuration files for libjasper1 ...
+Removing liblualib50-dev ...
+Removing libmad0-dev ...
+Removing libopenexr-dev ...
+Removing libopenexr2ldbl ...
+Purging configuration files for libopenexr2ldbl ...
+Removing libpcre3-dev ...
+Removing libpcrecpp0 ...
+Purging configuration files for libpcrecpp0 ...
+Removing libqt3-mt-dev ...
+Removing libruby1.8 ...
+Purging configuration files for libruby1.8 ...
+Removing libsasl2-dev ...
+Removing libsasl2-modules ...
+Removing libssl-dev ...
+Removing libssl0.9.8 ...
+Purging configuration files for libssl0.9.8 ...
+Removing libtiff4-dev ...
+Removing libtiffxx0c2 ...
+Purging configuration files for libtiffxx0c2 ...
+Removing libvorbis-dev ...
+Removing libvorbisenc2 ...
+Purging configuration files for libvorbisenc2 ...
+Removing libvorbisfile3 ...
+Purging configuration files for libvorbisfile3 ...
+Removing libxcursor-dev ...
+Removing libxfixes-dev ...
+Removing libxft-dev ...
+Removing libxi-dev ...
+Removing libxinerama-dev ...
+Removing libxml2-utils ...
+Removing libxmu-dev ...
+Removing libxmu-headers ...
+Removing libxrandr-dev ...
+Removing libxrender-dev ...
+Removing libxslt1-dev ...
+Removing libxslt1.1 ...
+Purging configuration files for libxslt1.1 ...
+Removing libxt-dev ...
+Removing man-db ...
+Purging configuration files for man-db ...
+  Removing catpages as well as /var/cache/man hierarchy.
+Removing menu-xdg ...
+Purging configuration files for menu-xdg ...
+Removing oss-compat ...
+Removing po-debconf ...
+Removing qt3-dev-tools ...
+Removing x11-xserver-utils ...
+Purging configuration files for x11-xserver-utils ...
+Removing x11proto-fixes-dev ...
+Removing x11proto-randr-dev ...
+Removing x11proto-render-dev ...
+Removing x11proto-xinerama-dev ...
+Removing xauth ...
+Removing bsdmainutils ...
+Purging configuration files for bsdmainutils ...
+Removing groff-base ...
+Purging configuration files for groff-base ...
+Removing intltool-debian ...
+Removing kdelibs-data ...
+Purging configuration files for kdelibs-data ...
+Removing libart-2.0-2 ...
+Purging configuration files for libart-2.0-2 ...
+Removing libartsc0 ...
+Purging configuration files for libartsc0 ...
+Removing libaudio-dev ...
+Removing libaudiofile-dev ...
+Removing libavahi-common-dev ...
+Removing libavahi-qt3-1 ...
+Purging configuration files for libavahi-qt3-1 ...
+Removing libcupsys2-dev ...
+Removing libdbus-1-3 ...
+Purging configuration files for libdbus-1-3 ...
+Removing libesd0 ...
+Purging configuration files for libesd0 ...
+Removing libfontconfig1-dev ...
+Removing libfreetype6-dev ...
+Removing libglu1-mesa-dev ...
+Removing libgnutls-dev ...
+Removing libidn11 ...
+Purging configuration files for libidn11 ...
+Removing libjack-dev ...
+Removing libjack0 ...
+Purging configuration files for libjack0 ...
+Removing libkrb5-dev ...
+Removing liblua50-dev ...
+Removing libmad0 ...
+Purging configuration files for libmad0 ...
+Removing libmng-dev ...
+Removing libogg-dev ...
+Removing libopencdk10-dev ...
+Removing libpng12-dev ...
+Removing libqt3-headers ...
+Removing libqt3-mt ...
+Purging configuration files for libqt3-mt ...
+Removing libsm-dev ...
+Removing libtasn1-3-dev ...
+Removing libtiff4 ...
+Purging configuration files for libtiff4 ...
+Removing libvorbis0a ...
+Purging configuration files for libvorbis0a ...
+Removing libxaw7 ...
+Purging configuration files for libxaw7 ...
+Removing libxcursor1 ...
+Purging configuration files for libxcursor1 ...
+Removing libxft2 ...
+Purging configuration files for libxft2 ...
+Removing libxi6 ...
+Purging configuration files for libxi6 ...
+Removing libxinerama1 ...
+Purging configuration files for libxinerama1 ...
+Removing libxml2-dev ...
+Removing libxmu6 ...
+Purging configuration files for libxmu6 ...
+Removing libxmuu1 ...
+Purging configuration files for libxmuu1 ...
+Removing libxpm4 ...
+Purging configuration files for libxpm4 ...
+Removing libxrandr2 ...
+Purging configuration files for libxrandr2 ...
+Removing libxrender1 ...
+Purging configuration files for libxrender1 ...
+Removing libxtrap6 ...
+Purging configuration files for libxtrap6 ...
+Removing libxxf86misc1 ...
+Purging configuration files for libxxf86misc1 ...
+Removing lua50 ...
+Removing module-init-tools ...
+Purging configuration files for module-init-tools ...
+Removing pkg-config ...
+Removing zlib1g-dev ...
+Removing comerr-dev ...
+Removing esound-common ...
+Purging configuration files for esound-common ...
+Removing fontconfig ...
+Purging font configuration of fontconfig...
+Purging category cid..
+Purging category truetype..
+Purging category type1..
+Updating fontconfig cache for /usr/share/fonts/truetype/ttf-dejavu
+Purging configuration files for fontconfig ...
+Removing gettext ...
+Removing gettext-base ...
+Removing hicolor-icon-theme ...
+Removing libasound2 ...
+Purging configuration files for libasound2 ...
+Removing libaudio2 ...
+Removing libaudiofile0 ...
+Purging configuration files for libaudiofile0 ...
+Removing libavahi-common3 ...
+Purging configuration files for libavahi-common3 ...
+Removing libcupsys2 ...
+Purging configuration files for libcupsys2 ...
+Removing libexpat1-dev ...
+Removing libfontconfig1 ...
+Purging configuration files for libfontconfig1 ...
+Removing libfreebob0 ...
+Purging configuration files for libfreebob0 ...
+Removing libfreetype6 ...
+Purging configuration files for libfreetype6 ...
+Removing libgcrypt11-dev ...
+Removing libgl1-mesa-dev ...
+Removing libglib2.0-0 ...
+Purging configuration files for libglib2.0-0 ...
+Removing libglu1-mesa ...
+Purging configuration files for libglu1-mesa ...
+Removing libgomp1 ...
+Purging configuration files for libgomp1 ...
+Removing libgpg-error-dev ...
+Removing libice-dev ...
+Removing libiec61883-0 ...
+Purging configuration files for libiec61883-0 ...
+Removing libjpeg62-dev ...
+Removing libkadm55 ...
+Purging configuration files for libkadm55 ...
+Removing libkrb53 ...
+Purging configuration files for libkrb53 ...
+Removing liblcms1-dev ...
+Removing liblualib50 ...
+Purging configuration files for liblualib50 ...
+Removing libmng1 ...
+Purging configuration files for libmng1 ...
+Removing libogg0 ...
+Purging configuration files for libogg0 ...
+Removing libpcre3 ...
+Purging configuration files for libpcre3 ...
+Removing libpng12-0 ...
+Purging configuration files for libpng12-0 ...
+Removing libxml2 ...
+Purging configuration files for libxml2 ...
+Removing libxt6 ...
+Purging configuration files for libxt6 ...
+Removing mesa-common-dev ...
+Removing fontconfig-config ...
+Purging configuration files for fontconfig-config ...
+Removing libavahi-common-data ...
+Removing libavc1394-0 ...
+Purging configuration files for libavc1394-0 ...
+Removing libexpat1 ...
+Purging configuration files for libexpat1 ...
+Removing libgl1-mesa-glx ...
+Purging configuration files for libgl1-mesa-glx ...
+Removing libjpeg62 ...
+Removing libkeyutils1 ...
+Purging configuration files for libkeyutils1 ...
+Removing liblcms1 ...
+Purging configuration files for liblcms1 ...
+Removing liblua50 ...
+Purging configuration files for liblua50 ...
+Removing libraw1394-8 ...
+Purging configuration files for libraw1394-8 ...
+Removing libsm6 ...
+Purging configuration files for libsm6 ...
+Removing libxdamage1 ...
+Purging configuration files for libxdamage1 ...
+Removing libxfixes3 ...
+Purging configuration files for libxfixes3 ...
+Removing libxxf86vm1 ...
+Purging configuration files for libxxf86vm1 ...
+Removing ttf-dejavu ...
+Removing ttf-dejavu-extra ...
+Purging configuration files for ttf-dejavu-extra ...
+Removing ucf ...
+Purging configuration files for ucf ...
+Removing libdrm2 ...
+Purging configuration files for libdrm2 ...
+Removing libice6 ...
+Purging configuration files for libice6 ...
+Removing ttf-dejavu-core ...
+Purging configuration files for ttf-dejavu-core ...
+Removing defoma ...
+Purging configuration files for defoma ...
+Removing file ...
+Purging configuration files for file ...
+Removing libmagic1 ...
+Purging configuration files for libmagic1 ...
+Removing whiptail ...
+Removing libnewt0.52 ...
+Purging configuration files for libnewt0.52 ...
+Removing libpopt0 ...
+Purging configuration files for libpopt0 ...
+Removing libxext-dev ...
+Removing libxext6 ...
+Purging configuration files for libxext6 ...
+Removing x11proto-xext-dev ...
+Removing libx11-dev ...
+Removing libxau-dev ...
+Removing libxdmcp-dev ...
+Removing x11proto-core-dev ...
+Removing x11proto-input-dev ...
+Removing x11proto-kb-dev ...
+Removing xtrans-dev ...
+Removing libx11-6 ...
+Purging configuration files for libx11-6 ...
+Removing libx11-data ...
+Removing libxau6 ...
+Purging configuration files for libxau6 ...
+Removing libxdmcp6 ...
+Purging configuration files for libxdmcp6 ...
+Removing x11-common ...
+Purging configuration files for x11-common ...
+Source-dependencies not satisfied; skipping ktimetrace
+Not removing build depends: session managed chroot in use
+******************************************************************************
+Finished at 20080311-0308
+Build needed 00:00:00, 0k disk space
+DC-Build-Status: Failed 373.23361s
+DC-Time-Estimation: 373.23361 versus expected 94 (r/m: 2.97057031914894 ; m: 94.0)

Added: collab-qa-tools/test/source/tomboy_0.8.2-1_sid32.buildlog
===================================================================
--- collab-qa-tools/test/source/tomboy_0.8.2-1_sid32.buildlog	                        (rev 0)
+++ collab-qa-tools/test/source/tomboy_0.8.2-1_sid32.buildlog	2008-03-11 08:06:38 UTC (rev 735)
@@ -0,0 +1,1782 @@
+DC-Build-Header: tomboy 0.8.2-1 / Sat Mar 08 15:01:08 +0100 2008
+Automatic build of tomboy_0.8.2-1 on grelon-18.nancy.grid5000.fr by sbuild/amd64 0.57.0
+Build started at 20080308-1501
+******************************************************************************
+Failed to open ./tomboy_0.8.2-1.dsc
+Checking available source versions...
+Fetching source files...
+Reading package lists...
+Building dependency tree...
+Reading state information...
+Need to get 2645kB of source archives.
+Get:1 http://idpot.grenoble.grid5000.fr sid/main tomboy 0.8.2-1 (dsc) [1124B]
+Get:2 http://idpot.grenoble.grid5000.fr sid/main tomboy 0.8.2-1 (tar) [2617kB]
+Get:3 http://idpot.grenoble.grid5000.fr sid/main tomboy 0.8.2-1 (diff) [27.0kB]
+Fetched 2645kB in 0s (4263kB/s)
+Download complete and in download only mode
+** Using build dependencies supplied by package:
+Build-Depends: cdbs, cli-common-dev (>= 0.4.4), debhelper (>= 5), gnome-doc-utils (>= 0.3.2), intltool, libatk1.0-dev (>= 1.2.4), libdbus-1-dev (>= 0.90), libdbus-glib-1-dev (>= 0.60), libgconf2.0-cil, libgmime2.2-cil, libgnome2.0-cil, libgnomeprintui2.2-dev, libgtk2.0-cil (>= 2.6.0), libgtk2.0-dev (>= 2.6.0), libgtkspell-dev (>= 2.0.9), libmono-addins-gui0.2-cil (>= 0.2-4), libmono-addins0.2-cil (>= 0.2-4), libmono-cairo2.0-cil, libmono-dev (>= 1.1.13.4), libndesk-dbus-glib1.0-cil (>= 0.3), libndesk-dbus1.0-cil (>= 0.4), libpanel-applet2-dev, mono-gmcs (>= 1.1.13.4), scrollkeeper, sharutils
+Checking for already installed source dependencies...
+cdbs: missing
+cli-common-dev: missing
+Using default version 0.5.6
+debhelper: missing
+Using default version 6.0.7
+gnome-doc-utils: missing
+Using default version 0.12.1-1
+intltool: missing
+libatk1.0-dev: missing
+Using default version 1.20.0-1
+libdbus-1-dev: missing
+Using default version 1.1.20-1
+libdbus-glib-1-dev: missing
+Using default version 0.74-1
+libgconf2.0-cil: missing
+libgmime2.2-cil: missing
+libgnome2.0-cil: missing
+libgnomeprintui2.2-dev: missing
+libgtk2.0-cil: missing
+Using default version 2.10.4-2
+libgtk2.0-dev: missing
+Using default version 2.12.8-1
+libgtkspell-dev: missing
+Using default version 2.0.10-4
+libmono-addins-gui0.2-cil: missing
+Using default version 0.3.1-3
+libmono-addins0.2-cil: missing
+Using default version 0.3.1-3
+libmono-cairo2.0-cil: missing
+libmono-dev: missing
+Using default version 1.2.6+dfsg-6
+libndesk-dbus-glib1.0-cil: missing
+Using default version 0.4.1-1
+libndesk-dbus1.0-cil: missing
+Using default version 0.6.0-1
+libpanel-applet2-dev: missing
+mono-gmcs: missing
+Using default version 1.2.6+dfsg-6
+scrollkeeper: missing
+sharutils: missing
+Checking for source dependency conflicts...
+Reading package lists...
+Building dependency tree...
+Reading state information...
+The following extra packages will be installed:
+  adduser autoconf automake1.7 autotools-dev bsdmainutils cli-common dbus
+  defoma docbook-xml esound-common file fontconfig fontconfig-config gconf2
+  gconf2-common gettext gettext-base gnome-mime-data groff-base html2text
+  ifupdown intltool-debian libart-2.0-2 libart-2.0-dev libart2.0-cil
+  libaspell-dev libaspell15 libatk1.0-0 libaudiofile-dev libaudiofile0
+  libavahi-client-dev libavahi-client3 libavahi-common-data
+  libavahi-common-dev libavahi-common3 libavahi-glib-dev libavahi-glib1
+  libbonobo2-0 libbonobo2-common libbonobo2-dev libbonoboui2-0
+  libbonoboui2-common libbonoboui2-dev libcairo2 libcairo2-dev libcupsys2
+  libdatrie0 libdb4.5 libdbus-1-3 libdbus-glib-1-2 libesd0 libesd0-dev
+  libexpat1 libexpat1-dev libfam0 libfontconfig1 libfontconfig1-dev
+  libfreetype6 libfreetype6-dev libgail-common libgail-dev libgail18
+  libgconf2-4 libgconf2-dev libgcrypt11-dev libglade2-0 libglade2-dev
+  libglade2.0-cil libglib2.0-0 libglib2.0-cil libglib2.0-dev libgmime-2.0-2
+  libgnome-keyring-dev libgnome-keyring0 libgnome-vfs2.0-cil libgnome2-0
+  libgnome2-common libgnome2-dev libgnomecanvas2-0 libgnomecanvas2-common
+  libgnomecanvas2-dev libgnomecups1.0-1 libgnomeprint2.2-0
+  libgnomeprint2.2-data libgnomeprint2.2-dev libgnomeprintui2.2-0
+  libgnomeprintui2.2-common libgnomeui-0 libgnomeui-common libgnomeui-dev
+  libgnomevfs2-0 libgnomevfs2-common libgnomevfs2-dev libgnutls-dev libgomp1
+  libgpg-error-dev libgtk2.0-0 libgtk2.0-common libgtkspell0 libhal-dev
+  libhal-storage-dev libhal-storage1 libhal1 libhtml-parser-perl
+  libhtml-tagset-perl libhtml-tree-perl libice-dev libice6 libidl-dev libidl0
+  libjpeg62 libjpeg62-dev libkeyutils1 libkrb53 libmagic1 libmono-cairo1.0-cil
+  libmono-corlib1.0-cil libmono-corlib2.0-cil libmono-data-tds1.0-cil
+  libmono-data-tds2.0-cil libmono-peapi1.0-cil libmono-relaxng1.0-cil
+  libmono-security1.0-cil libmono-security2.0-cil libmono-sharpzip0.84-cil
+  libmono-sharpzip2.84-cil libmono-system-data1.0-cil
+  libmono-system-data2.0-cil libmono-system-runtime1.0-cil
+  libmono-system-web1.0-cil libmono-system-web2.0-cil libmono-system1.0-cil
+  libmono-system2.0-cil libmono0 libmono1.0-cil libmono2.0-cil libncursesw5
+  libnewt0.52 libopencdk10-dev liborbit2 liborbit2-dev libpanel-applet2-0
+  libpango1.0-0 libpango1.0-common libpango1.0-dev libpcre3 libpng12-0
+  libpng12-dev libpopt-dev libpopt0 libscrollkeeper0 libselinux1-dev
+  libsepol1-dev libsm-dev libsm6 libssl0.9.8 libtasn1-3-dev libthai-data
+  libthai0 libtiff4 liburi-perl libwww-perl libx11-6 libx11-data libx11-dev
+  libxau-dev libxau6 libxcomposite-dev libxcomposite1 libxcursor-dev
+  libxcursor1 libxdamage-dev libxdamage1 libxdmcp-dev libxdmcp6 libxext-dev
+  libxext6 libxfixes-dev libxfixes3 libxft-dev libxft2 libxi-dev libxi6
+  libxinerama-dev libxinerama1 libxml-dom-perl libxml-parser-perl libxml-perl
+  libxml-regexp-perl libxml2 libxml2-dev libxml2-utils libxrandr-dev
+  libxrandr2 libxrender-dev libxrender1 libxslt1.1 m4 man-db mime-support
+  mono-1.0-devel mono-common mono-gac mono-jit mono-runtime mono-utils
+  net-tools netbase pkg-config po-debconf psmisc python python-libxml2
+  python-minimal python-support python2.4 python2.4-minimal sgml-base
+  sgml-data shared-mime-info ttf-dejavu ttf-dejavu-core ttf-dejavu-extra ucf
+  whiptail x11-common x11proto-composite-dev x11proto-core-dev
+  x11proto-damage-dev x11proto-fixes-dev x11proto-input-dev x11proto-kb-dev
+  x11proto-randr-dev x11proto-render-dev x11proto-xext-dev
+  x11proto-xinerama-dev xml-core xsltproc xtrans-dev zlib1g-dev
+Suggested packages:
+  autobook autoconf-archive autoconf-doc autoconf2.13 gnu-standards libtool
+  wamerican wordlist whois vacation devscripts doc-base dh-make defoma-doc
+  dfontmgr psfontmgr x-ttcidfont-conf docbook docbook-dsssl docbook-xsl
+  docbook-defguide cvs gettext-doc groff iproute dhcp3-client dhcp-client ppp
+  monodoc-gtk2.0-manual aspell-doc aspell libbonobo2-bin libcairo2-doc
+  cupsys-common esound libgail-doc libgcrypt11-doc glade glade-gnome
+  libglib2.0-doc desktop-base libgnome2-doc libgnomecanvas2-doc
+  libgnomeprint2.2-doc libgnomeui-doc libgnomevfs2-bin gnutls-bin gnutls-doc
+  guile-gnutls librsvg2-common libgtk2.0-doc hal-doc krb5-doc krb5-user
+  libgda2-3 libmono-winforms2.0-cil libgamin0 libgdiplus
+  libmono-winforms1.0-cil libasound2 ttf-arphic-bkai00mp ttf-arphic-bsmi00lp
+  ttf-arphic-gbsn00lp ttf-arphic-gkai00mp ttf-baekmuk ttf-kochi-gothic
+  ttf-kochi-mincho ttf-thryomanes imagemagick libpango1.0-doc
+  libio-socket-ssl-perl www-browser python-doc python-tk python-profiler
+  python2.4-doc logrotate sgml-base-doc perlsgml doc-html-w3 opensp mailx
+Recommended packages:
+  automake automaken dbus-x11 libft-perl curl wget lynx aspell-en
+  aspell-dictionary aspell6a-dictionary libatk1.0-data esound-clients fam
+  libglib2.0-data gnome-keyring cupsys gnome-icon-theme gnome-mount
+  libgnomevfs2-extra hicolor-icon-theme libgtk2.0-bin libmono-i18n1.0-cil
+  libmono-i18n2.0-cil libgpmg1 libfribidi0 orbit2 libcompress-zlib-perl
+  libhtml-format-perl libmailtools-perl mono-mcs binfmt-support
+  libmail-box-perl libmail-sendmail-perl
+The following NEW packages will be installed:
+  adduser autoconf automake1.7 autotools-dev bsdmainutils cdbs cli-common
+  cli-common-dev dbus debhelper defoma docbook-xml esound-common file
+  fontconfig fontconfig-config gconf2 gconf2-common gettext gettext-base
+  gnome-doc-utils gnome-mime-data groff-base html2text ifupdown intltool
+  intltool-debian libart-2.0-2 libart-2.0-dev libart2.0-cil libaspell-dev
+  libaspell15 libatk1.0-0 libatk1.0-dev libaudiofile-dev libaudiofile0
+  libavahi-client-dev libavahi-client3 libavahi-common-data
+  libavahi-common-dev libavahi-common3 libavahi-glib-dev libavahi-glib1
+  libbonobo2-0 libbonobo2-common libbonobo2-dev libbonoboui2-0
+  libbonoboui2-common libbonoboui2-dev libcairo2 libcairo2-dev libcupsys2
+  libdatrie0 libdb4.5 libdbus-1-3 libdbus-1-dev libdbus-glib-1-2
+  libdbus-glib-1-dev libesd0 libesd0-dev libexpat1 libexpat1-dev libfam0
+  libfontconfig1 libfontconfig1-dev libfreetype6 libfreetype6-dev
+  libgail-common libgail-dev libgail18 libgconf2-4 libgconf2-dev
+  libgconf2.0-cil libgcrypt11-dev libglade2-0 libglade2-dev libglade2.0-cil
+  libglib2.0-0 libglib2.0-cil libglib2.0-dev libgmime-2.0-2 libgmime2.2-cil
+  libgnome-keyring-dev libgnome-keyring0 libgnome-vfs2.0-cil libgnome2-0
+  libgnome2-common libgnome2-dev libgnome2.0-cil libgnomecanvas2-0
+  libgnomecanvas2-common libgnomecanvas2-dev libgnomecups1.0-1
+  libgnomeprint2.2-0 libgnomeprint2.2-data libgnomeprint2.2-dev
+  libgnomeprintui2.2-0 libgnomeprintui2.2-common libgnomeprintui2.2-dev
+  libgnomeui-0 libgnomeui-common libgnomeui-dev libgnomevfs2-0
+  libgnomevfs2-common libgnomevfs2-dev libgnutls-dev libgomp1 libgpg-error-dev
+  libgtk2.0-0 libgtk2.0-cil libgtk2.0-common libgtk2.0-dev libgtkspell-dev
+  libgtkspell0 libhal-dev libhal-storage-dev libhal-storage1 libhal1
+  libhtml-parser-perl libhtml-tagset-perl libhtml-tree-perl libice-dev libice6
+  libidl-dev libidl0 libjpeg62 libjpeg62-dev libkeyutils1 libkrb53 libmagic1
+  libmono-addins-gui0.2-cil libmono-addins0.2-cil libmono-cairo1.0-cil
+  libmono-cairo2.0-cil libmono-corlib1.0-cil libmono-corlib2.0-cil
+  libmono-data-tds1.0-cil libmono-data-tds2.0-cil libmono-dev
+  libmono-peapi1.0-cil libmono-relaxng1.0-cil libmono-security1.0-cil
+  libmono-security2.0-cil libmono-sharpzip0.84-cil libmono-sharpzip2.84-cil
+  libmono-system-data1.0-cil libmono-system-data2.0-cil
+  libmono-system-runtime1.0-cil libmono-system-web1.0-cil
+  libmono-system-web2.0-cil libmono-system1.0-cil libmono-system2.0-cil
+  libmono0 libmono1.0-cil libmono2.0-cil libncursesw5
+  libndesk-dbus-glib1.0-cil libndesk-dbus1.0-cil libnewt0.52 libopencdk10-dev
+  liborbit2 liborbit2-dev libpanel-applet2-0 libpanel-applet2-dev
+  libpango1.0-0 libpango1.0-common libpango1.0-dev libpcre3 libpng12-0
+  libpng12-dev libpopt-dev libpopt0 libscrollkeeper0 libselinux1-dev
+  libsepol1-dev libsm-dev libsm6 libssl0.9.8 libtasn1-3-dev libthai-data
+  libthai0 libtiff4 liburi-perl libwww-perl libx11-6 libx11-data libx11-dev
+  libxau-dev libxau6 libxcomposite-dev libxcomposite1 libxcursor-dev
+  libxcursor1 libxdamage-dev libxdamage1 libxdmcp-dev libxdmcp6 libxext-dev
+  libxext6 libxfixes-dev libxfixes3 libxft-dev libxft2 libxi-dev libxi6
+  libxinerama-dev libxinerama1 libxml-dom-perl libxml-parser-perl libxml-perl
+  libxml-regexp-perl libxml2 libxml2-dev libxml2-utils libxrandr-dev
+  libxrandr2 libxrender-dev libxrender1 libxslt1.1 m4 man-db mime-support
+  mono-1.0-devel mono-common mono-gac mono-gmcs mono-jit mono-runtime
+  mono-utils net-tools netbase pkg-config po-debconf psmisc python
+  python-libxml2 python-minimal python-support python2.4 python2.4-minimal
+  scrollkeeper sgml-base sgml-data shared-mime-info sharutils ttf-dejavu
+  ttf-dejavu-core ttf-dejavu-extra ucf whiptail x11-common
+  x11proto-composite-dev x11proto-core-dev x11proto-damage-dev
+  x11proto-fixes-dev x11proto-input-dev x11proto-kb-dev x11proto-randr-dev
+  x11proto-render-dev x11proto-xext-dev x11proto-xinerama-dev xml-core
+  xsltproc xtrans-dev zlib1g-dev
+0 upgraded, 265 newly installed, 0 to remove and 0 not upgraded.
+Need to get 83.7MB of archives.
+After this operation, 268MB of additional disk space will be used.
+WARNING: The following packages cannot be authenticated!
+  x11-common libice6 x11proto-core-dev libice-dev libsm6 libsm-dev libxau6
+  libxdmcp6 libx11-data libx11-6 libxau-dev libxdmcp-dev libxext6
+  x11proto-input-dev x11proto-xext-dev libxext-dev x11proto-kb-dev xtrans-dev
+  libx11-dev libxfixes3 libxcomposite1 x11proto-fixes-dev libxfixes-dev
+  x11proto-composite-dev libxcomposite-dev libxrender1 libxcursor1
+  x11proto-render-dev libxrender-dev libxcursor-dev libxdamage1
+  x11proto-damage-dev libxdamage-dev libexpat1 libfreetype6 ucf libmagic1 file
+  libnewt0.52 libpopt0 whiptail defoma ttf-dejavu-core ttf-dejavu-extra
+  ttf-dejavu fontconfig-config libfontconfig1 libxft2 libexpat1-dev zlib1g-dev
+  libfreetype6-dev libpcre3 libglib2.0-0 pkg-config libfontconfig1-dev
+  libxft-dev libxi6 libxi-dev libxinerama1 x11proto-xinerama-dev
+  libxinerama-dev libxrandr2 x11proto-randr-dev libxrandr-dev adduser
+  bsdmainutils groff-base net-tools ifupdown libncursesw5 libssl0.9.8 man-db
+  netbase gettext-base libdb4.5 libkeyutils1 libkrb53 m4 mime-support
+  python2.4-minimal python2.4 python-minimal python python-support sharutils
+  autoconf autotools-dev automake1.7 html2text libgomp1 gettext
+  intltool-debian po-debconf debhelper cdbs cli-common libhtml-tagset-perl
+  liburi-perl libhtml-parser-perl libhtml-tree-perl libwww-perl
+  libxml-parser-perl libxml-perl libxml-regexp-perl libxml-dom-perl
+  mono-common mono-jit libmono-corlib1.0-cil libmono-peapi1.0-cil
+  libmono-system1.0-cil libmono-relaxng1.0-cil libmono-security1.0-cil
+  libmono-sharpzip0.84-cil libmono-data-tds1.0-cil libmono-system-data1.0-cil
+  libmono-system-web1.0-cil libmono-system-runtime1.0-cil libmono0 mono-gac
+  mono-runtime libmono1.0-cil mono-1.0-devel mono-utils cli-common-dev
+  libdbus-1-3 dbus sgml-base xml-core sgml-data docbook-xml esound-common
+  fontconfig gconf2-common libidl0 liborbit2 libxml2 libgconf2-4 psmisc gconf2
+  libxml2-utils python-libxml2 libxslt1.1 xsltproc gnome-doc-utils
+  gnome-mime-data intltool libart-2.0-2 libart-2.0-dev libglib2.0-cil
+  libart2.0-cil libaspell15 libaspell-dev libatk1.0-0 libglib2.0-dev
+  libatk1.0-dev libaudiofile0 libaudiofile-dev libavahi-common-data
+  libavahi-common3 libavahi-client3 libavahi-common-dev libdbus-1-dev
+  libavahi-client-dev libavahi-glib1 libavahi-glib-dev libbonobo2-common
+  libbonobo2-0 libidl-dev liborbit2-dev libpopt-dev libbonobo2-dev
+  libbonoboui2-common libpng12-0 libcairo2 libcupsys2 libgtk2.0-common
+  libjpeg62 libdatrie0 libpango1.0-common libthai-data libthai0 libpango1.0-0
+  libtiff4 libgtk2.0-0 libglade2-0 libesd0 libdbus-glib-1-2 libfam0
+  shared-mime-info libgnomevfs2-common libhal1 libhal-storage1 libgnomevfs2-0
+  libgnome2-common libgnome2-0 libgail18 libgail-common libgnomecanvas2-common
+  libgnomecanvas2-0 libbonoboui2-0 libpng12-dev libcairo2-dev libpango1.0-dev
+  libgtk2.0-dev libxml2-dev libglade2-dev libgconf2-dev libgpg-error-dev
+  libgcrypt11-dev libopencdk10-dev libtasn1-3-dev libgnutls-dev libsepol1-dev
+  libselinux1-dev libgnomevfs2-dev libesd0-dev libgnome2-dev libgail-dev
+  libgnomecanvas2-dev libbonoboui2-dev libdbus-glib-1-dev libgconf2.0-cil
+  libmono-cairo1.0-cil libgtk2.0-cil libglade2.0-cil libgmime-2.0-2
+  libgmime2.2-cil libgnome-keyring0 libhal-dev libhal-storage-dev
+  libgnome-keyring-dev libgnome-vfs2.0-cil libgnomecups1.0-1
+  libgnomeprint2.2-data libgnomeprint2.2-0 libgnomeprintui2.2-common
+  libgnomeprintui2.2-0 libgnomeui-common libgnomeui-0 libpanel-applet2-0
+  libgnome2.0-cil libgnomeprint2.2-dev libgnomeprintui2.2-dev libjpeg62-dev
+  libgnomeui-dev libgtkspell0 libgtkspell-dev libmono-addins0.2-cil
+  libmono-addins-gui0.2-cil libmono-corlib2.0-cil libmono-cairo2.0-cil
+  libmono-system2.0-cil libmono-security2.0-cil libmono-data-tds2.0-cil
+  libmono-dev libmono-sharpzip2.84-cil libmono-system-data2.0-cil
+  libmono-system-web2.0-cil libmono2.0-cil libndesk-dbus1.0-cil
+  libndesk-dbus-glib1.0-cil libpanel-applet2-dev libscrollkeeper0 mono-gmcs
+  scrollkeeper
+Authentication warning overridden.
+Get:1 http://idpot.grenoble.grid5000.fr sid/main x11-common 1:7.3+10 [345kB]
+Get:2 http://idpot.grenoble.grid5000.fr sid/main libice6 2:1.0.4-1 [46.6kB]
+Get:3 http://idpot.grenoble.grid5000.fr sid/main x11proto-core-dev 7.0.12-1 [89.6kB]
+Get:4 http://idpot.grenoble.grid5000.fr sid/main libice-dev 2:1.0.4-1 [55.1kB]
+Get:5 http://idpot.grenoble.grid5000.fr sid/main libsm6 2:1.0.3-1+b1 [21.8kB]
+Get:6 http://idpot.grenoble.grid5000.fr sid/main libsm-dev 2:1.0.3-1+b1 [24.3kB]
+Get:7 http://idpot.grenoble.grid5000.fr sid/main libxau6 1:1.0.3-2 [11.7kB]
+Get:8 http://idpot.grenoble.grid5000.fr sid/main libxdmcp6 1:1.0.2-2 [16.7kB]
+Get:9 http://idpot.grenoble.grid5000.fr sid/main libx11-data 2:1.0.3-7 [157kB]
+Get:10 http://idpot.grenoble.grid5000.fr sid/main libx11-6 2:1.0.3-7 [567kB]
+Get:11 http://idpot.grenoble.grid5000.fr sid/main libxau-dev 1:1.0.3-2 [15.4kB]
+Get:12 http://idpot.grenoble.grid5000.fr sid/main libxdmcp-dev 1:1.0.2-2 [19.8kB]
+Get:13 http://idpot.grenoble.grid5000.fr sid/main libxext6 2:1.0.4-1 [33.5kB]
+Get:14 http://idpot.grenoble.grid5000.fr sid/main x11proto-input-dev 1.4.3-1 [15.9kB]
+Get:15 http://idpot.grenoble.grid5000.fr sid/main x11proto-xext-dev 7.0.2-5 [41.7kB]
+Get:16 http://idpot.grenoble.grid5000.fr sid/main libxext-dev 2:1.0.4-1 [84.2kB]
+Get:17 http://idpot.grenoble.grid5000.fr sid/main x11proto-kb-dev 1.0.3-2 [26.8kB]
+Get:18 http://idpot.grenoble.grid5000.fr sid/main xtrans-dev 1.1-1 [73.7kB]
+Get:19 http://idpot.grenoble.grid5000.fr sid/main libx11-dev 2:1.0.3-7 [1269kB]
+Get:20 http://idpot.grenoble.grid5000.fr sid/main libxfixes3 1:4.0.3-2 [9572B]
+Get:21 http://idpot.grenoble.grid5000.fr sid/main libxcomposite1 1:0.4.0-1 [10.8kB]
+Get:22 http://idpot.grenoble.grid5000.fr sid/main x11proto-fixes-dev 4.0-2 [5640B]
+Get:23 http://idpot.grenoble.grid5000.fr sid/main libxfixes-dev 1:4.0.3-2 [12.1kB]
+Get:24 http://idpot.grenoble.grid5000.fr sid/main x11proto-composite-dev 1:0.4-2 [12.3kB]
+Get:25 http://idpot.grenoble.grid5000.fr sid/main libxcomposite-dev 1:0.4.0-1 [14.3kB]
+Get:26 http://idpot.grenoble.grid5000.fr sid/main libxrender1 1:0.9.4-1 [25.4kB]
+Get:27 http://idpot.grenoble.grid5000.fr sid/main libxcursor1 1:1.1.9-1 [24.0kB]
+Get:28 http://idpot.grenoble.grid5000.fr sid/main x11proto-render-dev 2:0.9.3-2 [7062B]
+Get:29 http://idpot.grenoble.grid5000.fr sid/main libxrender-dev 1:0.9.4-1 [28.5kB]
+Get:30 http://idpot.grenoble.grid5000.fr sid/main libxcursor-dev 1:1.1.9-1 [30.8kB]
+Get:31 http://idpot.grenoble.grid5000.fr sid/main libxdamage1 1:1.1.1-3 [9804B]
+Get:32 http://idpot.grenoble.grid5000.fr sid/main x11proto-damage-dev 1.1.0-2 [9090B]
+Get:33 http://idpot.grenoble.grid5000.fr sid/main libxdamage-dev 1:1.1.1-3 [9634B]
+Get:34 http://idpot.grenoble.grid5000.fr sid/main libexpat1 1.95.8-4 [63.9kB]
+Get:35 http://idpot.grenoble.grid5000.fr sid/main libfreetype6 2.3.5-1+b1 [347kB]
+Get:36 http://idpot.grenoble.grid5000.fr sid/main ucf 3.005 [61.2kB]
+Get:37 http://idpot.grenoble.grid5000.fr sid/main libmagic1 4.23-2 [342kB]
+Get:38 http://idpot.grenoble.grid5000.fr sid/main file 4.23-2 [41.0kB]
+Get:39 http://idpot.grenoble.grid5000.fr sid/main libnewt0.52 0.52.2-11.2 [67.2kB]
+Get:40 http://idpot.grenoble.grid5000.fr sid/main libpopt0 1.10-3 [33.1kB]
+Get:41 http://idpot.grenoble.grid5000.fr sid/main whiptail 0.52.2-11.2 [34.8kB]
+Get:42 http://idpot.grenoble.grid5000.fr sid/main defoma 0.11.10-0.2 [101kB]
+Get:43 http://idpot.grenoble.grid5000.fr sid/main ttf-dejavu-core 2.23-1 [1347kB]
+Get:44 http://idpot.grenoble.grid5000.fr sid/main ttf-dejavu-extra 2.23-1 [2949kB]
+Get:45 http://idpot.grenoble.grid5000.fr sid/main ttf-dejavu 2.23-1 [24.3kB]
+Get:46 http://idpot.grenoble.grid5000.fr sid/main fontconfig-config 2.5.0-2 [179kB]
+Get:47 http://idpot.grenoble.grid5000.fr sid/main libfontconfig1 2.5.0-2 [110kB]
+Get:48 http://idpot.grenoble.grid5000.fr sid/main libxft2 2.1.12-2 [47.6kB]
+Get:49 http://idpot.grenoble.grid5000.fr sid/main libexpat1-dev 1.95.8-4 [129kB]
+Get:50 http://idpot.grenoble.grid5000.fr sid/main zlib1g-dev 1:1.2.3.3.dfsg-11 [157kB]
+Get:51 http://idpot.grenoble.grid5000.fr sid/main libfreetype6-dev 2.3.5-1+b1 [662kB]
+Get:52 http://idpot.grenoble.grid5000.fr sid/main libpcre3 7.6-2 [208kB]
+Get:53 http://idpot.grenoble.grid5000.fr sid/main libglib2.0-0 2.14.6-1 [561kB]
+Get:54 http://idpot.grenoble.grid5000.fr sid/main pkg-config 0.22-1 [52.2kB]
+Get:55 http://idpot.grenoble.grid5000.fr sid/main libfontconfig1-dev 2.5.0-2 [595kB]
+Get:56 http://idpot.grenoble.grid5000.fr sid/main libxft-dev 2.1.12-2 [61.3kB]
+Get:57 http://idpot.grenoble.grid5000.fr sid/main libxi6 2:1.1.3-1 [24.6kB]
+Get:58 http://idpot.grenoble.grid5000.fr sid/main libxi-dev 2:1.1.3-1 [69.0kB]
+Get:59 http://idpot.grenoble.grid5000.fr sid/main libxinerama1 2:1.0.3-1 [9874B]
+Get:60 http://idpot.grenoble.grid5000.fr sid/main x11proto-xinerama-dev 1.1.2-4 [5074B]
+Get:61 http://idpot.grenoble.grid5000.fr sid/main libxinerama-dev 2:1.0.3-1 [11.4kB]
+Get:62 http://idpot.grenoble.grid5000.fr sid/main libxrandr2 2:1.2.2-1 [20.4kB]
+Get:63 http://idpot.grenoble.grid5000.fr sid/main x11proto-randr-dev 1.2.1-2 [28.6kB]
+Get:64 http://idpot.grenoble.grid5000.fr sid/main libxrandr-dev 2:1.2.2-1 [27.8kB]
+Get:65 http://idpot.grenoble.grid5000.fr sid/main adduser 3.106 [183kB]
+Get:66 http://idpot.grenoble.grid5000.fr sid/main bsdmainutils 6.1.10 [172kB]
+Get:67 http://idpot.grenoble.grid5000.fr sid/main groff-base 1.18.1.1-17 [844kB]
+Get:68 http://idpot.grenoble.grid5000.fr sid/main net-tools 1.60-19 [258kB]
+Get:69 http://idpot.grenoble.grid5000.fr sid/main ifupdown 0.6.8 [50.9kB]
+Get:70 http://idpot.grenoble.grid5000.fr sid/main libncursesw5 5.6+20080203-1 [347kB]
+Get:71 http://idpot.grenoble.grid5000.fr sid/main libssl0.9.8 0.9.8g-7 [2900kB]
+Get:72 http://idpot.grenoble.grid5000.fr sid/main man-db 2.5.1-2 [997kB]
+Get:73 http://idpot.grenoble.grid5000.fr sid/main netbase 4.30 [18.0kB]
+Get:74 http://idpot.grenoble.grid5000.fr sid/main gettext-base 0.17-2 [123kB]
+Get:75 http://idpot.grenoble.grid5000.fr sid/main libdb4.5 4.5.20-11 [525kB]
+Get:76 http://idpot.grenoble.grid5000.fr sid/main libkeyutils1 1.2-6 [5206B]
+Get:77 http://idpot.grenoble.grid5000.fr sid/main libkrb53 1.6.dfsg.3~beta1-3 [464kB]
+Get:78 http://idpot.grenoble.grid5000.fr sid/main m4 1.4.10-1 [206kB]
+Get:79 http://idpot.grenoble.grid5000.fr sid/main mime-support 3.40-1.1 [31.3kB]
+Get:80 http://idpot.grenoble.grid5000.fr sid/main python2.4-minimal 2.4.4-8 [967kB]
+Get:81 http://idpot.grenoble.grid5000.fr sid/main python2.4 2.4.4-8 [2801kB]
+Get:82 http://idpot.grenoble.grid5000.fr sid/main python-minimal 2.4.4-6 [12.9kB]
+Get:83 http://idpot.grenoble.grid5000.fr sid/main python 2.4.4-6 [140kB]
+Get:84 http://idpot.grenoble.grid5000.fr sid/main python-support 0.7.6 [26.6kB]
+Get:85 http://idpot.grenoble.grid5000.fr sid/main sharutils 1:4.6.3-1 [206kB]
+Get:86 http://idpot.grenoble.grid5000.fr sid/main autoconf 2.61-6 [448kB]
+Get:87 http://idpot.grenoble.grid5000.fr sid/main autotools-dev 20080123.1 [63.0kB]
+Get:88 http://idpot.grenoble.grid5000.fr sid/main automake1.7 1.7.9-9 [391kB]
+Get:89 http://idpot.grenoble.grid5000.fr sid/main html2text 1.3.2a-3 [98.9kB]
+Get:90 http://idpot.grenoble.grid5000.fr sid/main libgomp1 4.3.0~rc2-1 [13.3kB]
+Get:91 http://idpot.grenoble.grid5000.fr sid/main gettext 0.17-2 [2683kB]
+Get:92 http://idpot.grenoble.grid5000.fr sid/main intltool-debian 0.35.0+20060710.1 [30.8kB]
+Get:93 http://idpot.grenoble.grid5000.fr sid/main po-debconf 1.0.12 [237kB]
+Get:94 http://idpot.grenoble.grid5000.fr sid/main debhelper 6.0.7 [521kB]
+Get:95 http://idpot.grenoble.grid5000.fr sid/main cdbs 0.4.51 [919kB]
+Get:96 http://idpot.grenoble.grid5000.fr sid/main cli-common 0.5.6 [165kB]
+Get:97 http://idpot.grenoble.grid5000.fr sid/main libhtml-tagset-perl 3.10-2 [13.7kB]
+Get:98 http://idpot.grenoble.grid5000.fr sid/main liburi-perl 1.35.dfsg.1-1 [88.0kB]
+Get:99 http://idpot.grenoble.grid5000.fr sid/main libhtml-parser-perl 3.56-1 [108kB]
+Get:100 http://idpot.grenoble.grid5000.fr sid/main libhtml-tree-perl 3.23-1 [209kB]
+Get:101 http://idpot.grenoble.grid5000.fr sid/main libwww-perl 5.808-1 [366kB]
+Get:102 http://idpot.grenoble.grid5000.fr sid/main libxml-parser-perl 2.36-1 [365kB]
+Get:103 http://idpot.grenoble.grid5000.fr sid/main libxml-perl 0.08-1 [119kB]
+Get:104 http://idpot.grenoble.grid5000.fr sid/main libxml-regexp-perl 0.03-7 [7518B]
+Get:105 http://idpot.grenoble.grid5000.fr sid/main libxml-dom-perl 1.44-1 [184kB]
+Get:106 http://idpot.grenoble.grid5000.fr sid/main mono-common 1.2.6+dfsg-6 [113kB]
+Get:107 http://idpot.grenoble.grid5000.fr sid/main mono-jit 1.2.6+dfsg-6 [712kB]
+Get:108 http://idpot.grenoble.grid5000.fr sid/main libmono-corlib1.0-cil 1.2.6+dfsg-6 [747kB]
+Get:109 http://idpot.grenoble.grid5000.fr sid/main libmono-peapi1.0-cil 1.2.6+dfsg-6 [67.2kB]
+Get:110 http://idpot.grenoble.grid5000.fr sid/main libmono-system1.0-cil 1.2.6+dfsg-6 [929kB]
+Get:111 http://idpot.grenoble.grid5000.fr sid/main libmono-relaxng1.0-cil 1.2.6+dfsg-6 [107kB]
+Get:112 http://idpot.grenoble.grid5000.fr sid/main libmono-security1.0-cil 1.2.6+dfsg-6 [138kB]
+Get:113 http://idpot.grenoble.grid5000.fr sid/main libmono-sharpzip0.84-cil 1.2.6+dfsg-6 [81.9kB]
+Get:114 http://idpot.grenoble.grid5000.fr sid/main libmono-data-tds1.0-cil 1.2.6+dfsg-6 [53.2kB]
+Get:115 http://idpot.grenoble.grid5000.fr sid/main libmono-system-data1.0-cil 1.2.6+dfsg-6 [247kB]
+Get:116 http://idpot.grenoble.grid5000.fr sid/main libmono-system-web1.0-cil 1.2.6+dfsg-6 [421kB]
+Get:117 http://idpot.grenoble.grid5000.fr sid/main libmono-system-runtime1.0-cil 1.2.6+dfsg-6 [84.0kB]
+Get:118 http://idpot.grenoble.grid5000.fr sid/main libmono0 1.2.6+dfsg-6 [816kB]
+Get:119 http://idpot.grenoble.grid5000.fr sid/main mono-gac 1.2.6+dfsg-6 [38.4kB]
+Get:120 http://idpot.grenoble.grid5000.fr sid/main mono-runtime 1.2.6+dfsg-6 [24.3kB]
+Get:121 http://idpot.grenoble.grid5000.fr sid/main libmono1.0-cil 1.2.6+dfsg-6 [399kB]
+Get:122 http://idpot.grenoble.grid5000.fr sid/main mono-1.0-devel 1.2.6+dfsg-6 [381kB]
+Get:123 http://idpot.grenoble.grid5000.fr sid/main mono-utils 1.2.6+dfsg-6 [580kB]
+Get:124 http://idpot.grenoble.grid5000.fr sid/main cli-common-dev 0.5.6 [38.0kB]
+Get:125 http://idpot.grenoble.grid5000.fr sid/main libdbus-1-3 1.1.20-1 [143kB]
+Get:126 http://idpot.grenoble.grid5000.fr sid/main dbus 1.1.20-1 [323kB]
+Get:127 http://idpot.grenoble.grid5000.fr sid/main sgml-base 1.26 [11.7kB]
+Get:128 http://idpot.grenoble.grid5000.fr sid/main xml-core 0.11 [22.4kB]
+Get:129 http://idpot.grenoble.grid5000.fr sid/main sgml-data 2.0.3 [279kB]
+Get:130 http://idpot.grenoble.grid5000.fr sid/main docbook-xml 4.5-5 [344kB]
+Get:131 http://idpot.grenoble.grid5000.fr sid/main esound-common 0.2.36-3 [38.2kB]
+Get:132 http://idpot.grenoble.grid5000.fr sid/main fontconfig 2.5.0-2 [43.0kB]
+Get:133 http://idpot.grenoble.grid5000.fr sid/main gconf2-common 2.20.1-3 [1489kB]
+Get:134 http://idpot.grenoble.grid5000.fr sid/main libidl0 0.8.9-0.1 [86.9kB]
+Get:135 http://idpot.grenoble.grid5000.fr sid/main liborbit2 1:2.14.10-0.1 [246kB]
+Get:136 http://idpot.grenoble.grid5000.fr sid/main libxml2 2.6.31.dfsg-2 [782kB]
+Get:137 http://idpot.grenoble.grid5000.fr sid/main libgconf2-4 2.20.1-3 [240kB]
+Get:138 http://idpot.grenoble.grid5000.fr sid/main psmisc 22.6-1 [84.7kB]
+Get:139 http://idpot.grenoble.grid5000.fr sid/main gconf2 2.20.1-3 [139kB]
+Get:140 http://idpot.grenoble.grid5000.fr sid/main libxml2-utils 2.6.31.dfsg-2 [33.9kB]
+Get:141 http://idpot.grenoble.grid5000.fr sid/main python-libxml2 2.6.31.dfsg-2 [263kB]
+Get:142 http://idpot.grenoble.grid5000.fr sid/main libxslt1.1 1.1.22-1 [219kB]
+Get:143 http://idpot.grenoble.grid5000.fr sid/main xsltproc 1.1.22-1 [109kB]
+Get:144 http://idpot.grenoble.grid5000.fr sid/main gnome-doc-utils 0.12.1-1 [383kB]
+Get:145 http://idpot.grenoble.grid5000.fr sid/main gnome-mime-data 2.18.0-1 [725kB]
+Get:146 http://idpot.grenoble.grid5000.fr sid/main intltool 0.37.1-1 [122kB]
+Get:147 http://idpot.grenoble.grid5000.fr sid/main libart-2.0-2 2.3.20-1 [64.7kB]
+Get:148 http://idpot.grenoble.grid5000.fr sid/main libart-2.0-dev 2.3.20-1 [81.7kB]
+Get:149 http://idpot.grenoble.grid5000.fr sid/main libglib2.0-cil 2.10.4-2 [160kB]
+Get:150 http://idpot.grenoble.grid5000.fr sid/main libart2.0-cil 2.16.1-2 [141kB]
+Get:151 http://idpot.grenoble.grid5000.fr sid/main libaspell15 0.60.5-2 [635kB]
+Get:152 http://idpot.grenoble.grid5000.fr sid/main libaspell-dev 0.60.5-2 [49.0kB]
+Get:153 http://idpot.grenoble.grid5000.fr sid/main libatk1.0-0 1.20.0-1 [78.5kB]
+Get:154 http://idpot.grenoble.grid5000.fr sid/main libglib2.0-dev 2.14.6-1 [569kB]
+Get:155 http://idpot.grenoble.grid5000.fr sid/main libatk1.0-dev 1.20.0-1 [112kB]
+Get:156 http://idpot.grenoble.grid5000.fr sid/main libaudiofile0 0.2.6-7 [76.4kB]
+Get:157 http://idpot.grenoble.grid5000.fr sid/main libaudiofile-dev 0.2.6-7 [116kB]
+Get:158 http://idpot.grenoble.grid5000.fr sid/main libavahi-common-data 0.6.22-2 [98.7kB]
+Get:159 http://idpot.grenoble.grid5000.fr sid/main libavahi-common3 0.6.22-2 [114kB]
+Get:160 http://idpot.grenoble.grid5000.fr sid/main libavahi-client3 0.6.22-2 [118kB]
+Get:161 http://idpot.grenoble.grid5000.fr sid/main libavahi-common-dev 0.6.22-2 [134kB]
+Get:162 http://idpot.grenoble.grid5000.fr sid/main libdbus-1-dev 1.1.20-1 [212kB]
+Get:163 http://idpot.grenoble.grid5000.fr sid/main libavahi-client-dev 0.6.22-2 [128kB]
+Get:164 http://idpot.grenoble.grid5000.fr sid/main libavahi-glib1 0.6.22-2 [99.2kB]
+Get:165 http://idpot.grenoble.grid5000.fr sid/main libavahi-glib-dev 0.6.22-2 [101kB]
+Get:166 http://idpot.grenoble.grid5000.fr sid/main libbonobo2-common 2.21.90-1 [306kB]
+Get:167 http://idpot.grenoble.grid5000.fr sid/main libbonobo2-0 2.21.90-1 [212kB]
+Get:168 http://idpot.grenoble.grid5000.fr sid/main libidl-dev 0.8.9-0.1 [102kB]
+Get:169 http://idpot.grenoble.grid5000.fr sid/main liborbit2-dev 1:2.14.10-0.1 [461kB]
+Get:170 http://idpot.grenoble.grid5000.fr sid/main libpopt-dev 1.10-3 [38.1kB]
+Get:171 http://idpot.grenoble.grid5000.fr sid/main libbonobo2-dev 2.21.90-1 [666kB]
+Get:172 http://idpot.grenoble.grid5000.fr sid/main libbonoboui2-common 2.21.90-1 [392kB]
+Get:173 http://idpot.grenoble.grid5000.fr sid/main libpng12-0 1.2.15~beta5-3 [187kB]
+Get:174 http://idpot.grenoble.grid5000.fr sid/main libcairo2 1.4.14-1 [539kB]
+Get:175 http://idpot.grenoble.grid5000.fr sid/main libcupsys2 1.3.6-1 [156kB]
+Get:176 http://idpot.grenoble.grid5000.fr sid/main libgtk2.0-common 2.12.8-1 [6206kB]
+Get:177 http://idpot.grenoble.grid5000.fr sid/main libjpeg62 6b-14 [86.0kB]
+Get:178 http://idpot.grenoble.grid5000.fr sid/main libdatrie0 0.1.3-1 [18.3kB]
+Get:179 http://idpot.grenoble.grid5000.fr sid/main libpango1.0-common 1.18.4-1 [50.1kB]
+Get:180 http://idpot.grenoble.grid5000.fr sid/main libthai-data 0.1.9-3 [162kB]
+Get:181 http://idpot.grenoble.grid5000.fr sid/main libthai0 0.1.9-3 [31.5kB]
+Get:182 http://idpot.grenoble.grid5000.fr sid/main libpango1.0-0 1.18.4-1 [294kB]
+Get:183 http://idpot.grenoble.grid5000.fr sid/main libtiff4 3.8.2-7 [483kB]
+Get:184 http://idpot.grenoble.grid5000.fr sid/main libgtk2.0-0 2.12.8-1 [2063kB]
+Get:185 http://idpot.grenoble.grid5000.fr sid/main libglade2-0 1:2.6.2-1 [86.5kB]
+Get:186 http://idpot.grenoble.grid5000.fr sid/main libesd0 0.2.36-3 [18.9kB]
+Get:187 http://idpot.grenoble.grid5000.fr sid/main libdbus-glib-1-2 0.74-1 [135kB]
+Get:188 http://idpot.grenoble.grid5000.fr sid/main libfam0 2.7.0-13.1 [27.9kB]
+Get:189 http://idpot.grenoble.grid5000.fr sid/main shared-mime-info 0.23-4 [591kB]
+Get:190 http://idpot.grenoble.grid5000.fr sid/main libgnomevfs2-common 1:2.20.1-2 [1180kB]
+Get:191 http://idpot.grenoble.grid5000.fr sid/main libhal1 0.5.10+git20080301-1 [418kB]
+Get:192 http://idpot.grenoble.grid5000.fr sid/main libhal-storage1 0.5.10+git20080301-1 [411kB]
+Get:193 http://idpot.grenoble.grid5000.fr sid/main libgnomevfs2-0 1:2.20.1-2 [550kB]
+Get:194 http://idpot.grenoble.grid5000.fr sid/main libgnome2-common 2.20.1.1-1 [987kB]
+Get:195 http://idpot.grenoble.grid5000.fr sid/main libgnome2-0 2.20.1.1-1 [114kB]
+Get:196 http://idpot.grenoble.grid5000.fr sid/main libgail18 1.20.2-1 [195kB]
+Get:197 http://idpot.grenoble.grid5000.fr sid/main libgail-common 1.20.2-1 [227kB]
+Get:198 http://idpot.grenoble.grid5000.fr sid/main libgnomecanvas2-common 2.20.1.1-1 [159kB]
+Get:199 http://idpot.grenoble.grid5000.fr sid/main libgnomecanvas2-0 2.20.1.1-1 [116kB]
+Get:200 http://idpot.grenoble.grid5000.fr sid/main libbonoboui2-0 2.21.90-1 [221kB]
+Get:201 http://idpot.grenoble.grid5000.fr sid/main libpng12-dev 1.2.15~beta5-3 [171kB]
+Get:202 http://idpot.grenoble.grid5000.fr sid/main libcairo2-dev 1.4.14-1 [617kB]
+Get:203 http://idpot.grenoble.grid5000.fr sid/main libpango1.0-dev 1.18.4-1 [361kB]
+Get:204 http://idpot.grenoble.grid5000.fr sid/main libgtk2.0-dev 2.12.8-1 [2784kB]
+Get:205 http://idpot.grenoble.grid5000.fr sid/main libxml2-dev 2.6.31.dfsg-2 [673kB]
+Get:206 http://idpot.grenoble.grid5000.fr sid/main libglade2-dev 1:2.6.2-1 [130kB]
+Get:207 http://idpot.grenoble.grid5000.fr sid/main libgconf2-dev 2.20.1-3 [275kB]
+Get:208 http://idpot.grenoble.grid5000.fr sid/main libgpg-error-dev 1.4-2 [33.6kB]
+Get:209 http://idpot.grenoble.grid5000.fr sid/main libgcrypt11-dev 1.4.0-3 [319kB]
+Get:210 http://idpot.grenoble.grid5000.fr sid/main libopencdk10-dev 0.6.6-1 [117kB]
+Get:211 http://idpot.grenoble.grid5000.fr sid/main libtasn1-3-dev 1.3-1 [372kB]
+Get:212 http://idpot.grenoble.grid5000.fr sid/main libgnutls-dev 2.2.2-1 [439kB]
+Get:213 http://idpot.grenoble.grid5000.fr sid/main libsepol1-dev 2.0.11-1 [508kB]
+Get:214 http://idpot.grenoble.grid5000.fr sid/main libselinux1-dev 2.0.35-1 [254kB]
+Get:215 http://idpot.grenoble.grid5000.fr sid/main libgnomevfs2-dev 1:2.20.1-2 [534kB]
+Get:216 http://idpot.grenoble.grid5000.fr sid/main libesd0-dev 0.2.36-3 [23.7kB]
+Get:217 http://idpot.grenoble.grid5000.fr sid/main libgnome2-dev 2.20.1.1-1 [113kB]
+Get:218 http://idpot.grenoble.grid5000.fr sid/main libgail-dev 1.20.2-1 [89.6kB]
+Get:219 http://idpot.grenoble.grid5000.fr sid/main libgnomecanvas2-dev 2.20.1.1-1 [142kB]
+Get:220 http://idpot.grenoble.grid5000.fr sid/main libbonoboui2-dev 2.21.90-1 [286kB]
+Get:221 http://idpot.grenoble.grid5000.fr sid/main libdbus-glib-1-dev 0.74-1 [176kB]
+Get:222 http://idpot.grenoble.grid5000.fr sid/main libgconf2.0-cil 2.16.1-2 [131kB]
+Get:223 http://idpot.grenoble.grid5000.fr sid/main libmono-cairo1.0-cil 1.2.6+dfsg-6 [44.9kB]
+Get:224 http://idpot.grenoble.grid5000.fr sid/main libgtk2.0-cil 2.10.4-2 [815kB]
+Get:225 http://idpot.grenoble.grid5000.fr sid/main libglade2.0-cil 2.10.4-2 [143kB]
+Get:226 http://idpot.grenoble.grid5000.fr sid/main libgmime-2.0-2 2.2.17-1 [202kB]
+Get:227 http://idpot.grenoble.grid5000.fr sid/main libgmime2.2-cil 2.2.17-1 [106kB]
+Get:228 http://idpot.grenoble.grid5000.fr sid/main libgnome-keyring0 2.20.3-1 [48.0kB]
+Get:229 http://idpot.grenoble.grid5000.fr sid/main libhal-dev 0.5.10+git20080301-1 [424kB]
+Get:230 http://idpot.grenoble.grid5000.fr sid/main libhal-storage-dev 0.5.10+git20080301-1 [411kB]
+Get:231 http://idpot.grenoble.grid5000.fr sid/main libgnome-keyring-dev 2.20.3-1 [88.7kB]
+Get:232 http://idpot.grenoble.grid5000.fr sid/main libgnome-vfs2.0-cil 2.16.1-2 [184kB]
+Get:233 http://idpot.grenoble.grid5000.fr sid/main libgnomecups1.0-1 0.2.3-1 [70.6kB]
+Get:234 http://idpot.grenoble.grid5000.fr sid/main libgnomeprint2.2-data 2.18.4-1 [173kB]
+Get:235 http://idpot.grenoble.grid5000.fr sid/main libgnomeprint2.2-0 2.18.4-1 [264kB]
+Get:236 http://idpot.grenoble.grid5000.fr sid/main libgnomeprintui2.2-common 2.18.2-1 [270kB]
+Get:237 http://idpot.grenoble.grid5000.fr sid/main libgnomeprintui2.2-0 2.18.2-1 [163kB]
+Get:238 http://idpot.grenoble.grid5000.fr sid/main libgnomeui-common 2.20.1.1-1 [803kB]
+Get:239 http://idpot.grenoble.grid5000.fr sid/main libgnomeui-0 2.20.1.1-1 [362kB]
+Get:240 http://idpot.grenoble.grid5000.fr sid/main libpanel-applet2-0 2.20.3-3 [105kB]
+Get:241 http://idpot.grenoble.grid5000.fr sid/main libgnome2.0-cil 2.16.1-2 [269kB]
+Get:242 http://idpot.grenoble.grid5000.fr sid/main libgnomeprint2.2-dev 2.18.4-1 [316kB]
+Get:243 http://idpot.grenoble.grid5000.fr sid/main libgnomeprintui2.2-dev 2.18.2-1 [206kB]
+Get:244 http://idpot.grenoble.grid5000.fr sid/main libjpeg62-dev 6b-14 [186kB]
+Get:245 http://idpot.grenoble.grid5000.fr sid/main libgnomeui-dev 2.20.1.1-1 [428kB]
+Get:246 http://idpot.grenoble.grid5000.fr sid/main libgtkspell0 2.0.10-4 [19.0kB]
+Get:247 http://idpot.grenoble.grid5000.fr sid/main libgtkspell-dev 2.0.10-4 [24.3kB]
+Get:248 http://idpot.grenoble.grid5000.fr sid/main libmono-addins0.2-cil 0.3.1-3 [114kB]
+Get:249 http://idpot.grenoble.grid5000.fr sid/main libmono-addins-gui0.2-cil 0.3.1-3 [44.0kB]
+Get:250 http://idpot.grenoble.grid5000.fr sid/main libmono-corlib2.0-cil 1.2.6+dfsg-6 [897kB]
+Get:251 http://idpot.grenoble.grid5000.fr sid/main libmono-cairo2.0-cil 1.2.6+dfsg-6 [44.8kB]
+Get:252 http://idpot.grenoble.grid5000.fr sid/main libmono-system2.0-cil 1.2.6+dfsg-6 [1413kB]
+Get:253 http://idpot.grenoble.grid5000.fr sid/main libmono-security2.0-cil 1.2.6+dfsg-6 [139kB]
+Get:254 http://idpot.grenoble.grid5000.fr sid/main libmono-data-tds2.0-cil 1.2.6+dfsg-6 [55.3kB]
+Get:255 http://idpot.grenoble.grid5000.fr sid/main libmono-dev 1.2.6+dfsg-6 [1117kB]
+Get:256 http://idpot.grenoble.grid5000.fr sid/main libmono-sharpzip2.84-cil 1.2.6+dfsg-6 [81.9kB]
+Get:257 http://idpot.grenoble.grid5000.fr sid/main libmono-system-data2.0-cil 1.2.6+dfsg-6 [314kB]
+Get:258 http://idpot.grenoble.grid5000.fr sid/main libmono-system-web2.0-cil 1.2.6+dfsg-6 [831kB]
+Get:259 http://idpot.grenoble.grid5000.fr sid/main libmono2.0-cil 1.2.6+dfsg-6 [236kB]
+Get:260 http://idpot.grenoble.grid5000.fr sid/main libndesk-dbus1.0-cil 0.6.0-1 [57.0kB]
+Get:261 http://idpot.grenoble.grid5000.fr sid/main libndesk-dbus-glib1.0-cil 0.4.1-1 [7866B]
+Get:262 http://idpot.grenoble.grid5000.fr sid/main libpanel-applet2-dev 2.20.3-3 [110kB]
+Get:263 http://idpot.grenoble.grid5000.fr sid/main libscrollkeeper0 0.3.14-16 [150kB]
+Get:264 http://idpot.grenoble.grid5000.fr sid/main mono-gmcs 1.2.6+dfsg-6 [380kB]
+Get:265 http://idpot.grenoble.grid5000.fr sid/main scrollkeeper 0.3.14-16 [160kB]
+debconf: delaying package configuration, since apt-utils is not installed
+Fetched 83.7MB in 11s (7235kB/s)
+Selecting previously deselected package x11-common.
+(Reading database ... 9174 files and directories currently installed.)
+Unpacking x11-common (from .../x11-common_1%3a7.3+10_i386.deb) ...
+Selecting previously deselected package libice6.
+Unpacking libice6 (from .../libice6_2%3a1.0.4-1_i386.deb) ...
+Setting up x11-common (1:7.3+10) ...
+Selecting previously deselected package x11proto-core-dev.
+(Reading database ... 9212 files and directories currently installed.)
+Unpacking x11proto-core-dev (from .../x11proto-core-dev_7.0.12-1_all.deb) ...
+Selecting previously deselected package libice-dev.
+Unpacking libice-dev (from .../libice-dev_2%3a1.0.4-1_i386.deb) ...
+Selecting previously deselected package libsm6.
+Unpacking libsm6 (from .../libsm6_2%3a1.0.3-1+b1_i386.deb) ...
+Selecting previously deselected package libsm-dev.
+Unpacking libsm-dev (from .../libsm-dev_2%3a1.0.3-1+b1_i386.deb) ...
+Selecting previously deselected package libxau6.
+Unpacking libxau6 (from .../libxau6_1%3a1.0.3-2_i386.deb) ...
+Selecting previously deselected package libxdmcp6.
+Unpacking libxdmcp6 (from .../libxdmcp6_1%3a1.0.2-2_i386.deb) ...
+Selecting previously deselected package libx11-data.
+Unpacking libx11-data (from .../libx11-data_2%3a1.0.3-7_all.deb) ...
+Selecting previously deselected package libx11-6.
+Unpacking libx11-6 (from .../libx11-6_2%3a1.0.3-7_i386.deb) ...
+Selecting previously deselected package libxau-dev.
+Unpacking libxau-dev (from .../libxau-dev_1%3a1.0.3-2_i386.deb) ...
+Selecting previously deselected package libxdmcp-dev.
+Unpacking libxdmcp-dev (from .../libxdmcp-dev_1%3a1.0.2-2_i386.deb) ...
+Selecting previously deselected package libxext6.
+Unpacking libxext6 (from .../libxext6_2%3a1.0.4-1_i386.deb) ...
+Selecting previously deselected package x11proto-input-dev.
+Unpacking x11proto-input-dev (from .../x11proto-input-dev_1.4.3-1_all.deb) ...
+Selecting previously deselected package x11proto-xext-dev.
+Unpacking x11proto-xext-dev (from .../x11proto-xext-dev_7.0.2-5_all.deb) ...
+Selecting previously deselected package libxext-dev.
+Unpacking libxext-dev (from .../libxext-dev_2%3a1.0.4-1_i386.deb) ...
+Selecting previously deselected package x11proto-kb-dev.
+Unpacking x11proto-kb-dev (from .../x11proto-kb-dev_1.0.3-2_all.deb) ...
+Selecting previously deselected package xtrans-dev.
+Unpacking xtrans-dev (from .../xtrans-dev_1.1-1_all.deb) ...
+Selecting previously deselected package libx11-dev.
+Unpacking libx11-dev (from .../libx11-dev_2%3a1.0.3-7_i386.deb) ...
+Selecting previously deselected package libxfixes3.
+Unpacking libxfixes3 (from .../libxfixes3_1%3a4.0.3-2_i386.deb) ...
+Selecting previously deselected package libxcomposite1.
+Unpacking libxcomposite1 (from .../libxcomposite1_1%3a0.4.0-1_i386.deb) ...
+Selecting previously deselected package x11proto-fixes-dev.
+Unpacking x11proto-fixes-dev (from .../x11proto-fixes-dev_4.0-2_all.deb) ...
+Selecting previously deselected package libxfixes-dev.
+Unpacking libxfixes-dev (from .../libxfixes-dev_1%3a4.0.3-2_i386.deb) ...
+Selecting previously deselected package x11proto-composite-dev.
+Unpacking x11proto-composite-dev (from .../x11proto-composite-dev_1%3a0.4-2_all.deb) ...
+Selecting previously deselected package libxcomposite-dev.
+Unpacking libxcomposite-dev (from .../libxcomposite-dev_1%3a0.4.0-1_i386.deb) ...
+Selecting previously deselected package libxrender1.
+Unpacking libxrender1 (from .../libxrender1_1%3a0.9.4-1_i386.deb) ...
+Selecting previously deselected package libxcursor1.
+Unpacking libxcursor1 (from .../libxcursor1_1%3a1.1.9-1_i386.deb) ...
+Selecting previously deselected package x11proto-render-dev.
+Unpacking x11proto-render-dev (from .../x11proto-render-dev_2%3a0.9.3-2_all.deb) ...
+Selecting previously deselected package libxrender-dev.
+Unpacking libxrender-dev (from .../libxrender-dev_1%3a0.9.4-1_i386.deb) ...
+Selecting previously deselected package libxcursor-dev.
+Unpacking libxcursor-dev (from .../libxcursor-dev_1%3a1.1.9-1_i386.deb) ...
+Selecting previously deselected package libxdamage1.
+Unpacking libxdamage1 (from .../libxdamage1_1%3a1.1.1-3_i386.deb) ...
+Selecting previously deselected package x11proto-damage-dev.
+Unpacking x11proto-damage-dev (from .../x11proto-damage-dev_1.1.0-2_all.deb) ...
+Selecting previously deselected package libxdamage-dev.
+Unpacking libxdamage-dev (from .../libxdamage-dev_1%3a1.1.1-3_i386.deb) ...
+Selecting previously deselected package libexpat1.
+Unpacking libexpat1 (from .../libexpat1_1.95.8-4_i386.deb) ...
+Selecting previously deselected package libfreetype6.
+Unpacking libfreetype6 (from .../libfreetype6_2.3.5-1+b1_i386.deb) ...
+Selecting previously deselected package ucf.
+Unpacking ucf (from .../apt/archives/ucf_3.005_all.deb) ...
+Moving old data out of the way
+Selecting previously deselected package libmagic1.
+Unpacking libmagic1 (from .../libmagic1_4.23-2_i386.deb) ...
+Selecting previously deselected package file.
+Unpacking file (from .../archives/file_4.23-2_i386.deb) ...
+Selecting previously deselected package libnewt0.52.
+Unpacking libnewt0.52 (from .../libnewt0.52_0.52.2-11.2_i386.deb) ...
+Selecting previously deselected package libpopt0.
+Unpacking libpopt0 (from .../libpopt0_1.10-3_i386.deb) ...
+Selecting previously deselected package whiptail.
+Unpacking whiptail (from .../whiptail_0.52.2-11.2_i386.deb) ...
+Selecting previously deselected package defoma.
+Unpacking defoma (from .../defoma_0.11.10-0.2_all.deb) ...
+Selecting previously deselected package ttf-dejavu-core.
+Unpacking ttf-dejavu-core (from .../ttf-dejavu-core_2.23-1_all.deb) ...
+Selecting previously deselected package ttf-dejavu-extra.
+Unpacking ttf-dejavu-extra (from .../ttf-dejavu-extra_2.23-1_all.deb) ...
+Selecting previously deselected package ttf-dejavu.
+Unpacking ttf-dejavu (from .../ttf-dejavu_2.23-1_all.deb) ...
+Selecting previously deselected package fontconfig-config.
+Unpacking fontconfig-config (from .../fontconfig-config_2.5.0-2_all.deb) ...
+Selecting previously deselected package libfontconfig1.
+Unpacking libfontconfig1 (from .../libfontconfig1_2.5.0-2_i386.deb) ...
+Selecting previously deselected package libxft2.
+Unpacking libxft2 (from .../libxft2_2.1.12-2_i386.deb) ...
+Selecting previously deselected package libexpat1-dev.
+Unpacking libexpat1-dev (from .../libexpat1-dev_1.95.8-4_i386.deb) ...
+Selecting previously deselected package zlib1g-dev.
+Unpacking zlib1g-dev (from .../zlib1g-dev_1%3a1.2.3.3.dfsg-11_i386.deb) ...
+Selecting previously deselected package libfreetype6-dev.
+Unpacking libfreetype6-dev (from .../libfreetype6-dev_2.3.5-1+b1_i386.deb) ...
+Selecting previously deselected package libpcre3.
+Unpacking libpcre3 (from .../libpcre3_7.6-2_i386.deb) ...
+Selecting previously deselected package libglib2.0-0.
+Unpacking libglib2.0-0 (from .../libglib2.0-0_2.14.6-1_i386.deb) ...
+Selecting previously deselected package pkg-config.
+Unpacking pkg-config (from .../pkg-config_0.22-1_i386.deb) ...
+Selecting previously deselected package libfontconfig1-dev.
+Unpacking libfontconfig1-dev (from .../libfontconfig1-dev_2.5.0-2_i386.deb) ...
+Selecting previously deselected package libxft-dev.
+Unpacking libxft-dev (from .../libxft-dev_2.1.12-2_i386.deb) ...
+Selecting previously deselected package libxi6.
+Unpacking libxi6 (from .../libxi6_2%3a1.1.3-1_i386.deb) ...
+Selecting previously deselected package libxi-dev.
+Unpacking libxi-dev (from .../libxi-dev_2%3a1.1.3-1_i386.deb) ...
+Selecting previously deselected package libxinerama1.
+Unpacking libxinerama1 (from .../libxinerama1_2%3a1.0.3-1_i386.deb) ...
+Selecting previously deselected package x11proto-xinerama-dev.
+Unpacking x11proto-xinerama-dev (from .../x11proto-xinerama-dev_1.1.2-4_all.deb) ...
+Selecting previously deselected package libxinerama-dev.
+Unpacking libxinerama-dev (from .../libxinerama-dev_2%3a1.0.3-1_i386.deb) ...
+Selecting previously deselected package libxrandr2.
+Unpacking libxrandr2 (from .../libxrandr2_2%3a1.2.2-1_i386.deb) ...
+Selecting previously deselected package x11proto-randr-dev.
+Unpacking x11proto-randr-dev (from .../x11proto-randr-dev_1.2.1-2_all.deb) ...
+Selecting previously deselected package libxrandr-dev.
+Unpacking libxrandr-dev (from .../libxrandr-dev_2%3a1.2.2-1_i386.deb) ...
+Selecting previously deselected package adduser.
+Unpacking adduser (from .../archives/adduser_3.106_all.deb) ...
+Selecting previously deselected package bsdmainutils.
+Unpacking bsdmainutils (from .../bsdmainutils_6.1.10_i386.deb) ...
+Selecting previously deselected package groff-base.
+Unpacking groff-base (from .../groff-base_1.18.1.1-17_i386.deb) ...
+Selecting previously deselected package net-tools.
+Unpacking net-tools (from .../net-tools_1.60-19_i386.deb) ...
+Selecting previously deselected package ifupdown.
+Unpacking ifupdown (from .../ifupdown_0.6.8_i386.deb) ...
+Selecting previously deselected package libncursesw5.
+Unpacking libncursesw5 (from .../libncursesw5_5.6+20080203-1_i386.deb) ...
+Selecting previously deselected package libssl0.9.8.
+Unpacking libssl0.9.8 (from .../libssl0.9.8_0.9.8g-7_i386.deb) ...
+Selecting previously deselected package man-db.
+Unpacking man-db (from .../man-db_2.5.1-2_i386.deb) ...
+Selecting previously deselected package netbase.
+Unpacking netbase (from .../archives/netbase_4.30_all.deb) ...
+Selecting previously deselected package gettext-base.
+Unpacking gettext-base (from .../gettext-base_0.17-2_i386.deb) ...
+Selecting previously deselected package libdb4.5.
+Unpacking libdb4.5 (from .../libdb4.5_4.5.20-11_i386.deb) ...
+Selecting previously deselected package libkeyutils1.
+Unpacking libkeyutils1 (from .../libkeyutils1_1.2-6_i386.deb) ...
+Selecting previously deselected package libkrb53.
+Unpacking libkrb53 (from .../libkrb53_1.6.dfsg.3~beta1-3_i386.deb) ...
+Selecting previously deselected package m4.
+Unpacking m4 (from .../archives/m4_1.4.10-1_i386.deb) ...
+Selecting previously deselected package mime-support.
+Unpacking mime-support (from .../mime-support_3.40-1.1_all.deb) ...
+Selecting previously deselected package python2.4-minimal.
+Unpacking python2.4-minimal (from .../python2.4-minimal_2.4.4-8_i386.deb) ...
+Selecting previously deselected package python2.4.
+Unpacking python2.4 (from .../python2.4_2.4.4-8_i386.deb) ...
+Selecting previously deselected package python-minimal.
+Unpacking python-minimal (from .../python-minimal_2.4.4-6_all.deb) ...
+Selecting previously deselected package python.
+Unpacking python (from .../python_2.4.4-6_all.deb) ...
+Selecting previously deselected package python-support.
+Unpacking python-support (from .../python-support_0.7.6_all.deb) ...
+Selecting previously deselected package sharutils.
+Unpacking sharutils (from .../sharutils_1%3a4.6.3-1_i386.deb) ...
+Selecting previously deselected package autoconf.
+Unpacking autoconf (from .../autoconf_2.61-6_all.deb) ...
+Selecting previously deselected package autotools-dev.
+Unpacking autotools-dev (from .../autotools-dev_20080123.1_all.deb) ...
+Selecting previously deselected package automake1.7.
+Unpacking automake1.7 (from .../automake1.7_1.7.9-9_all.deb) ...
+Selecting previously deselected package html2text.
+Unpacking html2text (from .../html2text_1.3.2a-3_i386.deb) ...
+Selecting previously deselected package libgomp1.
+Unpacking libgomp1 (from .../libgomp1_4.3.0~rc2-1_i386.deb) ...
+Selecting previously deselected package gettext.
+Unpacking gettext (from .../gettext_0.17-2_i386.deb) ...
+Selecting previously deselected package intltool-debian.
+Unpacking intltool-debian (from .../intltool-debian_0.35.0+20060710.1_all.deb) ...
+Selecting previously deselected package po-debconf.
+Unpacking po-debconf (from .../po-debconf_1.0.12_all.deb) ...
+Selecting previously deselected package debhelper.
+Unpacking debhelper (from .../debhelper_6.0.7_all.deb) ...
+Selecting previously deselected package cdbs.
+Unpacking cdbs (from .../archives/cdbs_0.4.51_all.deb) ...
+Selecting previously deselected package cli-common.
+Unpacking cli-common (from .../cli-common_0.5.6_all.deb) ...
+Selecting previously deselected package libhtml-tagset-perl.
+Unpacking libhtml-tagset-perl (from .../libhtml-tagset-perl_3.10-2_all.deb) ...
+Selecting previously deselected package liburi-perl.
+Unpacking liburi-perl (from .../liburi-perl_1.35.dfsg.1-1_all.deb) ...
+Selecting previously deselected package libhtml-parser-perl.
+Unpacking libhtml-parser-perl (from .../libhtml-parser-perl_3.56-1_i386.deb) ...
+Selecting previously deselected package libhtml-tree-perl.
+Unpacking libhtml-tree-perl (from .../libhtml-tree-perl_3.23-1_all.deb) ...
+Selecting previously deselected package libwww-perl.
+Unpacking libwww-perl (from .../libwww-perl_5.808-1_all.deb) ...
+Selecting previously deselected package libxml-parser-perl.
+Unpacking libxml-parser-perl (from .../libxml-parser-perl_2.36-1_i386.deb) ...
+Selecting previously deselected package libxml-perl.
+Unpacking libxml-perl (from .../libxml-perl_0.08-1_all.deb) ...
+Selecting previously deselected package libxml-regexp-perl.
+Unpacking libxml-regexp-perl (from .../libxml-regexp-perl_0.03-7_all.deb) ...
+Selecting previously deselected package libxml-dom-perl.
+Unpacking libxml-dom-perl (from .../libxml-dom-perl_1.44-1_all.deb) ...
+Selecting previously deselected package mono-common.
+Unpacking mono-common (from .../mono-common_1.2.6+dfsg-6_i386.deb) ...
+Selecting previously deselected package mono-jit.
+Unpacking mono-jit (from .../mono-jit_1.2.6+dfsg-6_i386.deb) ...
+Selecting previously deselected package libmono-corlib1.0-cil.
+Unpacking libmono-corlib1.0-cil (from .../libmono-corlib1.0-cil_1.2.6+dfsg-6_all.deb) ...
+Selecting previously deselected package libmono-peapi1.0-cil.
+Unpacking libmono-peapi1.0-cil (from .../libmono-peapi1.0-cil_1.2.6+dfsg-6_all.deb) ...
+Selecting previously deselected package libmono-system1.0-cil.
+Unpacking libmono-system1.0-cil (from .../libmono-system1.0-cil_1.2.6+dfsg-6_all.deb) ...
+Selecting previously deselected package libmono-relaxng1.0-cil.
+Unpacking libmono-relaxng1.0-cil (from .../libmono-relaxng1.0-cil_1.2.6+dfsg-6_all.deb) ...
+Selecting previously deselected package libmono-security1.0-cil.
+Unpacking libmono-security1.0-cil (from .../libmono-security1.0-cil_1.2.6+dfsg-6_all.deb) ...
+Selecting previously deselected package libmono-sharpzip0.84-cil.
+Unpacking libmono-sharpzip0.84-cil (from .../libmono-sharpzip0.84-cil_1.2.6+dfsg-6_all.deb) ...
+Selecting previously deselected package libmono-data-tds1.0-cil.
+Unpacking libmono-data-tds1.0-cil (from .../libmono-data-tds1.0-cil_1.2.6+dfsg-6_all.deb) ...
+Selecting previously deselected package libmono-system-data1.0-cil.
+Unpacking libmono-system-data1.0-cil (from .../libmono-system-data1.0-cil_1.2.6+dfsg-6_all.deb) ...
+Selecting previously deselected package libmono-system-web1.0-cil.
+Unpacking libmono-system-web1.0-cil (from .../libmono-system-web1.0-cil_1.2.6+dfsg-6_all.deb) ...
+Selecting previously deselected package libmono-system-runtime1.0-cil.
+Unpacking libmono-system-runtime1.0-cil (from .../libmono-system-runtime1.0-cil_1.2.6+dfsg-6_all.deb) ...
+Selecting previously deselected package libmono0.
+Unpacking libmono0 (from .../libmono0_1.2.6+dfsg-6_i386.deb) ...
+Selecting previously deselected package mono-gac.
+Unpacking mono-gac (from .../mono-gac_1.2.6+dfsg-6_all.deb) ...
+Selecting previously deselected package mono-runtime.
+Unpacking mono-runtime (from .../mono-runtime_1.2.6+dfsg-6_i386.deb) ...
+Selecting previously deselected package libmono1.0-cil.
+Unpacking libmono1.0-cil (from .../libmono1.0-cil_1.2.6+dfsg-6_all.deb) ...
+Selecting previously deselected package mono-1.0-devel.
+Unpacking mono-1.0-devel (from .../mono-1.0-devel_1.2.6+dfsg-6_all.deb) ...
+Selecting previously deselected package mono-utils.
+Unpacking mono-utils (from .../mono-utils_1.2.6+dfsg-6_i386.deb) ...
+Selecting previously deselected package cli-common-dev.
+Unpacking cli-common-dev (from .../cli-common-dev_0.5.6_all.deb) ...
+Selecting previously deselected package libdbus-1-3.
+Unpacking libdbus-1-3 (from .../libdbus-1-3_1.1.20-1_i386.deb) ...
+Selecting previously deselected package dbus.
+Unpacking dbus (from .../dbus_1.1.20-1_i386.deb) ...
+Selecting previously deselected package sgml-base.
+Unpacking sgml-base (from .../sgml-base_1.26_all.deb) ...
+Selecting previously deselected package xml-core.
+Unpacking xml-core (from .../archives/xml-core_0.11_all.deb) ...
+Selecting previously deselected package sgml-data.
+Unpacking sgml-data (from .../sgml-data_2.0.3_all.deb) ...
+Selecting previously deselected package docbook-xml.
+Unpacking docbook-xml (from .../docbook-xml_4.5-5_all.deb) ...
+Selecting previously deselected package esound-common.
+Unpacking esound-common (from .../esound-common_0.2.36-3_all.deb) ...
+Selecting previously deselected package fontconfig.
+Unpacking fontconfig (from .../fontconfig_2.5.0-2_i386.deb) ...
+Selecting previously deselected package gconf2-common.
+Unpacking gconf2-common (from .../gconf2-common_2.20.1-3_all.deb) ...
+Selecting previously deselected package libidl0.
+Unpacking libidl0 (from .../libidl0_0.8.9-0.1_i386.deb) ...
+Selecting previously deselected package liborbit2.
+Unpacking liborbit2 (from .../liborbit2_1%3a2.14.10-0.1_i386.deb) ...
+Selecting previously deselected package libxml2.
+Unpacking libxml2 (from .../libxml2_2.6.31.dfsg-2_i386.deb) ...
+Selecting previously deselected package libgconf2-4.
+Unpacking libgconf2-4 (from .../libgconf2-4_2.20.1-3_i386.deb) ...
+Selecting previously deselected package psmisc.
+Unpacking psmisc (from .../psmisc_22.6-1_i386.deb) ...
+Selecting previously deselected package gconf2.
+Unpacking gconf2 (from .../gconf2_2.20.1-3_i386.deb) ...
+Selecting previously deselected package libxml2-utils.
+Unpacking libxml2-utils (from .../libxml2-utils_2.6.31.dfsg-2_i386.deb) ...
+Selecting previously deselected package python-libxml2.
+Unpacking python-libxml2 (from .../python-libxml2_2.6.31.dfsg-2_i386.deb) ...
+Selecting previously deselected package libxslt1.1.
+Unpacking libxslt1.1 (from .../libxslt1.1_1.1.22-1_i386.deb) ...
+Selecting previously deselected package xsltproc.
+Unpacking xsltproc (from .../xsltproc_1.1.22-1_i386.deb) ...
+Selecting previously deselected package gnome-doc-utils.
+Unpacking gnome-doc-utils (from .../gnome-doc-utils_0.12.1-1_all.deb) ...
+Selecting previously deselected package gnome-mime-data.
+Unpacking gnome-mime-data (from .../gnome-mime-data_2.18.0-1_all.deb) ...
+Selecting previously deselected package intltool.
+Unpacking intltool (from .../intltool_0.37.1-1_all.deb) ...
+Selecting previously deselected package libart-2.0-2.
+Unpacking libart-2.0-2 (from .../libart-2.0-2_2.3.20-1_i386.deb) ...
+Selecting previously deselected package libart-2.0-dev.
+Unpacking libart-2.0-dev (from .../libart-2.0-dev_2.3.20-1_i386.deb) ...
+Selecting previously deselected package libglib2.0-cil.
+Unpacking libglib2.0-cil (from .../libglib2.0-cil_2.10.4-2_i386.deb) ...
+Selecting previously deselected package libart2.0-cil.
+Unpacking libart2.0-cil (from .../libart2.0-cil_2.16.1-2_i386.deb) ...
+Selecting previously deselected package libaspell15.
+Unpacking libaspell15 (from .../libaspell15_0.60.5-2_i386.deb) ...
+Selecting previously deselected package libaspell-dev.
+Unpacking libaspell-dev (from .../libaspell-dev_0.60.5-2_i386.deb) ...
+Selecting previously deselected package libatk1.0-0.
+Unpacking libatk1.0-0 (from .../libatk1.0-0_1.20.0-1_i386.deb) ...
+Selecting previously deselected package libglib2.0-dev.
+Unpacking libglib2.0-dev (from .../libglib2.0-dev_2.14.6-1_i386.deb) ...
+Selecting previously deselected package libatk1.0-dev.
+Unpacking libatk1.0-dev (from .../libatk1.0-dev_1.20.0-1_i386.deb) ...
+Selecting previously deselected package libaudiofile0.
+Unpacking libaudiofile0 (from .../libaudiofile0_0.2.6-7_i386.deb) ...
+Selecting previously deselected package libaudiofile-dev.
+Unpacking libaudiofile-dev (from .../libaudiofile-dev_0.2.6-7_i386.deb) ...
+Selecting previously deselected package libavahi-common-data.
+Unpacking libavahi-common-data (from .../libavahi-common-data_0.6.22-2_i386.deb) ...
+Selecting previously deselected package libavahi-common3.
+Unpacking libavahi-common3 (from .../libavahi-common3_0.6.22-2_i386.deb) ...
+Selecting previously deselected package libavahi-client3.
+Unpacking libavahi-client3 (from .../libavahi-client3_0.6.22-2_i386.deb) ...
+Selecting previously deselected package libavahi-common-dev.
+Unpacking libavahi-common-dev (from .../libavahi-common-dev_0.6.22-2_i386.deb) ...
+Selecting previously deselected package libdbus-1-dev.
+Unpacking libdbus-1-dev (from .../libdbus-1-dev_1.1.20-1_i386.deb) ...
+Selecting previously deselected package libavahi-client-dev.
+Unpacking libavahi-client-dev (from .../libavahi-client-dev_0.6.22-2_i386.deb) ...
+Selecting previously deselected package libavahi-glib1.
+Unpacking libavahi-glib1 (from .../libavahi-glib1_0.6.22-2_i386.deb) ...
+Selecting previously deselected package libavahi-glib-dev.
+Unpacking libavahi-glib-dev (from .../libavahi-glib-dev_0.6.22-2_i386.deb) ...
+Selecting previously deselected package libbonobo2-common.
+Unpacking libbonobo2-common (from .../libbonobo2-common_2.21.90-1_all.deb) ...
+Selecting previously deselected package libbonobo2-0.
+Unpacking libbonobo2-0 (from .../libbonobo2-0_2.21.90-1_i386.deb) ...
+Selecting previously deselected package libidl-dev.
+Unpacking libidl-dev (from .../libidl-dev_0.8.9-0.1_i386.deb) ...
+Selecting previously deselected package liborbit2-dev.
+Unpacking liborbit2-dev (from .../liborbit2-dev_1%3a2.14.10-0.1_i386.deb) ...
+Selecting previously deselected package libpopt-dev.
+Unpacking libpopt-dev (from .../libpopt-dev_1.10-3_i386.deb) ...
+Selecting previously deselected package libbonobo2-dev.
+Unpacking libbonobo2-dev (from .../libbonobo2-dev_2.21.90-1_i386.deb) ...
+Selecting previously deselected package libbonoboui2-common.
+Unpacking libbonoboui2-common (from .../libbonoboui2-common_2.21.90-1_all.deb) ...
+Selecting previously deselected package libpng12-0.
+Unpacking libpng12-0 (from .../libpng12-0_1.2.15~beta5-3_i386.deb) ...
+Selecting previously deselected package libcairo2.
+Unpacking libcairo2 (from .../libcairo2_1.4.14-1_i386.deb) ...
+Selecting previously deselected package libcupsys2.
+Unpacking libcupsys2 (from .../libcupsys2_1.3.6-1_i386.deb) ...
+Selecting previously deselected package libgtk2.0-common.
+Unpacking libgtk2.0-common (from .../libgtk2.0-common_2.12.8-1_all.deb) ...
+Selecting previously deselected package libjpeg62.
+Unpacking libjpeg62 (from .../libjpeg62_6b-14_i386.deb) ...
+Selecting previously deselected package libdatrie0.
+Unpacking libdatrie0 (from .../libdatrie0_0.1.3-1_i386.deb) ...
+Selecting previously deselected package libpango1.0-common.
+Unpacking libpango1.0-common (from .../libpango1.0-common_1.18.4-1_all.deb) ...
+Selecting previously deselected package libthai-data.
+Unpacking libthai-data (from .../libthai-data_0.1.9-3_all.deb) ...
+Selecting previously deselected package libthai0.
+Unpacking libthai0 (from .../libthai0_0.1.9-3_i386.deb) ...
+Selecting previously deselected package libpango1.0-0.
+Unpacking libpango1.0-0 (from .../libpango1.0-0_1.18.4-1_i386.deb) ...
+Selecting previously deselected package libtiff4.
+Unpacking libtiff4 (from .../libtiff4_3.8.2-7_i386.deb) ...
+Selecting previously deselected package libgtk2.0-0.
+Unpacking libgtk2.0-0 (from .../libgtk2.0-0_2.12.8-1_i386.deb) ...
+Selecting previously deselected package libglade2-0.
+Unpacking libglade2-0 (from .../libglade2-0_1%3a2.6.2-1_i386.deb) ...
+Selecting previously deselected package libesd0.
+Unpacking libesd0 (from .../libesd0_0.2.36-3_i386.deb) ...
+Selecting previously deselected package libdbus-glib-1-2.
+Unpacking libdbus-glib-1-2 (from .../libdbus-glib-1-2_0.74-1_i386.deb) ...
+Selecting previously deselected package libfam0.
+Unpacking libfam0 (from .../libfam0_2.7.0-13.1_i386.deb) ...
+Selecting previously deselected package shared-mime-info.
+Unpacking shared-mime-info (from .../shared-mime-info_0.23-4_i386.deb) ...
+Selecting previously deselected package libgnomevfs2-common.
+Unpacking libgnomevfs2-common (from .../libgnomevfs2-common_1%3a2.20.1-2_all.deb) ...
+Selecting previously deselected package libhal1.
+Unpacking libhal1 (from .../libhal1_0.5.10+git20080301-1_i386.deb) ...
+Selecting previously deselected package libhal-storage1.
+Unpacking libhal-storage1 (from .../libhal-storage1_0.5.10+git20080301-1_i386.deb) ...
+Selecting previously deselected package libgnomevfs2-0.
+Unpacking libgnomevfs2-0 (from .../libgnomevfs2-0_1%3a2.20.1-2_i386.deb) ...
+Selecting previously deselected package libgnome2-common.
+Unpacking libgnome2-common (from .../libgnome2-common_2.20.1.1-1_all.deb) ...
+Selecting previously deselected package libgnome2-0.
+Unpacking libgnome2-0 (from .../libgnome2-0_2.20.1.1-1_i386.deb) ...
+Selecting previously deselected package libgail18.
+Unpacking libgail18 (from .../libgail18_1.20.2-1_i386.deb) ...
+Selecting previously deselected package libgail-common.
+Unpacking libgail-common (from .../libgail-common_1.20.2-1_i386.deb) ...
+Selecting previously deselected package libgnomecanvas2-common.
+Unpacking libgnomecanvas2-common (from .../libgnomecanvas2-common_2.20.1.1-1_all.deb) ...
+Selecting previously deselected package libgnomecanvas2-0.
+Unpacking libgnomecanvas2-0 (from .../libgnomecanvas2-0_2.20.1.1-1_i386.deb) ...
+Selecting previously deselected package libbonoboui2-0.
+Unpacking libbonoboui2-0 (from .../libbonoboui2-0_2.21.90-1_i386.deb) ...
+Selecting previously deselected package libpng12-dev.
+Unpacking libpng12-dev (from .../libpng12-dev_1.2.15~beta5-3_i386.deb) ...
+Selecting previously deselected package libcairo2-dev.
+Unpacking libcairo2-dev (from .../libcairo2-dev_1.4.14-1_i386.deb) ...
+Selecting previously deselected package libpango1.0-dev.
+Unpacking libpango1.0-dev (from .../libpango1.0-dev_1.18.4-1_i386.deb) ...
+Selecting previously deselected package libgtk2.0-dev.
+Unpacking libgtk2.0-dev (from .../libgtk2.0-dev_2.12.8-1_i386.deb) ...
+Selecting previously deselected package libxml2-dev.
+Unpacking libxml2-dev (from .../libxml2-dev_2.6.31.dfsg-2_i386.deb) ...
+Selecting previously deselected package libglade2-dev.
+Unpacking libglade2-dev (from .../libglade2-dev_1%3a2.6.2-1_i386.deb) ...
+Selecting previously deselected package libgconf2-dev.
+Unpacking libgconf2-dev (from .../libgconf2-dev_2.20.1-3_i386.deb) ...
+Selecting previously deselected package libgpg-error-dev.
+Unpacking libgpg-error-dev (from .../libgpg-error-dev_1.4-2_i386.deb) ...
+Selecting previously deselected package libgcrypt11-dev.
+Unpacking libgcrypt11-dev (from .../libgcrypt11-dev_1.4.0-3_i386.deb) ...
+Selecting previously deselected package libopencdk10-dev.
+Unpacking libopencdk10-dev (from .../libopencdk10-dev_0.6.6-1_i386.deb) ...
+Selecting previously deselected package libtasn1-3-dev.
+Unpacking libtasn1-3-dev (from .../libtasn1-3-dev_1.3-1_i386.deb) ...
+Selecting previously deselected package libgnutls-dev.
+Unpacking libgnutls-dev (from .../libgnutls-dev_2.2.2-1_i386.deb) ...
+Selecting previously deselected package libsepol1-dev.
+Unpacking libsepol1-dev (from .../libsepol1-dev_2.0.11-1_i386.deb) ...
+Selecting previously deselected package libselinux1-dev.
+Unpacking libselinux1-dev (from .../libselinux1-dev_2.0.35-1_i386.deb) ...
+Selecting previously deselected package libgnomevfs2-dev.
+Unpacking libgnomevfs2-dev (from .../libgnomevfs2-dev_1%3a2.20.1-2_i386.deb) ...
+Selecting previously deselected package libesd0-dev.
+Unpacking libesd0-dev (from .../libesd0-dev_0.2.36-3_i386.deb) ...
+Selecting previously deselected package libgnome2-dev.
+Unpacking libgnome2-dev (from .../libgnome2-dev_2.20.1.1-1_i386.deb) ...
+Selecting previously deselected package libgail-dev.
+Unpacking libgail-dev (from .../libgail-dev_1.20.2-1_i386.deb) ...
+Selecting previously deselected package libgnomecanvas2-dev.
+Unpacking libgnomecanvas2-dev (from .../libgnomecanvas2-dev_2.20.1.1-1_i386.deb) ...
+Selecting previously deselected package libbonoboui2-dev.
+Unpacking libbonoboui2-dev (from .../libbonoboui2-dev_2.21.90-1_i386.deb) ...
+Selecting previously deselected package libdbus-glib-1-dev.
+Unpacking libdbus-glib-1-dev (from .../libdbus-glib-1-dev_0.74-1_i386.deb) ...
+Selecting previously deselected package libgconf2.0-cil.
+Unpacking libgconf2.0-cil (from .../libgconf2.0-cil_2.16.1-2_all.deb) ...
+Selecting previously deselected package libmono-cairo1.0-cil.
+Unpacking libmono-cairo1.0-cil (from .../libmono-cairo1.0-cil_1.2.6+dfsg-6_all.deb) ...
+Selecting previously deselected package libgtk2.0-cil.
+Unpacking libgtk2.0-cil (from .../libgtk2.0-cil_2.10.4-2_i386.deb) ...
+Selecting previously deselected package libglade2.0-cil.
+Unpacking libglade2.0-cil (from .../libglade2.0-cil_2.10.4-2_i386.deb) ...
+Selecting previously deselected package libgmime-2.0-2.
+Unpacking libgmime-2.0-2 (from .../libgmime-2.0-2_2.2.17-1_i386.deb) ...
+Selecting previously deselected package libgmime2.2-cil.
+Unpacking libgmime2.2-cil (from .../libgmime2.2-cil_2.2.17-1_all.deb) ...
+Selecting previously deselected package libgnome-keyring0.
+Unpacking libgnome-keyring0 (from .../libgnome-keyring0_2.20.3-1_i386.deb) ...
+Selecting previously deselected package libhal-dev.
+Unpacking libhal-dev (from .../libhal-dev_0.5.10+git20080301-1_i386.deb) ...
+Selecting previously deselected package libhal-storage-dev.
+Unpacking libhal-storage-dev (from .../libhal-storage-dev_0.5.10+git20080301-1_i386.deb) ...
+Selecting previously deselected package libgnome-keyring-dev.
+Unpacking libgnome-keyring-dev (from .../libgnome-keyring-dev_2.20.3-1_i386.deb) ...
+Selecting previously deselected package libgnome-vfs2.0-cil.
+Unpacking libgnome-vfs2.0-cil (from .../libgnome-vfs2.0-cil_2.16.1-2_i386.deb) ...
+Selecting previously deselected package libgnomecups1.0-1.
+Unpacking libgnomecups1.0-1 (from .../libgnomecups1.0-1_0.2.3-1_i386.deb) ...
+Selecting previously deselected package libgnomeprint2.2-data.
+Unpacking libgnomeprint2.2-data (from .../libgnomeprint2.2-data_2.18.4-1_all.deb) ...
+Selecting previously deselected package libgnomeprint2.2-0.
+Unpacking libgnomeprint2.2-0 (from .../libgnomeprint2.2-0_2.18.4-1_i386.deb) ...
+Selecting previously deselected package libgnomeprintui2.2-common.
+Unpacking libgnomeprintui2.2-common (from .../libgnomeprintui2.2-common_2.18.2-1_all.deb) ...
+Selecting previously deselected package libgnomeprintui2.2-0.
+Unpacking libgnomeprintui2.2-0 (from .../libgnomeprintui2.2-0_2.18.2-1_i386.deb) ...
+Selecting previously deselected package libgnomeui-common.
+Unpacking libgnomeui-common (from .../libgnomeui-common_2.20.1.1-1_all.deb) ...
+Selecting previously deselected package libgnomeui-0.
+Unpacking libgnomeui-0 (from .../libgnomeui-0_2.20.1.1-1_i386.deb) ...
+Selecting previously deselected package libpanel-applet2-0.
+Unpacking libpanel-applet2-0 (from .../libpanel-applet2-0_2.20.3-3_i386.deb) ...
+Selecting previously deselected package libgnome2.0-cil.
+Unpacking libgnome2.0-cil (from .../libgnome2.0-cil_2.16.1-2_i386.deb) ...
+Selecting previously deselected package libgnomeprint2.2-dev.
+Unpacking libgnomeprint2.2-dev (from .../libgnomeprint2.2-dev_2.18.4-1_i386.deb) ...
+Selecting previously deselected package libgnomeprintui2.2-dev.
+Unpacking libgnomeprintui2.2-dev (from .../libgnomeprintui2.2-dev_2.18.2-1_i386.deb) ...
+Selecting previously deselected package libjpeg62-dev.
+Unpacking libjpeg62-dev (from .../libjpeg62-dev_6b-14_i386.deb) ...
+Selecting previously deselected package libgnomeui-dev.
+Unpacking libgnomeui-dev (from .../libgnomeui-dev_2.20.1.1-1_i386.deb) ...
+Selecting previously deselected package libgtkspell0.
+Unpacking libgtkspell0 (from .../libgtkspell0_2.0.10-4_i386.deb) ...
+Selecting previously deselected package libgtkspell-dev.
+Unpacking libgtkspell-dev (from .../libgtkspell-dev_2.0.10-4_i386.deb) ...
+Selecting previously deselected package libmono-addins0.2-cil.
+Unpacking libmono-addins0.2-cil (from .../libmono-addins0.2-cil_0.3.1-3_all.deb) ...
+Selecting previously deselected package libmono-addins-gui0.2-cil.
+Unpacking libmono-addins-gui0.2-cil (from .../libmono-addins-gui0.2-cil_0.3.1-3_all.deb) ...
+Selecting previously deselected package libmono-corlib2.0-cil.
+Unpacking libmono-corlib2.0-cil (from .../libmono-corlib2.0-cil_1.2.6+dfsg-6_all.deb) ...
+Selecting previously deselected package libmono-cairo2.0-cil.
+Unpacking libmono-cairo2.0-cil (from .../libmono-cairo2.0-cil_1.2.6+dfsg-6_all.deb) ...
+Selecting previously deselected package libmono-system2.0-cil.
+Unpacking libmono-system2.0-cil (from .../libmono-system2.0-cil_1.2.6+dfsg-6_all.deb) ...
+Selecting previously deselected package libmono-security2.0-cil.
+Unpacking libmono-security2.0-cil (from .../libmono-security2.0-cil_1.2.6+dfsg-6_all.deb) ...
+Selecting previously deselected package libmono-data-tds2.0-cil.
+Unpacking libmono-data-tds2.0-cil (from .../libmono-data-tds2.0-cil_1.2.6+dfsg-6_all.deb) ...
+Selecting previously deselected package libmono-dev.
+Unpacking libmono-dev (from .../libmono-dev_1.2.6+dfsg-6_i386.deb) ...
+Selecting previously deselected package libmono-sharpzip2.84-cil.
+Unpacking libmono-sharpzip2.84-cil (from .../libmono-sharpzip2.84-cil_1.2.6+dfsg-6_all.deb) ...
+Selecting previously deselected package libmono-system-data2.0-cil.
+Unpacking libmono-system-data2.0-cil (from .../libmono-system-data2.0-cil_1.2.6+dfsg-6_all.deb) ...
+Selecting previously deselected package libmono-system-web2.0-cil.
+Unpacking libmono-system-web2.0-cil (from .../libmono-system-web2.0-cil_1.2.6+dfsg-6_all.deb) ...
+Selecting previously deselected package libmono2.0-cil.
+Unpacking libmono2.0-cil (from .../libmono2.0-cil_1.2.6+dfsg-6_all.deb) ...
+Selecting previously deselected package libndesk-dbus1.0-cil.
+Unpacking libndesk-dbus1.0-cil (from .../libndesk-dbus1.0-cil_0.6.0-1_all.deb) ...
+Selecting previously deselected package libndesk-dbus-glib1.0-cil.
+Unpacking libndesk-dbus-glib1.0-cil (from .../libndesk-dbus-glib1.0-cil_0.4.1-1_all.deb) ...
+Selecting previously deselected package libpanel-applet2-dev.
+Unpacking libpanel-applet2-dev (from .../libpanel-applet2-dev_2.20.3-3_i386.deb) ...
+Selecting previously deselected package libscrollkeeper0.
+Unpacking libscrollkeeper0 (from .../libscrollkeeper0_0.3.14-16_i386.deb) ...
+Selecting previously deselected package mono-gmcs.
+Unpacking mono-gmcs (from .../mono-gmcs_1.2.6+dfsg-6_all.deb) ...
+Selecting previously deselected package scrollkeeper.
+Unpacking scrollkeeper (from .../scrollkeeper_0.3.14-16_i386.deb) ...
+Setting up libice6 (2:1.0.4-1) ...
+Setting up x11proto-core-dev (7.0.12-1) ...
+Setting up libice-dev (2:1.0.4-1) ...
+Setting up libsm6 (2:1.0.3-1+b1) ...
+Setting up libsm-dev (2:1.0.3-1+b1) ...
+Setting up libxau6 (1:1.0.3-2) ...
+Setting up libxdmcp6 (1:1.0.2-2) ...
+Setting up libx11-data (2:1.0.3-7) ...
+Setting up libx11-6 (2:1.0.3-7) ...
+Setting up libxau-dev (1:1.0.3-2) ...
+Setting up libxdmcp-dev (1:1.0.2-2) ...
+Setting up libxext6 (2:1.0.4-1) ...
+Setting up x11proto-input-dev (1.4.3-1) ...
+Setting up x11proto-xext-dev (7.0.2-5) ...
+Setting up x11proto-kb-dev (1.0.3-2) ...
+Setting up xtrans-dev (1.1-1) ...
+Setting up libxfixes3 (1:4.0.3-2) ...
+Setting up libxcomposite1 (1:0.4.0-1) ...
+Setting up x11proto-fixes-dev (4.0-2) ...
+Setting up x11proto-composite-dev (1:0.4-2) ...
+Setting up libxrender1 (1:0.9.4-1) ...
+Setting up libxcursor1 (1:1.1.9-1) ...
+Setting up x11proto-render-dev (2:0.9.3-2) ...
+Setting up libxdamage1 (1:1.1.1-3) ...
+Setting up x11proto-damage-dev (1.1.0-2) ...
+Setting up libexpat1 (1.95.8-4) ...
+Setting up libfreetype6 (2.3.5-1+b1) ...
+Setting up ucf (3.005) ...
+Setting up libmagic1 (4.23-2) ...
+Setting up file (4.23-2) ...
+Setting up libnewt0.52 (0.52.2-11.2) ...
+Setting up libpopt0 (1.10-3) ...
+Setting up whiptail (0.52.2-11.2) ...
+Setting up defoma (0.11.10-0.2) ...
+Setting up ttf-dejavu-core (2.23-1) ...
+Setting up ttf-dejavu-extra (2.23-1) ...
+Setting up ttf-dejavu (2.23-1) ...
+Setting up fontconfig-config (2.5.0-2) ...
+Setting up libfontconfig1 (2.5.0-2) ...
+Setting up libxft2 (2.1.12-2) ...
+Setting up libexpat1-dev (1.95.8-4) ...
+Setting up zlib1g-dev (1:1.2.3.3.dfsg-11) ...
+Setting up libfreetype6-dev (2.3.5-1+b1) ...
+Setting up libpcre3 (7.6-2) ...
+Setting up libglib2.0-0 (2.14.6-1) ...
+Setting up pkg-config (0.22-1) ...
+Setting up libfontconfig1-dev (2.5.0-2) ...
+Setting up libxi6 (2:1.1.3-1) ...
+Setting up libxinerama1 (2:1.0.3-1) ...
+Setting up x11proto-xinerama-dev (1.1.2-4) ...
+Setting up libxrandr2 (2:1.2.2-1) ...
+Setting up x11proto-randr-dev (1.2.1-2) ...
+Setting up adduser (3.106) ...
+Setting up bsdmainutils (6.1.10) ...
+Setting up groff-base (1.18.1.1-17) ...
+Setting up net-tools (1.60-19) ...
+Setting up ifupdown (0.6.8) ...
+ifupdown.postinst: Warning: No 'iface lo' definition found in /etc/network/interfaces
+ifupdown.postinst: Warning: No 'auto lo' statement found in /etc/network/interfaces
+Setting up libncursesw5 (5.6+20080203-1) ...
+Setting up libssl0.9.8 (0.9.8g-7) ...
+Setting up man-db (2.5.1-2) ...
+Building database of manual pages ...
+Setting up netbase (4.30) ...
+Setting up gettext-base (0.17-2) ...
+Setting up libdb4.5 (4.5.20-11) ...
+Setting up libkeyutils1 (1.2-6) ...
+Setting up libkrb53 (1.6.dfsg.3~beta1-3) ...
+Setting up m4 (1.4.10-1) ...
+Setting up mime-support (3.40-1.1) ...
+Setting up python2.4-minimal (2.4.4-8) ...
+Setting up python2.4 (2.4.4-8) ...
+Setting up python-minimal (2.4.4-6) ...
+Setting up python (2.4.4-6) ...
+Setting up python-support (0.7.6) ...
+Setting up sharutils (1:4.6.3-1) ...
+Setting up autoconf (2.61-6) ...
+Setting up autotools-dev (20080123.1) ...
+Setting up automake1.7 (1.7.9-9) ...
+Setting up html2text (1.3.2a-3) ...
+Setting up libgomp1 (4.3.0~rc2-1) ...
+Setting up gettext (0.17-2) ...
+Setting up intltool-debian (0.35.0+20060710.1) ...
+Setting up po-debconf (1.0.12) ...
+Setting up debhelper (6.0.7) ...
+Setting up cdbs (0.4.51) ...
+Setting up cli-common (0.5.6) ...
+Setting up libhtml-tagset-perl (3.10-2) ...
+Setting up liburi-perl (1.35.dfsg.1-1) ...
+Setting up libhtml-parser-perl (3.56-1) ...
+Setting up libhtml-tree-perl (3.23-1) ...
+Setting up libwww-perl (5.808-1) ...
+Setting up libxml-parser-perl (2.36-1) ...
+Setting up libxml-perl (0.08-1) ...
+Setting up libxml-regexp-perl (0.03-7) ...
+Setting up libxml-dom-perl (1.44-1) ...
+Setting up mono-common (1.2.6+dfsg-6) ...
+Setting up mono-jit (1.2.6+dfsg-6) ...
+Setting up libmono-corlib1.0-cil (1.2.6+dfsg-6) ...
+Setting up libmono-peapi1.0-cil (1.2.6+dfsg-6) ...
+Setting up libmono-system1.0-cil (1.2.6+dfsg-6) ...
+Setting up libmono-relaxng1.0-cil (1.2.6+dfsg-6) ...
+Setting up libmono-security1.0-cil (1.2.6+dfsg-6) ...
+Setting up libmono-sharpzip0.84-cil (1.2.6+dfsg-6) ...
+Setting up libmono-data-tds1.0-cil (1.2.6+dfsg-6) ...
+Setting up libmono-system-data1.0-cil (1.2.6+dfsg-6) ...
+Setting up libmono-system-web1.0-cil (1.2.6+dfsg-6) ...
+Setting up libmono-system-runtime1.0-cil (1.2.6+dfsg-6) ...
+Setting up libmono0 (1.2.6+dfsg-6) ...
+Setting up mono-gac (1.2.6+dfsg-6) ...
+* Installing 1 assembly from libgmime2.2-cil into Mono
+* Installing 2 assemblies from libmono-addins-gui0.2-cil into Mono
+* Installing 4 assemblies from libmono-addins0.2-cil into Mono
+* Installing 1 assembly from libndesk-dbus-glib1.0-cil into Mono
+* Installing 1 assembly from libndesk-dbus1.0-cil into Mono
+Setting up mono-runtime (1.2.6+dfsg-6) ...
+Setting up libmono1.0-cil (1.2.6+dfsg-6) ...
+Setting up mono-1.0-devel (1.2.6+dfsg-6) ...
+Setting up mono-utils (1.2.6+dfsg-6) ...
+Setting up cli-common-dev (0.5.6) ...
+Setting up libdbus-1-3 (1.1.20-1) ...
+Setting up dbus (1.1.20-1) ...
+Adding system user `messagebus' (UID 105) ...
+Adding new group `messagebus' (GID 106) ...
+Adding new user `messagebus' (UID 105) with group `messagebus' ...
+Not creating home directory `/var/run/dbus'.
+Starting system message bus: dbus.
+Setting up sgml-base (1.26) ...
+Setting up xml-core (0.11) ...
+Setting up sgml-data (2.0.3) ...
+Setting up docbook-xml (4.5-5) ...
+Setting up esound-common (0.2.36-3) ...
+Setting up fontconfig (2.5.0-2) ...
+Updating font configuration of fontconfig...
+Cleaning up category cid..
+Cleaning up category truetype..
+Cleaning up category type1..
+Updating category type1..
+Updating category truetype..
+Updating category cid..
+Updating fontconfig cache for /usr/share/fonts/truetype/ttf-dejavu
+Cleaning up old fontconfig caches... done.
+Regenerating fonts cache... done.
+Setting up gconf2-common (2.20.1-3) ...
+
+Creating config file /etc/gconf/2/path with new version
+Setting up libidl0 (0.8.9-0.1) ...
+Setting up liborbit2 (1:2.14.10-0.1) ...
+Setting up libxml2 (2.6.31.dfsg-2) ...
+Setting up libgconf2-4 (2.20.1-3) ...
+Setting up psmisc (22.6-1) ...
+Setting up gconf2 (2.20.1-3) ...
+Setting up libxml2-utils (2.6.31.dfsg-2) ...
+Setting up python-libxml2 (2.6.31.dfsg-2) ...
+Setting up libxslt1.1 (1.1.22-1) ...
+Setting up xsltproc (1.1.22-1) ...
+Setting up gnome-doc-utils (0.12.1-1) ...
+Setting up gnome-mime-data (2.18.0-1) ...
+Setting up intltool (0.37.1-1) ...
+Setting up libart-2.0-2 (2.3.20-1) ...
+Setting up libart-2.0-dev (2.3.20-1) ...
+Setting up libglib2.0-cil (2.10.4-2) ...
+Setting up libart2.0-cil (2.16.1-2) ...
+Setting up libaspell15 (0.60.5-2) ...
+Setting up libaspell-dev (0.60.5-2) ...
+Setting up libatk1.0-0 (1.20.0-1) ...
+Setting up libglib2.0-dev (2.14.6-1) ...
+Setting up libatk1.0-dev (1.20.0-1) ...
+Setting up libaudiofile0 (0.2.6-7) ...
+Setting up libaudiofile-dev (0.2.6-7) ...
+Setting up libavahi-common-data (0.6.22-2) ...
+Setting up libavahi-common3 (0.6.22-2) ...
+Setting up libavahi-client3 (0.6.22-2) ...
+Setting up libavahi-common-dev (0.6.22-2) ...
+Setting up libdbus-1-dev (1.1.20-1) ...
+Setting up libavahi-client-dev (0.6.22-2) ...
+Setting up libavahi-glib1 (0.6.22-2) ...
+Setting up libavahi-glib-dev (0.6.22-2) ...
+Setting up libbonobo2-common (2.21.90-1) ...
+Setting up libbonobo2-0 (2.21.90-1) ...
+Setting up libidl-dev (0.8.9-0.1) ...
+Setting up liborbit2-dev (1:2.14.10-0.1) ...
+Setting up libpopt-dev (1.10-3) ...
+Setting up libbonobo2-dev (2.21.90-1) ...
+Setting up libbonoboui2-common (2.21.90-1) ...
+Setting up libpng12-0 (1.2.15~beta5-3) ...
+Setting up libcairo2 (1.4.14-1) ...
+Setting up libcupsys2 (1.3.6-1) ...
+Setting up libgtk2.0-common (2.12.8-1) ...
+Setting up libjpeg62 (6b-14) ...
+Setting up libdatrie0 (0.1.3-1) ...
+Setting up libpango1.0-common (1.18.4-1) ...
+I: Purging /etc/pango/pango.modules
+Cleaning up font configuration of pango...
+Updating font configuration of pango...
+Cleaning up category xfont..
+Updating category xfont..
+*** You don't have any defomized font packages.
+*** So we are trying to force to generate pangox.aliases...
+Setting up libthai-data (0.1.9-3) ...
+Setting up libthai0 (0.1.9-3) ...
+Setting up libpango1.0-0 (1.18.4-1) ...
+Setting up libtiff4 (3.8.2-7) ...
+Setting up libgtk2.0-0 (2.12.8-1) ...
+Removing generated module files coming from the previous Gtk binary version...
+Setting up libglade2-0 (1:2.6.2-1) ...
+Setting up libesd0 (0.2.36-3) ...
+Setting up libdbus-glib-1-2 (0.74-1) ...
+Setting up libfam0 (2.7.0-13.1) ...
+Setting up shared-mime-info (0.23-4) ...
+Setting up libgnomevfs2-common (1:2.20.1-2) ...
+Setting up libhal1 (0.5.10+git20080301-1) ...
+Setting up libhal-storage1 (0.5.10+git20080301-1) ...
+Setting up libgnomevfs2-0 (1:2.20.1-2) ...
+Setting up libgnome2-common (2.20.1.1-1) ...
+Setting up libgnome2-0 (2.20.1.1-1) ...
+Setting up libgail18 (1.20.2-1) ...
+Setting up libgail-common (1.20.2-1) ...
+Setting up libgnomecanvas2-common (2.20.1.1-1) ...
+Setting up libgnomecanvas2-0 (2.20.1.1-1) ...
+Setting up libbonoboui2-0 (2.21.90-1) ...
+Setting up libpng12-dev (1.2.15~beta5-3) ...
+Setting up libxml2-dev (2.6.31.dfsg-2) ...
+Setting up libgconf2-dev (2.20.1-3) ...
+Setting up libgpg-error-dev (1.4-2) ...
+Setting up libgcrypt11-dev (1.4.0-3) ...
+Setting up libopencdk10-dev (0.6.6-1) ...
+Setting up libtasn1-3-dev (1.3-1) ...
+Setting up libgnutls-dev (2.2.2-1) ...
+Setting up libsepol1-dev (2.0.11-1) ...
+Setting up libselinux1-dev (2.0.35-1) ...
+Setting up libgnomevfs2-dev (1:2.20.1-2) ...
+Setting up libesd0-dev (0.2.36-3) ...
+Setting up libgnome2-dev (2.20.1.1-1) ...
+Setting up libdbus-glib-1-dev (0.74-1) ...
+Setting up libgconf2.0-cil (2.16.1-2) ...
+Setting up libmono-cairo1.0-cil (1.2.6+dfsg-6) ...
+Setting up libgtk2.0-cil (2.10.4-2) ...
+Setting up libglade2.0-cil (2.10.4-2) ...
+Setting up libgmime-2.0-2 (2.2.17-1) ...
+Setting up libgmime2.2-cil (2.2.17-1) ...
+* Installing 1 assembly from libgmime2.2-cil into Mono
+Setting up libgnome-keyring0 (2.20.3-1) ...
+Setting up libhal-dev (0.5.10+git20080301-1) ...
+Setting up libhal-storage-dev (0.5.10+git20080301-1) ...
+Setting up libgnome-keyring-dev (2.20.3-1) ...
+Setting up libgnome-vfs2.0-cil (2.16.1-2) ...
+Setting up libgnomecups1.0-1 (0.2.3-1) ...
+Setting up libgnomeprint2.2-data (2.18.4-1) ...
+Setting up libgnomeprint2.2-0 (2.18.4-1) ...
+Setting up libgnomeprintui2.2-common (2.18.2-1) ...
+Setting up libgnomeprintui2.2-0 (2.18.2-1) ...
+Setting up libgnomeui-common (2.20.1.1-1) ...
+Setting up libgnomeui-0 (2.20.1.1-1) ...
+Setting up libpanel-applet2-0 (2.20.3-3) ...
+Setting up libgnome2.0-cil (2.16.1-2) ...
+Setting up libjpeg62-dev (6b-14) ...
+Setting up libgtkspell0 (2.0.10-4) ...
+Setting up libmono-addins0.2-cil (0.3.1-3) ...
+* Installing 4 assemblies from libmono-addins0.2-cil into Mono
+Setting up libmono-addins-gui0.2-cil (0.3.1-3) ...
+* Installing 2 assemblies from libmono-addins-gui0.2-cil into Mono
+Setting up libmono-corlib2.0-cil (1.2.6+dfsg-6) ...
+Setting up libmono-cairo2.0-cil (1.2.6+dfsg-6) ...
+Setting up libmono-dev (1.2.6+dfsg-6) ...
+Setting up libscrollkeeper0 (0.3.14-16) ...
+Setting up scrollkeeper (0.3.14-16) ...
+Rebuilding the database. This may take some time.
+Setting up libmono-system2.0-cil (1.2.6+dfsg-6) ...
+Setting up libmono-sharpzip2.84-cil (1.2.6+dfsg-6) ...
+Setting up mono-gmcs (1.2.6+dfsg-6) ...
+Setting up libxext-dev (2:1.0.4-1) ...
+Setting up libmono-security2.0-cil (1.2.6+dfsg-6) ...
+Setting up libmono-data-tds2.0-cil (1.2.6+dfsg-6) ...
+Setting up libmono-system-data2.0-cil (1.2.6+dfsg-6) ...
+Setting up libmono-system-web2.0-cil (1.2.6+dfsg-6) ...
+Setting up libmono2.0-cil (1.2.6+dfsg-6) ...
+Setting up libndesk-dbus1.0-cil (0.6.0-1) ...
+* Installing 1 assembly from libndesk-dbus1.0-cil into Mono
+Setting up libndesk-dbus-glib1.0-cil (0.4.1-1) ...
+* Installing 1 assembly from libndesk-dbus-glib1.0-cil into Mono
+Setting up libx11-dev (2:1.0.3-7) ...
+Setting up libxfixes-dev (1:4.0.3-2) ...
+Setting up libxcomposite-dev (1:0.4.0-1) ...
+Setting up libxrender-dev (1:0.9.4-1) ...
+Setting up libxcursor-dev (1:1.1.9-1) ...
+Setting up libxdamage-dev (1:1.1.1-3) ...
+Setting up libxft-dev (2.1.12-2) ...
+Setting up libxi-dev (2:1.1.3-1) ...
+Setting up libxinerama-dev (2:1.0.3-1) ...
+Setting up libxrandr-dev (2:1.2.2-1) ...
+Setting up libcairo2-dev (1.4.14-1) ...
+Setting up libpango1.0-dev (1.18.4-1) ...
+Setting up libgtk2.0-dev (2.12.8-1) ...
+Setting up libglade2-dev (1:2.6.2-1) ...
+Setting up libgail-dev (1.20.2-1) ...
+Setting up libgnomecanvas2-dev (2.20.1.1-1) ...
+Setting up libbonoboui2-dev (2.21.90-1) ...
+Setting up libgnomeprint2.2-dev (2.18.4-1) ...
+Setting up libgnomeprintui2.2-dev (2.18.2-1) ...
+Setting up libgnomeui-dev (2.20.1.1-1) ...
+Setting up libgtkspell-dev (2.0.10-4) ...
+Setting up libpanel-applet2-dev (2.20.3-3) ...
+Checking correctness of source dependencies...
+Kernel: Linux 2.6.18-3-amd64 i386 (x86_64)
+Toolchain package versions: libc6-dev_2.7-9 linux-libc-dev_2.6.24-4 gcc-4.2_4.2.3-2 g++-4.2_4.2.3-2 binutils_2.18.1~cvs20080103-1 libstdc++6-4.2-dev_4.2.3-2 libstdc++6_4.3.0~rc2-1
+------------------------------------------------------------------------------
+gpg: Signature made Mon Nov 26 17:35:36 2007 CET using DSA key ID 5BE41F21
+gpg: Can't check signature: public key not found
+dpkg-source: extracting tomboy in tomboy-0.8.2
+dpkg-source: unpacking tomboy_0.8.2.orig.tar.gz
+dpkg-source: applying ./tomboy_0.8.2-1.diff.gz
+dpkg-buildpackage: source package tomboy
+dpkg-buildpackage: source version 0.8.2-1
+dpkg-buildpackage: source changed by Sebastian Dröge <slomo at debian.org>
+dpkg-buildpackage: host architecture i386
+ /usr/bin/fakeroot debian/rules clean
+test -x debian/rules
+dh_testroot
+/usr/bin/make -f debian/rules reverse-config
+make[1]: Entering directory `/build/user/tomboy-0.8.2'
+for i in ./config.guess ./config.sub  ; do \
+		if test -e $i.cdbs-orig ; then \
+			mv $i.cdbs-orig $i ; \
+		fi ; \
+	done
+make[1]: Leaving directory `/build/user/tomboy-0.8.2'
+if [ "reverse-patches" = "reverse-patches" ]; then rm -f debian/stamp-patched; fi
+patches: debian/patches/01_external-mono-addins.patch debian/patches/99_autoreconf.patch
+Patch debian/patches/99_autoreconf.patch is not applied.
+Patch debian/patches/01_external-mono-addins.patch is not applied.
+if [ "reverse-patches" != "reverse-patches" ]; then touch debian/stamp-patched; fi
+if [ "reverse-patches" != "reverse-patches" ] ; then \
+		/usr/bin/make -f debian/rules update-config ; \
+	fi
+for dir in debian/patches ; do \
+	    rm -f $dir/*.log ; \
+	done
+for i in ./config.guess ./config.sub  ; do \
+		if test -e $i.cdbs-orig ; then \
+			mv $i.cdbs-orig $i ; \
+		fi ; \
+	done
+dh_clean 
+GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 /usr/bin/make -C . -k distclean
+make[1]: Entering directory `/build/user/tomboy-0.8.2'
+make[1]: *** No rule to make target `distclean'.
+make[1]: Leaving directory `/build/user/tomboy-0.8.2'
+make: [makefile-clean] Error 2 (ignored)
+rm -f debian/stamp-makefile-build
+rm -f debian/stamp-autotools-files
+cd . && \
+	  rm -f intltool-extract intltool-merge intltool-update po/.intltool-merge-cache; \
+	  if test -d doc; then find doc -name '*.omf.out' -exec rm -f \{\} \; ; fi; \
+	  if test -d help; then find help -name '*.omf.out' -exec rm -f \{\} \; ; fi
+rm -rf /build/user/tomboy-0.8.2/.wapi
+ dpkg-source -b tomboy-0.8.2
+dpkg-source: building tomboy using existing tomboy_0.8.2.orig.tar.gz
+dpkg-source: building tomboy in tomboy_0.8.2-1.diff.gz
+dpkg-source: building tomboy in tomboy_0.8.2-1.dsc
+ debian/rules build
+test -x debian/rules
+mkdir -p "."
+/usr/bin/make -f debian/rules reverse-config
+make[1]: Entering directory `/build/user/tomboy-0.8.2'
+for i in ./config.guess ./config.sub  ; do \
+		if test -e $i.cdbs-orig ; then \
+			mv $i.cdbs-orig $i ; \
+		fi ; \
+	done
+make[1]: Leaving directory `/build/user/tomboy-0.8.2'
+if [ "debian/stamp-patched" = "reverse-patches" ]; then rm -f debian/stamp-patched; fi
+patches: debian/patches/01_external-mono-addins.patch debian/patches/99_autoreconf.patch
+Trying patch debian/patches/01_external-mono-addins.patch at level 1 ... 0 ... success.
+Trying patch debian/patches/99_autoreconf.patch at level 1 ... success.
+if [ "debian/stamp-patched" != "reverse-patches" ]; then touch debian/stamp-patched; fi
+if [ "debian/stamp-patched" != "reverse-patches" ] ; then \
+		/usr/bin/make -f debian/rules update-config ; \
+	fi
+make[1]: Entering directory `/build/user/tomboy-0.8.2'
+if test -e /usr/share/misc/config.guess ; then \
+		for i in ./config.guess ; do \
+			if ! test -e $i.cdbs-orig ; then \
+				mv $i $i.cdbs-orig ; \
+				cp --remove-destination /usr/share/misc/config.guess $i ; \
+			fi ; \
+		done ; \
+	fi
+if test -e /usr/share/misc/config.sub ; then \
+		for i in ./config.sub ; do \
+			if ! test -e $i.cdbs-orig ; then \
+				mv $i $i.cdbs-orig ; \
+				cp --remove-destination /usr/share/misc/config.sub $i ; \
+			fi ; \
+		done ; \
+	fi
+make[1]: Leaving directory `/build/user/tomboy-0.8.2'
+if test -e /usr/share/misc/config.guess ; then \
+		for i in ./config.guess ; do \
+			if ! test -e $i.cdbs-orig ; then \
+				mv $i $i.cdbs-orig ; \
+				cp --remove-destination /usr/share/misc/config.guess $i ; \
+			fi ; \
+		done ; \
+	fi
+if test -e /usr/share/misc/config.sub ; then \
+		for i in ./config.sub ; do \
+			if ! test -e $i.cdbs-orig ; then \
+				mv $i $i.cdbs-orig ; \
+				cp --remove-destination /usr/share/misc/config.sub $i ; \
+			fi ; \
+		done ; \
+	fi
+touch debian/stamp-autotools-files
+chmod a+x /build/user/tomboy-0.8.2/./configure
+cd . && LDFLAGS="-Wl,-O1" /build/user/tomboy-0.8.2/./configure --build=i486-linux-gnu --prefix=/usr --includedir="\${prefix}/include" --mandir="\${prefix}/share/man" --infodir="\${prefix}/share/info" --sysconfdir=/etc --localstatedir=/var --libexecdir="\${prefix}/lib/tomboy" --disable-maintainer-mode --disable-dependency-tracking --srcdir=.  --disable-scrollkeeper --with-mono-addins=system 
+checking for a BSD-compatible install... /usr/bin/install -c
+checking whether build environment is sane... yes
+checking for a thread-safe mkdir -p... /bin/mkdir -p
+checking for gawk... no
+checking for mawk... mawk
+checking whether make sets $(MAKE)... yes
+checking how to create a pax tar archive... gnutar
+checking whether to enable maintainer-specific portions of Makefiles... no
+checking for pkg-config... /usr/bin/pkg-config
+checking pkg-config is at least version 0.9.0... yes
+checking for a BSD-compatible install... /usr/bin/install -c
+checking for style of include used by make... GNU
+checking for gcc... gcc
+checking for C compiler default output file name... a.out
+checking whether the C compiler works... yes
+checking whether we are cross compiling... no
+checking for suffix of executables... 
+checking for suffix of object files... o
+checking whether we are using the GNU C compiler... yes
+checking whether gcc accepts -g... yes
+checking for gcc option to accept ISO C89... none needed
+checking dependency style of gcc... none
+checking for intltool >= 0.35... 0.36.2 found
+checking for perl... /usr/bin/perl
+checking for XML::Parser... ok
+checking for gcc... (cached) gcc
+checking whether we are using the GNU C compiler... (cached) yes
+checking whether gcc accepts -g... (cached) yes
+checking for gcc option to accept ISO C89... (cached) none needed
+checking dependency style of gcc... (cached) none
+checking for library containing strerror... none required
+checking how to run the C preprocessor... gcc -E
+checking for grep that handles long lines and -e... /bin/grep
+checking for egrep... /bin/grep -E
+checking for ANSI C header files... yes
+checking build system type... i486-pc-linux-gnu
+checking host system type... i486-pc-linux-gnu
+checking for a sed that does not truncate output... /bin/sed
+checking for ld used by gcc... /usr/bin/ld
+checking if the linker (/usr/bin/ld) is GNU ld... yes
+checking for /usr/bin/ld option to reload object files... -r
+checking for BSD-compatible nm... /usr/bin/nm -B
+checking whether ln -s works... yes
+checking how to recognize dependent libraries... pass_all
+checking for sys/types.h... yes
+checking for sys/stat.h... yes
+checking for stdlib.h... yes
+checking for string.h... yes
+checking for memory.h... yes
+checking for strings.h... yes
+checking for inttypes.h... yes
+checking for stdint.h... yes
+checking for unistd.h... yes
+checking dlfcn.h usability... yes
+checking dlfcn.h presence... yes
+checking for dlfcn.h... yes
+checking for g++... g++
+checking whether we are using the GNU C++ compiler... yes
+checking whether g++ accepts -g... yes
+checking dependency style of g++... none
+checking how to run the C++ preprocessor... g++ -E
+checking for g77... no
+checking for xlf... no
+checking for f77... no
+checking for frt... no
+checking for pgf77... no
+checking for cf77... no
+checking for fort77... no
+checking for fl32... no
+checking for af77... no
+checking for xlf90... no
+checking for f90... no
+checking for pgf90... no
+checking for pghpf... no
+checking for epcf90... no
+checking for gfortran... no
+checking for g95... no
+checking for xlf95... no
+checking for f95... no
+checking for fort... no
+checking for ifort... no
+checking for ifc... no
+checking for efc... no
+checking for pgf95... no
+checking for lf95... no
+checking for ftn... no
+checking whether we are using the GNU Fortran 77 compiler... no
+checking whether  accepts -g... no
+checking the maximum length of command line arguments... 98304
+checking command to parse /usr/bin/nm -B output from gcc object... ok
+checking for objdir... .libs
+checking for ar... ar
+checking for ranlib... ranlib
+checking for strip... strip
+checking if gcc supports -fno-rtti -fno-exceptions... no
+checking for gcc option to produce PIC... -fPIC
+checking if gcc PIC flag -fPIC works... yes
+checking if gcc static flag -static works... yes
+checking if gcc supports -c -o file.o... yes
+checking whether the gcc linker (/usr/bin/ld) supports shared libraries... yes
+checking whether -lc should be explicitly linked in... no
+checking dynamic linker characteristics... GNU/Linux ld.so
+checking how to hardcode library paths into programs... immediate
+checking whether stripping libraries is possible... yes
+checking if libtool supports shared libraries... yes
+checking whether to build shared libraries... yes
+checking whether to build static libraries... no
+configure: creating libtool
+appending configuration tag "CXX" to libtool
+checking for ld used by g++... /usr/bin/ld
+checking if the linker (/usr/bin/ld) is GNU ld... yes
+checking whether the g++ linker (/usr/bin/ld) supports shared libraries... yes
+checking for g++ option to produce PIC... -fPIC
+checking if g++ PIC flag -fPIC works... yes
+checking if g++ static flag -static works... yes
+checking if g++ supports -c -o file.o... yes
+checking whether the g++ linker (/usr/bin/ld) supports shared libraries... yes
+checking dynamic linker characteristics... GNU/Linux ld.so
+checking how to hardcode library paths into programs... immediate
+appending configuration tag "F77" to libtool
+checking locale.h usability... yes
+checking locale.h presence... yes
+checking for locale.h... yes
+checking for LC_MESSAGES... yes
+checking libintl.h usability... yes
+checking libintl.h presence... yes
+checking for libintl.h... yes
+checking for ngettext in libc... yes
+checking for dgettext in libc... yes
+checking for bind_textdomain_codeset... yes
+checking for msgfmt... /usr/bin/msgfmt
+checking for dcgettext... yes
+checking if msgfmt accepts -c... yes
+checking for gmsgfmt... /usr/bin/msgfmt
+checking for xgettext... /usr/bin/xgettext
+checking for gconftool-2... /usr/bin/gconftool-2
+Using config source xml:merged:/etc/gconf/gconf.xml.defaults for schema installation
+Using $(sysconfdir)/gconf/schemas as install directory for schema files
+checking for gmcs... /usr/bin/gmcs
+checking for LIBTOMBOY... yes
+checking for GTKSPELL... yes
+checking for DBUS... yes
+checking for MONO_ADDINS... yes
+checking for TOMBOY... yes
+checking for EVOLUTION... yes
+checking for GALAGO... no
+checking for NUNIT... no
+checking for nunit-console... no
+configure: creating ./config.status
+config.status: creating pot-update
+config.status: creating Makefile
+config.status: creating tomboy.spec
+config.status: WARNING: tomboy.spec contains a reference to the variable `datarootdir'
+which seems to be undefined.  Please make sure it is defined.
+config.status: creating data/Makefile
+config.status: creating data/tomboy-addins.pc
+config.status: creating data/images/Makefile
+config.status: creating help/Makefile
+config.status: creating libtomboy/Makefile
+config.status: creating Mono.Addins/Makefile
+config.status: creating Mono.Addins/Mono.Addins.Setup/Makefile
+config.status: creating Mono.Addins/Mono.Addins.Gui/Makefile
+config.status: creating Mono.Addins/Mono.Addins/Makefile
+config.status: creating Tomboy/Makefile
+config.status: creating Tomboy/Addins/Makefile
+config.status: creating Tomboy/Addins/Backlinks/Makefile
+config.status: creating Tomboy/Addins/Bugzilla/Makefile
+config.status: creating Tomboy/Addins/ExportToHtml/Makefile
+config.status: creating Tomboy/Addins/Evolution/Makefile
+config.status: creating Tomboy/Addins/FixedWidth/Makefile
+config.status: creating Tomboy/Addins/GalagoPresence/Makefile
+config.status: creating Tomboy/Addins/NoteOfTheDay/Makefile
+config.status: creating Tomboy/Addins/PrintNotes/Makefile
+config.status: creating Tomboy/Addins/StickyNoteImport/Makefile
+config.status: creating Tomboy/Addins/FileSystemSyncService/Makefile
+config.status: creating Tomboy/Addins/WebDavSyncService/Makefile
+config.status: creating Tomboy/Addins/SshSyncService/Makefile
+config.status: creating test/Makefile
+config.status: creating po/Makefile.in
+config.status: creating config.h
+config.status: executing depfiles commands
+config.status: executing intltool commands
+config.status: executing default-1 commands
+config.status: executing po/stamp-it commands
+GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 /usr/bin/make -C . 
+make[1]: Entering directory `/build/user/tomboy-0.8.2'
+/usr/bin/make  all-recursive
+make[2]: Entering directory `/build/user/tomboy-0.8.2'
+Making all in data
+make[3]: Entering directory `/build/user/tomboy-0.8.2/data'
+Making all in images
+make[4]: Entering directory `/build/user/tomboy-0.8.2/data/images'
+make[4]: Nothing to be done for `all'.
+make[4]: Leaving directory `/build/user/tomboy-0.8.2/data/images'
+make[4]: Entering directory `/build/user/tomboy-0.8.2/data'
+sed -e "s|\@bindir\@|/usr/bin|g"	\
+	    -e "s|\@wrapper\@|tomboy|g"		\
+	    < org.gnome.Tomboy.service.in > org.gnome.Tomboy.service
+LC_ALL=C ../intltool-merge -d -u -c ../po/.intltool-merge-cache ../po tomboy.desktop.in tomboy.desktop
+Generating and caching the translation database
+Merging translations into tomboy.desktop.
+LC_ALL=C ../intltool-merge -s -u -c ../po/.intltool-merge-cache ../po tomboy.schemas.in tomboy.schemas
+Odd number of elements in hash assignment at ../intltool-merge line 423.
+Found cached translation database
+Merging translations into tomboy.schemas.
+sed -e "s|\@bindir\@|/usr/bin|g"	\
+	    -e "s|\@wrapper\@|tomboy-panel|g"		\
+	    < GNOME_TomboyApplet.server.in.in > GNOME_TomboyApplet.server.in
+LC_ALL=C ../intltool-merge -o -u -c ../po/.intltool-merge-cache ../po GNOME_TomboyApplet.server.in GNOME_TomboyApplet.server
+Odd number of elements in hash assignment at ../intltool-merge line 423.
+Found cached translation database
+Merging translations into GNOME_TomboyApplet.server.
+make[4]: Leaving directory `/build/user/tomboy-0.8.2/data'
+make[3]: Leaving directory `/build/user/tomboy-0.8.2/data'
+Making all in libtomboy
+make[3]: Entering directory `/build/user/tomboy-0.8.2/libtomboy'
+/bin/sh ../libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I.. -DG_LOG_DOMAIN=\"libtomboy\" -DEGG_COMPILATION -DGTK_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED -DG_DISABLE_DEPRECATED -I/usr/include/libgnomeprint-2.2 -I/usr/include/libart-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 -I/usr/include/pango-1.0 -I/usr/include/libgnomeprintui-2.2 -I/usr/include/libgnomecanvas-2.0 -I/usr/include/freetype2 -I/usr/include/gail-1.0 -I/usr/include/gtk-2.0 -I/usr/include/atk-1.0 -I/usr/lib/gtk-2.0/include -I/usr/include/cairo -I/usr/include/libpng12      -g -O2 -c -o tomboykeybinder.lo tomboykeybinder.c
+mkdir .libs
+ gcc -DHAVE_CONFIG_H -I. -I.. -I.. -DG_LOG_DOMAIN=\"libtomboy\" -DEGG_COMPILATION -DGTK_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED -DG_DISABLE_DEPRECATED -I/usr/include/libgnomeprint-2.2 -I/usr/include/libart-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 -I/usr/include/pango-1.0 -I/usr/include/libgnomeprintui-2.2 -I/usr/include/libgnomecanvas-2.0 -I/usr/include/freetype2 -I/usr/include/gail-1.0 -I/usr/include/gtk-2.0 -I/usr/include/atk-1.0 -I/usr/lib/gtk-2.0/include -I/usr/include/cairo -I/usr/include/libpng12 -g -O2 -c tomboykeybinder.c  -fPIC -DPIC -o .libs/tomboykeybinder.o
+/bin/sh ../libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I.. -DG_LOG_DOMAIN=\"libtomboy\" -DEGG_COMPILATION -DGTK_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED -DG_DISABLE_DEPRECATED -I/usr/include/libgnomeprint-2.2 -I/usr/include/libart-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 -I/usr/include/pango-1.0 -I/usr/include/libgnomeprintui-2.2 -I/usr/include/libgnomecanvas-2.0 -I/usr/include/freetype2 -I/usr/include/gail-1.0 -I/usr/include/gtk-2.0 -I/usr/include/atk-1.0 -I/usr/lib/gtk-2.0/include -I/usr/include/cairo -I/usr/include/libpng12      -g -O2 -c -o tomboyutil.lo tomboyutil.c
+ gcc -DHAVE_CONFIG_H -I. -I.. -I.. -DG_LOG_DOMAIN=\"libtomboy\" -DEGG_COMPILATION -DGTK_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED -DG_DISABLE_DEPRECATED -I/usr/include/libgnomeprint-2.2 -I/usr/include/libart-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 -I/usr/include/pango-1.0 -I/usr/include/libgnomeprintui-2.2 -I/usr/include/libgnomecanvas-2.0 -I/usr/include/freetype2 -I/usr/include/gail-1.0 -I/usr/include/gtk-2.0 -I/usr/include/atk-1.0 -I/usr/lib/gtk-2.0/include -I/usr/include/cairo -I/usr/include/libpng12 -g -O2 -c tomboyutil.c  -fPIC -DPIC -o .libs/tomboyutil.o
+/bin/sh ../libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I.. -DG_LOG_DOMAIN=\"libtomboy\" -DEGG_COMPILATION -DGTK_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED -DG_DISABLE_DEPRECATED -I/usr/include/libgnomeprint-2.2 -I/usr/include/libart-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 -I/usr/include/pango-1.0 -I/usr/include/libgnomeprintui-2.2 -I/usr/include/libgnomecanvas-2.0 -I/usr/include/freetype2 -I/usr/include/gail-1.0 -I/usr/include/gtk-2.0 -I/usr/include/atk-1.0 -I/usr/lib/gtk-2.0/include -I/usr/include/cairo -I/usr/include/libpng12      -g -O2 -c -o eggaccelerators.lo eggaccelerators.c
+ gcc -DHAVE_CONFIG_H -I. -I.. -I.. -DG_LOG_DOMAIN=\"libtomboy\" -DEGG_COMPILATION -DGTK_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED -DG_DISABLE_DEPRECATED -I/usr/include/libgnomeprint-2.2 -I/usr/include/libart-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 -I/usr/include/pango-1.0 -I/usr/include/libgnomeprintui-2.2 -I/usr/include/libgnomecanvas-2.0 -I/usr/include/freetype2 -I/usr/include/gail-1.0 -I/usr/include/gtk-2.0 -I/usr/include/atk-1.0 -I/usr/lib/gtk-2.0/include -I/usr/include/cairo -I/usr/include/libpng12 -g -O2 -c eggaccelerators.c  -fPIC -DPIC -o .libs/eggaccelerators.o
+/bin/sh ../libtool --tag=CC   --mode=compile gcc -DHAVE_CONFIG_H -I. -I.. -I.. -DG_LOG_DOMAIN=\"libtomboy\" -DEGG_COMPILATION -DGTK_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED -DG_DISABLE_DEPRECATED -I/usr/include/libgnomeprint-2.2 -I/usr/include/libart-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 -I/usr/include/pango-1.0 -I/usr/include/libgnomeprintui-2.2 -I/usr/include/libgnomecanvas-2.0 -I/usr/include/freetype2 -I/usr/include/gail-1.0 -I/usr/include/gtk-2.0 -I/usr/include/atk-1.0 -I/usr/lib/gtk-2.0/include -I/usr/include/cairo -I/usr/include/libpng12      -g -O2 -c -o eggtrayicon.lo eggtrayicon.c
+ gcc -DHAVE_CONFIG_H -I. -I.. -I.. -DG_LOG_DOMAIN=\"libtomboy\" -DEGG_COMPILATION -DGTK_DISABLE_DEPRECATED -DGDK_DISABLE_DEPRECATED -DG_DISABLE_DEPRECATED -I/usr/include/libgnomeprint-2.2 -I/usr/include/libart-2.0 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/libxml2 -I/usr/include/pango-1.0 -I/usr/include/libgnomeprintui-2.2 -I/usr/include/libgnomecanvas-2.0 -I/usr/include/freetype2 -I/usr/include/gail-1.0 -I/usr/include/gtk-2.0 -I/usr/include/atk-1.0 -I/usr/lib/gtk-2.0/include -I/usr/include/cairo -I/usr/include/libpng12 -g -O2 -c eggtrayicon.c  -fPIC -DPIC -o .libs/eggtrayicon.o
+/bin/sh ../libtool --tag=CC   --mode=link gcc  -g -O2 -export-dynamic -module -avoid-version -Wl,-O1 -o libtomboy.la -rpath /usr/lib/tomboy tomboykeybinder.lo tomboyutil.lo eggaccelerators.lo eggtrayicon.lo -lgnomeprintui-2-2 -lgnomeprint-2-2 -lz -lgnomecanvas-2 -lxml2 -lart_lgpl_2 -lgtk-x11-2.0 -lgdk-x11-2.0 -lgdk_pixbuf-2.0 -lm -lpangocairo-1.0 -lpango-1.0 -lcairo -latk-1.0 -lgobject-2.0 -lgmodule-2.0 -ldl -lglib-2.0   
+gcc -shared  .libs/tomboykeybinder.o .libs/tomboyutil.o .libs/eggaccelerators.o .libs/eggtrayicon.o  -lgnomeprintui-2-2 -lgnomeprint-2-2 -lz /usr/lib/libgnomecanvas-2.so /usr/lib/libxml2.so /usr/lib/libart_lgpl_2.so /usr/lib/libgtk-x11-2.0.so /usr/lib/libgdk-x11-2.0.so /usr/lib/libgdk_pixbuf-2.0.so -lm /usr/lib/libpangocairo-1.0.so /usr/lib/libpango-1.0.so /usr/lib/libcairo.so /usr/lib/libatk-1.0.so /usr/lib/libgobject-2.0.so /usr/lib/libgmodule-2.0.so -ldl /usr/lib/libglib-2.0.so  -Wl,-O1 -Wl,-soname -Wl,libtomboy.so -o .libs/libtomboy.so
+creating libtomboy.la
+(cd .libs && rm -f libtomboy.la && ln -s ../libtomboy.la libtomboy.la)
+make[3]: Leaving directory `/build/user/tomboy-0.8.2/libtomboy'
+Making all in Mono.Addins
+make[3]: Entering directory `/build/user/tomboy-0.8.2/Mono.Addins'
+Making all in Mono.Addins
+make[4]: Entering directory `/build/user/tomboy-0.8.2/Mono.Addins/Mono.Addins'
+make[4]: Nothing to be done for `all'.
+make[4]: Leaving directory `/build/user/tomboy-0.8.2/Mono.Addins/Mono.Addins'
+Making all in Mono.Addins.Setup
+make[4]: Entering directory `/build/user/tomboy-0.8.2/Mono.Addins/Mono.Addins.Setup'
+make[4]: Nothing to be done for `all'.
+make[4]: Leaving directory `/build/user/tomboy-0.8.2/Mono.Addins/Mono.Addins.Setup'
+Making all in Mono.Addins.Gui
+make[4]: Entering directory `/build/user/tomboy-0.8.2/Mono.Addins/Mono.Addins.Gui'
+make[4]: Nothing to be done for `all'.
+make[4]: Leaving directory `/build/user/tomboy-0.8.2/Mono.Addins/Mono.Addins.Gui'
+make[4]: Entering directory `/build/user/tomboy-0.8.2/Mono.Addins'
+make[4]: Nothing to be done for `all-am'.
+make[4]: Leaving directory `/build/user/tomboy-0.8.2/Mono.Addins'
+make[3]: Leaving directory `/build/user/tomboy-0.8.2/Mono.Addins'
+Making all in Tomboy
+make[3]: Entering directory `/build/user/tomboy-0.8.2/Tomboy'
+Making all in .
+make[4]: Entering directory `/build/user/tomboy-0.8.2/Tomboy'
+sed -e "s|\@prefix\@|/usr|g" 		\
+	    -e "s|\@pkglibdir\@|/usr/lib/tomboy|g" 	\
+	    -e "s|\@bindir\@|/usr/bin|g"		\
+	    -e "s|\@target\@|Tomboy.exe|g" 		\
+	    -e "s|\@wrapper\@|tomboy|g"		\
+	    -e "s|\@extragac\@||g"	\
+	    -e "s|\@srcdir\@|/build/user/tomboy-0.8.2/Tomboy|g"	\
+	    < tomboy.in > tomboy
+chmod +x tomboy
+sed -e "s|\@prefix\@|/usr|g" 		\
+	    -e "s|\@pkglibdir\@|/usr/lib/tomboy|g" 	\
+	    -e "s|\@bindir\@|/usr/bin|g"		\
+	    -e "s|\@target\@|Tomboy.exe|g" 		\
+	    -e "s|\@wrapper\@|tomboy|g"		\
+	    -e "s|\@extragac\@||g"	\
+	    -e "s|\@srcdir\@|/build/user/tomboy-0.8.2/Tomboy|g"	\
+	    < tomboy-panel.in > tomboy-panel
+chmod +x tomboy-panel
+sed -e "s|\@version\@|0.8.2|"     \
+	    -e "s|\@datadir\@|/usr/share|"     \
+	    -e "s|\@pkglibdir\@|/usr/lib/tomboy|" \
+	    < Defines.cs.in > Defines.cs
+gmcs -debug -target:exe -out:Tomboy.exe -debug -define:DEBUG -unsafe -target:exe -define:ENABLE_DBUS -define:FIXED_GTKSPELL Tomboy.cs AbstractAddin.cs ActionManager.cs AddinManager.cs AddinPreferenceFactory.cs Applet.cs ApplicationAddin.cs Logger.cs Note.cs NoteAddin.cs NoteEditor.cs NoteManager.cs NoteWindow.cs NoteBuffer.cs NoteTag.cs Preferences.cs PreferencesDialog.cs RecentChanges.cs Tag.cs TagButton.cs TagManager.cs Tray.cs Trie.cs Undo.cs Utils.cs Watchers.cs WrapBox.cs XKeybinder.cs Synchronization/FileSystemSyncServer.cs Synchronization/FuseSyncServiceAddin.cs Synchronization/SyncDialog.cs Synchronization/SyncManager.cs Synchronization/SyncServiceAddin.cs Synchronization/SyncUtils.cs Synchronization/TomboySyncClient.cs panelapplet/BonoboUIVerb.cs panelapplet/ChangeBackgroundHandler.cs panelapplet/ChangeSizeHandler.cs panelapplet/GnomeSharp.PanelAppletFactoryCallbackNative.cs panelapplet/MoveFocusOutOfAppletHandler.cs panelapplet/ObjectManager.cs panelapplet/PanelApplet.cs panelapplet/PanelAppletBackgroundType.cs panelapplet/PanelAppletFactory.cs panelapplet/PanelAppletFactoryCallback.cs panelapplet/PanelAppletFlags.cs Gnome.Keyring/AccessRights.cs Gnome.Keyring/AttributeType.cs Gnome.Keyring/GenericItemData.cs Gnome.Keyring/ItemACL.cs Gnome.Keyring/ItemData.cs Gnome.Keyring/ItemType.cs Gnome.Keyring/KeyringException.cs Gnome.Keyring/KeyringInfo.cs Gnome.Keyring/NetItemData.cs Gnome.Keyring/NoteItemData.cs Gnome.Keyring/Operation.cs Gnome.Keyring/RequestMessage.cs Gnome.Keyring/ResponseMessage.cs Gnome.Keyring/ResultCode.cs Gnome.Keyring/Ring.cs RemoteControl.cs RemoteControlProxy.cs Defines.cs -r:/usr/lib/pkgconfig/../../lib/mono/gtk-sharp-2.0/pango-sharp.dll -r:/usr/lib/pkgconfig/../../lib/mono/gtk-sharp-2.0/atk-sharp.dll -r:/usr/lib/pkgconfig/../../lib/mono/gtk-sharp-2.0/gdk-sharp.dll -r:/usr/lib/pkgconfig/../../lib/mono/gtk-sharp-2.0/gtk-sharp.dll -r:/usr/lib/pkgconfig/../../lib/mono/gtk-sharp-2.0/glib-sharp.dll -r:/usr/lib/pkgconfig/../../lib/mono/gtk-sharp-2.0/gnome-sharp.dll -r:/usr/lib/pkgconfig/../../lib/mono/gtk-sharp-2.0/art-sharp.dll -r:/usr/lib/pkgconfig/../../lib/mono/gtk-sharp-2.0/gnome-vfs-sharp.dll -r:/usr/lib/pkgconfig/../../lib/mono/gtk-sharp-2.0/gconf-sharp.dll   -r:Mono.Posix -r:/usr/lib/cli/ndesk-dbus-1.0/NDesk.DBus.dll -r:/usr/lib/cli/ndesk-dbus-glib-1.0/NDesk.DBus.GLib.dll   -r:/usr/lib/cli/mono-addins-0.2/Mono.Addins.dll -r:/usr/lib/cli/mono-addins-0.2/Mono.Addins.Gui.dll -r:/usr/lib/pkgconfig/../../lib/mono/gtk-sharp-2.0/gnome-sharp.dll -r:/usr/lib/pkgconfig/../../lib/mono/gtk-sharp-2.0/pango-sharp.dll -r:/usr/lib/pkgconfig/../../lib/mono/gtk-sharp-2.0/atk-sharp.dll -r:/usr/lib/pkgconfig/../../lib/mono/gtk-sharp-2.0/gdk-sharp.dll -r:/usr/lib/pkgconfig/../../lib/mono/gtk-sharp-2.0/gtk-sharp.dll -r:/usr/lib/pkgconfig/../../lib/mono/gtk-sharp-2.0/glade-sharp.dll -r:/usr/lib/pkgconfig/../../lib/mono/gtk-sharp-2.0/art-sharp.dll -r:/usr/lib/pkgconfig/../../lib/mono/gtk-sharp-2.0/gnome-vfs-sharp.dll -r:/usr/lib/pkgconfig/../../lib/mono/gtk-sharp-2.0/glib-sharp.dll -r:/usr/lib/cli/mono-addins-0.2/Mono.Addins.Setup.dll   -resource:../data/GNOME_TomboyApplet.xml,GNOME_TomboyApplet.xml -resource:../data/UIManagerLayout.xml -resource:../data/images/tomboy.png,tomboy.png -resource:../data/images/tomboy-note-16.png,tomboy-note.png -resource:../data/images/gnome-searchtool.png,gnome-searchtool.png -resource:../data/images/pinup.png,pinup.png -resource:../data/images/pinup-active.png,pinup-active.png -resource:../data/images/pindown.png,pindown.png -resource:./Tomboy.addin.xml
+Synchronization/FuseSyncServiceAddin.cs(127,41): warning CS0642: Possible mistaken empty statement
+Synchronization/FuseSyncServiceAddin.cs(130,49): warning CS0642: Possible mistaken empty statement
+NoteTag.cs(325,40): warning CS0108: `Tomboy.DepthNoteTag.Direction' hides inherited member `Gtk.TextTag.Direction'. Use the new keyword if hiding was intended
+/usr/lib/mono/gac/gtk-sharp/2.10.0.0__35e10195dab3c99f/gtk-sharp.dll (Location of the symbol related to previous warning)
+PreferencesDialog.cs(5,13): error CS0234: The type or namespace name `PropertyEditors' does not exist in the namespace `GConf'. Are you missing an assembly reference?
+PreferencesDialog.cs(5,1): error CS0246: The type or namespace name `GConf.PropertyEditors' could not be found. Are you missing a using directive or an assembly reference?
+PreferencesDialog.cs(753,43): error CS0246: The type or namespace name `PropertyEditor' could not be found. Are you missing a using directive or an assembly reference?
+WrapBox.cs(103,29): warning CS0108: `Tomboy.WrapBox.Remove(Gtk.Widget)' hides inherited member `Gtk.Container.Remove(Gtk.Widget)'. Use the new keyword if hiding was intended
+/usr/lib/mono/gac/gtk-sharp/2.10.0.0__35e10195dab3c99f/gtk-sharp.dll (Location of the symbol related to previous warning)
+PreferencesDialog.cs(5,13): error CS0234: The type or namespace name `PropertyEditors' does not exist in the namespace `GConf'. Are you missing an assembly reference?
+PreferencesDialog.cs(5,1): error CS0246: The type or namespace name `GConf.PropertyEditors' could not be found. Are you missing a using directive or an assembly reference?
+Compilation failed: 5 error(s), 4 warnings
+make[4]: *** [Tomboy.exe] Error 1
+make[4]: Leaving directory `/build/user/tomboy-0.8.2/Tomboy'
+make[3]: *** [all-recursive] Error 1
+make[3]: Leaving directory `/build/user/tomboy-0.8.2/Tomboy'
+make[2]: *** [all-recursive] Error 1
+make[2]: Leaving directory `/build/user/tomboy-0.8.2'
+make[1]: *** [all] Error 2
+make[1]: Leaving directory `/build/user/tomboy-0.8.2'
+make: *** [debian/stamp-makefile-build] Error 2
+dpkg-buildpackage: failure: debian/rules build gave error exit status 2
+******************************************************************************
+Build finished at 20080308-1506
+FAILED [dpkg-buildpackage died]
+Purging /var/lib/schroot/mount/sid32-57d7357c-e819-40af-b304-149775f899d6/build/user/tomboy-0.8.2
+------------------------------------------------------------------------------
+Not removing build depends: session managed chroot in use
+******************************************************************************
+Finished at 20080308-1506
+Build needed 00:00:18, 13880k disk space
+DC-Build-Status: Failed 295.658188s
+DC-Time-Estimation: 295.658188 versus expected 120 (r/m: 1.46381823333333 ; m: 120.0)

Added: collab-qa-tools/test/source/ttf-jsmath_0.01-1_sid32.buildlog
===================================================================
--- collab-qa-tools/test/source/ttf-jsmath_0.01-1_sid32.buildlog	                        (rev 0)
+++ collab-qa-tools/test/source/ttf-jsmath_0.01-1_sid32.buildlog	2008-03-11 08:06:38 UTC (rev 735)
@@ -0,0 +1,156 @@
+DC-Build-Header: ttf-jsmath 0.01-1 / Sat Mar 08 12:00:34 +0100 2008
+Automatic build of ttf-jsmath_0.01-1 on grelon-26.nancy.grid5000.fr by sbuild/amd64 0.57.0
+Build started at 20080308-1200
+******************************************************************************
+Failed to open ./ttf-jsmath_0.01-1.dsc
+Checking available source versions...
+Fetching source files...
+Reading package lists...
+Building dependency tree...
+Reading state information...
+Need to get 156kB of source archives.
+Get:1 http://idpot.grenoble.grid5000.fr sid/main ttf-jsmath 0.01-1 (dsc) [576B]
+Get:2 http://idpot.grenoble.grid5000.fr sid/main ttf-jsmath 0.01-1 (tar) [154kB]
+Get:3 http://idpot.grenoble.grid5000.fr sid/main ttf-jsmath 0.01-1 (diff) [1779B]
+Fetched 156kB in 0s (386kB/s)
+Download complete and in download only mode
+** Using build dependencies supplied by package:
+Build-Depends: debhelper (>= 5)
+Checking for already installed source dependencies...
+debhelper: missing
+Using default version 6.0.7
+Checking for source dependency conflicts...
+Reading package lists...
+Building dependency tree...
+Reading state information...
+The following extra packages will be installed:
+  bsdmainutils file gettext gettext-base groff-base html2text intltool-debian
+  libgomp1 libmagic1 man-db po-debconf
+Suggested packages:
+  wamerican wordlist whois vacation dh-make cvs gettext-doc groff www-browser
+Recommended packages:
+  curl wget lynx libcompress-zlib-perl libmail-box-perl libmail-sendmail-perl
+The following NEW packages will be installed:
+  bsdmainutils debhelper file gettext gettext-base groff-base html2text
+  intltool-debian libgomp1 libmagic1 man-db po-debconf
+0 upgraded, 12 newly installed, 0 to remove and 0 not upgraded.
+Need to get 6104kB of archives.
+After this operation, 18.7MB of additional disk space will be used.
+WARNING: The following packages cannot be authenticated!
+  bsdmainutils groff-base man-db libmagic1 file gettext-base html2text
+  libgomp1 gettext intltool-debian po-debconf debhelper
+Authentication warning overridden.
+Get:1 http://idpot.grenoble.grid5000.fr sid/main bsdmainutils 6.1.10 [172kB]
+Get:2 http://idpot.grenoble.grid5000.fr sid/main groff-base 1.18.1.1-17 [844kB]
+Get:3 http://idpot.grenoble.grid5000.fr sid/main man-db 2.5.1-2 [997kB]
+Get:4 http://idpot.grenoble.grid5000.fr sid/main libmagic1 4.23-2 [342kB]
+Get:5 http://idpot.grenoble.grid5000.fr sid/main file 4.23-2 [41.0kB]
+Get:6 http://idpot.grenoble.grid5000.fr sid/main gettext-base 0.17-2 [123kB]
+Get:7 http://idpot.grenoble.grid5000.fr sid/main html2text 1.3.2a-3 [98.9kB]
+Get:8 http://idpot.grenoble.grid5000.fr sid/main libgomp1 4.3.0~rc2-1 [13.3kB]
+Get:9 http://idpot.grenoble.grid5000.fr sid/main gettext 0.17-2 [2683kB]
+Get:10 http://idpot.grenoble.grid5000.fr sid/main intltool-debian 0.35.0+20060710.1 [30.8kB]
+Get:11 http://idpot.grenoble.grid5000.fr sid/main po-debconf 1.0.12 [237kB]
+Get:12 http://idpot.grenoble.grid5000.fr sid/main debhelper 6.0.7 [521kB]
+debconf: delaying package configuration, since apt-utils is not installed
+Fetched 6104kB in 7s (808kB/s)
+Selecting previously deselected package bsdmainutils.
+(Reading database ... 9174 files and directories currently installed.)
+Unpacking bsdmainutils (from .../bsdmainutils_6.1.10_i386.deb) ...
+Selecting previously deselected package groff-base.
+Unpacking groff-base (from .../groff-base_1.18.1.1-17_i386.deb) ...
+Selecting previously deselected package man-db.
+Unpacking man-db (from .../man-db_2.5.1-2_i386.deb) ...
+Selecting previously deselected package libmagic1.
+Unpacking libmagic1 (from .../libmagic1_4.23-2_i386.deb) ...
+Selecting previously deselected package file.
+Unpacking file (from .../archives/file_4.23-2_i386.deb) ...
+Selecting previously deselected package gettext-base.
+Unpacking gettext-base (from .../gettext-base_0.17-2_i386.deb) ...
+Selecting previously deselected package html2text.
+Unpacking html2text (from .../html2text_1.3.2a-3_i386.deb) ...
+Selecting previously deselected package libgomp1.
+Unpacking libgomp1 (from .../libgomp1_4.3.0~rc2-1_i386.deb) ...
+Selecting previously deselected package gettext.
+Unpacking gettext (from .../gettext_0.17-2_i386.deb) ...
+Selecting previously deselected package intltool-debian.
+Unpacking intltool-debian (from .../intltool-debian_0.35.0+20060710.1_all.deb) ...
+Selecting previously deselected package po-debconf.
+Unpacking po-debconf (from .../po-debconf_1.0.12_all.deb) ...
+Selecting previously deselected package debhelper.
+Unpacking debhelper (from .../debhelper_6.0.7_all.deb) ...
+Setting up bsdmainutils (6.1.10) ...
+Setting up groff-base (1.18.1.1-17) ...
+Setting up man-db (2.5.1-2) ...
+Building database of manual pages ...
+Setting up libmagic1 (4.23-2) ...
+Setting up file (4.23-2) ...
+Setting up gettext-base (0.17-2) ...
+Setting up html2text (1.3.2a-3) ...
+Setting up libgomp1 (4.3.0~rc2-1) ...
+Setting up gettext (0.17-2) ...
+Setting up intltool-debian (0.35.0+20060710.1) ...
+Setting up po-debconf (1.0.12) ...
+Setting up debhelper (6.0.7) ...
+Checking correctness of source dependencies...
+Kernel: Linux 2.6.18-3-amd64 i386 (x86_64)
+Toolchain package versions: libc6-dev_2.7-9 linux-libc-dev_2.6.24-4 gcc-4.2_4.2.3-2 g++-4.2_4.2.3-2 binutils_2.18.1~cvs20080103-1 libstdc++6-4.2-dev_4.2.3-2 libstdc++6_4.3.0~rc2-1
+------------------------------------------------------------------------------
+gpg: can't open `/gnupg/options.skel': No such file or directory
+gpg: Signature made Thu Mar  6 03:59:58 2008 CET using DSA key ID 5BFA90EC
+gpg: Can't check signature: public key not found
+dpkg-source: extracting ttf-jsmath in ttf-jsmath-0.01
+dpkg-source: unpacking ttf-jsmath_0.01.orig.tar.gz
+dpkg-source: applying ./ttf-jsmath_0.01-1.diff.gz
+dpkg-buildpackage: source package ttf-jsmath
+dpkg-buildpackage: source version 0.01-1
+dpkg-buildpackage: source changed by Atsuhito KOHDA <kohda at pm.tokushima-u.ac.jp>
+dpkg-buildpackage: host architecture i386
+ /usr/bin/fakeroot debian/rules clean
+dh_testdir
+dh_testroot
+rm -f build-stamp configure-stamp
+# Add here commands to clean up after the build process.
+#/usr/bin/make clean
+dh_clean 
+ dpkg-source -b ttf-jsmath-0.01
+dpkg-source: building ttf-jsmath using existing ttf-jsmath_0.01.orig.tar.gz
+dpkg-source: building ttf-jsmath in ttf-jsmath_0.01-1.diff.gz
+dpkg-source: building ttf-jsmath in ttf-jsmath_0.01-1.dsc
+ debian/rules build
+dh_testdir
+# Add here commands to configure the package.
+touch configure-stamp
+dh_testdir
+# Add here commands to compile the package.
+#/usr/bin/make
+#docbook-to-man debian/ttf-jsmath.sgml > ttf-jsmath.1
+touch build-stamp
+ /usr/bin/fakeroot debian/rules binary
+dh_testdir
+dh_testroot
+dh_clean -k 
+dh_installdirs
+# Add here commands to install the package into debian/ttf-jsmath.
+#/usr/bin/make DESTDIR=/build/user/ttf-jsmath-0.01/debian/ttf-jsmath install
+install -m 0644 *.ttf /build/user/ttf-jsmath-0.01/debian/ttf-jsmath/usr/share/fonts/truetype/jsmath/
+dh_testdir
+dh_testroot
+dh_installchangelogs 
+dh_installdocs
+dh_installexamples
+dh_installdefoma
+make: dh_installdefoma: Command not found
+make: *** [binary-indep] Error 127
+dpkg-buildpackage: failure: /usr/bin/fakeroot debian/rules binary gave error exit status 2
+******************************************************************************
+Build finished at 20080308-1201
+FAILED [dpkg-buildpackage died]
+Purging /var/lib/schroot/mount/sid32-d5d66b39-32ef-40b3-aae1-a69d384d819a/build/user/ttf-jsmath-0.01
+------------------------------------------------------------------------------
+Not removing build depends: session managed chroot in use
+******************************************************************************
+Finished at 20080308-1201
+Build needed 00:00:01, 664k disk space
+DC-Build-Status: Failed 50.292711s
+DC-Time-Estimation: 50.292711 versus expected 32000 (r/m: 635.275105551578 ; m: 50.292711)




More information about the Collab-qa-commits mailing list