aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordancer <dancer>2005-07-13 22:02:20 +0000
committerdancer <dancer>2005-07-13 22:02:20 +0000
commit417fe5eb1c122390ca9e9ed41fc3aa2786b24248 (patch)
tree27c92d09cba50450a90e9c57f45f6bbbe18500e3
parent529189bf4f365be70fc15ba369440855f80a5cce (diff)
downloadpbuilder-417fe5eb1c122390ca9e9ed41fc3aa2786b24248.tar
pbuilder-417fe5eb1c122390ca9e9ed41fc3aa2786b24248.tar.gz
* pbuilder-buildpackage: change the use of su, to
allow su design change. Bug: 317264
-rw-r--r--ChangeLog5
-rw-r--r--debian/changelog5
-rwxr-xr-xpbuilder-buildpackage17
-rw-r--r--testsuite/normal/pbuilder-build-dsh-etch.log606
-rw-r--r--testsuite/normal/pbuilder-build-dsh-sarge.log82
-rw-r--r--testsuite/normal/pbuilder-build-dsh-sid.log608
-rw-r--r--testsuite/normal/pbuilder-create-etch.log120
-rw-r--r--testsuite/normal/pbuilder-create-sarge.log193
-rw-r--r--testsuite/normal/pbuilder-create-sid.log410
-rw-r--r--testsuite/normal/pbuilder-execute-etch.log18
-rw-r--r--testsuite/normal/pbuilder-execute-sarge.log6
-rw-r--r--testsuite/normal/pbuilder-execute-sid.log18
-rw-r--r--testsuite/normal/pbuilder-update-etch-sid-experimental.log95
-rw-r--r--testsuite/normal/pbuilder-update-etch-sid.log346
-rw-r--r--testsuite/normal/pbuilder-update-sarge-etch-sid-experimental.log67
-rw-r--r--testsuite/normal/pbuilder-update-sarge-etch-sid.log440
-rw-r--r--testsuite/normal/pbuilder-update-sarge-etch.log198
-rw-r--r--testsuite/normal/pdebuild-internal-etch.log591
-rw-r--r--testsuite/normal/pdebuild-internal-sarge.log211
-rw-r--r--testsuite/normal/pdebuild-internal-sid.log590
-rw-r--r--testsuite/normal/pdebuild-normal-etch.log619
-rw-r--r--testsuite/normal/pdebuild-normal-sarge.log89
-rw-r--r--testsuite/normal/pdebuild-normal-sid.log621
-rw-r--r--testsuite/run-test.log20
24 files changed, 809 insertions, 5166 deletions
diff --git a/ChangeLog b/ChangeLog
index f7b07bd..94de4d2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-07-14 Junichi Uekawa <dancer@debian.org>
+
+ * pbuilder-buildpackage: change the use of su, to
+ allow su design change. Bug: 317264
+
2005-07-13 Junichi Uekawa <dancer@debian.org>
* Documentation/pbuilder-doc.xml: added a reference
diff --git a/debian/changelog b/debian/changelog
index d50b18b..f54c208 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -3,13 +3,14 @@ pbuilder (0.129) UNRELEASED; urgency=low
* TODO items updated
* updated testsuite to test sid/sarge/etch and upgrades.
* changed manpages to use \- instead of - for dash.
+ * work around su change in Debian. c.f. login:317264
+ (closes: #317361)
TODO for this release:
gnupg install and new key install hooks.
- revert back to using --variant=buildd, depends on 314858.
- - work with new version of su.
- -- Junichi Uekawa <dancer@debian.org> Sun, 10 Jul 2005 20:03:34 +0900
+ -- Junichi Uekawa <dancer@debian.org> Thu, 14 Jul 2005 06:12:38 +0900
pbuilder (0.128) unstable; urgency=low
diff --git a/pbuilder-buildpackage b/pbuilder-buildpackage
index 2d6a7b2..71c2c91 100755
--- a/pbuilder-buildpackage
+++ b/pbuilder-buildpackage
@@ -31,14 +31,15 @@ if [ ! -f "$PACKAGENAME" ]; then
exit 1;
fi;
+# due to
if [ -n "$BUILDUSERNAME" -a -n "$BUILDUSERID" ]; then
- SUTOUSER="su -p $BUILDUSERNAME -- "
+ SUTOUSER="su -p $BUILDUSERNAME"
DEBBUILDOPTS="$DEBBUILDOPTS -rfakeroot"
EXTRAPACKAGES="${EXTRAPACKAGES} fakeroot"
echo "I: using fakeroot in build."
else
# run the build in root
- SUTOUSER=""
+ SUTOUSER="su "
BUILDUSERID=0
BUILDUSERNAME=root
fi
@@ -81,7 +82,15 @@ echo "Copying source file"
copydsc "$PACKAGENAME" "$BUILDPLACE/tmp/buildd"
echo "Extracting source"
-if ! $CHROOTEXEC /bin/bash -c "( cd tmp/buildd; chown $BUILDUSERNAME:$BUILDUSERNAME ../buildd *; $SUTOUSER /usr/bin/dpkg-source -x $(basename $PACKAGENAME) )"; then
+if echo "chown $BUILDUSERNAME:$BUILDUSERNAME /tmp/buildd /tmp/buildd/*" | $CHROOTEXEC /bin/bash; then
+ : # success
+else
+ echo "pbuilder: Failed chowning to $BUILDUSERNAME:$BUILDUSERNAME" >&2
+ exit 1;
+fi
+if echo "( cd tmp/buildd; /usr/bin/dpkg-source -x $(basename $PACKAGENAME) )" | $CHROOTEXEC $SUTOUSER ; then
+ : # success
+else
echo "pbuilder: Failed extracting the source" >&2
exit 1;
fi
@@ -98,7 +107,7 @@ fi
(
: Build process
- echo "${DPKG_COMMANDLINE}" | $CHROOTEXEC $SUTOUSER /bin/bash
+ echo "${DPKG_COMMANDLINE}" | $CHROOTEXEC $SUTOUSER
) &
BUILD_PID=$!
if [ -n "${TIMEOUT_TIME}" ]; then
diff --git a/testsuite/normal/pbuilder-build-dsh-etch.log b/testsuite/normal/pbuilder-build-dsh-etch.log
index 7fa52dc..a604eb0 100644
--- a/testsuite/normal/pbuilder-build-dsh-etch.log
+++ b/testsuite/normal/pbuilder-build-dsh-etch.log
@@ -1,603 +1,13 @@
I: using fakeroot in build.
-pbuilder-buildpackage/i386 $Id$
+pbuilder-buildpackage/powerpc $Id$
$Id$
-Current time: Sun Jul 3 20:48:34 JST 2005
-pbuilder-time-stamp: 1120391314
+Current time: Thu Jul 14 06:59:40 JST 2005
+pbuilder-time-stamp: 1121291980
Building the build Environment
- -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/testimage]
- -> creating local configuration
- -> copying local configuration
- -> mounting /proc filesystem
- -> mounting /dev/pts filesystem
- -> policy-rc.d already exists
- -> created buildresult dir :/var/cache/pbuilder/result/
-Installing the build-deps
- -> Attempting to parse the build-deps : pbuilder-satisfydepends,v 1.19 2005/06/03 12:07:39 dancer Exp $
- -> Considering debhelper (>> 3.0.0)
- -> Trying debhelper
- -> Considering libdshconfig1-dev (>= 0.20.11-1)
- -> Trying libdshconfig1-dev
- -> Installing debhelper libdshconfig1-dev
-Reading Package Lists...
-Building Dependency Tree...
-The following extra packages will be installed:
- debconf-utils file gettext html2text intltool-debian libdshconfig1 libmagic1
- po-debconf
-Suggested packages:
- dh-make cvs gettext-doc
-Recommended packages:
- curl libmail-sendmail-perl libcompress-zlib-perl
-The following NEW packages will be installed:
- debconf-utils debhelper file gettext html2text intltool-debian libdshconfig1
- libdshconfig1-dev libmagic1 po-debconf
-0 upgraded, 10 newly installed, 0 to remove and 0 not upgraded.
-Need to get 2641kB of archives.
-After unpacking 8380kB of additional disk space will be used.
-Get:1 http://ring.asahi-net.or.jp etch/main libmagic1 4.12-1 [233kB]
-Get:2 http://ring.asahi-net.or.jp etch/main file 4.12-1 [28.6kB]
-Get:3 http://ring.asahi-net.or.jp etch/main debconf-utils 1.4.51 [33.0kB]
-Get:4 http://ring.asahi-net.or.jp etch/main html2text 1.3.2a-2 [92.6kB]
-Get:5 http://ring.asahi-net.or.jp etch/main gettext 0.14.5-1 [1767kB]
-Get:6 http://ring.asahi-net.or.jp etch/main intltool-debian 0.30+20040213 [23.5kB]
-Get:7 http://ring.asahi-net.or.jp etch/main po-debconf 0.8.23 [78.0kB]
-Get:8 http://ring.asahi-net.or.jp etch/main debhelper 4.9.1 [363kB]
-Get:9 http://ring.asahi-net.or.jp etch/main libdshconfig1 0.20.11-1 [10.7kB]
-Get:10 http://ring.asahi-net.or.jp etch/main libdshconfig1-dev 0.20.11-1 [12.4kB]
-Fetched 2641kB in 0s (4979kB/s)
-Selecting previously deselected package libmagic1.
-(Reading database ... 11038 files and directories currently installed.)
-Unpacking libmagic1 (from .../libmagic1_4.12-1_i386.deb) ...
-Selecting previously deselected package file.
-Unpacking file (from .../archives/file_4.12-1_i386.deb) ...
-Selecting previously deselected package debconf-utils.
-Unpacking debconf-utils (from .../debconf-utils_1.4.51_all.deb) ...
-Selecting previously deselected package html2text.
-Unpacking html2text (from .../html2text_1.3.2a-2_i386.deb) ...
-Selecting previously deselected package gettext.
-Unpacking gettext (from .../gettext_0.14.5-1_i386.deb) ...
-Selecting previously deselected package intltool-debian.
-Unpacking intltool-debian (from .../intltool-debian_0.30+20040213_all.deb) ...
-Selecting previously deselected package po-debconf.
-Unpacking po-debconf (from .../po-debconf_0.8.23_all.deb) ...
-Selecting previously deselected package debhelper.
-Unpacking debhelper (from .../debhelper_4.9.1_all.deb) ...
-Selecting previously deselected package libdshconfig1.
-Unpacking libdshconfig1 (from .../libdshconfig1_0.20.11-1_i386.deb) ...
-Selecting previously deselected package libdshconfig1-dev.
-Unpacking libdshconfig1-dev (from .../libdshconfig1-dev_0.20.11-1_i386.deb) ...
-Setting up libmagic1 (4.12-1) ...
+ -> extracting base tarball [/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/testimage]
-Setting up file (4.12-1) ...
-Setting up debconf-utils (1.4.51) ...
-
-Setting up html2text (1.3.2a-2) ...
-
-Setting up gettext (0.14.5-1) ...
-
-Setting up intltool-debian (0.30+20040213) ...
-Setting up po-debconf (0.8.23) ...
-Setting up debhelper (4.9.1) ...
-Setting up libdshconfig1 (0.20.11-1) ...
-
-Setting up libdshconfig1-dev (0.20.11-1) ...
- -> Finished parsing the build-deps
-Reading Package Lists...
-Building Dependency Tree...
-The following NEW packages will be installed:
- fakeroot
-0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
-Need to get 70.4kB of archives.
-After unpacking 201kB of additional disk space will be used.
-Get:1 http://ring.asahi-net.or.jp etch/main fakeroot 1.3 [70.4kB]
-Fetched 70.4kB in 0s (781kB/s)
-Selecting previously deselected package fakeroot.
-(Reading database ... 11581 files and directories currently installed.)
-Unpacking fakeroot (from .../archives/fakeroot_1.3_i386.deb) ...
-Setting up fakeroot (1.3) ...
-
-Copying source file
- -> copying [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir1/dsh_0.25.6-1.dsc]
- -> copying [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir1/dsh_0.25.6.orig.tar.gz]
- -> copying [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir1/dsh_0.25.6-1.diff.gz]
-Extracting source
-dpkg-source: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-dpkg-source: extracting dsh in dsh-0.25.6
- -> Building the package
-dpkg-parsechangelog: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-debian: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-dpkg-buildpackage: source package is dsh
-dpkg-parsechangelog: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-debian: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-dpkg-buildpackage: source version is 0.25.6-1
-dpkg-architecture: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-dpkg-architecture: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-dpkg-buildpackage: host architecture is i386
-dpkg-checkbuilddeps: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-dpkg-architecture: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-dpkg-architecture: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
- fakeroot debian/rules clean
-dh_testdir
-dh_testroot
-rm -f build-stamp configure-stamp
-/usr/bin/make clean
-make[1]: Entering directory `/tmp/buildd/dsh-0.25.6'
-make[1]: *** No rule to make target `clean'. Stop.
-make[1]: Leaving directory `/tmp/buildd/dsh-0.25.6'
-make: [clean] Error 2 (ignored)
-/usr/bin/make distclean
-make[1]: Entering directory `/tmp/buildd/dsh-0.25.6'
-make[1]: *** No rule to make target `distclean'. Stop.
-make[1]: Leaving directory `/tmp/buildd/dsh-0.25.6'
-make: [clean] Error 2 (ignored)
-dh_clean
- dpkg-source -b dsh-0.25.6
-dpkg-source: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-dpkg-parsechangelog: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-debian: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-dpkg-source: building dsh using existing dsh_0.25.6.orig.tar.gz
-dpkg-source: building dsh in dsh_0.25.6-1.diff.gz
-dpkg-source: warning: file dcp.sh has no final newline (either original or modified version)
-dpkg-source: warning: file debian/compat has no final newline (either original or modified version)
-dpkg-source: building dsh in dsh_0.25.6-1.dsc
- debian/rules build
-dh_testdir
-INSTALL_PROGRAM='install -p -o root -g root -m 755 -s' CFLAGS='-Wall -g -O2' \
- ./configure --prefix=/usr --sysconfdir=/etc/dsh --mandir=/usr/share/man
-checking for a BSD-compatible install... /usr/bin/install -c
-checking whether build environment is sane... yes
-checking for gawk... no
-checking for mawk... mawk
-checking whether make sets $(MAKE)... yes
-checking whether to enable maintainer-specific portions of Makefiles... no
-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 ANSI C... none needed
-checking dependency style of gcc... gcc3
-checking for library containing strerror... none required
-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 ANSI C... (cached) none needed
-checking dependency style of gcc... (cached) gcc3
-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 ANSI C... (cached) none needed
-checking dependency style of gcc... (cached) gcc3
-checking whether make sets $(MAKE)... (cached) yes
-checking how to run the C preprocessor... gcc -E
-checking for egrep... grep -E
-checking for ANSI C header files... yes
-checking for sys/wait.h that is POSIX.1 compatible... yes
-checking build system type... i686-pc-linux-gnu
-checking host system type... i686-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 recognise 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++... gcc3
-checking how to run the C++ preprocessor... g++ -E
-checking for g77... no
-checking for f77... no
-checking for xlf... no
-checking for frt... no
-checking for pgf77... no
-checking for fort77... no
-checking for fl32... no
-checking for af77... no
-checking for f90... no
-checking for xlf90... no
-checking for pgf90... no
-checking for epcf90... no
-checking for f95... no
-checking for fort... no
-checking for xlf95... no
-checking for ifc... no
-checking for efc... no
-checking for pgf95... no
-checking for lf95... no
-checking for gfortran... 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... 32768
-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 static flag works... yes
-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 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... yes
-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++ 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
-checking whether stripping libraries is possible... yes
-appending configuration tag "F77" to libtool
-checking for an ANSI C-conforming const... yes
-checking for msgfmt... /usr/bin/msgfmt
-checking for gmsgfmt... /usr/bin/msgfmt
-checking for xgettext... /usr/bin/xgettext
-checking for msgmerge... /usr/bin/msgmerge
-checking for ld used by GCC... /usr/bin/ld
-checking if the linker (/usr/bin/ld) is GNU ld... yes
-checking for shared library run path origin... done
-checking whether NLS is requested... yes
-checking for GNU gettext in libc... yes
-checking for gettext... yes
-checking getopt.h usability... yes
-checking getopt.h presence... yes
-checking for getopt.h... yes
-checking fcntl.h usability... yes
-checking fcntl.h presence... yes
-checking for fcntl.h... yes
-checking libintl.h usability... yes
-checking libintl.h presence... yes
-checking for libintl.h... yes
-checking locale.h usability... yes
-checking locale.h presence... yes
-checking for locale.h... yes
-checking for stdlib.h... (cached) yes
-checking netdb.h usability... yes
-checking netdb.h presence... yes
-checking for netdb.h... yes
-checking for string.h... (cached) yes
-checking for unistd.h... (cached) yes
-checking netgroup.h usability... no
-checking netgroup.h presence... no
-checking for netgroup.h... no
-checking signal.h usability... yes
-checking signal.h presence... yes
-checking for signal.h... yes
-checking for libdshconfig.h ... yes
-checking for asprintf... yes
-checking for strdup... yes
-checking for getopt_long... yes
-checking for getline... yes
-checking for dup2... yes
-checking for setlocale... yes
-checking for strcasecmp... yes
-checking for strchr... yes
-checking for setnetgrent... yes
-checking for getnetgrent... yes
-checking for endnetgrent... yes
-checking for open_dshconfig in -ldshconfig... yes
-checking netdb.h has setnetgrent that returns void... no
-checking getopt with a GNU option reordering extention... yes, disabling
-configure: creating ./config.status
-config.status: creating po/Makefile.in
-config.status: creating m4/Makefile
-config.status: creating Makefile
-config.status: creating config.h
-config.status: executing depfiles commands
-config.status: executing default-1 commands
-config.status: creating po/POTFILES
-config.status: creating po/Makefile
-touch configure-stamp
-dh_testdir
-/usr/bin/make
-make[1]: Entering directory `/tmp/buildd/dsh-0.25.6'
-/usr/bin/make all-recursive
-make[2]: Entering directory `/tmp/buildd/dsh-0.25.6'
-Making all in m4
-make[3]: Entering directory `/tmp/buildd/dsh-0.25.6/m4'
-make[3]: Nothing to be done for `all'.
-make[3]: Leaving directory `/tmp/buildd/dsh-0.25.6/m4'
-Making all in po
-make[3]: Entering directory `/tmp/buildd/dsh-0.25.6/po'
-make[3]: Nothing to be done for `all'.
-make[3]: Leaving directory `/tmp/buildd/dsh-0.25.6/po'
-make[3]: Entering directory `/tmp/buildd/dsh-0.25.6'
-if gcc -DHAVE_CONFIG_H -I. -I. -I. -DDSHCONFDIR="\"/etc/dsh\"" -DDSH_COMMANDLINE="\"/usr/bin/dsh\"" -DLOCALEDIR="\"/usr/share/locale\"" -Wall -g -O2 -MT dsh-dsh.o -MD -MP -MF ".deps/dsh-dsh.Tpo" -c -o dsh-dsh.o `test -f 'dsh.c' || echo './'`dsh.c; \
-then mv -f ".deps/dsh-dsh.Tpo" ".deps/dsh-dsh.Po"; else rm -f ".deps/dsh-dsh.Tpo"; exit 1; fi
-if gcc -DHAVE_CONFIG_H -I. -I. -I. -DDSHCONFDIR="\"/etc/dsh\"" -DDSH_COMMANDLINE="\"/usr/bin/dsh\"" -DLOCALEDIR="\"/usr/share/locale\"" -Wall -g -O2 -MT dsh-linkedlist.o -MD -MP -MF ".deps/dsh-linkedlist.Tpo" -c -o dsh-linkedlist.o `test -f 'linkedlist.c' || echo './'`linkedlist.c; \
-then mv -f ".deps/dsh-linkedlist.Tpo" ".deps/dsh-linkedlist.Po"; else rm -f ".deps/dsh-linkedlist.Tpo"; exit 1; fi
-if gcc -DHAVE_CONFIG_H -I. -I. -I. -DDSHCONFDIR="\"/etc/dsh\"" -DDSH_COMMANDLINE="\"/usr/bin/dsh\"" -DLOCALEDIR="\"/usr/share/locale\"" -Wall -g -O2 -MT dsh-parameter.o -MD -MP -MF ".deps/dsh-parameter.Tpo" -c -o dsh-parameter.o `test -f 'parameter.c' || echo './'`parameter.c; \
-then mv -f ".deps/dsh-parameter.Tpo" ".deps/dsh-parameter.Po"; else rm -f ".deps/dsh-parameter.Tpo"; exit 1; fi
-/bin/sh ./libtool --mode=link gcc -Wall -g -O2 -o dsh dsh-dsh.o dsh-linkedlist.o dsh-parameter.o -ldshconfig
-mkdir .libs
-gcc -Wall -g -O2 -o dsh dsh-dsh.o dsh-linkedlist.o dsh-parameter.o /usr/lib/libdshconfig.so
-mkdir build-man
-sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.1 > build-man/dsh.1
-sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.conf.5 > build-man/dsh.conf.5
-make[3]: Leaving directory `/tmp/buildd/dsh-0.25.6'
-make[2]: Leaving directory `/tmp/buildd/dsh-0.25.6'
-make[1]: Leaving directory `/tmp/buildd/dsh-0.25.6'
-/usr/bin/make check
-make[1]: Entering directory `/tmp/buildd/dsh-0.25.6'
-Making check in m4
-make[2]: Entering directory `/tmp/buildd/dsh-0.25.6/m4'
-make[2]: Nothing to be done for `check'.
-make[2]: Leaving directory `/tmp/buildd/dsh-0.25.6/m4'
-Making check in po
-make[2]: Entering directory `/tmp/buildd/dsh-0.25.6/po'
-make[2]: Nothing to be done for `check'.
-make[2]: Leaving directory `/tmp/buildd/dsh-0.25.6/po'
-make[2]: Entering directory `/tmp/buildd/dsh-0.25.6'
-/usr/bin/make dsh
-make[3]: Entering directory `/tmp/buildd/dsh-0.25.6'
-make[3]: `dsh' is up to date.
-make[3]: Leaving directory `/tmp/buildd/dsh-0.25.6'
-/usr/bin/make check-TESTS
-make[3]: Entering directory `/tmp/buildd/dsh-0.25.6'
-PASS: tests/param-f.sh
-dsh: File ./tests/nonexistent.file could not be opened for read
-PASS: tests/param-f-fail.sh
-PASS: tests/param-f-with-space.sh
-PASS: tests/param-m.sh
-test to check that unknown parameter checking is right.
-./dsh: unrecognized option `--unknown-parameter'
-./dsh: invalid option -- u
-PASS: tests/param-unknown.sh
-test1
-test2
-dsh: Process terminated (before write).
-PASS: tests/param-i.sh
-Check that cn4 option is working.
-PASS: tests/param-cn4.sh
-test to check that -b0 is rejected, and -b1 is accepted
-Buffer size needs to be greater than 1
-Buffer size needs to be greater than 1
-a
-b
-PASS: tests/param-b-0.sh
-dsh: Failed executing ./invalid-exec-file with llexec call
-dsh: Failed executing ./invalid-exec-file with llexec call
-dsh: Failed executing ./invalid-exec-file with llexec call
-dsh: Failed executing ./invalid-exec-file with llexec call
-success
-dsh: Failed executing ./invalid-exec-file with llexec call
-dsh: Failed executing ./invalid-exec-file with llexec call
-dsh: Failed executing ./invalid-exec-file with llexec call
-dsh: Failed executing ./invalid-exec-file with llexec call
-success
-success
-success
-success
-success
-a: dsh: Failed executing ./invalid-exec-file with llexec call
-b: dsh: Failed executing ./invalid-exec-file with llexec call
-c: dsh: Failed executing ./invalid-exec-file with llexec call
-d: dsh: Failed executing ./invalid-exec-file with llexec call
-success
-dsh: Failed executing ./invalid-exec-file with llexec call
-dsh: Failed executing ./invalid-exec-file with llexec call
-dsh: Failed executing ./invalid-exec-file with llexec call
-dsh: Failed executing ./invalid-exec-file with llexec call
-success
-PASS: tests/param-r-invalid.sh
-1: 1
-2: 2
-dsh: fork limit and wait shell cannot be specified at the same time
-PASS: tests/param-F-invalid.sh
-Sun Jul 3 11:49:11 UTC 2005
-2: Using sleep as the remote shell
-2: Show machine names on output
-2: Adding machine 5,4,3,2,1 to list
-2: Setting forklimit to 3 and wait_shell to 0
-2: DUMPing parameters passed to llexec
-2: [2]
-Using sleep as the remote shell
-Show machine names on output
-Adding machine 5,4,3,2,1 to list
-Setting forklimit to 3 and wait_shell to 0
-DUMPing parameters passed to llexec
-[2]
-3: Using sleep as the remote shell
-3: Show machine names on output
-3: Adding machine 5,4,3,2,1 to list
-3: Setting forklimit to 3 and wait_shell to 0
-3: DUMPing parameters passed to llexec
-3: [3]
-Using sleep as the remote shell
-Show machine names on output
-Adding machine 5,4,3,2,1 to list
-Setting forklimit to 3 and wait_shell to 0
-DUMPing parameters passed to llexec
-[3]
-1: Using sleep as the remote shell
-1: Show machine names on output
-1: Adding machine 5,4,3,2,1 to list
-1: Setting forklimit to 3 and wait_shell to 0
-1: ... Waiting for process to end with waitpid
-1: DUMPing parameters passed to llexec
-1: [1]
-Using sleep as the remote shell
-Show machine names on output
-Adding machine 5,4,3,2,1 to list
-Setting forklimit to 3 and wait_shell to 0
-... Waiting for process to end with waitpid
-DUMPing parameters passed to llexec
-[1]
-4: Using sleep as the remote shell
-4: Show machine names on output
-4: Adding machine 5,4,3,2,1 to list
-4: Setting forklimit to 3 and wait_shell to 0
-4: DUMPing parameters passed to llexec
-4: [4]
-Using sleep as the remote shell
-Show machine names on output
-Adding machine 5,4,3,2,1 to list
-Setting forklimit to 3 and wait_shell to 0
-DUMPing parameters passed to llexec
-[4]
-5: Using sleep as the remote shell
-5: Show machine names on output
-5: Adding machine 5,4,3,2,1 to list
-5: Setting forklimit to 3 and wait_shell to 0
-5: DUMPing parameters passed to llexec
-5: [5]
-Using sleep as the remote shell
-Show machine names on output
-Adding machine 5,4,3,2,1 to list
-Setting forklimit to 3 and wait_shell to 0
-DUMPing parameters passed to llexec
-[5]
---- Terminated running
-Using sleep as the remote shell
-Show machine names on output
-Adding machine 5,4,3,2,1 to list
-Setting forklimit to 3 and wait_shell to 0
-... Waiting for process to end with waitpid
-... Waiting for process to end with waitpid
-Sun Jul 3 11:49:16 UTC 2005
-PASS: tests/param-F-forklimit.sh
-PASS: tests/param-gnu-getopt.sh
-PASS: tests/news-okay.sh
-a: a
-dsh: Process terminated (before write).
-b: b
-c: c
-PASS: tests/segv-catcher.sh
-l w
-PASS: tests/test-bufferoverflow.sh
-PASS: tests/machinelist-comment-test.sh
-PASS: tests/machinelist-order.sh
-===================
-All 17 tests passed
-===================
-make[3]: Leaving directory `/tmp/buildd/dsh-0.25.6'
-make[2]: Leaving directory `/tmp/buildd/dsh-0.25.6'
-make[1]: Leaving directory `/tmp/buildd/dsh-0.25.6'
-touch build-stamp
- fakeroot debian/rules binary
-dh_testdir
-dh_testroot
-dh_clean -k
-dh_installdirs
-# Add here commands to install the package into debian/dsh.
-/usr/bin/make install DESTDIR=/tmp/buildd/dsh-0.25.6/debian/dsh
-make[1]: Entering directory `/tmp/buildd/dsh-0.25.6'
-Making install in m4
-make[2]: Entering directory `/tmp/buildd/dsh-0.25.6/m4'
-make[3]: Entering directory `/tmp/buildd/dsh-0.25.6/m4'
-make[3]: Nothing to be done for `install-exec-am'.
-make[3]: Nothing to be done for `install-data-am'.
-make[3]: Leaving directory `/tmp/buildd/dsh-0.25.6/m4'
-make[2]: Leaving directory `/tmp/buildd/dsh-0.25.6/m4'
-Making install in po
-make[2]: Entering directory `/tmp/buildd/dsh-0.25.6/po'
-/bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /tmp/buildd/dsh-0.25.6/debian/dsh/usr/share
-mkdir -p -- /tmp/buildd/dsh-0.25.6/debian/dsh/usr/share
-mkdir -p -- /tmp/buildd/dsh-0.25.6/debian/dsh/usr/share/locale/ja/LC_MESSAGES
-installing ja.gmo as /tmp/buildd/dsh-0.25.6/debian/dsh/usr/share/locale/ja/LC_MESSAGES/dsh.mo
-if test "dsh" = "gettext"; then \
- /bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /tmp/buildd/dsh-0.25.6/debian/dsh/usr/share/gettext/po; \
- for file in Makefile.in.in Makevars remove-potcdate.sin ; do \
- /usr/bin/install -c -m 644 ./$file \
- /tmp/buildd/dsh-0.25.6/debian/dsh/usr/share/gettext/po/$file; \
- done; \
-else \
- : ; \
-fi
-make[2]: Leaving directory `/tmp/buildd/dsh-0.25.6/po'
-make[2]: Entering directory `/tmp/buildd/dsh-0.25.6'
-make[3]: Entering directory `/tmp/buildd/dsh-0.25.6'
-test -z "/usr/bin" || mkdir -p -- . "/tmp/buildd/dsh-0.25.6/debian/dsh/usr/bin"
- /bin/sh ./libtool --mode=install install -p -o root -g root -m 755 -s 'dsh' '/tmp/buildd/dsh-0.25.6/debian/dsh/usr/bin/dsh'
-install -p -o root -g root -m 755 -s dsh /tmp/buildd/dsh-0.25.6/debian/dsh/usr/bin/dsh
-test -z "/etc/dsh" || mkdir -p -- . "/tmp/buildd/dsh-0.25.6/debian/dsh/etc/dsh"
- /usr/bin/install -c -m 644 'dsh.conf' '/tmp/buildd/dsh-0.25.6/debian/dsh/etc/dsh/dsh.conf'
-for LANGS in ja ; do \
- mkdir -p /tmp/buildd/dsh-0.25.6/debian/dsh/usr/share/man/$LANGS/man1 ;\
- mkdir -p /tmp/buildd/dsh-0.25.6/debian/dsh/usr/share/man/$LANGS/man5 ;\
- sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.$LANGS.1 \
- > /tmp/buildd/dsh-0.25.6/debian/dsh/usr/share/man/$LANGS/man1/dsh.1 ; \
- sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.conf.$LANGS.5 \
- > /tmp/buildd/dsh-0.25.6/debian/dsh/usr/share/man/$LANGS/man5/dsh.conf.5 ; \
-done
-test -z "/usr/share/man/man1" || mkdir -p -- . "/tmp/buildd/dsh-0.25.6/debian/dsh/usr/share/man/man1"
- /usr/bin/install -c -m 644 './build-man/dsh.1' '/tmp/buildd/dsh-0.25.6/debian/dsh/usr/share/man/man1/dsh.1'
-test -z "/usr/share/man/man5" || mkdir -p -- . "/tmp/buildd/dsh-0.25.6/debian/dsh/usr/share/man/man5"
- /usr/bin/install -c -m 644 './build-man/dsh.conf.5' '/tmp/buildd/dsh-0.25.6/debian/dsh/usr/share/man/man5/dsh.conf.5'
-make[3]: Leaving directory `/tmp/buildd/dsh-0.25.6'
-make[2]: Leaving directory `/tmp/buildd/dsh-0.25.6'
-make[1]: Leaving directory `/tmp/buildd/dsh-0.25.6'
-cp /tmp/buildd/dsh-0.25.6/debian/machines.list /tmp/buildd/dsh-0.25.6/debian/dsh/etc/dsh/machines.list
-cp /tmp/buildd/dsh-0.25.6/dsh.conf /tmp/buildd/dsh-0.25.6/debian/dsh/etc/dsh/dsh.conf
-ln -s ../machines.list /tmp/buildd/dsh-0.25.6/debian/dsh/etc/dsh/group/all
-install -d /tmp/buildd/dsh-0.25.6/debian/dsh/usr/lib/update-cluster
-install -m 755 /tmp/buildd/dsh-0.25.6/debian/dsh.updatelist /tmp/buildd/dsh-0.25.6/debian/dsh/usr/lib/update-cluster/
-dh_testdir
-dh_testroot
-dh_installdocs NEWS
-dh_installexamples
-dh_installmenu
-dh_installman
-dh_installchangelogs ChangeLog
-dpkg-parsechangelog: warning: no utmp entry available and LOGNAME not defined; using uid of process (0)
-debian: warning: no utmp entry available and LOGNAME not defined; using uid of process (0)
-dh_link
-dh_strip
-dh_shlibdeps
-dpkg-shlibdeps: warning: no utmp entry available and LOGNAME not defined; using uid of process (0)
-dh_compress
-dh_fixperms
-dh_installdeb
-dh_gencontrol
-dpkg-gencontrol: warning: no utmp entry available and LOGNAME not defined; using uid of process (0)
-dpkg-architecture: warning: no utmp entry available and LOGNAME not defined; using uid of process (0)
-dpkg-parsechangelog: warning: no utmp entry available and LOGNAME not defined; using uid of process (0)
-debian: warning: no utmp entry available and LOGNAME not defined; using uid of process (0)
-dpkg-architecture: warning: no utmp entry available and LOGNAME not defined; using uid of process (0)
-dh_md5sums
-dh_builddeb
-dpkg-deb: building package `dsh' in `../dsh_0.25.6-1_i386.deb'.
- dpkg-genchanges -mJunichi Uekawa <dancer@debian.org>
-dpkg-genchanges: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-dpkg-architecture: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-dpkg-parsechangelog: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-debian: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-dpkg-genchanges: including full source code in upload
-dpkg-buildpackage: full upload (original source is included)
- -> Terminate timeout process
-/usr/lib/pbuilder/pbuilder-buildpackage: line 126: 11543 Terminated ( : Timeout process; sleep "${TIMEOUT_TIME}"; echo " -> Terminating build process due to timeout "; kill ${BUILD_PID} || true )
- -> unmounting dev/pts filesystem
- -> unmounting proc filesystem
-Current time: Sun Jul 3 20:49:18 JST 2005
-pbuilder-time-stamp: 1120391358
- -> cleaning the build env
- -> removing directory /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir1/11257 and its subdirectories
+gzip: stdin: unexpected end of file
+tar: Child returned status 1
+tar: Error exit delayed from previous errors
+E: failed to extract /home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/testimage to /home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir1/7610
diff --git a/testsuite/normal/pbuilder-build-dsh-sarge.log b/testsuite/normal/pbuilder-build-dsh-sarge.log
index 2a29907..e433a81 100644
--- a/testsuite/normal/pbuilder-build-dsh-sarge.log
+++ b/testsuite/normal/pbuilder-build-dsh-sarge.log
@@ -1,17 +1,18 @@
I: using fakeroot in build.
-pbuilder-buildpackage/i386 $Id$
+pbuilder-buildpackage/powerpc $Id$
$Id$
-Current time: Sun Jul 3 20:42:15 JST 2005
-pbuilder-time-stamp: 1120390935
+Current time: Thu Jul 14 06:12:45 JST 2005
+pbuilder-time-stamp: 1121289165
Building the build Environment
- -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/testimage]
+ -> extracting base tarball [/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/testimage]
-> creating local configuration
-> copying local configuration
-> mounting /proc filesystem
-> mounting /dev/pts filesystem
-> policy-rc.d already exists
-> created buildresult dir :/var/cache/pbuilder/result/
+Obtaining the cached apt archive contents
Installing the build-deps
-> Attempting to parse the build-deps : pbuilder-satisfydepends,v 1.19 2005/06/03 12:07:39 dancer Exp $
-> Considering debhelper (>> 3.0.0)
@@ -32,30 +33,19 @@ The following NEW packages will be installed:
debconf-utils debhelper file gettext html2text intltool-debian libdshconfig1
libdshconfig1-dev libmagic1 po-debconf
0 upgraded, 10 newly installed, 0 to remove and 0 not upgraded.
-Need to get 2591kB of archives.
-After unpacking 8679kB of additional disk space will be used.
-Get:1 http://ring.asahi-net.or.jp sarge/main libmagic1 4.12-1 [233kB]
-Get:2 http://ring.asahi-net.or.jp sarge/main file 4.12-1 [28.6kB]
-Get:3 http://ring.asahi-net.or.jp sarge/main debconf-utils 1.4.30.13 [33.0kB]
-Get:4 http://ring.asahi-net.or.jp sarge/main html2text 1.3.2a-2 [92.6kB]
-Get:5 http://ring.asahi-net.or.jp sarge/main gettext 0.14.4-2 [1718kB]
-Get:6 http://ring.asahi-net.or.jp sarge/main intltool-debian 0.30+20040213 [23.5kB]
-Get:7 http://ring.asahi-net.or.jp sarge/main po-debconf 0.8.23 [78.0kB]
-Get:8 http://ring.asahi-net.or.jp sarge/main debhelper 4.2.32 [362kB]
-Get:9 http://ring.asahi-net.or.jp sarge/main libdshconfig1 0.20.11-1 [10.7kB]
-Get:10 http://ring.asahi-net.or.jp sarge/main libdshconfig1-dev 0.20.11-1 [12.4kB]
-Fetched 2591kB in 0s (2921kB/s)
+Need to get 0B/2641kB of archives.
+After unpacking 8970kB of additional disk space will be used.
Selecting previously deselected package libmagic1.
-(Reading database ... 11040 files and directories currently installed.)
-Unpacking libmagic1 (from .../libmagic1_4.12-1_i386.deb) ...
+(Reading database ... 10865 files and directories currently installed.)
+Unpacking libmagic1 (from .../libmagic1_4.12-1_powerpc.deb) ...
Selecting previously deselected package file.
-Unpacking file (from .../archives/file_4.12-1_i386.deb) ...
+Unpacking file (from .../file_4.12-1_powerpc.deb) ...
Selecting previously deselected package debconf-utils.
Unpacking debconf-utils (from .../debconf-utils_1.4.30.13_all.deb) ...
Selecting previously deselected package html2text.
-Unpacking html2text (from .../html2text_1.3.2a-2_i386.deb) ...
+Unpacking html2text (from .../html2text_1.3.2a-2_powerpc.deb) ...
Selecting previously deselected package gettext.
-Unpacking gettext (from .../gettext_0.14.4-2_i386.deb) ...
+Unpacking gettext (from .../gettext_0.14.4-2_powerpc.deb) ...
Selecting previously deselected package intltool-debian.
Unpacking intltool-debian (from .../intltool-debian_0.30+20040213_all.deb) ...
Selecting previously deselected package po-debconf.
@@ -63,9 +53,9 @@ Unpacking po-debconf (from .../po-debconf_0.8.23_all.deb) ...
Selecting previously deselected package debhelper.
Unpacking debhelper (from .../debhelper_4.2.32_all.deb) ...
Selecting previously deselected package libdshconfig1.
-Unpacking libdshconfig1 (from .../libdshconfig1_0.20.11-1_i386.deb) ...
+Unpacking libdshconfig1 (from .../libdshconfig1_0.20.11-1_powerpc.deb) ...
Selecting previously deselected package libdshconfig1-dev.
-Unpacking libdshconfig1-dev (from .../libdshconfig1-dev_0.20.11-1_i386.deb) ...
+Unpacking libdshconfig1-dev (from .../libdshconfig1-dev_0.20.11-1_powerpc.deb) ...
Setting up libmagic1 (4.12-1) ...
Setting up file (4.12-1) ...
@@ -87,19 +77,18 @@ Building Dependency Tree...
The following NEW packages will be installed:
fakeroot
0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
-Need to get 70.5kB of archives.
-After unpacking 201kB of additional disk space will be used.
-Get:1 http://ring.asahi-net.or.jp sarge/main fakeroot 1.2.10 [70.5kB]
-Fetched 70.5kB in 0s (949kB/s)
+Need to get 0B/81.8kB of archives.
+After unpacking 315kB of additional disk space will be used.
Selecting previously deselected package fakeroot.
-(Reading database ... 11582 files and directories currently installed.)
-Unpacking fakeroot (from .../fakeroot_1.2.10_i386.deb) ...
+(Reading database ... 11407 files and directories currently installed.)
+Unpacking fakeroot (from .../fakeroot_1.2.10_powerpc.deb) ...
Setting up fakeroot (1.2.10) ...
+Copying back the cached apt archive contents
Copying source file
- -> copying [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir1/dsh_0.25.6-1.dsc]
- -> copying [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir1/dsh_0.25.6.orig.tar.gz]
- -> copying [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir1/dsh_0.25.6-1.diff.gz]
+ -> copying [/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir1/dsh_0.25.6-1.dsc]
+ -> copying [/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir1/dsh_0.25.6.orig.tar.gz]
+ -> copying [/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir1/dsh_0.25.6-1.diff.gz]
Extracting source
dpkg-source: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
dpkg-source: extracting dsh in dsh-0.25.6
@@ -112,7 +101,7 @@ debian: warning: no utmp entry available and LOGNAME not defined; using uid of p
dpkg-buildpackage: source version is 0.25.6-1
dpkg-architecture: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
dpkg-architecture: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-dpkg-buildpackage: host architecture is i386
+dpkg-buildpackage: host architecture is powerpc
dpkg-checkbuilddeps: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
dpkg-architecture: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
dpkg-architecture: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
@@ -177,8 +166,8 @@ checking how to run the C preprocessor... gcc -E
checking for egrep... grep -E
checking for ANSI C header files... yes
checking for sys/wait.h that is POSIX.1 compatible... yes
-checking build system type... i686-pc-linux-gnu
-checking host system type... i686-pc-linux-gnu
+checking build system type... powerpc-unknown-linux-gnu
+checking host system type... powerpc-unknown-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
@@ -357,9 +346,9 @@ make[2]: Entering directory `/tmp/buildd/dsh-0.25.6/po'
make[2]: Nothing to be done for `check'.
make[2]: Leaving directory `/tmp/buildd/dsh-0.25.6/po'
make[2]: Entering directory `/tmp/buildd/dsh-0.25.6'
+sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.1 > build-man/dsh.1
/usr/bin/make dsh
make[3]: Entering directory `/tmp/buildd/dsh-0.25.6'
-make[3]: `dsh' is up to date.
make[3]: Leaving directory `/tmp/buildd/dsh-0.25.6'
/usr/bin/make check-TESTS
make[3]: Entering directory `/tmp/buildd/dsh-0.25.6'
@@ -409,11 +398,11 @@ dsh: Failed executing ./invalid-exec-file with llexec call
dsh: Failed executing ./invalid-exec-file with llexec call
success
PASS: tests/param-r-invalid.sh
-2: 2
1: 1
+2: 2
dsh: fork limit and wait shell cannot be specified at the same time
PASS: tests/param-F-invalid.sh
-Sun Jul 3 11:43:06 UTC 2005
+Wed Jul 13 21:16:22 UTC 2005
2: Using sleep as the remote shell
2: Show machine names on output
2: Adding machine 5,4,3,2,1 to list
@@ -483,14 +472,14 @@ Adding machine 5,4,3,2,1 to list
Setting forklimit to 3 and wait_shell to 0
... Waiting for process to end with waitpid
... Waiting for process to end with waitpid
-Sun Jul 3 11:43:11 UTC 2005
+Wed Jul 13 21:16:27 UTC 2005
PASS: tests/param-F-forklimit.sh
PASS: tests/param-gnu-getopt.sh
PASS: tests/news-okay.sh
a: a
+b: b
dsh: Process terminated (before write).
c: c
-b: b
PASS: tests/segv-catcher.sh
l w
PASS: tests/test-bufferoverflow.sh
@@ -585,7 +574,7 @@ debian: warning: no utmp entry available and LOGNAME not defined; using uid of p
dpkg-architecture: warning: no utmp entry available and LOGNAME not defined; using uid of process (0)
dh_md5sums
dh_builddeb
-dpkg-deb: building package `dsh' in `../dsh_0.25.6-1_i386.deb'.
+dpkg-deb: building package `dsh' in `../dsh_0.25.6-1_powerpc.deb'.
dpkg-genchanges -mJunichi Uekawa <dancer@debian.org>
dpkg-genchanges: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
dpkg-architecture: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
@@ -593,11 +582,10 @@ dpkg-parsechangelog: warning: no utmp entry available and LOGNAME not defined; u
debian: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
dpkg-genchanges: including full source code in upload
dpkg-buildpackage: full upload (original source is included)
- -> Terminate timeout process
+Copying back the cached apt archive contents
-> unmounting dev/pts filesystem
-/usr/lib/pbuilder/pbuilder-modules: line 88: 13978 Terminated ( : Timeout process; sleep "${TIMEOUT_TIME}"; echo " -> Terminating build process due to timeout "; kill ${BUILD_PID} || true )
-> unmounting proc filesystem
-Current time: Sun Jul 3 20:43:13 JST 2005
-pbuilder-time-stamp: 1120390993
+Current time: Thu Jul 14 06:17:05 JST 2005
+pbuilder-time-stamp: 1121289425
-> cleaning the build env
- -> removing directory /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir1/13366 and its subdirectories
+ -> removing directory /home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir1/2217 and its subdirectories
diff --git a/testsuite/normal/pbuilder-build-dsh-sid.log b/testsuite/normal/pbuilder-build-dsh-sid.log
index ee22b67..8790cc0 100644
--- a/testsuite/normal/pbuilder-build-dsh-sid.log
+++ b/testsuite/normal/pbuilder-build-dsh-sid.log
@@ -1,605 +1,13 @@
I: using fakeroot in build.
-pbuilder-buildpackage/i386 $Id$
+pbuilder-buildpackage/powerpc $Id$
$Id$
-Current time: Sun Jul 3 20:37:44 JST 2005
-pbuilder-time-stamp: 1120390664
+Current time: Thu Jul 14 05:51:42 JST 2005
+pbuilder-time-stamp: 1121287902
Building the build Environment
- -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/testimage]
- -> creating local configuration
- -> copying local configuration
- -> mounting /proc filesystem
- -> mounting /dev/pts filesystem
- -> policy-rc.d already exists
- -> created buildresult dir :/var/cache/pbuilder/result/
-Installing the build-deps
- -> Attempting to parse the build-deps : pbuilder-satisfydepends,v 1.19 2005/06/03 12:07:39 dancer Exp $
- -> Considering debhelper (>> 3.0.0)
- -> Trying debhelper
- -> Considering libdshconfig1-dev (>= 0.20.11-1)
- -> Trying libdshconfig1-dev
- -> Installing debhelper libdshconfig1-dev
-Reading package lists...
-Building dependency tree...
-The following extra packages will be installed:
- debconf-utils file gettext html2text intltool-debian libdshconfig1 libmagic1
- po-debconf
-Suggested packages:
- dh-make cvs gettext-doc
-Recommended packages:
- curl libmail-sendmail-perl libcompress-zlib-perl
-The following NEW packages will be installed:
- debconf-utils debhelper file gettext html2text intltool-debian libdshconfig1
- libdshconfig1-dev libmagic1 po-debconf
-0 upgraded, 10 newly installed, 0 to remove and 0 not upgraded.
-Need to get 2642kB of archives.
-After unpacking 8380kB of additional disk space will be used.
-Get:1 http://ring.asahi-net.or.jp sid/main libmagic1 4.12-1 [233kB]
-Get:2 http://ring.asahi-net.or.jp sid/main file 4.12-1 [28.6kB]
-Get:3 http://ring.asahi-net.or.jp sid/main debconf-utils 1.4.51 [33.0kB]
-Get:4 http://ring.asahi-net.or.jp sid/main html2text 1.3.2a-2 [92.6kB]
-Get:5 http://ring.asahi-net.or.jp sid/main gettext 0.14.5-1 [1767kB]
-Get:6 http://ring.asahi-net.or.jp sid/main intltool-debian 0.30+20040213 [23.5kB]
-Get:7 http://ring.asahi-net.or.jp sid/main po-debconf 0.8.23 [78.0kB]
-Get:8 http://ring.asahi-net.or.jp sid/main debhelper 4.9.3 [363kB]
-Get:9 http://ring.asahi-net.or.jp sid/main libdshconfig1 0.20.11-1 [10.7kB]
-Get:10 http://ring.asahi-net.or.jp sid/main libdshconfig1-dev 0.20.11-1 [12.4kB]
-Fetched 2642kB in 1s (1568kB/s)
-Selecting previously deselected package libmagic1.
-(Reading database ... 10969 files and directories currently installed.)
-Unpacking libmagic1 (from .../libmagic1_4.12-1_i386.deb) ...
-Selecting previously deselected package file.
-Unpacking file (from .../archives/file_4.12-1_i386.deb) ...
-Selecting previously deselected package debconf-utils.
-Unpacking debconf-utils (from .../debconf-utils_1.4.51_all.deb) ...
-Selecting previously deselected package html2text.
-Unpacking html2text (from .../html2text_1.3.2a-2_i386.deb) ...
-Selecting previously deselected package gettext.
-Unpacking gettext (from .../gettext_0.14.5-1_i386.deb) ...
-Selecting previously deselected package intltool-debian.
-Unpacking intltool-debian (from .../intltool-debian_0.30+20040213_all.deb) ...
-Selecting previously deselected package po-debconf.
-Unpacking po-debconf (from .../po-debconf_0.8.23_all.deb) ...
-Selecting previously deselected package debhelper.
-Unpacking debhelper (from .../debhelper_4.9.3_all.deb) ...
-Selecting previously deselected package libdshconfig1.
-Unpacking libdshconfig1 (from .../libdshconfig1_0.20.11-1_i386.deb) ...
-Selecting previously deselected package libdshconfig1-dev.
-Unpacking libdshconfig1-dev (from .../libdshconfig1-dev_0.20.11-1_i386.deb) ...
-Setting up libmagic1 (4.12-1) ...
+ -> extracting base tarball [/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/testimage]
-Setting up file (4.12-1) ...
-Setting up debconf-utils (1.4.51) ...
-
-Setting up html2text (1.3.2a-2) ...
-
-Setting up gettext (0.14.5-1) ...
-
-Setting up intltool-debian (0.30+20040213) ...
-Setting up po-debconf (0.8.23) ...
-Setting up debhelper (4.9.3) ...
-Setting up libdshconfig1 (0.20.11-1) ...
-
-Setting up libdshconfig1-dev (0.20.11-1) ...
- -> Finished parsing the build-deps
-Reading package lists...
-Building dependency tree...
-The following NEW packages will be installed:
- fakeroot
-0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
-Need to get 71.1kB of archives.
-After unpacking 201kB of additional disk space will be used.
-Get:1 http://ring.asahi-net.or.jp sid/main fakeroot 1.4.1 [71.1kB]
-Fetched 71.1kB in 0s (1907kB/s)
-Selecting previously deselected package fakeroot.
-(Reading database ... 11512 files and directories currently installed.)
-Unpacking fakeroot (from .../fakeroot_1.4.1_i386.deb) ...
-Setting up fakeroot (1.4.1) ...
-
-Copying source file
- -> copying [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir1/dsh_0.25.6-1.dsc]
- -> copying [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir1/dsh_0.25.6.orig.tar.gz]
- -> copying [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir1/dsh_0.25.6-1.diff.gz]
-Extracting source
-dpkg-source: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-dpkg-source: extracting dsh in dsh-0.25.6
-dpkg-source: unpacking dsh_0.25.6.orig.tar.gz
-dpkg-source: applying ./dsh_0.25.6-1.diff.gz
- -> Building the package
-dpkg-parsechangelog: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-debian: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-dpkg-buildpackage: source package is dsh
-dpkg-parsechangelog: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-debian: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-dpkg-buildpackage: source version is 0.25.6-1
-dpkg-architecture: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-dpkg-architecture: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-dpkg-buildpackage: host architecture i386
-dpkg-checkbuilddeps: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-dpkg-architecture: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-dpkg-architecture: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
- fakeroot debian/rules clean
-dh_testdir
-dh_testroot
-rm -f build-stamp configure-stamp
-/usr/bin/make clean
-make[1]: Entering directory `/tmp/buildd/dsh-0.25.6'
-make[1]: *** No rule to make target `clean'. Stop.
-make[1]: Leaving directory `/tmp/buildd/dsh-0.25.6'
-make: [clean] Error 2 (ignored)
-/usr/bin/make distclean
-make[1]: Entering directory `/tmp/buildd/dsh-0.25.6'
-make[1]: *** No rule to make target `distclean'. Stop.
-make[1]: Leaving directory `/tmp/buildd/dsh-0.25.6'
-make: [clean] Error 2 (ignored)
-dh_clean
- dpkg-source -b dsh-0.25.6
-dpkg-source: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-dpkg-parsechangelog: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-debian: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-dpkg-source: building dsh using existing dsh_0.25.6.orig.tar.gz
-dpkg-source: building dsh in dsh_0.25.6-1.diff.gz
-dpkg-source: warning: file dcp.sh has no final newline (either original or modified version)
-dpkg-source: warning: file debian/compat has no final newline (either original or modified version)
-dpkg-source: building dsh in dsh_0.25.6-1.dsc
- debian/rules build
-dh_testdir
-INSTALL_PROGRAM='install -p -o root -g root -m 755 -s' CFLAGS='-Wall -g -O2' \
- ./configure --prefix=/usr --sysconfdir=/etc/dsh --mandir=/usr/share/man
-checking for a BSD-compatible install... /usr/bin/install -c
-checking whether build environment is sane... yes
-checking for gawk... no
-checking for mawk... mawk
-checking whether make sets $(MAKE)... yes
-checking whether to enable maintainer-specific portions of Makefiles... no
-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 ANSI C... none needed
-checking dependency style of gcc... gcc3
-checking for library containing strerror... none required
-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 ANSI C... (cached) none needed
-checking dependency style of gcc... (cached) gcc3
-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 ANSI C... (cached) none needed
-checking dependency style of gcc... (cached) gcc3
-checking whether make sets $(MAKE)... (cached) yes
-checking how to run the C preprocessor... gcc -E
-checking for egrep... grep -E
-checking for ANSI C header files... yes
-checking for sys/wait.h that is POSIX.1 compatible... yes
-checking build system type... i686-pc-linux-gnu
-checking host system type... i686-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 recognise 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++... gcc3
-checking how to run the C++ preprocessor... g++ -E
-checking for g77... no
-checking for f77... no
-checking for xlf... no
-checking for frt... no
-checking for pgf77... no
-checking for fort77... no
-checking for fl32... no
-checking for af77... no
-checking for f90... no
-checking for xlf90... no
-checking for pgf90... no
-checking for epcf90... no
-checking for f95... no
-checking for fort... no
-checking for xlf95... no
-checking for ifc... no
-checking for efc... no
-checking for pgf95... no
-checking for lf95... no
-checking for gfortran... 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... 32768
-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 static flag works... yes
-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 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... yes
-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++ 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
-checking whether stripping libraries is possible... yes
-appending configuration tag "F77" to libtool
-checking for an ANSI C-conforming const... yes
-checking for msgfmt... /usr/bin/msgfmt
-checking for gmsgfmt... /usr/bin/msgfmt
-checking for xgettext... /usr/bin/xgettext
-checking for msgmerge... /usr/bin/msgmerge
-checking for ld used by GCC... /usr/bin/ld
-checking if the linker (/usr/bin/ld) is GNU ld... yes
-checking for shared library run path origin... done
-checking whether NLS is requested... yes
-checking for GNU gettext in libc... yes
-checking for gettext... yes
-checking getopt.h usability... yes
-checking getopt.h presence... yes
-checking for getopt.h... yes
-checking fcntl.h usability... yes
-checking fcntl.h presence... yes
-checking for fcntl.h... yes
-checking libintl.h usability... yes
-checking libintl.h presence... yes
-checking for libintl.h... yes
-checking locale.h usability... yes
-checking locale.h presence... yes
-checking for locale.h... yes
-checking for stdlib.h... (cached) yes
-checking netdb.h usability... yes
-checking netdb.h presence... yes
-checking for netdb.h... yes
-checking for string.h... (cached) yes
-checking for unistd.h... (cached) yes
-checking netgroup.h usability... no
-checking netgroup.h presence... no
-checking for netgroup.h... no
-checking signal.h usability... yes
-checking signal.h presence... yes
-checking for signal.h... yes
-checking for libdshconfig.h ... yes
-checking for asprintf... yes
-checking for strdup... yes
-checking for getopt_long... yes
-checking for getline... yes
-checking for dup2... yes
-checking for setlocale... yes
-checking for strcasecmp... yes
-checking for strchr... yes
-checking for setnetgrent... yes
-checking for getnetgrent... yes
-checking for endnetgrent... yes
-checking for open_dshconfig in -ldshconfig... yes
-checking netdb.h has setnetgrent that returns void... no
-checking getopt with a GNU option reordering extention... yes, disabling
-configure: creating ./config.status
-config.status: creating po/Makefile.in
-config.status: creating m4/Makefile
-config.status: creating Makefile
-config.status: creating config.h
-config.status: executing depfiles commands
-config.status: executing default-1 commands
-config.status: creating po/POTFILES
-config.status: creating po/Makefile
-touch configure-stamp
-dh_testdir
-/usr/bin/make
-make[1]: Entering directory `/tmp/buildd/dsh-0.25.6'
-/usr/bin/make all-recursive
-make[2]: Entering directory `/tmp/buildd/dsh-0.25.6'
-Making all in m4
-make[3]: Entering directory `/tmp/buildd/dsh-0.25.6/m4'
-make[3]: Nothing to be done for `all'.
-make[3]: Leaving directory `/tmp/buildd/dsh-0.25.6/m4'
-Making all in po
-make[3]: Entering directory `/tmp/buildd/dsh-0.25.6/po'
-make[3]: Nothing to be done for `all'.
-make[3]: Leaving directory `/tmp/buildd/dsh-0.25.6/po'
-make[3]: Entering directory `/tmp/buildd/dsh-0.25.6'
-if gcc -DHAVE_CONFIG_H -I. -I. -I. -DDSHCONFDIR="\"/etc/dsh\"" -DDSH_COMMANDLINE="\"/usr/bin/dsh\"" -DLOCALEDIR="\"/usr/share/locale\"" -Wall -g -O2 -MT dsh-dsh.o -MD -MP -MF ".deps/dsh-dsh.Tpo" -c -o dsh-dsh.o `test -f 'dsh.c' || echo './'`dsh.c; \
-then mv -f ".deps/dsh-dsh.Tpo" ".deps/dsh-dsh.Po"; else rm -f ".deps/dsh-dsh.Tpo"; exit 1; fi
-if gcc -DHAVE_CONFIG_H -I. -I. -I. -DDSHCONFDIR="\"/etc/dsh\"" -DDSH_COMMANDLINE="\"/usr/bin/dsh\"" -DLOCALEDIR="\"/usr/share/locale\"" -Wall -g -O2 -MT dsh-linkedlist.o -MD -MP -MF ".deps/dsh-linkedlist.Tpo" -c -o dsh-linkedlist.o `test -f 'linkedlist.c' || echo './'`linkedlist.c; \
-then mv -f ".deps/dsh-linkedlist.Tpo" ".deps/dsh-linkedlist.Po"; else rm -f ".deps/dsh-linkedlist.Tpo"; exit 1; fi
-if gcc -DHAVE_CONFIG_H -I. -I. -I. -DDSHCONFDIR="\"/etc/dsh\"" -DDSH_COMMANDLINE="\"/usr/bin/dsh\"" -DLOCALEDIR="\"/usr/share/locale\"" -Wall -g -O2 -MT dsh-parameter.o -MD -MP -MF ".deps/dsh-parameter.Tpo" -c -o dsh-parameter.o `test -f 'parameter.c' || echo './'`parameter.c; \
-then mv -f ".deps/dsh-parameter.Tpo" ".deps/dsh-parameter.Po"; else rm -f ".deps/dsh-parameter.Tpo"; exit 1; fi
-/bin/sh ./libtool --mode=link gcc -Wall -g -O2 -o dsh dsh-dsh.o dsh-linkedlist.o dsh-parameter.o -ldshconfig
-mkdir .libs
-gcc -Wall -g -O2 -o dsh dsh-dsh.o dsh-linkedlist.o dsh-parameter.o /usr/lib/libdshconfig.so
-mkdir build-man
-sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.1 > build-man/dsh.1
-sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.conf.5 > build-man/dsh.conf.5
-make[3]: Leaving directory `/tmp/buildd/dsh-0.25.6'
-make[2]: Leaving directory `/tmp/buildd/dsh-0.25.6'
-make[1]: Leaving directory `/tmp/buildd/dsh-0.25.6'
-/usr/bin/make check
-make[1]: Entering directory `/tmp/buildd/dsh-0.25.6'
-Making check in m4
-make[2]: Entering directory `/tmp/buildd/dsh-0.25.6/m4'
-make[2]: Nothing to be done for `check'.
-make[2]: Leaving directory `/tmp/buildd/dsh-0.25.6/m4'
-Making check in po
-make[2]: Entering directory `/tmp/buildd/dsh-0.25.6/po'
-make[2]: Nothing to be done for `check'.
-make[2]: Leaving directory `/tmp/buildd/dsh-0.25.6/po'
-make[2]: Entering directory `/tmp/buildd/dsh-0.25.6'
-/usr/bin/make dsh
-make[3]: Entering directory `/tmp/buildd/dsh-0.25.6'
-make[3]: `dsh' is up to date.
-make[3]: Leaving directory `/tmp/buildd/dsh-0.25.6'
-/usr/bin/make check-TESTS
-make[3]: Entering directory `/tmp/buildd/dsh-0.25.6'
-PASS: tests/param-f.sh
-dsh: File ./tests/nonexistent.file could not be opened for read
-PASS: tests/param-f-fail.sh
-PASS: tests/param-f-with-space.sh
-PASS: tests/param-m.sh
-test to check that unknown parameter checking is right.
-./dsh: unrecognized option `--unknown-parameter'
-./dsh: invalid option -- u
-PASS: tests/param-unknown.sh
-test1
-test2
-dsh: Process terminated (before write).
-PASS: tests/param-i.sh
-Check that cn4 option is working.
-PASS: tests/param-cn4.sh
-test to check that -b0 is rejected, and -b1 is accepted
-Buffer size needs to be greater than 1
-Buffer size needs to be greater than 1
-a
-b
-PASS: tests/param-b-0.sh
-dsh: Failed executing ./invalid-exec-file with llexec call
-dsh: Failed executing ./invalid-exec-file with llexec call
-dsh: Failed executing ./invalid-exec-file with llexec call
-dsh: Failed executing ./invalid-exec-file with llexec call
-success
-dsh: Failed executing ./invalid-exec-file with llexec call
-dsh: Failed executing ./invalid-exec-file with llexec call
-dsh: Failed executing ./invalid-exec-file with llexec call
-dsh: Failed executing ./invalid-exec-file with llexec call
-success
-success
-success
-success
-success
-a: dsh: Failed executing ./invalid-exec-file with llexec call
-b: dsh: Failed executing ./invalid-exec-file with llexec call
-c: dsh: Failed executing ./invalid-exec-file with llexec call
-d: dsh: Failed executing ./invalid-exec-file with llexec call
-success
-dsh: Failed executing ./invalid-exec-file with llexec call
-dsh: Failed executing ./invalid-exec-file with llexec call
-dsh: Failed executing ./invalid-exec-file with llexec call
-dsh: Failed executing ./invalid-exec-file with llexec call
-success
-PASS: tests/param-r-invalid.sh
-1: 1
-2: 2
-dsh: fork limit and wait shell cannot be specified at the same time
-PASS: tests/param-F-invalid.sh
-Sun Jul 3 11:38:22 UTC 2005
-2: Using sleep as the remote shell
-2: Show machine names on output
-2: Adding machine 5,4,3,2,1 to list
-2: Setting forklimit to 3 and wait_shell to 0
-2: DUMPing parameters passed to llexec
-2: [2]
-Using sleep as the remote shell
-Show machine names on output
-Adding machine 5,4,3,2,1 to list
-Setting forklimit to 3 and wait_shell to 0
-DUMPing parameters passed to llexec
-[2]
-3: Using sleep as the remote shell
-3: Show machine names on output
-3: Adding machine 5,4,3,2,1 to list
-3: Setting forklimit to 3 and wait_shell to 0
-3: DUMPing parameters passed to llexec
-3: [3]
-Using sleep as the remote shell
-Show machine names on output
-Adding machine 5,4,3,2,1 to list
-Setting forklimit to 3 and wait_shell to 0
-DUMPing parameters passed to llexec
-[3]
-1: Using sleep as the remote shell
-1: Show machine names on output
-1: Adding machine 5,4,3,2,1 to list
-1: Setting forklimit to 3 and wait_shell to 0
-1: ... Waiting for process to end with waitpid
-1: DUMPing parameters passed to llexec
-1: [1]
-Using sleep as the remote shell
-Show machine names on output
-Adding machine 5,4,3,2,1 to list
-Setting forklimit to 3 and wait_shell to 0
-... Waiting for process to end with waitpid
-DUMPing parameters passed to llexec
-[1]
-4: Using sleep as the remote shell
-4: Show machine names on output
-4: Adding machine 5,4,3,2,1 to list
-4: Setting forklimit to 3 and wait_shell to 0
-4: DUMPing parameters passed to llexec
-4: [4]
-Using sleep as the remote shell
-Show machine names on output
-Adding machine 5,4,3,2,1 to list
-Setting forklimit to 3 and wait_shell to 0
-DUMPing parameters passed to llexec
-[4]
-5: Using sleep as the remote shell
-5: Show machine names on output
-5: Adding machine 5,4,3,2,1 to list
-5: Setting forklimit to 3 and wait_shell to 0
-5: DUMPing parameters passed to llexec
-5: [5]
-Using sleep as the remote shell
-Show machine names on output
-Adding machine 5,4,3,2,1 to list
-Setting forklimit to 3 and wait_shell to 0
-DUMPing parameters passed to llexec
-[5]
---- Terminated running
-Using sleep as the remote shell
-Show machine names on output
-Adding machine 5,4,3,2,1 to list
-Setting forklimit to 3 and wait_shell to 0
-... Waiting for process to end with waitpid
-... Waiting for process to end with waitpid
-Sun Jul 3 11:38:27 UTC 2005
-PASS: tests/param-F-forklimit.sh
-PASS: tests/param-gnu-getopt.sh
-PASS: tests/news-okay.sh
-a: a
-dsh: Process terminated (before write).
-b: b
-c: c
-PASS: tests/segv-catcher.sh
-l w
-PASS: tests/test-bufferoverflow.sh
-PASS: tests/machinelist-comment-test.sh
-PASS: tests/machinelist-order.sh
-===================
-All 17 tests passed
-===================
-make[3]: Leaving directory `/tmp/buildd/dsh-0.25.6'
-make[2]: Leaving directory `/tmp/buildd/dsh-0.25.6'
-make[1]: Leaving directory `/tmp/buildd/dsh-0.25.6'
-touch build-stamp
- fakeroot debian/rules binary
-dh_testdir
-dh_testroot
-dh_clean -k
-dh_installdirs
-# Add here commands to install the package into debian/dsh.
-/usr/bin/make install DESTDIR=/tmp/buildd/dsh-0.25.6/debian/dsh
-make[1]: Entering directory `/tmp/buildd/dsh-0.25.6'
-Making install in m4
-make[2]: Entering directory `/tmp/buildd/dsh-0.25.6/m4'
-make[3]: Entering directory `/tmp/buildd/dsh-0.25.6/m4'
-make[3]: Nothing to be done for `install-exec-am'.
-make[3]: Nothing to be done for `install-data-am'.
-make[3]: Leaving directory `/tmp/buildd/dsh-0.25.6/m4'
-make[2]: Leaving directory `/tmp/buildd/dsh-0.25.6/m4'
-Making install in po
-make[2]: Entering directory `/tmp/buildd/dsh-0.25.6/po'
-/bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /tmp/buildd/dsh-0.25.6/debian/dsh/usr/share
-mkdir -p -- /tmp/buildd/dsh-0.25.6/debian/dsh/usr/share
-mkdir -p -- /tmp/buildd/dsh-0.25.6/debian/dsh/usr/share/locale/ja/LC_MESSAGES
-installing ja.gmo as /tmp/buildd/dsh-0.25.6/debian/dsh/usr/share/locale/ja/LC_MESSAGES/dsh.mo
-if test "dsh" = "gettext"; then \
- /bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /tmp/buildd/dsh-0.25.6/debian/dsh/usr/share/gettext/po; \
- for file in Makefile.in.in Makevars remove-potcdate.sin ; do \
- /usr/bin/install -c -m 644 ./$file \
- /tmp/buildd/dsh-0.25.6/debian/dsh/usr/share/gettext/po/$file; \
- done; \
-else \
- : ; \
-fi
-make[2]: Leaving directory `/tmp/buildd/dsh-0.25.6/po'
-make[2]: Entering directory `/tmp/buildd/dsh-0.25.6'
-make[3]: Entering directory `/tmp/buildd/dsh-0.25.6'
-test -z "/usr/bin" || mkdir -p -- . "/tmp/buildd/dsh-0.25.6/debian/dsh/usr/bin"
- /bin/sh ./libtool --mode=install install -p -o root -g root -m 755 -s 'dsh' '/tmp/buildd/dsh-0.25.6/debian/dsh/usr/bin/dsh'
-install -p -o root -g root -m 755 -s dsh /tmp/buildd/dsh-0.25.6/debian/dsh/usr/bin/dsh
-test -z "/etc/dsh" || mkdir -p -- . "/tmp/buildd/dsh-0.25.6/debian/dsh/etc/dsh"
- /usr/bin/install -c -m 644 'dsh.conf' '/tmp/buildd/dsh-0.25.6/debian/dsh/etc/dsh/dsh.conf'
-for LANGS in ja ; do \
- mkdir -p /tmp/buildd/dsh-0.25.6/debian/dsh/usr/share/man/$LANGS/man1 ;\
- mkdir -p /tmp/buildd/dsh-0.25.6/debian/dsh/usr/share/man/$LANGS/man5 ;\
- sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.$LANGS.1 \
- > /tmp/buildd/dsh-0.25.6/debian/dsh/usr/share/man/$LANGS/man1/dsh.1 ; \
- sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.conf.$LANGS.5 \
- > /tmp/buildd/dsh-0.25.6/debian/dsh/usr/share/man/$LANGS/man5/dsh.conf.5 ; \
-done
-test -z "/usr/share/man/man1" || mkdir -p -- . "/tmp/buildd/dsh-0.25.6/debian/dsh/usr/share/man/man1"
- /usr/bin/install -c -m 644 './build-man/dsh.1' '/tmp/buildd/dsh-0.25.6/debian/dsh/usr/share/man/man1/dsh.1'
-test -z "/usr/share/man/man5" || mkdir -p -- . "/tmp/buildd/dsh-0.25.6/debian/dsh/usr/share/man/man5"
- /usr/bin/install -c -m 644 './build-man/dsh.conf.5' '/tmp/buildd/dsh-0.25.6/debian/dsh/usr/share/man/man5/dsh.conf.5'
-make[3]: Leaving directory `/tmp/buildd/dsh-0.25.6'
-make[2]: Leaving directory `/tmp/buildd/dsh-0.25.6'
-make[1]: Leaving directory `/tmp/buildd/dsh-0.25.6'
-cp /tmp/buildd/dsh-0.25.6/debian/machines.list /tmp/buildd/dsh-0.25.6/debian/dsh/etc/dsh/machines.list
-cp /tmp/buildd/dsh-0.25.6/dsh.conf /tmp/buildd/dsh-0.25.6/debian/dsh/etc/dsh/dsh.conf
-ln -s ../machines.list /tmp/buildd/dsh-0.25.6/debian/dsh/etc/dsh/group/all
-install -d /tmp/buildd/dsh-0.25.6/debian/dsh/usr/lib/update-cluster
-install -m 755 /tmp/buildd/dsh-0.25.6/debian/dsh.updatelist /tmp/buildd/dsh-0.25.6/debian/dsh/usr/lib/update-cluster/
-dh_testdir
-dh_testroot
-dh_installdocs NEWS
-dh_installexamples
-dh_installmenu
-dh_installman
-dh_installchangelogs ChangeLog
-dpkg-parsechangelog: warning: no utmp entry available and LOGNAME not defined; using uid of process (0)
-debian: warning: no utmp entry available and LOGNAME not defined; using uid of process (0)
-dh_link
-dh_strip
-dh_shlibdeps
-dpkg-shlibdeps: warning: no utmp entry available and LOGNAME not defined; using uid of process (0)
-dh_compress
-dh_fixperms
-dh_installdeb
-dh_gencontrol
-dpkg-gencontrol: warning: no utmp entry available and LOGNAME not defined; using uid of process (0)
-dpkg-architecture: warning: no utmp entry available and LOGNAME not defined; using uid of process (0)
-dpkg-parsechangelog: warning: no utmp entry available and LOGNAME not defined; using uid of process (0)
-debian: warning: no utmp entry available and LOGNAME not defined; using uid of process (0)
-dpkg-architecture: warning: no utmp entry available and LOGNAME not defined; using uid of process (0)
-dh_md5sums
-dh_builddeb
-dpkg-deb: building package `dsh' in `../dsh_0.25.6-1_i386.deb'.
- dpkg-genchanges -mJunichi Uekawa <dancer@debian.org>
-dpkg-genchanges: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-dpkg-architecture: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-dpkg-parsechangelog: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-debian: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-dpkg-genchanges: including full source code in upload
-dpkg-buildpackage: full upload (original source is included)
- -> Terminate timeout process
-/usr/lib/pbuilder/pbuilder-buildpackage: line 126: 17395 Terminated ( : Timeout process; sleep "${TIMEOUT_TIME}"; echo " -> Terminating build process due to timeout "; kill ${BUILD_PID} || true )
- -> unmounting dev/pts filesystem
- -> unmounting proc filesystem
-Current time: Sun Jul 3 20:38:30 JST 2005
-pbuilder-time-stamp: 1120390710
- -> cleaning the build env
- -> removing directory /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir1/16527 and its subdirectories
+gzip: stdin: unexpected end of file
+tar: Child returned status 1
+tar: Error exit delayed from previous errors
+E: failed to extract /home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/testimage to /home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir1/23824
diff --git a/testsuite/normal/pbuilder-create-etch.log b/testsuite/normal/pbuilder-create-etch.log
index 264a86e..2cd6c65 100644
--- a/testsuite/normal/pbuilder-create-etch.log
+++ b/testsuite/normal/pbuilder-create-etch.log
@@ -39,6 +39,7 @@ I: Extracting libnewt0.51...
I: Extracting libpam-modules...
I: Extracting libpam-runtime...
I: Extracting libpam0g...
+I: Extracting libreadline4...
I: Extracting libss2...
I: Extracting libstdc++5...
I: Extracting libtext-charwidth-perl...
@@ -65,115 +66,12 @@ I: Installing core packages...
I: Unpacking required packages...
I: Configuring required packages...
I: Installing base packages...
-I: Base system installed successfully.
- -> debootstrap finished
- -> copying local configuration
- -> Installing apt-lines
-Refreshing the base.tgz
- -> upgrading packages
- -> mounting /proc filesystem
- -> mounting /dev/pts filesystem
- -> installing dummy policy-rc.d
-Get:1 http://ring.asahi-net.or.jp etch/main Packages [3446kB]
-Get:2 http://ring.asahi-net.or.jp etch/main Release [81B]
-Fetched 3446kB in 1s (3153kB/s)
-Reading Package Lists...
-dpkg - warning: ignoring request to remove lilo which isn't installed.
-Reading Package Lists...
-Building Dependency Tree...
-0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
-Reading Package Lists...
-Building Dependency Tree...
-apt is already the newest version.
-The following extra packages will be installed:
- binutils cpp cpp-3.3 g++ g++-3.3 gcc gcc-3.3 libc6-dev libstdc++5-3.3-dev
- linux-kernel-headers make patch perl perl-modules
-Suggested packages:
- binutils-doc cpp-doc gnupg debian-keyring gcc-3.3-doc manpages-dev autoconf
- automake libtool flex bison gdb gcc-doc glibc-doc libstdc++5-3.3-doc
- stl-manual libterm-readline-gnu-perl libterm-readline-perl-perl
-Recommended packages:
- perl-doc
-The following NEW packages will be installed:
- binutils build-essential cpp cpp-3.3 dpkg-dev g++ g++-3.3 gcc gcc-3.3
- libc6-dev libstdc++5-3.3-dev linux-kernel-headers make patch perl
- perl-modules
-0 upgraded, 16 newly installed, 0 to remove and 0 not upgraded.
-Need to get 18.0MB of archives.
-After unpacking 63.6MB of additional disk space will be used.
-Get:1 http://ring.asahi-net.or.jp etch/main binutils 2.15-7 [2221kB]
-Get:2 http://ring.asahi-net.or.jp etch/main cpp-3.3 1:3.3.5-13 [1393kB]
-Get:3 http://ring.asahi-net.or.jp etch/main cpp 4:3.3.5-3 [29.6kB]
-Get:4 http://ring.asahi-net.or.jp etch/main perl-modules 5.8.7-3 [2326kB]
-Get:5 http://ring.asahi-net.or.jp etch/main perl 5.8.7-3 [3371kB]
-Get:6 http://ring.asahi-net.or.jp etch/main patch 2.5.9-2 [96.4kB]
-Get:7 http://ring.asahi-net.or.jp etch/main make 3.80-9 [366kB]
-Get:8 http://ring.asahi-net.or.jp etch/main dpkg-dev 1.10.28 [166kB]
-Get:9 http://ring.asahi-net.or.jp etch/main gcc-3.3 1:3.3.5-13 [1570kB]
-Get:10 http://ring.asahi-net.or.jp etch/main gcc 4:3.3.5-3 [4906B]
-Get:11 http://ring.asahi-net.or.jp etch/main linux-kernel-headers 2.5.999-test7-bk-17 [1377kB]
-Get:12 http://ring.asahi-net.or.jp etch/main libc6-dev 2.3.2.ds1-22 [2532kB]
-Get:13 http://ring.asahi-net.or.jp etch/main libstdc++5-3.3-dev 1:3.3.5-13 [775kB]
-Get:14 http://ring.asahi-net.or.jp etch/main g++-3.3 1:3.3.5-13 [1779kB]
-Get:15 http://ring.asahi-net.or.jp etch/main g++ 4:3.3.5-3 [1398B]
-Get:16 http://ring.asahi-net.or.jp etch/main build-essential 10.1 [6520B]
-Fetched 18.0MB in 2s (7466kB/s)
-Selecting previously deselected package binutils.
-(Reading database ... 7431 files and directories currently installed.)
-Unpacking binutils (from .../binutils_2.15-7_i386.deb) ...
-Selecting previously deselected package cpp-3.3.
-Unpacking cpp-3.3 (from .../cpp-3.3_1%3a3.3.5-13_i386.deb) ...
-Selecting previously deselected package cpp.
-Unpacking cpp (from .../cpp_4%3a3.3.5-3_i386.deb) ...
-Selecting previously deselected package perl-modules.
-Unpacking perl-modules (from .../perl-modules_5.8.7-3_all.deb) ...
-Selecting previously deselected package perl.
-Unpacking perl (from .../archives/perl_5.8.7-3_i386.deb) ...
-Selecting previously deselected package patch.
-Unpacking patch (from .../patch_2.5.9-2_i386.deb) ...
-Selecting previously deselected package make.
-Unpacking make (from .../archives/make_3.80-9_i386.deb) ...
-Selecting previously deselected package dpkg-dev.
-Unpacking dpkg-dev (from .../dpkg-dev_1.10.28_all.deb) ...
-Selecting previously deselected package gcc-3.3.
-Unpacking gcc-3.3 (from .../gcc-3.3_1%3a3.3.5-13_i386.deb) ...
-Selecting previously deselected package gcc.
-Unpacking gcc (from .../gcc_4%3a3.3.5-3_i386.deb) ...
-Selecting previously deselected package linux-kernel-headers.
-Unpacking linux-kernel-headers (from .../linux-kernel-headers_2.5.999-test7-bk-17_i386.deb) ...
-Selecting previously deselected package libc6-dev.
-Unpacking libc6-dev (from .../libc6-dev_2.3.2.ds1-22_i386.deb) ...
-Selecting previously deselected package libstdc++5-3.3-dev.
-Unpacking libstdc++5-3.3-dev (from .../libstdc++5-3.3-dev_1%3a3.3.5-13_i386.deb) ...
-Selecting previously deselected package g++-3.3.
-Unpacking g++-3.3 (from .../g++-3.3_1%3a3.3.5-13_i386.deb) ...
-Selecting previously deselected package g++.
-Unpacking g++ (from .../g++_4%3a3.3.5-3_i386.deb) ...
-Selecting previously deselected package build-essential.
-Unpacking build-essential (from .../build-essential_10.1_i386.deb) ...
-Setting up binutils (2.15-7) ...
-
-Setting up cpp-3.3 (3.3.5-13) ...
-Setting up cpp (3.3.5-3) ...
-Setting up patch (2.5.9-2) ...
-Setting up make (3.80-9) ...
-
-Setting up gcc-3.3 (3.3.5-13) ...
-Setting up gcc (3.3.5-3) ...
-
-Setting up linux-kernel-headers (2.5.999-test7-bk-17) ...
-Setting up libc6-dev (2.3.2.ds1-22) ...
-Setting up perl-modules (5.8.7-3) ...
-Setting up libstdc++5-3.3-dev (3.3.5-13) ...
-Setting up perl (5.8.7-3) ...
-
-Setting up dpkg-dev (1.10.28) ...
-Setting up g++-3.3 (3.3.5-13) ...
-Setting up g++ (3.3.5-3) ...
-
-Setting up build-essential (10.1) ...
- -> unmounting dev/pts filesystem
- -> unmounting proc filesystem
- -> creating base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/testimage]
+W: Failure while configuring base packages. This will be attempted 5 times.
+W: Failure while configuring base packages. This will be attempted 5 times.
+W: Failure while configuring base packages. This will be attempted 5 times.
+W: Failure while configuring base packages. This will be attempted 5 times.
+W: Failure while configuring base packages. This will be attempted 5 times.
+pbuilder: debootstrap failed
+ -> Aborting with an error
-> cleaning the build env
- -> removing directory /var/cache/pbuilder/build//2281 and its subdirectories
+ -> removing directory /var/cache/pbuilder/build//31122 and its subdirectories
diff --git a/testsuite/normal/pbuilder-create-sarge.log b/testsuite/normal/pbuilder-create-sarge.log
index fac6f5f..5aaa497 100644
--- a/testsuite/normal/pbuilder-create-sarge.log
+++ b/testsuite/normal/pbuilder-create-sarge.log
@@ -39,7 +39,9 @@ I: Extracting libnewt0.51...
I: Extracting libpam-modules...
I: Extracting libpam-runtime...
I: Extracting libpam0g...
+I: Extracting libperl5.8...
I: Extracting libpopt0...
+I: Extracting libreadline4...
I: Extracting libss2...
I: Extracting libstdc++5...
I: Extracting libtext-charwidth-perl...
@@ -75,11 +77,140 @@ Refreshing the base.tgz
-> mounting /proc filesystem
-> mounting /dev/pts filesystem
-> installing dummy policy-rc.d
-Get:1 http://ring.asahi-net.or.jp sarge/main Packages [3347kB]
-Get:2 http://ring.asahi-net.or.jp sarge/main Release [95B]
-Fetched 3347kB in 1s (1765kB/s)
+Get:1 http://ring.asahi-net.or.jp sarge/main Packages [3273kB]
+Get:2 http://ring.asahi-net.or.jp sarge/main Release [98B]
+Fetched 3274kB in 32s (101kB/s)
Reading Package Lists...
dpkg - warning: ignoring request to remove lilo which isn't installed.
+Obtaining the cached apt archive contents
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//apt_0.5.28.6_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//base-files_3.1.2_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//base-passwd_3.5.9_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//bsdutils_1%3a2.12p-4_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//coreutils_5.2.1-2_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//cpio_2.5-1.2_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//diff_2.8.1-11_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//dpkg_1.10.28_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//dselect_1.10.28_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//findutils_4.1.20-6_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//grep_2.5.1.ds1-4_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//gzip_1.3.5-10_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//hostname_2.13_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//initscripts_2.86.ds1-1_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//libc6_2.3.2.ds1-22_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//libcap1_1%3a1.10-14_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//libdb1-compat_2.1.3-7_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//libdb3_3.2.9-22_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//libdb4.2_4.2.52-18_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//libgcc1_1%3a3.4.3-13_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//libgdbm3_1.8.3-2_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//libncurses5_5.4-4_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//libpam-modules_0.76-22_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//libpam-runtime_0.76-22_all.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//libpam0g_0.76-22_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//mawk_1.3.3-11_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//mount_2.12p-4_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//ncurses-base_5.4-4_all.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//ncurses-bin_5.4-4_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//perl-base_5.8.4-8_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//slang1a-utf8_1.4.9dbs-8_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//sysv-rc_2.86.ds1-1_all.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//sysvinit_2.86.ds1-1_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//util-linux_2.12p-4_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//zlib1g_1%3a1.2.2-4_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//libtext-iconv-perl_1.2-3_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//gettext-base_0.14.4-2_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//wget_1.9.1-12_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//bash_2.05b-26_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//debianutils_2.8.4_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//e2fslibs_1.37-2sarge1_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//e2fsprogs_1.37-2sarge1_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//gcc-3.3-base_1%3a3.3.5-13_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//libacl1_2.2.23-1_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//libattr1_2.4.16-1_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//libblkid1_1.37-2sarge1_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//libcomerr2_1.37-2sarge1_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//libss2_1.37-2sarge1_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//libstdc++5_1%3a3.3.5-13_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//libuuid1_1.37-2sarge1_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//login_1%3a4.0.3-31sarge5_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//passwd_1%3a4.0.3-31sarge5_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//sed_4.1.2-8_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//tar_1.14-2_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//liblocale-gettext-perl_1.01-17_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//libtext-charwidth-perl_0.04-1_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//libtext-wrapi18n-perl_0.06-1_all.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//debconf-i18n_1.4.30.13_all.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//debconf_1.4.30.13_all.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//libssl0.9.7_0.9.7e-3_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//adduser_3.63_all.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//amiga-fdisk_0.04-9_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//apt-utils_0.5.28.6_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//aptitude_0.2.15.9-2_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//at_3.1.8-11_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//base-config_2.53.10_all.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//bsdmainutils_6.0.17_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//console-common_0.7.49_all.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//console-data_2002.12.04dbs-49_all.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//console-tools_1%3a0.2.3dbs-56_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//cron_3.0pl1-86_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//dhcp-client_2.0pl5-19.1_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//ed_0.2-20_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//exim4_4.50-8_all.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//exim4-base_4.50-8_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//exim4-config_4.50-8_all.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//exim4-daemon-light_4.50-8_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//fdutils_5.4-20040228-1_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//groff-base_1.18.1.1-7_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//hfsutils_3.2.6-7_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//ifupdown_0.6.7_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//info_4.7-2.2_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//ipchains_1.3.10-15_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//iptables_1.2.11-10_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//iputils-ping_3%3a20020927-2_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//klogd_1.4.1-17_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//libconsole_1%3a0.2.3dbs-56_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//libgnutls11_1.0.16-13.1_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//liblockfile1_1.06_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//liblzo1_1.08-1.2_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//libnewt0.51_0.51.6-20_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//libopencdk8_0.5.5-10_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//libpcap0.7_0.7.2-7_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//libpcre3_4.5-1.2_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//libperl5.8_5.8.4-8_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//libpopt0_1.7-5_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//libreadline4_4.3-11_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//libsigc++-1.2-5c102_1.2.5-4_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//libtasn1-2_0.2.10-3_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//libtextwrap1_0.1-1_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//libwrap0_7.6.dbs-8_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//logrotate_3.7-5_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//mac-fdisk_0.1-11_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//mailx_1%3a8.1.2-0.20040524cvs-4_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//makedev_2.3.1-77_all.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//man-db_2.4.2-21_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//manpages_1.70-1_all.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//modutils_2.4.26-1.2_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//nano_1.2.4-5_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//net-tools_1.60-10_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//netbase_4.21_all.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//netkit-inetd_0.10-10_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//nvi_1.79-22_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//pciutils_1%3a2.1.11-15_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//ppp_2.4.3-20050321+2_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//libgpg-error0_1.0-1_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//libgcrypt11_1.2.0-11.1_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//powerpc-utils_1.1.3-15_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//pppconfig_2.3.11_all.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//pppoe_3.5-4_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//pppoeconf_1.7_all.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//procps_1%3a3.2.1-2_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//psmisc_21.5-1_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//sysklogd_1.4.1-17_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//tasksel_2.24_all.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//tcpd_7.6.dbs-8_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//telnet_0.17-29_powerpc.deb': File exists
+ln: `/var/cache/pbuilder/build//24169/var/cache/apt/archives//whiptail_0.51.6-20_powerpc.deb': File exists
Reading Package Lists...
Building Dependency Tree...
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
@@ -100,58 +231,41 @@ The following NEW packages will be installed:
libc6-dev libstdc++5-3.3-dev linux-kernel-headers make patch perl
perl-modules
0 upgraded, 16 newly installed, 0 to remove and 0 not upgraded.
-Need to get 17.7MB of archives.
-After unpacking 62.4MB of additional disk space will be used.
-Get:1 http://ring.asahi-net.or.jp sarge/main binutils 2.15-6 [2221kB]
-Get:2 http://ring.asahi-net.or.jp sarge/main cpp-3.3 1:3.3.5-13 [1393kB]
-Get:3 http://ring.asahi-net.or.jp sarge/main cpp 4:3.3.5-3 [29.6kB]
-Get:4 http://ring.asahi-net.or.jp sarge/main perl-modules 5.8.4-8 [2178kB]
-Get:5 http://ring.asahi-net.or.jp sarge/main perl 5.8.4-8 [3238kB]
-Get:6 http://ring.asahi-net.or.jp sarge/main patch 2.5.9-2 [96.4kB]
-Get:7 http://ring.asahi-net.or.jp sarge/main make 3.80-9 [366kB]
-Get:8 http://ring.asahi-net.or.jp sarge/main dpkg-dev 1.10.28 [166kB]
-Get:9 http://ring.asahi-net.or.jp sarge/main gcc-3.3 1:3.3.5-13 [1570kB]
-Get:10 http://ring.asahi-net.or.jp sarge/main gcc 4:3.3.5-3 [4906B]
-Get:11 http://ring.asahi-net.or.jp sarge/main linux-kernel-headers 2.5.999-test7-bk-17 [1377kB]
-Get:12 http://ring.asahi-net.or.jp sarge/main libc6-dev 2.3.2.ds1-22 [2532kB]
-Get:13 http://ring.asahi-net.or.jp sarge/main libstdc++5-3.3-dev 1:3.3.5-13 [775kB]
-Get:14 http://ring.asahi-net.or.jp sarge/main g++-3.3 1:3.3.5-13 [1779kB]
-Get:15 http://ring.asahi-net.or.jp sarge/main g++ 4:3.3.5-3 [1398B]
-Get:16 http://ring.asahi-net.or.jp sarge/main build-essential 10.1 [6520B]
-Fetched 17.7MB in 2s (5956kB/s)
+Need to get 0B/19.1MB of archives.
+After unpacking 65.9MB of additional disk space will be used.
Selecting previously deselected package binutils.
-(Reading database ... 7584 files and directories currently installed.)
-Unpacking binutils (from .../binutils_2.15-6_i386.deb) ...
+(Reading database ... 7606 files and directories currently installed.)
+Unpacking binutils (from .../binutils_2.15-6_powerpc.deb) ...
Selecting previously deselected package cpp-3.3.
-Unpacking cpp-3.3 (from .../cpp-3.3_1%3a3.3.5-13_i386.deb) ...
+Unpacking cpp-3.3 (from .../cpp-3.3_1%3a3.3.5-13_powerpc.deb) ...
Selecting previously deselected package cpp.
-Unpacking cpp (from .../cpp_4%3a3.3.5-3_i386.deb) ...
+Unpacking cpp (from .../cpp_4%3a3.3.5-3_powerpc.deb) ...
Selecting previously deselected package perl-modules.
Unpacking perl-modules (from .../perl-modules_5.8.4-8_all.deb) ...
Selecting previously deselected package perl.
-Unpacking perl (from .../archives/perl_5.8.4-8_i386.deb) ...
+Unpacking perl (from .../perl_5.8.4-8_powerpc.deb) ...
Selecting previously deselected package patch.
-Unpacking patch (from .../patch_2.5.9-2_i386.deb) ...
+Unpacking patch (from .../patch_2.5.9-2_powerpc.deb) ...
Selecting previously deselected package make.
-Unpacking make (from .../archives/make_3.80-9_i386.deb) ...
+Unpacking make (from .../make_3.80-9_powerpc.deb) ...
Selecting previously deselected package dpkg-dev.
Unpacking dpkg-dev (from .../dpkg-dev_1.10.28_all.deb) ...
Selecting previously deselected package gcc-3.3.
-Unpacking gcc-3.3 (from .../gcc-3.3_1%3a3.3.5-13_i386.deb) ...
+Unpacking gcc-3.3 (from .../gcc-3.3_1%3a3.3.5-13_powerpc.deb) ...
Selecting previously deselected package gcc.
-Unpacking gcc (from .../gcc_4%3a3.3.5-3_i386.deb) ...
+Unpacking gcc (from .../gcc_4%3a3.3.5-3_powerpc.deb) ...
Selecting previously deselected package linux-kernel-headers.
-Unpacking linux-kernel-headers (from .../linux-kernel-headers_2.5.999-test7-bk-17_i386.deb) ...
+Unpacking linux-kernel-headers (from .../linux-kernel-headers_2.5.999-test7-bk-17_powerpc.deb) ...
Selecting previously deselected package libc6-dev.
-Unpacking libc6-dev (from .../libc6-dev_2.3.2.ds1-22_i386.deb) ...
+Unpacking libc6-dev (from .../libc6-dev_2.3.2.ds1-22_powerpc.deb) ...
Selecting previously deselected package libstdc++5-3.3-dev.
-Unpacking libstdc++5-3.3-dev (from .../libstdc++5-3.3-dev_1%3a3.3.5-13_i386.deb) ...
+Unpacking libstdc++5-3.3-dev (from .../libstdc++5-3.3-dev_1%3a3.3.5-13_powerpc.deb) ...
Selecting previously deselected package g++-3.3.
-Unpacking g++-3.3 (from .../g++-3.3_1%3a3.3.5-13_i386.deb) ...
+Unpacking g++-3.3 (from .../g++-3.3_1%3a3.3.5-13_powerpc.deb) ...
Selecting previously deselected package g++.
-Unpacking g++ (from .../g++_4%3a3.3.5-3_i386.deb) ...
+Unpacking g++ (from .../g++_4%3a3.3.5-3_powerpc.deb) ...
Selecting previously deselected package build-essential.
-Unpacking build-essential (from .../build-essential_10.1_i386.deb) ...
+Unpacking build-essential (from .../build-essential_10.1_powerpc.deb) ...
Setting up binutils (2.15-6) ...
Setting up cpp-3.3 (3.3.5-13) ...
@@ -173,8 +287,9 @@ Setting up g++-3.3 (3.3.5-13) ...
Setting up g++ (3.3.5-3) ...
Setting up build-essential (10.1) ...
+Copying back the cached apt archive contents
-> unmounting dev/pts filesystem
-> unmounting proc filesystem
- -> creating base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/testimage]
+ -> creating base tarball [/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/testimage]
-> cleaning the build env
- -> removing directory /var/cache/pbuilder/build//2935 and its subdirectories
+ -> removing directory /var/cache/pbuilder/build//24169 and its subdirectories
diff --git a/testsuite/normal/pbuilder-create-sid.log b/testsuite/normal/pbuilder-create-sid.log
index 591e474..28acfd6 100644
--- a/testsuite/normal/pbuilder-create-sid.log
+++ b/testsuite/normal/pbuilder-create-sid.log
@@ -5,410 +5,8 @@ I: Retrieving Release
I: Retrieving Packages
I: Validating Packages
I: Checking component main on http://ring.asahi-net.or.jp/archives/linux/debian/debian...
-I: Extracting base-files...
-I: Extracting base-passwd...
-I: Extracting bash...
-I: Extracting bsdutils...
-I: Extracting coreutils...
-I: Extracting debconf...
-I: Extracting debconf-i18n...
-I: Extracting debianutils...
-I: Extracting diff...
-I: Extracting dpkg...
-I: Extracting dselect...
-I: Extracting e2fslibs...
-I: Extracting e2fsprogs...
-I: Extracting findutils...
-I: Extracting gcc-3.3-base...
-I: Extracting grep...
-I: Extracting gzip...
-I: Extracting hostname...
-I: Extracting initscripts...
-I: Extracting libacl1...
-I: Extracting libattr1...
-I: Extracting libblkid1...
-I: Extracting libc6...
-I: Extracting libcap1...
-I: Extracting libcomerr2...
-I: Extracting libdb1-compat...
-I: Extracting libdb3...
-I: Extracting libgcc1...
-I: Extracting liblocale-gettext-perl...
-I: Extracting libncurses5...
-I: Extracting libnewt0.51...
-I: Extracting libpam-modules...
-I: Extracting libpam-runtime...
-I: Extracting libpam0g...
-I: Extracting libslang2...
-I: Extracting libss2...
-I: Extracting libstdc++5...
-I: Extracting libtext-charwidth-perl...
-I: Extracting libtext-iconv-perl...
-I: Extracting libtext-wrapi18n-perl...
-I: Extracting libuuid1...
-I: Extracting login...
-I: Extracting makedev...
-I: Extracting mawk...
-I: Extracting mount...
-I: Extracting ncurses-base...
-I: Extracting ncurses-bin...
-I: Extracting passwd...
-I: Extracting perl-base...
-I: Extracting procps...
-I: Extracting sed...
-I: Extracting slang1a-utf8...
-I: Extracting sysv-rc...
-I: Extracting sysvinit...
-I: Extracting tar...
-I: Extracting util-linux...
-I: Extracting zlib1g...
-I: Installing core packages...
-I: Unpacking required packages...
-I: Unpacking base-files...
-I: Unpacking base-passwd...
-I: Unpacking bash...
-I: Unpacking bsdutils...
-I: Unpacking coreutils...
-I: Unpacking debconf...
-I: Unpacking debconf-i18n...
-I: Unpacking debianutils...
-I: Unpacking diff...
-I: Unpacking dpkg...
-I: Unpacking dselect...
-I: Unpacking e2fslibs...
-I: Unpacking e2fsprogs...
-I: Unpacking findutils...
-I: Unpacking gcc-3.3-base...
-I: Unpacking grep...
-I: Unpacking gzip...
-I: Unpacking hostname...
-I: Unpacking initscripts...
-I: Unpacking libacl1...
-I: Unpacking libattr1...
-I: Unpacking libblkid1...
-I: Unpacking libc6...
-I: Unpacking libcap1...
-I: Unpacking libcomerr2...
-I: Unpacking libdb1-compat...
-I: Unpacking libdb3...
-I: Unpacking libgcc1...
-I: Unpacking liblocale-gettext-perl...
-I: Unpacking libncurses5...
-I: Unpacking libnewt0.51...
-I: Unpacking libpam-modules...
-I: Unpacking libpam-runtime...
-I: Unpacking libpam0g...
-I: Unpacking libslang2...
-I: Unpacking libss2...
-I: Unpacking libstdc++5...
-I: Unpacking libtext-charwidth-perl...
-I: Unpacking libtext-iconv-perl...
-I: Unpacking libtext-wrapi18n-perl...
-I: Unpacking libuuid1...
-I: Unpacking login...
-I: Unpacking makedev...
-I: Unpacking mawk...
-I: Unpacking mount...
-I: Unpacking ncurses-base...
-I: Unpacking ncurses-bin...
-I: Unpacking passwd...
-I: Unpacking perl-base...
-I: Unpacking procps...
-I: Unpacking sed...
-I: Unpacking slang1a-utf8...
-I: Unpacking sysv-rc...
-I: Unpacking sysvinit...
-I: Unpacking tar...
-I: Unpacking util-linux...
-I: Unpacking zlib1g...
-I: Configuring required packages...
-I: Configuring sysv-rc...
-I: Configuring libpam-runtime...
-I: Configuring gcc-3.3-base...
-I: Configuring libc6...
-I: Configuring libcap1...
-I: Configuring libdb1-compat...
-I: Configuring libuuid1...
-I: Configuring libpam0g...
-I: Configuring bsdutils...
-I: Configuring perl-base...
-I: Configuring tar...
-I: Configuring zlib1g...
-I: Configuring slang1a-utf8...
-I: Configuring libgcc1...
-I: Configuring libtext-iconv-perl...
-I: Configuring libncurses5...
-I: Configuring libattr1...
-I: Configuring sed...
-I: Configuring e2fslibs...
-I: Configuring base-passwd...
-I: Configuring libcomerr2...
-I: Configuring mawk...
-I: Configuring grep...
-I: Configuring hostname...
-I: Configuring libacl1...
-I: Configuring libslang2...
-I: Configuring libblkid1...
-I: Configuring libss2...
-I: Configuring findutils...
-I: Configuring e2fsprogs...
-I: Configuring liblocale-gettext-perl...
-I: Configuring diff...
-I: Configuring libdb3...
-I: Configuring util-linux...
-I: Configuring libstdc++5...
-I: Configuring libtext-charwidth-perl...
-I: Configuring libtext-wrapi18n-perl...
-I: Configuring coreutils...
-I: Configuring debianutils...
-I: Configuring makedev...
-I: Configuring procps...
-I: Configuring ncurses-base...
-I: Configuring ncurses-bin...
-I: Configuring libpam-modules...
-I: Configuring base-files...
-I: Configuring mount...
-I: Configuring libnewt0.51...
-I: Configuring debconf-i18n...
-I: Configuring gzip...
-I: Configuring dpkg...
-I: Configuring dselect...
-I: Configuring debconf...
-I: Configuring login...
-I: Configuring passwd...
-I: Configuring initscripts...
-I: Configuring bash...
-I: Configuring sysvinit...
-I: Unpacking the base system...
-I: Unpacking adduser...
-I: Unpacking apt...
-I: Unpacking apt-utils...
-I: Unpacking aptitude...
-I: Unpacking base-config...
-I: Unpacking bsdmainutils...
-I: Unpacking console-common...
-I: Unpacking console-data...
-I: Unpacking console-tools...
-I: Unpacking cpio...
-I: Unpacking cron...
-I: Unpacking dhcp-client...
-I: Unpacking ed...
-I: Unpacking gettext-base...
-I: Unpacking gnupg...
-I: Unpacking groff-base...
-I: Unpacking ifupdown...
-I: Unpacking info...
-I: Unpacking iptables...
-I: Unpacking iputils-ping...
-I: Unpacking klogd...
-I: Unpacking libbz2-1.0...
-I: Unpacking libconsole...
-I: Unpacking libdb4.2...
-I: Unpacking libgcrypt11...
-I: Unpacking libgdbm3...
-I: Unpacking libgnutls11...
-I: Unpacking libgpg-error0...
-I: Unpacking libldap2...
-I: Unpacking liblockfile1...
-I: Unpacking liblzo1...
-I: Unpacking libncursesw5...
-I: Unpacking libopencdk8...
-I: Unpacking libpcre3...
-I: Unpacking libpopt0...
-I: Unpacking libreadline5...
-I: Unpacking libsasl2...
-I: Unpacking libsigc++-1.2-5c102...
-I: Unpacking libssl0.9.7...
-I: Unpacking libtasn1-2...
-I: Unpacking libtextwrap1...
-I: Unpacking libusb-0.1-4...
-I: Unpacking libwrap0...
-I: Unpacking logrotate...
-I: Unpacking man-db...
-I: Unpacking manpages...
-I: Unpacking modutils...
-I: Unpacking nano...
-I: Unpacking net-tools...
-I: Unpacking netbase...
-I: Unpacking netcat...
-I: Unpacking netkit-inetd...
-I: Unpacking nvi...
-I: Unpacking sysklogd...
-I: Unpacking tasksel...
-I: Unpacking tcpd...
-I: Unpacking traceroute...
-I: Unpacking wget...
-I: Unpacking whiptail...
-I: Configuring the base system...
-I: Configuring gettext-base...
-I: Configuring libgdbm3...
-I: Configuring libtasn1-2...
-I: Configuring libpopt0...
-I: Configuring libusb-0.1-4...
-I: Configuring libgpg-error0...
-I: Configuring libssl0.9.7...
-I: Configuring apt...
-I: Configuring whiptail...
-I: Configuring dhcp-client...
-I: Configuring adduser...
-I: Configuring modutils...
-I: Configuring traceroute...
-I: Configuring manpages...
-I: Configuring ed...
-I: Configuring libreadline5...
-I: Configuring liblzo1...
-I: Configuring wget...
-I: Configuring groff-base...
-I: Configuring libdb4.2...
-I: Configuring net-tools...
-I: Configuring bsdmainutils...
-I: Configuring libsigc++-1.2-5c102...
-I: Configuring libpcre3...
-I: Configuring aptitude...
-I: Configuring libncursesw5...
-I: Configuring info...
-I: Configuring iputils-ping...
-I: Configuring libbz2-1.0...
-I: Configuring cron...
-I: Configuring libsasl2...
-I: Configuring nano...
-I: Configuring netkit-inetd...
-I: Configuring libconsole...
-I: Configuring apt-utils...
-I: Configuring iptables...
-I: Configuring cpio...
-I: Configuring nvi...
-I: Configuring libwrap0...
-I: Configuring netcat...
-I: Configuring liblockfile1...
-I: Configuring tcpd...
-I: Configuring man-db...
-I: Configuring libgcrypt11...
-I: Configuring ifupdown...
-I: Configuring tasksel...
-I: Configuring logrotate...
-I: Configuring libopencdk8...
-I: Configuring libgnutls11...
-I: Configuring libldap2...
-I: Configuring netbase...
-I: Configuring gnupg...
-I: Configuring console-data...
-I: Configuring sysklogd...
-I: Configuring klogd...
-I: Configuring console-tools...
-I: Configuring libtextwrap1...
-I: Configuring console-common...
-I: Configuring base-config...
-I: Base system installed successfully.
- -> debootstrap finished
- -> copying local configuration
- -> Installing apt-lines
-Refreshing the base.tgz
- -> upgrading packages
- -> mounting /proc filesystem
- -> mounting /dev/pts filesystem
- -> installing dummy policy-rc.d
-Get:1 http://ring.asahi-net.or.jp sid Release.gpg [197B]
-Get:2 http://ring.asahi-net.or.jp sid Release [34.1kB]
-Get:3 http://ring.asahi-net.or.jp sid/main Packages [3587kB]
-Fetched 3622kB in 1s (2206kB/s)
-Reading package lists...
-dpkg - warning: ignoring request to remove lilo which isn't installed.
-Reading package lists...
-Building dependency tree...
-0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
-Reading package lists...
-Building dependency tree...
-apt is already the newest version.
-The following extra packages will be installed:
- binutils cpp cpp-3.3 g++ g++-3.3 gcc gcc-3.3 libc6-dev libstdc++5-3.3-dev
- linux-kernel-headers make patch perl perl-modules
-Suggested packages:
- binutils-doc cpp-doc debian-keyring gcc-3.3-doc manpages-dev autoconf
- automake libtool flex bison gdb gcc-doc glibc-doc libstdc++5-3.3-doc
- libterm-readline-gnu-perl libterm-readline-perl-perl
-Recommended packages:
- bzip2 perl-doc
-The following NEW packages will be installed:
- binutils build-essential cpp cpp-3.3 dpkg-dev g++ g++-3.3 gcc gcc-3.3
- libc6-dev libstdc++5-3.3-dev linux-kernel-headers make patch perl
- perl-modules
-0 upgraded, 16 newly installed, 0 to remove and 0 not upgraded.
-Need to get 18.0MB of archives.
-After unpacking 63.5MB of additional disk space will be used.
-Get:1 http://ring.asahi-net.or.jp sid/main binutils 2.15-7 [2221kB]
-Get:2 http://ring.asahi-net.or.jp sid/main cpp-3.3 1:3.3.6-7 [1393kB]
-Get:3 http://ring.asahi-net.or.jp sid/main cpp 4:3.3.6-1 [29.8kB]
-Get:4 http://ring.asahi-net.or.jp sid/main perl-modules 5.8.7-3 [2326kB]
-Get:5 http://ring.asahi-net.or.jp sid/main perl 5.8.7-3 [3371kB]
-Get:6 http://ring.asahi-net.or.jp sid/main patch 2.5.9-2 [96.4kB]
-Get:7 http://ring.asahi-net.or.jp sid/main make 3.80-9 [366kB]
-Get:8 http://ring.asahi-net.or.jp sid/main dpkg-dev 1.13.10 [163kB]
-Get:9 http://ring.asahi-net.or.jp sid/main gcc-3.3 1:3.3.6-7 [1556kB]
-Get:10 http://ring.asahi-net.or.jp sid/main gcc 4:3.3.6-1 [4898B]
-Get:11 http://ring.asahi-net.or.jp sid/main linux-kernel-headers 2.5.999-test7-bk-17 [1377kB]
-Get:12 http://ring.asahi-net.or.jp sid/main libc6-dev 2.3.2.ds1-22 [2532kB]
-Get:13 http://ring.asahi-net.or.jp sid/main libstdc++5-3.3-dev 1:3.3.6-7 [775kB]
-Get:14 http://ring.asahi-net.or.jp sid/main g++-3.3 1:3.3.6-7 [1779kB]
-Get:15 http://ring.asahi-net.or.jp sid/main g++ 4:3.3.6-1 [1384B]
-Get:16 http://ring.asahi-net.or.jp sid/main build-essential 10.1 [6520B]
-Fetched 18.0MB in 2s (6501kB/s)
-Selecting previously deselected package binutils.
-(Reading database ... 7366 files and directories currently installed.)
-Unpacking binutils (from .../binutils_2.15-7_i386.deb) ...
-Selecting previously deselected package cpp-3.3.
-Unpacking cpp-3.3 (from .../cpp-3.3_1%3a3.3.6-7_i386.deb) ...
-Selecting previously deselected package cpp.
-Unpacking cpp (from .../cpp_4%3a3.3.6-1_i386.deb) ...
-Selecting previously deselected package perl-modules.
-Unpacking perl-modules (from .../perl-modules_5.8.7-3_all.deb) ...
-Selecting previously deselected package perl.
-Unpacking perl (from .../archives/perl_5.8.7-3_i386.deb) ...
-Selecting previously deselected package patch.
-Unpacking patch (from .../patch_2.5.9-2_i386.deb) ...
-Selecting previously deselected package make.
-Unpacking make (from .../archives/make_3.80-9_i386.deb) ...
-Selecting previously deselected package dpkg-dev.
-Unpacking dpkg-dev (from .../dpkg-dev_1.13.10_all.deb) ...
-Selecting previously deselected package gcc-3.3.
-Unpacking gcc-3.3 (from .../gcc-3.3_1%3a3.3.6-7_i386.deb) ...
-Selecting previously deselected package gcc.
-Unpacking gcc (from .../gcc_4%3a3.3.6-1_i386.deb) ...
-Selecting previously deselected package linux-kernel-headers.
-Unpacking linux-kernel-headers (from .../linux-kernel-headers_2.5.999-test7-bk-17_i386.deb) ...
-Selecting previously deselected package libc6-dev.
-Unpacking libc6-dev (from .../libc6-dev_2.3.2.ds1-22_i386.deb) ...
-Selecting previously deselected package libstdc++5-3.3-dev.
-Unpacking libstdc++5-3.3-dev (from .../libstdc++5-3.3-dev_1%3a3.3.6-7_i386.deb) ...
-Selecting previously deselected package g++-3.3.
-Unpacking g++-3.3 (from .../g++-3.3_1%3a3.3.6-7_i386.deb) ...
-Selecting previously deselected package g++.
-Unpacking g++ (from .../g++_4%3a3.3.6-1_i386.deb) ...
-Selecting previously deselected package build-essential.
-Unpacking build-essential (from .../build-essential_10.1_i386.deb) ...
-Setting up binutils (2.15-7) ...
-
-Setting up cpp-3.3 (3.3.6-7) ...
-Setting up cpp (3.3.6-1) ...
-Setting up patch (2.5.9-2) ...
-Setting up make (3.80-9) ...
-
-Setting up gcc-3.3 (3.3.6-7) ...
-Setting up gcc (3.3.6-1) ...
-
-Setting up linux-kernel-headers (2.5.999-test7-bk-17) ...
-Setting up libc6-dev (2.3.2.ds1-22) ...
-Setting up perl-modules (5.8.7-3) ...
-Setting up libstdc++5-3.3-dev (3.3.6-7) ...
-Setting up perl (5.8.7-3) ...
-
-Setting up dpkg-dev (1.13.10) ...
-Setting up g++-3.3 (3.3.6-7) ...
-Setting up g++ (3.3.6-1) ...
-
-Setting up build-essential (10.1) ...
- -> unmounting dev/pts filesystem
- -> unmounting proc filesystem
- -> creating base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/testimage]
+E: Couldn't find these debs: libsigc++-1.2-5c102
+pbuilder: debootstrap failed
+ -> Aborting with an error
-> cleaning the build env
- -> removing directory /var/cache/pbuilder/build//7600 and its subdirectories
+ -> removing directory /var/cache/pbuilder/build//23664 and its subdirectories
diff --git a/testsuite/normal/pbuilder-execute-etch.log b/testsuite/normal/pbuilder-execute-etch.log
index fb2b7e8..1647d7e 100644
--- a/testsuite/normal/pbuilder-execute-etch.log
+++ b/testsuite/normal/pbuilder-execute-etch.log
@@ -1,13 +1,7 @@
Building the build Environment
- -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/testimage]
- -> creating local configuration
- -> copying local configuration
- -> mounting /proc filesystem
- -> mounting /dev/pts filesystem
- -> policy-rc.d already exists
---- parameters given to this script
-[test1 test2 test3]
- -> unmounting dev/pts filesystem
- -> unmounting proc filesystem
- -> cleaning the build env
- -> removing directory /var/cache/pbuilder/build//29900 and its subdirectories
+ -> extracting base tarball [/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/testimage]
+
+gzip: stdin: unexpected end of file
+tar: Child returned status 1
+tar: Error exit delayed from previous errors
+E: failed to extract /home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/testimage to /var/cache/pbuilder/build//7909
diff --git a/testsuite/normal/pbuilder-execute-sarge.log b/testsuite/normal/pbuilder-execute-sarge.log
index 7502447..a14ac93 100644
--- a/testsuite/normal/pbuilder-execute-sarge.log
+++ b/testsuite/normal/pbuilder-execute-sarge.log
@@ -1,13 +1,15 @@
Building the build Environment
- -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/testimage]
+ -> extracting base tarball [/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/testimage]
-> creating local configuration
-> copying local configuration
-> mounting /proc filesystem
-> mounting /dev/pts filesystem
-> policy-rc.d already exists
+Obtaining the cached apt archive contents
--- parameters given to this script
[test1 test2 test3]
+Copying back the cached apt archive contents
-> unmounting dev/pts filesystem
-> unmounting proc filesystem
-> cleaning the build env
- -> removing directory /var/cache/pbuilder/build//30884 and its subdirectories
+ -> removing directory /var/cache/pbuilder/build//22812 and its subdirectories
diff --git a/testsuite/normal/pbuilder-execute-sid.log b/testsuite/normal/pbuilder-execute-sid.log
index d1bb56e..2f700cd 100644
--- a/testsuite/normal/pbuilder-execute-sid.log
+++ b/testsuite/normal/pbuilder-execute-sid.log
@@ -1,13 +1,7 @@
Building the build Environment
- -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/testimage]
- -> creating local configuration
- -> copying local configuration
- -> mounting /proc filesystem
- -> mounting /dev/pts filesystem
- -> policy-rc.d already exists
---- parameters given to this script
-[test1 test2 test3]
- -> unmounting dev/pts filesystem
- -> unmounting proc filesystem
- -> cleaning the build env
- -> removing directory /var/cache/pbuilder/build//2859 and its subdirectories
+ -> extracting base tarball [/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/testimage]
+
+gzip: stdin: unexpected end of file
+tar: Child returned status 1
+tar: Error exit delayed from previous errors
+E: failed to extract /home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/testimage to /var/cache/pbuilder/build//24158
diff --git a/testsuite/normal/pbuilder-update-etch-sid-experimental.log b/testsuite/normal/pbuilder-update-etch-sid-experimental.log
index e2b73a5..3a66c99 100644
--- a/testsuite/normal/pbuilder-update-etch-sid-experimental.log
+++ b/testsuite/normal/pbuilder-update-etch-sid-experimental.log
@@ -1,93 +1,8 @@
Upgrading for distribution sid
Building the build Environment
- -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/testimage]
- -> creating local configuration
- -> copying local configuration
- -> mounting /proc filesystem
- -> mounting /dev/pts filesystem
- -> policy-rc.d already exists
- -> Installing apt-lines
- -> Installing apt-lines and pinning for experimental
-Refreshing the base.tgz
- -> upgrading packages
-Get:1 http://ring.asahi-net.or.jp sid Release.gpg [197B]
-Get:2 http://ring.asahi-net.or.jp ../project/experimental Release.gpg [197B]
-Get:3 http://ring.asahi-net.or.jp sid Release [34.1kB]
-Ign http://ring.asahi-net.or.jp sid Release
-Get:4 http://ring.asahi-net.or.jp ../project/experimental Release [21.6kB]
-Ign http://ring.asahi-net.or.jp ../project/experimental Release
-Hit http://ring.asahi-net.or.jp sid/main Packages
-Get:5 http://ring.asahi-net.or.jp ../project/experimental/main Packages [147kB]
-Fetched 203kB in 0s (1823kB/s)
-Reading package lists...
-W: GPG error: http://ring.asahi-net.or.jp sid Release: Could not execute /usr/bin/gpgv to verify signature (is gnupg installed?)
-W: GPG error: http://ring.asahi-net.or.jp ../project/experimental Release: Could not execute /usr/bin/gpgv to verify signature (is gnupg installed?)
-W: You may want to run apt-get update to correct these problems
-dpkg - warning: ignoring request to remove lilo which isn't installed.
-Reading package lists...
-Building dependency tree...
-The following NEW packages will be installed:
- libsigc++-2.0-0
-The following packages will be upgraded:
- aptitude binutils diff libc6 libc6-dev linux-kernel-headers makedev
-7 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
-Need to get 14.5MB of archives.
-After unpacking 8323kB of additional disk space will be used.
-WARNING: The following packages cannot be authenticated!
- diff linux-kernel-headers libc6-dev libc6 libsigc++-2.0-0 aptitude makedev
- binutils
-Get:1 http://ring.asahi-net.or.jp ../project/experimental/main diff 2.8.7-0.2 [241kB]
-Get:2 http://ring.asahi-net.or.jp ../project/experimental/main linux-kernel-headers 2.6.12+0rc6-1 [1474kB]
-Get:3 http://ring.asahi-net.or.jp ../project/experimental/main libc6-dev 2.3.5-1 [3440kB]
-Get:4 http://ring.asahi-net.or.jp ../project/experimental/main libc6 2.3.5-1 [4871kB]
-Get:5 http://ring.asahi-net.or.jp sid/main libsigc++-2.0-0 2.0.10-1 [30.4kB]
-Get:6 http://ring.asahi-net.or.jp ../project/experimental/main aptitude 0.3.2-4 [1948kB]
-Get:7 http://ring.asahi-net.or.jp ../project/experimental/main makedev 3.3.8.2-0 [92.2kB]
-Get:8 http://ring.asahi-net.or.jp ../project/experimental/main binutils 2.16-0 [2414kB]
-Fetched 14.5MB in 2s (6496kB/s)
-(Reading database ... 11078 files and directories currently installed.)
-Preparing to replace diff 2.8.1-11 (using .../diff_2.8.7-0.2_i386.deb) ...
-Unpacking replacement diff ...
-Setting up diff (2.8.7-0.2) ...
-(Reading database ... 11086 files and directories currently installed.)
-Preparing to replace linux-kernel-headers 2.5.999-test7-bk-17 (using .../linux-kernel-headers_2.6.12+0rc6-1_i386.deb) ...
-Unpacking replacement linux-kernel-headers ...
-Preparing to replace libc6-dev 2.3.2.ds1-22 (using .../libc6-dev_2.3.5-1_i386.deb) ...
-Unpacking replacement libc6-dev ...
-Preparing to replace libc6 2.3.2.ds1-22 (using .../libc6_2.3.5-1_i386.deb) ...
-Unpacking replacement libc6 ...
-Setting up libc6 (2.3.5-1) ...
-Current default timezone: 'UTC'.
-Local time is now: Sun Jul 3 11:51:59 UTC 2005.
-Universal Time is now: Sun Jul 3 11:51:59 UTC 2005.
-Run 'tzconfig' if you wish to change it.
+ -> extracting base tarball [/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/testimage]
-Selecting previously deselected package libsigc++-2.0-0.
-(Reading database ... 11171 files and directories currently installed.)
-Unpacking libsigc++-2.0-0 (from .../libsigc++-2.0-0_2.0.10-1_i386.deb) ...
-Preparing to replace aptitude 0.2.15.9-3 (using .../aptitude_0.3.2-4_i386.deb) ...
-Unpacking replacement aptitude ...
-Preparing to replace makedev 2.3.1-78 (using .../makedev_3.3.8.2-0_i386.deb) ...
-Unpacking replacement makedev ...
-Preparing to replace binutils 2.15-7 (using .../binutils_2.16-0_i386.deb) ...
-Unpacking replacement binutils ...
-Setting up linux-kernel-headers (2.6.12+0rc6-1) ...
-Setting up libc6-dev (2.3.5-1) ...
-Setting up libsigc++-2.0-0 (2.0.10-1) ...
-
-Setting up aptitude (0.3.2-4) ...
-
-Setting up makedev (3.3.8.2-0) ...
-Setting up binutils (2.16-0) ...
-
-Reading package lists...
-Building dependency tree...
-build-essential is already the newest version.
-dpkg-dev is already the newest version.
-apt is already the newest version.
-0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
- -> unmounting dev/pts filesystem
- -> unmounting proc filesystem
- -> creating base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/testimage]
- -> cleaning the build env
- -> removing directory /var/cache/pbuilder/build//30999 and its subdirectories
+gzip: stdin: unexpected end of file
+tar: Child returned status 1
+tar: Error exit delayed from previous errors
+E: failed to extract /home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/testimage to /var/cache/pbuilder/build//7929
diff --git a/testsuite/normal/pbuilder-update-etch-sid.log b/testsuite/normal/pbuilder-update-etch-sid.log
index 1f43fdb..1ade698 100644
--- a/testsuite/normal/pbuilder-update-etch-sid.log
+++ b/testsuite/normal/pbuilder-update-etch-sid.log
@@ -1,344 +1,8 @@
Upgrading for distribution sid
Building the build Environment
- -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/testimage]
- -> creating local configuration
- -> copying local configuration
- -> mounting /proc filesystem
- -> mounting /dev/pts filesystem
- -> policy-rc.d already exists
- -> Installing apt-lines
-Refreshing the base.tgz
- -> upgrading packages
-Get:1 http://ring.asahi-net.or.jp sid/main Packages [3587kB]
-Get:2 http://ring.asahi-net.or.jp sid/main Release [82B]
-Fetched 3587kB in 1s (2338kB/s)
-Reading Package Lists...
-dpkg - warning: ignoring request to remove lilo which isn't installed.
-Reading Package Lists...
-Building Dependency Tree...
-The following NEW packages will be installed:
- libslang2
-The following packages will be upgraded:
- adduser apt apt-utils aptitude base-config base-files base-passwd cpp cpp-3.3
- debianutils dpkg dpkg-dev dselect e2fslibs e2fsprogs fdutils g++ g++-3.3 gcc
- gcc-3.3 gcc-3.3-base grep gzip iptables libacl1 libblkid1 libcomerr2 libdb4.2
- libgcc1 liblocale-gettext-perl libncurses5 libncursesw5 libnewt0.51 libss2
- libssl0.9.7 libstdc++5 libstdc++5-3.3-dev libuuid1 login man-db modutils nano
- ncurses-base ncurses-bin net-tools passwd sed tar wget whiptail
-50 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
-Need to get 20.6MB of archives.
-After unpacking 2643kB disk space will be freed.
-Get:1 http://ring.asahi-net.or.jp sid/main debianutils 2.14.1 [43.4kB]
-Get:2 http://ring.asahi-net.or.jp sid/main dpkg 1.13.10 [1811kB]
-Get:3 http://ring.asahi-net.or.jp sid/main e2fslibs 1.37+1.38-WIP-0620-1 [78.1kB]
-Get:4 http://ring.asahi-net.or.jp sid/main e2fsprogs 1.37+1.38-WIP-0620-1 [502kB]
-Get:5 http://ring.asahi-net.or.jp sid/main grep 2.5.1.ds1-5 [170kB]
-Get:6 http://ring.asahi-net.or.jp sid/main gzip 1.3.5-11 [70.8kB]
-Get:7 http://ring.asahi-net.or.jp sid/main login 1:4.0.3-35 [591kB]
-Get:8 http://ring.asahi-net.or.jp sid/main libncurses5 5.4-8 [289kB]
-Get:9 http://ring.asahi-net.or.jp sid/main ncurses-bin 5.4-8 [208kB]
-Get:10 http://ring.asahi-net.or.jp sid/main sed 4.1.4-2 [242kB]
-Get:11 http://ring.asahi-net.or.jp sid/main tar 1.15.1-2 [756kB]
-Get:12 http://ring.asahi-net.or.jp sid/main base-passwd 3.5.10 [34.7kB]
-Get:13 http://ring.asahi-net.or.jp sid/main base-files 3.1.5 [34.5kB]
-Get:14 http://ring.asahi-net.or.jp sid/main ncurses-base 5.4-8 [12.8kB]
-Get:15 http://ring.asahi-net.or.jp sid/main liblocale-gettext-perl 1.05-1 [19.9kB]
-Get:16 http://ring.asahi-net.or.jp sid/main libdb4.2 4.2.52-19 [388kB]
-Get:17 http://ring.asahi-net.or.jp sid/main libgcc1 1:4.0.0-11 [85.3kB]
-Get:18 http://ring.asahi-net.or.jp sid/main libstdc++5-3.3-dev 1:3.3.6-7 [775kB]
-Get:19 http://ring.asahi-net.or.jp sid/main g++-3.3 1:3.3.6-7 [1779kB]
-Get:20 http://ring.asahi-net.or.jp sid/main gcc-3.3 1:3.3.6-7 [1556kB]
-Get:21 http://ring.asahi-net.or.jp sid/main cpp-3.3 1:3.3.6-7 [1393kB]
-Get:22 http://ring.asahi-net.or.jp sid/main gcc-3.3-base 1:3.3.6-7 [150kB]
-Get:23 http://ring.asahi-net.or.jp sid/main libstdc++5 1:3.3.6-7 [295kB]
-Get:24 http://ring.asahi-net.or.jp sid/main apt-utils 0.6.38 [188kB]
-Get:25 http://ring.asahi-net.or.jp sid/main aptitude 0.2.15.9-3 [941kB]
-Get:26 http://ring.asahi-net.or.jp sid/main apt 0.6.38 [1192kB]
-Get:27 http://ring.asahi-net.or.jp sid/main dselect 1.13.10 [121kB]
-Get:28 http://ring.asahi-net.or.jp sid/main libacl1 2.2.29-1.0.1 [13.6kB]
-Get:29 http://ring.asahi-net.or.jp sid/main libblkid1 1.37+1.38-WIP-0620-1 [42.9kB]
-Get:30 http://ring.asahi-net.or.jp sid/main libcomerr2 1.37+1.38-WIP-0620-1 [27.2kB]
-Get:31 http://ring.asahi-net.or.jp sid/main libss2 1.37+1.38-WIP-0620-1 [33.0kB]
-Get:32 http://ring.asahi-net.or.jp sid/main libuuid1 1.37+1.38-WIP-0620-1 [32.6kB]
-Get:33 http://ring.asahi-net.or.jp sid/main passwd 1:4.0.3-35 [533kB]
-Get:34 http://ring.asahi-net.or.jp sid/main adduser 3.64 [99.8kB]
-Get:35 http://ring.asahi-net.or.jp sid/main base-config 2.66 [329kB]
-Get:36 http://ring.asahi-net.or.jp sid/main iptables 1.3.1-2 [397kB]
-Get:37 http://ring.asahi-net.or.jp sid/main libncursesw5 5.4-8 [305kB]
-Get:38 http://ring.asahi-net.or.jp sid/main libssl0.9.7 0.9.7g-1 [2215kB]
-Get:39 http://ring.asahi-net.or.jp sid/main man-db 2.4.2-23 [579kB]
-Get:40 http://ring.asahi-net.or.jp sid/main modutils 2.4.27.0-3 [235kB]
-Get:41 http://ring.asahi-net.or.jp sid/main nano 1.3.7-4 [375kB]
-Get:42 http://ring.asahi-net.or.jp sid/main net-tools 1.60-15 [248kB]
-Get:43 http://ring.asahi-net.or.jp sid/main wget 1.10-2 [412kB]
-Get:44 http://ring.asahi-net.or.jp sid/main libslang2 2.0.4-2 [408kB]
-Get:45 http://ring.asahi-net.or.jp sid/main whiptail 0.51.6-26 [32.5kB]
-Get:46 http://ring.asahi-net.or.jp sid/main libnewt0.51 0.51.6-26 [57.8kB]
-Get:47 http://ring.asahi-net.or.jp sid/main cpp 4:3.3.6-1 [29.8kB]
-Get:48 http://ring.asahi-net.or.jp sid/main dpkg-dev 1.13.10 [163kB]
-Get:49 http://ring.asahi-net.or.jp sid/main gcc 4:3.3.6-1 [4898B]
-Get:50 http://ring.asahi-net.or.jp sid/main g++ 4:3.3.6-1 [1384B]
-Get:51 http://ring.asahi-net.or.jp sid/main fdutils 5.5-20050303-1 [347kB]
-Preconfiguring packages ...
-Fetched 20.6MB in 3s (5729kB/s)
-(Reading database ... 11038 files and directories currently installed.)
-Preparing to replace debianutils 2.13.2 (using .../debianutils_2.14.1_i386.deb) ...
-Unpacking replacement debianutils ...
-Setting up debianutils (2.14.1) ...
+ -> extracting base tarball [/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/testimage]
-(Reading database ... 11038 files and directories currently installed.)
-Preparing to replace dpkg 1.10.28 (using .../archives/dpkg_1.13.10_i386.deb) ...
-Unpacking replacement dpkg ...
-Setting up dpkg (1.13.10) ...
-Installing new version of config file /etc/dpkg/origins/debian ...
-Removing /usr/info symlink ...
-Adding `local diversion of /usr/bin/md5sum.textutils to /usr/bin/md5sum'
-Adding `local diversion of /usr/share/man/man1/md5sum.textutils.1.gz to /usr/share/man/man1/md5sum.1.gz'
-
-(Reading database ... 11037 files and directories currently installed.)
-Preparing to replace e2fslibs 1.37-2sarge1 (using .../e2fslibs_1.37+1.38-WIP-0620-1_i386.deb) ...
-Unpacking replacement e2fslibs ...
-Setting up e2fslibs (1.37+1.38-WIP-0620-1) ...
-
-(Reading database ... 11037 files and directories currently installed.)
-Preparing to replace e2fsprogs 1.37-2sarge1 (using .../e2fsprogs_1.37+1.38-WIP-0620-1_i386.deb) ...
-Unpacking replacement e2fsprogs ...
-Setting up e2fsprogs (1.37+1.38-WIP-0620-1) ...
-(Reading database ... 11039 files and directories currently installed.)
-Preparing to replace grep 2.5.1.ds1-4 (using .../grep_2.5.1.ds1-5_i386.deb) ...
-Unpacking replacement grep ...
-Setting up grep (2.5.1.ds1-5) ...
-(Reading database ... 11039 files and directories currently installed.)
-Preparing to replace gzip 1.3.5-10 (using .../gzip_1.3.5-11_i386.deb) ...
-Unpacking replacement gzip ...
-Setting up gzip (1.3.5-11) ...
-
-(Reading database ... 11039 files and directories currently installed.)
-Preparing to replace login 1:4.0.3-31sarge5 (using .../login_1%3a4.0.3-35_i386.deb) ...
-Unpacking replacement login ...
-Setting up login (4.0.3-35) ...
-Installing new version of config file /etc/pam.d/login ...
-Installing new version of config file /etc/pam.d/su ...
-Installing new version of config file /etc/login.defs ...
-
-(Reading database ... 11041 files and directories currently installed.)
-Preparing to replace libncurses5 5.4-4 (using .../libncurses5_5.4-8_i386.deb) ...
-Unpacking replacement libncurses5 ...
-Setting up libncurses5 (5.4-8) ...
-
-(Reading database ... 11042 files and directories currently installed.)
-Preparing to replace ncurses-bin 5.4-4 (using .../ncurses-bin_5.4-8_i386.deb) ...
-Unpacking replacement ncurses-bin ...
-Setting up ncurses-bin (5.4-8) ...
-
-(Reading database ... 11042 files and directories currently installed.)
-Preparing to replace sed 4.1.2-8 (using .../archives/sed_4.1.4-2_i386.deb) ...
-Unpacking replacement sed ...
-Setting up sed (4.1.4-2) ...
-
-(Reading database ... 11043 files and directories currently installed.)
-Preparing to replace tar 1.14-2 (using .../archives/tar_1.15.1-2_i386.deb) ...
-Unpacking replacement tar ...
-Setting up tar (1.15.1-2) ...
-
-(Reading database ... 11047 files and directories currently installed.)
-Preparing to replace base-passwd 3.5.9 (using .../base-passwd_3.5.10_i386.deb) ...
-Unpacking replacement base-passwd ...
-Setting up base-passwd (3.5.10) ...
-
-(Reading database ... 11047 files and directories currently installed.)
-Preparing to replace base-files 3.1.4 (using .../base-files_3.1.5_i386.deb) ...
-Unpacking replacement base-files ...
-Setting up base-files (3.1.5) ...
-
-(Reading database ... 11047 files and directories currently installed.)
-Preparing to replace ncurses-base 5.4-4 (using .../ncurses-base_5.4-8_all.deb) ...
-Unpacking replacement ncurses-base ...
-Setting up ncurses-base (5.4-8) ...
-Installing new version of config file /etc/terminfo/E/Eterm ...
-Installing new version of config file /etc/terminfo/a/ansi ...
-Installing new version of config file /etc/terminfo/c/cons25 ...
-Installing new version of config file /etc/terminfo/l/linux ...
-Installing new version of config file /etc/terminfo/p/pcansi ...
-Installing new version of config file /etc/terminfo/r/rxvt ...
-Installing new version of config file /etc/terminfo/r/rxvt-basic ...
-Installing new version of config file /etc/terminfo/s/screen-w ...
-Installing new version of config file /etc/terminfo/s/sun ...
-Installing new version of config file /etc/terminfo/v/vt100 ...
-Installing new version of config file /etc/terminfo/v/vt102 ...
-Installing new version of config file /etc/terminfo/v/vt220 ...
-Installing new version of config file /etc/terminfo/v/vt52 ...
-Installing new version of config file /etc/terminfo/w/wsvt25 ...
-Installing new version of config file /etc/terminfo/w/wsvt25m ...
-Installing new version of config file /etc/terminfo/x/xterm ...
-Installing new version of config file /etc/terminfo/x/xterm-debian ...
-Installing new version of config file /etc/terminfo/x/xterm-xfree86 ...
-Installing new version of config file /etc/terminfo/x/xterm-mono ...
-Installing new version of config file /etc/terminfo/x/xterm-vt220 ...
-
-(Reading database ... 11049 files and directories currently installed.)
-Preparing to replace liblocale-gettext-perl 1.04-1 (using .../liblocale-gettext-perl_1.05-1_i386.deb) ...
-Unpacking replacement liblocale-gettext-perl ...
-Preparing to replace libdb4.2 4.2.52-18 (using .../libdb4.2_4.2.52-19_i386.deb) ...
-Unpacking replacement libdb4.2 ...
-Preparing to replace libgcc1 1:4.0.0-9 (using .../libgcc1_1%3a4.0.0-11_i386.deb) ...
-Unpacking replacement libgcc1 ...
-Setting up libgcc1 (4.0.0-11) ...
-
-(Reading database ... 11049 files and directories currently installed.)
-Preparing to replace libstdc++5-3.3-dev 1:3.3.5-13 (using .../libstdc++5-3.3-dev_1%3a3.3.6-7_i386.deb) ...
-Unpacking replacement libstdc++5-3.3-dev ...
-Preparing to replace g++-3.3 1:3.3.5-13 (using .../g++-3.3_1%3a3.3.6-7_i386.deb) ...
-Unpacking replacement g++-3.3 ...
-Preparing to replace gcc-3.3 1:3.3.5-13 (using .../gcc-3.3_1%3a3.3.6-7_i386.deb) ...
-Unpacking replacement gcc-3.3 ...
-Preparing to replace cpp-3.3 1:3.3.5-13 (using .../cpp-3.3_1%3a3.3.6-7_i386.deb) ...
-Unpacking replacement cpp-3.3 ...
-Preparing to replace gcc-3.3-base 1:3.3.5-13 (using .../gcc-3.3-base_1%3a3.3.6-7_i386.deb) ...
-Unpacking replacement gcc-3.3-base ...
-Preparing to replace libstdc++5 1:3.3.5-13 (using .../libstdc++5_1%3a3.3.6-7_i386.deb) ...
-Unpacking replacement libstdc++5 ...
-Setting up gcc-3.3-base (3.3.6-7) ...
-Setting up libstdc++5 (3.3.6-7) ...
-
-(Reading database ... 11043 files and directories currently installed.)
-Preparing to replace apt-utils 0.5.28.6 (using .../apt-utils_0.6.38_i386.deb) ...
-Unpacking replacement apt-utils ...
-Preparing to replace aptitude 0.2.15.9-2 (using .../aptitude_0.2.15.9-3_i386.deb) ...
-Unpacking replacement aptitude ...
-Preparing to replace apt 0.5.28.6 (using .../archives/apt_0.6.38_i386.deb) ...
-Unpacking replacement apt ...
-Setting up apt (0.6.38) ...
-
-(Reading database ... 11041 files and directories currently installed.)
-Preparing to replace dselect 1.10.28 (using .../dselect_1.13.10_i386.deb) ...
-Unpacking replacement dselect ...
-Setting up dselect (1.13.10) ...
-Installing new version of config file /etc/dpkg/dselect.cfg ...
-(Reading database ... 11041 files and directories currently installed.)
-Preparing to replace libacl1 2.2.23-1 (using .../libacl1_2.2.29-1.0.1_i386.deb) ...
-Unpacking replacement libacl1 ...
-Setting up libacl1 (2.2.29-1.0.1) ...
-
-(Reading database ... 11041 files and directories currently installed.)
-Preparing to replace libblkid1 1.37-2sarge1 (using .../libblkid1_1.37+1.38-WIP-0620-1_i386.deb) ...
-Unpacking replacement libblkid1 ...
-Setting up libblkid1 (1.37+1.38-WIP-0620-1) ...
-
-(Reading database ... 11041 files and directories currently installed.)
-Preparing to replace libcomerr2 1.37-2sarge1 (using .../libcomerr2_1.37+1.38-WIP-0620-1_i386.deb) ...
-Unpacking replacement libcomerr2 ...
-Setting up libcomerr2 (1.37+1.38-WIP-0620-1) ...
-
-(Reading database ... 11041 files and directories currently installed.)
-Preparing to replace libss2 1.37-2sarge1 (using .../libss2_1.37+1.38-WIP-0620-1_i386.deb) ...
-Unpacking replacement libss2 ...
-Setting up libss2 (1.37+1.38-WIP-0620-1) ...
-
-(Reading database ... 11041 files and directories currently installed.)
-Preparing to replace libuuid1 1.37-2sarge1 (using .../libuuid1_1.37+1.38-WIP-0620-1_i386.deb) ...
-Unpacking replacement libuuid1 ...
-Setting up libuuid1 (1.37+1.38-WIP-0620-1) ...
-
-(Reading database ... 11041 files and directories currently installed.)
-Preparing to replace passwd 1:4.0.3-31sarge5 (using .../passwd_1%3a4.0.3-35_i386.deb) ...
-Unpacking replacement passwd ...
-Setting up passwd (4.0.3-35) ...
-
-(Reading database ... 11047 files and directories currently installed.)
-Preparing to replace adduser 3.63 (using .../archives/adduser_3.64_all.deb) ...
-Unpacking replacement adduser ...
-Preparing to replace base-config 2.65 (using .../base-config_2.66_all.deb) ...
-Unpacking replacement base-config ...
-Preparing to replace iptables 1.2.11-10 (using .../iptables_1.3.1-2_i386.deb) ...
-Unpacking replacement iptables ...
-Preparing to replace libncursesw5 5.4-4 (using .../libncursesw5_5.4-8_i386.deb) ...
-Unpacking replacement libncursesw5 ...
-Preparing to replace libssl0.9.7 0.9.7e-3 (using .../libssl0.9.7_0.9.7g-1_i386.deb) ...
-Unpacking replacement libssl0.9.7 ...
-Preparing to replace man-db 2.4.2-21 (using .../man-db_2.4.2-23_i386.deb) ...
-Unpacking replacement man-db ...
-Preparing to replace modutils 2.4.26-1.2 (using .../modutils_2.4.27.0-3_i386.deb) ...
-Unpacking replacement modutils ...
-Preparing to replace nano 1.2.4-5 (using .../archives/nano_1.3.7-4_i386.deb) ...
-Unpacking replacement nano ...
-Preparing to replace net-tools 1.60-13 (using .../net-tools_1.60-15_i386.deb) ...
-Unpacking replacement net-tools ...
-Preparing to replace wget 1.10-1 (using .../archives/wget_1.10-2_i386.deb) ...
-Unpacking replacement wget ...
-Selecting previously deselected package libslang2.
-Unpacking libslang2 (from .../libslang2_2.0.4-2_i386.deb) ...
-Preparing to replace whiptail 0.51.6-23 (using .../whiptail_0.51.6-26_i386.deb) ...
-Unpacking replacement whiptail ...
-Preparing to replace libnewt0.51 0.51.6-23 (using .../libnewt0.51_0.51.6-26_i386.deb) ...
-Unpacking replacement libnewt0.51 ...
-Preparing to replace cpp 4:3.3.5-3 (using .../cpp_4%3a3.3.6-1_i386.deb) ...
-Unpacking replacement cpp ...
-Preparing to replace dpkg-dev 1.10.28 (using .../dpkg-dev_1.13.10_all.deb) ...
-Unpacking replacement dpkg-dev ...
-Preparing to replace gcc 4:3.3.5-3 (using .../gcc_4%3a3.3.6-1_i386.deb) ...
-Removing old gcc doc directory.
-Unpacking replacement gcc ...
-Preparing to replace g++ 4:3.3.5-3 (using .../g++_4%3a3.3.6-1_i386.deb) ...
-Unpacking replacement g++ ...
-Preparing to replace fdutils 5.4-20040228-1 (using .../fdutils_5.5-20050303-1_i386.deb) ...
-Unpacking replacement fdutils ...
-Setting up liblocale-gettext-perl (1.05-1) ...
-Setting up libdb4.2 (4.2.52-19) ...
-Setting up cpp-3.3 (3.3.6-7) ...
-Setting up gcc-3.3 (3.3.6-7) ...
-Setting up apt-utils (0.6.38) ...
-
-Setting up aptitude (0.2.15.9-3) ...
-
-Setting up adduser (3.64) ...
-
-Setting up base-config (2.66) ...
-
-Setting up iptables (1.3.1-2) ...
-
-Setting up libncursesw5 (5.4-8) ...
-
-Setting up libssl0.9.7 (0.9.7g-1) ...
-
-Setting up man-db (2.4.2-23) ...
-
-Setting up modutils (2.4.27.0-3) ...
-Installing new version of config file /etc/init.d/modutils ...
-Installing new version of config file /etc/modutils/aliases ...
-Installing new version of config file /etc/modutils/actions ...
-
-Setting up nano (1.3.7-4) ...
-Installing new version of config file /etc/nanorc ...
-
-Setting up net-tools (1.60-15) ...
-Setting up wget (1.10-2) ...
-
-Setting up libslang2 (2.0.4-2) ...
-
-Setting up libnewt0.51 (0.51.6-26) ...
-
-Setting up whiptail (0.51.6-26) ...
-Setting up cpp (3.3.6-1) ...
-Setting up dpkg-dev (1.13.10) ...
-Installing new version of config file /etc/dpkg/shlibs.default ...
-Installing new version of config file /etc/dpkg/shlibs.override ...
-Setting up gcc (3.3.6-1) ...
-
-Setting up fdutils (5.5-20050303-1) ...
-
-Setting up g++-3.3 (3.3.6-7) ...
-Setting up libstdc++5-3.3-dev (3.3.6-7) ...
-Setting up g++ (3.3.6-1) ...
-
-Reading package lists...
-Building dependency tree...
-build-essential is already the newest version.
-dpkg-dev is already the newest version.
-apt is already the newest version.
-0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
- -> unmounting dev/pts filesystem
- -> unmounting proc filesystem
- -> creating base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/testimage]
- -> cleaning the build env
- -> removing directory /var/cache/pbuilder/build//29975 and its subdirectories
+gzip: stdin: unexpected end of file
+tar: Child returned status 1
+tar: Error exit delayed from previous errors
+E: failed to extract /home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/testimage to /var/cache/pbuilder/build//7919
diff --git a/testsuite/normal/pbuilder-update-sarge-etch-sid-experimental.log b/testsuite/normal/pbuilder-update-sarge-etch-sid-experimental.log
index 0d32e8f..df1ea43 100644
--- a/testsuite/normal/pbuilder-update-sarge-etch-sid-experimental.log
+++ b/testsuite/normal/pbuilder-update-sarge-etch-sid-experimental.log
@@ -1,6 +1,6 @@
Upgrading for distribution sid
Building the build Environment
- -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/testimage]
+ -> extracting base tarball [/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/testimage]
-> creating local configuration
-> copying local configuration
-> mounting /proc filesystem
@@ -17,77 +17,52 @@ Ign http://ring.asahi-net.or.jp sid Release
Get:4 http://ring.asahi-net.or.jp ../project/experimental Release [21.6kB]
Ign http://ring.asahi-net.or.jp ../project/experimental Release
Hit http://ring.asahi-net.or.jp sid/main Packages
-Get:5 http://ring.asahi-net.or.jp ../project/experimental/main Packages [147kB]
-Fetched 203kB in 0s (1025kB/s)
+Get:5 http://ring.asahi-net.or.jp ../project/experimental/main Packages [84.7kB]
+Fetched 141kB in 5s (26.1kB/s)
Reading package lists...
W: GPG error: http://ring.asahi-net.or.jp sid Release: Could not execute /usr/bin/gpgv to verify signature (is gnupg installed?)
W: GPG error: http://ring.asahi-net.or.jp ../project/experimental Release: Could not execute /usr/bin/gpgv to verify signature (is gnupg installed?)
W: You may want to run apt-get update to correct these problems
dpkg - warning: ignoring request to remove lilo which isn't installed.
+Obtaining the cached apt archive contents
Reading package lists...
Building dependency tree...
-The following NEW packages will be installed:
- libsigc++-2.0-0
The following packages will be upgraded:
- aptitude binutils diff libc6 libc6-dev linux-kernel-headers makedev
-7 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
-Need to get 14.5MB of archives.
-After unpacking 8323kB of additional disk space will be used.
+ diff libc6 libc6-dev makedev
+4 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
+Need to get 0B/7740kB of archives.
+After unpacking 1069kB of additional disk space will be used.
WARNING: The following packages cannot be authenticated!
- diff linux-kernel-headers libc6-dev libc6 libsigc++-2.0-0 aptitude makedev
- binutils
-Get:1 http://ring.asahi-net.or.jp ../project/experimental/main diff 2.8.7-0.2 [241kB]
-Get:2 http://ring.asahi-net.or.jp ../project/experimental/main linux-kernel-headers 2.6.12+0rc6-1 [1474kB]
-Get:3 http://ring.asahi-net.or.jp ../project/experimental/main libc6-dev 2.3.5-1 [3440kB]
-Get:4 http://ring.asahi-net.or.jp ../project/experimental/main libc6 2.3.5-1 [4871kB]
-Get:5 http://ring.asahi-net.or.jp sid/main libsigc++-2.0-0 2.0.10-1 [30.4kB]
-Get:6 http://ring.asahi-net.or.jp ../project/experimental/main aptitude 0.3.2-4 [1948kB]
-Get:7 http://ring.asahi-net.or.jp ../project/experimental/main makedev 3.3.8.2-0 [92.2kB]
-Get:8 http://ring.asahi-net.or.jp ../project/experimental/main binutils 2.16-0 [2414kB]
-Fetched 14.5MB in 2s (5818kB/s)
-(Reading database ... 11311 files and directories currently installed.)
-Preparing to replace diff 2.8.1-11 (using .../diff_2.8.7-0.2_i386.deb) ...
+ diff libc6-dev libc6 makedev
+(Reading database ... 12084 files and directories currently installed.)
+Preparing to replace diff 2.8.1-11 (using .../diff_2.8.7-0.2_powerpc.deb) ...
Unpacking replacement diff ...
Setting up diff (2.8.7-0.2) ...
-(Reading database ... 11319 files and directories currently installed.)
-Preparing to replace linux-kernel-headers 2.5.999-test7-bk-17 (using .../linux-kernel-headers_2.6.12+0rc6-1_i386.deb) ...
-Unpacking replacement linux-kernel-headers ...
-Preparing to replace libc6-dev 2.3.2.ds1-22 (using .../libc6-dev_2.3.5-1_i386.deb) ...
+(Reading database ... 12092 files and directories currently installed.)
+Preparing to replace libc6-dev 2.3.2.ds1-22 (using .../libc6-dev_2.3.5-1_powerpc.deb) ...
Unpacking replacement libc6-dev ...
-Preparing to replace libc6 2.3.2.ds1-22 (using .../libc6_2.3.5-1_i386.deb) ...
+Preparing to replace libc6 2.3.2.ds1-22 (using .../libc6_2.3.5-1_powerpc.deb) ...
Unpacking replacement libc6 ...
Setting up libc6 (2.3.5-1) ...
Current default timezone: 'UTC'.
-Local time is now: Sun Jul 3 11:46:47 UTC 2005.
-Universal Time is now: Sun Jul 3 11:46:47 UTC 2005.
+Local time is now: Wed Jul 13 21:48:21 UTC 2005.
+Universal Time is now: Wed Jul 13 21:48:21 UTC 2005.
Run 'tzconfig' if you wish to change it.
-Selecting previously deselected package libsigc++-2.0-0.
-(Reading database ... 11404 files and directories currently installed.)
-Unpacking libsigc++-2.0-0 (from .../libsigc++-2.0-0_2.0.10-1_i386.deb) ...
-Preparing to replace aptitude 0.2.15.9-3 (using .../aptitude_0.3.2-4_i386.deb) ...
-Unpacking replacement aptitude ...
-Preparing to replace makedev 2.3.1-78 (using .../makedev_3.3.8.2-0_i386.deb) ...
+(Reading database ... 12101 files and directories currently installed.)
+Preparing to replace makedev 2.3.1-78 (using .../makedev_3.3.8.2-0_powerpc.deb) ...
Unpacking replacement makedev ...
-Preparing to replace binutils 2.15-7 (using .../binutils_2.16-0_i386.deb) ...
-Unpacking replacement binutils ...
-Setting up linux-kernel-headers (2.6.12+0rc6-1) ...
Setting up libc6-dev (2.3.5-1) ...
-Setting up libsigc++-2.0-0 (2.0.10-1) ...
-
-Setting up aptitude (0.3.2-4) ...
-
Setting up makedev (3.3.8.2-0) ...
-Setting up binutils (2.16-0) ...
-
Reading package lists...
Building dependency tree...
build-essential is already the newest version.
dpkg-dev is already the newest version.
apt is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
+Copying back the cached apt archive contents
-> unmounting dev/pts filesystem
-> unmounting proc filesystem
- -> creating base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/testimage]
+ -> creating base tarball [/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/testimage]
-> cleaning the build env
- -> removing directory /var/cache/pbuilder/build//1957 and its subdirectories
+ -> removing directory /var/cache/pbuilder/build//30189 and its subdirectories
diff --git a/testsuite/normal/pbuilder-update-sarge-etch-sid.log b/testsuite/normal/pbuilder-update-sarge-etch-sid.log
index 37341e1..608d39d 100644
--- a/testsuite/normal/pbuilder-update-sarge-etch-sid.log
+++ b/testsuite/normal/pbuilder-update-sarge-etch-sid.log
@@ -1,6 +1,6 @@
Upgrading for distribution sid
Building the build Environment
- -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/testimage]
+ -> extracting base tarball [/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/testimage]
-> creating local configuration
-> copying local configuration
-> mounting /proc filesystem
@@ -9,90 +9,33 @@ Building the build Environment
-> Installing apt-lines
Refreshing the base.tgz
-> upgrading packages
-Get:1 http://ring.asahi-net.or.jp sid/main Packages [3587kB]
-Get:2 http://ring.asahi-net.or.jp sid/main Release [82B]
-Fetched 3587kB in 1s (1794kB/s)
+Get:1 http://ring.asahi-net.or.jp sid/main Packages [3510kB]
+Get:2 http://ring.asahi-net.or.jp sid/main Release [85B]
+Fetched 3510kB in 22s (156kB/s)
Reading Package Lists...
dpkg - warning: ignoring request to remove lilo which isn't installed.
+Obtaining the cached apt archive contents
Reading Package Lists...
Building Dependency Tree...
The following NEW packages will be installed:
- libncursesw5 libslang2
+ cpp-4.0 g++-4.0 gcc-4.0 gcc-4.0-base laptop-detect libncursesw5 libstdc++6
+ libstdc++6-4.0-dev
The following packages will be upgraded:
- adduser apt apt-utils aptitude base-config base-files base-passwd cpp cpp-3.3
- debianutils dpkg dpkg-dev dselect e2fslibs e2fsprogs exim4 exim4-base
- exim4-config exim4-daemon-light fdutils g++ g++-3.3 gcc gcc-3.3 gcc-3.3-base
- grep gzip iptables libacl1 libblkid1 libcomerr2 libdb4.2 libgcc1
- liblocale-gettext-perl libncurses5 libnewt0.51 libss2 libssl0.9.7 libstdc++5
- libstdc++5-3.3-dev libuuid1 login man-db modutils nano ncurses-base
- ncurses-bin net-tools passwd sed tar wget whiptail
-53 upgraded, 2 newly installed, 0 to remove and 0 not upgraded.
-Need to get 22.1MB of archives.
-After unpacking 2070kB disk space will be freed.
-Get:1 http://ring.asahi-net.or.jp sid/main debianutils 2.14.1 [43.4kB]
-Get:2 http://ring.asahi-net.or.jp sid/main dpkg 1.13.10 [1811kB]
-Get:3 http://ring.asahi-net.or.jp sid/main e2fslibs 1.37+1.38-WIP-0620-1 [78.1kB]
-Get:4 http://ring.asahi-net.or.jp sid/main e2fsprogs 1.37+1.38-WIP-0620-1 [502kB]
-Get:5 http://ring.asahi-net.or.jp sid/main grep 2.5.1.ds1-5 [170kB]
-Get:6 http://ring.asahi-net.or.jp sid/main gzip 1.3.5-11 [70.8kB]
-Get:7 http://ring.asahi-net.or.jp sid/main login 1:4.0.3-35 [591kB]
-Get:8 http://ring.asahi-net.or.jp sid/main libncurses5 5.4-8 [289kB]
-Get:9 http://ring.asahi-net.or.jp sid/main ncurses-bin 5.4-8 [208kB]
-Get:10 http://ring.asahi-net.or.jp sid/main sed 4.1.4-2 [242kB]
-Get:11 http://ring.asahi-net.or.jp sid/main tar 1.15.1-2 [756kB]
-Get:12 http://ring.asahi-net.or.jp sid/main base-passwd 3.5.10 [34.7kB]
-Get:13 http://ring.asahi-net.or.jp sid/main base-files 3.1.5 [34.5kB]
-Get:14 http://ring.asahi-net.or.jp sid/main ncurses-base 5.4-8 [12.8kB]
-Get:15 http://ring.asahi-net.or.jp sid/main liblocale-gettext-perl 1.05-1 [19.9kB]
-Get:16 http://ring.asahi-net.or.jp sid/main libdb4.2 4.2.52-19 [388kB]
-Get:17 http://ring.asahi-net.or.jp sid/main libgcc1 1:4.0.0-11 [85.3kB]
-Get:18 http://ring.asahi-net.or.jp sid/main libstdc++5-3.3-dev 1:3.3.6-7 [775kB]
-Get:19 http://ring.asahi-net.or.jp sid/main g++-3.3 1:3.3.6-7 [1779kB]
-Get:20 http://ring.asahi-net.or.jp sid/main gcc-3.3 1:3.3.6-7 [1556kB]
-Get:21 http://ring.asahi-net.or.jp sid/main cpp-3.3 1:3.3.6-7 [1393kB]
-Get:22 http://ring.asahi-net.or.jp sid/main gcc-3.3-base 1:3.3.6-7 [150kB]
-Get:23 http://ring.asahi-net.or.jp sid/main libstdc++5 1:3.3.6-7 [295kB]
-Get:24 http://ring.asahi-net.or.jp sid/main apt-utils 0.6.38 [188kB]
-Get:25 http://ring.asahi-net.or.jp sid/main aptitude 0.2.15.9-3 [941kB]
-Get:26 http://ring.asahi-net.or.jp sid/main apt 0.6.38 [1192kB]
-Get:27 http://ring.asahi-net.or.jp sid/main dselect 1.13.10 [121kB]
-Get:28 http://ring.asahi-net.or.jp sid/main libacl1 2.2.29-1.0.1 [13.6kB]
-Get:29 http://ring.asahi-net.or.jp sid/main libblkid1 1.37+1.38-WIP-0620-1 [42.9kB]
-Get:30 http://ring.asahi-net.or.jp sid/main libcomerr2 1.37+1.38-WIP-0620-1 [27.2kB]
-Get:31 http://ring.asahi-net.or.jp sid/main libss2 1.37+1.38-WIP-0620-1 [33.0kB]
-Get:32 http://ring.asahi-net.or.jp sid/main libuuid1 1.37+1.38-WIP-0620-1 [32.6kB]
-Get:33 http://ring.asahi-net.or.jp sid/main exim4-daemon-light 4.51-2 [371kB]
-Get:34 http://ring.asahi-net.or.jp sid/main adduser 3.64 [99.8kB]
-Get:35 http://ring.asahi-net.or.jp sid/main exim4-config 4.51-2 [245kB]
-Get:36 http://ring.asahi-net.or.jp sid/main exim4-base 4.51-2 [833kB]
-Get:37 http://ring.asahi-net.or.jp sid/main passwd 1:4.0.3-35 [533kB]
-Get:38 http://ring.asahi-net.or.jp sid/main base-config 2.66 [329kB]
-Get:39 http://ring.asahi-net.or.jp sid/main iptables 1.3.1-2 [397kB]
-Get:40 http://ring.asahi-net.or.jp sid/main libncursesw5 5.4-8 [305kB]
-Get:41 http://ring.asahi-net.or.jp sid/main libssl0.9.7 0.9.7g-1 [2215kB]
-Get:42 http://ring.asahi-net.or.jp sid/main man-db 2.4.2-23 [579kB]
-Get:43 http://ring.asahi-net.or.jp sid/main modutils 2.4.27.0-3 [235kB]
-Get:44 http://ring.asahi-net.or.jp sid/main nano 1.3.7-4 [375kB]
-Get:45 http://ring.asahi-net.or.jp sid/main net-tools 1.60-15 [248kB]
-Get:46 http://ring.asahi-net.or.jp sid/main wget 1.10-2 [412kB]
-Get:47 http://ring.asahi-net.or.jp sid/main libslang2 2.0.4-2 [408kB]
-Get:48 http://ring.asahi-net.or.jp sid/main whiptail 0.51.6-26 [32.5kB]
-Get:49 http://ring.asahi-net.or.jp sid/main libnewt0.51 0.51.6-26 [57.8kB]
-Get:50 http://ring.asahi-net.or.jp sid/main cpp 4:3.3.6-1 [29.8kB]
-Get:51 http://ring.asahi-net.or.jp sid/main dpkg-dev 1.13.10 [163kB]
-Get:52 http://ring.asahi-net.or.jp sid/main exim4 4.51-2 [1124B]
-Get:53 http://ring.asahi-net.or.jp sid/main gcc 4:3.3.6-1 [4898B]
-Get:54 http://ring.asahi-net.or.jp sid/main g++ 4:3.3.6-1 [1384B]
-Get:55 http://ring.asahi-net.or.jp sid/main fdutils 5.5-20050303-1 [347kB]
+ apt apt-utils aptitude base-config binutils build-essential cpp cpp-3.3
+ debconf debconf-i18n dpkg dpkg-dev dselect e2fslibs e2fsprogs exim4
+ exim4-base exim4-config exim4-daemon-light fdutils g++ g++-3.3 gcc gcc-3.3
+ gcc-3.3-base gettext-base grep gzip libacl1 libblkid1 libcomerr2 libdb4.2
+ libgcc1 libgcrypt11 libncurses5 libnewt0.51 libpam-modules libpam-runtime
+ libpam0g libperl5.8 libslang2 libss2 libssl0.9.7 libstdc++5
+ libstdc++5-3.3-dev libuuid1 linux-kernel-headers login mac-fdisk man-db
+ modutils nano ncurses-base ncurses-bin net-tools passwd perl perl-base
+ perl-modules powerpc-utils sed tar tasksel telnet wget whiptail zlib1g
Preconfiguring packages ...
-Fetched 22.1MB in 4s (4977kB/s)
-(Reading database ... 11259 files and directories currently installed.)
-Preparing to replace debianutils 2.13.2 (using .../debianutils_2.14.1_i386.deb) ...
-Unpacking replacement debianutils ...
-Setting up debianutils (2.14.1) ...
-
-(Reading database ... 11259 files and directories currently installed.)
-Preparing to replace dpkg 1.10.28 (using .../archives/dpkg_1.13.10_i386.deb) ...
+67 upgraded, 8 newly installed, 0 to remove and 0 not upgraded.
+Need to get 0B/40.9MB of archives.
+After unpacking 25.4MB of additional disk space will be used.
+(Reading database ... 11113 files and directories currently installed.)
+Preparing to replace dpkg 1.10.28 (using .../dpkg_1.13.10_powerpc.deb) ...
Unpacking replacement dpkg ...
Setting up dpkg (1.13.10) ...
Installing new version of config file /etc/dpkg/origins/debian ...
@@ -100,63 +43,80 @@ Removing /usr/info symlink ...
Adding `local diversion of /usr/bin/md5sum.textutils to /usr/bin/md5sum'
Adding `local diversion of /usr/share/man/man1/md5sum.textutils.1.gz to /usr/share/man/man1/md5sum.1.gz'
-(Reading database ... 11258 files and directories currently installed.)
-Preparing to replace e2fslibs 1.37-2sarge1 (using .../e2fslibs_1.37+1.38-WIP-0620-1_i386.deb) ...
+(Reading database ... 11112 files and directories currently installed.)
+Preparing to replace e2fslibs 1.37-2sarge1 (using .../e2fslibs_1.38-1_powerpc.deb) ...
Unpacking replacement e2fslibs ...
-Setting up e2fslibs (1.37+1.38-WIP-0620-1) ...
+Setting up e2fslibs (1.38-1) ...
-(Reading database ... 11258 files and directories currently installed.)
-Preparing to replace e2fsprogs 1.37-2sarge1 (using .../e2fsprogs_1.37+1.38-WIP-0620-1_i386.deb) ...
+(Reading database ... 11112 files and directories currently installed.)
+Preparing to replace e2fsprogs 1.37-2sarge1 (using .../e2fsprogs_1.38-1_powerpc.deb) ...
Unpacking replacement e2fsprogs ...
-Setting up e2fsprogs (1.37+1.38-WIP-0620-1) ...
-(Reading database ... 11260 files and directories currently installed.)
-Preparing to replace grep 2.5.1.ds1-4 (using .../grep_2.5.1.ds1-5_i386.deb) ...
+Setting up e2fsprogs (1.38-1) ...
+(Reading database ... 11114 files and directories currently installed.)
+Preparing to replace grep 2.5.1.ds1-4 (using .../grep_2.5.1.ds1-5_powerpc.deb) ...
Unpacking replacement grep ...
Setting up grep (2.5.1.ds1-5) ...
-(Reading database ... 11260 files and directories currently installed.)
-Preparing to replace gzip 1.3.5-10 (using .../gzip_1.3.5-11_i386.deb) ...
+(Reading database ... 11114 files and directories currently installed.)
+Preparing to replace gzip 1.3.5-10 (using .../gzip_1.3.5-11_powerpc.deb) ...
Unpacking replacement gzip ...
Setting up gzip (1.3.5-11) ...
-(Reading database ... 11260 files and directories currently installed.)
-Preparing to replace login 1:4.0.3-31sarge5 (using .../login_1%3a4.0.3-35_i386.deb) ...
+(Reading database ... 11114 files and directories currently installed.)
+Preparing to replace libpam-runtime 0.76-22 (using .../libpam-runtime_0.76-23_all.deb) ...
+Unpacking replacement libpam-runtime ...
+Setting up libpam-runtime (0.76-23) ...
+Installing new version of config file /etc/pam.conf ...
+
+(Reading database ... 11114 files and directories currently installed.)
+Preparing to replace libpam0g 0.76-22 (using .../libpam0g_0.76-23_powerpc.deb) ...
+Unpacking replacement libpam0g ...
+Setting up libpam0g (0.76-23) ...
+
+(Reading database ... 11114 files and directories currently installed.)
+Preparing to replace libpam-modules 0.76-22 (using .../libpam-modules_0.76-23_powerpc.deb) ...
+Unpacking replacement libpam-modules ...
+Setting up libpam-modules (0.76-23) ...
+Installing new version of config file /etc/security/pam_env.conf ...
+
+(Reading database ... 11114 files and directories currently installed.)
+Preparing to replace login 1:4.0.3-35 (using .../login_1%3a4.0.3-37_powerpc.deb) ...
Unpacking replacement login ...
-Setting up login (4.0.3-35) ...
-Installing new version of config file /etc/pam.d/login ...
-Installing new version of config file /etc/pam.d/su ...
+Setting up login (4.0.3-37) ...
Installing new version of config file /etc/login.defs ...
-(Reading database ... 11262 files and directories currently installed.)
-Preparing to replace libncurses5 5.4-4 (using .../libncurses5_5.4-8_i386.deb) ...
+(Reading database ... 11113 files and directories currently installed.)
+Preparing to replace libncurses5 5.4-4 (using .../libncurses5_5.4-8_powerpc.deb) ...
Unpacking replacement libncurses5 ...
Setting up libncurses5 (5.4-8) ...
-(Reading database ... 11263 files and directories currently installed.)
-Preparing to replace ncurses-bin 5.4-4 (using .../ncurses-bin_5.4-8_i386.deb) ...
+(Reading database ... 11114 files and directories currently installed.)
+Preparing to replace ncurses-bin 5.4-4 (using .../ncurses-bin_5.4-8_powerpc.deb) ...
Unpacking replacement ncurses-bin ...
Setting up ncurses-bin (5.4-8) ...
-(Reading database ... 11263 files and directories currently installed.)
-Preparing to replace sed 4.1.2-8 (using .../archives/sed_4.1.4-2_i386.deb) ...
+(Reading database ... 11114 files and directories currently installed.)
+Preparing to replace perl-modules 5.8.7-3 (using .../perl-modules_5.8.7-4_all.deb) ...
+Unpacking replacement perl-modules ...
+Preparing to replace libdb4.2 4.2.52-18 (using .../libdb4.2_4.2.52-19_powerpc.deb) ...
+Unpacking replacement libdb4.2 ...
+Preparing to replace perl 5.8.7-3 (using .../perl_5.8.7-4_powerpc.deb) ...
+Unpacking replacement perl ...
+Preparing to replace libperl5.8 5.8.7-3 (using .../libperl5.8_5.8.7-4_powerpc.deb) ...
+Unpacking replacement libperl5.8 ...
+Preparing to replace perl-base 5.8.7-3 (using .../perl-base_5.8.7-4_powerpc.deb) ...
+Unpacking replacement perl-base ...
+Setting up perl-base (5.8.7-4) ...
+(Reading database ... 11172 files and directories currently installed.)
+Preparing to replace sed 4.1.2-8 (using .../sed_4.1.4-2_powerpc.deb) ...
Unpacking replacement sed ...
Setting up sed (4.1.4-2) ...
-(Reading database ... 11264 files and directories currently installed.)
-Preparing to replace tar 1.14-2 (using .../archives/tar_1.15.1-2_i386.deb) ...
+(Reading database ... 11173 files and directories currently installed.)
+Preparing to replace tar 1.14-2 (using .../tar_1.15.1-2_powerpc.deb) ...
Unpacking replacement tar ...
Setting up tar (1.15.1-2) ...
-(Reading database ... 11268 files and directories currently installed.)
-Preparing to replace base-passwd 3.5.9 (using .../base-passwd_3.5.10_i386.deb) ...
-Unpacking replacement base-passwd ...
-Setting up base-passwd (3.5.10) ...
-
-(Reading database ... 11268 files and directories currently installed.)
-Preparing to replace base-files 3.1.4 (using .../base-files_3.1.5_i386.deb) ...
-Unpacking replacement base-files ...
-Setting up base-files (3.1.5) ...
-
-(Reading database ... 11268 files and directories currently installed.)
+(Reading database ... 11177 files and directories currently installed.)
Preparing to replace ncurses-base 5.4-4 (using .../ncurses-base_5.4-8_all.deb) ...
Unpacking replacement ncurses-base ...
Setting up ncurses-base (5.4-8) ...
@@ -181,189 +141,251 @@ Installing new version of config file /etc/terminfo/x/xterm-xfree86 ...
Installing new version of config file /etc/terminfo/x/xterm-mono ...
Installing new version of config file /etc/terminfo/x/xterm-vt220 ...
-(Reading database ... 11270 files and directories currently installed.)
-Preparing to replace liblocale-gettext-perl 1.04-1 (using .../liblocale-gettext-perl_1.05-1_i386.deb) ...
-Unpacking replacement liblocale-gettext-perl ...
-Preparing to replace libdb4.2 4.2.52-18 (using .../libdb4.2_4.2.52-19_i386.deb) ...
-Unpacking replacement libdb4.2 ...
-Preparing to replace libgcc1 1:4.0.0-9 (using .../libgcc1_1%3a4.0.0-11_i386.deb) ...
+(Reading database ... 11179 files and directories currently installed.)
+Preparing to replace debconf-i18n 1.4.51 (using .../debconf-i18n_1.4.52_all.deb) ...
+Unpacking replacement debconf-i18n ...
+Preparing to replace debconf 1.4.51 (using .../debconf_1.4.52_all.deb) ...
+Unpacking replacement debconf ...
+Preparing to replace libgcc1 1:4.0.0-9 (using .../libgcc1_1%3a4.0.1-1_powerpc.deb) ...
Unpacking replacement libgcc1 ...
-Setting up libgcc1 (4.0.0-11) ...
+Setting up libgcc1 (4.0.1-1) ...
-(Reading database ... 11270 files and directories currently installed.)
-Preparing to replace libstdc++5-3.3-dev 1:3.3.5-13 (using .../libstdc++5-3.3-dev_1%3a3.3.6-7_i386.deb) ...
+(Reading database ... 11179 files and directories currently installed.)
+Preparing to replace libstdc++5-3.3-dev 1:3.3.5-13 (using .../libstdc++5-3.3-dev_1%3a3.3.6-7_powerpc.deb) ...
Unpacking replacement libstdc++5-3.3-dev ...
-Preparing to replace g++-3.3 1:3.3.5-13 (using .../g++-3.3_1%3a3.3.6-7_i386.deb) ...
+Preparing to replace g++-3.3 1:3.3.5-13 (using .../g++-3.3_1%3a3.3.6-7_powerpc.deb) ...
Unpacking replacement g++-3.3 ...
-Preparing to replace gcc-3.3 1:3.3.5-13 (using .../gcc-3.3_1%3a3.3.6-7_i386.deb) ...
+Preparing to replace binutils 2.15-7 (using .../binutils_2.16.1-2_powerpc.deb) ...
+Unpacking replacement binutils ...
+Preparing to replace gcc-3.3 1:3.3.5-13 (using .../gcc-3.3_1%3a3.3.6-7_powerpc.deb) ...
Unpacking replacement gcc-3.3 ...
-Preparing to replace cpp-3.3 1:3.3.5-13 (using .../cpp-3.3_1%3a3.3.6-7_i386.deb) ...
+Preparing to replace cpp-3.3 1:3.3.5-13 (using .../cpp-3.3_1%3a3.3.6-7_powerpc.deb) ...
Unpacking replacement cpp-3.3 ...
-Preparing to replace gcc-3.3-base 1:3.3.5-13 (using .../gcc-3.3-base_1%3a3.3.6-7_i386.deb) ...
+Preparing to replace gcc-3.3-base 1:3.3.5-13 (using .../gcc-3.3-base_1%3a3.3.6-7_powerpc.deb) ...
Unpacking replacement gcc-3.3-base ...
-Preparing to replace libstdc++5 1:3.3.5-13 (using .../libstdc++5_1%3a3.3.6-7_i386.deb) ...
+Preparing to replace libstdc++5 1:3.3.5-13 (using .../libstdc++5_1%3a3.3.6-7_powerpc.deb) ...
Unpacking replacement libstdc++5 ...
Setting up gcc-3.3-base (3.3.6-7) ...
Setting up libstdc++5 (3.3.6-7) ...
-(Reading database ... 11264 files and directories currently installed.)
-Preparing to replace apt-utils 0.5.28.6 (using .../apt-utils_0.6.38_i386.deb) ...
+(Reading database ... 11193 files and directories currently installed.)
+Preparing to replace apt-utils 0.5.28.6 (using .../apt-utils_0.6.38_powerpc.deb) ...
Unpacking replacement apt-utils ...
-Preparing to replace aptitude 0.2.15.9-2 (using .../aptitude_0.2.15.9-3_i386.deb) ...
+Preparing to replace aptitude 0.2.15.9-2 (using .../aptitude_0.2.15.9-3_powerpc.deb) ...
Unpacking replacement aptitude ...
-Preparing to replace apt 0.5.28.6 (using .../archives/apt_0.6.38_i386.deb) ...
+Preparing to replace apt 0.5.28.6 (using .../apt_0.6.38_powerpc.deb) ...
Unpacking replacement apt ...
Setting up apt (0.6.38) ...
-(Reading database ... 11262 files and directories currently installed.)
-Preparing to replace dselect 1.10.28 (using .../dselect_1.13.10_i386.deb) ...
+(Reading database ... 11219 files and directories currently installed.)
+Preparing to replace dselect 1.10.28 (using .../dselect_1.13.10_powerpc.deb) ...
Unpacking replacement dselect ...
Setting up dselect (1.13.10) ...
Installing new version of config file /etc/dpkg/dselect.cfg ...
-(Reading database ... 11262 files and directories currently installed.)
-Preparing to replace libacl1 2.2.23-1 (using .../libacl1_2.2.29-1.0.1_i386.deb) ...
+(Reading database ... 11219 files and directories currently installed.)
+Preparing to replace libacl1 2.2.23-1 (using .../libacl1_2.2.29-1_powerpc.deb) ...
Unpacking replacement libacl1 ...
-Setting up libacl1 (2.2.29-1.0.1) ...
+Setting up libacl1 (2.2.29-1) ...
-(Reading database ... 11262 files and directories currently installed.)
-Preparing to replace libblkid1 1.37-2sarge1 (using .../libblkid1_1.37+1.38-WIP-0620-1_i386.deb) ...
+(Reading database ... 11219 files and directories currently installed.)
+Preparing to replace libblkid1 1.37-2sarge1 (using .../libblkid1_1.38-1_powerpc.deb) ...
Unpacking replacement libblkid1 ...
-Setting up libblkid1 (1.37+1.38-WIP-0620-1) ...
+Setting up libblkid1 (1.38-1) ...
-(Reading database ... 11262 files and directories currently installed.)
-Preparing to replace libcomerr2 1.37-2sarge1 (using .../libcomerr2_1.37+1.38-WIP-0620-1_i386.deb) ...
+(Reading database ... 11219 files and directories currently installed.)
+Preparing to replace libcomerr2 1.37-2sarge1 (using .../libcomerr2_1.38-1_powerpc.deb) ...
Unpacking replacement libcomerr2 ...
-Setting up libcomerr2 (1.37+1.38-WIP-0620-1) ...
+Setting up libcomerr2 (1.38-1) ...
-(Reading database ... 11262 files and directories currently installed.)
-Preparing to replace libss2 1.37-2sarge1 (using .../libss2_1.37+1.38-WIP-0620-1_i386.deb) ...
+(Reading database ... 11219 files and directories currently installed.)
+Preparing to replace libss2 1.37-2sarge1 (using .../libss2_1.38-1_powerpc.deb) ...
Unpacking replacement libss2 ...
-Setting up libss2 (1.37+1.38-WIP-0620-1) ...
+Setting up libss2 (1.38-1) ...
-(Reading database ... 11262 files and directories currently installed.)
-Preparing to replace libuuid1 1.37-2sarge1 (using .../libuuid1_1.37+1.38-WIP-0620-1_i386.deb) ...
+(Reading database ... 11219 files and directories currently installed.)
+Preparing to replace libuuid1 1.37-2sarge1 (using .../libuuid1_1.38-1_powerpc.deb) ...
Unpacking replacement libuuid1 ...
-Setting up libuuid1 (1.37+1.38-WIP-0620-1) ...
+Setting up libuuid1 (1.38-1) ...
-(Reading database ... 11262 files and directories currently installed.)
-Preparing to replace exim4-daemon-light 4.50-8 (using .../exim4-daemon-light_4.51-2_i386.deb) ...
+(Reading database ... 11219 files and directories currently installed.)
+Preparing to replace exim4-daemon-light 4.50-8 (using .../exim4-daemon-light_4.52-1_powerpc.deb) ...
Unpacking replacement exim4-daemon-light ...
-Preparing to replace adduser 3.63 (using .../archives/adduser_3.64_all.deb) ...
-Unpacking replacement adduser ...
-Preparing to replace exim4-config 4.50-8 (using .../exim4-config_4.51-2_all.deb) ...
+Preparing to replace exim4-config 4.50-8 (using .../exim4-config_4.52-1_all.deb) ...
Unpacking replacement exim4-config ...
-Preparing to replace exim4-base 4.50-8 (using .../exim4-base_4.51-2_i386.deb) ...
+Preparing to replace exim4-base 4.50-8 (using .../exim4-base_4.52-1_powerpc.deb) ...
Unpacking replacement exim4-base ...
-Preparing to replace passwd 1:4.0.3-31sarge5 (using .../passwd_1%3a4.0.3-35_i386.deb) ...
+Preparing to replace passwd 1:4.0.3-35 (using .../passwd_1%3a4.0.3-37_powerpc.deb) ...
Unpacking replacement passwd ...
-Setting up passwd (4.0.3-35) ...
+Setting up passwd (4.0.3-37) ...
+
+(Reading database ... 11215 files and directories currently installed.)
+Preparing to replace zlib1g 1:1.2.2-4 (using .../zlib1g_1%3a1.2.2-8_powerpc.deb) ...
+Unpacking replacement zlib1g ...
+Setting up zlib1g (1.2.2-8) ...
-(Reading database ... 11268 files and directories currently installed.)
-Preparing to replace base-config 2.65 (using .../base-config_2.66_all.deb) ...
+(Reading database ... 11215 files and directories currently installed.)
+Preparing to replace gettext-base 0.14.5-1 (using .../gettext-base_0.14.5-2_powerpc.deb) ...
+Unpacking replacement gettext-base ...
+Preparing to replace base-config 2.65 (using .../base-config_2.69_all.deb) ...
Unpacking replacement base-config ...
-Preparing to replace iptables 1.2.11-10 (using .../iptables_1.3.1-2_i386.deb) ...
-Unpacking replacement iptables ...
+Selecting previously deselected package laptop-detect.
+Unpacking laptop-detect (from .../laptop-detect_0.12.1_powerpc.deb) ...
+Preparing to replace libgcrypt11 1.2.0-11.1 (using .../libgcrypt11_1.2.1-2_powerpc.deb) ...
+Unpacking replacement libgcrypt11 ...
Selecting previously deselected package libncursesw5.
-Unpacking libncursesw5 (from .../libncursesw5_5.4-8_i386.deb) ...
-Preparing to replace libssl0.9.7 0.9.7e-3 (using .../libssl0.9.7_0.9.7g-1_i386.deb) ...
+Unpacking libncursesw5 (from .../libncursesw5_5.4-8_powerpc.deb) ...
+Preparing to replace libslang2 2.0.4-2 (using .../libslang2_2.0.4-3_powerpc.deb) ...
+Unpacking replacement libslang2 ...
+Preparing to replace libssl0.9.7 0.9.7e-3 (using .../libssl0.9.7_0.9.7g-1_powerpc.deb) ...
Unpacking replacement libssl0.9.7 ...
-Preparing to replace man-db 2.4.2-21 (using .../man-db_2.4.2-23_i386.deb) ...
+Preparing to replace mac-fdisk 0.1-11 (using .../mac-fdisk_0.1-12_powerpc.deb) ...
+Unpacking replacement mac-fdisk ...
+Preparing to replace man-db 2.4.2-21 (using .../man-db_2.4.3-1_powerpc.deb) ...
Unpacking replacement man-db ...
-Preparing to replace modutils 2.4.26-1.2 (using .../modutils_2.4.27.0-3_i386.deb) ...
+Preparing to replace modutils 2.4.26-1.2 (using .../modutils_2.4.27.0-3_powerpc.deb) ...
Unpacking replacement modutils ...
-Preparing to replace nano 1.2.4-5 (using .../archives/nano_1.3.7-4_i386.deb) ...
+Preparing to replace nano 1.2.4-5 (using .../nano_1.3.8-2_powerpc.deb) ...
Unpacking replacement nano ...
-Preparing to replace net-tools 1.60-13 (using .../net-tools_1.60-15_i386.deb) ...
+Preparing to replace net-tools 1.60-13 (using .../net-tools_1.60-15_powerpc.deb) ...
Unpacking replacement net-tools ...
-Preparing to replace wget 1.10-1 (using .../archives/wget_1.10-2_i386.deb) ...
+Preparing to replace powerpc-utils 1.1.3-15 (using .../powerpc-utils_1.1.3-16_powerpc.deb) ...
+Unpacking replacement powerpc-utils ...
+Preparing to replace tasksel 2.25 (using .../archives/tasksel_2.27_all.deb) ...
+Unpacking replacement tasksel ...
+Preparing to replace wget 1.10-2 (using .../wget_1.10-3+1.10.1beta1_powerpc.deb) ...
Unpacking replacement wget ...
-Selecting previously deselected package libslang2.
-Unpacking libslang2 (from .../libslang2_2.0.4-2_i386.deb) ...
-Preparing to replace whiptail 0.51.6-23 (using .../whiptail_0.51.6-26_i386.deb) ...
+Preparing to replace whiptail 0.51.6-26 (using .../whiptail_0.51.6-27_powerpc.deb) ...
Unpacking replacement whiptail ...
-Preparing to replace libnewt0.51 0.51.6-23 (using .../libnewt0.51_0.51.6-26_i386.deb) ...
+Preparing to replace libnewt0.51 0.51.6-26 (using .../libnewt0.51_0.51.6-27_powerpc.deb) ...
Unpacking replacement libnewt0.51 ...
-Preparing to replace cpp 4:3.3.5-3 (using .../cpp_4%3a3.3.6-1_i386.deb) ...
+Selecting previously deselected package gcc-4.0-base.
+Unpacking gcc-4.0-base (from .../gcc-4.0-base_4.0.1-1_powerpc.deb) ...
+Selecting previously deselected package cpp-4.0.
+Unpacking cpp-4.0 (from .../cpp-4.0_4.0.1-1_powerpc.deb) ...
+Preparing to replace cpp 4:3.3.5-3 (using .../cpp_4%3a4.0.0-2_powerpc.deb) ...
Unpacking replacement cpp ...
Preparing to replace dpkg-dev 1.10.28 (using .../dpkg-dev_1.13.10_all.deb) ...
Unpacking replacement dpkg-dev ...
-Preparing to replace exim4 4.50-8 (using .../archives/exim4_4.51-2_all.deb) ...
+Preparing to replace exim4 4.50-8 (using .../archives/exim4_4.52-1_all.deb) ...
Unpacking replacement exim4 ...
-Preparing to replace gcc 4:3.3.5-3 (using .../gcc_4%3a3.3.6-1_i386.deb) ...
+Selecting previously deselected package gcc-4.0.
+Unpacking gcc-4.0 (from .../gcc-4.0_4.0.1-1_powerpc.deb) ...
+Preparing to replace gcc 4:3.3.5-3 (using .../gcc_4%3a4.0.0-2_powerpc.deb) ...
Removing old gcc doc directory.
Unpacking replacement gcc ...
-Preparing to replace g++ 4:3.3.5-3 (using .../g++_4%3a3.3.6-1_i386.deb) ...
+Selecting previously deselected package libstdc++6.
+Unpacking libstdc++6 (from .../libstdc++6_4.0.1-1_powerpc.deb) ...
+Selecting previously deselected package libstdc++6-4.0-dev.
+Unpacking libstdc++6-4.0-dev (from .../libstdc++6-4.0-dev_4.0.1-1_powerpc.deb) ...
+Selecting previously deselected package g++-4.0.
+Unpacking g++-4.0 (from .../g++-4.0_4.0.1-1_powerpc.deb) ...
+Preparing to replace g++ 4:3.3.5-3 (using .../g++_4%3a4.0.0-2_powerpc.deb) ...
Unpacking replacement g++ ...
-Preparing to replace fdutils 5.4-20040228-1 (using .../fdutils_5.5-20050303-1_i386.deb) ...
+Preparing to replace linux-kernel-headers 2.5.999-test7-bk-17 (using .../linux-kernel-headers_2.6.12.0-1_powerpc.deb) ...
+Unpacking replacement linux-kernel-headers ...
+Preparing to replace telnet 0.17-29 (using .../telnet_0.17-30_powerpc.deb) ...
+Unpacking replacement telnet ...
+Preparing to replace build-essential 10.1 (using .../build-essential_11.1_powerpc.deb) ...
+Unpacking replacement build-essential ...
+Preparing to replace fdutils 5.4-20040228-1 (using .../fdutils_5.5-20050303-1_powerpc.deb) ...
Unpacking replacement fdutils ...
-Setting up liblocale-gettext-perl (1.05-1) ...
Setting up libdb4.2 (4.2.52-19) ...
+Setting up libperl5.8 (5.8.7-4) ...
+
Setting up cpp-3.3 (3.3.6-7) ...
+Setting up binutils (2.16.1-2) ...
+
Setting up gcc-3.3 (3.3.6-7) ...
Setting up apt-utils (0.6.38) ...
Setting up aptitude (0.2.15.9-3) ...
-Setting up adduser (3.64) ...
-
-Setting up exim4-config (4.51-2) ...
-Installing new version of config file /etc/exim4/exim4.conf.template ...
-Installing new version of config file /etc/exim4/conf.d/main/03_exim4-config_tlsoptions ...
-Installing new version of config file /etc/exim4/conf.d/main/01_exim4-config_listmacrosdefs ...
-Installing new version of config file /etc/exim4/conf.d/auth/30_exim4-config_examples ...
-Installing new version of config file /etc/exim4/conf.d/acl/30_exim4-config_check_rcpt ...
-
-Setting up exim4-base (4.51-2) ...
+Setting up gettext-base (0.14.5-2) ...
-Setting up exim4-daemon-light (4.51-2) ...
-
-Setting up base-config (2.66) ...
-
-Setting up iptables (1.3.1-2) ...
+Setting up laptop-detect (0.12.1) ...
+Setting up libgcrypt11 (1.2.1-2) ...
Setting up libncursesw5 (5.4-8) ...
-Setting up libssl0.9.7 (0.9.7g-1) ...
+Setting up libslang2 (2.0.4-3) ...
-Setting up man-db (2.4.2-23) ...
+Setting up mac-fdisk (0.1-12) ...
Setting up modutils (2.4.27.0-3) ...
Installing new version of config file /etc/init.d/modutils ...
Installing new version of config file /etc/modutils/aliases ...
Installing new version of config file /etc/modutils/actions ...
-Setting up nano (1.3.7-4) ...
+Setting up nano (1.3.8-2) ...
Installing new version of config file /etc/nanorc ...
Setting up net-tools (1.60-15) ...
-Setting up wget (1.10-2) ...
+Setting up powerpc-utils (1.1.3-16) ...
-Setting up libslang2 (2.0.4-2) ...
+Setting up libnewt0.51 (0.51.6-27) ...
-Setting up libnewt0.51 (0.51.6-26) ...
+Setting up whiptail (0.51.6-27) ...
+Setting up gcc-4.0-base (4.0.1-1) ...
+Setting up cpp-4.0 (4.0.1-1) ...
+Setting up cpp (4.0.0-2) ...
+Setting up gcc-4.0 (4.0.1-1) ...
+Setting up gcc (4.0.0-2) ...
-Setting up whiptail (0.51.6-26) ...
-Setting up cpp (3.3.6-1) ...
-Setting up dpkg-dev (1.13.10) ...
-Installing new version of config file /etc/dpkg/shlibs.default ...
-Installing new version of config file /etc/dpkg/shlibs.override ...
-Setting up exim4 (4.51-2) ...
-Setting up gcc (3.3.6-1) ...
+Setting up libstdc++6 (4.0.1-1) ...
-Setting up fdutils (5.5-20050303-1) ...
+Setting up linux-kernel-headers (2.6.12.0-1) ...
+Setting up telnet (0.17-30) ...
-Setting up g++-3.3 (3.3.6-7) ...
+Setting up debconf-i18n (1.4.52) ...
Setting up libstdc++5-3.3-dev (3.3.6-7) ...
-Setting up g++ (3.3.6-1) ...
+Setting up libstdc++6-4.0-dev (4.0.1-1) ...
+Setting up perl-modules (5.8.7-4) ...
+Setting up debconf (1.4.52) ...
+Setting up g++-3.3 (3.3.6-7) ...
+Setting up exim4-config (4.52-1) ...
+Installing new version of config file /etc/exim4/conf.d/acl/30_exim4-config_check_rcpt ...
+Installing new version of config file /etc/exim4/conf.d/auth/30_exim4-config_examples ...
+Installing new version of config file /etc/exim4/conf.d/main/03_exim4-config_tlsoptions ...
+Installing new version of config file /etc/exim4/conf.d/main/01_exim4-config_listmacrosdefs ...
+Installing new version of config file /etc/exim4/exim4.conf.template ...
+
+Setting up exim4-base (4.52-1) ...
+
+Setting up exim4-daemon-light (4.52-1) ...
+
+Setting up base-config (2.69) ...
+
+Setting up libssl0.9.7 (0.9.7g-1) ...
+
+Setting up man-db (2.4.3-1) ...
+Installing new version of config file /etc/manpath.config ...
+
+Setting up tasksel (2.27) ...
+
+Setting up wget (1.10-3+1.10.1beta1) ...
+
+Setting up exim4 (4.52-1) ...
+Setting up g++-4.0 (4.0.1-1) ...
+Setting up g++ (4.0.0-2) ...
+
+Setting up fdutils (5.5-20050303-1) ...
+
+Setting up perl (5.8.7-4) ...
+
+Setting up dpkg-dev (1.13.10) ...
+Installing new version of config file /etc/dpkg/shlibs.default ...
+Installing new version of config file /etc/dpkg/shlibs.override ...
+Setting up build-essential (11.1) ...
Reading package lists...
Building dependency tree...
build-essential is already the newest version.
dpkg-dev is already the newest version.
apt is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
+Copying back the cached apt archive contents
-> unmounting dev/pts filesystem
-> unmounting proc filesystem
- -> creating base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/testimage]
+ -> creating base tarball [/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/testimage]
-> cleaning the build env
- -> removing directory /var/cache/pbuilder/build//609 and its subdirectories
+ -> removing directory /var/cache/pbuilder/build//27911 and its subdirectories
diff --git a/testsuite/normal/pbuilder-update-sarge-etch.log b/testsuite/normal/pbuilder-update-sarge-etch.log
index ceef1b3..2d43732 100644
--- a/testsuite/normal/pbuilder-update-sarge-etch.log
+++ b/testsuite/normal/pbuilder-update-sarge-etch.log
@@ -1,6 +1,6 @@
Upgrading for distribution etch
Building the build Environment
- -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/testimage]
+ -> extracting base tarball [/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/testimage]
-> creating local configuration
-> copying local configuration
-> mounting /proc filesystem
@@ -9,70 +9,56 @@ Building the build Environment
-> Installing apt-lines
Refreshing the base.tgz
-> upgrading packages
-Get:1 http://ring.asahi-net.or.jp etch/main Packages [3446kB]
-Get:2 http://ring.asahi-net.or.jp etch/main Release [81B]
-Fetched 3446kB in 1s (2388kB/s)
+Get:1 http://ring.asahi-net.or.jp etch/main Packages [3376kB]
+Get:2 http://ring.asahi-net.or.jp etch/main Release [84B]
+Fetched 3376kB in 19s (174kB/s)
Reading Package Lists...
dpkg - warning: ignoring request to remove lilo which isn't installed.
+Obtaining the cached apt archive contents
Reading Package Lists...
Building Dependency Tree...
+The following NEW packages will be installed:
+ libslang2
The following packages will be upgraded:
- base-config base-files bash binutils bsdmainutils console-common cron debconf
- debconf-i18n debianutils findutils gettext-base groff-base libattr1 libgcc1
- liblocale-gettext-perl liblzo1 libnewt0.51 libpcre3 libtasn1-2
- libtext-charwidth-perl libtext-iconv-perl libtext-wrapi18n-perl makedev
- manpages net-tools netkit-inetd perl perl-base perl-modules procps psmisc
- tasksel wget whiptail
-35 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
-Need to get 13.7MB of archives.
-After unpacking 2073kB of additional disk space will be used.
-Get:1 http://ring.asahi-net.or.jp etch/main base-files 3.1.4 [34.5kB]
-Get:2 http://ring.asahi-net.or.jp etch/main bash 3.0-15 [793kB]
-Get:3 http://ring.asahi-net.or.jp etch/main debianutils 2.13.2 [43.2kB]
-Get:4 http://ring.asahi-net.or.jp etch/main findutils 4.2.22-1 [305kB]
-Get:5 http://ring.asahi-net.or.jp etch/main perl-modules 5.8.7-3 [2326kB]
-Get:6 http://ring.asahi-net.or.jp etch/main perl 5.8.7-3 [3371kB]
-Get:7 http://ring.asahi-net.or.jp etch/main perl-base 5.8.7-3 [749kB]
-Get:8 http://ring.asahi-net.or.jp etch/main console-common 0.7.51 [108kB]
-Get:9 http://ring.asahi-net.or.jp etch/main liblocale-gettext-perl 1.04-1 [19.9kB]
-Get:10 http://ring.asahi-net.or.jp etch/main libtext-iconv-perl 1.4-1 [14.9kB]
-Get:11 http://ring.asahi-net.or.jp etch/main libtext-charwidth-perl 0.04-2 [11.3kB]
-Get:12 http://ring.asahi-net.or.jp etch/main libtext-wrapi18n-perl 0.06-2 [8528B]
-Get:13 http://ring.asahi-net.or.jp etch/main debconf-i18n 1.4.51 [108kB]
-Get:14 http://ring.asahi-net.or.jp etch/main debconf 1.4.51 [107kB]
-Get:15 http://ring.asahi-net.or.jp etch/main libgcc1 1:4.0.0-9 [84.1kB]
-Get:16 http://ring.asahi-net.or.jp etch/main tasksel 2.25 [137kB]
-Get:17 http://ring.asahi-net.or.jp etch/main gettext-base 0.14.5-1 [100.0kB]
-Get:18 http://ring.asahi-net.or.jp etch/main base-config 2.65 [324kB]
-Get:19 http://ring.asahi-net.or.jp etch/main bsdmainutils 6.1.2 [170kB]
-Get:20 http://ring.asahi-net.or.jp etch/main cron 3.0pl1-87 [58.8kB]
-Get:21 http://ring.asahi-net.or.jp etch/main groff-base 1.18.1.1-8 [832kB]
-Get:22 http://ring.asahi-net.or.jp etch/main liblzo1 1.08-2 [48.4kB]
-Get:23 http://ring.asahi-net.or.jp etch/main libpcre3 5.0-1.1 [159kB]
-Get:24 http://ring.asahi-net.or.jp etch/main libtasn1-2 0.2.10-4 [42.5kB]
-Get:25 http://ring.asahi-net.or.jp etch/main manpages 2.02-2 [392kB]
-Get:26 http://ring.asahi-net.or.jp etch/main net-tools 1.60-13 [248kB]
-Get:27 http://ring.asahi-net.or.jp etch/main netkit-inetd 0.10-10.1 [30.9kB]
-Get:28 http://ring.asahi-net.or.jp etch/main wget 1.10-1 [412kB]
-Get:29 http://ring.asahi-net.or.jp etch/main whiptail 0.51.6-23 [32.3kB]
-Get:30 http://ring.asahi-net.or.jp etch/main libnewt0.51 0.51.6-23 [57.0kB]
-Get:31 http://ring.asahi-net.or.jp etch/main libattr1 2.4.21-1.0.1 [7854B]
-Get:32 http://ring.asahi-net.or.jp etch/main makedev 2.3.1-78 [40.9kB]
-Get:33 http://ring.asahi-net.or.jp etch/main procps 1:3.2.5-1 [215kB]
-Get:34 http://ring.asahi-net.or.jp etch/main binutils 2.15-7 [2221kB]
-Get:35 http://ring.asahi-net.or.jp etch/main psmisc 21.6-1 [58.9kB]
+ adduser base-config base-files base-passwd bash binutils bsdmainutils
+ console-common cron debconf debconf-i18n debianutils findutils gettext-base
+ groff-base hfsutils iptables libattr1 libgcc1 liblocale-gettext-perl liblzo1
+ libnewt0.51 libpcre3 libperl5.8 libreadline4 libtasn1-2
+ libtext-charwidth-perl libtext-iconv-perl libtext-wrapi18n-perl login makedev
+ manpages net-tools netkit-inetd passwd perl perl-base perl-modules procps
+ psmisc tasksel wget whiptail
Preconfiguring packages ...
-Fetched 13.7MB in 2s (6015kB/s)
-(Reading database ... 11040 files and directories currently installed.)
-Preparing to replace base-files 3.1.2 (using .../base-files_3.1.4_i386.deb) ...
+43 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
+Need to get 0B/16.6MB of archives.
+After unpacking 4133kB of additional disk space will be used.
+(Reading database ... 10865 files and directories currently installed.)
+Preparing to replace base-passwd 3.5.9 (using .../base-passwd_3.5.10_powerpc.deb) ...
+Unpacking replacement base-passwd ...
+Setting up base-passwd (3.5.10) ...
+
+(Reading database ... 10865 files and directories currently installed.)
+Preparing to replace base-files 3.1.2 (using .../base-files_3.1.5_powerpc.deb) ...
Unpacking replacement base-files ...
-Setting up base-files (3.1.4) ...
+Setting up base-files (3.1.5) ...
Installing new version of config file /etc/debian_version ...
Installing new version of config file /etc/issue ...
Installing new version of config file /etc/issue.net ...
-(Reading database ... 11040 files and directories currently installed.)
-Preparing to replace bash 2.05b-26 (using .../archives/bash_3.0-15_i386.deb) ...
+(Reading database ... 10865 files and directories currently installed.)
+Preparing to replace login 1:4.0.3-31sarge5 (using .../login_1%3a4.0.3-35_powerpc.deb) ...
+Unpacking replacement login ...
+Setting up login (4.0.3-35) ...
+Installing new version of config file /etc/pam.d/login ...
+Installing new version of config file /etc/pam.d/su ...
+Installing new version of config file /etc/login.defs ...
+
+(Reading database ... 10867 files and directories currently installed.)
+Preparing to replace passwd 1:4.0.3-31sarge5 (using .../passwd_1%3a4.0.3-35_powerpc.deb) ...
+Unpacking replacement passwd ...
+Setting up passwd (4.0.3-35) ...
+
+(Reading database ... 10873 files and directories currently installed.)
+Preparing to replace bash 2.05b-26 (using .../bash_3.0-15_powerpc.deb) ...
Unpacking replacement bash ...
Setting up bash (3.0-15) ...
Installing new version of config file /etc/skel/.bashrc ...
@@ -80,33 +66,35 @@ Installing new version of config file /etc/skel/.bash_profile ...
Installing new version of config file /etc/bash.bashrc ...
Installing new version of config file /etc/bash_completion ...
-(Reading database ... 11043 files and directories currently installed.)
-Preparing to replace debianutils 2.8.4 (using .../debianutils_2.13.2_i386.deb) ...
+(Reading database ... 10876 files and directories currently installed.)
+Preparing to replace debianutils 2.8.4 (using .../debianutils_2.14.1_powerpc.deb) ...
Unpacking replacement debianutils ...
-Setting up debianutils (2.13.2) ...
+Setting up debianutils (2.14.1) ...
-(Reading database ... 11044 files and directories currently installed.)
-Preparing to replace findutils 4.1.20-6 (using .../findutils_4.2.22-1_i386.deb) ...
+(Reading database ... 10877 files and directories currently installed.)
+Preparing to replace findutils 4.1.20-6 (using .../findutils_4.2.22-2_powerpc.deb) ...
Unpacking replacement findutils ...
-Setting up findutils (4.2.22-1) ...
+Setting up findutils (4.2.22-2) ...
Installing new version of config file /etc/updatedb.conf ...
-(Reading database ... 11065 files and directories currently installed.)
+(Reading database ... 10898 files and directories currently installed.)
Preparing to replace perl-modules 5.8.4-8 (using .../perl-modules_5.8.7-3_all.deb) ...
Unpacking replacement perl-modules ...
-Preparing to replace perl 5.8.4-8 (using .../archives/perl_5.8.7-3_i386.deb) ...
+Preparing to replace perl 5.8.4-8 (using .../perl_5.8.7-3_powerpc.deb) ...
Unpacking replacement perl ...
-Preparing to replace perl-base 5.8.4-8 (using .../perl-base_5.8.7-3_i386.deb) ...
+Preparing to replace libperl5.8 5.8.4-8 (using .../libperl5.8_5.8.7-3_powerpc.deb) ...
+Unpacking replacement libperl5.8 ...
+Preparing to replace perl-base 5.8.4-8 (using .../perl-base_5.8.7-3_powerpc.deb) ...
Unpacking replacement perl-base ...
Setting up perl-base (5.8.7-3) ...
-(Reading database ... 11216 files and directories currently installed.)
+(Reading database ... 11049 files and directories currently installed.)
Preparing to replace console-common 0.7.49 (using .../console-common_0.7.51_all.deb) ...
Unpacking replacement console-common ...
-Preparing to replace liblocale-gettext-perl 1.01-17 (using .../liblocale-gettext-perl_1.04-1_i386.deb) ...
+Preparing to replace liblocale-gettext-perl 1.01-17 (using .../liblocale-gettext-perl_1.05-1_powerpc.deb) ...
Unpacking replacement liblocale-gettext-perl ...
-Preparing to replace libtext-iconv-perl 1.2-3 (using .../libtext-iconv-perl_1.4-1_i386.deb) ...
+Preparing to replace libtext-iconv-perl 1.2-3 (using .../libtext-iconv-perl_1.4-1_powerpc.deb) ...
Unpacking replacement libtext-iconv-perl ...
-Preparing to replace libtext-charwidth-perl 0.04-1 (using .../libtext-charwidth-perl_0.04-2_i386.deb) ...
+Preparing to replace libtext-charwidth-perl 0.04-1 (using .../libtext-charwidth-perl_0.04-2_powerpc.deb) ...
Unpacking replacement libtext-charwidth-perl ...
Preparing to replace libtext-wrapi18n-perl 0.06-1 (using .../libtext-wrapi18n-perl_0.06-2_all.deb) ...
Unpacking replacement libtext-wrapi18n-perl ...
@@ -114,52 +102,64 @@ Preparing to replace debconf-i18n 1.4.30.13 (using .../debconf-i18n_1.4.51_all.d
Unpacking replacement debconf-i18n ...
Preparing to replace debconf 1.4.30.13 (using .../debconf_1.4.51_all.deb) ...
Unpacking replacement debconf ...
-Preparing to replace libgcc1 1:3.4.3-13 (using .../libgcc1_1%3a4.0.0-9_i386.deb) ...
+Preparing to replace libgcc1 1:3.4.3-13 (using .../libgcc1_1%3a4.0.0-9_powerpc.deb) ...
Unpacking replacement libgcc1 ...
Setting up libgcc1 (4.0.0-9) ...
-(Reading database ... 11230 files and directories currently installed.)
+(Reading database ... 11063 files and directories currently installed.)
+Preparing to replace adduser 3.63 (using .../archives/adduser_3.64_all.deb) ...
+Unpacking replacement adduser ...
Preparing to replace tasksel 2.24 (using .../archives/tasksel_2.25_all.deb) ...
Unpacking replacement tasksel ...
-Preparing to replace gettext-base 0.14.4-2 (using .../gettext-base_0.14.5-1_i386.deb) ...
+Preparing to replace gettext-base 0.14.4-2 (using .../gettext-base_0.14.5-1_powerpc.deb) ...
Unpacking replacement gettext-base ...
Preparing to replace base-config 2.53.10 (using .../base-config_2.65_all.deb) ...
Unpacking replacement base-config ...
-Preparing to replace bsdmainutils 6.0.17 (using .../bsdmainutils_6.1.2_i386.deb) ...
+Preparing to replace bsdmainutils 6.0.17 (using .../bsdmainutils_6.1.2_powerpc.deb) ...
Unpacking replacement bsdmainutils ...
-Preparing to replace cron 3.0pl1-86 (using .../cron_3.0pl1-87_i386.deb) ...
+Preparing to replace cron 3.0pl1-86 (using .../cron_3.0pl1-87_powerpc.deb) ...
Unpacking replacement cron ...
-Preparing to replace groff-base 1.18.1.1-7 (using .../groff-base_1.18.1.1-8_i386.deb) ...
+Preparing to replace groff-base 1.18.1.1-7 (using .../groff-base_1.18.1.1-8_powerpc.deb) ...
Unpacking replacement groff-base ...
-Preparing to replace liblzo1 1.08-1.2 (using .../liblzo1_1.08-2_i386.deb) ...
+Preparing to replace iptables 1.2.11-10 (using .../iptables_1.3.1-2_powerpc.deb) ...
+Unpacking replacement iptables ...
+Preparing to replace liblzo1 1.08-1.2 (using .../liblzo1_1.08-2_powerpc.deb) ...
Unpacking replacement liblzo1 ...
-Preparing to replace libpcre3 4.5-1.2 (using .../libpcre3_5.0-1.1_i386.deb) ...
+Preparing to replace libpcre3 4.5-1.2 (using .../libpcre3_5.0-1.1_powerpc.deb) ...
Unpacking replacement libpcre3 ...
-Preparing to replace libtasn1-2 0.2.10-3 (using .../libtasn1-2_0.2.10-4_i386.deb) ...
+Selecting previously deselected package libslang2.
+Unpacking libslang2 (from .../libslang2_2.0.4-2_powerpc.deb) ...
+Preparing to replace libtasn1-2 0.2.10-3 (using .../libtasn1-2_0.2.10-4_powerpc.deb) ...
Unpacking replacement libtasn1-2 ...
Preparing to replace manpages 1.70-1 (using .../manpages_2.02-2_all.deb) ...
Unpacking replacement manpages ...
-Preparing to replace net-tools 1.60-10 (using .../net-tools_1.60-13_i386.deb) ...
+Preparing to replace net-tools 1.60-10 (using .../net-tools_1.60-13_powerpc.deb) ...
Unpacking replacement net-tools ...
-Preparing to replace netkit-inetd 0.10-10 (using .../netkit-inetd_0.10-10.1_i386.deb) ...
+Preparing to replace netkit-inetd 0.10-10 (using .../netkit-inetd_0.10-10.1_powerpc.deb) ...
Unpacking replacement netkit-inetd ...
-Preparing to replace wget 1.9.1-12 (using .../archives/wget_1.10-1_i386.deb) ...
+Preparing to replace wget 1.9.1-12 (using .../wget_1.10-2_powerpc.deb) ...
Unpacking replacement wget ...
-Preparing to replace whiptail 0.51.6-20 (using .../whiptail_0.51.6-23_i386.deb) ...
+Preparing to replace whiptail 0.51.6-20 (using .../whiptail_0.51.6-26_powerpc.deb) ...
Unpacking replacement whiptail ...
-Preparing to replace libnewt0.51 0.51.6-20 (using .../libnewt0.51_0.51.6-23_i386.deb) ...
+Preparing to replace libnewt0.51 0.51.6-20 (using .../libnewt0.51_0.51.6-26_powerpc.deb) ...
Unpacking replacement libnewt0.51 ...
-Preparing to replace libattr1 2.4.16-1 (using .../libattr1_2.4.21-1.0.1_i386.deb) ...
+Preparing to replace libattr1 2.4.16-1 (using .../libattr1_2.4.21-1_powerpc.deb) ...
Unpacking replacement libattr1 ...
Preparing to replace makedev 2.3.1-77 (using .../makedev_2.3.1-78_all.deb) ...
Unpacking replacement makedev ...
-Preparing to replace procps 1:3.2.1-2 (using .../procps_1%3a3.2.5-1_i386.deb) ...
+Preparing to replace procps 1:3.2.1-2 (using .../procps_1%3a3.2.5-1_powerpc.deb) ...
Unpacking replacement procps ...
-Preparing to replace binutils 2.15-6 (using .../binutils_2.15-7_i386.deb) ...
+Preparing to replace binutils 2.15-6 (using .../binutils_2.15-7_powerpc.deb) ...
Unpacking replacement binutils ...
-Preparing to replace psmisc 21.5-1 (using .../psmisc_21.6-1_i386.deb) ...
+Preparing to replace libreadline4 4.3-11 (using .../libreadline4_4.3-15_powerpc.deb) ...
+Unpacking replacement libreadline4 ...
+Preparing to replace psmisc 21.5-1 (using .../psmisc_21.6-1_powerpc.deb) ...
Unpacking replacement psmisc ...
-Setting up liblocale-gettext-perl (1.04-1) ...
+Preparing to replace hfsutils 3.2.6-7 (using .../hfsutils_3.2.6-9_powerpc.deb) ...
+Unpacking replacement hfsutils ...
+Setting up libperl5.8 (5.8.7-3) ...
+
+Setting up liblocale-gettext-perl (1.05-1) ...
Setting up libtext-iconv-perl (1.4-1) ...
Setting up libtext-charwidth-perl (0.04-2) ...
Setting up libtext-wrapi18n-perl (0.06-2) ...
@@ -167,14 +167,16 @@ Setting up gettext-base (0.14.5-1) ...
Setting up bsdmainutils (6.1.2) ...
-Setting up cron (3.0pl1-87) ...
-
Setting up groff-base (1.18.1.1-8) ...
+Setting up iptables (1.3.1-2) ...
+
Setting up liblzo1 (1.08-2) ...
Setting up libpcre3 (5.0-1.1) ...
+Setting up libslang2 (2.0.4-2) ...
+
Setting up libtasn1-2 (0.2.10-4) ...
Setting up manpages (2.02-2) ...
@@ -182,13 +184,13 @@ Setting up net-tools (1.60-13) ...
Setting up netkit-inetd (0.10-10.1) ...
Restarting internet superserver: inetd.
-Setting up wget (1.10-1) ...
+Setting up wget (1.10-2) ...
Installing new version of config file /etc/wgetrc ...
-Setting up libnewt0.51 (0.51.6-23) ...
+Setting up libnewt0.51 (0.51.6-26) ...
-Setting up whiptail (0.51.6-23) ...
-Setting up libattr1 (2.4.21-1.0.1) ...
+Setting up whiptail (0.51.6-26) ...
+Setting up libattr1 (2.4.21-1) ...
Setting up makedev (2.3.1-78) ...
@@ -198,16 +200,23 @@ Installing new version of config file /etc/init.d/procps.sh ...
Setting up binutils (2.15-7) ...
+Setting up libreadline4 (4.3-15) ...
+
Setting up psmisc (21.6-1) ...
+Setting up hfsutils (3.2.6-9) ...
Setting up debconf-i18n (1.4.51) ...
Setting up perl-modules (5.8.7-3) ...
Setting up debconf (1.4.51) ...
+Setting up adduser (3.64) ...
+
Setting up tasksel (2.25) ...
Setting up base-config (2.65) ...
+Setting up cron (3.0pl1-87) ...
+
Setting up perl (5.8.7-3) ...
Setting up console-common (0.7.51) ...
@@ -220,8 +229,9 @@ build-essential is already the newest version.
dpkg-dev is already the newest version.
apt is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
+Copying back the cached apt archive contents
-> unmounting dev/pts filesystem
-> unmounting proc filesystem
- -> creating base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/testimage]
+ -> creating base tarball [/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/testimage]
-> cleaning the build env
- -> removing directory /var/cache/pbuilder/build//30957 and its subdirectories
+ -> removing directory /var/cache/pbuilder/build//23779 and its subdirectories
diff --git a/testsuite/normal/pdebuild-internal-etch.log b/testsuite/normal/pdebuild-internal-etch.log
index b519827..56905a4 100644
--- a/testsuite/normal/pdebuild-internal-etch.log
+++ b/testsuite/normal/pdebuild-internal-etch.log
@@ -1,587 +1,8 @@
+W: /home/dancer/.pbuilderrc does not exist
Building the build Environment
- -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/testimage]
- -> creating local configuration
- -> copying local configuration
- -> mounting /proc filesystem
- -> mounting /dev/pts filesystem
--> Mounting /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2
- -> policy-rc.d already exists
-Using: : pdebuild-internal,v 1.5 2005/06/04 05:29:21 dancer Exp $
-Reading Package Lists...
-Building Dependency Tree...
-The following extra packages will be installed:
- debootstrap
-Suggested packages:
- pbuilder-uml
-Recommended packages:
- fakeroot sudo devscripts
-The following NEW packages will be installed:
- debootstrap pbuilder
-0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded.
-Need to get 137kB of archives.
-After unpacking 590kB of additional disk space will be used.
-Get:1 http://ring.asahi-net.or.jp etch/main debootstrap 0.2.45-0.2 [72.2kB]
-Get:2 http://ring.asahi-net.or.jp etch/main pbuilder 0.127 [64.9kB]
-Fetched 137kB in 0s (1190kB/s)
-Selecting previously deselected package debootstrap.
-(Reading database ... 11038 files and directories currently installed.)
-Unpacking debootstrap (from .../debootstrap_0.2.45-0.2_i386.deb) ...
-Selecting previously deselected package pbuilder.
-Unpacking pbuilder (from .../pbuilder_0.127_all.deb) ...
-Setting up debootstrap (0.2.45-0.2) ...
-Setting up pbuilder (0.127) ...
-Setting DEBBUILDOPTS=
- -> Attempting to parse the build-deps : pbuilder-satisfydepends,v 1.18 2003/04/20 03:40:36 dancer Exp $
- -> Considering debhelper (>> 3.0.0)
- -> Trying debhelper
- -> Considering libdshconfig1-dev (>= 0.20.11-1)
- -> Trying libdshconfig1-dev
- -> Installing debhelper libdshconfig1-dev
-Reading Package Lists...
-Building Dependency Tree...
-The following extra packages will be installed:
- debconf-utils file gettext html2text intltool-debian libdshconfig1 libmagic1
- po-debconf
-Suggested packages:
- dh-make cvs gettext-doc
-Recommended packages:
- curl libmail-sendmail-perl libcompress-zlib-perl
-The following NEW packages will be installed:
- debconf-utils debhelper file gettext html2text intltool-debian libdshconfig1
- libdshconfig1-dev libmagic1 po-debconf
-0 upgraded, 10 newly installed, 0 to remove and 0 not upgraded.
-Need to get 2641kB of archives.
-After unpacking 8380kB of additional disk space will be used.
-Get:1 http://ring.asahi-net.or.jp etch/main libmagic1 4.12-1 [233kB]
-Get:2 http://ring.asahi-net.or.jp etch/main file 4.12-1 [28.6kB]
-Get:3 http://ring.asahi-net.or.jp etch/main debconf-utils 1.4.51 [33.0kB]
-Get:4 http://ring.asahi-net.or.jp etch/main html2text 1.3.2a-2 [92.6kB]
-Get:5 http://ring.asahi-net.or.jp etch/main gettext 0.14.5-1 [1767kB]
-Get:6 http://ring.asahi-net.or.jp etch/main intltool-debian 0.30+20040213 [23.5kB]
-Get:7 http://ring.asahi-net.or.jp etch/main po-debconf 0.8.23 [78.0kB]
-Get:8 http://ring.asahi-net.or.jp etch/main debhelper 4.9.1 [363kB]
-Get:9 http://ring.asahi-net.or.jp etch/main libdshconfig1 0.20.11-1 [10.7kB]
-Get:10 http://ring.asahi-net.or.jp etch/main libdshconfig1-dev 0.20.11-1 [12.4kB]
-Fetched 2641kB in 0s (5756kB/s)
-Selecting previously deselected package libmagic1.
-(Reading database ... 11113 files and directories currently installed.)
-Unpacking libmagic1 (from .../libmagic1_4.12-1_i386.deb) ...
-Selecting previously deselected package file.
-Unpacking file (from .../archives/file_4.12-1_i386.deb) ...
-Selecting previously deselected package debconf-utils.
-Unpacking debconf-utils (from .../debconf-utils_1.4.51_all.deb) ...
-Selecting previously deselected package html2text.
-Unpacking html2text (from .../html2text_1.3.2a-2_i386.deb) ...
-Selecting previously deselected package gettext.
-Unpacking gettext (from .../gettext_0.14.5-1_i386.deb) ...
-Selecting previously deselected package intltool-debian.
-Unpacking intltool-debian (from .../intltool-debian_0.30+20040213_all.deb) ...
-Selecting previously deselected package po-debconf.
-Unpacking po-debconf (from .../po-debconf_0.8.23_all.deb) ...
-Selecting previously deselected package debhelper.
-Unpacking debhelper (from .../debhelper_4.9.1_all.deb) ...
-Selecting previously deselected package libdshconfig1.
-Unpacking libdshconfig1 (from .../libdshconfig1_0.20.11-1_i386.deb) ...
-Selecting previously deselected package libdshconfig1-dev.
-Unpacking libdshconfig1-dev (from .../libdshconfig1-dev_0.20.11-1_i386.deb) ...
-Setting up libmagic1 (4.12-1) ...
+ -> extracting base tarball [/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/testimage]
-Setting up file (4.12-1) ...
-Setting up debconf-utils (1.4.51) ...
-
-Setting up html2text (1.3.2a-2) ...
-
-Setting up gettext (0.14.5-1) ...
-
-Setting up intltool-debian (0.30+20040213) ...
-Setting up po-debconf (0.8.23) ...
-Setting up debhelper (4.9.1) ...
-Setting up libdshconfig1 (0.20.11-1) ...
-
-Setting up libdshconfig1-dev (0.20.11-1) ...
- -> Finished parsing the build-deps
-Reading Package Lists...
-Building Dependency Tree...
-The following NEW packages will be installed:
- fakeroot
-0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
-Need to get 70.4kB of archives.
-After unpacking 201kB of additional disk space will be used.
-Get:1 http://ring.asahi-net.or.jp etch/main fakeroot 1.3 [70.4kB]
-Fetched 70.4kB in 0s (2051kB/s)
-Selecting previously deselected package fakeroot.
-(Reading database ... 11656 files and directories currently installed.)
-Unpacking fakeroot (from .../archives/fakeroot_1.3_i386.deb) ...
-Setting up fakeroot (1.3) ...
-
-dpkg-buildpackage: source package is dsh
-dpkg-buildpackage: source version is 0.25.6-1
-dpkg-buildpackage: source maintainer is Junichi Uekawa <dancer@debian.org>
-dpkg-buildpackage: host architecture is i386
- fakeroot debian/rules clean
-dh_testdir
-dh_testroot
-rm -f build-stamp configure-stamp
-/usr/bin/make clean
-make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
-make[1]: *** No rule to make target `clean'. Stop.
-make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
-make: [clean] Error 2 (ignored)
-/usr/bin/make distclean
-make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
-make[1]: *** No rule to make target `distclean'. Stop.
-make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
-make: [clean] Error 2 (ignored)
-dh_clean
- dpkg-source -b dsh-0.25.6
-dpkg-source: building dsh using existing dsh_0.25.6.orig.tar.gz
-dpkg-source: building dsh in dsh_0.25.6-1.diff.gz
-dpkg-source: warning: file dcp.sh has no final newline (either original or modified version)
-dpkg-source: warning: file debian/compat has no final newline (either original or modified version)
-dpkg-source: building dsh in dsh_0.25.6-1.dsc
- debian/rules build
-dh_testdir
-INSTALL_PROGRAM='install -p -o root -g root -m 755 -s' CFLAGS='-Wall -g -O2' \
- ./configure --prefix=/usr --sysconfdir=/etc/dsh --mandir=/usr/share/man
-checking for a BSD-compatible install... /usr/bin/install -c
-checking whether build environment is sane... yes
-checking for gawk... no
-checking for mawk... mawk
-checking whether make sets $(MAKE)... yes
-checking whether to enable maintainer-specific portions of Makefiles... no
-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 ANSI C... none needed
-checking dependency style of gcc... gcc3
-checking for library containing strerror... none required
-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 ANSI C... (cached) none needed
-checking dependency style of gcc... (cached) gcc3
-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 ANSI C... (cached) none needed
-checking dependency style of gcc... (cached) gcc3
-checking whether make sets $(MAKE)... (cached) yes
-checking how to run the C preprocessor... gcc -E
-checking for egrep... grep -E
-checking for ANSI C header files... yes
-checking for sys/wait.h that is POSIX.1 compatible... yes
-checking build system type... i686-pc-linux-gnu
-checking host system type... i686-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 recognise 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++... gcc3
-checking how to run the C++ preprocessor... g++ -E
-checking for g77... no
-checking for f77... no
-checking for xlf... no
-checking for frt... no
-checking for pgf77... no
-checking for fort77... no
-checking for fl32... no
-checking for af77... no
-checking for f90... no
-checking for xlf90... no
-checking for pgf90... no
-checking for epcf90... no
-checking for f95... no
-checking for fort... no
-checking for xlf95... no
-checking for ifc... no
-checking for efc... no
-checking for pgf95... no
-checking for lf95... no
-checking for gfortran... 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... 32768
-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 static flag works... yes
-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 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... yes
-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++ 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
-checking whether stripping libraries is possible... yes
-appending configuration tag "F77" to libtool
-checking for an ANSI C-conforming const... yes
-checking for msgfmt... /usr/bin/msgfmt
-checking for gmsgfmt... /usr/bin/msgfmt
-checking for xgettext... /usr/bin/xgettext
-checking for msgmerge... /usr/bin/msgmerge
-checking for ld used by GCC... /usr/bin/ld
-checking if the linker (/usr/bin/ld) is GNU ld... yes
-checking for shared library run path origin... done
-checking whether NLS is requested... yes
-checking for GNU gettext in libc... yes
-checking for gettext... yes
-checking getopt.h usability... yes
-checking getopt.h presence... yes
-checking for getopt.h... yes
-checking fcntl.h usability... yes
-checking fcntl.h presence... yes
-checking for fcntl.h... yes
-checking libintl.h usability... yes
-checking libintl.h presence... yes
-checking for libintl.h... yes
-checking locale.h usability... yes
-checking locale.h presence... yes
-checking for locale.h... yes
-checking for stdlib.h... (cached) yes
-checking netdb.h usability... yes
-checking netdb.h presence... yes
-checking for netdb.h... yes
-checking for string.h... (cached) yes
-checking for unistd.h... (cached) yes
-checking netgroup.h usability... no
-checking netgroup.h presence... no
-checking for netgroup.h... no
-checking signal.h usability... yes
-checking signal.h presence... yes
-checking for signal.h... yes
-checking for libdshconfig.h ... yes
-checking for asprintf... yes
-checking for strdup... yes
-checking for getopt_long... yes
-checking for getline... yes
-checking for dup2... yes
-checking for setlocale... yes
-checking for strcasecmp... yes
-checking for strchr... yes
-checking for setnetgrent... yes
-checking for getnetgrent... yes
-checking for endnetgrent... yes
-checking for open_dshconfig in -ldshconfig... yes
-checking netdb.h has setnetgrent that returns void... no
-checking getopt with a GNU option reordering extention... yes, disabling
-configure: creating ./config.status
-config.status: creating po/Makefile.in
-config.status: creating m4/Makefile
-config.status: creating Makefile
-config.status: creating config.h
-config.status: executing depfiles commands
-config.status: executing default-1 commands
-config.status: creating po/POTFILES
-config.status: creating po/Makefile
-touch configure-stamp
-dh_testdir
-/usr/bin/make
-make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
-/usr/bin/make all-recursive
-make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
-Making all in m4
-make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/m4'
-make[3]: Nothing to be done for `all'.
-make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/m4'
-Making all in po
-make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/po'
-make[3]: Nothing to be done for `all'.
-make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/po'
-make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
-if gcc -DHAVE_CONFIG_H -I. -I. -I. -DDSHCONFDIR="\"/etc/dsh\"" -DDSH_COMMANDLINE="\"/usr/bin/dsh\"" -DLOCALEDIR="\"/usr/share/locale\"" -Wall -g -O2 -MT dsh-dsh.o -MD -MP -MF ".deps/dsh-dsh.Tpo" -c -o dsh-dsh.o `test -f 'dsh.c' || echo './'`dsh.c; \
-then mv -f ".deps/dsh-dsh.Tpo" ".deps/dsh-dsh.Po"; else rm -f ".deps/dsh-dsh.Tpo"; exit 1; fi
-if gcc -DHAVE_CONFIG_H -I. -I. -I. -DDSHCONFDIR="\"/etc/dsh\"" -DDSH_COMMANDLINE="\"/usr/bin/dsh\"" -DLOCALEDIR="\"/usr/share/locale\"" -Wall -g -O2 -MT dsh-linkedlist.o -MD -MP -MF ".deps/dsh-linkedlist.Tpo" -c -o dsh-linkedlist.o `test -f 'linkedlist.c' || echo './'`linkedlist.c; \
-then mv -f ".deps/dsh-linkedlist.Tpo" ".deps/dsh-linkedlist.Po"; else rm -f ".deps/dsh-linkedlist.Tpo"; exit 1; fi
-if gcc -DHAVE_CONFIG_H -I. -I. -I. -DDSHCONFDIR="\"/etc/dsh\"" -DDSH_COMMANDLINE="\"/usr/bin/dsh\"" -DLOCALEDIR="\"/usr/share/locale\"" -Wall -g -O2 -MT dsh-parameter.o -MD -MP -MF ".deps/dsh-parameter.Tpo" -c -o dsh-parameter.o `test -f 'parameter.c' || echo './'`parameter.c; \
-then mv -f ".deps/dsh-parameter.Tpo" ".deps/dsh-parameter.Po"; else rm -f ".deps/dsh-parameter.Tpo"; exit 1; fi
-/bin/sh ./libtool --mode=link gcc -Wall -g -O2 -o dsh dsh-dsh.o dsh-linkedlist.o dsh-parameter.o -ldshconfig
-mkdir .libs
-gcc -Wall -g -O2 -o dsh dsh-dsh.o dsh-linkedlist.o dsh-parameter.o /usr/lib/libdshconfig.so
-mkdir build-man
-sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.1 > build-man/dsh.1
-sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.conf.5 > build-man/dsh.conf.5
-make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
-make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
-make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
-/usr/bin/make check
-make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
-Making check in m4
-make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/m4'
-make[2]: Nothing to be done for `check'.
-make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/m4'
-Making check in po
-make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/po'
-make[2]: Nothing to be done for `check'.
-make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/po'
-make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
-/usr/bin/make dsh
-make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
-make[3]: `dsh' is up to date.
-make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
-/usr/bin/make check-TESTS
-make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
-PASS: tests/param-f.sh
-dsh: File ./tests/nonexistent.file could not be opened for read
-PASS: tests/param-f-fail.sh
-PASS: tests/param-f-with-space.sh
-PASS: tests/param-m.sh
-test to check that unknown parameter checking is right.
-./dsh: unrecognized option `--unknown-parameter'
-./dsh: invalid option -- u
-PASS: tests/param-unknown.sh
-test1
-test2
-dsh: Process terminated (before write).
-PASS: tests/param-i.sh
-Check that cn4 option is working.
-PASS: tests/param-cn4.sh
-test to check that -b0 is rejected, and -b1 is accepted
-Buffer size needs to be greater than 1
-Buffer size needs to be greater than 1
-a
-b
-PASS: tests/param-b-0.sh
-dsh: Failed executing ./invalid-exec-file with llexec call
-dsh: Failed executing ./invalid-exec-file with llexec call
-dsh: Failed executing ./invalid-exec-file with llexec call
-dsh: Failed executing ./invalid-exec-file with llexec call
-success
-dsh: Failed executing ./invalid-exec-file with llexec call
-dsh: Failed executing ./invalid-exec-file with llexec call
-dsh: Failed executing ./invalid-exec-file with llexec call
-dsh: Failed executing ./invalid-exec-file with llexec call
-success
-success
-success
-success
-success
-a: dsh: Failed executing ./invalid-exec-file with llexec call
-b: dsh: Failed executing ./invalid-exec-file with llexec call
-c: dsh: Failed executing ./invalid-exec-file with llexec call
-d: dsh: Failed executing ./invalid-exec-file with llexec call
-success
-dsh: Failed executing ./invalid-exec-file with llexec call
-dsh: Failed executing ./invalid-exec-file with llexec call
-dsh: Failed executing ./invalid-exec-file with llexec call
-dsh: Failed executing ./invalid-exec-file with llexec call
-success
-PASS: tests/param-r-invalid.sh
-2: 2
-1: 1
-dsh: fork limit and wait shell cannot be specified at the same time
-PASS: tests/param-F-invalid.sh
-Sun Jul 3 11:50:49 UTC 2005
-2: Using sleep as the remote shell
-2: Show machine names on output
-2: Adding machine 5,4,3,2,1 to list
-2: Setting forklimit to 3 and wait_shell to 0
-2: DUMPing parameters passed to llexec
-2: [2]
-Using sleep as the remote shell
-Show machine names on output
-Adding machine 5,4,3,2,1 to list
-Setting forklimit to 3 and wait_shell to 0
-DUMPing parameters passed to llexec
-[2]
-3: Using sleep as the remote shell
-3: Show machine names on output
-3: Adding machine 5,4,3,2,1 to list
-3: Setting forklimit to 3 and wait_shell to 0
-3: DUMPing parameters passed to llexec
-3: [3]
-Using sleep as the remote shell
-Show machine names on output
-Adding machine 5,4,3,2,1 to list
-Setting forklimit to 3 and wait_shell to 0
-DUMPing parameters passed to llexec
-[3]
-1: Using sleep as the remote shell
-1: Show machine names on output
-1: Adding machine 5,4,3,2,1 to list
-1: Setting forklimit to 3 and wait_shell to 0
-1: ... Waiting for process to end with waitpid
-1: DUMPing parameters passed to llexec
-1: [1]
-Using sleep as the remote shell
-Show machine names on output
-Adding machine 5,4,3,2,1 to list
-Setting forklimit to 3 and wait_shell to 0
-... Waiting for process to end with waitpid
-DUMPing parameters passed to llexec
-[1]
-4: Using sleep as the remote shell
-4: Show machine names on output
-4: Adding machine 5,4,3,2,1 to list
-4: Setting forklimit to 3 and wait_shell to 0
-4: DUMPing parameters passed to llexec
-4: [4]
-Using sleep as the remote shell
-Show machine names on output
-Adding machine 5,4,3,2,1 to list
-Setting forklimit to 3 and wait_shell to 0
-DUMPing parameters passed to llexec
-[4]
-5: Using sleep as the remote shell
-5: Show machine names on output
-5: Adding machine 5,4,3,2,1 to list
-5: Setting forklimit to 3 and wait_shell to 0
-5: DUMPing parameters passed to llexec
-5: [5]
-Using sleep as the remote shell
-Show machine names on output
-Adding machine 5,4,3,2,1 to list
-Setting forklimit to 3 and wait_shell to 0
-DUMPing parameters passed to llexec
-[5]
---- Terminated running
-Using sleep as the remote shell
-Show machine names on output
-Adding machine 5,4,3,2,1 to list
-Setting forklimit to 3 and wait_shell to 0
-... Waiting for process to end with waitpid
-... Waiting for process to end with waitpid
-Sun Jul 3 11:50:54 UTC 2005
-PASS: tests/param-F-forklimit.sh
-PASS: tests/param-gnu-getopt.sh
-PASS: tests/news-okay.sh
-a: a
-dsh: Process terminated (before write).
-c: c
-b: b
-PASS: tests/segv-catcher.sh
-l w
-PASS: tests/test-bufferoverflow.sh
-PASS: tests/machinelist-comment-test.sh
-PASS: tests/machinelist-order.sh
-===================
-All 17 tests passed
-===================
-make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
-make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
-make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
-touch build-stamp
- fakeroot debian/rules binary
-dh_testdir
-dh_testroot
-dh_clean -k
-dh_installdirs
-# Add here commands to install the package into debian/dsh.
-/usr/bin/make install DESTDIR=/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh
-make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
-Making install in m4
-make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/m4'
-make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/m4'
-make[3]: Nothing to be done for `install-exec-am'.
-make[3]: Nothing to be done for `install-data-am'.
-make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/m4'
-make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/m4'
-Making install in po
-make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/po'
-/bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh/usr/share
-mkdir -p -- /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh/usr/share
-mkdir -p -- /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh/usr/share/locale/ja/LC_MESSAGES
-installing ja.gmo as /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh/usr/share/locale/ja/LC_MESSAGES/dsh.mo
-if test "dsh" = "gettext"; then \
- /bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh/usr/share/gettext/po; \
- for file in Makefile.in.in Makevars remove-potcdate.sin ; do \
- /usr/bin/install -c -m 644 ./$file \
- /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh/usr/share/gettext/po/$file; \
- done; \
-else \
- : ; \
-fi
-make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/po'
-make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
-make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
-test -z "/usr/bin" || mkdir -p -- . "/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh/usr/bin"
- /bin/sh ./libtool --mode=install install -p -o root -g root -m 755 -s 'dsh' '/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh/usr/bin/dsh'
-install -p -o root -g root -m 755 -s dsh /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh/usr/bin/dsh
-test -z "/etc/dsh" || mkdir -p -- . "/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh/etc/dsh"
- /usr/bin/install -c -m 644 'dsh.conf' '/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh/etc/dsh/dsh.conf'
-for LANGS in ja ; do \
- mkdir -p /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh/usr/share/man/$LANGS/man1 ;\
- mkdir -p /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh/usr/share/man/$LANGS/man5 ;\
- sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.$LANGS.1 \
- > /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh/usr/share/man/$LANGS/man1/dsh.1 ; \
- sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.conf.$LANGS.5 \
- > /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh/usr/share/man/$LANGS/man5/dsh.conf.5 ; \
-done
-test -z "/usr/share/man/man1" || mkdir -p -- . "/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh/usr/share/man/man1"
- /usr/bin/install -c -m 644 './build-man/dsh.1' '/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh/usr/share/man/man1/dsh.1'
-test -z "/usr/share/man/man5" || mkdir -p -- . "/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh/usr/share/man/man5"
- /usr/bin/install -c -m 644 './build-man/dsh.conf.5' '/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh/usr/share/man/man5/dsh.conf.5'
-make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
-make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
-make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
-cp /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/machines.list /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh/etc/dsh/machines.list
-cp /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/dsh.conf /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh/etc/dsh/dsh.conf
-ln -s ../machines.list /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh/etc/dsh/group/all
-install -d /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh/usr/lib/update-cluster
-install -m 755 /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh.updatelist /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh/usr/lib/update-cluster/
-dh_testdir
-dh_testroot
-dh_installdocs NEWS
-dh_installexamples
-dh_installmenu
-dh_installman
-dh_installchangelogs ChangeLog
-dh_link
-dh_strip
-dh_shlibdeps
-dh_compress
-dh_fixperms
-dh_installdeb
-dh_gencontrol
-dh_md5sums
-dh_builddeb
-dpkg-deb: building package `dsh' in `../dsh_0.25.6-1_i386.deb'.
- dpkg-genchanges
-dpkg-genchanges: including full source code in upload
-dpkg-buildpackage: full upload (original source is included)
- -> unmounting dev/pts filesystem
- -> unmounting proc filesystem
- -> unmounting /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2 filesystem
- -> cleaning the build env
- -> removing directory /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/24256 and its subdirectories
+gzip: stdin: unexpected end of file
+tar: Child returned status 1
+tar: Error exit delayed from previous errors
+E: failed to extract /home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/testimage to /home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/7900
diff --git a/testsuite/normal/pdebuild-internal-sarge.log b/testsuite/normal/pdebuild-internal-sarge.log
index 9b03562..72e7968 100644
--- a/testsuite/normal/pdebuild-internal-sarge.log
+++ b/testsuite/normal/pdebuild-internal-sarge.log
@@ -1,12 +1,14 @@
+W: /home/dancer/.pbuilderrc does not exist
Building the build Environment
- -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/testimage]
+ -> extracting base tarball [/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/testimage]
-> creating local configuration
-> copying local configuration
-> mounting /proc filesystem
-> mounting /dev/pts filesystem
--> Mounting /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2
+-> Mounting /home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2
-> policy-rc.d already exists
-Using: : pdebuild-internal,v 1.5 2005/06/04 05:29:21 dancer Exp $
+Obtaining the cached apt archive contents
+Using: : pdebuild-internal,v 1.6 2005/07/02 05:39:44 dancer Exp $
Reading Package Lists...
Building Dependency Tree...
The following extra packages will be installed:
@@ -18,14 +20,11 @@ Recommended packages:
The following NEW packages will be installed:
debootstrap pbuilder
0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded.
-Need to get 136kB of archives.
-After unpacking 586kB of additional disk space will be used.
-Get:1 http://ring.asahi-net.or.jp sarge/main debootstrap 0.2.45-0.2 [72.2kB]
-Get:2 http://ring.asahi-net.or.jp sarge/main pbuilder 0.123 [64.0kB]
-Fetched 136kB in 0s (1389kB/s)
+Need to get 0B/112kB of archives.
+After unpacking 602kB of additional disk space will be used.
Selecting previously deselected package debootstrap.
-(Reading database ... 11040 files and directories currently installed.)
-Unpacking debootstrap (from .../debootstrap_0.2.45-0.2_i386.deb) ...
+(Reading database ... 10865 files and directories currently installed.)
+Unpacking debootstrap (from .../debootstrap_0.2.45-0.2_powerpc.deb) ...
Selecting previously deselected package pbuilder.
Unpacking pbuilder (from .../pbuilder_0.123_all.deb) ...
Setting up debootstrap (0.2.45-0.2) ...
@@ -50,30 +49,19 @@ The following NEW packages will be installed:
debconf-utils debhelper file gettext html2text intltool-debian libdshconfig1
libdshconfig1-dev libmagic1 po-debconf
0 upgraded, 10 newly installed, 0 to remove and 0 not upgraded.
-Need to get 2591kB of archives.
-After unpacking 8679kB of additional disk space will be used.
-Get:1 http://ring.asahi-net.or.jp sarge/main libmagic1 4.12-1 [233kB]
-Get:2 http://ring.asahi-net.or.jp sarge/main file 4.12-1 [28.6kB]
-Get:3 http://ring.asahi-net.or.jp sarge/main debconf-utils 1.4.30.13 [33.0kB]
-Get:4 http://ring.asahi-net.or.jp sarge/main html2text 1.3.2a-2 [92.6kB]
-Get:5 http://ring.asahi-net.or.jp sarge/main gettext 0.14.4-2 [1718kB]
-Get:6 http://ring.asahi-net.or.jp sarge/main intltool-debian 0.30+20040213 [23.5kB]
-Get:7 http://ring.asahi-net.or.jp sarge/main po-debconf 0.8.23 [78.0kB]
-Get:8 http://ring.asahi-net.or.jp sarge/main debhelper 4.2.32 [362kB]
-Get:9 http://ring.asahi-net.or.jp sarge/main libdshconfig1 0.20.11-1 [10.7kB]
-Get:10 http://ring.asahi-net.or.jp sarge/main libdshconfig1-dev 0.20.11-1 [12.4kB]
-Fetched 2591kB in 0s (8244kB/s)
+Need to get 0B/2641kB of archives.
+After unpacking 8970kB of additional disk space will be used.
Selecting previously deselected package libmagic1.
-(Reading database ... 11115 files and directories currently installed.)
-Unpacking libmagic1 (from .../libmagic1_4.12-1_i386.deb) ...
+(Reading database ... 10940 files and directories currently installed.)
+Unpacking libmagic1 (from .../libmagic1_4.12-1_powerpc.deb) ...
Selecting previously deselected package file.
-Unpacking file (from .../archives/file_4.12-1_i386.deb) ...
+Unpacking file (from .../file_4.12-1_powerpc.deb) ...
Selecting previously deselected package debconf-utils.
Unpacking debconf-utils (from .../debconf-utils_1.4.30.13_all.deb) ...
Selecting previously deselected package html2text.
-Unpacking html2text (from .../html2text_1.3.2a-2_i386.deb) ...
+Unpacking html2text (from .../html2text_1.3.2a-2_powerpc.deb) ...
Selecting previously deselected package gettext.
-Unpacking gettext (from .../gettext_0.14.4-2_i386.deb) ...
+Unpacking gettext (from .../gettext_0.14.4-2_powerpc.deb) ...
Selecting previously deselected package intltool-debian.
Unpacking intltool-debian (from .../intltool-debian_0.30+20040213_all.deb) ...
Selecting previously deselected package po-debconf.
@@ -81,9 +69,9 @@ Unpacking po-debconf (from .../po-debconf_0.8.23_all.deb) ...
Selecting previously deselected package debhelper.
Unpacking debhelper (from .../debhelper_4.2.32_all.deb) ...
Selecting previously deselected package libdshconfig1.
-Unpacking libdshconfig1 (from .../libdshconfig1_0.20.11-1_i386.deb) ...
+Unpacking libdshconfig1 (from .../libdshconfig1_0.20.11-1_powerpc.deb) ...
Selecting previously deselected package libdshconfig1-dev.
-Unpacking libdshconfig1-dev (from .../libdshconfig1-dev_0.20.11-1_i386.deb) ...
+Unpacking libdshconfig1-dev (from .../libdshconfig1-dev_0.20.11-1_powerpc.deb) ...
Setting up libmagic1 (4.12-1) ...
Setting up file (4.12-1) ...
@@ -105,32 +93,30 @@ Building Dependency Tree...
The following NEW packages will be installed:
fakeroot
0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
-Need to get 70.5kB of archives.
-After unpacking 201kB of additional disk space will be used.
-Get:1 http://ring.asahi-net.or.jp sarge/main fakeroot 1.2.10 [70.5kB]
-Fetched 70.5kB in 0s (2217kB/s)
+Need to get 0B/81.8kB of archives.
+After unpacking 315kB of additional disk space will be used.
Selecting previously deselected package fakeroot.
-(Reading database ... 11657 files and directories currently installed.)
-Unpacking fakeroot (from .../fakeroot_1.2.10_i386.deb) ...
+(Reading database ... 11482 files and directories currently installed.)
+Unpacking fakeroot (from .../fakeroot_1.2.10_powerpc.deb) ...
Setting up fakeroot (1.2.10) ...
dpkg-buildpackage: source package is dsh
dpkg-buildpackage: source version is 0.25.6-1
dpkg-buildpackage: source maintainer is Junichi Uekawa <dancer@debian.org>
-dpkg-buildpackage: host architecture is i386
+dpkg-buildpackage: host architecture is powerpc
fakeroot debian/rules clean
dh_testdir
dh_testroot
rm -f build-stamp configure-stamp
/usr/bin/make clean
-make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
+make[1]: Entering directory `/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6'
make[1]: *** No rule to make target `clean'. Stop.
-make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
+make[1]: Leaving directory `/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6'
make: [clean] Error 2 (ignored)
/usr/bin/make distclean
-make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
+make[1]: Entering directory `/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6'
make[1]: *** No rule to make target `distclean'. Stop.
-make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
+make[1]: Leaving directory `/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6'
make: [clean] Error 2 (ignored)
dh_clean
dpkg-source -b dsh-0.25.6
@@ -176,8 +162,8 @@ checking how to run the C preprocessor... gcc -E
checking for egrep... grep -E
checking for ANSI C header files... yes
checking for sys/wait.h that is POSIX.1 compatible... yes
-checking build system type... i686-pc-linux-gnu
-checking host system type... i686-pc-linux-gnu
+checking build system type... powerpc-unknown-linux-gnu
+checking host system type... powerpc-unknown-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
@@ -318,18 +304,18 @@ config.status: creating po/Makefile
touch configure-stamp
dh_testdir
/usr/bin/make
-make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
+make[1]: Entering directory `/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6'
/usr/bin/make all-recursive
-make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
+make[2]: Entering directory `/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6'
Making all in m4
-make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/m4'
+make[3]: Entering directory `/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6/m4'
make[3]: Nothing to be done for `all'.
-make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/m4'
+make[3]: Leaving directory `/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6/m4'
Making all in po
-make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/po'
+make[3]: Entering directory `/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6/po'
make[3]: Nothing to be done for `all'.
-make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/po'
-make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
+make[3]: Leaving directory `/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6/po'
+make[3]: Entering directory `/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6'
if gcc -DHAVE_CONFIG_H -I. -I. -I. -DDSHCONFDIR="\"/etc/dsh\"" -DDSH_COMMANDLINE="\"/usr/bin/dsh\"" -DLOCALEDIR="\"/usr/share/locale\"" -Wall -g -O2 -MT dsh-dsh.o -MD -MP -MF ".deps/dsh-dsh.Tpo" -c -o dsh-dsh.o `test -f 'dsh.c' || echo './'`dsh.c; \
then mv -f ".deps/dsh-dsh.Tpo" ".deps/dsh-dsh.Po"; else rm -f ".deps/dsh-dsh.Tpo"; exit 1; fi
if gcc -DHAVE_CONFIG_H -I. -I. -I. -DDSHCONFDIR="\"/etc/dsh\"" -DDSH_COMMANDLINE="\"/usr/bin/dsh\"" -DLOCALEDIR="\"/usr/share/locale\"" -Wall -g -O2 -MT dsh-linkedlist.o -MD -MP -MF ".deps/dsh-linkedlist.Tpo" -c -o dsh-linkedlist.o `test -f 'linkedlist.c' || echo './'`linkedlist.c; \
@@ -342,26 +328,26 @@ gcc -Wall -g -O2 -o dsh dsh-dsh.o dsh-linkedlist.o dsh-parameter.o /usr/lib/lib
mkdir build-man
sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.1 > build-man/dsh.1
sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.conf.5 > build-man/dsh.conf.5
-make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
-make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
-make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
+make[3]: Leaving directory `/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6'
+make[2]: Leaving directory `/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6'
+make[1]: Leaving directory `/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6'
/usr/bin/make check
-make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
+make[1]: Entering directory `/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6'
Making check in m4
-make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/m4'
+make[2]: Entering directory `/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6/m4'
make[2]: Nothing to be done for `check'.
-make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/m4'
+make[2]: Leaving directory `/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6/m4'
Making check in po
-make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/po'
+make[2]: Entering directory `/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6/po'
make[2]: Nothing to be done for `check'.
-make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/po'
-make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
+make[2]: Leaving directory `/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6/po'
+make[2]: Entering directory `/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6'
+sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.1 > build-man/dsh.1
/usr/bin/make dsh
-make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
-make[3]: `dsh' is up to date.
-make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
+make[3]: Entering directory `/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6'
+make[3]: Leaving directory `/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6'
/usr/bin/make check-TESTS
-make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
+make[3]: Entering directory `/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6'
PASS: tests/param-f.sh
dsh: File ./tests/nonexistent.file could not be opened for read
PASS: tests/param-f-fail.sh
@@ -399,8 +385,8 @@ success
success
a: dsh: Failed executing ./invalid-exec-file with llexec call
b: dsh: Failed executing ./invalid-exec-file with llexec call
-c: dsh: Failed executing ./invalid-exec-file with llexec call
d: dsh: Failed executing ./invalid-exec-file with llexec call
+c: dsh: Failed executing ./invalid-exec-file with llexec call
success
dsh: Failed executing ./invalid-exec-file with llexec call
dsh: Failed executing ./invalid-exec-file with llexec call
@@ -408,11 +394,11 @@ dsh: Failed executing ./invalid-exec-file with llexec call
dsh: Failed executing ./invalid-exec-file with llexec call
success
PASS: tests/param-r-invalid.sh
-2: 2
1: 1
+2: 2
dsh: fork limit and wait shell cannot be specified at the same time
PASS: tests/param-F-invalid.sh
-Sun Jul 3 11:44:46 UTC 2005
+Wed Jul 13 21:24:13 UTC 2005
2: Using sleep as the remote shell
2: Show machine names on output
2: Adding machine 5,4,3,2,1 to list
@@ -482,14 +468,14 @@ Adding machine 5,4,3,2,1 to list
Setting forklimit to 3 and wait_shell to 0
... Waiting for process to end with waitpid
... Waiting for process to end with waitpid
-Sun Jul 3 11:44:51 UTC 2005
+Wed Jul 13 21:24:18 UTC 2005
PASS: tests/param-F-forklimit.sh
PASS: tests/param-gnu-getopt.sh
PASS: tests/news-okay.sh
a: a
-dsh: Process terminated (before write).
-c: c
b: b
+c: c
+dsh: Process terminated (before write).
PASS: tests/segv-catcher.sh
l w
PASS: tests/test-bufferoverflow.sh
@@ -498,9 +484,9 @@ PASS: tests/machinelist-order.sh
===================
All 17 tests passed
===================
-make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
-make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
-make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
+make[3]: Leaving directory `/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6'
+make[2]: Leaving directory `/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6'
+make[1]: Leaving directory `/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6'
touch build-stamp
fakeroot debian/rules binary
dh_testdir
@@ -508,58 +494,58 @@ dh_testroot
dh_clean -k
dh_installdirs
# Add here commands to install the package into debian/dsh.
-/usr/bin/make install DESTDIR=/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh
-make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
+/usr/bin/make install DESTDIR=/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6/debian/dsh
+make[1]: Entering directory `/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6'
Making install in m4
-make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/m4'
-make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/m4'
+make[2]: Entering directory `/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6/m4'
+make[3]: Entering directory `/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6/m4'
make[3]: Nothing to be done for `install-exec-am'.
make[3]: Nothing to be done for `install-data-am'.
-make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/m4'
-make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/m4'
+make[3]: Leaving directory `/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6/m4'
+make[2]: Leaving directory `/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6/m4'
Making install in po
-make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/po'
-/bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh/usr/share
-mkdir -p -- /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh/usr/share
-mkdir -p -- /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh/usr/share/locale/ja/LC_MESSAGES
-installing ja.gmo as /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh/usr/share/locale/ja/LC_MESSAGES/dsh.mo
+make[2]: Entering directory `/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6/po'
+/bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6/debian/dsh/usr/share
+mkdir -p -- /home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6/debian/dsh/usr/share
+mkdir -p -- /home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6/debian/dsh/usr/share/locale/ja/LC_MESSAGES
+installing ja.gmo as /home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6/debian/dsh/usr/share/locale/ja/LC_MESSAGES/dsh.mo
if test "dsh" = "gettext"; then \
- /bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh/usr/share/gettext/po; \
+ /bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6/debian/dsh/usr/share/gettext/po; \
for file in Makefile.in.in Makevars remove-potcdate.sin ; do \
/usr/bin/install -c -m 644 ./$file \
- /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh/usr/share/gettext/po/$file; \
+ /home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6/debian/dsh/usr/share/gettext/po/$file; \
done; \
else \
: ; \
fi
-make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/po'
-make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
-make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
-test -z "/usr/bin" || mkdir -p -- . "/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh/usr/bin"
- /bin/sh ./libtool --mode=install install -p -o root -g root -m 755 -s 'dsh' '/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh/usr/bin/dsh'
-install -p -o root -g root -m 755 -s dsh /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh/usr/bin/dsh
-test -z "/etc/dsh" || mkdir -p -- . "/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh/etc/dsh"
- /usr/bin/install -c -m 644 'dsh.conf' '/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh/etc/dsh/dsh.conf'
+make[2]: Leaving directory `/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6/po'
+make[2]: Entering directory `/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6'
+make[3]: Entering directory `/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6'
+test -z "/usr/bin" || mkdir -p -- . "/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6/debian/dsh/usr/bin"
+ /bin/sh ./libtool --mode=install install -p -o root -g root -m 755 -s 'dsh' '/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6/debian/dsh/usr/bin/dsh'
+install -p -o root -g root -m 755 -s dsh /home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6/debian/dsh/usr/bin/dsh
+test -z "/etc/dsh" || mkdir -p -- . "/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6/debian/dsh/etc/dsh"
+ /usr/bin/install -c -m 644 'dsh.conf' '/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6/debian/dsh/etc/dsh/dsh.conf'
for LANGS in ja ; do \
- mkdir -p /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh/usr/share/man/$LANGS/man1 ;\
- mkdir -p /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh/usr/share/man/$LANGS/man5 ;\
+ mkdir -p /home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6/debian/dsh/usr/share/man/$LANGS/man1 ;\
+ mkdir -p /home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6/debian/dsh/usr/share/man/$LANGS/man5 ;\
sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.$LANGS.1 \
- > /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh/usr/share/man/$LANGS/man1/dsh.1 ; \
+ > /home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6/debian/dsh/usr/share/man/$LANGS/man1/dsh.1 ; \
sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.conf.$LANGS.5 \
- > /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh/usr/share/man/$LANGS/man5/dsh.conf.5 ; \
+ > /home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6/debian/dsh/usr/share/man/$LANGS/man5/dsh.conf.5 ; \
done
-test -z "/usr/share/man/man1" || mkdir -p -- . "/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh/usr/share/man/man1"
- /usr/bin/install -c -m 644 './build-man/dsh.1' '/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh/usr/share/man/man1/dsh.1'
-test -z "/usr/share/man/man5" || mkdir -p -- . "/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh/usr/share/man/man5"
- /usr/bin/install -c -m 644 './build-man/dsh.conf.5' '/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh/usr/share/man/man5/dsh.conf.5'
-make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
-make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
-make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
-cp /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/machines.list /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh/etc/dsh/machines.list
-cp /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/dsh.conf /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh/etc/dsh/dsh.conf
-ln -s ../machines.list /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh/etc/dsh/group/all
-install -d /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh/usr/lib/update-cluster
-install -m 755 /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh.updatelist /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh/usr/lib/update-cluster/
+test -z "/usr/share/man/man1" || mkdir -p -- . "/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6/debian/dsh/usr/share/man/man1"
+ /usr/bin/install -c -m 644 './build-man/dsh.1' '/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6/debian/dsh/usr/share/man/man1/dsh.1'
+test -z "/usr/share/man/man5" || mkdir -p -- . "/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6/debian/dsh/usr/share/man/man5"
+ /usr/bin/install -c -m 644 './build-man/dsh.conf.5' '/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6/debian/dsh/usr/share/man/man5/dsh.conf.5'
+make[3]: Leaving directory `/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6'
+make[2]: Leaving directory `/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6'
+make[1]: Leaving directory `/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6'
+cp /home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6/debian/machines.list /home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6/debian/dsh/etc/dsh/machines.list
+cp /home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6/dsh.conf /home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6/debian/dsh/etc/dsh/dsh.conf
+ln -s ../machines.list /home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6/debian/dsh/etc/dsh/group/all
+install -d /home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6/debian/dsh/usr/lib/update-cluster
+install -m 755 /home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6/debian/dsh.updatelist /home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6/debian/dsh/usr/lib/update-cluster/
dh_testdir
dh_testroot
dh_installdocs NEWS
@@ -576,12 +562,13 @@ dh_installdeb
dh_gencontrol
dh_md5sums
dh_builddeb
-dpkg-deb: building package `dsh' in `../dsh_0.25.6-1_i386.deb'.
+dpkg-deb: building package `dsh' in `../dsh_0.25.6-1_powerpc.deb'.
dpkg-genchanges
dpkg-genchanges: including full source code in upload
dpkg-buildpackage: full upload (original source is included)
+Copying back the cached apt archive contents
-> unmounting dev/pts filesystem
-> unmounting proc filesystem
- -> unmounting /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2 filesystem
+ -> unmounting /home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2 filesystem
-> cleaning the build env
- -> removing directory /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/25242 and its subdirectories
+ -> removing directory /home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/15963 and its subdirectories
diff --git a/testsuite/normal/pdebuild-internal-sid.log b/testsuite/normal/pdebuild-internal-sid.log
index c59b794..7a10200 100644
--- a/testsuite/normal/pdebuild-internal-sid.log
+++ b/testsuite/normal/pdebuild-internal-sid.log
@@ -1,586 +1,8 @@
+W: /home/dancer/.pbuilderrc does not exist
Building the build Environment
- -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/testimage]
- -> creating local configuration
- -> copying local configuration
- -> mounting /proc filesystem
- -> mounting /dev/pts filesystem
--> Mounting /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2
- -> policy-rc.d already exists
-Using: : pdebuild-internal,v 1.5 2005/06/04 05:29:21 dancer Exp $
-Reading package lists...
-Building dependency tree...
-The following extra packages will be installed:
- debootstrap
-Suggested packages:
- pbuilder-uml
-Recommended packages:
- fakeroot sudo devscripts
-The following NEW packages will be installed:
- debootstrap pbuilder
-0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded.
-Need to get 107kB of archives.
-After unpacking 627kB of additional disk space will be used.
-Get:1 http://ring.asahi-net.or.jp sid/main debootstrap 0.3.1.4 [42.1kB]
-Get:2 http://ring.asahi-net.or.jp sid/main pbuilder 0.127 [64.9kB]
-Fetched 107kB in 0s (142kB/s)
-Selecting previously deselected package debootstrap.
-(Reading database ... 10969 files and directories currently installed.)
-Unpacking debootstrap (from .../debootstrap_0.3.1.4_all.deb) ...
-Selecting previously deselected package pbuilder.
-Unpacking pbuilder (from .../pbuilder_0.127_all.deb) ...
-Setting up debootstrap (0.3.1.4) ...
-Setting up pbuilder (0.127) ...
-Setting DEBBUILDOPTS=
- -> Attempting to parse the build-deps : pbuilder-satisfydepends,v 1.18 2003/04/20 03:40:36 dancer Exp $
- -> Considering debhelper (>> 3.0.0)
- -> Trying debhelper
- -> Considering libdshconfig1-dev (>= 0.20.11-1)
- -> Trying libdshconfig1-dev
- -> Installing debhelper libdshconfig1-dev
-Reading package lists...
-Building dependency tree...
-The following extra packages will be installed:
- debconf-utils file gettext html2text intltool-debian libdshconfig1 libmagic1
- po-debconf
-Suggested packages:
- dh-make cvs gettext-doc
-Recommended packages:
- curl libmail-sendmail-perl libcompress-zlib-perl
-The following NEW packages will be installed:
- debconf-utils debhelper file gettext html2text intltool-debian libdshconfig1
- libdshconfig1-dev libmagic1 po-debconf
-0 upgraded, 10 newly installed, 0 to remove and 0 not upgraded.
-Need to get 2642kB of archives.
-After unpacking 8380kB of additional disk space will be used.
-Get:1 http://ring.asahi-net.or.jp sid/main libmagic1 4.12-1 [233kB]
-Get:2 http://ring.asahi-net.or.jp sid/main file 4.12-1 [28.6kB]
-Get:3 http://ring.asahi-net.or.jp sid/main debconf-utils 1.4.51 [33.0kB]
-Get:4 http://ring.asahi-net.or.jp sid/main html2text 1.3.2a-2 [92.6kB]
-Get:5 http://ring.asahi-net.or.jp sid/main gettext 0.14.5-1 [1767kB]
-Get:6 http://ring.asahi-net.or.jp sid/main intltool-debian 0.30+20040213 [23.5kB]
-Get:7 http://ring.asahi-net.or.jp sid/main po-debconf 0.8.23 [78.0kB]
-Get:8 http://ring.asahi-net.or.jp sid/main debhelper 4.9.3 [363kB]
-Get:9 http://ring.asahi-net.or.jp sid/main libdshconfig1 0.20.11-1 [10.7kB]
-Get:10 http://ring.asahi-net.or.jp sid/main libdshconfig1-dev 0.20.11-1 [12.4kB]
-Fetched 2642kB in 0s (8770kB/s)
-Selecting previously deselected package libmagic1.
-(Reading database ... 11046 files and directories currently installed.)
-Unpacking libmagic1 (from .../libmagic1_4.12-1_i386.deb) ...
-Selecting previously deselected package file.
-Unpacking file (from .../archives/file_4.12-1_i386.deb) ...
-Selecting previously deselected package debconf-utils.
-Unpacking debconf-utils (from .../debconf-utils_1.4.51_all.deb) ...
-Selecting previously deselected package html2text.
-Unpacking html2text (from .../html2text_1.3.2a-2_i386.deb) ...
-Selecting previously deselected package gettext.
-Unpacking gettext (from .../gettext_0.14.5-1_i386.deb) ...
-Selecting previously deselected package intltool-debian.
-Unpacking intltool-debian (from .../intltool-debian_0.30+20040213_all.deb) ...
-Selecting previously deselected package po-debconf.
-Unpacking po-debconf (from .../po-debconf_0.8.23_all.deb) ...
-Selecting previously deselected package debhelper.
-Unpacking debhelper (from .../debhelper_4.9.3_all.deb) ...
-Selecting previously deselected package libdshconfig1.
-Unpacking libdshconfig1 (from .../libdshconfig1_0.20.11-1_i386.deb) ...
-Selecting previously deselected package libdshconfig1-dev.
-Unpacking libdshconfig1-dev (from .../libdshconfig1-dev_0.20.11-1_i386.deb) ...
-Setting up libmagic1 (4.12-1) ...
+ -> extracting base tarball [/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/testimage]
-Setting up file (4.12-1) ...
-Setting up debconf-utils (1.4.51) ...
-
-Setting up html2text (1.3.2a-2) ...
-
-Setting up gettext (0.14.5-1) ...
-
-Setting up intltool-debian (0.30+20040213) ...
-Setting up po-debconf (0.8.23) ...
-Setting up debhelper (4.9.3) ...
-Setting up libdshconfig1 (0.20.11-1) ...
-
-Setting up libdshconfig1-dev (0.20.11-1) ...
- -> Finished parsing the build-deps
-Reading package lists...
-Building dependency tree...
-The following NEW packages will be installed:
- fakeroot
-0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
-Need to get 71.1kB of archives.
-After unpacking 201kB of additional disk space will be used.
-Get:1 http://ring.asahi-net.or.jp sid/main fakeroot 1.4.1 [71.1kB]
-Fetched 71.1kB in 0s (2170kB/s)
-Selecting previously deselected package fakeroot.
-(Reading database ... 11589 files and directories currently installed.)
-Unpacking fakeroot (from .../fakeroot_1.4.1_i386.deb) ...
-Setting up fakeroot (1.4.1) ...
-
-dpkg-buildpackage: source package is dsh
-dpkg-buildpackage: source version is 0.25.6-1
-dpkg-buildpackage: source changed by Junichi Uekawa <dancer@debian.org>
-dpkg-buildpackage: host architecture i386
- fakeroot debian/rules clean
-dh_testdir
-dh_testroot
-rm -f build-stamp configure-stamp
-/usr/bin/make clean
-make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
-make[1]: *** No rule to make target `clean'. Stop.
-make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
-make: [clean] Error 2 (ignored)
-/usr/bin/make distclean
-make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
-make[1]: *** No rule to make target `distclean'. Stop.
-make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
-make: [clean] Error 2 (ignored)
-dh_clean
- dpkg-source -b dsh-0.25.6
-dpkg-source: building dsh using existing dsh_0.25.6.orig.tar.gz
-dpkg-source: building dsh in dsh_0.25.6-1.diff.gz
-dpkg-source: warning: file dcp.sh has no final newline (either original or modified version)
-dpkg-source: warning: file debian/compat has no final newline (either original or modified version)
-dpkg-source: building dsh in dsh_0.25.6-1.dsc
- debian/rules build
-dh_testdir
-INSTALL_PROGRAM='install -p -o root -g root -m 755 -s' CFLAGS='-Wall -g -O2' \
- ./configure --prefix=/usr --sysconfdir=/etc/dsh --mandir=/usr/share/man
-checking for a BSD-compatible install... /usr/bin/install -c
-checking whether build environment is sane... yes
-checking for gawk... no
-checking for mawk... mawk
-checking whether make sets $(MAKE)... yes
-checking whether to enable maintainer-specific portions of Makefiles... no
-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 ANSI C... none needed
-checking dependency style of gcc... gcc3
-checking for library containing strerror... none required
-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 ANSI C... (cached) none needed
-checking dependency style of gcc... (cached) gcc3
-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 ANSI C... (cached) none needed
-checking dependency style of gcc... (cached) gcc3
-checking whether make sets $(MAKE)... (cached) yes
-checking how to run the C preprocessor... gcc -E
-checking for egrep... grep -E
-checking for ANSI C header files... yes
-checking for sys/wait.h that is POSIX.1 compatible... yes
-checking build system type... i686-pc-linux-gnu
-checking host system type... i686-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 recognise 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++... gcc3
-checking how to run the C++ preprocessor... g++ -E
-checking for g77... no
-checking for f77... no
-checking for xlf... no
-checking for frt... no
-checking for pgf77... no
-checking for fort77... no
-checking for fl32... no
-checking for af77... no
-checking for f90... no
-checking for xlf90... no
-checking for pgf90... no
-checking for epcf90... no
-checking for f95... no
-checking for fort... no
-checking for xlf95... no
-checking for ifc... no
-checking for efc... no
-checking for pgf95... no
-checking for lf95... no
-checking for gfortran... 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... 32768
-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 static flag works... yes
-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 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... yes
-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++ 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
-checking whether stripping libraries is possible... yes
-appending configuration tag "F77" to libtool
-checking for an ANSI C-conforming const... yes
-checking for msgfmt... /usr/bin/msgfmt
-checking for gmsgfmt... /usr/bin/msgfmt
-checking for xgettext... /usr/bin/xgettext
-checking for msgmerge... /usr/bin/msgmerge
-checking for ld used by GCC... /usr/bin/ld
-checking if the linker (/usr/bin/ld) is GNU ld... yes
-checking for shared library run path origin... done
-checking whether NLS is requested... yes
-checking for GNU gettext in libc... yes
-checking for gettext... yes
-checking getopt.h usability... yes
-checking getopt.h presence... yes
-checking for getopt.h... yes
-checking fcntl.h usability... yes
-checking fcntl.h presence... yes
-checking for fcntl.h... yes
-checking libintl.h usability... yes
-checking libintl.h presence... yes
-checking for libintl.h... yes
-checking locale.h usability... yes
-checking locale.h presence... yes
-checking for locale.h... yes
-checking for stdlib.h... (cached) yes
-checking netdb.h usability... yes
-checking netdb.h presence... yes
-checking for netdb.h... yes
-checking for string.h... (cached) yes
-checking for unistd.h... (cached) yes
-checking netgroup.h usability... no
-checking netgroup.h presence... no
-checking for netgroup.h... no
-checking signal.h usability... yes
-checking signal.h presence... yes
-checking for signal.h... yes
-checking for libdshconfig.h ... yes
-checking for asprintf... yes
-checking for strdup... yes
-checking for getopt_long... yes
-checking for getline... yes
-checking for dup2... yes
-checking for setlocale... yes
-checking for strcasecmp... yes
-checking for strchr... yes
-checking for setnetgrent... yes
-checking for getnetgrent... yes
-checking for endnetgrent... yes
-checking for open_dshconfig in -ldshconfig... yes
-checking netdb.h has setnetgrent that returns void... no
-checking getopt with a GNU option reordering extention... yes, disabling
-configure: creating ./config.status
-config.status: creating po/Makefile.in
-config.status: creating m4/Makefile
-config.status: creating Makefile
-config.status: creating config.h
-config.status: executing depfiles commands
-config.status: executing default-1 commands
-config.status: creating po/POTFILES
-config.status: creating po/Makefile
-touch configure-stamp
-dh_testdir
-/usr/bin/make
-make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
-/usr/bin/make all-recursive
-make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
-Making all in m4
-make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/m4'
-make[3]: Nothing to be done for `all'.
-make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/m4'
-Making all in po
-make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/po'
-make[3]: Nothing to be done for `all'.
-make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/po'
-make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
-if gcc -DHAVE_CONFIG_H -I. -I. -I. -DDSHCONFDIR="\"/etc/dsh\"" -DDSH_COMMANDLINE="\"/usr/bin/dsh\"" -DLOCALEDIR="\"/usr/share/locale\"" -Wall -g -O2 -MT dsh-dsh.o -MD -MP -MF ".deps/dsh-dsh.Tpo" -c -o dsh-dsh.o `test -f 'dsh.c' || echo './'`dsh.c; \
-then mv -f ".deps/dsh-dsh.Tpo" ".deps/dsh-dsh.Po"; else rm -f ".deps/dsh-dsh.Tpo"; exit 1; fi
-if gcc -DHAVE_CONFIG_H -I. -I. -I. -DDSHCONFDIR="\"/etc/dsh\"" -DDSH_COMMANDLINE="\"/usr/bin/dsh\"" -DLOCALEDIR="\"/usr/share/locale\"" -Wall -g -O2 -MT dsh-linkedlist.o -MD -MP -MF ".deps/dsh-linkedlist.Tpo" -c -o dsh-linkedlist.o `test -f 'linkedlist.c' || echo './'`linkedlist.c; \
-then mv -f ".deps/dsh-linkedlist.Tpo" ".deps/dsh-linkedlist.Po"; else rm -f ".deps/dsh-linkedlist.Tpo"; exit 1; fi
-if gcc -DHAVE_CONFIG_H -I. -I. -I. -DDSHCONFDIR="\"/etc/dsh\"" -DDSH_COMMANDLINE="\"/usr/bin/dsh\"" -DLOCALEDIR="\"/usr/share/locale\"" -Wall -g -O2 -MT dsh-parameter.o -MD -MP -MF ".deps/dsh-parameter.Tpo" -c -o dsh-parameter.o `test -f 'parameter.c' || echo './'`parameter.c; \
-then mv -f ".deps/dsh-parameter.Tpo" ".deps/dsh-parameter.Po"; else rm -f ".deps/dsh-parameter.Tpo"; exit 1; fi
-/bin/sh ./libtool --mode=link gcc -Wall -g -O2 -o dsh dsh-dsh.o dsh-linkedlist.o dsh-parameter.o -ldshconfig
-mkdir .libs
-gcc -Wall -g -O2 -o dsh dsh-dsh.o dsh-linkedlist.o dsh-parameter.o /usr/lib/libdshconfig.so
-mkdir build-man
-sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.1 > build-man/dsh.1
-sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.conf.5 > build-man/dsh.conf.5
-make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
-make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
-make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
-/usr/bin/make check
-make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
-Making check in m4
-make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/m4'
-make[2]: Nothing to be done for `check'.
-make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/m4'
-Making check in po
-make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/po'
-make[2]: Nothing to be done for `check'.
-make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/po'
-make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
-/usr/bin/make dsh
-make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
-make[3]: `dsh' is up to date.
-make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
-/usr/bin/make check-TESTS
-make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
-PASS: tests/param-f.sh
-dsh: File ./tests/nonexistent.file could not be opened for read
-PASS: tests/param-f-fail.sh
-PASS: tests/param-f-with-space.sh
-PASS: tests/param-m.sh
-test to check that unknown parameter checking is right.
-./dsh: unrecognized option `--unknown-parameter'
-./dsh: invalid option -- u
-PASS: tests/param-unknown.sh
-test1
-test2
-PASS: tests/param-i.sh
-Check that cn4 option is working.
-PASS: tests/param-cn4.sh
-test to check that -b0 is rejected, and -b1 is accepted
-Buffer size needs to be greater than 1
-Buffer size needs to be greater than 1
-a
-b
-PASS: tests/param-b-0.sh
-dsh: Failed executing ./invalid-exec-file with llexec call
-dsh: Failed executing ./invalid-exec-file with llexec call
-dsh: Failed executing ./invalid-exec-file with llexec call
-dsh: Failed executing ./invalid-exec-file with llexec call
-success
-dsh: Failed executing ./invalid-exec-file with llexec call
-dsh: Failed executing ./invalid-exec-file with llexec call
-dsh: Failed executing ./invalid-exec-file with llexec call
-dsh: Failed executing ./invalid-exec-file with llexec call
-success
-success
-success
-success
-success
-a: dsh: Failed executing ./invalid-exec-file with llexec call
-b: dsh: Failed executing ./invalid-exec-file with llexec call
-c: dsh: Failed executing ./invalid-exec-file with llexec call
-d: dsh: Failed executing ./invalid-exec-file with llexec call
-success
-dsh: Failed executing ./invalid-exec-file with llexec call
-dsh: Failed executing ./invalid-exec-file with llexec call
-dsh: Failed executing ./invalid-exec-file with llexec call
-dsh: Failed executing ./invalid-exec-file with llexec call
-success
-PASS: tests/param-r-invalid.sh
-1: 1
-2: 2
-dsh: fork limit and wait shell cannot be specified at the same time
-PASS: tests/param-F-invalid.sh
-Sun Jul 3 11:40:04 UTC 2005
-2: Using sleep as the remote shell
-2: Show machine names on output
-2: Adding machine 5,4,3,2,1 to list
-2: Setting forklimit to 3 and wait_shell to 0
-2: DUMPing parameters passed to llexec
-2: [2]
-Using sleep as the remote shell
-Show machine names on output
-Adding machine 5,4,3,2,1 to list
-Setting forklimit to 3 and wait_shell to 0
-DUMPing parameters passed to llexec
-[2]
-3: Using sleep as the remote shell
-3: Show machine names on output
-3: Adding machine 5,4,3,2,1 to list
-3: Setting forklimit to 3 and wait_shell to 0
-3: DUMPing parameters passed to llexec
-3: [3]
-Using sleep as the remote shell
-Show machine names on output
-Adding machine 5,4,3,2,1 to list
-Setting forklimit to 3 and wait_shell to 0
-DUMPing parameters passed to llexec
-[3]
-1: Using sleep as the remote shell
-1: Show machine names on output
-1: Adding machine 5,4,3,2,1 to list
-1: Setting forklimit to 3 and wait_shell to 0
-1: ... Waiting for process to end with waitpid
-1: DUMPing parameters passed to llexec
-1: [1]
-Using sleep as the remote shell
-Show machine names on output
-Adding machine 5,4,3,2,1 to list
-Setting forklimit to 3 and wait_shell to 0
-... Waiting for process to end with waitpid
-DUMPing parameters passed to llexec
-[1]
-4: Using sleep as the remote shell
-4: Show machine names on output
-4: Adding machine 5,4,3,2,1 to list
-4: Setting forklimit to 3 and wait_shell to 0
-4: DUMPing parameters passed to llexec
-4: [4]
-Using sleep as the remote shell
-Show machine names on output
-Adding machine 5,4,3,2,1 to list
-Setting forklimit to 3 and wait_shell to 0
-DUMPing parameters passed to llexec
-[4]
-5: Using sleep as the remote shell
-5: Show machine names on output
-5: Adding machine 5,4,3,2,1 to list
-5: Setting forklimit to 3 and wait_shell to 0
-5: DUMPing parameters passed to llexec
-5: [5]
-Using sleep as the remote shell
-Show machine names on output
-Adding machine 5,4,3,2,1 to list
-Setting forklimit to 3 and wait_shell to 0
-DUMPing parameters passed to llexec
-[5]
---- Terminated running
-Using sleep as the remote shell
-Show machine names on output
-Adding machine 5,4,3,2,1 to list
-Setting forklimit to 3 and wait_shell to 0
-... Waiting for process to end with waitpid
-... Waiting for process to end with waitpid
-Sun Jul 3 11:40:09 UTC 2005
-PASS: tests/param-F-forklimit.sh
-PASS: tests/param-gnu-getopt.sh
-PASS: tests/news-okay.sh
-a: a
-dsh: Process terminated (before write).
-b: b
-c: c
-PASS: tests/segv-catcher.sh
-l w
-PASS: tests/test-bufferoverflow.sh
-PASS: tests/machinelist-comment-test.sh
-PASS: tests/machinelist-order.sh
-===================
-All 17 tests passed
-===================
-make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
-make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
-make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
-touch build-stamp
- fakeroot debian/rules binary
-dh_testdir
-dh_testroot
-dh_clean -k
-dh_installdirs
-# Add here commands to install the package into debian/dsh.
-/usr/bin/make install DESTDIR=/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh
-make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
-Making install in m4
-make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/m4'
-make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/m4'
-make[3]: Nothing to be done for `install-exec-am'.
-make[3]: Nothing to be done for `install-data-am'.
-make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/m4'
-make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/m4'
-Making install in po
-make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/po'
-/bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh/usr/share
-mkdir -p -- /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh/usr/share
-mkdir -p -- /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh/usr/share/locale/ja/LC_MESSAGES
-installing ja.gmo as /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh/usr/share/locale/ja/LC_MESSAGES/dsh.mo
-if test "dsh" = "gettext"; then \
- /bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh/usr/share/gettext/po; \
- for file in Makefile.in.in Makevars remove-potcdate.sin ; do \
- /usr/bin/install -c -m 644 ./$file \
- /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh/usr/share/gettext/po/$file; \
- done; \
-else \
- : ; \
-fi
-make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/po'
-make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
-make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
-test -z "/usr/bin" || mkdir -p -- . "/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh/usr/bin"
- /bin/sh ./libtool --mode=install install -p -o root -g root -m 755 -s 'dsh' '/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh/usr/bin/dsh'
-install -p -o root -g root -m 755 -s dsh /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh/usr/bin/dsh
-test -z "/etc/dsh" || mkdir -p -- . "/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh/etc/dsh"
- /usr/bin/install -c -m 644 'dsh.conf' '/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh/etc/dsh/dsh.conf'
-for LANGS in ja ; do \
- mkdir -p /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh/usr/share/man/$LANGS/man1 ;\
- mkdir -p /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh/usr/share/man/$LANGS/man5 ;\
- sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.$LANGS.1 \
- > /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh/usr/share/man/$LANGS/man1/dsh.1 ; \
- sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.conf.$LANGS.5 \
- > /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh/usr/share/man/$LANGS/man5/dsh.conf.5 ; \
-done
-test -z "/usr/share/man/man1" || mkdir -p -- . "/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh/usr/share/man/man1"
- /usr/bin/install -c -m 644 './build-man/dsh.1' '/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh/usr/share/man/man1/dsh.1'
-test -z "/usr/share/man/man5" || mkdir -p -- . "/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh/usr/share/man/man5"
- /usr/bin/install -c -m 644 './build-man/dsh.conf.5' '/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh/usr/share/man/man5/dsh.conf.5'
-make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
-make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
-make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
-cp /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/machines.list /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh/etc/dsh/machines.list
-cp /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/dsh.conf /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh/etc/dsh/dsh.conf
-ln -s ../machines.list /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh/etc/dsh/group/all
-install -d /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh/usr/lib/update-cluster
-install -m 755 /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh.updatelist /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6/debian/dsh/usr/lib/update-cluster/
-dh_testdir
-dh_testroot
-dh_installdocs NEWS
-dh_installexamples
-dh_installmenu
-dh_installman
-dh_installchangelogs ChangeLog
-dh_link
-dh_strip
-dh_shlibdeps
-dh_compress
-dh_fixperms
-dh_installdeb
-dh_gencontrol
-dh_md5sums
-dh_builddeb
-dpkg-deb: building package `dsh' in `../dsh_0.25.6-1_i386.deb'.
- dpkg-genchanges
-dpkg-genchanges: including full source code in upload
-dpkg-buildpackage: full upload (original source is included)
- -> unmounting dev/pts filesystem
- -> unmounting proc filesystem
- -> unmounting /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2 filesystem
- -> cleaning the build env
- -> removing directory /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/29596 and its subdirectories
+gzip: stdin: unexpected end of file
+tar: Child returned status 1
+tar: Error exit delayed from previous errors
+E: failed to extract /home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/testimage to /home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/24149
diff --git a/testsuite/normal/pdebuild-normal-etch.log b/testsuite/normal/pdebuild-normal-etch.log
index 30fbfba..7234781 100644
--- a/testsuite/normal/pdebuild-normal-etch.log
+++ b/testsuite/normal/pdebuild-normal-etch.log
@@ -1,19 +1,19 @@
dpkg-buildpackage: source package is dsh
dpkg-buildpackage: source version is 0.25.6-1
-dpkg-buildpackage: source maintainer is Junichi Uekawa <dancer@debian.org>
+dpkg-buildpackage: source changed by Junichi Uekawa <dancer@debian.org>
fakeroot debian/rules clean
dh_testdir
dh_testroot
rm -f build-stamp configure-stamp
/usr/bin/make clean
-make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
+make[1]: Entering directory `/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6'
make[1]: *** No rule to make target `clean'. Stop.
-make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
+make[1]: Leaving directory `/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6'
make: [clean] Error 2 (ignored)
/usr/bin/make distclean
-make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
+make[1]: Entering directory `/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6'
make[1]: *** No rule to make target `distclean'. Stop.
-make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
+make[1]: Leaving directory `/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6'
make: [clean] Error 2 (ignored)
dh_clean
dpkg-source -b dsh-0.25.6
@@ -25,608 +25,17 @@ dpkg-source: building dsh in dsh_0.25.6-1.dsc
dpkg-genchanges -S
dpkg-genchanges: including full source code in upload
dpkg-buildpackage: source only upload (original source is included)
+W: /home/dancer/.pbuilderrc does not exist
I: using fakeroot in build.
-pbuilder-buildpackage/i386 $Id$
+pbuilder-buildpackage/powerpc $Id$
$Id$
-Current time: Sun Jul 3 20:49:22 JST 2005
-pbuilder-time-stamp: 1120391362
+Current time: Thu Jul 14 06:59:49 JST 2005
+pbuilder-time-stamp: 1121291989
Building the build Environment
- -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/testimage]
- -> creating local configuration
- -> copying local configuration
- -> mounting /proc filesystem
- -> mounting /dev/pts filesystem
- -> policy-rc.d already exists
- -> created buildresult dir :/var/cache/pbuilder/result
-Installing the build-deps
- -> Attempting to parse the build-deps : pbuilder-satisfydepends,v 1.19 2005/06/03 12:07:39 dancer Exp $
- -> Considering debhelper (>> 3.0.0)
- -> Trying debhelper
- -> Considering libdshconfig1-dev (>= 0.20.11-1)
- -> Trying libdshconfig1-dev
- -> Installing debhelper libdshconfig1-dev
-Reading Package Lists...
-Building Dependency Tree...
-The following extra packages will be installed:
- debconf-utils file gettext html2text intltool-debian libdshconfig1 libmagic1
- po-debconf
-Suggested packages:
- dh-make cvs gettext-doc
-Recommended packages:
- curl libmail-sendmail-perl libcompress-zlib-perl
-The following NEW packages will be installed:
- debconf-utils debhelper file gettext html2text intltool-debian libdshconfig1
- libdshconfig1-dev libmagic1 po-debconf
-0 upgraded, 10 newly installed, 0 to remove and 0 not upgraded.
-Need to get 2641kB of archives.
-After unpacking 8380kB of additional disk space will be used.
-Get:1 http://ring.asahi-net.or.jp etch/main libmagic1 4.12-1 [233kB]
-Get:2 http://ring.asahi-net.or.jp etch/main file 4.12-1 [28.6kB]
-Get:3 http://ring.asahi-net.or.jp etch/main debconf-utils 1.4.51 [33.0kB]
-Get:4 http://ring.asahi-net.or.jp etch/main html2text 1.3.2a-2 [92.6kB]
-Get:5 http://ring.asahi-net.or.jp etch/main gettext 0.14.5-1 [1767kB]
-Get:6 http://ring.asahi-net.or.jp etch/main intltool-debian 0.30+20040213 [23.5kB]
-Get:7 http://ring.asahi-net.or.jp etch/main po-debconf 0.8.23 [78.0kB]
-Get:8 http://ring.asahi-net.or.jp etch/main debhelper 4.9.1 [363kB]
-Get:9 http://ring.asahi-net.or.jp etch/main libdshconfig1 0.20.11-1 [10.7kB]
-Get:10 http://ring.asahi-net.or.jp etch/main libdshconfig1-dev 0.20.11-1 [12.4kB]
-Fetched 2641kB in 0s (5901kB/s)
-Selecting previously deselected package libmagic1.
-(Reading database ... 11038 files and directories currently installed.)
-Unpacking libmagic1 (from .../libmagic1_4.12-1_i386.deb) ...
-Selecting previously deselected package file.
-Unpacking file (from .../archives/file_4.12-1_i386.deb) ...
-Selecting previously deselected package debconf-utils.
-Unpacking debconf-utils (from .../debconf-utils_1.4.51_all.deb) ...
-Selecting previously deselected package html2text.
-Unpacking html2text (from .../html2text_1.3.2a-2_i386.deb) ...
-Selecting previously deselected package gettext.
-Unpacking gettext (from .../gettext_0.14.5-1_i386.deb) ...
-Selecting previously deselected package intltool-debian.
-Unpacking intltool-debian (from .../intltool-debian_0.30+20040213_all.deb) ...
-Selecting previously deselected package po-debconf.
-Unpacking po-debconf (from .../po-debconf_0.8.23_all.deb) ...
-Selecting previously deselected package debhelper.
-Unpacking debhelper (from .../debhelper_4.9.1_all.deb) ...
-Selecting previously deselected package libdshconfig1.
-Unpacking libdshconfig1 (from .../libdshconfig1_0.20.11-1_i386.deb) ...
-Selecting previously deselected package libdshconfig1-dev.
-Unpacking libdshconfig1-dev (from .../libdshconfig1-dev_0.20.11-1_i386.deb) ...
-Setting up libmagic1 (4.12-1) ...
+ -> extracting base tarball [/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/testimage]
-Setting up file (4.12-1) ...
-Setting up debconf-utils (1.4.51) ...
-
-Setting up html2text (1.3.2a-2) ...
-
-Setting up gettext (0.14.5-1) ...
-
-Setting up intltool-debian (0.30+20040213) ...
-Setting up po-debconf (0.8.23) ...
-Setting up debhelper (4.9.1) ...
-Setting up libdshconfig1 (0.20.11-1) ...
-
-Setting up libdshconfig1-dev (0.20.11-1) ...
- -> Finished parsing the build-deps
-Reading Package Lists...
-Building Dependency Tree...
-The following NEW packages will be installed:
- fakeroot
-0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
-Need to get 70.4kB of archives.
-After unpacking 201kB of additional disk space will be used.
-Get:1 http://ring.asahi-net.or.jp etch/main fakeroot 1.3 [70.4kB]
-Fetched 70.4kB in 0s (2179kB/s)
-Selecting previously deselected package fakeroot.
-(Reading database ... 11581 files and directories currently installed.)
-Unpacking fakeroot (from .../archives/fakeroot_1.3_i386.deb) ...
-Setting up fakeroot (1.3) ...
-
-Copying source file
- -> copying [../dsh_0.25.6-1.dsc]
- -> copying [../dsh_0.25.6.orig.tar.gz]
- -> copying [../dsh_0.25.6-1.diff.gz]
-Extracting source
-dpkg-source: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-dpkg-source: extracting dsh in dsh-0.25.6
- -> Building the package
-dpkg-parsechangelog: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-debian: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-dpkg-buildpackage: source package is dsh
-dpkg-parsechangelog: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-debian: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-dpkg-buildpackage: source version is 0.25.6-1
-dpkg-parsechangelog: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-debian: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-dpkg-buildpackage: source maintainer is Junichi Uekawa <dancer@debian.org>
-dpkg-architecture: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-dpkg-architecture: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-dpkg-buildpackage: host architecture is i386
-dpkg-checkbuilddeps: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-dpkg-architecture: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-dpkg-architecture: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
- fakeroot debian/rules clean
-dh_testdir
-dh_testroot
-rm -f build-stamp configure-stamp
-/usr/bin/make clean
-make[1]: Entering directory `/tmp/buildd/dsh-0.25.6'
-make[1]: *** No rule to make target `clean'. Stop.
-make[1]: Leaving directory `/tmp/buildd/dsh-0.25.6'
-make: [clean] Error 2 (ignored)
-/usr/bin/make distclean
-make[1]: Entering directory `/tmp/buildd/dsh-0.25.6'
-make[1]: *** No rule to make target `distclean'. Stop.
-make[1]: Leaving directory `/tmp/buildd/dsh-0.25.6'
-make: [clean] Error 2 (ignored)
-dh_clean
- dpkg-source -b dsh-0.25.6
-dpkg-source: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-dpkg-parsechangelog: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-debian: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-dpkg-source: building dsh using existing dsh_0.25.6.orig.tar.gz
-dpkg-source: building dsh in dsh_0.25.6-1.diff.gz
-dpkg-source: warning: file dcp.sh has no final newline (either original or modified version)
-dpkg-source: warning: file debian/compat has no final newline (either original or modified version)
-dpkg-source: building dsh in dsh_0.25.6-1.dsc
- debian/rules build
-dh_testdir
-INSTALL_PROGRAM='install -p -o root -g root -m 755 -s' CFLAGS='-Wall -g -O2' \
- ./configure --prefix=/usr --sysconfdir=/etc/dsh --mandir=/usr/share/man
-checking for a BSD-compatible install... /usr/bin/install -c
-checking whether build environment is sane... yes
-checking for gawk... no
-checking for mawk... mawk
-checking whether make sets $(MAKE)... yes
-checking whether to enable maintainer-specific portions of Makefiles... no
-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 ANSI C... none needed
-checking dependency style of gcc... gcc3
-checking for library containing strerror... none required
-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 ANSI C... (cached) none needed
-checking dependency style of gcc... (cached) gcc3
-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 ANSI C... (cached) none needed
-checking dependency style of gcc... (cached) gcc3
-checking whether make sets $(MAKE)... (cached) yes
-checking how to run the C preprocessor... gcc -E
-checking for egrep... grep -E
-checking for ANSI C header files... yes
-checking for sys/wait.h that is POSIX.1 compatible... yes
-checking build system type... i686-pc-linux-gnu
-checking host system type... i686-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 recognise 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++... gcc3
-checking how to run the C++ preprocessor... g++ -E
-checking for g77... no
-checking for f77... no
-checking for xlf... no
-checking for frt... no
-checking for pgf77... no
-checking for fort77... no
-checking for fl32... no
-checking for af77... no
-checking for f90... no
-checking for xlf90... no
-checking for pgf90... no
-checking for epcf90... no
-checking for f95... no
-checking for fort... no
-checking for xlf95... no
-checking for ifc... no
-checking for efc... no
-checking for pgf95... no
-checking for lf95... no
-checking for gfortran... 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... 32768
-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 static flag works... yes
-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 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... yes
-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++ 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
-checking whether stripping libraries is possible... yes
-appending configuration tag "F77" to libtool
-checking for an ANSI C-conforming const... yes
-checking for msgfmt... /usr/bin/msgfmt
-checking for gmsgfmt... /usr/bin/msgfmt
-checking for xgettext... /usr/bin/xgettext
-checking for msgmerge... /usr/bin/msgmerge
-checking for ld used by GCC... /usr/bin/ld
-checking if the linker (/usr/bin/ld) is GNU ld... yes
-checking for shared library run path origin... done
-checking whether NLS is requested... yes
-checking for GNU gettext in libc... yes
-checking for gettext... yes
-checking getopt.h usability... yes
-checking getopt.h presence... yes
-checking for getopt.h... yes
-checking fcntl.h usability... yes
-checking fcntl.h presence... yes
-checking for fcntl.h... yes
-checking libintl.h usability... yes
-checking libintl.h presence... yes
-checking for libintl.h... yes
-checking locale.h usability... yes
-checking locale.h presence... yes
-checking for locale.h... yes
-checking for stdlib.h... (cached) yes
-checking netdb.h usability... yes
-checking netdb.h presence... yes
-checking for netdb.h... yes
-checking for string.h... (cached) yes
-checking for unistd.h... (cached) yes
-checking netgroup.h usability... no
-checking netgroup.h presence... no
-checking for netgroup.h... no
-checking signal.h usability... yes
-checking signal.h presence... yes
-checking for signal.h... yes
-checking for libdshconfig.h ... yes
-checking for asprintf... yes
-checking for strdup... yes
-checking for getopt_long... yes
-checking for getline... yes
-checking for dup2... yes
-checking for setlocale... yes
-checking for strcasecmp... yes
-checking for strchr... yes
-checking for setnetgrent... yes
-checking for getnetgrent... yes
-checking for endnetgrent... yes
-checking for open_dshconfig in -ldshconfig... yes
-checking netdb.h has setnetgrent that returns void... no
-checking getopt with a GNU option reordering extention... yes, disabling
-configure: creating ./config.status
-config.status: creating po/Makefile.in
-config.status: creating m4/Makefile
-config.status: creating Makefile
-config.status: creating config.h
-config.status: executing depfiles commands
-config.status: executing default-1 commands
-config.status: creating po/POTFILES
-config.status: creating po/Makefile
-touch configure-stamp
-dh_testdir
-/usr/bin/make
-make[1]: Entering directory `/tmp/buildd/dsh-0.25.6'
-/usr/bin/make all-recursive
-make[2]: Entering directory `/tmp/buildd/dsh-0.25.6'
-Making all in m4
-make[3]: Entering directory `/tmp/buildd/dsh-0.25.6/m4'
-make[3]: Nothing to be done for `all'.
-make[3]: Leaving directory `/tmp/buildd/dsh-0.25.6/m4'
-Making all in po
-make[3]: Entering directory `/tmp/buildd/dsh-0.25.6/po'
-make[3]: Nothing to be done for `all'.
-make[3]: Leaving directory `/tmp/buildd/dsh-0.25.6/po'
-make[3]: Entering directory `/tmp/buildd/dsh-0.25.6'
-if gcc -DHAVE_CONFIG_H -I. -I. -I. -DDSHCONFDIR="\"/etc/dsh\"" -DDSH_COMMANDLINE="\"/usr/bin/dsh\"" -DLOCALEDIR="\"/usr/share/locale\"" -Wall -g -O2 -MT dsh-dsh.o -MD -MP -MF ".deps/dsh-dsh.Tpo" -c -o dsh-dsh.o `test -f 'dsh.c' || echo './'`dsh.c; \
-then mv -f ".deps/dsh-dsh.Tpo" ".deps/dsh-dsh.Po"; else rm -f ".deps/dsh-dsh.Tpo"; exit 1; fi
-if gcc -DHAVE_CONFIG_H -I. -I. -I. -DDSHCONFDIR="\"/etc/dsh\"" -DDSH_COMMANDLINE="\"/usr/bin/dsh\"" -DLOCALEDIR="\"/usr/share/locale\"" -Wall -g -O2 -MT dsh-linkedlist.o -MD -MP -MF ".deps/dsh-linkedlist.Tpo" -c -o dsh-linkedlist.o `test -f 'linkedlist.c' || echo './'`linkedlist.c; \
-then mv -f ".deps/dsh-linkedlist.Tpo" ".deps/dsh-linkedlist.Po"; else rm -f ".deps/dsh-linkedlist.Tpo"; exit 1; fi
-if gcc -DHAVE_CONFIG_H -I. -I. -I. -DDSHCONFDIR="\"/etc/dsh\"" -DDSH_COMMANDLINE="\"/usr/bin/dsh\"" -DLOCALEDIR="\"/usr/share/locale\"" -Wall -g -O2 -MT dsh-parameter.o -MD -MP -MF ".deps/dsh-parameter.Tpo" -c -o dsh-parameter.o `test -f 'parameter.c' || echo './'`parameter.c; \
-then mv -f ".deps/dsh-parameter.Tpo" ".deps/dsh-parameter.Po"; else rm -f ".deps/dsh-parameter.Tpo"; exit 1; fi
-/bin/sh ./libtool --mode=link gcc -Wall -g -O2 -o dsh dsh-dsh.o dsh-linkedlist.o dsh-parameter.o -ldshconfig
-mkdir .libs
-gcc -Wall -g -O2 -o dsh dsh-dsh.o dsh-linkedlist.o dsh-parameter.o /usr/lib/libdshconfig.so
-mkdir build-man
-sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.1 > build-man/dsh.1
-sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.conf.5 > build-man/dsh.conf.5
-make[3]: Leaving directory `/tmp/buildd/dsh-0.25.6'
-make[2]: Leaving directory `/tmp/buildd/dsh-0.25.6'
-make[1]: Leaving directory `/tmp/buildd/dsh-0.25.6'
-/usr/bin/make check
-make[1]: Entering directory `/tmp/buildd/dsh-0.25.6'
-Making check in m4
-make[2]: Entering directory `/tmp/buildd/dsh-0.25.6/m4'
-make[2]: Nothing to be done for `check'.
-make[2]: Leaving directory `/tmp/buildd/dsh-0.25.6/m4'
-Making check in po
-make[2]: Entering directory `/tmp/buildd/dsh-0.25.6/po'
-make[2]: Nothing to be done for `check'.
-make[2]: Leaving directory `/tmp/buildd/dsh-0.25.6/po'
-make[2]: Entering directory `/tmp/buildd/dsh-0.25.6'
-/usr/bin/make dsh
-make[3]: Entering directory `/tmp/buildd/dsh-0.25.6'
-make[3]: `dsh' is up to date.
-make[3]: Leaving directory `/tmp/buildd/dsh-0.25.6'
-/usr/bin/make check-TESTS
-make[3]: Entering directory `/tmp/buildd/dsh-0.25.6'
-PASS: tests/param-f.sh
-dsh: File ./tests/nonexistent.file could not be opened for read
-PASS: tests/param-f-fail.sh
-PASS: tests/param-f-with-space.sh
-PASS: tests/param-m.sh
-test to check that unknown parameter checking is right.
-./dsh: unrecognized option `--unknown-parameter'
-./dsh: invalid option -- u
-PASS: tests/param-unknown.sh
-test1
-test2
-dsh: Process terminated (before write).
-PASS: tests/param-i.sh
-Check that cn4 option is working.
-PASS: tests/param-cn4.sh
-test to check that -b0 is rejected, and -b1 is accepted
-Buffer size needs to be greater than 1
-Buffer size needs to be greater than 1
-a
-b
-PASS: tests/param-b-0.sh
-dsh: Failed executing ./invalid-exec-file with llexec call
-dsh: Failed executing ./invalid-exec-file with llexec call
-dsh: Failed executing ./invalid-exec-file with llexec call
-dsh: Failed executing ./invalid-exec-file with llexec call
-success
-dsh: Failed executing ./invalid-exec-file with llexec call
-dsh: Failed executing ./invalid-exec-file with llexec call
-dsh: Failed executing ./invalid-exec-file with llexec call
-dsh: Failed executing ./invalid-exec-file with llexec call
-success
-success
-success
-success
-success
-a: dsh: Failed executing ./invalid-exec-file with llexec call
-b: dsh: Failed executing ./invalid-exec-file with llexec call
-c: dsh: Failed executing ./invalid-exec-file with llexec call
-d: dsh: Failed executing ./invalid-exec-file with llexec call
-success
-dsh: Failed executing ./invalid-exec-file with llexec call
-dsh: Failed executing ./invalid-exec-file with llexec call
-dsh: Failed executing ./invalid-exec-file with llexec call
-dsh: Failed executing ./invalid-exec-file with llexec call
-success
-PASS: tests/param-r-invalid.sh
-1: 1
-2: 2
-dsh: fork limit and wait shell cannot be specified at the same time
-PASS: tests/param-F-invalid.sh
-Sun Jul 3 11:50:05 UTC 2005
-2: Using sleep as the remote shell
-2: Show machine names on output
-2: Adding machine 5,4,3,2,1 to list
-2: Setting forklimit to 3 and wait_shell to 0
-2: DUMPing parameters passed to llexec
-2: [2]
-Using sleep as the remote shell
-Show machine names on output
-Adding machine 5,4,3,2,1 to list
-Setting forklimit to 3 and wait_shell to 0
-DUMPing parameters passed to llexec
-[2]
-3: Using sleep as the remote shell
-3: Show machine names on output
-3: Adding machine 5,4,3,2,1 to list
-3: Setting forklimit to 3 and wait_shell to 0
-3: DUMPing parameters passed to llexec
-3: [3]
-Using sleep as the remote shell
-Show machine names on output
-Adding machine 5,4,3,2,1 to list
-Setting forklimit to 3 and wait_shell to 0
-DUMPing parameters passed to llexec
-[3]
-1: Using sleep as the remote shell
-1: Show machine names on output
-1: Adding machine 5,4,3,2,1 to list
-1: Setting forklimit to 3 and wait_shell to 0
-1: ... Waiting for process to end with waitpid
-1: DUMPing parameters passed to llexec
-1: [1]
-Using sleep as the remote shell
-Show machine names on output
-Adding machine 5,4,3,2,1 to list
-Setting forklimit to 3 and wait_shell to 0
-... Waiting for process to end with waitpid
-DUMPing parameters passed to llexec
-[1]
-4: Using sleep as the remote shell
-4: Show machine names on output
-4: Adding machine 5,4,3,2,1 to list
-4: Setting forklimit to 3 and wait_shell to 0
-4: DUMPing parameters passed to llexec
-4: [4]
-Using sleep as the remote shell
-Show machine names on output
-Adding machine 5,4,3,2,1 to list
-Setting forklimit to 3 and wait_shell to 0
-DUMPing parameters passed to llexec
-[4]
-5: Using sleep as the remote shell
-5: Show machine names on output
-5: Adding machine 5,4,3,2,1 to list
-5: Setting forklimit to 3 and wait_shell to 0
-5: DUMPing parameters passed to llexec
-5: [5]
-Using sleep as the remote shell
-Show machine names on output
-Adding machine 5,4,3,2,1 to list
-Setting forklimit to 3 and wait_shell to 0
-DUMPing parameters passed to llexec
-[5]
---- Terminated running
-Using sleep as the remote shell
-Show machine names on output
-Adding machine 5,4,3,2,1 to list
-Setting forklimit to 3 and wait_shell to 0
-... Waiting for process to end with waitpid
-... Waiting for process to end with waitpid
-Sun Jul 3 11:50:10 UTC 2005
-PASS: tests/param-F-forklimit.sh
-PASS: tests/param-gnu-getopt.sh
-PASS: tests/news-okay.sh
-a: a
-c: c
-b: b
-PASS: tests/segv-catcher.sh
-l w
-PASS: tests/test-bufferoverflow.sh
-PASS: tests/machinelist-comment-test.sh
-PASS: tests/machinelist-order.sh
-===================
-All 17 tests passed
-===================
-make[3]: Leaving directory `/tmp/buildd/dsh-0.25.6'
-make[2]: Leaving directory `/tmp/buildd/dsh-0.25.6'
-make[1]: Leaving directory `/tmp/buildd/dsh-0.25.6'
-touch build-stamp
- fakeroot debian/rules binary
-dh_testdir
-dh_testroot
-dh_clean -k
-dh_installdirs
-# Add here commands to install the package into debian/dsh.
-/usr/bin/make install DESTDIR=/tmp/buildd/dsh-0.25.6/debian/dsh
-make[1]: Entering directory `/tmp/buildd/dsh-0.25.6'
-Making install in m4
-make[2]: Entering directory `/tmp/buildd/dsh-0.25.6/m4'
-make[3]: Entering directory `/tmp/buildd/dsh-0.25.6/m4'
-make[3]: Nothing to be done for `install-exec-am'.
-make[3]: Nothing to be done for `install-data-am'.
-make[3]: Leaving directory `/tmp/buildd/dsh-0.25.6/m4'
-make[2]: Leaving directory `/tmp/buildd/dsh-0.25.6/m4'
-Making install in po
-make[2]: Entering directory `/tmp/buildd/dsh-0.25.6/po'
-/bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /tmp/buildd/dsh-0.25.6/debian/dsh/usr/share
-mkdir -p -- /tmp/buildd/dsh-0.25.6/debian/dsh/usr/share
-mkdir -p -- /tmp/buildd/dsh-0.25.6/debian/dsh/usr/share/locale/ja/LC_MESSAGES
-installing ja.gmo as /tmp/buildd/dsh-0.25.6/debian/dsh/usr/share/locale/ja/LC_MESSAGES/dsh.mo
-if test "dsh" = "gettext"; then \
- /bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /tmp/buildd/dsh-0.25.6/debian/dsh/usr/share/gettext/po; \
- for file in Makefile.in.in Makevars remove-potcdate.sin ; do \
- /usr/bin/install -c -m 644 ./$file \
- /tmp/buildd/dsh-0.25.6/debian/dsh/usr/share/gettext/po/$file; \
- done; \
-else \
- : ; \
-fi
-make[2]: Leaving directory `/tmp/buildd/dsh-0.25.6/po'
-make[2]: Entering directory `/tmp/buildd/dsh-0.25.6'
-make[3]: Entering directory `/tmp/buildd/dsh-0.25.6'
-test -z "/usr/bin" || mkdir -p -- . "/tmp/buildd/dsh-0.25.6/debian/dsh/usr/bin"
- /bin/sh ./libtool --mode=install install -p -o root -g root -m 755 -s 'dsh' '/tmp/buildd/dsh-0.25.6/debian/dsh/usr/bin/dsh'
-install -p -o root -g root -m 755 -s dsh /tmp/buildd/dsh-0.25.6/debian/dsh/usr/bin/dsh
-test -z "/etc/dsh" || mkdir -p -- . "/tmp/buildd/dsh-0.25.6/debian/dsh/etc/dsh"
- /usr/bin/install -c -m 644 'dsh.conf' '/tmp/buildd/dsh-0.25.6/debian/dsh/etc/dsh/dsh.conf'
-for LANGS in ja ; do \
- mkdir -p /tmp/buildd/dsh-0.25.6/debian/dsh/usr/share/man/$LANGS/man1 ;\
- mkdir -p /tmp/buildd/dsh-0.25.6/debian/dsh/usr/share/man/$LANGS/man5 ;\
- sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.$LANGS.1 \
- > /tmp/buildd/dsh-0.25.6/debian/dsh/usr/share/man/$LANGS/man1/dsh.1 ; \
- sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.conf.$LANGS.5 \
- > /tmp/buildd/dsh-0.25.6/debian/dsh/usr/share/man/$LANGS/man5/dsh.conf.5 ; \
-done
-test -z "/usr/share/man/man1" || mkdir -p -- . "/tmp/buildd/dsh-0.25.6/debian/dsh/usr/share/man/man1"
- /usr/bin/install -c -m 644 './build-man/dsh.1' '/tmp/buildd/dsh-0.25.6/debian/dsh/usr/share/man/man1/dsh.1'
-test -z "/usr/share/man/man5" || mkdir -p -- . "/tmp/buildd/dsh-0.25.6/debian/dsh/usr/share/man/man5"
- /usr/bin/install -c -m 644 './build-man/dsh.conf.5' '/tmp/buildd/dsh-0.25.6/debian/dsh/usr/share/man/man5/dsh.conf.5'
-make[3]: Leaving directory `/tmp/buildd/dsh-0.25.6'
-make[2]: Leaving directory `/tmp/buildd/dsh-0.25.6'
-make[1]: Leaving directory `/tmp/buildd/dsh-0.25.6'
-cp /tmp/buildd/dsh-0.25.6/debian/machines.list /tmp/buildd/dsh-0.25.6/debian/dsh/etc/dsh/machines.list
-cp /tmp/buildd/dsh-0.25.6/dsh.conf /tmp/buildd/dsh-0.25.6/debian/dsh/etc/dsh/dsh.conf
-ln -s ../machines.list /tmp/buildd/dsh-0.25.6/debian/dsh/etc/dsh/group/all
-install -d /tmp/buildd/dsh-0.25.6/debian/dsh/usr/lib/update-cluster
-install -m 755 /tmp/buildd/dsh-0.25.6/debian/dsh.updatelist /tmp/buildd/dsh-0.25.6/debian/dsh/usr/lib/update-cluster/
-dh_testdir
-dh_testroot
-dh_installdocs NEWS
-dh_installexamples
-dh_installmenu
-dh_installman
-dh_installchangelogs ChangeLog
-dpkg-parsechangelog: warning: no utmp entry available and LOGNAME not defined; using uid of process (0)
-debian: warning: no utmp entry available and LOGNAME not defined; using uid of process (0)
-dh_link
-dh_strip
-dh_shlibdeps
-dpkg-shlibdeps: warning: no utmp entry available and LOGNAME not defined; using uid of process (0)
-dh_compress
-dh_fixperms
-dh_installdeb
-dh_gencontrol
-dpkg-gencontrol: warning: no utmp entry available and LOGNAME not defined; using uid of process (0)
-dpkg-architecture: warning: no utmp entry available and LOGNAME not defined; using uid of process (0)
-dpkg-parsechangelog: warning: no utmp entry available and LOGNAME not defined; using uid of process (0)
-debian: warning: no utmp entry available and LOGNAME not defined; using uid of process (0)
-dpkg-architecture: warning: no utmp entry available and LOGNAME not defined; using uid of process (0)
-dh_md5sums
-dh_builddeb
-dpkg-deb: building package `dsh' in `../dsh_0.25.6-1_i386.deb'.
- dpkg-genchanges
-dpkg-genchanges: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-dpkg-architecture: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-dpkg-parsechangelog: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-debian: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-dpkg-genchanges: including full source code in upload
-dpkg-buildpackage: full upload (original source is included)
- -> Terminate timeout process
- -> unmounting dev/pts filesystem
- -> unmounting proc filesystem
-/usr/lib/pbuilder/pbuilder-buildpackage: line 143: 17890 Terminated ( : Timeout process; sleep "${TIMEOUT_TIME}"; echo " -> Terminating build process due to timeout "; kill ${BUILD_PID} || true )
-Current time: Sun Jul 3 20:50:12 JST 2005
-pbuilder-time-stamp: 1120391412
- -> cleaning the build env
- -> removing directory /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/17150 and its subdirectories
+gzip: stdin: unexpected end of file
+tar: Child returned status 1
+tar: Error exit delayed from previous errors
+E: failed to extract /home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/testimage to /home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/7869
diff --git a/testsuite/normal/pdebuild-normal-sarge.log b/testsuite/normal/pdebuild-normal-sarge.log
index c72fb59..78a96f0 100644
--- a/testsuite/normal/pdebuild-normal-sarge.log
+++ b/testsuite/normal/pdebuild-normal-sarge.log
@@ -1,19 +1,19 @@
dpkg-buildpackage: source package is dsh
dpkg-buildpackage: source version is 0.25.6-1
-dpkg-buildpackage: source maintainer is Junichi Uekawa <dancer@debian.org>
+dpkg-buildpackage: source changed by Junichi Uekawa <dancer@debian.org>
fakeroot debian/rules clean
dh_testdir
dh_testroot
rm -f build-stamp configure-stamp
/usr/bin/make clean
-make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
+make[1]: Entering directory `/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6'
make[1]: *** No rule to make target `clean'. Stop.
-make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
+make[1]: Leaving directory `/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6'
make: [clean] Error 2 (ignored)
/usr/bin/make distclean
-make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
+make[1]: Entering directory `/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6'
make[1]: *** No rule to make target `distclean'. Stop.
-make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
+make[1]: Leaving directory `/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6'
make: [clean] Error 2 (ignored)
dh_clean
dpkg-source -b dsh-0.25.6
@@ -25,20 +25,22 @@ dpkg-source: building dsh in dsh_0.25.6-1.dsc
dpkg-genchanges -S
dpkg-genchanges: including full source code in upload
dpkg-buildpackage: source only upload (original source is included)
+W: /home/dancer/.pbuilderrc does not exist
I: using fakeroot in build.
-pbuilder-buildpackage/i386 $Id$
+pbuilder-buildpackage/powerpc $Id$
$Id$
-Current time: Sun Jul 3 20:43:19 JST 2005
-pbuilder-time-stamp: 1120390999
+Current time: Thu Jul 14 06:17:45 JST 2005
+pbuilder-time-stamp: 1121289465
Building the build Environment
- -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/testimage]
+ -> extracting base tarball [/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/testimage]
-> creating local configuration
-> copying local configuration
-> mounting /proc filesystem
-> mounting /dev/pts filesystem
-> policy-rc.d already exists
-> created buildresult dir :/var/cache/pbuilder/result
+Obtaining the cached apt archive contents
Installing the build-deps
-> Attempting to parse the build-deps : pbuilder-satisfydepends,v 1.19 2005/06/03 12:07:39 dancer Exp $
-> Considering debhelper (>> 3.0.0)
@@ -59,30 +61,19 @@ The following NEW packages will be installed:
debconf-utils debhelper file gettext html2text intltool-debian libdshconfig1
libdshconfig1-dev libmagic1 po-debconf
0 upgraded, 10 newly installed, 0 to remove and 0 not upgraded.
-Need to get 2591kB of archives.
-After unpacking 8679kB of additional disk space will be used.
-Get:1 http://ring.asahi-net.or.jp sarge/main libmagic1 4.12-1 [233kB]
-Get:2 http://ring.asahi-net.or.jp sarge/main file 4.12-1 [28.6kB]
-Get:3 http://ring.asahi-net.or.jp sarge/main debconf-utils 1.4.30.13 [33.0kB]
-Get:4 http://ring.asahi-net.or.jp sarge/main html2text 1.3.2a-2 [92.6kB]
-Get:5 http://ring.asahi-net.or.jp sarge/main gettext 0.14.4-2 [1718kB]
-Get:6 http://ring.asahi-net.or.jp sarge/main intltool-debian 0.30+20040213 [23.5kB]
-Get:7 http://ring.asahi-net.or.jp sarge/main po-debconf 0.8.23 [78.0kB]
-Get:8 http://ring.asahi-net.or.jp sarge/main debhelper 4.2.32 [362kB]
-Get:9 http://ring.asahi-net.or.jp sarge/main libdshconfig1 0.20.11-1 [10.7kB]
-Get:10 http://ring.asahi-net.or.jp sarge/main libdshconfig1-dev 0.20.11-1 [12.4kB]
-Fetched 2591kB in 0s (4994kB/s)
+Need to get 0B/2641kB of archives.
+After unpacking 8970kB of additional disk space will be used.
Selecting previously deselected package libmagic1.
-(Reading database ... 11040 files and directories currently installed.)
-Unpacking libmagic1 (from .../libmagic1_4.12-1_i386.deb) ...
+(Reading database ... 10865 files and directories currently installed.)
+Unpacking libmagic1 (from .../libmagic1_4.12-1_powerpc.deb) ...
Selecting previously deselected package file.
-Unpacking file (from .../archives/file_4.12-1_i386.deb) ...
+Unpacking file (from .../file_4.12-1_powerpc.deb) ...
Selecting previously deselected package debconf-utils.
Unpacking debconf-utils (from .../debconf-utils_1.4.30.13_all.deb) ...
Selecting previously deselected package html2text.
-Unpacking html2text (from .../html2text_1.3.2a-2_i386.deb) ...
+Unpacking html2text (from .../html2text_1.3.2a-2_powerpc.deb) ...
Selecting previously deselected package gettext.
-Unpacking gettext (from .../gettext_0.14.4-2_i386.deb) ...
+Unpacking gettext (from .../gettext_0.14.4-2_powerpc.deb) ...
Selecting previously deselected package intltool-debian.
Unpacking intltool-debian (from .../intltool-debian_0.30+20040213_all.deb) ...
Selecting previously deselected package po-debconf.
@@ -90,9 +81,9 @@ Unpacking po-debconf (from .../po-debconf_0.8.23_all.deb) ...
Selecting previously deselected package debhelper.
Unpacking debhelper (from .../debhelper_4.2.32_all.deb) ...
Selecting previously deselected package libdshconfig1.
-Unpacking libdshconfig1 (from .../libdshconfig1_0.20.11-1_i386.deb) ...
+Unpacking libdshconfig1 (from .../libdshconfig1_0.20.11-1_powerpc.deb) ...
Selecting previously deselected package libdshconfig1-dev.
-Unpacking libdshconfig1-dev (from .../libdshconfig1-dev_0.20.11-1_i386.deb) ...
+Unpacking libdshconfig1-dev (from .../libdshconfig1-dev_0.20.11-1_powerpc.deb) ...
Setting up libmagic1 (4.12-1) ...
Setting up file (4.12-1) ...
@@ -114,15 +105,14 @@ Building Dependency Tree...
The following NEW packages will be installed:
fakeroot
0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
-Need to get 70.5kB of archives.
-After unpacking 201kB of additional disk space will be used.
-Get:1 http://ring.asahi-net.or.jp sarge/main fakeroot 1.2.10 [70.5kB]
-Fetched 70.5kB in 0s (2309kB/s)
+Need to get 0B/81.8kB of archives.
+After unpacking 315kB of additional disk space will be used.
Selecting previously deselected package fakeroot.
-(Reading database ... 11582 files and directories currently installed.)
-Unpacking fakeroot (from .../fakeroot_1.2.10_i386.deb) ...
+(Reading database ... 11407 files and directories currently installed.)
+Unpacking fakeroot (from .../fakeroot_1.2.10_powerpc.deb) ...
Setting up fakeroot (1.2.10) ...
+Copying back the cached apt archive contents
Copying source file
-> copying [../dsh_0.25.6-1.dsc]
-> copying [../dsh_0.25.6.orig.tar.gz]
@@ -142,7 +132,7 @@ debian: warning: no utmp entry available and LOGNAME not defined; using uid of p
dpkg-buildpackage: source maintainer is Junichi Uekawa <dancer@debian.org>
dpkg-architecture: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
dpkg-architecture: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-dpkg-buildpackage: host architecture is i386
+dpkg-buildpackage: host architecture is powerpc
dpkg-checkbuilddeps: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
dpkg-architecture: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
dpkg-architecture: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
@@ -207,8 +197,8 @@ checking how to run the C preprocessor... gcc -E
checking for egrep... grep -E
checking for ANSI C header files... yes
checking for sys/wait.h that is POSIX.1 compatible... yes
-checking build system type... i686-pc-linux-gnu
-checking host system type... i686-pc-linux-gnu
+checking build system type... powerpc-unknown-linux-gnu
+checking host system type... powerpc-unknown-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
@@ -387,9 +377,9 @@ make[2]: Entering directory `/tmp/buildd/dsh-0.25.6/po'
make[2]: Nothing to be done for `check'.
make[2]: Leaving directory `/tmp/buildd/dsh-0.25.6/po'
make[2]: Entering directory `/tmp/buildd/dsh-0.25.6'
+sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.1 > build-man/dsh.1
/usr/bin/make dsh
make[3]: Entering directory `/tmp/buildd/dsh-0.25.6'
-make[3]: `dsh' is up to date.
make[3]: Leaving directory `/tmp/buildd/dsh-0.25.6'
/usr/bin/make check-TESTS
make[3]: Entering directory `/tmp/buildd/dsh-0.25.6'
@@ -430,8 +420,8 @@ success
success
a: dsh: Failed executing ./invalid-exec-file with llexec call
b: dsh: Failed executing ./invalid-exec-file with llexec call
-c: dsh: Failed executing ./invalid-exec-file with llexec call
d: dsh: Failed executing ./invalid-exec-file with llexec call
+c: dsh: Failed executing ./invalid-exec-file with llexec call
success
dsh: Failed executing ./invalid-exec-file with llexec call
dsh: Failed executing ./invalid-exec-file with llexec call
@@ -439,11 +429,11 @@ dsh: Failed executing ./invalid-exec-file with llexec call
dsh: Failed executing ./invalid-exec-file with llexec call
success
PASS: tests/param-r-invalid.sh
-2: 2
1: 1
+2: 2
dsh: fork limit and wait shell cannot be specified at the same time
PASS: tests/param-F-invalid.sh
-Sun Jul 3 11:43:54 UTC 2005
+Wed Jul 13 21:19:54 UTC 2005
2: Using sleep as the remote shell
2: Show machine names on output
2: Adding machine 5,4,3,2,1 to list
@@ -513,14 +503,14 @@ Adding machine 5,4,3,2,1 to list
Setting forklimit to 3 and wait_shell to 0
... Waiting for process to end with waitpid
... Waiting for process to end with waitpid
-Sun Jul 3 11:43:59 UTC 2005
+Wed Jul 13 21:19:59 UTC 2005
PASS: tests/param-F-forklimit.sh
PASS: tests/param-gnu-getopt.sh
PASS: tests/news-okay.sh
a: a
b: b
-dsh: Process terminated (before write).
c: c
+dsh: Process terminated (before write).
PASS: tests/segv-catcher.sh
l w
PASS: tests/test-bufferoverflow.sh
@@ -615,7 +605,7 @@ debian: warning: no utmp entry available and LOGNAME not defined; using uid of p
dpkg-architecture: warning: no utmp entry available and LOGNAME not defined; using uid of process (0)
dh_md5sums
dh_builddeb
-dpkg-deb: building package `dsh' in `../dsh_0.25.6-1_i386.deb'.
+dpkg-deb: building package `dsh' in `../dsh_0.25.6-1_powerpc.deb'.
dpkg-genchanges
dpkg-genchanges: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
dpkg-architecture: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
@@ -623,11 +613,10 @@ dpkg-parsechangelog: warning: no utmp entry available and LOGNAME not defined; u
debian: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
dpkg-genchanges: including full source code in upload
dpkg-buildpackage: full upload (original source is included)
- -> Terminate timeout process
+Copying back the cached apt archive contents
-> unmounting dev/pts filesystem
-/usr/lib/pbuilder/pbuilder-modules: line 88: 19868 Terminated ( : Timeout process; sleep "${TIMEOUT_TIME}"; echo " -> Terminating build process due to timeout "; kill ${BUILD_PID} || true )
-> unmounting proc filesystem
-Current time: Sun Jul 3 20:44:01 JST 2005
-pbuilder-time-stamp: 1120391041
+Current time: Thu Jul 14 06:20:16 JST 2005
+pbuilder-time-stamp: 1121289616
-> cleaning the build env
- -> removing directory /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/19581 and its subdirectories
+ -> removing directory /home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/9232 and its subdirectories
diff --git a/testsuite/normal/pdebuild-normal-sid.log b/testsuite/normal/pdebuild-normal-sid.log
index db5badc..4b4be5d 100644
--- a/testsuite/normal/pdebuild-normal-sid.log
+++ b/testsuite/normal/pdebuild-normal-sid.log
@@ -1,19 +1,19 @@
dpkg-buildpackage: source package is dsh
dpkg-buildpackage: source version is 0.25.6-1
-dpkg-buildpackage: source maintainer is Junichi Uekawa <dancer@debian.org>
+dpkg-buildpackage: source changed by Junichi Uekawa <dancer@debian.org>
fakeroot debian/rules clean
dh_testdir
dh_testroot
rm -f build-stamp configure-stamp
/usr/bin/make clean
-make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
+make[1]: Entering directory `/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6'
make[1]: *** No rule to make target `clean'. Stop.
-make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
+make[1]: Leaving directory `/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6'
make: [clean] Error 2 (ignored)
/usr/bin/make distclean
-make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
+make[1]: Entering directory `/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6'
make[1]: *** No rule to make target `distclean'. Stop.
-make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/dsh-0.25.6'
+make[1]: Leaving directory `/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/dsh-0.25.6'
make: [clean] Error 2 (ignored)
dh_clean
dpkg-source -b dsh-0.25.6
@@ -25,610 +25,17 @@ dpkg-source: building dsh in dsh_0.25.6-1.dsc
dpkg-genchanges -S
dpkg-genchanges: including full source code in upload
dpkg-buildpackage: source only upload (original source is included)
+W: /home/dancer/.pbuilderrc does not exist
I: using fakeroot in build.
-pbuilder-buildpackage/i386 $Id$
+pbuilder-buildpackage/powerpc $Id$
$Id$
-Current time: Sun Jul 3 20:38:34 JST 2005
-pbuilder-time-stamp: 1120390714
+Current time: Thu Jul 14 05:52:09 JST 2005
+pbuilder-time-stamp: 1121287929
Building the build Environment
- -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/testimage]
- -> creating local configuration
- -> copying local configuration
- -> mounting /proc filesystem
- -> mounting /dev/pts filesystem
- -> policy-rc.d already exists
- -> created buildresult dir :/var/cache/pbuilder/result
-Installing the build-deps
- -> Attempting to parse the build-deps : pbuilder-satisfydepends,v 1.19 2005/06/03 12:07:39 dancer Exp $
- -> Considering debhelper (>> 3.0.0)
- -> Trying debhelper
- -> Considering libdshconfig1-dev (>= 0.20.11-1)
- -> Trying libdshconfig1-dev
- -> Installing debhelper libdshconfig1-dev
-Reading package lists...
-Building dependency tree...
-The following extra packages will be installed:
- debconf-utils file gettext html2text intltool-debian libdshconfig1 libmagic1
- po-debconf
-Suggested packages:
- dh-make cvs gettext-doc
-Recommended packages:
- curl libmail-sendmail-perl libcompress-zlib-perl
-The following NEW packages will be installed:
- debconf-utils debhelper file gettext html2text intltool-debian libdshconfig1
- libdshconfig1-dev libmagic1 po-debconf
-0 upgraded, 10 newly installed, 0 to remove and 0 not upgraded.
-Need to get 2642kB of archives.
-After unpacking 8380kB of additional disk space will be used.
-Get:1 http://ring.asahi-net.or.jp sid/main libmagic1 4.12-1 [233kB]
-Get:2 http://ring.asahi-net.or.jp sid/main file 4.12-1 [28.6kB]
-Get:3 http://ring.asahi-net.or.jp sid/main debconf-utils 1.4.51 [33.0kB]
-Get:4 http://ring.asahi-net.or.jp sid/main html2text 1.3.2a-2 [92.6kB]
-Get:5 http://ring.asahi-net.or.jp sid/main gettext 0.14.5-1 [1767kB]
-Get:6 http://ring.asahi-net.or.jp sid/main intltool-debian 0.30+20040213 [23.5kB]
-Get:7 http://ring.asahi-net.or.jp sid/main po-debconf 0.8.23 [78.0kB]
-Get:8 http://ring.asahi-net.or.jp sid/main debhelper 4.9.3 [363kB]
-Get:9 http://ring.asahi-net.or.jp sid/main libdshconfig1 0.20.11-1 [10.7kB]
-Get:10 http://ring.asahi-net.or.jp sid/main libdshconfig1-dev 0.20.11-1 [12.4kB]
-Fetched 2642kB in 0s (4819kB/s)
-Selecting previously deselected package libmagic1.
-(Reading database ... 10969 files and directories currently installed.)
-Unpacking libmagic1 (from .../libmagic1_4.12-1_i386.deb) ...
-Selecting previously deselected package file.
-Unpacking file (from .../archives/file_4.12-1_i386.deb) ...
-Selecting previously deselected package debconf-utils.
-Unpacking debconf-utils (from .../debconf-utils_1.4.51_all.deb) ...
-Selecting previously deselected package html2text.
-Unpacking html2text (from .../html2text_1.3.2a-2_i386.deb) ...
-Selecting previously deselected package gettext.
-Unpacking gettext (from .../gettext_0.14.5-1_i386.deb) ...
-Selecting previously deselected package intltool-debian.
-Unpacking intltool-debian (from .../intltool-debian_0.30+20040213_all.deb) ...
-Selecting previously deselected package po-debconf.
-Unpacking po-debconf (from .../po-debconf_0.8.23_all.deb) ...
-Selecting previously deselected package debhelper.
-Unpacking debhelper (from .../debhelper_4.9.3_all.deb) ...
-Selecting previously deselected package libdshconfig1.
-Unpacking libdshconfig1 (from .../libdshconfig1_0.20.11-1_i386.deb) ...
-Selecting previously deselected package libdshconfig1-dev.
-Unpacking libdshconfig1-dev (from .../libdshconfig1-dev_0.20.11-1_i386.deb) ...
-Setting up libmagic1 (4.12-1) ...
-
-Setting up file (4.12-1) ...
-Setting up debconf-utils (1.4.51) ...
-
-Setting up html2text (1.3.2a-2) ...
-
-Setting up gettext (0.14.5-1) ...
-
-Setting up intltool-debian (0.30+20040213) ...
-Setting up po-debconf (0.8.23) ...
-Setting up debhelper (4.9.3) ...
-Setting up libdshconfig1 (0.20.11-1) ...
+ -> extracting base tarball [/home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/testimage]
-Setting up libdshconfig1-dev (0.20.11-1) ...
- -> Finished parsing the build-deps
-Reading package lists...
-Building dependency tree...
-The following NEW packages will be installed:
- fakeroot
-0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
-Need to get 71.1kB of archives.
-After unpacking 201kB of additional disk space will be used.
-Get:1 http://ring.asahi-net.or.jp sid/main fakeroot 1.4.1 [71.1kB]
-Fetched 71.1kB in 0s (1007kB/s)
-Selecting previously deselected package fakeroot.
-(Reading database ... 11512 files and directories currently installed.)
-Unpacking fakeroot (from .../fakeroot_1.4.1_i386.deb) ...
-Setting up fakeroot (1.4.1) ...
-
-Copying source file
- -> copying [../dsh_0.25.6-1.dsc]
- -> copying [../dsh_0.25.6.orig.tar.gz]
- -> copying [../dsh_0.25.6-1.diff.gz]
-Extracting source
-dpkg-source: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-dpkg-source: extracting dsh in dsh-0.25.6
-dpkg-source: unpacking dsh_0.25.6.orig.tar.gz
-dpkg-source: applying ./dsh_0.25.6-1.diff.gz
- -> Building the package
-dpkg-parsechangelog: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-debian: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-dpkg-buildpackage: source package is dsh
-dpkg-parsechangelog: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-debian: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-dpkg-buildpackage: source version is 0.25.6-1
-dpkg-parsechangelog: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-debian: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-dpkg-buildpackage: source changed by Junichi Uekawa <dancer@debian.org>
-dpkg-architecture: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-dpkg-architecture: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-dpkg-buildpackage: host architecture i386
-dpkg-checkbuilddeps: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-dpkg-architecture: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-dpkg-architecture: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
- fakeroot debian/rules clean
-dh_testdir
-dh_testroot
-rm -f build-stamp configure-stamp
-/usr/bin/make clean
-make[1]: Entering directory `/tmp/buildd/dsh-0.25.6'
-make[1]: *** No rule to make target `clean'. Stop.
-make[1]: Leaving directory `/tmp/buildd/dsh-0.25.6'
-make: [clean] Error 2 (ignored)
-/usr/bin/make distclean
-make[1]: Entering directory `/tmp/buildd/dsh-0.25.6'
-make[1]: *** No rule to make target `distclean'. Stop.
-make[1]: Leaving directory `/tmp/buildd/dsh-0.25.6'
-make: [clean] Error 2 (ignored)
-dh_clean
- dpkg-source -b dsh-0.25.6
-dpkg-source: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-dpkg-parsechangelog: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-debian: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-dpkg-source: building dsh using existing dsh_0.25.6.orig.tar.gz
-dpkg-source: building dsh in dsh_0.25.6-1.diff.gz
-dpkg-source: warning: file dcp.sh has no final newline (either original or modified version)
-dpkg-source: warning: file debian/compat has no final newline (either original or modified version)
-dpkg-source: building dsh in dsh_0.25.6-1.dsc
- debian/rules build
-dh_testdir
-INSTALL_PROGRAM='install -p -o root -g root -m 755 -s' CFLAGS='-Wall -g -O2' \
- ./configure --prefix=/usr --sysconfdir=/etc/dsh --mandir=/usr/share/man
-checking for a BSD-compatible install... /usr/bin/install -c
-checking whether build environment is sane... yes
-checking for gawk... no
-checking for mawk... mawk
-checking whether make sets $(MAKE)... yes
-checking whether to enable maintainer-specific portions of Makefiles... no
-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 ANSI C... none needed
-checking dependency style of gcc... gcc3
-checking for library containing strerror... none required
-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 ANSI C... (cached) none needed
-checking dependency style of gcc... (cached) gcc3
-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 ANSI C... (cached) none needed
-checking dependency style of gcc... (cached) gcc3
-checking whether make sets $(MAKE)... (cached) yes
-checking how to run the C preprocessor... gcc -E
-checking for egrep... grep -E
-checking for ANSI C header files... yes
-checking for sys/wait.h that is POSIX.1 compatible... yes
-checking build system type... i686-pc-linux-gnu
-checking host system type... i686-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 recognise 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++... gcc3
-checking how to run the C++ preprocessor... g++ -E
-checking for g77... no
-checking for f77... no
-checking for xlf... no
-checking for frt... no
-checking for pgf77... no
-checking for fort77... no
-checking for fl32... no
-checking for af77... no
-checking for f90... no
-checking for xlf90... no
-checking for pgf90... no
-checking for epcf90... no
-checking for f95... no
-checking for fort... no
-checking for xlf95... no
-checking for ifc... no
-checking for efc... no
-checking for pgf95... no
-checking for lf95... no
-checking for gfortran... 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... 32768
-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 static flag works... yes
-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 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... yes
-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++ 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
-checking whether stripping libraries is possible... yes
-appending configuration tag "F77" to libtool
-checking for an ANSI C-conforming const... yes
-checking for msgfmt... /usr/bin/msgfmt
-checking for gmsgfmt... /usr/bin/msgfmt
-checking for xgettext... /usr/bin/xgettext
-checking for msgmerge... /usr/bin/msgmerge
-checking for ld used by GCC... /usr/bin/ld
-checking if the linker (/usr/bin/ld) is GNU ld... yes
-checking for shared library run path origin... done
-checking whether NLS is requested... yes
-checking for GNU gettext in libc... yes
-checking for gettext... yes
-checking getopt.h usability... yes
-checking getopt.h presence... yes
-checking for getopt.h... yes
-checking fcntl.h usability... yes
-checking fcntl.h presence... yes
-checking for fcntl.h... yes
-checking libintl.h usability... yes
-checking libintl.h presence... yes
-checking for libintl.h... yes
-checking locale.h usability... yes
-checking locale.h presence... yes
-checking for locale.h... yes
-checking for stdlib.h... (cached) yes
-checking netdb.h usability... yes
-checking netdb.h presence... yes
-checking for netdb.h... yes
-checking for string.h... (cached) yes
-checking for unistd.h... (cached) yes
-checking netgroup.h usability... no
-checking netgroup.h presence... no
-checking for netgroup.h... no
-checking signal.h usability... yes
-checking signal.h presence... yes
-checking for signal.h... yes
-checking for libdshconfig.h ... yes
-checking for asprintf... yes
-checking for strdup... yes
-checking for getopt_long... yes
-checking for getline... yes
-checking for dup2... yes
-checking for setlocale... yes
-checking for strcasecmp... yes
-checking for strchr... yes
-checking for setnetgrent... yes
-checking for getnetgrent... yes
-checking for endnetgrent... yes
-checking for open_dshconfig in -ldshconfig... yes
-checking netdb.h has setnetgrent that returns void... no
-checking getopt with a GNU option reordering extention... yes, disabling
-configure: creating ./config.status
-config.status: creating po/Makefile.in
-config.status: creating m4/Makefile
-config.status: creating Makefile
-config.status: creating config.h
-config.status: executing depfiles commands
-config.status: executing default-1 commands
-config.status: creating po/POTFILES
-config.status: creating po/Makefile
-touch configure-stamp
-dh_testdir
-/usr/bin/make
-make[1]: Entering directory `/tmp/buildd/dsh-0.25.6'
-/usr/bin/make all-recursive
-make[2]: Entering directory `/tmp/buildd/dsh-0.25.6'
-Making all in m4
-make[3]: Entering directory `/tmp/buildd/dsh-0.25.6/m4'
-make[3]: Nothing to be done for `all'.
-make[3]: Leaving directory `/tmp/buildd/dsh-0.25.6/m4'
-Making all in po
-make[3]: Entering directory `/tmp/buildd/dsh-0.25.6/po'
-make[3]: Nothing to be done for `all'.
-make[3]: Leaving directory `/tmp/buildd/dsh-0.25.6/po'
-make[3]: Entering directory `/tmp/buildd/dsh-0.25.6'
-if gcc -DHAVE_CONFIG_H -I. -I. -I. -DDSHCONFDIR="\"/etc/dsh\"" -DDSH_COMMANDLINE="\"/usr/bin/dsh\"" -DLOCALEDIR="\"/usr/share/locale\"" -Wall -g -O2 -MT dsh-dsh.o -MD -MP -MF ".deps/dsh-dsh.Tpo" -c -o dsh-dsh.o `test -f 'dsh.c' || echo './'`dsh.c; \
-then mv -f ".deps/dsh-dsh.Tpo" ".deps/dsh-dsh.Po"; else rm -f ".deps/dsh-dsh.Tpo"; exit 1; fi
-if gcc -DHAVE_CONFIG_H -I. -I. -I. -DDSHCONFDIR="\"/etc/dsh\"" -DDSH_COMMANDLINE="\"/usr/bin/dsh\"" -DLOCALEDIR="\"/usr/share/locale\"" -Wall -g -O2 -MT dsh-linkedlist.o -MD -MP -MF ".deps/dsh-linkedlist.Tpo" -c -o dsh-linkedlist.o `test -f 'linkedlist.c' || echo './'`linkedlist.c; \
-then mv -f ".deps/dsh-linkedlist.Tpo" ".deps/dsh-linkedlist.Po"; else rm -f ".deps/dsh-linkedlist.Tpo"; exit 1; fi
-if gcc -DHAVE_CONFIG_H -I. -I. -I. -DDSHCONFDIR="\"/etc/dsh\"" -DDSH_COMMANDLINE="\"/usr/bin/dsh\"" -DLOCALEDIR="\"/usr/share/locale\"" -Wall -g -O2 -MT dsh-parameter.o -MD -MP -MF ".deps/dsh-parameter.Tpo" -c -o dsh-parameter.o `test -f 'parameter.c' || echo './'`parameter.c; \
-then mv -f ".deps/dsh-parameter.Tpo" ".deps/dsh-parameter.Po"; else rm -f ".deps/dsh-parameter.Tpo"; exit 1; fi
-/bin/sh ./libtool --mode=link gcc -Wall -g -O2 -o dsh dsh-dsh.o dsh-linkedlist.o dsh-parameter.o -ldshconfig
-mkdir .libs
-gcc -Wall -g -O2 -o dsh dsh-dsh.o dsh-linkedlist.o dsh-parameter.o /usr/lib/libdshconfig.so
-mkdir build-man
-sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.1 > build-man/dsh.1
-sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.conf.5 > build-man/dsh.conf.5
-make[3]: Leaving directory `/tmp/buildd/dsh-0.25.6'
-make[2]: Leaving directory `/tmp/buildd/dsh-0.25.6'
-make[1]: Leaving directory `/tmp/buildd/dsh-0.25.6'
-/usr/bin/make check
-make[1]: Entering directory `/tmp/buildd/dsh-0.25.6'
-Making check in m4
-make[2]: Entering directory `/tmp/buildd/dsh-0.25.6/m4'
-make[2]: Nothing to be done for `check'.
-make[2]: Leaving directory `/tmp/buildd/dsh-0.25.6/m4'
-Making check in po
-make[2]: Entering directory `/tmp/buildd/dsh-0.25.6/po'
-make[2]: Nothing to be done for `check'.
-make[2]: Leaving directory `/tmp/buildd/dsh-0.25.6/po'
-make[2]: Entering directory `/tmp/buildd/dsh-0.25.6'
-/usr/bin/make dsh
-make[3]: Entering directory `/tmp/buildd/dsh-0.25.6'
-make[3]: `dsh' is up to date.
-make[3]: Leaving directory `/tmp/buildd/dsh-0.25.6'
-/usr/bin/make check-TESTS
-make[3]: Entering directory `/tmp/buildd/dsh-0.25.6'
-PASS: tests/param-f.sh
-dsh: File ./tests/nonexistent.file could not be opened for read
-PASS: tests/param-f-fail.sh
-PASS: tests/param-f-with-space.sh
-PASS: tests/param-m.sh
-test to check that unknown parameter checking is right.
-./dsh: unrecognized option `--unknown-parameter'
-./dsh: invalid option -- u
-PASS: tests/param-unknown.sh
-test1
-test2
-PASS: tests/param-i.sh
-Check that cn4 option is working.
-PASS: tests/param-cn4.sh
-test to check that -b0 is rejected, and -b1 is accepted
-Buffer size needs to be greater than 1
-Buffer size needs to be greater than 1
-a
-b
-PASS: tests/param-b-0.sh
-dsh: Failed executing ./invalid-exec-file with llexec call
-dsh: Failed executing ./invalid-exec-file with llexec call
-dsh: Failed executing ./invalid-exec-file with llexec call
-dsh: Failed executing ./invalid-exec-file with llexec call
-success
-dsh: Failed executing ./invalid-exec-file with llexec call
-dsh: Failed executing ./invalid-exec-file with llexec call
-dsh: Failed executing ./invalid-exec-file with llexec call
-dsh: Failed executing ./invalid-exec-file with llexec call
-success
-success
-success
-success
-success
-a: dsh: Failed executing ./invalid-exec-file with llexec call
-b: dsh: Failed executing ./invalid-exec-file with llexec call
-c: dsh: Failed executing ./invalid-exec-file with llexec call
-d: dsh: Failed executing ./invalid-exec-file with llexec call
-success
-dsh: Failed executing ./invalid-exec-file with llexec call
-dsh: Failed executing ./invalid-exec-file with llexec call
-dsh: Failed executing ./invalid-exec-file with llexec call
-dsh: Failed executing ./invalid-exec-file with llexec call
-success
-PASS: tests/param-r-invalid.sh
-2: 2
-1: 1
-dsh: fork limit and wait shell cannot be specified at the same time
-PASS: tests/param-F-invalid.sh
-Sun Jul 3 11:39:13 UTC 2005
-2: Using sleep as the remote shell
-2: Show machine names on output
-2: Adding machine 5,4,3,2,1 to list
-2: Setting forklimit to 3 and wait_shell to 0
-2: DUMPing parameters passed to llexec
-2: [2]
-Using sleep as the remote shell
-Show machine names on output
-Adding machine 5,4,3,2,1 to list
-Setting forklimit to 3 and wait_shell to 0
-DUMPing parameters passed to llexec
-[2]
-3: Using sleep as the remote shell
-3: Show machine names on output
-3: Adding machine 5,4,3,2,1 to list
-3: Setting forklimit to 3 and wait_shell to 0
-3: DUMPing parameters passed to llexec
-3: [3]
-Using sleep as the remote shell
-Show machine names on output
-Adding machine 5,4,3,2,1 to list
-Setting forklimit to 3 and wait_shell to 0
-DUMPing parameters passed to llexec
-[3]
-1: Using sleep as the remote shell
-1: Show machine names on output
-1: Adding machine 5,4,3,2,1 to list
-1: Setting forklimit to 3 and wait_shell to 0
-1: ... Waiting for process to end with waitpid
-1: DUMPing parameters passed to llexec
-1: [1]
-Using sleep as the remote shell
-Show machine names on output
-Adding machine 5,4,3,2,1 to list
-Setting forklimit to 3 and wait_shell to 0
-... Waiting for process to end with waitpid
-DUMPing parameters passed to llexec
-[1]
-4: Using sleep as the remote shell
-4: Show machine names on output
-4: Adding machine 5,4,3,2,1 to list
-4: Setting forklimit to 3 and wait_shell to 0
-4: DUMPing parameters passed to llexec
-4: [4]
-Using sleep as the remote shell
-Show machine names on output
-Adding machine 5,4,3,2,1 to list
-Setting forklimit to 3 and wait_shell to 0
-DUMPing parameters passed to llexec
-[4]
-5: Using sleep as the remote shell
-5: Show machine names on output
-5: Adding machine 5,4,3,2,1 to list
-5: Setting forklimit to 3 and wait_shell to 0
-5: DUMPing parameters passed to llexec
-5: [5]
-Using sleep as the remote shell
-Show machine names on output
-Adding machine 5,4,3,2,1 to list
-Setting forklimit to 3 and wait_shell to 0
-DUMPing parameters passed to llexec
-[5]
---- Terminated running
-Using sleep as the remote shell
-Show machine names on output
-Adding machine 5,4,3,2,1 to list
-Setting forklimit to 3 and wait_shell to 0
-... Waiting for process to end with waitpid
-... Waiting for process to end with waitpid
-Sun Jul 3 11:39:18 UTC 2005
-PASS: tests/param-F-forklimit.sh
-PASS: tests/param-gnu-getopt.sh
-PASS: tests/news-okay.sh
-a: a
-dsh: Process terminated (before write).
-b: b
-c: c
-PASS: tests/segv-catcher.sh
-l w
-PASS: tests/test-bufferoverflow.sh
-PASS: tests/machinelist-comment-test.sh
-PASS: tests/machinelist-order.sh
-===================
-All 17 tests passed
-===================
-make[3]: Leaving directory `/tmp/buildd/dsh-0.25.6'
-make[2]: Leaving directory `/tmp/buildd/dsh-0.25.6'
-make[1]: Leaving directory `/tmp/buildd/dsh-0.25.6'
-touch build-stamp
- fakeroot debian/rules binary
-dh_testdir
-dh_testroot
-dh_clean -k
-dh_installdirs
-# Add here commands to install the package into debian/dsh.
-/usr/bin/make install DESTDIR=/tmp/buildd/dsh-0.25.6/debian/dsh
-make[1]: Entering directory `/tmp/buildd/dsh-0.25.6'
-Making install in m4
-make[2]: Entering directory `/tmp/buildd/dsh-0.25.6/m4'
-make[3]: Entering directory `/tmp/buildd/dsh-0.25.6/m4'
-make[3]: Nothing to be done for `install-exec-am'.
-make[3]: Nothing to be done for `install-data-am'.
-make[3]: Leaving directory `/tmp/buildd/dsh-0.25.6/m4'
-make[2]: Leaving directory `/tmp/buildd/dsh-0.25.6/m4'
-Making install in po
-make[2]: Entering directory `/tmp/buildd/dsh-0.25.6/po'
-/bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /tmp/buildd/dsh-0.25.6/debian/dsh/usr/share
-mkdir -p -- /tmp/buildd/dsh-0.25.6/debian/dsh/usr/share
-mkdir -p -- /tmp/buildd/dsh-0.25.6/debian/dsh/usr/share/locale/ja/LC_MESSAGES
-installing ja.gmo as /tmp/buildd/dsh-0.25.6/debian/dsh/usr/share/locale/ja/LC_MESSAGES/dsh.mo
-if test "dsh" = "gettext"; then \
- /bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /tmp/buildd/dsh-0.25.6/debian/dsh/usr/share/gettext/po; \
- for file in Makefile.in.in Makevars remove-potcdate.sin ; do \
- /usr/bin/install -c -m 644 ./$file \
- /tmp/buildd/dsh-0.25.6/debian/dsh/usr/share/gettext/po/$file; \
- done; \
-else \
- : ; \
-fi
-make[2]: Leaving directory `/tmp/buildd/dsh-0.25.6/po'
-make[2]: Entering directory `/tmp/buildd/dsh-0.25.6'
-make[3]: Entering directory `/tmp/buildd/dsh-0.25.6'
-test -z "/usr/bin" || mkdir -p -- . "/tmp/buildd/dsh-0.25.6/debian/dsh/usr/bin"
- /bin/sh ./libtool --mode=install install -p -o root -g root -m 755 -s 'dsh' '/tmp/buildd/dsh-0.25.6/debian/dsh/usr/bin/dsh'
-install -p -o root -g root -m 755 -s dsh /tmp/buildd/dsh-0.25.6/debian/dsh/usr/bin/dsh
-test -z "/etc/dsh" || mkdir -p -- . "/tmp/buildd/dsh-0.25.6/debian/dsh/etc/dsh"
- /usr/bin/install -c -m 644 'dsh.conf' '/tmp/buildd/dsh-0.25.6/debian/dsh/etc/dsh/dsh.conf'
-for LANGS in ja ; do \
- mkdir -p /tmp/buildd/dsh-0.25.6/debian/dsh/usr/share/man/$LANGS/man1 ;\
- mkdir -p /tmp/buildd/dsh-0.25.6/debian/dsh/usr/share/man/$LANGS/man5 ;\
- sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.$LANGS.1 \
- > /tmp/buildd/dsh-0.25.6/debian/dsh/usr/share/man/$LANGS/man1/dsh.1 ; \
- sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.conf.$LANGS.5 \
- > /tmp/buildd/dsh-0.25.6/debian/dsh/usr/share/man/$LANGS/man5/dsh.conf.5 ; \
-done
-test -z "/usr/share/man/man1" || mkdir -p -- . "/tmp/buildd/dsh-0.25.6/debian/dsh/usr/share/man/man1"
- /usr/bin/install -c -m 644 './build-man/dsh.1' '/tmp/buildd/dsh-0.25.6/debian/dsh/usr/share/man/man1/dsh.1'
-test -z "/usr/share/man/man5" || mkdir -p -- . "/tmp/buildd/dsh-0.25.6/debian/dsh/usr/share/man/man5"
- /usr/bin/install -c -m 644 './build-man/dsh.conf.5' '/tmp/buildd/dsh-0.25.6/debian/dsh/usr/share/man/man5/dsh.conf.5'
-make[3]: Leaving directory `/tmp/buildd/dsh-0.25.6'
-make[2]: Leaving directory `/tmp/buildd/dsh-0.25.6'
-make[1]: Leaving directory `/tmp/buildd/dsh-0.25.6'
-cp /tmp/buildd/dsh-0.25.6/debian/machines.list /tmp/buildd/dsh-0.25.6/debian/dsh/etc/dsh/machines.list
-cp /tmp/buildd/dsh-0.25.6/dsh.conf /tmp/buildd/dsh-0.25.6/debian/dsh/etc/dsh/dsh.conf
-ln -s ../machines.list /tmp/buildd/dsh-0.25.6/debian/dsh/etc/dsh/group/all
-install -d /tmp/buildd/dsh-0.25.6/debian/dsh/usr/lib/update-cluster
-install -m 755 /tmp/buildd/dsh-0.25.6/debian/dsh.updatelist /tmp/buildd/dsh-0.25.6/debian/dsh/usr/lib/update-cluster/
-dh_testdir
-dh_testroot
-dh_installdocs NEWS
-dh_installexamples
-dh_installmenu
-dh_installman
-dh_installchangelogs ChangeLog
-dpkg-parsechangelog: warning: no utmp entry available and LOGNAME not defined; using uid of process (0)
-debian: warning: no utmp entry available and LOGNAME not defined; using uid of process (0)
-dh_link
-dh_strip
-dh_shlibdeps
-dpkg-shlibdeps: warning: no utmp entry available and LOGNAME not defined; using uid of process (0)
-dh_compress
-dh_fixperms
-dh_installdeb
-dh_gencontrol
-dpkg-gencontrol: warning: no utmp entry available and LOGNAME not defined; using uid of process (0)
-dpkg-architecture: warning: no utmp entry available and LOGNAME not defined; using uid of process (0)
-dpkg-parsechangelog: warning: no utmp entry available and LOGNAME not defined; using uid of process (0)
-debian: warning: no utmp entry available and LOGNAME not defined; using uid of process (0)
-dpkg-architecture: warning: no utmp entry available and LOGNAME not defined; using uid of process (0)
-dh_md5sums
-dh_builddeb
-dpkg-deb: building package `dsh' in `../dsh_0.25.6-1_i386.deb'.
- dpkg-genchanges
-dpkg-genchanges: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-dpkg-architecture: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-dpkg-parsechangelog: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-debian: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)
-dpkg-genchanges: including full source code in upload
-dpkg-buildpackage: full upload (original source is included)
- -> Terminate timeout process
- -> unmounting dev/pts filesystem
- -> unmounting proc filesystem
-/usr/lib/pbuilder/pbuilder-buildpackage: line 143: 24215 Terminated ( : Timeout process; sleep "${TIMEOUT_TIME}"; echo " -> Terminating build process due to timeout "; kill ${BUILD_PID} || true )
-Current time: Sun Jul 3 20:39:20 JST 2005
-pbuilder-time-stamp: 1120390760
- -> cleaning the build env
- -> removing directory /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.LdgXZ5/dir2/23892 and its subdirectories
+gzip: stdin: unexpected end of file
+tar: Child returned status 1
+tar: Error exit delayed from previous errors
+E: failed to extract /home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/testimage to /home/dancer/cvscheckout/whole/pbuilder/testsuite/tmp.rJ4u0j/dir2/24118
diff --git a/testsuite/run-test.log b/testsuite/run-test.log
index 0da43ba..6c75a04 100644
--- a/testsuite/run-test.log
+++ b/testsuite/run-test.log
@@ -1,7 +1,7 @@
-[OK] create-sid
-[OK] build-sid-dsh
-[OK] pdebuild-sid-dsh
-[OK] pdebuild-internal-sid-dsh
+[FAIL] create-sid
+[FAIL] build-sid-dsh
+[FAIL] pdebuild-sid-dsh
+[FAIL] pdebuild-internal-sid-dsh
[OK] create-sarge
[OK] build-sarge-dsh
[OK] pdebuild-sarge-dsh
@@ -9,9 +9,9 @@
[OK] update-sarge-etch.log
[OK] update-sarge-etch-sid.log
[OK] update-sarge-etch-sid-experimental.log
-[OK] create-etch
-[OK] build-etch-dsh
-[OK] pdebuild-etch-dsh
-[OK] pdebuild-internal-etch-dsh
-[OK] update-etch-sid.log
-[OK] update-etch-sid-experimental.log
+[FAIL] create-etch
+[FAIL] build-etch-dsh
+[FAIL] pdebuild-etch-dsh
+[FAIL] pdebuild-internal-etch-dsh
+[FAIL] update-etch-sid.log
+[FAIL] update-etch-sid-experimental.log