aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog9
-rw-r--r--debian/changelog4
-rwxr-xr-xpbuilder4
-rw-r--r--testsuite/cdebootstrap/pbuilder-build-dsh-etch.log73
-rw-r--r--testsuite/cdebootstrap/pbuilder-build-dsh-sarge.log54
-rw-r--r--testsuite/cdebootstrap/pbuilder-build-dsh-sid.log611
-rw-r--r--testsuite/cdebootstrap/pbuilder-create-etch.log143
-rw-r--r--testsuite/cdebootstrap/pbuilder-create-sarge.log44
-rw-r--r--testsuite/cdebootstrap/pbuilder-create-sid.log328
-rw-r--r--testsuite/cdebootstrap/pbuilder-execute-etch.log4
-rw-r--r--testsuite/cdebootstrap/pbuilder-execute-sarge.log4
-rw-r--r--testsuite/cdebootstrap/pbuilder-execute-sid.log18
-rw-r--r--testsuite/cdebootstrap/pbuilder-update-etch-sid-experimental.log86
-rw-r--r--testsuite/cdebootstrap/pbuilder-update-etch-sid.log373
-rw-r--r--testsuite/cdebootstrap/pbuilder-update-sarge-etch-sid-experimental.log90
-rw-r--r--testsuite/cdebootstrap/pbuilder-update-sarge-etch-sid.log409
-rw-r--r--testsuite/cdebootstrap/pbuilder-update-sarge-etch.log543
-rw-r--r--testsuite/cdebootstrap/pdebuild-internal-etch.log191
-rw-r--r--testsuite/cdebootstrap/pdebuild-internal-sarge.log174
-rw-r--r--testsuite/cdebootstrap/pdebuild-internal-sid.log597
-rw-r--r--testsuite/cdebootstrap/pdebuild-normal-etch.log69
-rw-r--r--testsuite/cdebootstrap/pdebuild-normal-sarge.log52
-rw-r--r--testsuite/cdebootstrap/pdebuild-normal-sid.log621
-rw-r--r--testsuite/normal/pbuilder-build-dsh-etch.log8
-rw-r--r--testsuite/normal/pbuilder-build-dsh-sarge.log53
-rw-r--r--testsuite/normal/pbuilder-build-dsh-sid.log8
-rw-r--r--testsuite/normal/pbuilder-create-etch.log4
-rw-r--r--testsuite/normal/pbuilder-create-sarge.log46
-rw-r--r--testsuite/normal/pbuilder-create-sid.log6
-rw-r--r--testsuite/normal/pbuilder-execute-etch.log4
-rw-r--r--testsuite/normal/pbuilder-execute-sarge.log4
-rw-r--r--testsuite/normal/pbuilder-execute-sid.log4
-rw-r--r--testsuite/normal/pbuilder-update-etch-sid-experimental.log4
-rw-r--r--testsuite/normal/pbuilder-update-etch-sid.log4
-rw-r--r--testsuite/normal/pbuilder-update-sarge-etch-sid-experimental.log73
-rw-r--r--testsuite/normal/pbuilder-update-sarge-etch-sid.log604
-rw-r--r--testsuite/normal/pbuilder-update-sarge-etch.log396
-rw-r--r--testsuite/normal/pdebuild-internal-etch.log4
-rw-r--r--testsuite/normal/pdebuild-internal-sarge.log175
-rw-r--r--testsuite/normal/pdebuild-internal-sid.log4
-rw-r--r--testsuite/normal/pdebuild-normal-etch.log16
-rw-r--r--testsuite/normal/pdebuild-normal-sarge.log56
-rw-r--r--testsuite/normal/pdebuild-normal-sid.log16
-rw-r--r--testsuite/run-test-cdebootstrap.log18
-rwxr-xr-xtestsuite/run-test.sh2
45 files changed, 4690 insertions, 1320 deletions
diff --git a/ChangeLog b/ChangeLog
index c0dd499..e0f505b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2005-08-15 Junichi Uekawa <dancer@debian.org>
+
+ * pbuilder: $CHROOTEXEC instead of direct invocation of 'chroot'
+ command.
+ satisfydepends needs the CHROOTEXEC support.
+
+ I want to support setting CHROOTEXEC so that I can hook
+ 'chroot XXX cow-shell' instead of 'chroot XXX'
+
2005-08-07 Junichi Uekawa <dancer@debian.org>
* debian/control: allow cdebootstrap dependency.
diff --git a/debian/changelog b/debian/changelog
index db1d538..9c7c0d7 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -10,6 +10,8 @@ pbuilder (0.129) UNRELEASED; urgency=low
- default pbuilderrc uses cdebootstrap
- testsuite now tests both cdebootstrap and debootstrap
- Depends on debootstrap or cdebootstrap.
+ * support for --internal-chrootexec
+ TODO: satisfydepends.
TODO for this release:
gnupg install and new key install hooks.
@@ -19,7 +21,7 @@ pbuilder (0.129) UNRELEASED; urgency=low
- cdebootstrap doesn't really work either.
- select cdebootstrap if debootstrap does not exist and cdebootstrap exists.
- -- Junichi Uekawa <dancer@debian.org> Sun, 7 Aug 2005 12:13:24 +0900
+ -- Junichi Uekawa <dancer@debian.org> Mon, 15 Aug 2005 09:28:48 +0900
pbuilder (0.128) unstable; urgency=low
diff --git a/pbuilder b/pbuilder
index 377d2fe..17cf9cf 100755
--- a/pbuilder
+++ b/pbuilder
@@ -68,7 +68,7 @@ File extracted to: $BUILDPLACE
"
fi
executehooks "F"
- chroot "$BUILDPLACE" bin/bash
+ ${CHROOTEXEC} bin/bash
save_aptcache
trap umountproc_cleanbuildplace exit
@@ -109,7 +109,7 @@ File extracted to: $BUILDPLACE
cat "$EXECPROGRAM" > "$RUNNAME"
chmod a+x "$RUNNAME"
executehooks "F"
- chroot "$BUILDPLACE" /run "$@"
+ ${CHROOTEXEC} /run "$@"
save_aptcache
trap umountproc_cleanbuildplace exit
diff --git a/testsuite/cdebootstrap/pbuilder-build-dsh-etch.log b/testsuite/cdebootstrap/pbuilder-build-dsh-etch.log
index 61c3c0a..22c1aba 100644
--- a/testsuite/cdebootstrap/pbuilder-build-dsh-etch.log
+++ b/testsuite/cdebootstrap/pbuilder-build-dsh-etch.log
@@ -2,10 +2,10 @@ I: using fakeroot in build.
pbuilder-buildpackage/i386 $Id$
$Id$
-Current time: Fri Aug 12 08:53:49 JST 2005
-pbuilder-time-stamp: 1123804429
+Current time: Tue Aug 16 08:38:19 JST 2005
+pbuilder-time-stamp: 1124149099
Building the build Environment
- -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/testimage]
+ -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/testimage]
-> creating local configuration
-> copying local configuration
-> mounting /proc filesystem
@@ -32,21 +32,21 @@ 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 2649kB of archives.
+Need to get 2650kB of archives.
After unpacking 8360kB 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.52 [32.9kB]
-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-2 [1775kB]
-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.3 [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 2649kB in 0s (4283kB/s)
+Get:1 http://ftp.jp.debian.org etch/main libmagic1 4.12-1 [233kB]
+Get:2 http://ftp.jp.debian.org etch/main file 4.12-1 [28.6kB]
+Get:3 http://ftp.jp.debian.org etch/main debconf-utils 1.4.52 [32.9kB]
+Get:4 http://ftp.jp.debian.org etch/main html2text 1.3.2a-2 [92.6kB]
+Get:5 http://ftp.jp.debian.org etch/main gettext 0.14.5-2 [1775kB]
+Get:6 http://ftp.jp.debian.org etch/main intltool-debian 0.30+20040213 [23.5kB]
+Get:7 http://ftp.jp.debian.org etch/main po-debconf 0.8.23 [78.0kB]
+Get:8 http://ftp.jp.debian.org etch/main debhelper 4.9.5 [363kB]
+Get:9 http://ftp.jp.debian.org etch/main libdshconfig1 0.20.11-1 [10.7kB]
+Get:10 http://ftp.jp.debian.org etch/main libdshconfig1-dev 0.20.11-1 [12.4kB]
+Fetched 2650kB in 1s (1852kB/s)
Selecting previously deselected package libmagic1.
-(Reading database ... 11211 files and directories currently installed.)
+(Reading database ... 11328 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) ...
@@ -61,7 +61,7 @@ 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) ...
+Unpacking debhelper (from .../debhelper_4.9.5_all.deb) ...
Selecting previously deselected package libdshconfig1.
Unpacking libdshconfig1 (from .../libdshconfig1_0.20.11-1_i386.deb) ...
Selecting previously deselected package libdshconfig1-dev.
@@ -77,7 +77,7 @@ Setting up gettext (0.14.5-2) ...
Setting up intltool-debian (0.30+20040213) ...
Setting up po-debconf (0.8.23) ...
-Setting up debhelper (4.9.3) ...
+Setting up debhelper (4.9.5) ...
Setting up libdshconfig1 (0.20.11-1) ...
Setting up libdshconfig1-dev (0.20.11-1) ...
@@ -89,20 +89,22 @@ The following NEW packages will be installed:
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 (1157kB/s)
+Get:1 http://ftp.jp.debian.org etch/main fakeroot 1.3 [70.4kB]
+Fetched 70.4kB in 0s (601kB/s)
Selecting previously deselected package fakeroot.
-(Reading database ... 11754 files and directories currently installed.)
+(Reading database ... 11871 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.YJi8Z9/dir1/dsh_0.25.6-1.dsc]
- -> copying [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir1/dsh_0.25.6.orig.tar.gz]
- -> copying [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir1/dsh_0.25.6-1.diff.gz]
+ -> copying [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir1/dsh_0.25.6-1.dsc]
+ -> copying [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir1/dsh_0.25.6.orig.tar.gz]
+ -> copying [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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)
@@ -112,7 +114,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 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)
@@ -374,7 +376,6 @@ test to check that unknown parameter checking is right.
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
@@ -400,8 +401,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
@@ -409,11 +410,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
-1: 1
2: 2
+1: 1
dsh: fork limit and wait shell cannot be specified at the same time
PASS: tests/param-F-invalid.sh
-Thu Aug 11 23:54:36 UTC 2005
+Mon Aug 15 23:39:02 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 +484,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
-Thu Aug 11 23:54:41 UTC 2005
+Mon Aug 15 23:39:07 UTC 2005
PASS: tests/param-F-forklimit.sh
PASS: tests/param-gnu-getopt.sh
PASS: tests/news-okay.sh
-a: a
+c: c
dsh: Process terminated (before write).
+a: a
b: b
-c: c
PASS: tests/segv-catcher.sh
l w
PASS: tests/test-bufferoverflow.sh
@@ -594,10 +595,10 @@ debian: warning: no utmp entry available and LOGNAME not defined; using uid of p
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 135: 28980 Terminated ( : Timeout process; sleep "${TIMEOUT_TIME}"; echo " -> Terminating build process due to timeout "; kill ${BUILD_PID} || true )
-> unmounting dev/pts filesystem
+/usr/lib/pbuilder/pbuilder-modules: line 89: 24294 Terminated ( : Timeout process; sleep "${TIMEOUT_TIME}"; echo " -> Terminating build process due to timeout "; kill ${BUILD_PID} || true )
-> unmounting proc filesystem
-Current time: Fri Aug 12 08:54:43 JST 2005
-pbuilder-time-stamp: 1123804483
+Current time: Tue Aug 16 08:39:10 JST 2005
+pbuilder-time-stamp: 1124149150
-> cleaning the build env
- -> removing directory /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir1/27946 and its subdirectories
+ -> removing directory /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir1/23697 and its subdirectories
diff --git a/testsuite/cdebootstrap/pbuilder-build-dsh-sarge.log b/testsuite/cdebootstrap/pbuilder-build-dsh-sarge.log
index 5c9c657..b83c727 100644
--- a/testsuite/cdebootstrap/pbuilder-build-dsh-sarge.log
+++ b/testsuite/cdebootstrap/pbuilder-build-dsh-sarge.log
@@ -2,10 +2,10 @@ I: using fakeroot in build.
pbuilder-buildpackage/i386 $Id$
$Id$
-Current time: Fri Aug 12 08:47:53 JST 2005
-pbuilder-time-stamp: 1123804073
+Current time: Tue Aug 16 08:24:12 JST 2005
+pbuilder-time-stamp: 1124148252
Building the build Environment
- -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/testimage]
+ -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/testimage]
-> creating local configuration
-> copying local configuration
-> mounting /proc filesystem
@@ -34,17 +34,17 @@ The following NEW packages will be installed:
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 (6345kB/s)
+Get:1 http://ftp.jp.debian.org sarge/main libmagic1 4.12-1 [233kB]
+Get:2 http://ftp.jp.debian.org sarge/main file 4.12-1 [28.6kB]
+Get:3 http://ftp.jp.debian.org sarge/main debconf-utils 1.4.30.13 [33.0kB]
+Get:4 http://ftp.jp.debian.org sarge/main html2text 1.3.2a-2 [92.6kB]
+Get:5 http://ftp.jp.debian.org sarge/main gettext 0.14.4-2 [1718kB]
+Get:6 http://ftp.jp.debian.org sarge/main intltool-debian 0.30+20040213 [23.5kB]
+Get:7 http://ftp.jp.debian.org sarge/main po-debconf 0.8.23 [78.0kB]
+Get:8 http://ftp.jp.debian.org sarge/main debhelper 4.2.32 [362kB]
+Get:9 http://ftp.jp.debian.org sarge/main libdshconfig1 0.20.11-1 [10.7kB]
+Get:10 http://ftp.jp.debian.org sarge/main libdshconfig1-dev 0.20.11-1 [12.4kB]
+Fetched 2591kB in 1s (1799kB/s)
Selecting previously deselected package libmagic1.
(Reading database ... 11073 files and directories currently installed.)
Unpacking libmagic1 (from .../libmagic1_4.12-1_i386.deb) ...
@@ -89,17 +89,17 @@ The following NEW packages will be installed:
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 (2303kB/s)
+Get:1 http://ftp.jp.debian.org sarge/main fakeroot 1.2.10 [70.5kB]
+Fetched 70.5kB in 0s (569kB/s)
Selecting previously deselected package fakeroot.
(Reading database ... 11615 files and directories currently installed.)
Unpacking fakeroot (from .../fakeroot_1.2.10_i386.deb) ...
Setting up fakeroot (1.2.10) ...
Copying source file
- -> copying [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir1/dsh_0.25.6-1.dsc]
- -> copying [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir1/dsh_0.25.6.orig.tar.gz]
- -> copying [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir1/dsh_0.25.6-1.diff.gz]
+ -> copying [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir1/dsh_0.25.6-1.dsc]
+ -> copying [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir1/dsh_0.25.6.orig.tar.gz]
+ -> copying [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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
@@ -409,11 +409,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
-1: 1
2: 2
+1: 1
dsh: fork limit and wait shell cannot be specified at the same time
PASS: tests/param-F-invalid.sh
-Thu Aug 11 23:48:33 UTC 2005
+Mon Aug 15 23:24:58 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 +483,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
-Thu Aug 11 23:48:38 UTC 2005
+Mon Aug 15 23:25:03 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
+b: b
PASS: tests/segv-catcher.sh
l w
PASS: tests/test-bufferoverflow.sh
@@ -594,10 +594,10 @@ debian: warning: no utmp entry available and LOGNAME not defined; using uid of p
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 135: 27563 Terminated ( : Timeout process; sleep "${TIMEOUT_TIME}"; echo " -> Terminating build process due to timeout "; kill ${BUILD_PID} || true )
-> unmounting dev/pts filesystem
+/usr/lib/pbuilder/pbuilder-modules: line 89: 16388 Terminated ( : Timeout process; sleep "${TIMEOUT_TIME}"; echo " -> Terminating build process due to timeout "; kill ${BUILD_PID} || true )
-> unmounting proc filesystem
-Current time: Fri Aug 12 08:48:41 JST 2005
-pbuilder-time-stamp: 1123804121
+Current time: Tue Aug 16 08:25:05 JST 2005
+pbuilder-time-stamp: 1124148305
-> cleaning the build env
- -> removing directory /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir1/27275 and its subdirectories
+ -> removing directory /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir1/16105 and its subdirectories
diff --git a/testsuite/cdebootstrap/pbuilder-build-dsh-sid.log b/testsuite/cdebootstrap/pbuilder-build-dsh-sid.log
index 660c31d..be7d1fa 100644
--- a/testsuite/cdebootstrap/pbuilder-build-dsh-sid.log
+++ b/testsuite/cdebootstrap/pbuilder-build-dsh-sid.log
@@ -2,12 +2,609 @@ I: using fakeroot in build.
pbuilder-buildpackage/i386 $Id$
$Id$
-Current time: Fri Aug 12 08:45:28 JST 2005
-pbuilder-time-stamp: 1123803928
+Current time: Tue Aug 16 08:16:30 JST 2005
+pbuilder-time-stamp: 1124147790
Building the build Environment
- -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/testimage]
+ -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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 2650kB of archives.
+After unpacking 8360kB of additional disk space will be used.
+WARNING: The following packages cannot be authenticated!
+ libmagic1 file debconf-utils html2text gettext intltool-debian po-debconf
+ debhelper libdshconfig1 libdshconfig1-dev
+Get:1 http://ftp.jp.debian.org sid/main libmagic1 4.12-1 [233kB]
+Get:2 http://ftp.jp.debian.org sid/main file 4.12-1 [28.6kB]
+Get:3 http://ftp.jp.debian.org sid/main debconf-utils 1.4.57 [33.0kB]
+Get:4 http://ftp.jp.debian.org sid/main html2text 1.3.2a-2 [92.6kB]
+Get:5 http://ftp.jp.debian.org sid/main gettext 0.14.5-2 [1775kB]
+Get:6 http://ftp.jp.debian.org sid/main intltool-debian 0.30+20040213 [23.5kB]
+Get:7 http://ftp.jp.debian.org sid/main po-debconf 0.8.23 [78.0kB]
+Get:8 http://ftp.jp.debian.org sid/main debhelper 4.9.5 [363kB]
+Get:9 http://ftp.jp.debian.org sid/main libdshconfig1 0.20.11-1 [10.7kB]
+Get:10 http://ftp.jp.debian.org sid/main libdshconfig1-dev 0.20.11-1 [12.4kB]
+Fetched 2650kB in 1s (1645kB/s)
+Selecting previously deselected package libmagic1.
+(Reading database ... 11461 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.57_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-2_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.5_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) ...
-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/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/testimage to /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir1/10191
+Setting up file (4.12-1) ...
+Setting up debconf-utils (1.4.57) ...
+
+Setting up html2text (1.3.2a-2) ...
+
+Setting up gettext (0.14.5-2) ...
+
+Setting up intltool-debian (0.30+20040213) ...
+Setting up po-debconf (0.8.23) ...
+Setting up debhelper (4.9.5) ...
+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 69.5kB of archives.
+After unpacking 193kB of additional disk space will be used.
+WARNING: The following packages cannot be authenticated!
+ fakeroot
+Get:1 http://ftp.jp.debian.org sid/main fakeroot 1.4.2 [69.5kB]
+Fetched 69.5kB in 0s (579kB/s)
+Selecting previously deselected package fakeroot.
+(Reading database ... 12004 files and directories currently installed.)
+Unpacking fakeroot (from .../fakeroot_1.4.2_i386.deb) ...
+Setting up fakeroot (1.4.2) ...
+
+Copying source file
+ -> copying [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir1/dsh_0.25.6-1.dsc]
+ -> copying [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir1/dsh_0.25.6.orig.tar.gz]
+ -> copying [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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
+c: dsh: Failed executing ./invalid-exec-file with llexec call
+d: dsh: Failed executing ./invalid-exec-file with llexec call
+b: 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
+Mon Aug 15 23:17: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
+Mon Aug 15 23:17: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).
+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 -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
+ -> unmounting dev/pts filesystem
+/usr/lib/pbuilder/pbuilder-modules: line 89: 14597 Terminated ( : Timeout process; sleep "${TIMEOUT_TIME}"; echo " -> Terminating build process due to timeout "; kill ${BUILD_PID} || true )
+ -> unmounting proc filesystem
+Current time: Tue Aug 16 08:17:19 JST 2005
+pbuilder-time-stamp: 1124147839
+ -> cleaning the build env
+ -> removing directory /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir1/14311 and its subdirectories
diff --git a/testsuite/cdebootstrap/pbuilder-create-etch.log b/testsuite/cdebootstrap/pbuilder-create-etch.log
index fa423be..38edecf 100644
--- a/testsuite/cdebootstrap/pbuilder-create-etch.log
+++ b/testsuite/cdebootstrap/pbuilder-create-etch.log
@@ -121,8 +121,6 @@ P: Retrieving bsdutils
P: Validating bsdutils
P: Retrieving bsdmainutils
P: Validating bsdmainutils
-P: Retrieving dselect
-P: Validating dselect
P: Retrieving dpkg
P: Validating dpkg
P: Retrieving libgdbm3
@@ -177,6 +175,10 @@ P: Retrieving libsigc++-1.2-5c102
P: Validating libsigc++-1.2-5c102
P: Retrieving aptitude
P: Validating aptitude
+P: Retrieving dmidecode
+P: Validating dmidecode
+P: Retrieving laptop-detect
+P: Validating laptop-detect
P: Retrieving tasksel
P: Validating tasksel
P: Retrieving libconsole
@@ -237,6 +239,8 @@ P: Retrieving tar
P: Validating tar
P: Retrieving gzip
P: Validating gzip
+P: Retrieving dselect
+P: Validating dselect
P: Retrieving diff
P: Validating diff
P: Retrieving base-files
@@ -275,7 +279,6 @@ P: Extracting libslang2
P: Extracting libnewt0.51
P: Extracting sed
P: Extracting bsdutils
-P: Extracting dselect
P: Extracting dpkg
P: Extracting login
P: Extracting passwd
@@ -298,6 +301,7 @@ P: Extracting ncurses-base
P: Extracting mawk
P: Extracting tar
P: Extracting gzip
+P: Extracting dselect
P: Extracting diff
P: Extracting base-files
P: Extracting bash
@@ -335,7 +339,6 @@ P: Unpacking package libslang2
P: Unpacking package libnewt0.51
P: Unpacking package sed
P: Unpacking package bsdutils
-P: Unpacking package dselect
P: Unpacking package login
P: Unpacking package passwd
P: Unpacking package libblkid1
@@ -357,12 +360,12 @@ P: Unpacking package ncurses-base
P: Unpacking package mawk
P: Unpacking package tar
P: Unpacking package gzip
+P: Unpacking package dselect
P: Unpacking package diff
P: Unpacking package base-files
P: Unpacking package bash
P: Unpacking package findutils
P: Configuring package makedev
-P: Configuring package ncurses-base
P: Configuring package sysv-rc
P: Configuring package libpam-runtime
P: Configuring package gcc-3.3-base
@@ -402,6 +405,7 @@ P: Configuring package libtext-wrapi18n-perl
P: Configuring package coreutils
P: Configuring package debianutils
P: Configuring package procps
+P: Configuring package ncurses-base
P: Configuring package ncurses-bin
P: Configuring package libpam-modules
P: Configuring package base-files
@@ -436,6 +440,7 @@ P: Unpacking package base-config
P: Unpacking package bsdmainutils
P: Unpacking package cpio
P: Unpacking package cron
+P: Unpacking package dmidecode
P: Unpacking package ed
P: Unpacking package groff-base
P: Unpacking package net-tools
@@ -445,6 +450,7 @@ P: Unpacking package iptables
P: Unpacking package iputils-ping
P: Unpacking package sysklogd
P: Unpacking package klogd
+P: Unpacking package laptop-detect
P: Unpacking package libgpg-error0
P: Unpacking package libgcrypt11
P: Unpacking package libgdbm3
@@ -493,6 +499,7 @@ P: Configuring package gettext-base
P: Configuring package bsdmainutils
P: Configuring package cpio
P: Configuring package cron
+P: Configuring package dmidecode
P: Configuring package ed
P: Configuring package groff-base
P: Configuring package net-tools
@@ -500,6 +507,7 @@ P: Configuring package ifupdown
P: Configuring package info
P: Configuring package iptables
P: Configuring package iputils-ping
+P: Configuring package laptop-detect
P: Configuring package libgpg-error0
P: Configuring package libgcrypt11
P: Configuring package libgdbm3
@@ -555,9 +563,9 @@ Refreshing the base.tgz
-> mounting /proc filesystem
-> mounting /dev/pts filesystem
-> installing dummy policy-rc.d
-Get:1 http://ring.asahi-net.or.jp etch/main Packages [3544kB]
-Get:2 http://ring.asahi-net.or.jp etch/main Release [81B]
-Fetched 3544kB in 1s (3445kB/s)
+Get:1 http://ftp.jp.debian.org etch/main Packages [3489kB]
+Get:2 http://ftp.jp.debian.org etch/main Release [81B]
+Fetched 3489kB in 2s (1544kB/s)
Reading Package Lists...
dpkg - warning: ignoring request to remove lilo which isn't installed.
Reading Package Lists...
@@ -567,45 +575,51 @@ 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
+ binutils cpp cpp-4.0 g++ g++-4.0 gcc gcc-4.0 gcc-4.0-base libc6-dev
+ libstdc++6 libstdc++6-4.0-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
+ binutils-doc cpp-doc gcc-4.0-locales gnupg debian-keyring gcc-4.0-doc
+ manpages-dev autoconf automake1.9 libtool flex bison gdb gcc-doc
+ amd64-libs-dev glibc-doc libstdc++6-4.0-doc stl-manual
+ libterm-readline-gnu-perl libterm-readline-perl-perl
Recommended packages:
- perl-doc
+ bzip2 libmudflap0-dev 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.2MB of archives.
-After unpacking 63.9MB of additional disk space will be used.
-Get:1 http://ring.asahi-net.or.jp etch/main binutils 2.16.1-2 [2378kB]
-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.2MB in 2s (9043kB/s)
+ binutils build-essential cpp cpp-4.0 dpkg-dev g++ g++-4.0 gcc gcc-4.0
+ gcc-4.0-base libc6-dev libstdc++6 libstdc++6-4.0-dev linux-kernel-headers
+ make patch perl perl-modules
+0 upgraded, 18 newly installed, 0 to remove and 0 not upgraded.
+Need to get 19.6MB of archives.
+After unpacking 69.3MB of additional disk space will be used.
+Get:1 http://ftp.jp.debian.org etch/main binutils 2.16.1-2 [2378kB]
+Get:2 http://ftp.jp.debian.org etch/main gcc-4.0-base 4.0.1-2 [174kB]
+Get:3 http://ftp.jp.debian.org etch/main cpp-4.0 4.0.1-2 [2038kB]
+Get:4 http://ftp.jp.debian.org etch/main cpp 4:4.0.1-3 [30.6kB]
+Get:5 http://ftp.jp.debian.org etch/main perl-modules 5.8.7-3 [2326kB]
+Get:6 http://ftp.jp.debian.org etch/main perl 5.8.7-3 [3371kB]
+Get:7 http://ftp.jp.debian.org etch/main patch 2.5.9-2 [96.4kB]
+Get:8 http://ftp.jp.debian.org etch/main make 3.80-9 [366kB]
+Get:9 http://ftp.jp.debian.org etch/main dpkg-dev 1.13.10 [163kB]
+Get:10 http://ftp.jp.debian.org etch/main gcc-4.0 4.0.1-2 [495kB]
+Get:11 http://ftp.jp.debian.org etch/main gcc 4:4.0.1-3 [4918B]
+Get:12 http://ftp.jp.debian.org etch/main libstdc++6 4.0.1-2 [353kB]
+Get:13 http://ftp.jp.debian.org etch/main linux-kernel-headers 2.5.999-test7-bk-17 [1377kB]
+Get:14 http://ftp.jp.debian.org etch/main libc6-dev 2.3.2.ds1-22 [2532kB]
+Get:15 http://ftp.jp.debian.org etch/main libstdc++6-4.0-dev 4.0.1-2 [1516kB]
+Get:16 http://ftp.jp.debian.org etch/main g++-4.0 4.0.1-2 [2321kB]
+Get:17 http://ftp.jp.debian.org etch/main g++ 4:4.0.1-3 [1384B]
+Get:18 http://ftp.jp.debian.org etch/main build-essential 11.1 [6834B]
+Fetched 19.6MB in 8s (2200kB/s)
Selecting previously deselected package binutils.
-(Reading database ... 7596 files and directories currently installed.)
+(Reading database ... 7623 files and directories currently installed.)
Unpacking binutils (from .../binutils_2.16.1-2_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 gcc-4.0-base.
+Unpacking gcc-4.0-base (from .../gcc-4.0-base_4.0.1-2_i386.deb) ...
+Selecting previously deselected package cpp-4.0.
+Unpacking cpp-4.0 (from .../cpp-4.0_4.0.1-2_i386.deb) ...
Selecting previously deselected package cpp.
-Unpacking cpp (from .../cpp_4%3a3.3.5-3_i386.deb) ...
+Unpacking cpp (from .../cpp_4%3a4.0.1-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.
@@ -615,46 +629,51 @@ 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) ...
+Unpacking dpkg-dev (from .../dpkg-dev_1.13.10_all.deb) ...
+Selecting previously deselected package gcc-4.0.
+Unpacking gcc-4.0 (from .../gcc-4.0_4.0.1-2_i386.deb) ...
Selecting previously deselected package gcc.
-Unpacking gcc (from .../gcc_4%3a3.3.5-3_i386.deb) ...
+Unpacking gcc (from .../gcc_4%3a4.0.1-3_i386.deb) ...
+Selecting previously deselected package libstdc++6.
+Unpacking libstdc++6 (from .../libstdc++6_4.0.1-2_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 libstdc++6-4.0-dev.
+Unpacking libstdc++6-4.0-dev (from .../libstdc++6-4.0-dev_4.0.1-2_i386.deb) ...
+Selecting previously deselected package g++-4.0.
+Unpacking g++-4.0 (from .../g++-4.0_4.0.1-2_i386.deb) ...
Selecting previously deselected package g++.
-Unpacking g++ (from .../g++_4%3a3.3.5-3_i386.deb) ...
+Unpacking g++ (from .../g++_4%3a4.0.1-3_i386.deb) ...
Selecting previously deselected package build-essential.
-Unpacking build-essential (from .../build-essential_10.1_i386.deb) ...
+Unpacking build-essential (from .../build-essential_11.1_i386.deb) ...
Setting up binutils (2.16.1-2) ...
-Setting up cpp-3.3 (3.3.5-13) ...
-Setting up cpp (3.3.5-3) ...
+Setting up gcc-4.0-base (4.0.1-2) ...
+Setting up cpp-4.0 (4.0.1-2) ...
+Setting up cpp (4.0.1-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 gcc-4.0 (4.0.1-2) ...
+Setting up gcc (4.0.1-3) ...
+
+Setting up libstdc++6 (4.0.1-2) ...
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 libstdc++6-4.0-dev (4.0.1-2) ...
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 dpkg-dev (1.13.10) ...
+Setting up g++-4.0 (4.0.1-2) ...
+Setting up g++ (4.0.1-3) ...
-Setting up build-essential (10.1) ...
+Setting up build-essential (11.1) ...
-> unmounting dev/pts filesystem
-> unmounting proc filesystem
- -> creating base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/testimage]
+ -> creating base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/testimage]
-> cleaning the build env
- -> removing directory /var/cache/pbuilder/build//12797 and its subdirectories
+ -> removing directory /var/cache/pbuilder/build//8018 and its subdirectories
diff --git a/testsuite/cdebootstrap/pbuilder-create-sarge.log b/testsuite/cdebootstrap/pbuilder-create-sarge.log
index 0809d56..c373331 100644
--- a/testsuite/cdebootstrap/pbuilder-create-sarge.log
+++ b/testsuite/cdebootstrap/pbuilder-create-sarge.log
@@ -552,9 +552,9 @@ 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 0s (3946kB/s)
+Get:1 http://ftp.jp.debian.org sarge/main Packages [3347kB]
+Get:2 http://ftp.jp.debian.org sarge/main Release [95B]
+Fetched 3347kB in 2s (1593kB/s)
Reading Package Lists...
dpkg - warning: ignoring request to remove lilo which isn't installed.
Reading Package Lists...
@@ -579,23 +579,23 @@ The following NEW packages will be installed:
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 1s (10.4MB/s)
+Get:1 http://ftp.jp.debian.org sarge/main binutils 2.15-6 [2221kB]
+Get:2 http://ftp.jp.debian.org sarge/main cpp-3.3 1:3.3.5-13 [1393kB]
+Get:3 http://ftp.jp.debian.org sarge/main cpp 4:3.3.5-3 [29.6kB]
+Get:4 http://ftp.jp.debian.org sarge/main perl-modules 5.8.4-8 [2178kB]
+Get:5 http://ftp.jp.debian.org sarge/main perl 5.8.4-8 [3238kB]
+Get:6 http://ftp.jp.debian.org sarge/main patch 2.5.9-2 [96.4kB]
+Get:7 http://ftp.jp.debian.org sarge/main make 3.80-9 [366kB]
+Get:8 http://ftp.jp.debian.org sarge/main dpkg-dev 1.10.28 [166kB]
+Get:9 http://ftp.jp.debian.org sarge/main gcc-3.3 1:3.3.5-13 [1570kB]
+Get:10 http://ftp.jp.debian.org sarge/main gcc 4:3.3.5-3 [4906B]
+Get:11 http://ftp.jp.debian.org sarge/main linux-kernel-headers 2.5.999-test7-bk-17 [1377kB]
+Get:12 http://ftp.jp.debian.org sarge/main libc6-dev 2.3.2.ds1-22 [2532kB]
+Get:13 http://ftp.jp.debian.org sarge/main libstdc++5-3.3-dev 1:3.3.5-13 [775kB]
+Get:14 http://ftp.jp.debian.org sarge/main g++-3.3 1:3.3.5-13 [1779kB]
+Get:15 http://ftp.jp.debian.org sarge/main g++ 4:3.3.5-3 [1398B]
+Get:16 http://ftp.jp.debian.org sarge/main build-essential 10.1 [6520B]
+Fetched 17.7MB in 9s (1903kB/s)
Selecting previously deselected package binutils.
(Reading database ... 7617 files and directories currently installed.)
Unpacking binutils (from .../binutils_2.15-6_i386.deb) ...
@@ -652,6 +652,6 @@ 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.YJi8Z9/testimage]
+ -> creating base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/testimage]
-> cleaning the build env
- -> removing directory /var/cache/pbuilder/build//10502 and its subdirectories
+ -> removing directory /var/cache/pbuilder/build//31692 and its subdirectories
diff --git a/testsuite/cdebootstrap/pbuilder-create-sid.log b/testsuite/cdebootstrap/pbuilder-create-sid.log
index bb60b04..fae400e 100644
--- a/testsuite/cdebootstrap/pbuilder-create-sid.log
+++ b/testsuite/cdebootstrap/pbuilder-create-sid.log
@@ -7,17 +7,14 @@ P: Parsing Release
P: Retrieving Packages.gz
P: Validating Packages
P: Parsing Packages
-W: resolver (libsigc++-1.2-5c102): package doesn't exist
-P: Retrieving libdb1-compat
-P: Validating libdb1-compat
P: Retrieving libc6
P: Validating libc6
P: Retrieving libgcc1
P: Validating libgcc1
-P: Retrieving gcc-3.3-base
-P: Validating gcc-3.3-base
-P: Retrieving libstdc++5
-P: Validating libstdc++5
+P: Retrieving gcc-4.0-base
+P: Validating gcc-4.0-base
+P: Retrieving libstdc++6
+P: Validating libstdc++6
P: Retrieving apt
P: Validating apt
P: Retrieving libdb4.2
@@ -68,6 +65,10 @@ P: Retrieving netbase
P: Validating netbase
P: Retrieving libncurses5
P: Validating libncurses5
+P: Retrieving gcc-3.3-base
+P: Validating gcc-3.3-base
+P: Retrieving libstdc++5
+P: Validating libstdc++5
P: Retrieving telnet
P: Validating telnet
P: Retrieving libssl0.9.7
@@ -174,6 +175,16 @@ P: Retrieving klogd
P: Validating klogd
P: Retrieving sysklogd
P: Validating sysklogd
+P: Retrieving libsigc++-1.2-5c2
+P: Validating libsigc++-1.2-5c2
+P: Retrieving aptitude
+P: Validating aptitude
+P: Retrieving dmidecode
+P: Validating dmidecode
+P: Retrieving laptop-detect
+P: Validating laptop-detect
+P: Retrieving tasksel
+P: Validating tasksel
P: Retrieving libconsole
P: Validating libconsole
P: Retrieving libblkid1
@@ -182,8 +193,6 @@ P: Retrieving libuuid1
P: Validating libuuid1
P: Retrieving mount
P: Validating mount
-P: Retrieving libslang1-utf8
-P: Validating libslang1-utf8
P: Retrieving util-linux
P: Validating util-linux
P: Retrieving e2fslibs
@@ -202,6 +211,10 @@ P: Retrieving sysvinit
P: Validating sysvinit
P: Retrieving console-data
P: Validating console-data
+P: Retrieving ncurses-bin
+P: Validating ncurses-bin
+P: Retrieving lsb-base
+P: Validating lsb-base
P: Retrieving console-common
P: Validating console-common
P: Retrieving console-tools
@@ -212,14 +225,14 @@ P: Retrieving base-config
P: Validating base-config
P: Retrieving exim4
P: Validating exim4
+P: Retrieving libselinux1
+P: Validating libselinux1
P: Retrieving logrotate
P: Validating logrotate
P: Retrieving pciutils
P: Validating pciutils
P: Retrieving setserial
P: Validating setserial
-P: Retrieving ncurses-bin
-P: Validating ncurses-bin
P: Retrieving hostname
P: Validating hostname
P: Retrieving grep
@@ -238,15 +251,14 @@ P: Retrieving diff
P: Validating diff
P: Retrieving base-files
P: Validating base-files
+P: Retrieving libdb1-compat
+P: Validating libdb1-compat
P: Retrieving bash
P: Validating bash
P: Retrieving findutils
P: Validating findutils
P: Extracting libc6
-P: Extracting libdb1-compat
P: Extracting libgcc1
-P: Extracting gcc-3.3-base
-P: Extracting libstdc++5
P: Extracting perl-base
P: Extracting liblocale-gettext-perl
P: Extracting libtext-iconv-perl
@@ -259,6 +271,8 @@ P: Extracting libacl1
P: Extracting coreutils
P: Extracting debianutils
P: Extracting libncurses5
+P: Extracting gcc-3.3-base
+P: Extracting libstdc++5
P: Extracting libpam-runtime
P: Extracting libpam0g
P: Extracting zlib1g
@@ -278,7 +292,6 @@ P: Extracting passwd
P: Extracting libblkid1
P: Extracting libuuid1
P: Extracting mount
-P: Extracting libslang1-utf8
P: Extracting util-linux
P: Extracting e2fslibs
P: Extracting libcomerr2
@@ -297,6 +310,7 @@ P: Extracting gzip
P: Extracting dselect
P: Extracting diff
P: Extracting base-files
+P: Extracting libdb1-compat
P: Extracting bash
P: Extracting findutils
P: Unpacking package base-passwd
@@ -304,10 +318,7 @@ P: Configuring package base-passwd
P: Unpacking package dpkg
P: Configuring package dpkg
P: Unpacking package libc6
-P: Unpacking package libdb1-compat
P: Unpacking package libgcc1
-P: Unpacking package gcc-3.3-base
-P: Unpacking package libstdc++5
P: Unpacking package perl-base
P: Unpacking package liblocale-gettext-perl
P: Unpacking package libtext-iconv-perl
@@ -320,6 +331,8 @@ P: Unpacking package libacl1
P: Unpacking package coreutils
P: Unpacking package debianutils
P: Unpacking package libncurses5
+P: Unpacking package gcc-3.3-base
+P: Unpacking package libstdc++5
P: Unpacking package libpam-runtime
P: Unpacking package libpam0g
P: Unpacking package zlib1g
@@ -337,7 +350,6 @@ P: Unpacking package passwd
P: Unpacking package libblkid1
P: Unpacking package libuuid1
P: Unpacking package mount
-P: Unpacking package libslang1-utf8
P: Unpacking package util-linux
P: Unpacking package e2fslibs
P: Unpacking package libcomerr2
@@ -356,13 +368,14 @@ P: Unpacking package gzip
P: Unpacking package dselect
P: Unpacking package diff
P: Unpacking package base-files
+P: Unpacking package libdb1-compat
P: Unpacking package bash
P: Unpacking package findutils
P: Configuring package makedev
P: Configuring package sysv-rc
P: Configuring package libpam-runtime
-P: Configuring package gcc-3.3-base
P: Configuring package libc6
+P: Configuring package gcc-3.3-base
P: Configuring package libcap1
P: Configuring package libdb1-compat
P: Configuring package libuuid1
@@ -373,7 +386,6 @@ P: Configuring package tar
P: Configuring package zlib1g
P: Configuring package libgcc1
P: Configuring package libtext-iconv-perl
-P: Configuring package libslang1-utf8
P: Configuring package libncurses5
P: Configuring package libattr1
P: Configuring package sed
@@ -391,6 +403,7 @@ P: Configuring package e2fsprogs
P: Configuring package liblocale-gettext-perl
P: Configuring package diff
P: Configuring package libdb3
+P: Configuring package util-linux
P: Configuring package libstdc++5
P: Configuring package libtext-charwidth-perl
P: Configuring package libtext-wrapi18n-perl
@@ -403,15 +416,276 @@ P: Configuring package libpam-modules
P: Configuring package base-files
P: Configuring package mount
P: Configuring package libnewt0.51
-P: Configuring package debconf-i18n
+P: Configuring package initscripts
P: Configuring package gzip
P: Configuring package dselect
-P: Configuring package debconf
P: Configuring package login
P: Configuring package passwd
+P: Configuring package sysvinit
P: Configuring package bash
-E: Couldn't install root!
-pbuilder: cdebootstrap failed
- -> Aborting with an error
+P: Configuring package debconf-i18n
+P: Configuring package debconf
+P: Configuring helper cdebootstrap-helper-apt
+P: Configuring helper cdebootstrap-helper-diverts
+P: Configuring helper cdebootstrap-helper-makedev
+P: Doing something important
+P: Unpacking package gcc-4.0-base
+P: Unpacking package libstdc++6
+P: Unpacking package apt
+P: Configuring package gcc-4.0-base
+P: Configuring package libstdc++6
+P: Configuring package apt
+P: Unpacking package console-data
+P: Unpacking package libconsole
+P: Unpacking package console-tools
+P: Unpacking package lsb-base
+P: Unpacking package console-common
+P: Unpacking package adduser
+P: Unpacking package libdb4.2
+P: Unpacking package apt-utils
+P: Unpacking package libsigc++-1.2-5c2
+P: Unpacking package aptitude
+P: Unpacking package gettext-base
+P: Unpacking package base-config
+P: Unpacking package bsdmainutils
+P: Unpacking package cpio
+P: Unpacking package cron
+P: Unpacking package dmidecode
+P: Unpacking package ed
+P: Unpacking package groff-base
+P: Unpacking package net-tools
+P: Unpacking package ifupdown
+P: Unpacking package info
+P: Unpacking package iptables
+P: Unpacking package iputils-ping
+P: Unpacking package sysklogd
+P: Unpacking package klogd
+P: Unpacking package laptop-detect
+P: Unpacking package libgpg-error0
+P: Unpacking package libgcrypt11
+P: Unpacking package libgdbm3
+P: Unpacking package liblzo1
+P: Unpacking package libopencdk8
+P: Unpacking package libtasn1-2
+P: Unpacking package libgnutls11
+P: Unpacking package libncursesw5
+P: Unpacking package libpcre3
+P: Unpacking package libpopt0
+P: Unpacking package libssl0.9.7
+P: Unpacking package libwrap0
+P: Unpacking package libselinux1
+P: Unpacking package logrotate
+P: Unpacking package man-db
+P: Unpacking package manpages
+P: Unpacking package nano
+P: Unpacking package netkit-inetd
+P: Unpacking package tcpd
+P: Unpacking package netbase
+P: Unpacking package nvi
+P: Unpacking package tasksel
+P: Unpacking package wget
+P: Unpacking package whiptail
+P: Unpacking package exim4-config
+P: Unpacking package exim4-base
+P: Unpacking package exim4-daemon-light
+P: Unpacking package at
+P: Unpacking package exim4
+P: Unpacking package telnet
+P: Unpacking package dhcp3-common
+P: Unpacking package dhcp3-client
+P: Unpacking package fdutils
+P: Unpacking package libpcap0.7
+P: Unpacking package pciutils
+P: Unpacking package ppp
+P: Unpacking package pppconfig
+P: Unpacking package pppoeconf
+P: Unpacking package psmisc
+P: Unpacking package setserial
+P: Configuring package libconsole
+P: Configuring package lsb-base
+P: Configuring package adduser
+P: Configuring package libdb4.2
+P: Configuring package apt-utils
+P: Configuring package libsigc++-1.2-5c2
+P: Configuring package aptitude
+P: Configuring package gettext-base
+P: Configuring package bsdmainutils
+P: Configuring package cpio
+P: Configuring package cron
+P: Configuring package dmidecode
+P: Configuring package ed
+P: Configuring package groff-base
+P: Configuring package net-tools
+P: Configuring package ifupdown
+P: Configuring package info
+P: Configuring package iptables
+P: Configuring package iputils-ping
+P: Configuring package laptop-detect
+P: Configuring package libgpg-error0
+P: Configuring package libgcrypt11
+P: Configuring package libgdbm3
+P: Configuring package liblzo1
+P: Configuring package libopencdk8
+P: Configuring package libtasn1-2
+P: Configuring package libgnutls11
+P: Configuring package libncursesw5
+P: Configuring package libpcre3
+P: Configuring package libpopt0
+P: Configuring package libssl0.9.7
+P: Configuring package libwrap0
+P: Configuring package libselinux1
+P: Configuring package logrotate
+P: Configuring package man-db
+P: Configuring package manpages
+P: Configuring package nano
+P: Configuring package netkit-inetd
+P: Configuring package tcpd
+P: Configuring package netbase
+P: Configuring package nvi
+P: Configuring package tasksel
+P: Configuring package wget
+P: Configuring package whiptail
+P: Configuring package exim4-config
+P: Configuring package exim4-base
+P: Configuring package exim4-daemon-light
+P: Configuring package at
+P: Configuring package exim4
+P: Configuring package telnet
+P: Configuring package dhcp3-common
+P: Configuring package dhcp3-client
+P: Configuring package fdutils
+P: Configuring package libpcap0.7
+P: Configuring package pciutils
+P: Configuring package ppp
+P: Configuring package pppconfig
+P: Configuring package pppoeconf
+P: Configuring package psmisc
+P: Configuring package setserial
+P: Configuring package klogd
+P: Configuring package sysklogd
+P: Configuring package console-common
+P: Configuring package console-data
+P: Configuring package console-tools
+P: Configuring package base-config
+P: Deconfiguring helper cdebootstrap-helper-apt
+P: Deconfiguring helper cdebootstrap-helper-diverts
+P: Deconfiguring helper cdebootstrap-helper-makedev
+ -> 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://ftp.jp.debian.org sid Release.gpg [189B]
+Get:2 http://ftp.jp.debian.org sid Release [34.1kB]
+Ign http://ftp.jp.debian.org sid Release
+Get:3 http://ftp.jp.debian.org sid/main Packages [3756kB]
+Fetched 3791kB in 2s (1535kB/s)
+Reading package lists...
+W: GPG error: http://ftp.jp.debian.org sid 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...
+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-4.0 g++ g++-4.0 gcc gcc-4.0 libc6-dev libstdc++6-4.0-dev
+ linux-kernel-headers make patch perl perl-modules
+Suggested packages:
+ binutils-doc cpp-doc gcc-4.0-locales gnupg debian-keyring gcc-4.0-doc
+ manpages-dev autoconf automake1.9 libtool flex bison gdb gcc-doc
+ amd64-libs-dev glibc-doc libstdc++6-4.0-doc stl-manual
+ libterm-readline-gnu-perl libterm-readline-perl-perl
+Recommended packages:
+ bzip2 libmudflap0-dev perl-doc
+The following NEW packages will be installed:
+ binutils build-essential cpp cpp-4.0 dpkg-dev g++ g++-4.0 gcc gcc-4.0
+ libc6-dev libstdc++6-4.0-dev linux-kernel-headers make patch perl
+ perl-modules
+0 upgraded, 16 newly installed, 0 to remove and 0 not upgraded.
+Need to get 19.4MB of archives.
+After unpacking 70.9MB of additional disk space will be used.
+WARNING: The following packages cannot be authenticated!
+ binutils cpp-4.0 cpp perl-modules perl patch make dpkg-dev gcc-4.0 gcc
+ linux-kernel-headers libc6-dev libstdc++6-4.0-dev g++-4.0 g++ build-essential
+Get:1 http://ftp.jp.debian.org sid/main binutils 2.16.1-2 [2378kB]
+Get:2 http://ftp.jp.debian.org sid/main cpp-4.0 4.0.1-4 [2041kB]
+Get:3 http://ftp.jp.debian.org sid/main cpp 4:4.0.1-3 [30.6kB]
+Get:4 http://ftp.jp.debian.org sid/main perl-modules 5.8.7-4 [2326kB]
+Get:5 http://ftp.jp.debian.org sid/main perl 5.8.7-4 [3378kB]
+Get:6 http://ftp.jp.debian.org sid/main patch 2.5.9-2 [96.4kB]
+Get:7 http://ftp.jp.debian.org sid/main make 3.80-11 [367kB]
+Get:8 http://ftp.jp.debian.org sid/main dpkg-dev 1.13.10 [163kB]
+Get:9 http://ftp.jp.debian.org sid/main gcc-4.0 4.0.1-4 [502kB]
+Get:10 http://ftp.jp.debian.org sid/main gcc 4:4.0.1-3 [4918B]
+Get:11 http://ftp.jp.debian.org sid/main linux-kernel-headers 2.6.13+0rc3-1.1 [1544kB]
+Get:12 http://ftp.jp.debian.org sid/main libc6-dev 2.3.5-3 [2678kB]
+Get:13 http://ftp.jp.debian.org sid/main libstdc++6-4.0-dev 4.0.1-4 [1517kB]
+Get:14 http://ftp.jp.debian.org sid/main g++-4.0 4.0.1-4 [2325kB]
+Get:15 http://ftp.jp.debian.org sid/main g++ 4:4.0.1-3 [1384B]
+Get:16 http://ftp.jp.debian.org sid/main build-essential 11.1 [6834B]
+Fetched 19.4MB in 13s (1484kB/s)
+Selecting previously deselected package binutils.
+(Reading database ... 7662 files and directories currently installed.)
+Unpacking binutils (from .../binutils_2.16.1-2_i386.deb) ...
+Selecting previously deselected package cpp-4.0.
+Unpacking cpp-4.0 (from .../cpp-4.0_4.0.1-4_i386.deb) ...
+Selecting previously deselected package cpp.
+Unpacking cpp (from .../cpp_4%3a4.0.1-3_i386.deb) ...
+Selecting previously deselected package perl-modules.
+Unpacking perl-modules (from .../perl-modules_5.8.7-4_all.deb) ...
+Selecting previously deselected package perl.
+Unpacking perl (from .../archives/perl_5.8.7-4_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-11_i386.deb) ...
+Selecting previously deselected package dpkg-dev.
+Unpacking dpkg-dev (from .../dpkg-dev_1.13.10_all.deb) ...
+Selecting previously deselected package gcc-4.0.
+Unpacking gcc-4.0 (from .../gcc-4.0_4.0.1-4_i386.deb) ...
+Selecting previously deselected package gcc.
+Unpacking gcc (from .../gcc_4%3a4.0.1-3_i386.deb) ...
+Selecting previously deselected package linux-kernel-headers.
+Unpacking linux-kernel-headers (from .../linux-kernel-headers_2.6.13+0rc3-1.1_i386.deb) ...
+Selecting previously deselected package libc6-dev.
+Unpacking libc6-dev (from .../libc6-dev_2.3.5-3_i386.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-4_i386.deb) ...
+Selecting previously deselected package g++-4.0.
+Unpacking g++-4.0 (from .../g++-4.0_4.0.1-4_i386.deb) ...
+Selecting previously deselected package g++.
+Unpacking g++ (from .../g++_4%3a4.0.1-3_i386.deb) ...
+Selecting previously deselected package build-essential.
+Unpacking build-essential (from .../build-essential_11.1_i386.deb) ...
+Setting up binutils (2.16.1-2) ...
+
+Setting up cpp-4.0 (4.0.1-4) ...
+Setting up cpp (4.0.1-3) ...
+Setting up patch (2.5.9-2) ...
+Setting up make (3.80-11) ...
+
+Setting up gcc-4.0 (4.0.1-4) ...
+Setting up gcc (4.0.1-3) ...
+
+Setting up linux-kernel-headers (2.6.13+0rc3-1.1) ...
+Setting up libc6-dev (2.3.5-3) ...
+Setting up perl-modules (5.8.7-4) ...
+Setting up libstdc++6-4.0-dev (4.0.1-4) ...
+Setting up perl (5.8.7-4) ...
+
+Setting up dpkg-dev (1.13.10) ...
+Setting up g++-4.0 (4.0.1-4) ...
+Setting up g++ (4.0.1-3) ...
+
+Setting up build-essential (11.1) ...
+ -> unmounting dev/pts filesystem
+ -> unmounting proc filesystem
+ -> creating base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/testimage]
-> cleaning the build env
- -> removing directory /var/cache/pbuilder/build//6914 and its subdirectories
+ -> removing directory /var/cache/pbuilder/build//31918 and its subdirectories
diff --git a/testsuite/cdebootstrap/pbuilder-execute-etch.log b/testsuite/cdebootstrap/pbuilder-execute-etch.log
index 5bcbbd4..5099944 100644
--- a/testsuite/cdebootstrap/pbuilder-execute-etch.log
+++ b/testsuite/cdebootstrap/pbuilder-execute-etch.log
@@ -1,5 +1,5 @@
Building the build Environment
- -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/testimage]
+ -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/testimage]
-> creating local configuration
-> copying local configuration
-> mounting /proc filesystem
@@ -10,4 +10,4 @@ Building the build Environment
-> unmounting dev/pts filesystem
-> unmounting proc filesystem
-> cleaning the build env
- -> removing directory /var/cache/pbuilder/build//13955 and its subdirectories
+ -> removing directory /var/cache/pbuilder/build//8944 and its subdirectories
diff --git a/testsuite/cdebootstrap/pbuilder-execute-sarge.log b/testsuite/cdebootstrap/pbuilder-execute-sarge.log
index c9dd742..ffa9297 100644
--- a/testsuite/cdebootstrap/pbuilder-execute-sarge.log
+++ b/testsuite/cdebootstrap/pbuilder-execute-sarge.log
@@ -1,5 +1,5 @@
Building the build Environment
- -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/testimage]
+ -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/testimage]
-> creating local configuration
-> copying local configuration
-> mounting /proc filesystem
@@ -10,4 +10,4 @@ Building the build Environment
-> unmounting dev/pts filesystem
-> unmounting proc filesystem
-> cleaning the build env
- -> removing directory /var/cache/pbuilder/build//12158 and its subdirectories
+ -> removing directory /var/cache/pbuilder/build//957 and its subdirectories
diff --git a/testsuite/cdebootstrap/pbuilder-execute-sid.log b/testsuite/cdebootstrap/pbuilder-execute-sid.log
index a771d21..e715d3c 100644
--- a/testsuite/cdebootstrap/pbuilder-execute-sid.log
+++ b/testsuite/cdebootstrap/pbuilder-execute-sid.log
@@ -1,7 +1,13 @@
Building the build Environment
- -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/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/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/testimage to /var/cache/pbuilder/build//10491
+ -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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//31576 and its subdirectories
diff --git a/testsuite/cdebootstrap/pbuilder-update-etch-sid-experimental.log b/testsuite/cdebootstrap/pbuilder-update-etch-sid-experimental.log
index 171a524..279507c 100644
--- a/testsuite/cdebootstrap/pbuilder-update-etch-sid-experimental.log
+++ b/testsuite/cdebootstrap/pbuilder-update-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.YJi8Z9/testimage]
+ -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/testimage]
-> creating local configuration
-> copying local configuration
-> mounting /proc filesystem
@@ -10,35 +10,65 @@ Building the build Environment
-> Installing apt-lines and pinning for experimental
Refreshing the base.tgz
-> upgrading packages
-Get:1 http://ring.asahi-net.or.jp sid/main Packages [3741kB]
-Get:2 http://ring.asahi-net.or.jp sid/main Release [82B]
-Get:3 http://ring.asahi-net.or.jp ../project/experimental/main Packages [154kB]
-Get:4 http://ring.asahi-net.or.jp ../project/experimental/main Release [104B]
-Fetched 3895kB in 1s (3061kB/s)
-Reading Package Lists...
+Get:1 http://ftp.jp.debian.org sid Release.gpg [189B]
+Get:2 http://ftp.jp.debian.org ../project/experimental Release.gpg [189B]
+Get:3 http://ftp.jp.debian.org sid Release [34.1kB]
+Ign http://ftp.jp.debian.org sid Release
+Get:4 http://ftp.jp.debian.org ../project/experimental Release [21.6kB]
+Ign http://ftp.jp.debian.org ../project/experimental Release
+Hit http://ftp.jp.debian.org sid/main Packages
+Get:5 http://ftp.jp.debian.org ../project/experimental/main Packages [163kB]
+Fetched 219kB in 0s (339kB/s)
+Reading package lists...
+W: GPG error: http://ftp.jp.debian.org sid Release: Could not execute /usr/bin/gpgv to verify signature (is gnupg installed?)
+W: GPG error: http://ftp.jp.debian.org ../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 packages will be REMOVED:
- aptitude tasksel
-The following NEW packages will be installed:
- cpp-4.0 dmidecode g++-4.0 gcc-4.0 gcc-4.0-base laptop-detect libncursesw5
- libstdc++6 libstdc++6-4.0-dev
+Reading package lists...
+Building dependency tree...
+The following packages have been kept back:
+ aptitude
The following packages will be upgraded:
- adduser apt apt-utils base-config base-files build-essential console-common
- cpp cpp-3.3 dhcp3-client dhcp3-common diff dpkg dpkg-dev dselect e2fslibs
- e2fsprogs fdutils g++ g++-3.3 gcc gcc-3.3 gcc-3.3-base gzip libacl1 libblkid1
- libc6 libc6-dev libcomerr2 libdb4.2 libgcc1 libgcrypt11 libgpg-error0
- libncurses5 libnewt0.51 libopencdk8 libpam-modules libpam-runtime libpam0g
- libslang2 libss2 libssl0.9.7 libstdc++5 libstdc++5-3.3-dev libtasn1-2
- libuuid1 linux-kernel-headers login makedev nano ncurses-base ncurses-bin
- netkit-inetd passwd perl perl-base perl-modules sed tar telnet whiptail
- zlib1g
-E: You don't have enough free space in /var/cache/apt/archives/.
-62 upgraded, 9 newly installed, 2 to remove and 0 not upgraded.
-Need to get 41.9MB of archives.
-After unpacking 19.0MB of additional disk space will be used.
+ diff login makedev passwd
+4 upgraded, 0 newly installed, 0 to remove and 1 not upgraded.
+Need to get 1336kB of archives.
+After unpacking 627kB of additional disk space will be used.
+WARNING: The following packages cannot be authenticated!
+ diff login passwd makedev
+Get:1 http://ftp.jp.debian.org ../project/experimental/main diff 2.8.7-0.2 [241kB]
+Get:2 http://ftp.jp.debian.org ../project/experimental/main login 1:4.0.11.1-1 [485kB]
+Get:3 http://ftp.jp.debian.org ../project/experimental/main passwd 1:4.0.11.1-1 [518kB]
+Get:4 http://ftp.jp.debian.org ../project/experimental/main makedev 3.3.8.2-0 [92.2kB]
+Preconfiguring packages ...
+Fetched 1336kB in 0s (2123kB/s)
+(Reading database ... 11472 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 ... 11480 files and directories currently installed.)
+Preparing to replace login 1:4.0.3-39 (using .../login_1%3a4.0.11.1-1_i386.deb) ...
+Unpacking replacement login ...
+Setting up login (4.0.11.1-1) ...
+Installing new version of config file /etc/pam.d/su ...
+Installing new version of config file /etc/login.defs ...
+
+(Reading database ... 11486 files and directories currently installed.)
+Preparing to replace passwd 1:4.0.3-39 (using .../passwd_1%3a4.0.11.1-1_i386.deb) ...
+Unpacking replacement passwd ...
+Setting up passwd (4.0.11.1-1) ...
+
+(Reading database ... 11499 files and directories currently installed.)
+Preparing to replace makedev 2.3.1-78 (using .../makedev_3.3.8.2-0_i386.deb) ...
+Unpacking replacement makedev ...
+Setting up makedev (3.3.8.2-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 1 not upgraded.
-> unmounting dev/pts filesystem
-> unmounting proc filesystem
+ -> creating base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/testimage]
-> cleaning the build env
- -> removing directory /var/cache/pbuilder/build//14185 and its subdirectories
+ -> removing directory /var/cache/pbuilder/build//10223 and its subdirectories
diff --git a/testsuite/cdebootstrap/pbuilder-update-etch-sid.log b/testsuite/cdebootstrap/pbuilder-update-etch-sid.log
index 18026e7..25e2ea6 100644
--- a/testsuite/cdebootstrap/pbuilder-update-etch-sid.log
+++ b/testsuite/cdebootstrap/pbuilder-update-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.YJi8Z9/testimage]
+ -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/testimage]
-> creating local configuration
-> copying local configuration
-> mounting /proc filesystem
@@ -9,30 +9,365 @@ Building the build Environment
-> Installing apt-lines
Refreshing the base.tgz
-> upgrading packages
-Get:1 http://ring.asahi-net.or.jp sid/main Packages [3741kB]
-Get:2 http://ring.asahi-net.or.jp sid/main Release [82B]
-Fetched 3741kB in 1s (2860kB/s)
+Get:1 http://ftp.jp.debian.org sid/main Packages [3756kB]
+Get:2 http://ftp.jp.debian.org sid/main Release [82B]
+Fetched 3757kB in 2s (1590kB/s)
Reading Package Lists...
dpkg - warning: ignoring request to remove lilo which isn't installed.
Reading Package Lists...
Building Dependency Tree...
+The following packages will be REMOVED:
+ libsigc++-1.2-5c102
The following NEW packages will be installed:
- cpp-4.0 dmidecode g++-4.0 gcc-4.0 gcc-4.0-base laptop-detect libncursesw5
- libstdc++6 libstdc++6-4.0-dev
+ libncursesw5 libselinux1 libsigc++-1.2-5c2 lsb-base
The following packages will be upgraded:
- adduser apt apt-utils aptitude base-config base-files build-essential
- console-common cpp cpp-3.3 dhcp3-client dhcp3-common dpkg dpkg-dev dselect
- e2fslibs e2fsprogs fdutils g++ g++-3.3 gcc gcc-3.3 gcc-3.3-base gzip libacl1
- libblkid1 libcomerr2 libdb4.2 libgcc1 libgcrypt11 libgpg-error0 libncurses5
- libnewt0.51 libopencdk8 libpam-modules libpam-runtime libpam0g libslang2
- libss2 libssl0.9.7 libstdc++5 libstdc++5-3.3-dev libtasn1-2 libuuid1
- linux-kernel-headers login nano ncurses-base ncurses-bin netkit-inetd passwd
- perl perl-base perl-modules sed tar tasksel telnet whiptail zlib1g
-E: You don't have enough free space in /var/cache/apt/archives/.
-60 upgraded, 9 newly installed, 0 to remove and 0 not upgraded.
-Need to get 35.1MB of archives.
-After unpacking 19.8MB of additional disk space will be used.
+ adduser apt apt-utils aptitude bsdutils console-common cpio cpp-4.0 debconf
+ debconf-i18n debianutils dhcp3-client dhcp3-common dmidecode e2fslibs
+ e2fsprogs g++-4.0 gcc-3.3-base gcc-4.0 gcc-4.0-base iptables libblkid1 libc6
+ libc6-dev libcomerr2 libdb1-compat libdb4.2 libgcc1 libnewt0.51
+ libpam-modules libpam-runtime libpam0g libslang2 libss2 libssl0.9.7
+ libstdc++5 libstdc++6 libstdc++6-4.0-dev libuuid1 linux-kernel-headers login
+ logrotate make mount nano passwd perl perl-base perl-modules sed tar tasksel
+ telnet util-linux whiptail zlib1g
+56 upgraded, 4 newly installed, 1 to remove and 0 not upgraded.
+Need to get 35.5MB of archives.
+After unpacking 2457kB of additional disk space will be used.
+Get:1 http://ftp.jp.debian.org sid/main linux-kernel-headers 2.6.13+0rc3-1.1 [1544kB]
+Get:2 http://ftp.jp.debian.org sid/main libc6-dev 2.3.5-3 [2678kB]
+Get:3 http://ftp.jp.debian.org sid/main libc6 2.3.5-3 [4927kB]
+Get:4 http://ftp.jp.debian.org sid/main libdb4.2 4.2.52-19 [388kB]
+Get:5 http://ftp.jp.debian.org sid/main libgcc1 1:4.0.1-4 [89.9kB]
+Get:6 http://ftp.jp.debian.org sid/main gcc-4.0-base 4.0.1-4 [175kB]
+Get:7 http://ftp.jp.debian.org sid/main libstdc++6 4.0.1-4 [352kB]
+Get:8 http://ftp.jp.debian.org sid/main apt-utils 0.6.40.1 [199kB]
+Get:9 http://ftp.jp.debian.org sid/main libsigc++-1.2-5c2 1.2.5-5 [21.7kB]
+Get:10 http://ftp.jp.debian.org sid/main aptitude 0.2.15.9-6 [1027kB]
+Get:11 http://ftp.jp.debian.org sid/main apt 0.6.40.1 [1226kB]
+Get:12 http://ftp.jp.debian.org sid/main bsdutils 1:2.12p-5 [66.3kB]
+Get:13 http://ftp.jp.debian.org sid/main debianutils 2.14.2 [56.5kB]
+Get:14 http://ftp.jp.debian.org sid/main e2fslibs 1.38-1.1 [78.5kB]
+Get:15 http://ftp.jp.debian.org sid/main e2fsprogs 1.38-1.1 [522kB]
+Get:16 http://ftp.jp.debian.org sid/main libpam-runtime 0.76-23 [59.1kB]
+Get:17 http://ftp.jp.debian.org sid/main libpam0g 0.76-23 [74.3kB]
+Get:18 http://ftp.jp.debian.org sid/main libpam-modules 0.76-23 [147kB]
+Get:19 http://ftp.jp.debian.org sid/main login 1:4.0.3-39 [579kB]
+Get:20 http://ftp.jp.debian.org sid/main mount 2.12p-5 [140kB]
+Get:21 http://ftp.jp.debian.org sid/main perl-modules 5.8.7-4 [2326kB]
+Get:22 http://ftp.jp.debian.org sid/main perl 5.8.7-4 [3378kB]
+Get:23 http://ftp.jp.debian.org sid/main perl-base 5.8.7-4 [781kB]
+Get:24 http://ftp.jp.debian.org sid/main sed 4.1.4-2 [242kB]
+Get:25 http://ftp.jp.debian.org sid/main tar 1.15.1-2 [756kB]
+Get:26 http://ftp.jp.debian.org sid/main util-linux 2.12p-5 [382kB]
+Get:27 http://ftp.jp.debian.org sid/main lsb-base 3.0-5 [9834B]
+Get:28 http://ftp.jp.debian.org sid/main console-common 0.7.53 [116kB]
+Get:29 http://ftp.jp.debian.org sid/main debconf-i18n 1.4.57 [109kB]
+Get:30 http://ftp.jp.debian.org sid/main debconf 1.4.57 [110kB]
+Get:31 http://ftp.jp.debian.org sid/main libslang2 2.0.4-4 [406kB]
+Get:32 http://ftp.jp.debian.org sid/main libblkid1 1.38-1.1 [42.2kB]
+Get:33 http://ftp.jp.debian.org sid/main libcomerr2 1.38-1.1 [27.3kB]
+Get:34 http://ftp.jp.debian.org sid/main libss2 1.38-1.1 [33.2kB]
+Get:35 http://ftp.jp.debian.org sid/main gcc-3.3-base 1:3.3.6-8 [150kB]
+Get:36 http://ftp.jp.debian.org sid/main libstdc++5 1:3.3.6-8 [295kB]
+Get:37 http://ftp.jp.debian.org sid/main libuuid1 1.38-1.1 [32.1kB]
+Get:38 http://ftp.jp.debian.org sid/main passwd 1:4.0.3-39 [514kB]
+Get:39 http://ftp.jp.debian.org sid/main zlib1g 1:1.2.3-3 [69.0kB]
+Get:40 http://ftp.jp.debian.org sid/main adduser 3.67 [110kB]
+Get:41 http://ftp.jp.debian.org sid/main cpio 2.6-3 [119kB]
+Get:42 http://ftp.jp.debian.org sid/main dmidecode 2.6-2 [47.4kB]
+Get:43 http://ftp.jp.debian.org sid/main iptables 1.3.3-2 [390kB]
+Get:44 http://ftp.jp.debian.org sid/main libncursesw5 5.4-9 [307kB]
+Get:45 http://ftp.jp.debian.org sid/main libssl0.9.7 0.9.7g-1 [2215kB]
+Get:46 http://ftp.jp.debian.org sid/main libselinux1 1.24-4 [46.5kB]
+Get:47 http://ftp.jp.debian.org sid/main logrotate 3.7.1-1 [34.1kB]
+Get:48 http://ftp.jp.debian.org sid/main nano 1.3.8-2 [403kB]
+Get:49 http://ftp.jp.debian.org sid/main tasksel 2.30 [151kB]
+Get:50 http://ftp.jp.debian.org sid/main whiptail 0.51.6-29 [32.5kB]
+Get:51 http://ftp.jp.debian.org sid/main libnewt0.51 0.51.6-29 [59.4kB]
+Get:52 http://ftp.jp.debian.org sid/main libdb1-compat 2.1.3-8 [33.0kB]
+Get:53 http://ftp.jp.debian.org sid/main make 3.80-11 [367kB]
+Get:54 http://ftp.jp.debian.org sid/main telnet 0.17-30 [64.3kB]
+Get:55 http://ftp.jp.debian.org sid/main gcc-4.0 4.0.1-4 [502kB]
+Get:56 http://ftp.jp.debian.org sid/main libstdc++6-4.0-dev 4.0.1-4 [1517kB]
+Get:57 http://ftp.jp.debian.org sid/main g++-4.0 4.0.1-4 [2325kB]
+Get:58 http://ftp.jp.debian.org sid/main cpp-4.0 4.0.1-4 [2041kB]
+Get:59 http://ftp.jp.debian.org sid/main dhcp3-client 3.0.2-3 [420kB]
+Get:60 http://ftp.jp.debian.org sid/main dhcp3-common 3.0.2-3 [176kB]
+Preconfiguring packages ...
+Fetched 35.5MB in 16s (2210kB/s)
+(Reading database ... 11328 files and directories currently installed.)
+Preparing to replace linux-kernel-headers 2.5.999-test7-bk-17 (using .../linux-kernel-headers_2.6.13+0rc3-1.1_i386.deb) ...
+Unpacking replacement linux-kernel-headers ...
+Preparing to replace libc6-dev 2.3.2.ds1-22 (using .../libc6-dev_2.3.5-3_i386.deb) ...
+Unpacking replacement libc6-dev ...
+Preparing to replace libc6 2.3.2.ds1-22 (using .../libc6_2.3.5-3_i386.deb) ...
+Unpacking replacement libc6 ...
+Setting up libc6 (2.3.5-3) ...
+Current default timezone: 'UTC'.
+Local time is now: Mon Aug 15 23:42:34 UTC 2005.
+Universal Time is now: Mon Aug 15 23:42:34 UTC 2005.
+Run 'tzconfig' if you wish to change it.
+
+(Reading database ... 11434 files and directories currently installed.)
+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.1-2 (using .../libgcc1_1%3a4.0.1-4_i386.deb) ...
+Unpacking replacement libgcc1 ...
+Setting up libgcc1 (4.0.1-4) ...
+
+(Reading database ... 11434 files and directories currently installed.)
+Preparing to replace gcc-4.0-base 4.0.1-2 (using .../gcc-4.0-base_4.0.1-4_i386.deb) ...
+Unpacking replacement gcc-4.0-base ...
+Preparing to replace libstdc++6 4.0.1-2 (using .../libstdc++6_4.0.1-4_i386.deb) ...
+Unpacking replacement libstdc++6 ...
+Setting up gcc-4.0-base (4.0.1-4) ...
+Setting up libstdc++6 (4.0.1-4) ...
+
+(Reading database ... 11434 files and directories currently installed.)
+Preparing to replace apt-utils 0.5.28.6 (using .../apt-utils_0.6.40.1_i386.deb) ...
+Unpacking replacement apt-utils ...
+dpkg: libsigc++-1.2-5c102: dependency problems, but removing anyway as you request:
+ aptitude depends on libsigc++-1.2-5c102; however:
+ Package libsigc++-1.2-5c102 is to be removed.
+(Reading database ... 11434 files and directories currently installed.)
+Removing libsigc++-1.2-5c102 ...
+Selecting previously deselected package libsigc++-1.2-5c2.
+(Reading database ... 11428 files and directories currently installed.)
+Unpacking libsigc++-1.2-5c2 (from .../libsigc++-1.2-5c2_1.2.5-5_i386.deb) ...
+Preparing to replace aptitude 0.2.15.9-2 (using .../aptitude_0.2.15.9-6_i386.deb) ...
+Unpacking replacement aptitude ...
+Preparing to replace apt 0.5.28.6 (using .../archives/apt_0.6.40.1_i386.deb) ...
+Unpacking replacement apt ...
+Setting up apt (0.6.40.1) ...
+
+(Reading database ... 11401 files and directories currently installed.)
+Preparing to replace bsdutils 1:2.12p-4 (using .../bsdutils_1%3a2.12p-5_i386.deb) ...
+Unpacking replacement bsdutils ...
+Setting up bsdutils (2.12p-5) ...
+
+(Reading database ... 11401 files and directories currently installed.)
+Preparing to replace debianutils 2.14.1 (using .../debianutils_2.14.2_i386.deb) ...
+Unpacking replacement debianutils ...
+Setting up debianutils (2.14.2) ...
+
+(Reading database ... 11410 files and directories currently installed.)
+Preparing to replace e2fslibs 1.37-2sarge1 (using .../e2fslibs_1.38-1.1_i386.deb) ...
+Unpacking replacement e2fslibs ...
+Setting up e2fslibs (1.38-1.1) ...
+
+(Reading database ... 11410 files and directories currently installed.)
+Preparing to replace e2fsprogs 1.37-2sarge1 (using .../e2fsprogs_1.38-1.1_i386.deb) ...
+Unpacking replacement e2fsprogs ...
+Setting up e2fsprogs (1.38-1.1) ...
+(Reading database ... 11412 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 ... 11412 files and directories currently installed.)
+Preparing to replace libpam0g 0.76-22 (using .../libpam0g_0.76-23_i386.deb) ...
+Unpacking replacement libpam0g ...
+Setting up libpam0g (0.76-23) ...
+
+(Reading database ... 11412 files and directories currently installed.)
+Preparing to replace libpam-modules 0.76-22 (using .../libpam-modules_0.76-23_i386.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 ... 11412 files and directories currently installed.)
+Preparing to replace login 1:4.0.3-35 (using .../login_1%3a4.0.3-39_i386.deb) ...
+Unpacking replacement login ...
+Setting up login (4.0.3-39) ...
+Installing new version of config file /etc/login.defs ...
+
+(Reading database ... 11411 files and directories currently installed.)
+Preparing to replace mount 2.12p-4 (using .../mount_2.12p-5_i386.deb) ...
+Unpacking replacement mount ...
+Setting up mount (2.12p-5) ...
+
+(Reading database ... 11411 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 perl 5.8.7-3 (using .../archives/perl_5.8.7-4_i386.deb) ...
+Unpacking replacement perl ...
+Preparing to replace perl-base 5.8.7-3 (using .../perl-base_5.8.7-4_i386.deb) ...
+Unpacking replacement perl-base ...
+Setting up perl-base (5.8.7-4) ...
+(Reading database ... 11426 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 ... 11427 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 ... 11431 files and directories currently installed.)
+Preparing to replace util-linux 2.12p-4 (using .../util-linux_2.12p-5_i386.deb) ...
+Unpacking replacement util-linux ...
+Setting up util-linux (2.12p-5) ...
+
+Selecting previously deselected package lsb-base.
+(Reading database ... 11431 files and directories currently installed.)
+Unpacking lsb-base (from .../lsb-base_3.0-5_all.deb) ...
+Preparing to replace console-common 0.7.52 (using .../console-common_0.7.53_all.deb) ...
+Unpacking replacement console-common ...
+Preparing to replace debconf-i18n 1.4.52 (using .../debconf-i18n_1.4.57_all.deb) ...
+Unpacking replacement debconf-i18n ...
+Preparing to replace debconf 1.4.52 (using .../debconf_1.4.57_all.deb) ...
+Unpacking replacement debconf ...
+Preparing to replace libslang2 2.0.4-2 (using .../libslang2_2.0.4-4_i386.deb) ...
+Unpacking replacement libslang2 ...
+Setting up libslang2 (2.0.4-4) ...
+
+(Reading database ... 11437 files and directories currently installed.)
+Preparing to replace libblkid1 1.37-2sarge1 (using .../libblkid1_1.38-1.1_i386.deb) ...
+Unpacking replacement libblkid1 ...
+Setting up libblkid1 (1.38-1.1) ...
+
+(Reading database ... 11437 files and directories currently installed.)
+Preparing to replace libcomerr2 1.37-2sarge1 (using .../libcomerr2_1.38-1.1_i386.deb) ...
+Unpacking replacement libcomerr2 ...
+Setting up libcomerr2 (1.38-1.1) ...
+
+(Reading database ... 11437 files and directories currently installed.)
+Preparing to replace libss2 1.37-2sarge1 (using .../libss2_1.38-1.1_i386.deb) ...
+Unpacking replacement libss2 ...
+Setting up libss2 (1.38-1.1) ...
+
+(Reading database ... 11437 files and directories currently installed.)
+Preparing to replace gcc-3.3-base 1:3.3.6-7 (using .../gcc-3.3-base_1%3a3.3.6-8_i386.deb) ...
+Unpacking replacement gcc-3.3-base ...
+Preparing to replace libstdc++5 1:3.3.6-7 (using .../libstdc++5_1%3a3.3.6-8_i386.deb) ...
+Unpacking replacement libstdc++5 ...
+Setting up gcc-3.3-base (3.3.6-8) ...
+Setting up libstdc++5 (3.3.6-8) ...
+
+(Reading database ... 11437 files and directories currently installed.)
+Preparing to replace libuuid1 1.37-2sarge1 (using .../libuuid1_1.38-1.1_i386.deb) ...
+Unpacking replacement libuuid1 ...
+Setting up libuuid1 (1.38-1.1) ...
+
+(Reading database ... 11437 files and directories currently installed.)
+Preparing to replace passwd 1:4.0.3-35 (using .../passwd_1%3a4.0.3-39_i386.deb) ...
+Unpacking replacement passwd ...
+Setting up passwd (4.0.3-39) ...
+
+(Reading database ... 11434 files and directories currently installed.)
+Preparing to replace zlib1g 1:1.2.2-4 (using .../zlib1g_1%3a1.2.3-3_i386.deb) ...
+Unpacking replacement zlib1g ...
+Setting up zlib1g (1.2.3-3) ...
+
+(Reading database ... 11434 files and directories currently installed.)
+Preparing to replace adduser 3.66 (using .../archives/adduser_3.67_all.deb) ...
+Unpacking replacement adduser ...
+Preparing to replace cpio 2.5-1.2 (using .../archives/cpio_2.6-3_i386.deb) ...
+Unpacking replacement cpio ...
+Preparing to replace dmidecode 2.6-1 (using .../dmidecode_2.6-2_i386.deb) ...
+Unpacking replacement dmidecode ...
+Preparing to replace iptables 1.3.1-2 (using .../iptables_1.3.3-2_i386.deb) ...
+Unpacking replacement iptables ...
+Selecting previously deselected package libncursesw5.
+Unpacking libncursesw5 (from .../libncursesw5_5.4-9_i386.deb) ...
+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 ...
+Selecting previously deselected package libselinux1.
+Unpacking libselinux1 (from .../libselinux1_1.24-4_i386.deb) ...
+Preparing to replace logrotate 3.7-5 (using .../logrotate_3.7.1-1_i386.deb) ...
+Unpacking replacement logrotate ...
+Preparing to replace nano 1.2.4-5 (using .../archives/nano_1.3.8-2_i386.deb) ...
+Unpacking replacement nano ...
+Preparing to replace tasksel 2.28 (using .../archives/tasksel_2.30_all.deb) ...
+Unpacking replacement tasksel ...
+Preparing to replace whiptail 0.51.6-26 (using .../whiptail_0.51.6-29_i386.deb) ...
+Unpacking replacement whiptail ...
+Preparing to replace libnewt0.51 0.51.6-26 (using .../libnewt0.51_0.51.6-29_i386.deb) ...
+Unpacking replacement libnewt0.51 ...
+Preparing to replace libdb1-compat 2.1.3-7 (using .../libdb1-compat_2.1.3-8_i386.deb) ...
+Unpacking replacement libdb1-compat ...
+Preparing to replace make 3.80-9 (using .../archives/make_3.80-11_i386.deb) ...
+Unpacking replacement make ...
+Preparing to replace telnet 0.17-29 (using .../telnet_0.17-30_i386.deb) ...
+Unpacking replacement telnet ...
+Preparing to replace gcc-4.0 4.0.1-2 (using .../gcc-4.0_4.0.1-4_i386.deb) ...
+Unpacking replacement gcc-4.0 ...
+Preparing to replace libstdc++6-4.0-dev 4.0.1-2 (using .../libstdc++6-4.0-dev_4.0.1-4_i386.deb) ...
+Unpacking replacement libstdc++6-4.0-dev ...
+Preparing to replace g++-4.0 4.0.1-2 (using .../g++-4.0_4.0.1-4_i386.deb) ...
+Unpacking replacement g++-4.0 ...
+Preparing to replace cpp-4.0 4.0.1-2 (using .../cpp-4.0_4.0.1-4_i386.deb) ...
+Unpacking replacement cpp-4.0 ...
+Preparing to replace dhcp3-client 3.0.1-2 (using .../dhcp3-client_3.0.2-3_i386.deb) ...
+Unpacking replacement dhcp3-client ...
+Preparing to replace dhcp3-common 3.0.1-2 (using .../dhcp3-common_3.0.2-3_i386.deb) ...
+Unpacking replacement dhcp3-common ...
+Setting up linux-kernel-headers (2.6.13+0rc3-1.1) ...
+Setting up libc6-dev (2.3.5-3) ...
+Setting up libdb4.2 (4.2.52-19) ...
+Setting up apt-utils (0.6.40.1) ...
+
+Setting up libsigc++-1.2-5c2 (1.2.5-5) ...
+
+Setting up aptitude (0.2.15.9-6) ...
+
+Setting up lsb-base (3.0-5) ...
+Setting up cpio (2.6-3) ...
+
+Setting up dmidecode (2.6-2) ...
+Setting up iptables (1.3.3-2) ...
+
+Setting up libncursesw5 (5.4-9) ...
+
+Setting up libselinux1 (1.24-4) ...
+
+Setting up logrotate (3.7.1-1) ...
+Setting up nano (1.3.8-2) ...
+Installing new version of config file /etc/nanorc ...
+
+Setting up libnewt0.51 (0.51.6-29) ...
+
+Setting up whiptail (0.51.6-29) ...
+Setting up libdb1-compat (2.1.3-8) ...
+
+Setting up make (3.80-11) ...
+
+Setting up telnet (0.17-30) ...
+
+Setting up cpp-4.0 (4.0.1-4) ...
+Setting up gcc-4.0 (4.0.1-4) ...
+Setting up perl-modules (5.8.7-4) ...
+Setting up debconf-i18n (1.4.57) ...
+Setting up libstdc++6-4.0-dev (4.0.1-4) ...
+Setting up perl (5.8.7-4) ...
+
+Setting up debconf (1.4.57) ...
+
+Setting up adduser (3.67) ...
+
+Setting up libssl0.9.7 (0.9.7g-1) ...
+
+Setting up tasksel (2.30) ...
+
+Setting up g++-4.0 (4.0.1-4) ...
+Setting up dhcp3-common (3.0.2-3) ...
+Setting up dhcp3-client (3.0.2-3) ...
+Installing new version of config file /etc/dhcp3/dhclient-script ...
+
+Setting up console-common (0.7.53) ...
+Installing new version of config file /etc/init.d/keymap.sh ...
+Looking for keymap to install:
+NONE
+
+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.ExPwZA/testimage]
-> cleaning the build env
- -> removing directory /var/cache/pbuilder/build//14059 and its subdirectories
+ -> removing directory /var/cache/pbuilder/build//9029 and its subdirectories
diff --git a/testsuite/cdebootstrap/pbuilder-update-sarge-etch-sid-experimental.log b/testsuite/cdebootstrap/pbuilder-update-sarge-etch-sid-experimental.log
index 78fd4b2..f4c58e0 100644
--- a/testsuite/cdebootstrap/pbuilder-update-sarge-etch-sid-experimental.log
+++ b/testsuite/cdebootstrap/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.YJi8Z9/testimage]
+ -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/testimage]
-> creating local configuration
-> copying local configuration
-> mounting /proc filesystem
@@ -10,39 +10,65 @@ Building the build Environment
-> Installing apt-lines and pinning for experimental
Refreshing the base.tgz
-> upgrading packages
-Get:1 http://ring.asahi-net.or.jp sid/main Packages [3741kB]
-Get:2 http://ring.asahi-net.or.jp sid/main Release [82B]
-Get:3 http://ring.asahi-net.or.jp ../project/experimental/main Packages [154kB]
-Get:4 http://ring.asahi-net.or.jp ../project/experimental/main Release [104B]
-Fetched 3895kB in 1s (2132kB/s)
-Reading Package Lists...
+Get:1 http://ftp.jp.debian.org sid Release.gpg [189B]
+Get:2 http://ftp.jp.debian.org ../project/experimental Release.gpg [189B]
+Get:3 http://ftp.jp.debian.org sid Release [34.1kB]
+Ign http://ftp.jp.debian.org sid Release
+Get:4 http://ftp.jp.debian.org ../project/experimental Release [21.6kB]
+Ign http://ftp.jp.debian.org ../project/experimental Release
+Hit http://ftp.jp.debian.org sid/main Packages
+Get:5 http://ftp.jp.debian.org ../project/experimental/main Packages [163kB]
+Fetched 219kB in 0s (360kB/s)
+Reading package lists...
+W: GPG error: http://ftp.jp.debian.org sid Release: Could not execute /usr/bin/gpgv to verify signature (is gnupg installed?)
+W: GPG error: http://ftp.jp.debian.org ../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 packages will be REMOVED:
- aptitude tasksel
-The following NEW packages will be installed:
- cpp-4.0 dmidecode g++-4.0 gcc-4.0 gcc-4.0-base laptop-detect libncursesw5
- libslang2 libstdc++6 libstdc++6-4.0-dev
+Reading package lists...
+Building dependency tree...
+The following packages have been kept back:
+ aptitude
The following packages will be upgraded:
- adduser apt apt-utils base-config base-files base-passwd bash binutils
- bsdmainutils build-essential console-common cpp cpp-3.3 cron debconf
- debconf-i18n debianutils dhcp3-client dhcp3-common diff dpkg dpkg-dev dselect
- e2fslibs e2fsprogs exim4 exim4-base exim4-config exim4-daemon-light fdutils
- findutils g++ g++-3.3 gcc gcc-3.3 gcc-3.3-base gettext-base grep groff-base
- gzip iptables libacl1 libattr1 libblkid1 libc6 libc6-dev libcomerr2 libdb4.2
- libgcc1 libgcrypt11 libgpg-error0 liblocale-gettext-perl liblzo1 libncurses5
- libnewt0.51 libopencdk8 libpam-modules libpam-runtime libpam0g libpcre3
- libss2 libssl0.9.7 libstdc++5 libstdc++5-3.3-dev libtasn1-2
- libtext-charwidth-perl libtext-iconv-perl libtext-wrapi18n-perl libuuid1
- linux-kernel-headers login makedev man-db manpages modutils nano ncurses-base
- ncurses-bin net-tools netkit-inetd passwd perl perl-base perl-modules procps
- psmisc sed setserial tar telnet wget whiptail zlib1g
-E: You don't have enough free space in /var/cache/apt/archives/.
-93 upgraded, 10 newly installed, 2 to remove and 0 not upgraded.
-Need to get 51.5MB of archives.
-After unpacking 22.6MB of additional disk space will be used.
+ diff login makedev passwd
+4 upgraded, 0 newly installed, 0 to remove and 1 not upgraded.
+Need to get 1336kB of archives.
+After unpacking 627kB of additional disk space will be used.
+WARNING: The following packages cannot be authenticated!
+ diff login passwd makedev
+Get:1 http://ftp.jp.debian.org ../project/experimental/main diff 2.8.7-0.2 [241kB]
+Get:2 http://ftp.jp.debian.org ../project/experimental/main login 1:4.0.11.1-1 [485kB]
+Get:3 http://ftp.jp.debian.org ../project/experimental/main passwd 1:4.0.11.1-1 [518kB]
+Get:4 http://ftp.jp.debian.org ../project/experimental/main makedev 3.3.8.2-0 [92.2kB]
+Preconfiguring packages ...
+Fetched 1336kB in 0s (1733kB/s)
+(Reading database ... 11872 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 ... 11880 files and directories currently installed.)
+Preparing to replace login 1:4.0.3-39 (using .../login_1%3a4.0.11.1-1_i386.deb) ...
+Unpacking replacement login ...
+Setting up login (4.0.11.1-1) ...
+Installing new version of config file /etc/pam.d/su ...
+Installing new version of config file /etc/login.defs ...
+
+(Reading database ... 11886 files and directories currently installed.)
+Preparing to replace passwd 1:4.0.3-39 (using .../passwd_1%3a4.0.11.1-1_i386.deb) ...
+Unpacking replacement passwd ...
+Setting up passwd (4.0.11.1-1) ...
+
+(Reading database ... 11899 files and directories currently installed.)
+Preparing to replace makedev 2.3.1-78 (using .../makedev_3.3.8.2-0_i386.deb) ...
+Unpacking replacement makedev ...
+Setting up makedev (3.3.8.2-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 1 not upgraded.
-> unmounting dev/pts filesystem
-> unmounting proc filesystem
+ -> creating base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/testimage]
-> cleaning the build env
- -> removing directory /var/cache/pbuilder/build//12699 and its subdirectories
+ -> removing directory /var/cache/pbuilder/build//7814 and its subdirectories
diff --git a/testsuite/cdebootstrap/pbuilder-update-sarge-etch-sid.log b/testsuite/cdebootstrap/pbuilder-update-sarge-etch-sid.log
index 802886d..08c3811 100644
--- a/testsuite/cdebootstrap/pbuilder-update-sarge-etch-sid.log
+++ b/testsuite/cdebootstrap/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.YJi8Z9/testimage]
+ -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/testimage]
-> creating local configuration
-> copying local configuration
-> mounting /proc filesystem
@@ -9,35 +9,396 @@ Building the build Environment
-> Installing apt-lines
Refreshing the base.tgz
-> upgrading packages
-Get:1 http://ring.asahi-net.or.jp sid/main Packages [3741kB]
-Get:2 http://ring.asahi-net.or.jp sid/main Release [82B]
-Fetched 3741kB in 1s (2008kB/s)
+Get:1 http://ftp.jp.debian.org sid/main Packages [3756kB]
+Get:2 http://ftp.jp.debian.org sid/main Release [82B]
+Fetched 3757kB in 3s (949kB/s)
Reading Package Lists...
dpkg - warning: ignoring request to remove lilo which isn't installed.
Reading Package Lists...
Building Dependency Tree...
+The following packages will be REMOVED:
+ libsigc++-1.2-5c102
The following NEW packages will be installed:
- cpp-4.0 dmidecode g++-4.0 gcc-4.0 gcc-4.0-base laptop-detect libncursesw5
- libslang2 libstdc++6 libstdc++6-4.0-dev
+ libncursesw5 libselinux1 libsigc++-1.2-5c2 lsb-base
The following packages will be upgraded:
- adduser apt apt-utils aptitude base-config base-files base-passwd bash
- binutils bsdmainutils build-essential console-common cpp cpp-3.3 cron debconf
- debconf-i18n debianutils dhcp3-client dhcp3-common dpkg dpkg-dev dselect
- e2fslibs e2fsprogs exim4 exim4-base exim4-config exim4-daemon-light fdutils
- findutils g++ g++-3.3 gcc gcc-3.3 gcc-3.3-base gettext-base grep groff-base
- gzip iptables libacl1 libattr1 libblkid1 libcomerr2 libdb4.2 libgcc1
- libgcrypt11 libgpg-error0 liblocale-gettext-perl liblzo1 libncurses5
- libnewt0.51 libopencdk8 libpam-modules libpam-runtime libpam0g libpcre3
- libss2 libssl0.9.7 libstdc++5 libstdc++5-3.3-dev libtasn1-2
- libtext-charwidth-perl libtext-iconv-perl libtext-wrapi18n-perl libuuid1
- linux-kernel-headers login makedev man-db manpages modutils nano ncurses-base
- ncurses-bin net-tools netkit-inetd passwd perl perl-base perl-modules procps
- psmisc sed setserial tar tasksel telnet wget whiptail zlib1g
-E: You don't have enough free space in /var/cache/apt/archives/.
-92 upgraded, 10 newly installed, 0 to remove and 0 not upgraded.
-Need to get 44.7MB of archives.
-After unpacking 23.4MB of additional disk space will be used.
+ adduser apt apt-utils aptitude bsdutils console-common cpio cpp-3.3 cpp-4.0
+ debconf debconf-i18n debianutils dhcp3-client dhcp3-common dmidecode e2fslibs
+ e2fsprogs g++-3.3 g++-4.0 gcc-3.3 gcc-3.3-base gcc-4.0 gcc-4.0-base iptables
+ libblkid1 libc6 libc6-dev libcomerr2 libdb1-compat libdb4.2 libgcc1
+ libnewt0.51 libpam-modules libpam-runtime libpam0g libslang2 libss2
+ libssl0.9.7 libstdc++5 libstdc++5-3.3-dev libstdc++6 libstdc++6-4.0-dev
+ libuuid1 linux-kernel-headers login logrotate make module-init-tools modutils
+ mount nano passwd perl perl-base perl-modules sed tar tasksel telnet
+ util-linux whiptail zlib1g
+62 upgraded, 4 newly installed, 1 to remove and 0 not upgraded.
+Need to get 41.3MB of archives.
+After unpacking 2465kB of additional disk space will be used.
+Get:1 http://ftp.jp.debian.org sid/main linux-kernel-headers 2.6.13+0rc3-1.1 [1544kB]
+Get:2 http://ftp.jp.debian.org sid/main libc6-dev 2.3.5-3 [2678kB]
+Get:3 http://ftp.jp.debian.org sid/main libc6 2.3.5-3 [4927kB]
+Get:4 http://ftp.jp.debian.org sid/main libdb4.2 4.2.52-19 [388kB]
+Get:5 http://ftp.jp.debian.org sid/main libgcc1 1:4.0.1-4 [89.9kB]
+Get:6 http://ftp.jp.debian.org sid/main gcc-4.0-base 4.0.1-4 [175kB]
+Get:7 http://ftp.jp.debian.org sid/main libstdc++6 4.0.1-4 [352kB]
+Get:8 http://ftp.jp.debian.org sid/main apt-utils 0.6.40.1 [199kB]
+Get:9 http://ftp.jp.debian.org sid/main libsigc++-1.2-5c2 1.2.5-5 [21.7kB]
+Get:10 http://ftp.jp.debian.org sid/main aptitude 0.2.15.9-6 [1027kB]
+Get:11 http://ftp.jp.debian.org sid/main apt 0.6.40.1 [1226kB]
+Get:12 http://ftp.jp.debian.org sid/main bsdutils 1:2.12p-5 [66.3kB]
+Get:13 http://ftp.jp.debian.org sid/main debianutils 2.14.2 [56.5kB]
+Get:14 http://ftp.jp.debian.org sid/main e2fslibs 1.38-1.1 [78.5kB]
+Get:15 http://ftp.jp.debian.org sid/main e2fsprogs 1.38-1.1 [522kB]
+Get:16 http://ftp.jp.debian.org sid/main libpam-runtime 0.76-23 [59.1kB]
+Get:17 http://ftp.jp.debian.org sid/main libpam0g 0.76-23 [74.3kB]
+Get:18 http://ftp.jp.debian.org sid/main libpam-modules 0.76-23 [147kB]
+Get:19 http://ftp.jp.debian.org sid/main login 1:4.0.3-39 [579kB]
+Get:20 http://ftp.jp.debian.org sid/main mount 2.12p-5 [140kB]
+Get:21 http://ftp.jp.debian.org sid/main perl-modules 5.8.7-4 [2326kB]
+Get:22 http://ftp.jp.debian.org sid/main perl 5.8.7-4 [3378kB]
+Get:23 http://ftp.jp.debian.org sid/main perl-base 5.8.7-4 [781kB]
+Get:24 http://ftp.jp.debian.org sid/main sed 4.1.4-2 [242kB]
+Get:25 http://ftp.jp.debian.org sid/main tar 1.15.1-2 [756kB]
+Get:26 http://ftp.jp.debian.org sid/main util-linux 2.12p-5 [382kB]
+Get:27 http://ftp.jp.debian.org sid/main lsb-base 3.0-5 [9834B]
+Get:28 http://ftp.jp.debian.org sid/main console-common 0.7.53 [116kB]
+Get:29 http://ftp.jp.debian.org sid/main debconf-i18n 1.4.57 [109kB]
+Get:30 http://ftp.jp.debian.org sid/main debconf 1.4.57 [110kB]
+Get:31 http://ftp.jp.debian.org sid/main libslang2 2.0.4-4 [406kB]
+Get:32 http://ftp.jp.debian.org sid/main libblkid1 1.38-1.1 [42.2kB]
+Get:33 http://ftp.jp.debian.org sid/main libcomerr2 1.38-1.1 [27.3kB]
+Get:34 http://ftp.jp.debian.org sid/main libss2 1.38-1.1 [33.2kB]
+Get:35 http://ftp.jp.debian.org sid/main gcc-3.3-base 1:3.3.6-8 [150kB]
+Get:36 http://ftp.jp.debian.org sid/main libstdc++5 1:3.3.6-8 [295kB]
+Get:37 http://ftp.jp.debian.org sid/main libuuid1 1.38-1.1 [32.1kB]
+Get:38 http://ftp.jp.debian.org sid/main passwd 1:4.0.3-39 [514kB]
+Get:39 http://ftp.jp.debian.org sid/main zlib1g 1:1.2.3-3 [69.0kB]
+Get:40 http://ftp.jp.debian.org sid/main adduser 3.67 [110kB]
+Get:41 http://ftp.jp.debian.org sid/main cpio 2.6-3 [119kB]
+Get:42 http://ftp.jp.debian.org sid/main dmidecode 2.6-2 [47.4kB]
+Get:43 http://ftp.jp.debian.org sid/main iptables 1.3.3-2 [390kB]
+Get:44 http://ftp.jp.debian.org sid/main libncursesw5 5.4-9 [307kB]
+Get:45 http://ftp.jp.debian.org sid/main libssl0.9.7 0.9.7g-1 [2215kB]
+Get:46 http://ftp.jp.debian.org sid/main libselinux1 1.24-4 [46.5kB]
+Get:47 http://ftp.jp.debian.org sid/main logrotate 3.7.1-1 [34.1kB]
+Get:48 http://ftp.jp.debian.org sid/main module-init-tools 3.2-pre8-1 [72.7kB]
+Get:49 http://ftp.jp.debian.org sid/main modutils 2.4.27.0-3 [235kB]
+Get:50 http://ftp.jp.debian.org sid/main nano 1.3.8-2 [403kB]
+Get:51 http://ftp.jp.debian.org sid/main tasksel 2.30 [151kB]
+Get:52 http://ftp.jp.debian.org sid/main whiptail 0.51.6-29 [32.5kB]
+Get:53 http://ftp.jp.debian.org sid/main libnewt0.51 0.51.6-29 [59.4kB]
+Get:54 http://ftp.jp.debian.org sid/main libdb1-compat 2.1.3-8 [33.0kB]
+Get:55 http://ftp.jp.debian.org sid/main cpp-3.3 1:3.3.6-8 [1385kB]
+Get:56 http://ftp.jp.debian.org sid/main gcc-3.3 1:3.3.6-8 [1553kB]
+Get:57 http://ftp.jp.debian.org sid/main libstdc++5-3.3-dev 1:3.3.6-8 [775kB]
+Get:58 http://ftp.jp.debian.org sid/main g++-3.3 1:3.3.6-8 [1772kB]
+Get:59 http://ftp.jp.debian.org sid/main make 3.80-11 [367kB]
+Get:60 http://ftp.jp.debian.org sid/main telnet 0.17-30 [64.3kB]
+Get:61 http://ftp.jp.debian.org sid/main gcc-4.0 4.0.1-4 [502kB]
+Get:62 http://ftp.jp.debian.org sid/main libstdc++6-4.0-dev 4.0.1-4 [1517kB]
+Get:63 http://ftp.jp.debian.org sid/main g++-4.0 4.0.1-4 [2325kB]
+Get:64 http://ftp.jp.debian.org sid/main cpp-4.0 4.0.1-4 [2041kB]
+Get:65 http://ftp.jp.debian.org sid/main dhcp3-client 3.0.2-3 [420kB]
+Get:66 http://ftp.jp.debian.org sid/main dhcp3-common 3.0.2-3 [176kB]
+Preconfiguring packages ...
+Fetched 41.3MB in 22s (1845kB/s)
+(Reading database ... 11722 files and directories currently installed.)
+Preparing to replace linux-kernel-headers 2.5.999-test7-bk-17 (using .../linux-kernel-headers_2.6.13+0rc3-1.1_i386.deb) ...
+Unpacking replacement linux-kernel-headers ...
+Preparing to replace libc6-dev 2.3.2.ds1-22 (using .../libc6-dev_2.3.5-3_i386.deb) ...
+Unpacking replacement libc6-dev ...
+Preparing to replace libc6 2.3.2.ds1-22 (using .../libc6_2.3.5-3_i386.deb) ...
+Unpacking replacement libc6 ...
+Setting up libc6 (2.3.5-3) ...
+Current default timezone: 'UTC'.
+Local time is now: Mon Aug 15 23:31:05 UTC 2005.
+Universal Time is now: Mon Aug 15 23:31:05 UTC 2005.
+Run 'tzconfig' if you wish to change it.
+
+(Reading database ... 11828 files and directories currently installed.)
+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.1-2 (using .../libgcc1_1%3a4.0.1-4_i386.deb) ...
+Unpacking replacement libgcc1 ...
+Setting up libgcc1 (4.0.1-4) ...
+
+(Reading database ... 11828 files and directories currently installed.)
+Preparing to replace gcc-4.0-base 4.0.1-2 (using .../gcc-4.0-base_4.0.1-4_i386.deb) ...
+Unpacking replacement gcc-4.0-base ...
+Preparing to replace libstdc++6 4.0.1-2 (using .../libstdc++6_4.0.1-4_i386.deb) ...
+Unpacking replacement libstdc++6 ...
+Setting up gcc-4.0-base (4.0.1-4) ...
+Setting up libstdc++6 (4.0.1-4) ...
+
+(Reading database ... 11828 files and directories currently installed.)
+Preparing to replace apt-utils 0.5.28.6 (using .../apt-utils_0.6.40.1_i386.deb) ...
+Unpacking replacement apt-utils ...
+dpkg: libsigc++-1.2-5c102: dependency problems, but removing anyway as you request:
+ aptitude depends on libsigc++-1.2-5c102; however:
+ Package libsigc++-1.2-5c102 is to be removed.
+(Reading database ... 11828 files and directories currently installed.)
+Removing libsigc++-1.2-5c102 ...
+Selecting previously deselected package libsigc++-1.2-5c2.
+(Reading database ... 11822 files and directories currently installed.)
+Unpacking libsigc++-1.2-5c2 (from .../libsigc++-1.2-5c2_1.2.5-5_i386.deb) ...
+Preparing to replace aptitude 0.2.15.9-2 (using .../aptitude_0.2.15.9-6_i386.deb) ...
+Unpacking replacement aptitude ...
+Preparing to replace apt 0.5.28.6 (using .../archives/apt_0.6.40.1_i386.deb) ...
+Unpacking replacement apt ...
+Setting up apt (0.6.40.1) ...
+
+(Reading database ... 11795 files and directories currently installed.)
+Preparing to replace bsdutils 1:2.12p-4 (using .../bsdutils_1%3a2.12p-5_i386.deb) ...
+Unpacking replacement bsdutils ...
+Setting up bsdutils (2.12p-5) ...
+
+(Reading database ... 11795 files and directories currently installed.)
+Preparing to replace debianutils 2.14.1 (using .../debianutils_2.14.2_i386.deb) ...
+Unpacking replacement debianutils ...
+Setting up debianutils (2.14.2) ...
+
+(Reading database ... 11804 files and directories currently installed.)
+Preparing to replace e2fslibs 1.37-2sarge1 (using .../e2fslibs_1.38-1.1_i386.deb) ...
+Unpacking replacement e2fslibs ...
+Setting up e2fslibs (1.38-1.1) ...
+
+(Reading database ... 11804 files and directories currently installed.)
+Preparing to replace e2fsprogs 1.37-2sarge1 (using .../e2fsprogs_1.38-1.1_i386.deb) ...
+Unpacking replacement e2fsprogs ...
+Setting up e2fsprogs (1.38-1.1) ...
+(Reading database ... 11806 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 ... 11806 files and directories currently installed.)
+Preparing to replace libpam0g 0.76-22 (using .../libpam0g_0.76-23_i386.deb) ...
+Unpacking replacement libpam0g ...
+Setting up libpam0g (0.76-23) ...
+
+(Reading database ... 11806 files and directories currently installed.)
+Preparing to replace libpam-modules 0.76-22 (using .../libpam-modules_0.76-23_i386.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 ... 11806 files and directories currently installed.)
+Preparing to replace login 1:4.0.3-35 (using .../login_1%3a4.0.3-39_i386.deb) ...
+Unpacking replacement login ...
+Setting up login (4.0.3-39) ...
+Installing new version of config file /etc/login.defs ...
+
+(Reading database ... 11805 files and directories currently installed.)
+Preparing to replace mount 2.12p-4 (using .../mount_2.12p-5_i386.deb) ...
+Unpacking replacement mount ...
+Setting up mount (2.12p-5) ...
+
+(Reading database ... 11805 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 perl 5.8.7-3 (using .../archives/perl_5.8.7-4_i386.deb) ...
+Unpacking replacement perl ...
+Preparing to replace perl-base 5.8.7-3 (using .../perl-base_5.8.7-4_i386.deb) ...
+Unpacking replacement perl-base ...
+Setting up perl-base (5.8.7-4) ...
+(Reading database ... 11820 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 ... 11821 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 ... 11825 files and directories currently installed.)
+Preparing to replace util-linux 2.12p-4 (using .../util-linux_2.12p-5_i386.deb) ...
+Unpacking replacement util-linux ...
+Setting up util-linux (2.12p-5) ...
+
+Selecting previously deselected package lsb-base.
+(Reading database ... 11825 files and directories currently installed.)
+Unpacking lsb-base (from .../lsb-base_3.0-5_all.deb) ...
+Preparing to replace console-common 0.7.52 (using .../console-common_0.7.53_all.deb) ...
+Unpacking replacement console-common ...
+Preparing to replace debconf-i18n 1.4.52 (using .../debconf-i18n_1.4.57_all.deb) ...
+Unpacking replacement debconf-i18n ...
+Preparing to replace debconf 1.4.52 (using .../debconf_1.4.57_all.deb) ...
+Unpacking replacement debconf ...
+Preparing to replace libslang2 2.0.4-2 (using .../libslang2_2.0.4-4_i386.deb) ...
+Unpacking replacement libslang2 ...
+Setting up libslang2 (2.0.4-4) ...
+
+(Reading database ... 11831 files and directories currently installed.)
+Preparing to replace libblkid1 1.37-2sarge1 (using .../libblkid1_1.38-1.1_i386.deb) ...
+Unpacking replacement libblkid1 ...
+Setting up libblkid1 (1.38-1.1) ...
+
+(Reading database ... 11831 files and directories currently installed.)
+Preparing to replace libcomerr2 1.37-2sarge1 (using .../libcomerr2_1.38-1.1_i386.deb) ...
+Unpacking replacement libcomerr2 ...
+Setting up libcomerr2 (1.38-1.1) ...
+
+(Reading database ... 11831 files and directories currently installed.)
+Preparing to replace libss2 1.37-2sarge1 (using .../libss2_1.38-1.1_i386.deb) ...
+Unpacking replacement libss2 ...
+Setting up libss2 (1.38-1.1) ...
+
+(Reading database ... 11831 files and directories currently installed.)
+Preparing to replace gcc-3.3-base 1:3.3.6-7 (using .../gcc-3.3-base_1%3a3.3.6-8_i386.deb) ...
+Unpacking replacement gcc-3.3-base ...
+Preparing to replace libstdc++5 1:3.3.6-7 (using .../libstdc++5_1%3a3.3.6-8_i386.deb) ...
+Unpacking replacement libstdc++5 ...
+Setting up gcc-3.3-base (3.3.6-8) ...
+Setting up libstdc++5 (3.3.6-8) ...
+
+(Reading database ... 11831 files and directories currently installed.)
+Preparing to replace libuuid1 1.37-2sarge1 (using .../libuuid1_1.38-1.1_i386.deb) ...
+Unpacking replacement libuuid1 ...
+Setting up libuuid1 (1.38-1.1) ...
+
+(Reading database ... 11831 files and directories currently installed.)
+Preparing to replace passwd 1:4.0.3-35 (using .../passwd_1%3a4.0.3-39_i386.deb) ...
+Unpacking replacement passwd ...
+Setting up passwd (4.0.3-39) ...
+
+(Reading database ... 11828 files and directories currently installed.)
+Preparing to replace zlib1g 1:1.2.2-4 (using .../zlib1g_1%3a1.2.3-3_i386.deb) ...
+Unpacking replacement zlib1g ...
+Setting up zlib1g (1.2.3-3) ...
+
+(Reading database ... 11828 files and directories currently installed.)
+Preparing to replace adduser 3.66 (using .../archives/adduser_3.67_all.deb) ...
+Unpacking replacement adduser ...
+Preparing to replace cpio 2.5-1.2 (using .../archives/cpio_2.6-3_i386.deb) ...
+Unpacking replacement cpio ...
+Preparing to replace dmidecode 2.6-1 (using .../dmidecode_2.6-2_i386.deb) ...
+Unpacking replacement dmidecode ...
+Preparing to replace iptables 1.3.1-2 (using .../iptables_1.3.3-2_i386.deb) ...
+Unpacking replacement iptables ...
+Selecting previously deselected package libncursesw5.
+Unpacking libncursesw5 (from .../libncursesw5_5.4-9_i386.deb) ...
+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 ...
+Selecting previously deselected package libselinux1.
+Unpacking libselinux1 (from .../libselinux1_1.24-4_i386.deb) ...
+Preparing to replace logrotate 3.7-5 (using .../logrotate_3.7.1-1_i386.deb) ...
+Unpacking replacement logrotate ...
+Preparing to replace module-init-tools 3.2-pre1-2 (using .../module-init-tools_3.2-pre8-1_i386.deb) ...
+Unpacking replacement module-init-tools ...
+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.8-2_i386.deb) ...
+Unpacking replacement nano ...
+Preparing to replace tasksel 2.28 (using .../archives/tasksel_2.30_all.deb) ...
+Unpacking replacement tasksel ...
+Preparing to replace whiptail 0.51.6-26 (using .../whiptail_0.51.6-29_i386.deb) ...
+Unpacking replacement whiptail ...
+Preparing to replace libnewt0.51 0.51.6-26 (using .../libnewt0.51_0.51.6-29_i386.deb) ...
+Unpacking replacement libnewt0.51 ...
+Preparing to replace libdb1-compat 2.1.3-7 (using .../libdb1-compat_2.1.3-8_i386.deb) ...
+Unpacking replacement libdb1-compat ...
+Preparing to replace cpp-3.3 1:3.3.6-7 (using .../cpp-3.3_1%3a3.3.6-8_i386.deb) ...
+Unpacking replacement cpp-3.3 ...
+Preparing to replace gcc-3.3 1:3.3.6-7 (using .../gcc-3.3_1%3a3.3.6-8_i386.deb) ...
+Unpacking replacement gcc-3.3 ...
+Preparing to replace libstdc++5-3.3-dev 1:3.3.6-7 (using .../libstdc++5-3.3-dev_1%3a3.3.6-8_i386.deb) ...
+Unpacking replacement libstdc++5-3.3-dev ...
+Preparing to replace g++-3.3 1:3.3.6-7 (using .../g++-3.3_1%3a3.3.6-8_i386.deb) ...
+Unpacking replacement g++-3.3 ...
+Preparing to replace make 3.80-9 (using .../archives/make_3.80-11_i386.deb) ...
+Unpacking replacement make ...
+Preparing to replace telnet 0.17-29 (using .../telnet_0.17-30_i386.deb) ...
+Unpacking replacement telnet ...
+Preparing to replace gcc-4.0 4.0.1-2 (using .../gcc-4.0_4.0.1-4_i386.deb) ...
+Unpacking replacement gcc-4.0 ...
+Preparing to replace libstdc++6-4.0-dev 4.0.1-2 (using .../libstdc++6-4.0-dev_4.0.1-4_i386.deb) ...
+Unpacking replacement libstdc++6-4.0-dev ...
+Preparing to replace g++-4.0 4.0.1-2 (using .../g++-4.0_4.0.1-4_i386.deb) ...
+Unpacking replacement g++-4.0 ...
+Preparing to replace cpp-4.0 4.0.1-2 (using .../cpp-4.0_4.0.1-4_i386.deb) ...
+Unpacking replacement cpp-4.0 ...
+Preparing to replace dhcp3-client 3.0.1-2 (using .../dhcp3-client_3.0.2-3_i386.deb) ...
+Unpacking replacement dhcp3-client ...
+Preparing to replace dhcp3-common 3.0.1-2 (using .../dhcp3-common_3.0.2-3_i386.deb) ...
+Unpacking replacement dhcp3-common ...
+Setting up linux-kernel-headers (2.6.13+0rc3-1.1) ...
+Setting up libc6-dev (2.3.5-3) ...
+Setting up libdb4.2 (4.2.52-19) ...
+Setting up apt-utils (0.6.40.1) ...
+
+Setting up libsigc++-1.2-5c2 (1.2.5-5) ...
+
+Setting up aptitude (0.2.15.9-6) ...
+
+Setting up lsb-base (3.0-5) ...
+Setting up cpio (2.6-3) ...
+
+Setting up dmidecode (2.6-2) ...
+Setting up iptables (1.3.3-2) ...
+
+Setting up libncursesw5 (5.4-9) ...
+
+Setting up libselinux1 (1.24-4) ...
+
+Setting up logrotate (3.7.1-1) ...
+Setting up module-init-tools (3.2-pre8-1) ...
+Installing new version of config file /etc/init.d/module-init-tools ...
+
+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.8-2) ...
+Installing new version of config file /etc/nanorc ...
+
+Setting up libnewt0.51 (0.51.6-29) ...
+
+Setting up whiptail (0.51.6-29) ...
+Setting up libdb1-compat (2.1.3-8) ...
+
+Setting up cpp-3.3 (3.3.6-8) ...
+Setting up gcc-3.3 (3.3.6-8) ...
+Setting up make (3.80-11) ...
+
+Setting up telnet (0.17-30) ...
+
+Setting up cpp-4.0 (4.0.1-4) ...
+Setting up gcc-4.0 (4.0.1-4) ...
+Setting up perl-modules (5.8.7-4) ...
+Setting up debconf-i18n (1.4.57) ...
+Setting up libstdc++5-3.3-dev (3.3.6-8) ...
+Setting up libstdc++6-4.0-dev (4.0.1-4) ...
+Setting up perl (5.8.7-4) ...
+
+Setting up debconf (1.4.57) ...
+
+Setting up adduser (3.67) ...
+
+Setting up libssl0.9.7 (0.9.7g-1) ...
+
+Setting up tasksel (2.30) ...
+
+Setting up g++-3.3 (3.3.6-8) ...
+Setting up g++-4.0 (4.0.1-4) ...
+Setting up dhcp3-common (3.0.2-3) ...
+Setting up dhcp3-client (3.0.2-3) ...
+Installing new version of config file /etc/dhcp3/dhclient-script ...
+
+Setting up console-common (0.7.53) ...
+Installing new version of config file /etc/init.d/keymap.sh ...
+Looking for keymap to install:
+NONE
+
+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.ExPwZA/testimage]
-> cleaning the build env
- -> removing directory /var/cache/pbuilder/build//12604 and its subdirectories
+ -> removing directory /var/cache/pbuilder/build//4876 and its subdirectories
diff --git a/testsuite/cdebootstrap/pbuilder-update-sarge-etch.log b/testsuite/cdebootstrap/pbuilder-update-sarge-etch.log
index 810815c..11e472c 100644
--- a/testsuite/cdebootstrap/pbuilder-update-sarge-etch.log
+++ b/testsuite/cdebootstrap/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.YJi8Z9/testimage]
+ -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/testimage]
-> creating local configuration
-> copying local configuration
-> mounting /proc filesystem
@@ -9,90 +9,126 @@ Building the build Environment
-> Installing apt-lines
Refreshing the base.tgz
-> upgrading packages
-Get:1 http://ring.asahi-net.or.jp etch/main Packages [3544kB]
-Get:2 http://ring.asahi-net.or.jp etch/main Release [81B]
-Fetched 3544kB in 1s (2409kB/s)
+Get:1 http://ftp.jp.debian.org etch/main Packages [3489kB]
+Get:2 http://ftp.jp.debian.org etch/main Release [81B]
+Fetched 3489kB in 2s (1248kB/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
+ cpp-4.0 dmidecode g++-4.0 gcc-4.0 gcc-4.0-base laptop-detect libslang2
+ libstdc++6 libstdc++6-4.0-dev
The following packages will be upgraded:
- adduser base-config base-files base-passwd bash binutils bsdmainutils
- console-common cron debconf debconf-i18n debianutils exim4 exim4-base
- exim4-config exim4-daemon-light findutils gettext-base grep groff-base
- iptables libattr1 libgcc1 liblocale-gettext-perl liblzo1 libnewt0.51 libpcre3
- libtasn1-2 libtext-charwidth-perl libtext-iconv-perl libtext-wrapi18n-perl
- login makedev man-db manpages net-tools netkit-inetd passwd perl perl-base
- perl-modules procps psmisc setserial tasksel wget whiptail
-47 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
-Need to get 18.3MB of archives.
-After unpacking 3481kB of additional disk space will be used.
-Get:1 http://ring.asahi-net.or.jp etch/main base-passwd 3.5.10 [34.7kB]
-Get:2 http://ring.asahi-net.or.jp etch/main base-files 3.1.5 [34.5kB]
-Get:3 http://ring.asahi-net.or.jp etch/main libpcre3 5.0-1.1 [159kB]
-Get:4 http://ring.asahi-net.or.jp etch/main exim4-daemon-light 4.52-1 [379kB]
-Get:5 http://ring.asahi-net.or.jp etch/main debianutils 2.14.1 [43.4kB]
-Get:6 http://ring.asahi-net.or.jp etch/main perl-modules 5.8.7-3 [2326kB]
-Get:7 http://ring.asahi-net.or.jp etch/main perl 5.8.7-3 [3371kB]
-Get:8 http://ring.asahi-net.or.jp etch/main perl-base 5.8.7-3 [749kB]
-Get:9 http://ring.asahi-net.or.jp etch/main liblocale-gettext-perl 1.05-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.52 [109kB]
-Get:14 http://ring.asahi-net.or.jp etch/main debconf 1.4.52 [109kB]
-Get:15 http://ring.asahi-net.or.jp etch/main adduser 3.64 [99.8kB]
-Get:16 http://ring.asahi-net.or.jp etch/main cron 3.0pl1-87 [58.8kB]
-Get:17 http://ring.asahi-net.or.jp etch/main exim4-config 4.52-1 [247kB]
-Get:18 http://ring.asahi-net.or.jp etch/main exim4-base 4.52-1 [834kB]
-Get:19 http://ring.asahi-net.or.jp etch/main login 1:4.0.3-35 [591kB]
-Get:20 http://ring.asahi-net.or.jp etch/main passwd 1:4.0.3-35 [533kB]
-Get:21 http://ring.asahi-net.or.jp etch/main bash 3.0-15 [793kB]
-Get:22 http://ring.asahi-net.or.jp etch/main findutils 4.2.22-2 [301kB]
-Get:23 http://ring.asahi-net.or.jp etch/main grep 2.5.1.ds1-5 [170kB]
-Get:24 http://ring.asahi-net.or.jp etch/main console-common 0.7.51 [108kB]
-Get:25 http://ring.asahi-net.or.jp etch/main libgcc1 1:4.0.0-9 [84.1kB]
-Get:26 http://ring.asahi-net.or.jp etch/main tasksel 2.25 [137kB]
-Get:27 http://ring.asahi-net.or.jp etch/main gettext-base 0.14.5-2 [101kB]
-Get:28 http://ring.asahi-net.or.jp etch/main base-config 2.65 [324kB]
-Get:29 http://ring.asahi-net.or.jp etch/main bsdmainutils 6.1.2 [170kB]
-Get:30 http://ring.asahi-net.or.jp etch/main groff-base 1.18.1.1-8 [832kB]
-Get:31 http://ring.asahi-net.or.jp etch/main iptables 1.3.1-2 [397kB]
-Get:32 http://ring.asahi-net.or.jp etch/main liblzo1 1.08-2 [48.4kB]
-Get:33 http://ring.asahi-net.or.jp etch/main libslang2 2.0.4-2 [408kB]
-Get:34 http://ring.asahi-net.or.jp etch/main libtasn1-2 0.2.10-4 [42.5kB]
-Get:35 http://ring.asahi-net.or.jp etch/main man-db 2.4.3-1 [658kB]
-Get:36 http://ring.asahi-net.or.jp etch/main manpages 2.02-2 [392kB]
-Get:37 http://ring.asahi-net.or.jp etch/main net-tools 1.60-15 [248kB]
-Get:38 http://ring.asahi-net.or.jp etch/main netkit-inetd 0.10-10.1 [30.9kB]
-Get:39 http://ring.asahi-net.or.jp etch/main wget 1.10-3+1.10.1beta1 [451kB]
-Get:40 http://ring.asahi-net.or.jp etch/main whiptail 0.51.6-26 [32.5kB]
-Get:41 http://ring.asahi-net.or.jp etch/main libnewt0.51 0.51.6-26 [57.8kB]
-Get:42 http://ring.asahi-net.or.jp etch/main libattr1 2.4.21-1.0.1 [7854B]
-Get:43 http://ring.asahi-net.or.jp etch/main makedev 2.3.1-78 [40.9kB]
-Get:44 http://ring.asahi-net.or.jp etch/main procps 1:3.2.5-1 [215kB]
-Get:45 http://ring.asahi-net.or.jp etch/main binutils 2.16.1-2 [2378kB]
-Get:46 http://ring.asahi-net.or.jp etch/main exim4 4.52-1 [1834B]
-Get:47 http://ring.asahi-net.or.jp etch/main psmisc 21.6-1 [58.9kB]
-Get:48 http://ring.asahi-net.or.jp etch/main setserial 2.17-41 [54.7kB]
+ adduser at base-config base-files base-passwd bash binutils bsdmainutils
+ build-essential console-common cpp cpp-3.3 cron debconf debconf-i18n
+ debianutils dpkg dpkg-dev dselect exim4 exim4-base exim4-config
+ exim4-daemon-light fdutils findutils g++ g++-3.3 gcc gcc-3.3 gcc-3.3-base
+ gettext-base grep groff-base gzip iptables libacl1 libattr1 libgcc1
+ libgcrypt11 libgpg-error0 liblocale-gettext-perl liblzo1 libncurses5
+ libnewt0.51 libopencdk8 libpcre3 libstdc++5 libstdc++5-3.3-dev libtasn1-2
+ libtext-charwidth-perl libtext-iconv-perl libtext-wrapi18n-perl login makedev
+ man-db manpages ncurses-base ncurses-bin net-tools netkit-inetd passwd perl
+ perl-base perl-modules procps psmisc setserial tasksel wget whiptail
+70 upgraded, 9 newly installed, 0 to remove and 0 not upgraded.
+Need to get 34.7MB of archives.
+After unpacking 24.5MB of additional disk space will be used.
+Get:1 http://ftp.jp.debian.org etch/main base-passwd 3.5.10 [34.7kB]
+Get:2 http://ftp.jp.debian.org etch/main base-files 3.1.6 [34.6kB]
+Get:3 http://ftp.jp.debian.org etch/main libpcre3 5.0-1.1 [159kB]
+Get:4 http://ftp.jp.debian.org etch/main exim4-daemon-light 4.52-1 [379kB]
+Get:5 http://ftp.jp.debian.org etch/main debianutils 2.14.1 [43.4kB]
+Get:6 http://ftp.jp.debian.org etch/main perl-modules 5.8.7-3 [2326kB]
+Get:7 http://ftp.jp.debian.org etch/main perl 5.8.7-3 [3371kB]
+Get:8 http://ftp.jp.debian.org etch/main perl-base 5.8.7-3 [749kB]
+Get:9 http://ftp.jp.debian.org etch/main liblocale-gettext-perl 1.05-1 [19.9kB]
+Get:10 http://ftp.jp.debian.org etch/main libtext-iconv-perl 1.4-1 [14.9kB]
+Get:11 http://ftp.jp.debian.org etch/main libtext-charwidth-perl 0.04-2 [11.3kB]
+Get:12 http://ftp.jp.debian.org etch/main libtext-wrapi18n-perl 0.06-2 [8528B]
+Get:13 http://ftp.jp.debian.org etch/main debconf-i18n 1.4.52 [109kB]
+Get:14 http://ftp.jp.debian.org etch/main debconf 1.4.52 [109kB]
+Get:15 http://ftp.jp.debian.org etch/main adduser 3.66 [100kB]
+Get:16 http://ftp.jp.debian.org etch/main cron 3.0pl1-87 [58.8kB]
+Get:17 http://ftp.jp.debian.org etch/main exim4-config 4.52-1 [247kB]
+Get:18 http://ftp.jp.debian.org etch/main exim4-base 4.52-1 [834kB]
+Get:19 http://ftp.jp.debian.org etch/main login 1:4.0.3-35 [591kB]
+Get:20 http://ftp.jp.debian.org etch/main passwd 1:4.0.3-35 [533kB]
+Get:21 http://ftp.jp.debian.org etch/main bash 3.0-15 [793kB]
+Get:22 http://ftp.jp.debian.org etch/main dpkg 1.13.10 [1811kB]
+Get:23 http://ftp.jp.debian.org etch/main findutils 4.2.24-1 [373kB]
+Get:24 http://ftp.jp.debian.org etch/main grep 2.5.1.ds1-5 [170kB]
+Get:25 http://ftp.jp.debian.org etch/main gzip 1.3.5-12 [71.1kB]
+Get:26 http://ftp.jp.debian.org etch/main libncurses5 5.4-9 [290kB]
+Get:27 http://ftp.jp.debian.org etch/main ncurses-bin 5.4-9 [208kB]
+Get:28 http://ftp.jp.debian.org etch/main ncurses-base 5.4-9 [12.8kB]
+Get:29 http://ftp.jp.debian.org etch/main console-common 0.7.52 [116kB]
+Get:30 http://ftp.jp.debian.org etch/main libgcc1 1:4.0.1-2 [89.4kB]
+Get:31 http://ftp.jp.debian.org etch/main binutils 2.16.1-2 [2378kB]
+Get:32 http://ftp.jp.debian.org etch/main libstdc++5-3.3-dev 1:3.3.6-7 [775kB]
+Get:33 http://ftp.jp.debian.org etch/main g++-3.3 1:3.3.6-7 [1779kB]
+Get:34 http://ftp.jp.debian.org etch/main gcc-3.3 1:3.3.6-7 [1556kB]
+Get:35 http://ftp.jp.debian.org etch/main cpp-3.3 1:3.3.6-7 [1393kB]
+Get:36 http://ftp.jp.debian.org etch/main gcc-3.3-base 1:3.3.6-7 [150kB]
+Get:37 http://ftp.jp.debian.org etch/main libstdc++5 1:3.3.6-7 [295kB]
+Get:38 http://ftp.jp.debian.org etch/main dselect 1.13.10 [121kB]
+Get:39 http://ftp.jp.debian.org etch/main libattr1 2.4.21-1.0.1 [7854B]
+Get:40 http://ftp.jp.debian.org etch/main libacl1 2.2.29-1.0.1 [13.6kB]
+Get:41 http://ftp.jp.debian.org etch/main dmidecode 2.6-1 [44.8kB]
+Get:42 http://ftp.jp.debian.org etch/main laptop-detect 0.12.1 [2512B]
+Get:43 http://ftp.jp.debian.org etch/main tasksel 2.28 [154kB]
+Get:44 http://ftp.jp.debian.org etch/main gettext-base 0.14.5-2 [101kB]
+Get:45 http://ftp.jp.debian.org etch/main base-config 2.69 [333kB]
+Get:46 http://ftp.jp.debian.org etch/main bsdmainutils 6.1.2 [170kB]
+Get:47 http://ftp.jp.debian.org etch/main groff-base 1.18.1.1-8 [832kB]
+Get:48 http://ftp.jp.debian.org etch/main iptables 1.3.1-2 [397kB]
+Get:49 http://ftp.jp.debian.org etch/main libgpg-error0 1.1-4 [22.8kB]
+Get:50 http://ftp.jp.debian.org etch/main libgcrypt11 1.2.1-4 [180kB]
+Get:51 http://ftp.jp.debian.org etch/main liblzo1 1.08-2 [48.4kB]
+Get:52 http://ftp.jp.debian.org etch/main libopencdk8 0.5.7-2 [96.3kB]
+Get:53 http://ftp.jp.debian.org etch/main libslang2 2.0.4-2 [408kB]
+Get:54 http://ftp.jp.debian.org etch/main libtasn1-2 0.2.13-1 [46.5kB]
+Get:55 http://ftp.jp.debian.org etch/main man-db 2.4.3-1 [658kB]
+Get:56 http://ftp.jp.debian.org etch/main manpages 2.02-2 [392kB]
+Get:57 http://ftp.jp.debian.org etch/main net-tools 1.60-15 [248kB]
+Get:58 http://ftp.jp.debian.org etch/main netkit-inetd 0.10-10.2 [30.6kB]
+Get:59 http://ftp.jp.debian.org etch/main wget 1.10-3+1.10.1beta1 [451kB]
+Get:60 http://ftp.jp.debian.org etch/main whiptail 0.51.6-26 [32.5kB]
+Get:61 http://ftp.jp.debian.org etch/main libnewt0.51 0.51.6-26 [57.8kB]
+Get:62 http://ftp.jp.debian.org etch/main makedev 2.3.1-78 [40.9kB]
+Get:63 http://ftp.jp.debian.org etch/main procps 1:3.2.5-1 [215kB]
+Get:64 http://ftp.jp.debian.org etch/main at 3.1.9 [41.5kB]
+Get:65 http://ftp.jp.debian.org etch/main gcc-4.0-base 4.0.1-2 [174kB]
+Get:66 http://ftp.jp.debian.org etch/main cpp-4.0 4.0.1-2 [2038kB]
+Get:67 http://ftp.jp.debian.org etch/main cpp 4:4.0.1-3 [30.6kB]
+Get:68 http://ftp.jp.debian.org etch/main dpkg-dev 1.13.10 [163kB]
+Get:69 http://ftp.jp.debian.org etch/main exim4 4.52-1 [1834B]
+Get:70 http://ftp.jp.debian.org etch/main gcc-4.0 4.0.1-2 [495kB]
+Get:71 http://ftp.jp.debian.org etch/main gcc 4:4.0.1-3 [4918B]
+Get:72 http://ftp.jp.debian.org etch/main libstdc++6 4.0.1-2 [353kB]
+Get:73 http://ftp.jp.debian.org etch/main libstdc++6-4.0-dev 4.0.1-2 [1516kB]
+Get:74 http://ftp.jp.debian.org etch/main g++-4.0 4.0.1-2 [2321kB]
+Get:75 http://ftp.jp.debian.org etch/main g++ 4:4.0.1-3 [1384B]
+Get:76 http://ftp.jp.debian.org etch/main build-essential 11.1 [6834B]
+Get:77 http://ftp.jp.debian.org etch/main fdutils 5.5-20050303-1 [347kB]
+Get:78 http://ftp.jp.debian.org etch/main psmisc 21.6-1 [58.9kB]
+Get:79 http://ftp.jp.debian.org etch/main setserial 2.17-41 [54.7kB]
Preconfiguring packages ...
-Fetched 18.3MB in 2s (8302kB/s)
+Fetched 34.7MB in 18s (1848kB/s)
(Reading database ... 11073 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 ... 11073 files and directories currently installed.)
-Preparing to replace base-files 3.1.2 (using .../base-files_3.1.5_i386.deb) ...
+Preparing to replace base-files 3.1.2 (using .../base-files_3.1.6_i386.deb) ...
Unpacking replacement base-files ...
-Setting up base-files (3.1.5) ...
+dpkg: warning - unable to delete old file `/usr/doc': Directory not empty
+Setting up base-files (3.1.6) ...
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 ... 11073 files and directories currently installed.)
+(Reading database ... 11071 files and directories currently installed.)
Preparing to replace libpcre3 4.5-1.2 (using .../libpcre3_5.0-1.1_i386.deb) ...
Unpacking replacement libpcre3 ...
Preparing to replace exim4-daemon-light 4.50-8 (using .../exim4-daemon-light_4.52-1_i386.deb) ...
@@ -101,28 +137,369 @@ Preparing to replace debianutils 2.8.4 (using .../debianutils_2.14.1_i386.deb) .
Unpacking replacement debianutils ...
Setting up debianutils (2.14.1) ...
-(Reading database ... 11074 files and directories currently installed.)
+(Reading database ... 11072 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 ...
-dpkg: error processing /var/cache/apt/archives/perl-modules_5.8.7-3_all.deb (--unpack):
- failed in buffer_write(fd) (8, ret=-1): backend dpkg-deb during `./usr/share/perl/5.8.7/unicore/NamesList.txt': No space left on device
Preparing to replace perl 5.8.4-8 (using .../archives/perl_5.8.7-3_i386.deb) ...
Unpacking replacement perl ...
-dpkg-deb: subprocess paste killed by signal (Broken pipe)
-dpkg: error processing /var/cache/apt/archives/perl_5.8.7-3_i386.deb (--unpack):
- failed in buffer_write(fd) (8, ret=-1): backend dpkg-deb during `./usr/bin/h2ph': No space left on device
-dpkg-deb: subprocess paste killed by signal (Broken pipe)
Preparing to replace perl-base 5.8.4-8 (using .../perl-base_5.8.7-3_i386.deb) ...
Unpacking replacement perl-base ...
-dpkg: error processing /var/cache/apt/archives/perl-base_5.8.7-3_i386.deb (--unpack):
- failed in buffer_write(fd) (8, ret=-1): backend dpkg-deb during `./usr/bin/perl': No space left on device
-dpkg-deb: subprocess paste killed by signal (Broken pipe)
-Errors were encountered while processing:
- /var/cache/apt/archives/perl-modules_5.8.7-3_all.deb
- /var/cache/apt/archives/perl_5.8.7-3_i386.deb
- /var/cache/apt/archives/perl-base_5.8.7-3_i386.deb
-E: Sub-process /usr/bin/dpkg returned an error code (1)
+Setting up perl-base (5.8.7-3) ...
+(Reading database ... 11223 files and directories currently installed.)
+Preparing to replace liblocale-gettext-perl 1.01-17 (using .../liblocale-gettext-perl_1.05-1_i386.deb) ...
+Unpacking replacement liblocale-gettext-perl ...
+Preparing to replace libtext-iconv-perl 1.2-3 (using .../libtext-iconv-perl_1.4-1_i386.deb) ...
+Unpacking replacement libtext-iconv-perl ...
+Preparing to replace libtext-charwidth-perl 0.04-1 (using .../libtext-charwidth-perl_0.04-2_i386.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 ...
+Preparing to replace debconf-i18n 1.4.30.13 (using .../debconf-i18n_1.4.52_all.deb) ...
+Unpacking replacement debconf-i18n ...
+Preparing to replace debconf 1.4.30.13 (using .../debconf_1.4.52_all.deb) ...
+Unpacking replacement debconf ...
+Preparing to replace adduser 3.63 (using .../archives/adduser_3.66_all.deb) ...
+Unpacking replacement adduser ...
+Preparing to replace cron 3.0pl1-86 (using .../cron_3.0pl1-87_i386.deb) ...
+Unpacking replacement cron ...
+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.52-1_i386.deb) ...
+Unpacking replacement exim4-base ...
+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 ... 11239 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 ... 11245 files and directories currently installed.)
+Preparing to replace bash 2.05b-26 (using .../archives/bash_3.0-15_i386.deb) ...
+Unpacking replacement bash ...
+Setting up bash (3.0-15) ...
+Installing new version of config file /etc/skel/.bashrc ...
+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 ... 11248 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) ...
+
+Configuration file `/etc/dpkg/dpkg.cfg'
+ ==> File on system created by you or by a script.
+ ==> File also in package provided by package maintainer.
+ ==> Using new file as you requested.
+Installing new version of config file /etc/dpkg/dpkg.cfg ...
+Installing new version of config file /etc/dpkg/origins/debian ...
+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 ... 11247 files and directories currently installed.)
+Preparing to replace findutils 4.1.20-6 (using .../findutils_4.2.24-1_i386.deb) ...
+Unpacking replacement findutils ...
+Setting up findutils (4.2.24-1) ...
+Installing new version of config file /etc/updatedb.conf ...
+
+(Reading database ... 11268 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 ... 11268 files and directories currently installed.)
+Preparing to replace gzip 1.3.5-10 (using .../gzip_1.3.5-12_i386.deb) ...
+Unpacking replacement gzip ...
+Setting up gzip (1.3.5-12) ...
+
+(Reading database ... 11268 files and directories currently installed.)
+Preparing to replace libncurses5 5.4-4 (using .../libncurses5_5.4-9_i386.deb) ...
+Unpacking replacement libncurses5 ...
+Setting up libncurses5 (5.4-9) ...
+
+(Reading database ... 11269 files and directories currently installed.)
+Preparing to replace ncurses-bin 5.4-4 (using .../ncurses-bin_5.4-9_i386.deb) ...
+Unpacking replacement ncurses-bin ...
+Setting up ncurses-bin (5.4-9) ...
+(Reading database ... 11269 files and directories currently installed.)
+Preparing to replace ncurses-base 5.4-4 (using .../ncurses-base_5.4-9_all.deb) ...
+Removing obsolete conffile /etc/terminfo/E/Eterm ...
+Removing obsolete conffile /etc/terminfo/E/Eterm-color ...
+Removing obsolete conffile /etc/terminfo/a/ansi ...
+Removing obsolete conffile /etc/terminfo/c/cons25 ...
+Removing obsolete conffile /etc/terminfo/c/cygwin ...
+Removing obsolete conffile /etc/terminfo/d/dumb ...
+Removing obsolete conffile /etc/terminfo/h/hurd ...
+Removing obsolete conffile /etc/terminfo/l/linux ...
+Removing obsolete conffile /etc/terminfo/m/mach ...
+Removing obsolete conffile /etc/terminfo/m/mach-bold ...
+Removing obsolete conffile /etc/terminfo/m/mach-color ...
+Removing obsolete conffile /etc/terminfo/p/pcansi ...
+Removing obsolete conffile /etc/terminfo/r/rxvt ...
+Removing obsolete conffile /etc/terminfo/r/rxvt-basic ...
+Removing obsolete conffile /etc/terminfo/r/rxvt-m ...
+Removing obsolete conffile /etc/terminfo/s/screen ...
+Removing obsolete conffile /etc/terminfo/s/screen-bce ...
+Removing obsolete conffile /etc/terminfo/s/screen-s ...
+Removing obsolete conffile /etc/terminfo/s/screen-w ...
+Removing obsolete conffile /etc/terminfo/s/sun ...
+Removing obsolete conffile /etc/terminfo/v/vt100 ...
+Removing obsolete conffile /etc/terminfo/v/vt102 ...
+Removing obsolete conffile /etc/terminfo/v/vt220 ...
+Removing obsolete conffile /etc/terminfo/v/vt52 ...
+Removing obsolete conffile /etc/terminfo/w/wsvt25 ...
+Removing obsolete conffile /etc/terminfo/w/wsvt25m ...
+Removing obsolete conffile /etc/terminfo/x/xterm ...
+Removing obsolete conffile /etc/terminfo/x/xterm-debian ...
+Removing obsolete conffile /etc/terminfo/x/xterm-r5 ...
+Removing obsolete conffile /etc/terminfo/x/xterm-r6 ...
+Removing obsolete conffile /etc/terminfo/x/xterm-xfree86 ...
+Removing obsolete conffile /etc/terminfo/x/xterm-mono ...
+Removing obsolete conffile /etc/terminfo/x/xterm-vt220 ...
+Removing obsolete conffile /etc/terminfo/x/xterm-color ...
+Unpacking replacement ncurses-base ...
+Setting up ncurses-base (5.4-9) ...
+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) ...
+Setting up debconf-i18n (1.4.52) ...
+Setting up debconf (1.4.52) ...
+
+(Reading database ... 11273 files and directories currently installed.)
+Preparing to replace console-common 0.7.49 (using .../console-common_0.7.52_all.deb) ...
+Unpacking replacement console-common ...
+Preparing to replace libgcc1 1:3.4.3-13 (using .../libgcc1_1%3a4.0.1-2_i386.deb) ...
+Unpacking replacement libgcc1 ...
+Setting up libgcc1 (4.0.1-2) ...
+
+(Reading database ... 11277 files and directories currently installed.)
+Preparing to replace binutils 2.15-6 (using .../binutils_2.16.1-2_i386.deb) ...
+Unpacking replacement binutils ...
+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 ... 11279 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 ... 11279 files and directories currently installed.)
+Preparing to replace libattr1 2.4.16-1 (using .../libattr1_2.4.21-1.0.1_i386.deb) ...
+Unpacking replacement libattr1 ...
+Preparing to replace libacl1 2.2.23-1 (using .../libacl1_2.2.29-1.0.1_i386.deb) ...
+Unpacking replacement libacl1 ...
+Setting up libattr1 (2.4.21-1.0.1) ...
+
+Setting up libacl1 (2.2.29-1.0.1) ...
+
+Selecting previously deselected package dmidecode.
+(Reading database ... 11279 files and directories currently installed.)
+Unpacking dmidecode (from .../dmidecode_2.6-1_i386.deb) ...
+Selecting previously deselected package laptop-detect.
+Unpacking laptop-detect (from .../laptop-detect_0.12.1_i386.deb) ...
+Preparing to replace tasksel 2.24 (using .../archives/tasksel_2.28_all.deb) ...
+Unpacking replacement tasksel ...
+Preparing to replace gettext-base 0.14.4-2 (using .../gettext-base_0.14.5-2_i386.deb) ...
+Unpacking replacement gettext-base ...
+Preparing to replace base-config 2.53.10 (using .../base-config_2.69_all.deb) ...
+Unpacking replacement base-config ...
+Preparing to replace bsdmainutils 6.0.17 (using .../bsdmainutils_6.1.2_i386.deb) ...
+Unpacking replacement bsdmainutils ...
+Preparing to replace groff-base 1.18.1.1-7 (using .../groff-base_1.18.1.1-8_i386.deb) ...
+Unpacking replacement groff-base ...
+Preparing to replace iptables 1.2.11-10 (using .../iptables_1.3.1-2_i386.deb) ...
+Unpacking replacement iptables ...
+Preparing to replace libgpg-error0 1.0-1 (using .../libgpg-error0_1.1-4_i386.deb) ...
+Unpacking replacement libgpg-error0 ...
+Preparing to replace libgcrypt11 1.2.0-11.1 (using .../libgcrypt11_1.2.1-4_i386.deb) ...
+Unpacking replacement libgcrypt11 ...
+Preparing to replace liblzo1 1.08-1.2 (using .../liblzo1_1.08-2_i386.deb) ...
+Unpacking replacement liblzo1 ...
+Preparing to replace libopencdk8 0.5.5-10 (using .../libopencdk8_0.5.7-2_i386.deb) ...
+Unpacking replacement libopencdk8 ...
+Selecting previously deselected package libslang2.
+Unpacking libslang2 (from .../libslang2_2.0.4-2_i386.deb) ...
+Preparing to replace libtasn1-2 0.2.10-3 (using .../libtasn1-2_0.2.13-1_i386.deb) ...
+Unpacking replacement libtasn1-2 ...
+Preparing to replace man-db 2.4.2-21 (using .../man-db_2.4.3-1_i386.deb) ...
+Unpacking replacement man-db ...
+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-15_i386.deb) ...
+Unpacking replacement net-tools ...
+Preparing to replace netkit-inetd 0.10-10 (using .../netkit-inetd_0.10-10.2_i386.deb) ...
+Unpacking replacement netkit-inetd ...
+Preparing to replace wget 1.9.1-12 (using .../wget_1.10-3+1.10.1beta1_i386.deb) ...
+Unpacking replacement wget ...
+Preparing to replace whiptail 0.51.6-20 (using .../whiptail_0.51.6-26_i386.deb) ...
+Unpacking replacement whiptail ...
+Preparing to replace libnewt0.51 0.51.6-20 (using .../libnewt0.51_0.51.6-26_i386.deb) ...
+Unpacking replacement libnewt0.51 ...
+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) ...
+Unpacking replacement procps ...
+Preparing to replace at 3.1.8-11 (using .../apt/archives/at_3.1.9_i386.deb) ...
+Stopping deferred execution scheduler: atd.
+Unpacking replacement at ...
+Selecting previously deselected package gcc-4.0-base.
+Unpacking gcc-4.0-base (from .../gcc-4.0-base_4.0.1-2_i386.deb) ...
+Selecting previously deselected package cpp-4.0.
+Unpacking cpp-4.0 (from .../cpp-4.0_4.0.1-2_i386.deb) ...
+Preparing to replace cpp 4:3.3.5-3 (using .../cpp_4%3a4.0.1-3_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 exim4 4.50-8 (using .../archives/exim4_4.52-1_all.deb) ...
+Unpacking replacement exim4 ...
+Selecting previously deselected package gcc-4.0.
+Unpacking gcc-4.0 (from .../gcc-4.0_4.0.1-2_i386.deb) ...
+Preparing to replace gcc 4:3.3.5-3 (using .../gcc_4%3a4.0.1-3_i386.deb) ...
+Removing old gcc doc directory.
+Unpacking replacement gcc ...
+Selecting previously deselected package libstdc++6.
+Unpacking libstdc++6 (from .../libstdc++6_4.0.1-2_i386.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-2_i386.deb) ...
+Selecting previously deselected package g++-4.0.
+Unpacking g++-4.0 (from .../g++-4.0_4.0.1-2_i386.deb) ...
+Preparing to replace g++ 4:3.3.5-3 (using .../g++_4%3a4.0.1-3_i386.deb) ...
+Unpacking replacement g++ ...
+Preparing to replace build-essential 10.1 (using .../build-essential_11.1_i386.deb) ...
+Unpacking replacement build-essential ...
+Preparing to replace fdutils 5.4-20040228-1 (using .../fdutils_5.5-20050303-1_i386.deb) ...
+Unpacking replacement fdutils ...
+Preparing to replace psmisc 21.5-1 (using .../psmisc_21.6-1_i386.deb) ...
+Unpacking replacement psmisc ...
+Preparing to replace setserial 2.17-40 (using .../setserial_2.17-41_i386.deb) ...
+Unpacking replacement setserial ...
+Setting up libpcre3 (5.0-1.1) ...
+
+Setting up adduser (3.66) ...
+
+Setting up cron (3.0pl1-87) ...
+
+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 console-common (0.7.52) ...
+Looking for keymap to install:
+NONE
+
+Setting up binutils (2.16.1-2) ...
+
+Setting up cpp-3.3 (3.3.6-7) ...
+Setting up gcc-3.3 (3.3.6-7) ...
+Setting up dmidecode (2.6-1) ...
+Setting up laptop-detect (0.12.1) ...
+Setting up tasksel (2.28) ...
+
+Setting up gettext-base (0.14.5-2) ...
+
+Setting up base-config (2.69) ...
+
+Setting up bsdmainutils (6.1.2) ...
+
+Setting up groff-base (1.18.1.1-8) ...
+
+Setting up iptables (1.3.1-2) ...
+
+Setting up libgpg-error0 (1.1-4) ...
+
+Setting up libgcrypt11 (1.2.1-4) ...
+
+Setting up liblzo1 (1.08-2) ...
+
+Setting up libopencdk8 (0.5.7-2) ...
+
+Setting up libslang2 (2.0.4-2) ...
+
+Setting up libtasn1-2 (0.2.13-1) ...
+
+Setting up man-db (2.4.3-1) ...
+Installing new version of config file /etc/manpath.config ...
+
+Setting up manpages (2.02-2) ...
+Setting up net-tools (1.60-15) ...
+Setting up netkit-inetd (0.10-10.2) ...
+Restarting internet superserver: inetd.
+
+Setting up wget (1.10-3+1.10.1beta1) ...
+Installing new version of config file /etc/wgetrc ...
+
+Setting up libnewt0.51 (0.51.6-26) ...
+
+Setting up whiptail (0.51.6-26) ...
+Setting up makedev (2.3.1-78) ...
+
+Setting up procps (3.2.5-1) ...
+Installing new version of config file /etc/sysctl.conf ...
+Installing new version of config file /etc/init.d/procps.sh ...
+
+Setting up at (3.1.9) ...
+Installing new version of config file /etc/init.d/atd ...
+
+Setting up gcc-4.0-base (4.0.1-2) ...
+Setting up cpp-4.0 (4.0.1-2) ...
+Setting up cpp (4.0.1-3) ...
+Setting up exim4 (4.52-1) ...
+Setting up gcc-4.0 (4.0.1-2) ...
+Setting up gcc (4.0.1-3) ...
+
+Setting up libstdc++6 (4.0.1-2) ...
+
+Setting up fdutils (5.5-20050303-1) ...
+
+Setting up psmisc (21.6-1) ...
+
+Setting up setserial (2.17-41) ...
+
+Setting up libstdc++6-4.0-dev (4.0.1-2) ...
+Setting up perl-modules (5.8.7-3) ...
+Setting up libstdc++5-3.3-dev (3.3.6-7) ...
+Setting up g++-4.0 (4.0.1-2) ...
+Setting up g++ (4.0.1-3) ...
+
+Setting up perl (5.8.7-3) ...
+
+Setting up g++-3.3 (3.3.6-7) ...
+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.
-> unmounting dev/pts filesystem
-> unmounting proc filesystem
+ -> creating base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/testimage]
-> cleaning the build env
- -> removing directory /var/cache/pbuilder/build//12243 and its subdirectories
+ -> removing directory /var/cache/pbuilder/build//1045 and its subdirectories
diff --git a/testsuite/cdebootstrap/pdebuild-internal-etch.log b/testsuite/cdebootstrap/pdebuild-internal-etch.log
index 805140c..57e05b8 100644
--- a/testsuite/cdebootstrap/pdebuild-internal-etch.log
+++ b/testsuite/cdebootstrap/pdebuild-internal-etch.log
@@ -1,10 +1,10 @@
Building the build Environment
- -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/testimage]
+ -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/testimage]
-> creating local configuration
-> copying local configuration
-> mounting /proc filesystem
-> mounting /dev/pts filesystem
--> Mounting /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2
+-> Mounting /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2
-> policy-rc.d already exists
Using: : pdebuild-internal,v 1.6 2005/07/02 05:39:44 dancer Exp $
Reading Package Lists...
@@ -20,11 +20,11 @@ The following NEW packages will be installed:
0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded.
Need to get 111kB of archives.
After unpacking 643kB of additional disk space will be used.
-Get:1 http://ring.asahi-net.or.jp etch/main debootstrap 0.3.1.4 [42.1kB]
-Get:2 http://ring.asahi-net.or.jp etch/main pbuilder 0.128 [68.6kB]
-Fetched 111kB in 0s (481kB/s)
+Get:1 http://ftp.jp.debian.org etch/main debootstrap 0.3.1.4 [42.1kB]
+Get:2 http://ftp.jp.debian.org etch/main pbuilder 0.128 [68.6kB]
+Fetched 111kB in 0s (419kB/s)
Selecting previously deselected package debootstrap.
-(Reading database ... 11211 files and directories currently installed.)
+(Reading database ... 11328 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.128_all.deb) ...
@@ -50,21 +50,21 @@ 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 2649kB of archives.
+Need to get 2650kB of archives.
After unpacking 8360kB 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.52 [32.9kB]
-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-2 [1775kB]
-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.3 [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 2649kB in 0s (7788kB/s)
+Get:1 http://ftp.jp.debian.org etch/main libmagic1 4.12-1 [233kB]
+Get:2 http://ftp.jp.debian.org etch/main file 4.12-1 [28.6kB]
+Get:3 http://ftp.jp.debian.org etch/main debconf-utils 1.4.52 [32.9kB]
+Get:4 http://ftp.jp.debian.org etch/main html2text 1.3.2a-2 [92.6kB]
+Get:5 http://ftp.jp.debian.org etch/main gettext 0.14.5-2 [1775kB]
+Get:6 http://ftp.jp.debian.org etch/main intltool-debian 0.30+20040213 [23.5kB]
+Get:7 http://ftp.jp.debian.org etch/main po-debconf 0.8.23 [78.0kB]
+Get:8 http://ftp.jp.debian.org etch/main debhelper 4.9.5 [363kB]
+Get:9 http://ftp.jp.debian.org etch/main libdshconfig1 0.20.11-1 [10.7kB]
+Get:10 http://ftp.jp.debian.org etch/main libdshconfig1-dev 0.20.11-1 [12.4kB]
+Fetched 2650kB in 1s (2220kB/s)
Selecting previously deselected package libmagic1.
-(Reading database ... 11290 files and directories currently installed.)
+(Reading database ... 11407 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) ...
@@ -79,7 +79,7 @@ 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) ...
+Unpacking debhelper (from .../debhelper_4.9.5_all.deb) ...
Selecting previously deselected package libdshconfig1.
Unpacking libdshconfig1 (from .../libdshconfig1_0.20.11-1_i386.deb) ...
Selecting previously deselected package libdshconfig1-dev.
@@ -95,7 +95,7 @@ Setting up gettext (0.14.5-2) ...
Setting up intltool-debian (0.30+20040213) ...
Setting up po-debconf (0.8.23) ...
-Setting up debhelper (4.9.3) ...
+Setting up debhelper (4.9.5) ...
Setting up libdshconfig1 (0.20.11-1) ...
Setting up libdshconfig1-dev (0.20.11-1) ...
@@ -107,30 +107,30 @@ The following NEW packages will be installed:
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 (2196kB/s)
+Get:1 http://ftp.jp.debian.org etch/main fakeroot 1.3 [70.4kB]
+Fetched 70.4kB in 0s (805kB/s)
Selecting previously deselected package fakeroot.
-(Reading database ... 11833 files and directories currently installed.)
+(Reading database ... 11950 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
+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.YJi8Z9/dir2/dsh-0.25.6'
+make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.YJi8Z9/dir2/dsh-0.25.6'
+make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.YJi8Z9/dir2/dsh-0.25.6'
+make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.YJi8Z9/dir2/dsh-0.25.6'
+make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6'
make: [clean] Error 2 (ignored)
dh_clean
dpkg-source -b dsh-0.25.6
@@ -318,18 +318,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.YJi8Z9/dir2/dsh-0.25.6'
+make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6'
/usr/bin/make all-recursive
-make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6'
+make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6'
Making all in m4
-make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6/m4'
+make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.YJi8Z9/dir2/dsh-0.25.6/m4'
+make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/m4'
Making all in po
-make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6/po'
+make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.YJi8Z9/dir2/dsh-0.25.6/po'
-make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6'
+make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/po'
+make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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 +342,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.YJi8Z9/dir2/dsh-0.25.6'
-make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6'
-make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6'
+make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6'
+make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6'
+make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6'
/usr/bin/make check
-make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6'
+make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6'
Making check in m4
-make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6/m4'
+make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.YJi8Z9/dir2/dsh-0.25.6/m4'
+make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/m4'
Making check in po
-make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6/po'
+make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.YJi8Z9/dir2/dsh-0.25.6/po'
-make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6'
+make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/po'
+make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6'
/usr/bin/make dsh
-make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6'
+make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6'
make[3]: `dsh' is up to date.
-make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6'
+make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6'
/usr/bin/make check-TESTS
-make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6'
+make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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
@@ -398,9 +398,9 @@ 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
+b: 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
@@ -412,7 +412,7 @@ PASS: tests/param-r-invalid.sh
2: 2
dsh: fork limit and wait shell cannot be specified at the same time
PASS: tests/param-F-invalid.sh
-Thu Aug 11 23:56:22 UTC 2005
+Mon Aug 15 23:40:58 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,12 +482,13 @@ 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
-Thu Aug 11 23:56:27 UTC 2005
+Mon Aug 15 23:41:03 UTC 2005
PASS: tests/param-F-forklimit.sh
PASS: tests/param-gnu-getopt.sh
PASS: tests/news-okay.sh
-b: b
a: a
+b: b
+dsh: Process terminated (before write).
c: c
PASS: tests/segv-catcher.sh
l w
@@ -497,9 +498,9 @@ PASS: tests/machinelist-order.sh
===================
All 17 tests passed
===================
-make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6'
-make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6'
-make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6'
+make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6'
+make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6'
+make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6'
touch build-stamp
fakeroot debian/rules binary
dh_testdir
@@ -507,58 +508,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.YJi8Z9/dir2/dsh-0.25.6/debian/dsh
-make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6'
+/usr/bin/make install DESTDIR=/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/debian/dsh
+make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6'
Making install in m4
-make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6/m4'
-make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6/m4'
+make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/m4'
+make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.YJi8Z9/dir2/dsh-0.25.6/m4'
-make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6/m4'
+make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/m4'
+make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/m4'
Making install in po
-make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6/po'
-/bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6/debian/dsh/usr/share
-mkdir -p -- /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6/debian/dsh/usr/share
-mkdir -p -- /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6/debian/dsh/usr/share/locale/ja/LC_MESSAGES
-installing ja.gmo as /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6/debian/dsh/usr/share/locale/ja/LC_MESSAGES/dsh.mo
+make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/po'
+/bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/debian/dsh/usr/share
+mkdir -p -- /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/debian/dsh/usr/share
+mkdir -p -- /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/debian/dsh/usr/share/locale/ja/LC_MESSAGES
+installing ja.gmo as /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.YJi8Z9/dir2/dsh-0.25.6/debian/dsh/usr/share/gettext/po; \
+ /bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.YJi8Z9/dir2/dsh-0.25.6/debian/dsh/usr/share/gettext/po/$file; \
+ /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.YJi8Z9/dir2/dsh-0.25.6/po'
-make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6'
-make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6'
-test -z "/usr/bin" || mkdir -p -- . "/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/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.YJi8Z9/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.YJi8Z9/dir2/dsh-0.25.6/debian/dsh/usr/bin/dsh
-test -z "/etc/dsh" || mkdir -p -- . "/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6/debian/dsh/etc/dsh"
- /usr/bin/install -c -m 644 'dsh.conf' '/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6/debian/dsh/etc/dsh/dsh.conf'
+make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/po'
+make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6'
+make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6'
+test -z "/usr/bin" || mkdir -p -- . "/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.ExPwZA/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.ExPwZA/dir2/dsh-0.25.6/debian/dsh/usr/bin/dsh
+test -z "/etc/dsh" || mkdir -p -- . "/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/debian/dsh/etc/dsh"
+ /usr/bin/install -c -m 644 'dsh.conf' '/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.YJi8Z9/dir2/dsh-0.25.6/debian/dsh/usr/share/man/$LANGS/man1 ;\
- mkdir -p /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6/debian/dsh/usr/share/man/$LANGS/man5 ;\
+ mkdir -p /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/debian/dsh/usr/share/man/$LANGS/man1 ;\
+ mkdir -p /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.YJi8Z9/dir2/dsh-0.25.6/debian/dsh/usr/share/man/$LANGS/man1/dsh.1 ; \
+ > /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.YJi8Z9/dir2/dsh-0.25.6/debian/dsh/usr/share/man/$LANGS/man5/dsh.conf.5 ; \
+ > /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.YJi8Z9/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.YJi8Z9/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.YJi8Z9/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.YJi8Z9/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.YJi8Z9/dir2/dsh-0.25.6'
-make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6'
-make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6'
-cp /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6/debian/machines.list /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6/debian/dsh/etc/dsh/machines.list
-cp /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6/dsh.conf /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6/debian/dsh/etc/dsh/dsh.conf
-ln -s ../machines.list /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6/debian/dsh/etc/dsh/group/all
-install -d /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6/debian/dsh/usr/lib/update-cluster
-install -m 755 /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6/debian/dsh.updatelist /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6/debian/dsh/usr/lib/update-cluster/
+test -z "/usr/share/man/man1" || mkdir -p -- . "/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.ExPwZA/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.ExPwZA/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.ExPwZA/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.ExPwZA/dir2/dsh-0.25.6'
+make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6'
+make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6'
+cp /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/debian/machines.list /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/debian/dsh/etc/dsh/machines.list
+cp /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/dsh.conf /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/debian/dsh/etc/dsh/dsh.conf
+ln -s ../machines.list /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/debian/dsh/etc/dsh/group/all
+install -d /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/debian/dsh/usr/lib/update-cluster
+install -m 755 /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/debian/dsh.updatelist /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/debian/dsh/usr/lib/update-cluster/
dh_testdir
dh_testroot
dh_installdocs NEWS
@@ -581,6 +582,6 @@ 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.YJi8Z9/dir2 filesystem
+ -> unmounting /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2 filesystem
-> cleaning the build env
- -> removing directory /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/8210 and its subdirectories
+ -> removing directory /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/3233 and its subdirectories
diff --git a/testsuite/cdebootstrap/pdebuild-internal-sarge.log b/testsuite/cdebootstrap/pdebuild-internal-sarge.log
index 433cfda..29cef8e 100644
--- a/testsuite/cdebootstrap/pdebuild-internal-sarge.log
+++ b/testsuite/cdebootstrap/pdebuild-internal-sarge.log
@@ -1,10 +1,10 @@
Building the build Environment
- -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/testimage]
+ -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/testimage]
-> creating local configuration
-> copying local configuration
-> mounting /proc filesystem
-> mounting /dev/pts filesystem
--> Mounting /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2
+-> Mounting /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2
-> policy-rc.d already exists
Using: : pdebuild-internal,v 1.6 2005/07/02 05:39:44 dancer Exp $
Reading Package Lists...
@@ -20,9 +20,9 @@ The following NEW packages will be installed:
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 (882kB/s)
+Get:1 http://ftp.jp.debian.org sarge/main debootstrap 0.2.45-0.2 [72.2kB]
+Get:2 http://ftp.jp.debian.org sarge/main pbuilder 0.123 [64.0kB]
+Fetched 136kB in 0s (740kB/s)
Selecting previously deselected package debootstrap.
(Reading database ... 11073 files and directories currently installed.)
Unpacking debootstrap (from .../debootstrap_0.2.45-0.2_i386.deb) ...
@@ -52,17 +52,17 @@ The following NEW packages will be installed:
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 (6763kB/s)
+Get:1 http://ftp.jp.debian.org sarge/main libmagic1 4.12-1 [233kB]
+Get:2 http://ftp.jp.debian.org sarge/main file 4.12-1 [28.6kB]
+Get:3 http://ftp.jp.debian.org sarge/main debconf-utils 1.4.30.13 [33.0kB]
+Get:4 http://ftp.jp.debian.org sarge/main html2text 1.3.2a-2 [92.6kB]
+Get:5 http://ftp.jp.debian.org sarge/main gettext 0.14.4-2 [1718kB]
+Get:6 http://ftp.jp.debian.org sarge/main intltool-debian 0.30+20040213 [23.5kB]
+Get:7 http://ftp.jp.debian.org sarge/main po-debconf 0.8.23 [78.0kB]
+Get:8 http://ftp.jp.debian.org sarge/main debhelper 4.2.32 [362kB]
+Get:9 http://ftp.jp.debian.org sarge/main libdshconfig1 0.20.11-1 [10.7kB]
+Get:10 http://ftp.jp.debian.org sarge/main libdshconfig1-dev 0.20.11-1 [12.4kB]
+Fetched 2591kB in 1s (2314kB/s)
Selecting previously deselected package libmagic1.
(Reading database ... 11148 files and directories currently installed.)
Unpacking libmagic1 (from .../libmagic1_4.12-1_i386.deb) ...
@@ -107,8 +107,8 @@ The following NEW packages will be installed:
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 (2269kB/s)
+Get:1 http://ftp.jp.debian.org sarge/main fakeroot 1.2.10 [70.5kB]
+Fetched 70.5kB in 0s (809kB/s)
Selecting previously deselected package fakeroot.
(Reading database ... 11690 files and directories currently installed.)
Unpacking fakeroot (from .../fakeroot_1.2.10_i386.deb) ...
@@ -123,14 +123,14 @@ 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.YJi8Z9/dir2/dsh-0.25.6'
+make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.YJi8Z9/dir2/dsh-0.25.6'
+make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.YJi8Z9/dir2/dsh-0.25.6'
+make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.YJi8Z9/dir2/dsh-0.25.6'
+make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6'
make: [clean] Error 2 (ignored)
dh_clean
dpkg-source -b dsh-0.25.6
@@ -318,18 +318,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.YJi8Z9/dir2/dsh-0.25.6'
+make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6'
/usr/bin/make all-recursive
-make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6'
+make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6'
Making all in m4
-make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6/m4'
+make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.YJi8Z9/dir2/dsh-0.25.6/m4'
+make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/m4'
Making all in po
-make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6/po'
+make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.YJi8Z9/dir2/dsh-0.25.6/po'
-make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6'
+make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/po'
+make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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 +342,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.YJi8Z9/dir2/dsh-0.25.6'
-make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6'
-make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6'
+make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6'
+make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6'
+make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6'
/usr/bin/make check
-make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6'
+make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6'
Making check in m4
-make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6/m4'
+make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.YJi8Z9/dir2/dsh-0.25.6/m4'
+make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/m4'
Making check in po
-make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6/po'
+make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.YJi8Z9/dir2/dsh-0.25.6/po'
-make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6'
+make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/po'
+make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6'
/usr/bin/make dsh
-make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6'
+make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6'
make[3]: `dsh' is up to date.
-make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6'
+make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6'
/usr/bin/make check-TESTS
-make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6'
+make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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 +399,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
@@ -412,7 +412,7 @@ PASS: tests/param-r-invalid.sh
2: 2
dsh: fork limit and wait shell cannot be specified at the same time
PASS: tests/param-F-invalid.sh
-Thu Aug 11 23:50:13 UTC 2005
+Mon Aug 15 23:26:41 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,13 +482,13 @@ 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
-Thu Aug 11 23:50:18 UTC 2005
+Mon Aug 15 23:26:46 UTC 2005
PASS: tests/param-F-forklimit.sh
PASS: tests/param-gnu-getopt.sh
PASS: tests/news-okay.sh
a: a
-b: b
c: c
+b: b
PASS: tests/segv-catcher.sh
l w
PASS: tests/test-bufferoverflow.sh
@@ -497,9 +497,9 @@ PASS: tests/machinelist-order.sh
===================
All 17 tests passed
===================
-make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6'
-make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6'
-make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6'
+make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6'
+make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6'
+make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6'
touch build-stamp
fakeroot debian/rules binary
dh_testdir
@@ -507,58 +507,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.YJi8Z9/dir2/dsh-0.25.6/debian/dsh
-make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6'
+/usr/bin/make install DESTDIR=/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/debian/dsh
+make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6'
Making install in m4
-make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6/m4'
-make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6/m4'
+make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/m4'
+make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.YJi8Z9/dir2/dsh-0.25.6/m4'
-make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6/m4'
+make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/m4'
+make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/m4'
Making install in po
-make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6/po'
-/bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6/debian/dsh/usr/share
-mkdir -p -- /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6/debian/dsh/usr/share
-mkdir -p -- /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6/debian/dsh/usr/share/locale/ja/LC_MESSAGES
-installing ja.gmo as /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6/debian/dsh/usr/share/locale/ja/LC_MESSAGES/dsh.mo
+make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/po'
+/bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/debian/dsh/usr/share
+mkdir -p -- /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/debian/dsh/usr/share
+mkdir -p -- /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/debian/dsh/usr/share/locale/ja/LC_MESSAGES
+installing ja.gmo as /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.YJi8Z9/dir2/dsh-0.25.6/debian/dsh/usr/share/gettext/po; \
+ /bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.YJi8Z9/dir2/dsh-0.25.6/debian/dsh/usr/share/gettext/po/$file; \
+ /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.YJi8Z9/dir2/dsh-0.25.6/po'
-make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6'
-make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6'
-test -z "/usr/bin" || mkdir -p -- . "/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/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.YJi8Z9/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.YJi8Z9/dir2/dsh-0.25.6/debian/dsh/usr/bin/dsh
-test -z "/etc/dsh" || mkdir -p -- . "/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6/debian/dsh/etc/dsh"
- /usr/bin/install -c -m 644 'dsh.conf' '/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6/debian/dsh/etc/dsh/dsh.conf'
+make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/po'
+make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6'
+make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6'
+test -z "/usr/bin" || mkdir -p -- . "/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.ExPwZA/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.ExPwZA/dir2/dsh-0.25.6/debian/dsh/usr/bin/dsh
+test -z "/etc/dsh" || mkdir -p -- . "/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/debian/dsh/etc/dsh"
+ /usr/bin/install -c -m 644 'dsh.conf' '/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.YJi8Z9/dir2/dsh-0.25.6/debian/dsh/usr/share/man/$LANGS/man1 ;\
- mkdir -p /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6/debian/dsh/usr/share/man/$LANGS/man5 ;\
+ mkdir -p /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/debian/dsh/usr/share/man/$LANGS/man1 ;\
+ mkdir -p /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.YJi8Z9/dir2/dsh-0.25.6/debian/dsh/usr/share/man/$LANGS/man1/dsh.1 ; \
+ > /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.YJi8Z9/dir2/dsh-0.25.6/debian/dsh/usr/share/man/$LANGS/man5/dsh.conf.5 ; \
+ > /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.YJi8Z9/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.YJi8Z9/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.YJi8Z9/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.YJi8Z9/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.YJi8Z9/dir2/dsh-0.25.6'
-make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6'
-make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6'
-cp /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6/debian/machines.list /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6/debian/dsh/etc/dsh/machines.list
-cp /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6/dsh.conf /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6/debian/dsh/etc/dsh/dsh.conf
-ln -s ../machines.list /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6/debian/dsh/etc/dsh/group/all
-install -d /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6/debian/dsh/usr/lib/update-cluster
-install -m 755 /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6/debian/dsh.updatelist /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6/debian/dsh/usr/lib/update-cluster/
+test -z "/usr/share/man/man1" || mkdir -p -- . "/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.ExPwZA/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.ExPwZA/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.ExPwZA/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.ExPwZA/dir2/dsh-0.25.6'
+make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6'
+make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6'
+cp /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/debian/machines.list /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/debian/dsh/etc/dsh/machines.list
+cp /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/dsh.conf /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/debian/dsh/etc/dsh/dsh.conf
+ln -s ../machines.list /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/debian/dsh/etc/dsh/group/all
+install -d /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/debian/dsh/usr/lib/update-cluster
+install -m 755 /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/debian/dsh.updatelist /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/debian/dsh/usr/lib/update-cluster/
dh_testdir
dh_testroot
dh_installdocs NEWS
@@ -581,6 +581,6 @@ 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.YJi8Z9/dir2 filesystem
+ -> unmounting /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2 filesystem
-> cleaning the build env
- -> removing directory /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/6443 and its subdirectories
+ -> removing directory /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/27744 and its subdirectories
diff --git a/testsuite/cdebootstrap/pdebuild-internal-sid.log b/testsuite/cdebootstrap/pdebuild-internal-sid.log
index b10821b..4cd66be 100644
--- a/testsuite/cdebootstrap/pdebuild-internal-sid.log
+++ b/testsuite/cdebootstrap/pdebuild-internal-sid.log
@@ -1,7 +1,594 @@
Building the build Environment
- -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/testimage]
+ -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/testimage]
+ -> creating local configuration
+ -> copying local configuration
+ -> mounting /proc filesystem
+ -> mounting /dev/pts filesystem
+-> Mounting /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2
+ -> policy-rc.d already exists
+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:
+ 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 111kB of archives.
+After unpacking 643kB of additional disk space will be used.
+WARNING: The following packages cannot be authenticated!
+ debootstrap pbuilder
+Get:1 http://ftp.jp.debian.org sid/main debootstrap 0.3.1.5 [42.1kB]
+Get:2 http://ftp.jp.debian.org sid/main pbuilder 0.128 [68.6kB]
+Fetched 111kB in 0s (516kB/s)
+Selecting previously deselected package debootstrap.
+(Reading database ... 11461 files and directories currently installed.)
+Unpacking debootstrap (from .../debootstrap_0.3.1.5_all.deb) ...
+Selecting previously deselected package pbuilder.
+Unpacking pbuilder (from .../pbuilder_0.128_all.deb) ...
+Setting up debootstrap (0.3.1.5) ...
+Setting up pbuilder (0.128) ...
+Setting DEBBUILDOPTS=
+ -> 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 2650kB of archives.
+After unpacking 8360kB of additional disk space will be used.
+WARNING: The following packages cannot be authenticated!
+ libmagic1 file debconf-utils html2text gettext intltool-debian po-debconf
+ debhelper libdshconfig1 libdshconfig1-dev
+Get:1 http://ftp.jp.debian.org sid/main libmagic1 4.12-1 [233kB]
+Get:2 http://ftp.jp.debian.org sid/main file 4.12-1 [28.6kB]
+Get:3 http://ftp.jp.debian.org sid/main debconf-utils 1.4.57 [33.0kB]
+Get:4 http://ftp.jp.debian.org sid/main html2text 1.3.2a-2 [92.6kB]
+Get:5 http://ftp.jp.debian.org sid/main gettext 0.14.5-2 [1775kB]
+Get:6 http://ftp.jp.debian.org sid/main intltool-debian 0.30+20040213 [23.5kB]
+Get:7 http://ftp.jp.debian.org sid/main po-debconf 0.8.23 [78.0kB]
+Get:8 http://ftp.jp.debian.org sid/main debhelper 4.9.5 [363kB]
+Get:9 http://ftp.jp.debian.org sid/main libdshconfig1 0.20.11-1 [10.7kB]
+Get:10 http://ftp.jp.debian.org sid/main libdshconfig1-dev 0.20.11-1 [12.4kB]
+Fetched 2650kB in 1s (2315kB/s)
+Selecting previously deselected package libmagic1.
+(Reading database ... 11540 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.57_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-2_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.5_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) ...
-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/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/testimage to /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/10482
+Setting up file (4.12-1) ...
+Setting up debconf-utils (1.4.57) ...
+
+Setting up html2text (1.3.2a-2) ...
+
+Setting up gettext (0.14.5-2) ...
+
+Setting up intltool-debian (0.30+20040213) ...
+Setting up po-debconf (0.8.23) ...
+Setting up debhelper (4.9.5) ...
+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 69.5kB of archives.
+After unpacking 193kB of additional disk space will be used.
+WARNING: The following packages cannot be authenticated!
+ fakeroot
+Get:1 http://ftp.jp.debian.org sid/main fakeroot 1.4.2 [69.5kB]
+Fetched 69.5kB in 0s (794kB/s)
+Selecting previously deselected package fakeroot.
+(Reading database ... 12083 files and directories currently installed.)
+Unpacking fakeroot (from .../fakeroot_1.4.2_i386.deb) ...
+Setting up fakeroot (1.4.2) ...
+
+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.ExPwZA/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.ExPwZA/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.ExPwZA/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.ExPwZA/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.ExPwZA/dir2/dsh-0.25.6'
+/usr/bin/make all-recursive
+make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6'
+Making all in m4
+make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.ExPwZA/dir2/dsh-0.25.6/m4'
+Making all in po
+make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.ExPwZA/dir2/dsh-0.25.6/po'
+make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.ExPwZA/dir2/dsh-0.25.6'
+make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6'
+make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6'
+/usr/bin/make check
+make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6'
+Making check in m4
+make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.ExPwZA/dir2/dsh-0.25.6/m4'
+Making check in po
+make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.ExPwZA/dir2/dsh-0.25.6/po'
+make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6'
+/usr/bin/make dsh
+make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6'
+make[3]: `dsh' is up to date.
+make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6'
+/usr/bin/make check-TESTS
+make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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
+d: 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
+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
+Mon Aug 15 23:18:57 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
+Mon Aug 15 23:19:02 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
+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.ExPwZA/dir2/dsh-0.25.6'
+make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6'
+make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.ExPwZA/dir2/dsh-0.25.6/debian/dsh
+make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6'
+Making install in m4
+make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/m4'
+make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.ExPwZA/dir2/dsh-0.25.6/m4'
+make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/m4'
+Making install in po
+make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/po'
+/bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/debian/dsh/usr/share
+mkdir -p -- /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/debian/dsh/usr/share
+mkdir -p -- /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/debian/dsh/usr/share/locale/ja/LC_MESSAGES
+installing ja.gmo as /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.ExPwZA/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.ExPwZA/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.ExPwZA/dir2/dsh-0.25.6/po'
+make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6'
+make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6'
+test -z "/usr/bin" || mkdir -p -- . "/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.ExPwZA/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.ExPwZA/dir2/dsh-0.25.6/debian/dsh/usr/bin/dsh
+test -z "/etc/dsh" || mkdir -p -- . "/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/debian/dsh/etc/dsh"
+ /usr/bin/install -c -m 644 'dsh.conf' '/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.ExPwZA/dir2/dsh-0.25.6/debian/dsh/usr/share/man/$LANGS/man1 ;\
+ mkdir -p /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.ExPwZA/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.ExPwZA/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.ExPwZA/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.ExPwZA/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.ExPwZA/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.ExPwZA/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.ExPwZA/dir2/dsh-0.25.6'
+make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6'
+make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6'
+cp /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/debian/machines.list /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/debian/dsh/etc/dsh/machines.list
+cp /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/dsh.conf /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/debian/dsh/etc/dsh/dsh.conf
+ln -s ../machines.list /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/debian/dsh/etc/dsh/group/all
+install -d /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/debian/dsh/usr/lib/update-cluster
+install -m 755 /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/debian/dsh.updatelist /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.ExPwZA/dir2 filesystem
+ -> cleaning the build env
+ -> removing directory /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/25913 and its subdirectories
diff --git a/testsuite/cdebootstrap/pdebuild-normal-etch.log b/testsuite/cdebootstrap/pdebuild-normal-etch.log
index 24d7d49..03b532c 100644
--- a/testsuite/cdebootstrap/pdebuild-normal-etch.log
+++ b/testsuite/cdebootstrap/pdebuild-normal-etch.log
@@ -6,14 +6,14 @@ 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.YJi8Z9/dir2/dsh-0.25.6'
+make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.YJi8Z9/dir2/dsh-0.25.6'
+make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.YJi8Z9/dir2/dsh-0.25.6'
+make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.YJi8Z9/dir2/dsh-0.25.6'
+make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6'
make: [clean] Error 2 (ignored)
dh_clean
dpkg-source -b dsh-0.25.6
@@ -29,10 +29,10 @@ I: using fakeroot in build.
pbuilder-buildpackage/i386 $Id$
$Id$
-Current time: Fri Aug 12 08:54:49 JST 2005
-pbuilder-time-stamp: 1123804489
+Current time: Tue Aug 16 08:39:15 JST 2005
+pbuilder-time-stamp: 1124149155
Building the build Environment
- -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/testimage]
+ -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/testimage]
-> creating local configuration
-> copying local configuration
-> mounting /proc filesystem
@@ -59,21 +59,21 @@ 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 2649kB of archives.
+Need to get 2650kB of archives.
After unpacking 8360kB 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.52 [32.9kB]
-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-2 [1775kB]
-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.3 [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 2649kB in 0s (4455kB/s)
+Get:1 http://ftp.jp.debian.org etch/main libmagic1 4.12-1 [233kB]
+Get:2 http://ftp.jp.debian.org etch/main file 4.12-1 [28.6kB]
+Get:3 http://ftp.jp.debian.org etch/main debconf-utils 1.4.52 [32.9kB]
+Get:4 http://ftp.jp.debian.org etch/main html2text 1.3.2a-2 [92.6kB]
+Get:5 http://ftp.jp.debian.org etch/main gettext 0.14.5-2 [1775kB]
+Get:6 http://ftp.jp.debian.org etch/main intltool-debian 0.30+20040213 [23.5kB]
+Get:7 http://ftp.jp.debian.org etch/main po-debconf 0.8.23 [78.0kB]
+Get:8 http://ftp.jp.debian.org etch/main debhelper 4.9.5 [363kB]
+Get:9 http://ftp.jp.debian.org etch/main libdshconfig1 0.20.11-1 [10.7kB]
+Get:10 http://ftp.jp.debian.org etch/main libdshconfig1-dev 0.20.11-1 [12.4kB]
+Fetched 2650kB in 1s (2204kB/s)
Selecting previously deselected package libmagic1.
-(Reading database ... 11211 files and directories currently installed.)
+(Reading database ... 11328 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) ...
@@ -88,7 +88,7 @@ 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) ...
+Unpacking debhelper (from .../debhelper_4.9.5_all.deb) ...
Selecting previously deselected package libdshconfig1.
Unpacking libdshconfig1 (from .../libdshconfig1_0.20.11-1_i386.deb) ...
Selecting previously deselected package libdshconfig1-dev.
@@ -104,7 +104,7 @@ Setting up gettext (0.14.5-2) ...
Setting up intltool-debian (0.30+20040213) ...
Setting up po-debconf (0.8.23) ...
-Setting up debhelper (4.9.3) ...
+Setting up debhelper (4.9.5) ...
Setting up libdshconfig1 (0.20.11-1) ...
Setting up libdshconfig1-dev (0.20.11-1) ...
@@ -116,10 +116,10 @@ The following NEW packages will be installed:
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 (2114kB/s)
+Get:1 http://ftp.jp.debian.org etch/main fakeroot 1.3 [70.4kB]
+Fetched 70.4kB in 0s (796kB/s)
Selecting previously deselected package fakeroot.
-(Reading database ... 11754 files and directories currently installed.)
+(Reading database ... 11871 files and directories currently installed.)
Unpacking fakeroot (from .../archives/fakeroot_1.3_i386.deb) ...
Setting up fakeroot (1.3) ...
@@ -130,6 +130,8 @@ Copying source file
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)
@@ -139,10 +141,10 @@ debian: warning: no utmp entry available and LOGNAME not defined; using uid of p
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-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 is i386
+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)
@@ -443,7 +445,7 @@ PASS: tests/param-r-invalid.sh
2: 2
dsh: fork limit and wait shell cannot be specified at the same time
PASS: tests/param-F-invalid.sh
-Thu Aug 11 23:55:31 UTC 2005
+Mon Aug 15 23:40:03 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,12 +515,13 @@ 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
-Thu Aug 11 23:55:36 UTC 2005
+Mon Aug 15 23:40:08 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
PASS: tests/segv-catcher.sh
l w
@@ -624,9 +627,9 @@ dpkg-genchanges: including full source code in upload
dpkg-buildpackage: full upload (original source is included)
-> Terminate timeout process
-> unmounting dev/pts filesystem
-/usr/lib/pbuilder/pbuilder-modules: line 89: 2746 Terminated ( : Timeout process; sleep "${TIMEOUT_TIME}"; echo " -> Terminating build process due to timeout "; kill ${BUILD_PID} || true )
+/usr/lib/pbuilder/pbuilder-modules: line 89: 30236 Terminated ( : Timeout process; sleep "${TIMEOUT_TIME}"; echo " -> Terminating build process due to timeout "; kill ${BUILD_PID} || true )
-> unmounting proc filesystem
-Current time: Fri Aug 12 08:55:38 JST 2005
-pbuilder-time-stamp: 1123804538
+Current time: Tue Aug 16 08:40:10 JST 2005
+pbuilder-time-stamp: 1124149210
-> cleaning the build env
- -> removing directory /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/2410 and its subdirectories
+ -> removing directory /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/29924 and its subdirectories
diff --git a/testsuite/cdebootstrap/pdebuild-normal-sarge.log b/testsuite/cdebootstrap/pdebuild-normal-sarge.log
index 3abc8f3..fa5b59e 100644
--- a/testsuite/cdebootstrap/pdebuild-normal-sarge.log
+++ b/testsuite/cdebootstrap/pdebuild-normal-sarge.log
@@ -6,14 +6,14 @@ 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.YJi8Z9/dir2/dsh-0.25.6'
+make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.YJi8Z9/dir2/dsh-0.25.6'
+make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.YJi8Z9/dir2/dsh-0.25.6'
+make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.YJi8Z9/dir2/dsh-0.25.6'
+make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6'
make: [clean] Error 2 (ignored)
dh_clean
dpkg-source -b dsh-0.25.6
@@ -29,10 +29,10 @@ I: using fakeroot in build.
pbuilder-buildpackage/i386 $Id$
$Id$
-Current time: Fri Aug 12 08:48:47 JST 2005
-pbuilder-time-stamp: 1123804127
+Current time: Tue Aug 16 08:25:11 JST 2005
+pbuilder-time-stamp: 1124148311
Building the build Environment
- -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/testimage]
+ -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/testimage]
-> creating local configuration
-> copying local configuration
-> mounting /proc filesystem
@@ -61,17 +61,17 @@ The following NEW packages will be installed:
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 (6230kB/s)
+Get:1 http://ftp.jp.debian.org sarge/main libmagic1 4.12-1 [233kB]
+Get:2 http://ftp.jp.debian.org sarge/main file 4.12-1 [28.6kB]
+Get:3 http://ftp.jp.debian.org sarge/main debconf-utils 1.4.30.13 [33.0kB]
+Get:4 http://ftp.jp.debian.org sarge/main html2text 1.3.2a-2 [92.6kB]
+Get:5 http://ftp.jp.debian.org sarge/main gettext 0.14.4-2 [1718kB]
+Get:6 http://ftp.jp.debian.org sarge/main intltool-debian 0.30+20040213 [23.5kB]
+Get:7 http://ftp.jp.debian.org sarge/main po-debconf 0.8.23 [78.0kB]
+Get:8 http://ftp.jp.debian.org sarge/main debhelper 4.2.32 [362kB]
+Get:9 http://ftp.jp.debian.org sarge/main libdshconfig1 0.20.11-1 [10.7kB]
+Get:10 http://ftp.jp.debian.org sarge/main libdshconfig1-dev 0.20.11-1 [12.4kB]
+Fetched 2591kB in 1s (2214kB/s)
Selecting previously deselected package libmagic1.
(Reading database ... 11073 files and directories currently installed.)
Unpacking libmagic1 (from .../libmagic1_4.12-1_i386.deb) ...
@@ -116,8 +116,8 @@ The following NEW packages will be installed:
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 (2313kB/s)
+Get:1 http://ftp.jp.debian.org sarge/main fakeroot 1.2.10 [70.5kB]
+Fetched 70.5kB in 0s (718kB/s)
Selecting previously deselected package fakeroot.
(Reading database ... 11615 files and directories currently installed.)
Unpacking fakeroot (from .../fakeroot_1.2.10_i386.deb) ...
@@ -443,7 +443,7 @@ PASS: tests/param-r-invalid.sh
1: 1
dsh: fork limit and wait shell cannot be specified at the same time
PASS: tests/param-F-invalid.sh
-Thu Aug 11 23:49:25 UTC 2005
+Mon Aug 15 23:25:51 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,7 +513,7 @@ 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
-Thu Aug 11 23:49:30 UTC 2005
+Mon Aug 15 23:25:56 UTC 2005
PASS: tests/param-F-forklimit.sh
PASS: tests/param-gnu-getopt.sh
PASS: tests/news-okay.sh
@@ -625,9 +625,9 @@ dpkg-genchanges: including full source code in upload
dpkg-buildpackage: full upload (original source is included)
-> Terminate timeout process
-> unmounting dev/pts filesystem
-/usr/lib/pbuilder/pbuilder-modules: line 89: 1005 Terminated ( : Timeout process; sleep "${TIMEOUT_TIME}"; echo " -> Terminating build process due to timeout "; kill ${BUILD_PID} || true )
+/usr/lib/pbuilder/pbuilder-modules: line 89: 22316 Terminated ( : Timeout process; sleep "${TIMEOUT_TIME}"; echo " -> Terminating build process due to timeout "; kill ${BUILD_PID} || true )
-> unmounting proc filesystem
-Current time: Fri Aug 12 08:49:32 JST 2005
-pbuilder-time-stamp: 1123804172
+Current time: Tue Aug 16 08:25:58 JST 2005
+pbuilder-time-stamp: 1124148358
-> cleaning the build env
- -> removing directory /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/718 and its subdirectories
+ -> removing directory /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/22033 and its subdirectories
diff --git a/testsuite/cdebootstrap/pdebuild-normal-sid.log b/testsuite/cdebootstrap/pdebuild-normal-sid.log
index b1eb450..fb9db0a 100644
--- a/testsuite/cdebootstrap/pdebuild-normal-sid.log
+++ b/testsuite/cdebootstrap/pdebuild-normal-sid.log
@@ -6,14 +6,14 @@ 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.YJi8Z9/dir2/dsh-0.25.6'
+make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.YJi8Z9/dir2/dsh-0.25.6'
+make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.YJi8Z9/dir2/dsh-0.25.6'
+make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.YJi8Z9/dir2/dsh-0.25.6'
+make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6'
make: [clean] Error 2 (ignored)
dh_clean
dpkg-source -b dsh-0.25.6
@@ -29,12 +29,611 @@ I: using fakeroot in build.
pbuilder-buildpackage/i386 $Id$
$Id$
-Current time: Fri Aug 12 08:45:30 JST 2005
-pbuilder-time-stamp: 1123803930
+Current time: Tue Aug 16 08:17:24 JST 2005
+pbuilder-time-stamp: 1124147844
Building the build Environment
- -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/testimage]
+ -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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 2650kB of archives.
+After unpacking 8360kB of additional disk space will be used.
+WARNING: The following packages cannot be authenticated!
+ libmagic1 file debconf-utils html2text gettext intltool-debian po-debconf
+ debhelper libdshconfig1 libdshconfig1-dev
+Get:1 http://ftp.jp.debian.org sid/main libmagic1 4.12-1 [233kB]
+Get:2 http://ftp.jp.debian.org sid/main file 4.12-1 [28.6kB]
+Get:3 http://ftp.jp.debian.org sid/main debconf-utils 1.4.57 [33.0kB]
+Get:4 http://ftp.jp.debian.org sid/main html2text 1.3.2a-2 [92.6kB]
+Get:5 http://ftp.jp.debian.org sid/main gettext 0.14.5-2 [1775kB]
+Get:6 http://ftp.jp.debian.org sid/main intltool-debian 0.30+20040213 [23.5kB]
+Get:7 http://ftp.jp.debian.org sid/main po-debconf 0.8.23 [78.0kB]
+Get:8 http://ftp.jp.debian.org sid/main debhelper 4.9.5 [363kB]
+Get:9 http://ftp.jp.debian.org sid/main libdshconfig1 0.20.11-1 [10.7kB]
+Get:10 http://ftp.jp.debian.org sid/main libdshconfig1-dev 0.20.11-1 [12.4kB]
+Fetched 2650kB in 1s (2094kB/s)
+Selecting previously deselected package libmagic1.
+(Reading database ... 11461 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.57_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-2_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.5_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) ...
-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/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/testimage to /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/10451
+Setting up file (4.12-1) ...
+Setting up debconf-utils (1.4.57) ...
+
+Setting up html2text (1.3.2a-2) ...
+
+Setting up gettext (0.14.5-2) ...
+
+Setting up intltool-debian (0.30+20040213) ...
+Setting up po-debconf (0.8.23) ...
+Setting up debhelper (4.9.5) ...
+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 69.5kB of archives.
+After unpacking 193kB of additional disk space will be used.
+WARNING: The following packages cannot be authenticated!
+ fakeroot
+Get:1 http://ftp.jp.debian.org sid/main fakeroot 1.4.2 [69.5kB]
+Fetched 69.5kB in 0s (802kB/s)
+Selecting previously deselected package fakeroot.
+(Reading database ... 12004 files and directories currently installed.)
+Unpacking fakeroot (from .../fakeroot_1.4.2_i386.deb) ...
+Setting up fakeroot (1.4.2) ...
+
+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
+d: dsh: Failed executing ./invalid-exec-file with llexec call
+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
+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
+Mon Aug 15 23:18:06 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
+Mon Aug 15 23:18:11 UTC 2005
+PASS: tests/param-F-forklimit.sh
+PASS: tests/param-gnu-getopt.sh
+PASS: tests/news-okay.sh
+b: b
+c: c
+dsh: Process terminated (before write).
+a: a
+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
+/usr/lib/pbuilder/pbuilder-modules: line 89: 20513 Terminated ( : Timeout process; sleep "${TIMEOUT_TIME}"; echo " -> Terminating build process due to timeout "; kill ${BUILD_PID} || true )
+ -> unmounting proc filesystem
+Current time: Tue Aug 16 08:18:13 JST 2005
+pbuilder-time-stamp: 1124147893
+ -> cleaning the build env
+ -> removing directory /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/20227 and its subdirectories
diff --git a/testsuite/normal/pbuilder-build-dsh-etch.log b/testsuite/normal/pbuilder-build-dsh-etch.log
index fb7622d..efa2d5a 100644
--- a/testsuite/normal/pbuilder-build-dsh-etch.log
+++ b/testsuite/normal/pbuilder-build-dsh-etch.log
@@ -2,12 +2,12 @@ I: using fakeroot in build.
pbuilder-buildpackage/i386 $Id$
$Id$
-Current time: Fri Aug 12 08:45:06 JST 2005
-pbuilder-time-stamp: 1123803906
+Current time: Tue Aug 16 08:11:43 JST 2005
+pbuilder-time-stamp: 1124147503
Building the build Environment
- -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/testimage]
+ -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/testimage to /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir1/6538
+E: failed to extract /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/testimage to /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir1/31585
diff --git a/testsuite/normal/pbuilder-build-dsh-sarge.log b/testsuite/normal/pbuilder-build-dsh-sarge.log
index 423eedc..7ead5a7 100644
--- a/testsuite/normal/pbuilder-build-dsh-sarge.log
+++ b/testsuite/normal/pbuilder-build-dsh-sarge.log
@@ -2,10 +2,10 @@ I: using fakeroot in build.
pbuilder-buildpackage/i386 $Id$
$Id$
-Current time: Fri Aug 12 08:39:06 JST 2005
-pbuilder-time-stamp: 1123803546
+Current time: Tue Aug 16 08:01:38 JST 2005
+pbuilder-time-stamp: 1124146898
Building the build Environment
- -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/testimage]
+ -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/testimage]
-> creating local configuration
-> copying local configuration
-> mounting /proc filesystem
@@ -34,17 +34,17 @@ The following NEW packages will be installed:
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 (2983kB/s)
+Get:1 http://ftp.jp.debian.org sarge/main libmagic1 4.12-1 [233kB]
+Get:2 http://ftp.jp.debian.org sarge/main file 4.12-1 [28.6kB]
+Get:3 http://ftp.jp.debian.org sarge/main debconf-utils 1.4.30.13 [33.0kB]
+Get:4 http://ftp.jp.debian.org sarge/main html2text 1.3.2a-2 [92.6kB]
+Get:5 http://ftp.jp.debian.org sarge/main gettext 0.14.4-2 [1718kB]
+Get:6 http://ftp.jp.debian.org sarge/main intltool-debian 0.30+20040213 [23.5kB]
+Get:7 http://ftp.jp.debian.org sarge/main po-debconf 0.8.23 [78.0kB]
+Get:8 http://ftp.jp.debian.org sarge/main debhelper 4.2.32 [362kB]
+Get:9 http://ftp.jp.debian.org sarge/main libdshconfig1 0.20.11-1 [10.7kB]
+Get:10 http://ftp.jp.debian.org sarge/main libdshconfig1-dev 0.20.11-1 [12.4kB]
+Fetched 2591kB in 1s (1853kB/s)
Selecting previously deselected package libmagic1.
(Reading database ... 11040 files and directories currently installed.)
Unpacking libmagic1 (from .../libmagic1_4.12-1_i386.deb) ...
@@ -89,17 +89,17 @@ The following NEW packages will be installed:
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 (1059kB/s)
+Get:1 http://ftp.jp.debian.org sarge/main fakeroot 1.2.10 [70.5kB]
+Fetched 70.5kB in 0s (536kB/s)
Selecting previously deselected package fakeroot.
(Reading database ... 11582 files and directories currently installed.)
Unpacking fakeroot (from .../fakeroot_1.2.10_i386.deb) ...
Setting up fakeroot (1.2.10) ...
Copying source file
- -> copying [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir1/dsh_0.25.6-1.dsc]
- -> copying [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir1/dsh_0.25.6.orig.tar.gz]
- -> copying [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir1/dsh_0.25.6-1.diff.gz]
+ -> copying [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir1/dsh_0.25.6-1.dsc]
+ -> copying [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir1/dsh_0.25.6.orig.tar.gz]
+ -> copying [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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
@@ -374,7 +374,6 @@ test to check that unknown parameter checking is right.
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
@@ -413,7 +412,7 @@ PASS: tests/param-r-invalid.sh
2: 2
dsh: fork limit and wait shell cannot be specified at the same time
PASS: tests/param-F-invalid.sh
-Thu Aug 11 23:39:53 UTC 2005
+Mon Aug 15 23:02:10 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 +482,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
-Thu Aug 11 23:39:58 UTC 2005
+Mon Aug 15 23:02:15 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
+b: b
PASS: tests/segv-catcher.sh
l w
PASS: tests/test-bufferoverflow.sh
@@ -596,8 +595,8 @@ dpkg-buildpackage: full upload (original source is included)
-> Terminate timeout process
-> unmounting dev/pts filesystem
-> unmounting proc filesystem
-/usr/lib/pbuilder/pbuilder-buildpackage: line 152: 9581 Terminated ( : Timeout process; sleep "${TIMEOUT_TIME}"; echo " -> Terminating build process due to timeout "; kill ${BUILD_PID} || true )
-Current time: Fri Aug 12 08:40:01 JST 2005
-pbuilder-time-stamp: 1123803601
+/usr/lib/pbuilder/pbuilder-modules: line 89: 32735 Terminated ( : Timeout process; sleep "${TIMEOUT_TIME}"; echo " -> Terminating build process due to timeout "; kill ${BUILD_PID} || true )
+Current time: Tue Aug 16 08:02:18 JST 2005
+pbuilder-time-stamp: 1124146938
-> cleaning the build env
- -> removing directory /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir1/9285 and its subdirectories
+ -> removing directory /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir1/32449 and its subdirectories
diff --git a/testsuite/normal/pbuilder-build-dsh-sid.log b/testsuite/normal/pbuilder-build-dsh-sid.log
index a2c12fa..8ed6b36 100644
--- a/testsuite/normal/pbuilder-build-dsh-sid.log
+++ b/testsuite/normal/pbuilder-build-dsh-sid.log
@@ -2,12 +2,12 @@ I: using fakeroot in build.
pbuilder-buildpackage/i386 $Id$
$Id$
-Current time: Fri Aug 12 08:37:23 JST 2005
-pbuilder-time-stamp: 1123803443
+Current time: Tue Aug 16 07:57:34 JST 2005
+pbuilder-time-stamp: 1124146654
Building the build Environment
- -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/testimage]
+ -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/testimage to /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir1/30486
+E: failed to extract /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/testimage to /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir1/19905
diff --git a/testsuite/normal/pbuilder-create-etch.log b/testsuite/normal/pbuilder-create-etch.log
index d0010a4..cc58185 100644
--- a/testsuite/normal/pbuilder-create-etch.log
+++ b/testsuite/normal/pbuilder-create-etch.log
@@ -4,7 +4,7 @@ Building the build environment
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: Checking component main on http://ftp.jp.debian.org/debian...
I: Extracting base-files...
I: Extracting base-passwd...
I: Extracting bash...
@@ -73,4 +73,4 @@ 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//30923 and its subdirectories
+ -> removing directory /var/cache/pbuilder/build//23528 and its subdirectories
diff --git a/testsuite/normal/pbuilder-create-sarge.log b/testsuite/normal/pbuilder-create-sarge.log
index ec47ada..f0d6e78 100644
--- a/testsuite/normal/pbuilder-create-sarge.log
+++ b/testsuite/normal/pbuilder-create-sarge.log
@@ -4,7 +4,7 @@ Building the build environment
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: Checking component main on http://ftp.jp.debian.org/debian...
I: Extracting base-files...
I: Extracting base-passwd...
I: Extracting bash...
@@ -75,9 +75,9 @@ 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 (3096kB/s)
+Get:1 http://ftp.jp.debian.org sarge/main Packages [3347kB]
+Get:2 http://ftp.jp.debian.org sarge/main Release [95B]
+Fetched 3347kB in 2s (1409kB/s)
Reading Package Lists...
dpkg - warning: ignoring request to remove lilo which isn't installed.
Reading Package Lists...
@@ -102,23 +102,23 @@ The following NEW packages will be installed:
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 (6403kB/s)
+Get:1 http://ftp.jp.debian.org sarge/main binutils 2.15-6 [2221kB]
+Get:2 http://ftp.jp.debian.org sarge/main cpp-3.3 1:3.3.5-13 [1393kB]
+Get:3 http://ftp.jp.debian.org sarge/main cpp 4:3.3.5-3 [29.6kB]
+Get:4 http://ftp.jp.debian.org sarge/main perl-modules 5.8.4-8 [2178kB]
+Get:5 http://ftp.jp.debian.org sarge/main perl 5.8.4-8 [3238kB]
+Get:6 http://ftp.jp.debian.org sarge/main patch 2.5.9-2 [96.4kB]
+Get:7 http://ftp.jp.debian.org sarge/main make 3.80-9 [366kB]
+Get:8 http://ftp.jp.debian.org sarge/main dpkg-dev 1.10.28 [166kB]
+Get:9 http://ftp.jp.debian.org sarge/main gcc-3.3 1:3.3.5-13 [1570kB]
+Get:10 http://ftp.jp.debian.org sarge/main gcc 4:3.3.5-3 [4906B]
+Get:11 http://ftp.jp.debian.org sarge/main linux-kernel-headers 2.5.999-test7-bk-17 [1377kB]
+Get:12 http://ftp.jp.debian.org sarge/main libc6-dev 2.3.2.ds1-22 [2532kB]
+Get:13 http://ftp.jp.debian.org sarge/main libstdc++5-3.3-dev 1:3.3.5-13 [775kB]
+Get:14 http://ftp.jp.debian.org sarge/main g++-3.3 1:3.3.5-13 [1779kB]
+Get:15 http://ftp.jp.debian.org sarge/main g++ 4:3.3.5-3 [1398B]
+Get:16 http://ftp.jp.debian.org sarge/main build-essential 10.1 [6520B]
+Fetched 17.7MB in 7s (2238kB/s)
Selecting previously deselected package binutils.
(Reading database ... 7584 files and directories currently installed.)
Unpacking binutils (from .../binutils_2.15-6_i386.deb) ...
@@ -175,6 +175,6 @@ 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.YJi8Z9/testimage]
+ -> creating base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/testimage]
-> cleaning the build env
- -> removing directory /var/cache/pbuilder/build//30797 and its subdirectories
+ -> removing directory /var/cache/pbuilder/build//20218 and its subdirectories
diff --git a/testsuite/normal/pbuilder-create-sid.log b/testsuite/normal/pbuilder-create-sid.log
index f184682..977b5f1 100644
--- a/testsuite/normal/pbuilder-create-sid.log
+++ b/testsuite/normal/pbuilder-create-sid.log
@@ -4,9 +4,9 @@ Building the build environment
I: Retrieving Release
I: Retrieving Packages
I: Validating Packages
-I: Checking component main on http://ring.asahi-net.or.jp/archives/linux/debian/debian...
-E: Couldn't find these debs: 34687544
+I: Checking component main on http://ftp.jp.debian.org/debian...
+E: Couldn't find these debs: 35075854
pbuilder: debootstrap failed
-> Aborting with an error
-> cleaning the build env
- -> removing directory /var/cache/pbuilder/build//30349 and its subdirectories
+ -> removing directory /var/cache/pbuilder/build//19639 and its subdirectories
diff --git a/testsuite/normal/pbuilder-execute-etch.log b/testsuite/normal/pbuilder-execute-etch.log
index 7fa02b8..4aaca18 100644
--- a/testsuite/normal/pbuilder-execute-etch.log
+++ b/testsuite/normal/pbuilder-execute-etch.log
@@ -1,7 +1,7 @@
Building the build Environment
- -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/testimage]
+ -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/testimage to /var/cache/pbuilder/build//6881
+E: failed to extract /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/testimage to /var/cache/pbuilder/build//31885
diff --git a/testsuite/normal/pbuilder-execute-sarge.log b/testsuite/normal/pbuilder-execute-sarge.log
index 41958d2..b6c2f8f 100644
--- a/testsuite/normal/pbuilder-execute-sarge.log
+++ b/testsuite/normal/pbuilder-execute-sarge.log
@@ -1,5 +1,5 @@
Building the build Environment
- -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/testimage]
+ -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/testimage]
-> creating local configuration
-> copying local configuration
-> mounting /proc filesystem
@@ -10,4 +10,4 @@ Building the build Environment
-> unmounting dev/pts filesystem
-> unmounting proc filesystem
-> cleaning the build env
- -> removing directory /var/cache/pbuilder/build//26501 and its subdirectories
+ -> removing directory /var/cache/pbuilder/build//17260 and its subdirectories
diff --git a/testsuite/normal/pbuilder-execute-sid.log b/testsuite/normal/pbuilder-execute-sid.log
index 4779614..4e55a0f 100644
--- a/testsuite/normal/pbuilder-execute-sid.log
+++ b/testsuite/normal/pbuilder-execute-sid.log
@@ -1,7 +1,7 @@
Building the build Environment
- -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/testimage]
+ -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/testimage to /var/cache/pbuilder/build//30786
+E: failed to extract /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/testimage to /var/cache/pbuilder/build//20205
diff --git a/testsuite/normal/pbuilder-update-etch-sid-experimental.log b/testsuite/normal/pbuilder-update-etch-sid-experimental.log
index e14cce4..169ff8d 100644
--- a/testsuite/normal/pbuilder-update-etch-sid-experimental.log
+++ b/testsuite/normal/pbuilder-update-etch-sid-experimental.log
@@ -1,8 +1,8 @@
Upgrading for distribution sid
Building the build Environment
- -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/testimage]
+ -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/testimage to /var/cache/pbuilder/build//6901
+E: failed to extract /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/testimage to /var/cache/pbuilder/build//31905
diff --git a/testsuite/normal/pbuilder-update-etch-sid.log b/testsuite/normal/pbuilder-update-etch-sid.log
index e98cd60..c780bdf 100644
--- a/testsuite/normal/pbuilder-update-etch-sid.log
+++ b/testsuite/normal/pbuilder-update-etch-sid.log
@@ -1,8 +1,8 @@
Upgrading for distribution sid
Building the build Environment
- -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/testimage]
+ -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/testimage to /var/cache/pbuilder/build//6891
+E: failed to extract /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/testimage to /var/cache/pbuilder/build//31895
diff --git a/testsuite/normal/pbuilder-update-sarge-etch-sid-experimental.log b/testsuite/normal/pbuilder-update-sarge-etch-sid-experimental.log
index ba94d6c..916f033 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.YJi8Z9/testimage]
+ -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/testimage]
-> creating local configuration
-> copying local configuration
-> mounting /proc filesystem
@@ -10,18 +10,18 @@ Building the build Environment
-> 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 [154kB]
-Fetched 210kB in 0s (828kB/s)
+Get:1 http://ftp.jp.debian.org sid Release.gpg [189B]
+Get:2 http://ftp.jp.debian.org ../project/experimental Release.gpg [189B]
+Get:3 http://ftp.jp.debian.org sid Release [34.1kB]
+Ign http://ftp.jp.debian.org sid Release
+Get:4 http://ftp.jp.debian.org ../project/experimental Release [21.6kB]
+Ign http://ftp.jp.debian.org ../project/experimental Release
+Hit http://ftp.jp.debian.org sid/main Packages
+Get:5 http://ftp.jp.debian.org ../project/experimental/main Packages [163kB]
+Fetched 219kB in 0s (641kB/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: GPG error: http://ftp.jp.debian.org sid Release: Could not execute /usr/bin/gpgv to verify signature (is gnupg installed?)
+W: GPG error: http://ftp.jp.debian.org ../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...
@@ -29,36 +29,37 @@ Building dependency tree...
The following packages have been kept back:
aptitude
The following packages will be upgraded:
- diff libc6 libc6-dev makedev
+ diff login makedev passwd
4 upgraded, 0 newly installed, 0 to remove and 1 not upgraded.
-Need to get 7929kB of archives.
-After unpacking 3559kB of additional disk space will be used.
+Need to get 1336kB of archives.
+After unpacking 627kB of additional disk space will be used.
WARNING: The following packages cannot be authenticated!
- diff libc6-dev libc6 makedev
-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 libc6-dev 2.3.5-2 [2672kB]
-Get:3 http://ring.asahi-net.or.jp ../project/experimental/main libc6 2.3.5-2 [4923kB]
-Get:4 http://ring.asahi-net.or.jp ../project/experimental/main makedev 3.3.8.2-0 [92.2kB]
-Fetched 7929kB in 1s (7883kB/s)
-(Reading database ... 11782 files and directories currently installed.)
+ diff login passwd makedev
+Get:1 http://ftp.jp.debian.org ../project/experimental/main diff 2.8.7-0.2 [241kB]
+Get:2 http://ftp.jp.debian.org ../project/experimental/main login 1:4.0.11.1-1 [485kB]
+Get:3 http://ftp.jp.debian.org ../project/experimental/main passwd 1:4.0.11.1-1 [518kB]
+Get:4 http://ftp.jp.debian.org ../project/experimental/main makedev 3.3.8.2-0 [92.2kB]
+Preconfiguring packages ...
+Fetched 1336kB in 1s (1300kB/s)
+(Reading database ... 11839 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 ... 11790 files and directories currently installed.)
-Preparing to replace libc6-dev 2.3.2.ds1-22 (using .../libc6-dev_2.3.5-2_i386.deb) ...
-Unpacking replacement libc6-dev ...
-Preparing to replace libc6 2.3.2.ds1-22 (using .../libc6_2.3.5-2_i386.deb) ...
-Unpacking replacement libc6 ...
-Setting up libc6 (2.3.5-2) ...
-Current default timezone: 'UTC'.
-Local time is now: Thu Aug 11 23:43:39 UTC 2005.
-Universal Time is now: Thu Aug 11 23:43:39 UTC 2005.
-Run 'tzconfig' if you wish to change it.
+(Reading database ... 11847 files and directories currently installed.)
+Preparing to replace login 1:4.0.3-39 (using .../login_1%3a4.0.11.1-1_i386.deb) ...
+Unpacking replacement login ...
+Setting up login (4.0.11.1-1) ...
+Installing new version of config file /etc/pam.d/su ...
+Installing new version of config file /etc/login.defs ...
-(Reading database ... 11824 files and directories currently installed.)
+(Reading database ... 11853 files and directories currently installed.)
+Preparing to replace passwd 1:4.0.3-39 (using .../passwd_1%3a4.0.11.1-1_i386.deb) ...
+Unpacking replacement passwd ...
+Setting up passwd (4.0.11.1-1) ...
+
+(Reading database ... 11866 files and directories currently installed.)
Preparing to replace makedev 2.3.1-78 (using .../makedev_3.3.8.2-0_i386.deb) ...
Unpacking replacement makedev ...
-Setting up libc6-dev (2.3.5-2) ...
Setting up makedev (3.3.8.2-0) ...
Reading package lists...
Building dependency tree...
@@ -68,6 +69,6 @@ apt is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 1 not upgraded.
-> unmounting dev/pts filesystem
-> unmounting proc filesystem
- -> creating base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/testimage]
+ -> creating base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/testimage]
-> cleaning the build env
- -> removing directory /var/cache/pbuilder/build//30661 and its subdirectories
+ -> removing directory /var/cache/pbuilder/build//23335 and its subdirectories
diff --git a/testsuite/normal/pbuilder-update-sarge-etch-sid.log b/testsuite/normal/pbuilder-update-sarge-etch-sid.log
index bc23404..f9d02fd 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.YJi8Z9/testimage]
+ -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/testimage]
-> creating local configuration
-> copying local configuration
-> mounting /proc filesystem
@@ -9,388 +9,332 @@ Building the build Environment
-> Installing apt-lines
Refreshing the base.tgz
-> upgrading packages
-Get:1 http://ring.asahi-net.or.jp sid/main Packages [3741kB]
-Get:2 http://ring.asahi-net.or.jp sid/main Release [82B]
-Fetched 3741kB in 4s (856kB/s)
+Get:1 http://ftp.jp.debian.org sid/main Packages [3756kB]
+Get:2 http://ftp.jp.debian.org sid/main Release [82B]
+Fetched 3757kB in 2s (1316kB/s)
Reading Package Lists...
dpkg - warning: ignoring request to remove lilo which isn't installed.
Reading Package Lists...
Building Dependency Tree...
+The following packages will be REMOVED:
+ libsigc++-1.2-5c102
The following NEW packages will be installed:
- cpp-4.0 dmidecode g++-4.0 gcc-4.0 gcc-4.0-base laptop-detect libncursesw5
- libstdc++6 libstdc++6-4.0-dev
+ libncursesw5 libselinux1 libsigc++-1.2-5c2 lsb-base
The following packages will be upgraded:
- adduser apt apt-utils aptitude base-config base-files build-essential
- console-common cpp cpp-3.3 dpkg dpkg-dev dselect e2fslibs e2fsprogs fdutils
- g++ g++-3.3 gcc gcc-3.3 gcc-3.3-base gzip libacl1 libblkid1 libcomerr2
- libdb4.2 libgcc1 libgcrypt11 libgpg-error0 libncurses5 libnewt0.51
- libopencdk8 libpam-modules libpam-runtime libpam0g libslang2 libss2
- libssl0.9.7 libstdc++5 libstdc++5-3.3-dev libtasn1-2 libuuid1
- linux-kernel-headers login mailx modutils nano ncurses-base ncurses-bin
- netkit-inetd passwd perl perl-base perl-modules sed tar tasksel telnet
- whiptail zlib1g
-60 upgraded, 9 newly installed, 0 to remove and 0 not upgraded.
-Need to get 34.9MB of archives.
-After unpacking 19.9MB of additional disk space will be used.
-Get:1 http://ring.asahi-net.or.jp sid/main dpkg 1.13.10 [1811kB]
-Get:2 http://ring.asahi-net.or.jp sid/main e2fslibs 1.38-1 [78.2kB]
-Get:3 http://ring.asahi-net.or.jp sid/main e2fsprogs 1.38-1 [525kB]
-Get:4 http://ring.asahi-net.or.jp sid/main gzip 1.3.5-12 [71.1kB]
-Get:5 http://ring.asahi-net.or.jp sid/main libpam-runtime 0.76-23 [59.1kB]
-Get:6 http://ring.asahi-net.or.jp sid/main libpam0g 0.76-23 [74.3kB]
-Get:7 http://ring.asahi-net.or.jp sid/main libpam-modules 0.76-23 [147kB]
-Get:8 http://ring.asahi-net.or.jp sid/main login 1:4.0.3-38 [579kB]
-Get:9 http://ring.asahi-net.or.jp sid/main libncurses5 5.4-9 [290kB]
-Get:10 http://ring.asahi-net.or.jp sid/main ncurses-bin 5.4-9 [208kB]
-Get:11 http://ring.asahi-net.or.jp sid/main perl-modules 5.8.7-4 [2326kB]
-Get:12 http://ring.asahi-net.or.jp sid/main libdb4.2 4.2.52-19 [388kB]
-Get:13 http://ring.asahi-net.or.jp sid/main perl 5.8.7-4 [3378kB]
-Get:14 http://ring.asahi-net.or.jp sid/main perl-base 5.8.7-4 [781kB]
-Get:15 http://ring.asahi-net.or.jp sid/main sed 4.1.4-2 [242kB]
-Get:16 http://ring.asahi-net.or.jp sid/main tar 1.15.1-2 [756kB]
-Get:17 http://ring.asahi-net.or.jp sid/main base-files 3.1.6 [34.6kB]
-Get:18 http://ring.asahi-net.or.jp sid/main ncurses-base 5.4-9 [12.8kB]
-Get:19 http://ring.asahi-net.or.jp sid/main console-common 0.7.52 [116kB]
-Get:20 http://ring.asahi-net.or.jp sid/main libgcc1 1:4.0.1-2 [89.4kB]
-Get:21 http://ring.asahi-net.or.jp sid/main libstdc++5-3.3-dev 1:3.3.6-7 [775kB]
-Get:22 http://ring.asahi-net.or.jp sid/main g++-3.3 1:3.3.6-7 [1779kB]
-Get:23 http://ring.asahi-net.or.jp sid/main gcc-3.3 1:3.3.6-7 [1556kB]
-Get:24 http://ring.asahi-net.or.jp sid/main cpp-3.3 1:3.3.6-7 [1393kB]
-Get:25 http://ring.asahi-net.or.jp sid/main gcc-3.3-base 1:3.3.6-7 [150kB]
-Get:26 http://ring.asahi-net.or.jp sid/main libstdc++5 1:3.3.6-7 [295kB]
-Get:27 http://ring.asahi-net.or.jp sid/main apt-utils 0.6.38 [188kB]
-Get:28 http://ring.asahi-net.or.jp sid/main aptitude 0.2.15.9-3 [941kB]
-Get:29 http://ring.asahi-net.or.jp sid/main apt 0.6.38 [1192kB]
-Get:30 http://ring.asahi-net.or.jp sid/main dselect 1.13.10 [121kB]
-Get:31 http://ring.asahi-net.or.jp sid/main libacl1 2.2.29-1.0.1 [13.6kB]
-Get:32 http://ring.asahi-net.or.jp sid/main libblkid1 1.38-1 [43.0kB]
-Get:33 http://ring.asahi-net.or.jp sid/main libcomerr2 1.38-1 [27.3kB]
-Get:34 http://ring.asahi-net.or.jp sid/main libss2 1.38-1 [33.2kB]
-Get:35 http://ring.asahi-net.or.jp sid/main libuuid1 1.38-1 [32.8kB]
-Get:36 http://ring.asahi-net.or.jp sid/main passwd 1:4.0.3-38 [511kB]
-Get:37 http://ring.asahi-net.or.jp sid/main zlib1g 1:1.2.3-1 [68.9kB]
-Get:38 http://ring.asahi-net.or.jp sid/main adduser 3.65 [100kB]
-Get:39 http://ring.asahi-net.or.jp sid/main base-config 2.69 [333kB]
-Get:40 http://ring.asahi-net.or.jp sid/main dmidecode 2.6-2 [47.4kB]
-Get:41 http://ring.asahi-net.or.jp sid/main laptop-detect 0.12.1 [2512B]
-Get:42 http://ring.asahi-net.or.jp sid/main libgpg-error0 1.1-1 [22.6kB]
-Get:43 http://ring.asahi-net.or.jp sid/main libgcrypt11 1.2.1-4 [180kB]
-Get:44 http://ring.asahi-net.or.jp sid/main libncursesw5 5.4-9 [307kB]
-Get:45 http://ring.asahi-net.or.jp sid/main libopencdk8 0.5.7-2 [96.3kB]
-Get:46 http://ring.asahi-net.or.jp sid/main libslang2 2.0.4-4 [406kB]
-Get:47 http://ring.asahi-net.or.jp sid/main libssl0.9.7 0.9.7g-1 [2215kB]
-Get:48 http://ring.asahi-net.or.jp sid/main libtasn1-2 0.2.13-1 [46.5kB]
-Get:49 http://ring.asahi-net.or.jp sid/main modutils 2.4.27.0-3 [235kB]
-Get:50 http://ring.asahi-net.or.jp sid/main nano 1.3.8-2 [403kB]
-Get:51 http://ring.asahi-net.or.jp sid/main netkit-inetd 0.10-10.2 [30.6kB]
-Get:52 http://ring.asahi-net.or.jp sid/main tasksel 2.28 [154kB]
-Get:53 http://ring.asahi-net.or.jp sid/main whiptail 0.51.6-28 [32.4kB]
-Get:54 http://ring.asahi-net.or.jp sid/main libnewt0.51 0.51.6-28 [59.1kB]
-Get:55 http://ring.asahi-net.or.jp sid/main gcc-4.0-base 4.0.1-2 [174kB]
-Get:56 http://ring.asahi-net.or.jp sid/main cpp-4.0 4.0.1-2 [2038kB]
-Get:57 http://ring.asahi-net.or.jp sid/main cpp 4:4.0.0-2 [30.4kB]
-Get:58 http://ring.asahi-net.or.jp sid/main dpkg-dev 1.13.10 [163kB]
-Get:59 http://ring.asahi-net.or.jp sid/main gcc-4.0 4.0.1-2 [495kB]
-Get:60 http://ring.asahi-net.or.jp sid/main gcc 4:4.0.0-2 [4914B]
-Get:61 http://ring.asahi-net.or.jp sid/main libstdc++6 4.0.1-2 [353kB]
-Get:62 http://ring.asahi-net.or.jp sid/main libstdc++6-4.0-dev 4.0.1-2 [1516kB]
-Get:63 http://ring.asahi-net.or.jp sid/main g++-4.0 4.0.1-2 [2321kB]
-Get:64 http://ring.asahi-net.or.jp sid/main g++ 4:4.0.0-2 [1388B]
-Get:65 http://ring.asahi-net.or.jp sid/main linux-kernel-headers 2.6.12.0-1 [1474kB]
-Get:66 http://ring.asahi-net.or.jp sid/main mailx 1:8.1.2-0.20050715cvs-1 [155kB]
-Get:67 http://ring.asahi-net.or.jp sid/main telnet 0.17-30 [64.3kB]
-Get:68 http://ring.asahi-net.or.jp sid/main build-essential 11.1 [6834B]
-Get:69 http://ring.asahi-net.or.jp sid/main fdutils 5.5-20050303-1 [347kB]
+ adduser apt apt-utils aptitude bsdutils console-common cpio cpp-3.3 cpp-4.0
+ debconf debconf-i18n debianutils dmidecode e2fslibs e2fsprogs g++-3.3 g++-4.0
+ gcc-3.3 gcc-3.3-base gcc-4.0 gcc-4.0-base ipchains iptables libblkid1 libc6
+ libc6-dev libcomerr2 libdb1-compat libdb4.2 libgcc1 libnewt0.51
+ libpam-modules libpam-runtime libpam0g libslang2 libss2 libssl0.9.7
+ libstdc++5 libstdc++5-3.3-dev libstdc++6 libstdc++6-4.0-dev libuuid1
+ linux-kernel-headers login logrotate make modutils mount nano passwd perl
+ perl-base perl-modules sed tar tasksel telnet util-linux whiptail zlib1g
+60 upgraded, 4 newly installed, 1 to remove and 0 not upgraded.
+Need to get 40.7MB of archives.
+After unpacking 2494kB of additional disk space will be used.
+Get:1 http://ftp.jp.debian.org sid/main linux-kernel-headers 2.6.13+0rc3-1.1 [1544kB]
+Get:2 http://ftp.jp.debian.org sid/main libc6-dev 2.3.5-3 [2678kB]
+Get:3 http://ftp.jp.debian.org sid/main libc6 2.3.5-3 [4927kB]
+Get:4 http://ftp.jp.debian.org sid/main libdb4.2 4.2.52-19 [388kB]
+Get:5 http://ftp.jp.debian.org sid/main libgcc1 1:4.0.1-4 [89.9kB]
+Get:6 http://ftp.jp.debian.org sid/main gcc-4.0-base 4.0.1-4 [175kB]
+Get:7 http://ftp.jp.debian.org sid/main libstdc++6 4.0.1-4 [352kB]
+Get:8 http://ftp.jp.debian.org sid/main apt-utils 0.6.40.1 [199kB]
+Get:9 http://ftp.jp.debian.org sid/main libsigc++-1.2-5c2 1.2.5-5 [21.7kB]
+Get:10 http://ftp.jp.debian.org sid/main aptitude 0.2.15.9-6 [1027kB]
+Get:11 http://ftp.jp.debian.org sid/main apt 0.6.40.1 [1226kB]
+Get:12 http://ftp.jp.debian.org sid/main bsdutils 1:2.12p-5 [66.3kB]
+Get:13 http://ftp.jp.debian.org sid/main debianutils 2.14.2 [56.5kB]
+Get:14 http://ftp.jp.debian.org sid/main e2fslibs 1.38-1.1 [78.5kB]
+Get:15 http://ftp.jp.debian.org sid/main e2fsprogs 1.38-1.1 [522kB]
+Get:16 http://ftp.jp.debian.org sid/main libpam-runtime 0.76-23 [59.1kB]
+Get:17 http://ftp.jp.debian.org sid/main libpam0g 0.76-23 [74.3kB]
+Get:18 http://ftp.jp.debian.org sid/main libpam-modules 0.76-23 [147kB]
+Get:19 http://ftp.jp.debian.org sid/main login 1:4.0.3-39 [579kB]
+Get:20 http://ftp.jp.debian.org sid/main mount 2.12p-5 [140kB]
+Get:21 http://ftp.jp.debian.org sid/main perl-modules 5.8.7-4 [2326kB]
+Get:22 http://ftp.jp.debian.org sid/main perl 5.8.7-4 [3378kB]
+Get:23 http://ftp.jp.debian.org sid/main perl-base 5.8.7-4 [781kB]
+Get:24 http://ftp.jp.debian.org sid/main sed 4.1.4-2 [242kB]
+Get:25 http://ftp.jp.debian.org sid/main tar 1.15.1-2 [756kB]
+Get:26 http://ftp.jp.debian.org sid/main util-linux 2.12p-5 [382kB]
+Get:27 http://ftp.jp.debian.org sid/main lsb-base 3.0-5 [9834B]
+Get:28 http://ftp.jp.debian.org sid/main console-common 0.7.53 [116kB]
+Get:29 http://ftp.jp.debian.org sid/main debconf-i18n 1.4.57 [109kB]
+Get:30 http://ftp.jp.debian.org sid/main debconf 1.4.57 [110kB]
+Get:31 http://ftp.jp.debian.org sid/main libslang2 2.0.4-4 [406kB]
+Get:32 http://ftp.jp.debian.org sid/main libblkid1 1.38-1.1 [42.2kB]
+Get:33 http://ftp.jp.debian.org sid/main libcomerr2 1.38-1.1 [27.3kB]
+Get:34 http://ftp.jp.debian.org sid/main libss2 1.38-1.1 [33.2kB]
+Get:35 http://ftp.jp.debian.org sid/main gcc-3.3-base 1:3.3.6-8 [150kB]
+Get:36 http://ftp.jp.debian.org sid/main libstdc++5 1:3.3.6-8 [295kB]
+Get:37 http://ftp.jp.debian.org sid/main libuuid1 1.38-1.1 [32.1kB]
+Get:38 http://ftp.jp.debian.org sid/main passwd 1:4.0.3-39 [514kB]
+Get:39 http://ftp.jp.debian.org sid/main zlib1g 1:1.2.3-3 [69.0kB]
+Get:40 http://ftp.jp.debian.org sid/main adduser 3.67 [110kB]
+Get:41 http://ftp.jp.debian.org sid/main cpio 2.6-3 [119kB]
+Get:42 http://ftp.jp.debian.org sid/main dmidecode 2.6-2 [47.4kB]
+Get:43 http://ftp.jp.debian.org sid/main iptables 1.3.3-2 [390kB]
+Get:44 http://ftp.jp.debian.org sid/main libncursesw5 5.4-9 [307kB]
+Get:45 http://ftp.jp.debian.org sid/main libssl0.9.7 0.9.7g-1 [2215kB]
+Get:46 http://ftp.jp.debian.org sid/main libselinux1 1.24-4 [46.5kB]
+Get:47 http://ftp.jp.debian.org sid/main logrotate 3.7.1-1 [34.1kB]
+Get:48 http://ftp.jp.debian.org sid/main modutils 2.4.27.0-3 [235kB]
+Get:49 http://ftp.jp.debian.org sid/main nano 1.3.8-2 [403kB]
+Get:50 http://ftp.jp.debian.org sid/main tasksel 2.30 [151kB]
+Get:51 http://ftp.jp.debian.org sid/main whiptail 0.51.6-29 [32.5kB]
+Get:52 http://ftp.jp.debian.org sid/main libnewt0.51 0.51.6-29 [59.4kB]
+Get:53 http://ftp.jp.debian.org sid/main libdb1-compat 2.1.3-8 [33.0kB]
+Get:54 http://ftp.jp.debian.org sid/main cpp-3.3 1:3.3.6-8 [1385kB]
+Get:55 http://ftp.jp.debian.org sid/main gcc-3.3 1:3.3.6-8 [1553kB]
+Get:56 http://ftp.jp.debian.org sid/main libstdc++5-3.3-dev 1:3.3.6-8 [775kB]
+Get:57 http://ftp.jp.debian.org sid/main g++-3.3 1:3.3.6-8 [1772kB]
+Get:58 http://ftp.jp.debian.org sid/main make 3.80-11 [367kB]
+Get:59 http://ftp.jp.debian.org sid/main telnet 0.17-30 [64.3kB]
+Get:60 http://ftp.jp.debian.org sid/main gcc-4.0 4.0.1-4 [502kB]
+Get:61 http://ftp.jp.debian.org sid/main libstdc++6-4.0-dev 4.0.1-4 [1517kB]
+Get:62 http://ftp.jp.debian.org sid/main g++-4.0 4.0.1-4 [2325kB]
+Get:63 http://ftp.jp.debian.org sid/main cpp-4.0 4.0.1-4 [2041kB]
+Get:64 http://ftp.jp.debian.org sid/main ipchains 1.3.10-16 [76.6kB]
Preconfiguring packages ...
-Fetched 34.9MB in 5s (5889kB/s)
-(Reading database ... 11300 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 ... 11299 files and directories currently installed.)
-Preparing to replace e2fslibs 1.37-2sarge1 (using .../e2fslibs_1.38-1_i386.deb) ...
+Fetched 40.7MB in 19s (2042kB/s)
+(Reading database ... 11689 files and directories currently installed.)
+Preparing to replace linux-kernel-headers 2.5.999-test7-bk-17 (using .../linux-kernel-headers_2.6.13+0rc3-1.1_i386.deb) ...
+Unpacking replacement linux-kernel-headers ...
+Preparing to replace libc6-dev 2.3.2.ds1-22 (using .../libc6-dev_2.3.5-3_i386.deb) ...
+Unpacking replacement libc6-dev ...
+Preparing to replace libc6 2.3.2.ds1-22 (using .../libc6_2.3.5-3_i386.deb) ...
+Unpacking replacement libc6 ...
+Setting up libc6 (2.3.5-3) ...
+Current default timezone: 'UTC'.
+Local time is now: Mon Aug 15 23:07:01 UTC 2005.
+Universal Time is now: Mon Aug 15 23:07:01 UTC 2005.
+Run 'tzconfig' if you wish to change it.
+
+(Reading database ... 11795 files and directories currently installed.)
+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.1-2 (using .../libgcc1_1%3a4.0.1-4_i386.deb) ...
+Unpacking replacement libgcc1 ...
+Setting up libgcc1 (4.0.1-4) ...
+
+(Reading database ... 11795 files and directories currently installed.)
+Preparing to replace gcc-4.0-base 4.0.1-2 (using .../gcc-4.0-base_4.0.1-4_i386.deb) ...
+Unpacking replacement gcc-4.0-base ...
+Preparing to replace libstdc++6 4.0.1-2 (using .../libstdc++6_4.0.1-4_i386.deb) ...
+Unpacking replacement libstdc++6 ...
+Setting up gcc-4.0-base (4.0.1-4) ...
+Setting up libstdc++6 (4.0.1-4) ...
+
+(Reading database ... 11795 files and directories currently installed.)
+Preparing to replace apt-utils 0.5.28.6 (using .../apt-utils_0.6.40.1_i386.deb) ...
+Unpacking replacement apt-utils ...
+dpkg: libsigc++-1.2-5c102: dependency problems, but removing anyway as you request:
+ aptitude depends on libsigc++-1.2-5c102; however:
+ Package libsigc++-1.2-5c102 is to be removed.
+(Reading database ... 11795 files and directories currently installed.)
+Removing libsigc++-1.2-5c102 ...
+Selecting previously deselected package libsigc++-1.2-5c2.
+(Reading database ... 11789 files and directories currently installed.)
+Unpacking libsigc++-1.2-5c2 (from .../libsigc++-1.2-5c2_1.2.5-5_i386.deb) ...
+Preparing to replace aptitude 0.2.15.9-2 (using .../aptitude_0.2.15.9-6_i386.deb) ...
+Unpacking replacement aptitude ...
+Preparing to replace apt 0.5.28.6 (using .../archives/apt_0.6.40.1_i386.deb) ...
+Unpacking replacement apt ...
+Setting up apt (0.6.40.1) ...
+
+(Reading database ... 11762 files and directories currently installed.)
+Preparing to replace bsdutils 1:2.12p-4 (using .../bsdutils_1%3a2.12p-5_i386.deb) ...
+Unpacking replacement bsdutils ...
+Setting up bsdutils (2.12p-5) ...
+
+(Reading database ... 11762 files and directories currently installed.)
+Preparing to replace debianutils 2.14.1 (using .../debianutils_2.14.2_i386.deb) ...
+Unpacking replacement debianutils ...
+Setting up debianutils (2.14.2) ...
+
+(Reading database ... 11771 files and directories currently installed.)
+Preparing to replace e2fslibs 1.37-2sarge1 (using .../e2fslibs_1.38-1.1_i386.deb) ...
Unpacking replacement e2fslibs ...
-Setting up e2fslibs (1.38-1) ...
+Setting up e2fslibs (1.38-1.1) ...
-(Reading database ... 11299 files and directories currently installed.)
-Preparing to replace e2fsprogs 1.37-2sarge1 (using .../e2fsprogs_1.38-1_i386.deb) ...
+(Reading database ... 11771 files and directories currently installed.)
+Preparing to replace e2fsprogs 1.37-2sarge1 (using .../e2fsprogs_1.38-1.1_i386.deb) ...
Unpacking replacement e2fsprogs ...
-Setting up e2fsprogs (1.38-1) ...
-(Reading database ... 11301 files and directories currently installed.)
-Preparing to replace gzip 1.3.5-10 (using .../gzip_1.3.5-12_i386.deb) ...
-Unpacking replacement gzip ...
-Setting up gzip (1.3.5-12) ...
-
-(Reading database ... 11301 files and directories currently installed.)
+Setting up e2fsprogs (1.38-1.1) ...
+(Reading database ... 11773 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 ... 11301 files and directories currently installed.)
+(Reading database ... 11773 files and directories currently installed.)
Preparing to replace libpam0g 0.76-22 (using .../libpam0g_0.76-23_i386.deb) ...
Unpacking replacement libpam0g ...
Setting up libpam0g (0.76-23) ...
-(Reading database ... 11301 files and directories currently installed.)
+(Reading database ... 11773 files and directories currently installed.)
Preparing to replace libpam-modules 0.76-22 (using .../libpam-modules_0.76-23_i386.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 ... 11301 files and directories currently installed.)
-Preparing to replace login 1:4.0.3-35 (using .../login_1%3a4.0.3-38_i386.deb) ...
+(Reading database ... 11773 files and directories currently installed.)
+Preparing to replace login 1:4.0.3-35 (using .../login_1%3a4.0.3-39_i386.deb) ...
Unpacking replacement login ...
-Setting up login (4.0.3-38) ...
+Setting up login (4.0.3-39) ...
Installing new version of config file /etc/login.defs ...
-(Reading database ... 11299 files and directories currently installed.)
-Preparing to replace libncurses5 5.4-4 (using .../libncurses5_5.4-9_i386.deb) ...
-Unpacking replacement libncurses5 ...
-Setting up libncurses5 (5.4-9) ...
+(Reading database ... 11772 files and directories currently installed.)
+Preparing to replace mount 2.12p-4 (using .../mount_2.12p-5_i386.deb) ...
+Unpacking replacement mount ...
+Setting up mount (2.12p-5) ...
-(Reading database ... 11300 files and directories currently installed.)
-Preparing to replace ncurses-bin 5.4-4 (using .../ncurses-bin_5.4-9_i386.deb) ...
-Unpacking replacement ncurses-bin ...
-Setting up ncurses-bin (5.4-9) ...
-(Reading database ... 11300 files and directories currently installed.)
+(Reading database ... 11772 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_i386.deb) ...
-Unpacking replacement libdb4.2 ...
Preparing to replace perl 5.8.7-3 (using .../archives/perl_5.8.7-4_i386.deb) ...
Unpacking replacement perl ...
Preparing to replace perl-base 5.8.7-3 (using .../perl-base_5.8.7-4_i386.deb) ...
Unpacking replacement perl-base ...
Setting up perl-base (5.8.7-4) ...
-(Reading database ... 11315 files and directories currently installed.)
+(Reading database ... 11787 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 ... 11316 files and directories currently installed.)
+(Reading database ... 11788 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 ... 11320 files and directories currently installed.)
-Preparing to replace base-files 3.1.5 (using .../base-files_3.1.6_i386.deb) ...
-Unpacking replacement base-files ...
-dpkg: warning - unable to delete old file `/usr/doc': Directory not empty
-Setting up base-files (3.1.6) ...
-
-(Reading database ... 11318 files and directories currently installed.)
-Preparing to replace ncurses-base 5.4-4 (using .../ncurses-base_5.4-9_all.deb) ...
-Removing obsolete conffile /etc/terminfo/x/xterm-color ...
-Removing obsolete conffile /etc/terminfo/x/xterm-vt220 ...
-Removing obsolete conffile /etc/terminfo/x/xterm-mono ...
-Removing obsolete conffile /etc/terminfo/x/xterm-xfree86 ...
-Removing obsolete conffile /etc/terminfo/x/xterm-r6 ...
-Removing obsolete conffile /etc/terminfo/x/xterm-r5 ...
-Removing obsolete conffile /etc/terminfo/x/xterm-debian ...
-Removing obsolete conffile /etc/terminfo/x/xterm ...
-Removing obsolete conffile /etc/terminfo/w/wsvt25m ...
-Removing obsolete conffile /etc/terminfo/w/wsvt25 ...
-Removing obsolete conffile /etc/terminfo/v/vt52 ...
-Removing obsolete conffile /etc/terminfo/v/vt220 ...
-Removing obsolete conffile /etc/terminfo/v/vt102 ...
-Removing obsolete conffile /etc/terminfo/v/vt100 ...
-Removing obsolete conffile /etc/terminfo/s/sun ...
-Removing obsolete conffile /etc/terminfo/s/screen-w ...
-Removing obsolete conffile /etc/terminfo/s/screen-s ...
-Removing obsolete conffile /etc/terminfo/s/screen-bce ...
-Removing obsolete conffile /etc/terminfo/s/screen ...
-Removing obsolete conffile /etc/terminfo/r/rxvt-m ...
-Removing obsolete conffile /etc/terminfo/r/rxvt-basic ...
-Removing obsolete conffile /etc/terminfo/r/rxvt ...
-Removing obsolete conffile /etc/terminfo/p/pcansi ...
-Removing obsolete conffile /etc/terminfo/m/mach-color ...
-Removing obsolete conffile /etc/terminfo/m/mach-bold ...
-Removing obsolete conffile /etc/terminfo/m/mach ...
-Removing obsolete conffile /etc/terminfo/l/linux ...
-Removing obsolete conffile /etc/terminfo/h/hurd ...
-Removing obsolete conffile /etc/terminfo/d/dumb ...
-Removing obsolete conffile /etc/terminfo/c/cygwin ...
-Removing obsolete conffile /etc/terminfo/c/cons25 ...
-Removing obsolete conffile /etc/terminfo/a/ansi ...
-Removing obsolete conffile /etc/terminfo/E/Eterm-color ...
-Removing obsolete conffile /etc/terminfo/E/Eterm ...
-Unpacking replacement ncurses-base ...
-Setting up ncurses-base (5.4-9) ...
-(Reading database ... 11322 files and directories currently installed.)
-Preparing to replace console-common 0.7.51 (using .../console-common_0.7.52_all.deb) ...
-Unpacking replacement console-common ...
-Preparing to replace libgcc1 1:4.0.0-9 (using .../libgcc1_1%3a4.0.1-2_i386.deb) ...
-Unpacking replacement libgcc1 ...
-Setting up libgcc1 (4.0.1-2) ...
+(Reading database ... 11792 files and directories currently installed.)
+Preparing to replace util-linux 2.12p-4 (using .../util-linux_2.12p-5_i386.deb) ...
+Unpacking replacement util-linux ...
+Setting up util-linux (2.12p-5) ...
-(Reading database ... 11325 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) ...
+Selecting previously deselected package lsb-base.
+(Reading database ... 11792 files and directories currently installed.)
+Unpacking lsb-base (from .../lsb-base_3.0-5_all.deb) ...
+Preparing to replace console-common 0.7.52 (using .../console-common_0.7.53_all.deb) ...
+Unpacking replacement console-common ...
+Preparing to replace debconf-i18n 1.4.52 (using .../debconf-i18n_1.4.57_all.deb) ...
+Unpacking replacement debconf-i18n ...
+Preparing to replace debconf 1.4.52 (using .../debconf_1.4.57_all.deb) ...
+Unpacking replacement debconf ...
+Preparing to replace libslang2 2.0.4-2 (using .../libslang2_2.0.4-4_i386.deb) ...
+Unpacking replacement libslang2 ...
+Setting up libslang2 (2.0.4-4) ...
-(Reading database ... 11319 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 ... 11317 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 ... 11317 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 ... 11317 files and directories currently installed.)
-Preparing to replace libblkid1 1.37-2sarge1 (using .../libblkid1_1.38-1_i386.deb) ...
+(Reading database ... 11798 files and directories currently installed.)
+Preparing to replace libblkid1 1.37-2sarge1 (using .../libblkid1_1.38-1.1_i386.deb) ...
Unpacking replacement libblkid1 ...
-Setting up libblkid1 (1.38-1) ...
+Setting up libblkid1 (1.38-1.1) ...
-(Reading database ... 11317 files and directories currently installed.)
-Preparing to replace libcomerr2 1.37-2sarge1 (using .../libcomerr2_1.38-1_i386.deb) ...
+(Reading database ... 11798 files and directories currently installed.)
+Preparing to replace libcomerr2 1.37-2sarge1 (using .../libcomerr2_1.38-1.1_i386.deb) ...
Unpacking replacement libcomerr2 ...
-Setting up libcomerr2 (1.38-1) ...
+Setting up libcomerr2 (1.38-1.1) ...
-(Reading database ... 11317 files and directories currently installed.)
-Preparing to replace libss2 1.37-2sarge1 (using .../libss2_1.38-1_i386.deb) ...
+(Reading database ... 11798 files and directories currently installed.)
+Preparing to replace libss2 1.37-2sarge1 (using .../libss2_1.38-1.1_i386.deb) ...
Unpacking replacement libss2 ...
-Setting up libss2 (1.38-1) ...
+Setting up libss2 (1.38-1.1) ...
-(Reading database ... 11317 files and directories currently installed.)
-Preparing to replace libuuid1 1.37-2sarge1 (using .../libuuid1_1.38-1_i386.deb) ...
+(Reading database ... 11798 files and directories currently installed.)
+Preparing to replace gcc-3.3-base 1:3.3.6-7 (using .../gcc-3.3-base_1%3a3.3.6-8_i386.deb) ...
+Unpacking replacement gcc-3.3-base ...
+Preparing to replace libstdc++5 1:3.3.6-7 (using .../libstdc++5_1%3a3.3.6-8_i386.deb) ...
+Unpacking replacement libstdc++5 ...
+Setting up gcc-3.3-base (3.3.6-8) ...
+Setting up libstdc++5 (3.3.6-8) ...
+
+(Reading database ... 11798 files and directories currently installed.)
+Preparing to replace libuuid1 1.37-2sarge1 (using .../libuuid1_1.38-1.1_i386.deb) ...
Unpacking replacement libuuid1 ...
-Setting up libuuid1 (1.38-1) ...
+Setting up libuuid1 (1.38-1.1) ...
-(Reading database ... 11317 files and directories currently installed.)
-Preparing to replace passwd 1:4.0.3-35 (using .../passwd_1%3a4.0.3-38_i386.deb) ...
+(Reading database ... 11798 files and directories currently installed.)
+Preparing to replace passwd 1:4.0.3-35 (using .../passwd_1%3a4.0.3-39_i386.deb) ...
Unpacking replacement passwd ...
-Setting up passwd (4.0.3-38) ...
+Setting up passwd (4.0.3-39) ...
-(Reading database ... 11313 files and directories currently installed.)
-Preparing to replace zlib1g 1:1.2.2-4 (using .../zlib1g_1%3a1.2.3-1_i386.deb) ...
+(Reading database ... 11795 files and directories currently installed.)
+Preparing to replace zlib1g 1:1.2.2-4 (using .../zlib1g_1%3a1.2.3-3_i386.deb) ...
Unpacking replacement zlib1g ...
-Setting up zlib1g (1.2.3-1) ...
+Setting up zlib1g (1.2.3-3) ...
-(Reading database ... 11313 files and directories currently installed.)
-Preparing to replace adduser 3.64 (using .../archives/adduser_3.65_all.deb) ...
+(Reading database ... 11795 files and directories currently installed.)
+Preparing to replace adduser 3.66 (using .../archives/adduser_3.67_all.deb) ...
Unpacking replacement adduser ...
-Preparing to replace base-config 2.65 (using .../base-config_2.69_all.deb) ...
-Unpacking replacement base-config ...
-Selecting previously deselected package dmidecode.
-Unpacking dmidecode (from .../dmidecode_2.6-2_i386.deb) ...
-Selecting previously deselected package laptop-detect.
-Unpacking laptop-detect (from .../laptop-detect_0.12.1_i386.deb) ...
-Preparing to replace libgpg-error0 1.0-1 (using .../libgpg-error0_1.1-1_i386.deb) ...
-Unpacking replacement libgpg-error0 ...
-Preparing to replace libgcrypt11 1.2.0-11.1 (using .../libgcrypt11_1.2.1-4_i386.deb) ...
-Unpacking replacement libgcrypt11 ...
+Preparing to replace cpio 2.5-1.2 (using .../archives/cpio_2.6-3_i386.deb) ...
+Unpacking replacement cpio ...
+Preparing to replace dmidecode 2.6-1 (using .../dmidecode_2.6-2_i386.deb) ...
+Unpacking replacement dmidecode ...
+Preparing to replace iptables 1.3.1-2 (using .../iptables_1.3.3-2_i386.deb) ...
+Unpacking replacement iptables ...
Selecting previously deselected package libncursesw5.
Unpacking libncursesw5 (from .../libncursesw5_5.4-9_i386.deb) ...
-Preparing to replace libopencdk8 0.5.5-10 (using .../libopencdk8_0.5.7-2_i386.deb) ...
-Unpacking replacement libopencdk8 ...
-Preparing to replace libslang2 2.0.4-2 (using .../libslang2_2.0.4-4_i386.deb) ...
-Unpacking replacement libslang2 ...
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 libtasn1-2 0.2.10-4 (using .../libtasn1-2_0.2.13-1_i386.deb) ...
-Unpacking replacement libtasn1-2 ...
+Selecting previously deselected package libselinux1.
+Unpacking libselinux1 (from .../libselinux1_1.24-4_i386.deb) ...
+Preparing to replace logrotate 3.7-5 (using .../logrotate_3.7.1-1_i386.deb) ...
+Unpacking replacement logrotate ...
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.8-2_i386.deb) ...
Unpacking replacement nano ...
-Preparing to replace netkit-inetd 0.10-10.1 (using .../netkit-inetd_0.10-10.2_i386.deb) ...
-Unpacking replacement netkit-inetd ...
-Preparing to replace tasksel 2.25 (using .../archives/tasksel_2.28_all.deb) ...
+Preparing to replace tasksel 2.28 (using .../archives/tasksel_2.30_all.deb) ...
Unpacking replacement tasksel ...
-Preparing to replace whiptail 0.51.6-26 (using .../whiptail_0.51.6-28_i386.deb) ...
+Preparing to replace whiptail 0.51.6-26 (using .../whiptail_0.51.6-29_i386.deb) ...
Unpacking replacement whiptail ...
-Preparing to replace libnewt0.51 0.51.6-26 (using .../libnewt0.51_0.51.6-28_i386.deb) ...
+Preparing to replace libnewt0.51 0.51.6-26 (using .../libnewt0.51_0.51.6-29_i386.deb) ...
Unpacking replacement libnewt0.51 ...
-Selecting previously deselected package gcc-4.0-base.
-Unpacking gcc-4.0-base (from .../gcc-4.0-base_4.0.1-2_i386.deb) ...
-Selecting previously deselected package cpp-4.0.
-Unpacking cpp-4.0 (from .../cpp-4.0_4.0.1-2_i386.deb) ...
-Preparing to replace cpp 4:3.3.5-3 (using .../cpp_4%3a4.0.0-2_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 ...
-Selecting previously deselected package gcc-4.0.
-Unpacking gcc-4.0 (from .../gcc-4.0_4.0.1-2_i386.deb) ...
-Preparing to replace gcc 4:3.3.5-3 (using .../gcc_4%3a4.0.0-2_i386.deb) ...
-Removing old gcc doc directory.
-Unpacking replacement gcc ...
-Selecting previously deselected package libstdc++6.
-Unpacking libstdc++6 (from .../libstdc++6_4.0.1-2_i386.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-2_i386.deb) ...
-Selecting previously deselected package g++-4.0.
-Unpacking g++-4.0 (from .../g++-4.0_4.0.1-2_i386.deb) ...
-Preparing to replace g++ 4:3.3.5-3 (using .../g++_4%3a4.0.0-2_i386.deb) ...
-Unpacking replacement g++ ...
-Preparing to replace linux-kernel-headers 2.5.999-test7-bk-17 (using .../linux-kernel-headers_2.6.12.0-1_i386.deb) ...
-Unpacking replacement linux-kernel-headers ...
-Preparing to replace mailx 1:8.1.2-0.20040524cvs-4 (using .../mailx_1%3a8.1.2-0.20050715cvs-1_i386.deb) ...
-Unpacking replacement mailx ...
+Preparing to replace libdb1-compat 2.1.3-7 (using .../libdb1-compat_2.1.3-8_i386.deb) ...
+Unpacking replacement libdb1-compat ...
+Preparing to replace cpp-3.3 1:3.3.6-7 (using .../cpp-3.3_1%3a3.3.6-8_i386.deb) ...
+Unpacking replacement cpp-3.3 ...
+Preparing to replace gcc-3.3 1:3.3.6-7 (using .../gcc-3.3_1%3a3.3.6-8_i386.deb) ...
+Unpacking replacement gcc-3.3 ...
+Preparing to replace libstdc++5-3.3-dev 1:3.3.6-7 (using .../libstdc++5-3.3-dev_1%3a3.3.6-8_i386.deb) ...
+Unpacking replacement libstdc++5-3.3-dev ...
+Preparing to replace g++-3.3 1:3.3.6-7 (using .../g++-3.3_1%3a3.3.6-8_i386.deb) ...
+Unpacking replacement g++-3.3 ...
+Preparing to replace make 3.80-9 (using .../archives/make_3.80-11_i386.deb) ...
+Unpacking replacement make ...
Preparing to replace telnet 0.17-29 (using .../telnet_0.17-30_i386.deb) ...
Unpacking replacement telnet ...
-Preparing to replace build-essential 10.1 (using .../build-essential_11.1_i386.deb) ...
-Unpacking replacement build-essential ...
-Preparing to replace fdutils 5.4-20040228-1 (using .../fdutils_5.5-20050303-1_i386.deb) ...
-Unpacking replacement fdutils ...
+Preparing to replace gcc-4.0 4.0.1-2 (using .../gcc-4.0_4.0.1-4_i386.deb) ...
+Unpacking replacement gcc-4.0 ...
+Preparing to replace libstdc++6-4.0-dev 4.0.1-2 (using .../libstdc++6-4.0-dev_4.0.1-4_i386.deb) ...
+Unpacking replacement libstdc++6-4.0-dev ...
+Preparing to replace g++-4.0 4.0.1-2 (using .../g++-4.0_4.0.1-4_i386.deb) ...
+Unpacking replacement g++-4.0 ...
+Preparing to replace cpp-4.0 4.0.1-2 (using .../cpp-4.0_4.0.1-4_i386.deb) ...
+Unpacking replacement cpp-4.0 ...
+Preparing to replace ipchains 1.3.10-15 (using .../ipchains_1.3.10-16_i386.deb) ...
+Unpacking replacement ipchains ...
+Setting up linux-kernel-headers (2.6.13+0rc3-1.1) ...
+Setting up libc6-dev (2.3.5-3) ...
Setting up libdb4.2 (4.2.52-19) ...
-Setting up console-common (0.7.52) ...
-Looking for keymap to install:
-NONE
+Setting up apt-utils (0.6.40.1) ...
-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 libsigc++-1.2-5c2 (1.2.5-5) ...
-Setting up aptitude (0.2.15.9-3) ...
+Setting up aptitude (0.2.15.9-6) ...
-Setting up adduser (3.65) ...
-
-Setting up base-config (2.69) ...
+Setting up lsb-base (3.0-5) ...
+Setting up cpio (2.6-3) ...
Setting up dmidecode (2.6-2) ...
-Setting up laptop-detect (0.12.1) ...
-Setting up libgpg-error0 (1.1-1) ...
-
-Setting up libgcrypt11 (1.2.1-4) ...
+Setting up iptables (1.3.3-2) ...
Setting up libncursesw5 (5.4-9) ...
-Setting up libopencdk8 (0.5.7-2) ...
-
-Setting up libslang2 (2.0.4-4) ...
-
-Setting up libssl0.9.7 (0.9.7g-1) ...
-
-Setting up libtasn1-2 (0.2.13-1) ...
+Setting up libselinux1 (1.24-4) ...
+Setting up logrotate (3.7.1-1) ...
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 ...
@@ -399,42 +343,42 @@ Installing new version of config file /etc/modutils/actions ...
Setting up nano (1.3.8-2) ...
Installing new version of config file /etc/nanorc ...
-Setting up netkit-inetd (0.10-10.2) ...
-Restarting internet superserver: inetd.
+Setting up libnewt0.51 (0.51.6-29) ...
-Setting up tasksel (2.28) ...
+Setting up whiptail (0.51.6-29) ...
+Setting up libdb1-compat (2.1.3-8) ...
-Setting up libnewt0.51 (0.51.6-28) ...
+Setting up cpp-3.3 (3.3.6-8) ...
+Setting up gcc-3.3 (3.3.6-8) ...
+Setting up make (3.80-11) ...
-Setting up whiptail (0.51.6-28) ...
-Setting up gcc-4.0-base (4.0.1-2) ...
-Setting up cpp-4.0 (4.0.1-2) ...
-Setting up cpp (4.0.0-2) ...
-Setting up gcc-4.0 (4.0.1-2) ...
-Setting up gcc (4.0.0-2) ...
+Setting up telnet (0.17-30) ...
+
+Setting up cpp-4.0 (4.0.1-4) ...
+Setting up gcc-4.0 (4.0.1-4) ...
+Setting up perl-modules (5.8.7-4) ...
+Setting up debconf-i18n (1.4.57) ...
+Setting up libstdc++5-3.3-dev (3.3.6-8) ...
+Setting up libstdc++6-4.0-dev (4.0.1-4) ...
+Setting up perl (5.8.7-4) ...
-Setting up libstdc++6 (4.0.1-2) ...
+Setting up debconf (1.4.57) ...
-Setting up linux-kernel-headers (2.6.12.0-1) ...
-Setting up mailx (8.1.2-0.20050715cvs-1) ...
+Setting up adduser (3.67) ...
-Setting up telnet (0.17-30) ...
+Setting up libssl0.9.7 (0.9.7g-1) ...
-Setting up fdutils (5.5-20050303-1) ...
+Setting up tasksel (2.30) ...
-Setting up libstdc++6-4.0-dev (4.0.1-2) ...
-Setting up perl-modules (5.8.7-4) ...
-Setting up libstdc++5-3.3-dev (3.3.6-7) ...
-Setting up g++-4.0 (4.0.1-2) ...
-Setting up g++ (4.0.0-2) ...
+Setting up g++-3.3 (3.3.6-8) ...
+Setting up g++-4.0 (4.0.1-4) ...
+Setting up ipchains (1.3.10-16) ...
-Setting up perl (5.8.7-4) ...
+Setting up console-common (0.7.53) ...
+Installing new version of config file /etc/init.d/keymap.sh ...
+Looking for keymap to install:
+NONE
-Setting up g++-3.3 (3.3.6-7) ...
-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.
@@ -443,6 +387,6 @@ 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.YJi8Z9/testimage]
+ -> creating base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/testimage]
-> cleaning the build env
- -> removing directory /var/cache/pbuilder/build//29193 and its subdirectories
+ -> removing directory /var/cache/pbuilder/build//20574 and its subdirectories
diff --git a/testsuite/normal/pbuilder-update-sarge-etch.log b/testsuite/normal/pbuilder-update-sarge-etch.log
index 8e7d441..d2d7607 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.YJi8Z9/testimage]
+ -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/testimage]
-> creating local configuration
-> copying local configuration
-> mounting /proc filesystem
@@ -9,89 +9,126 @@ Building the build Environment
-> Installing apt-lines
Refreshing the base.tgz
-> upgrading packages
-Get:1 http://ring.asahi-net.or.jp etch/main Packages [3544kB]
-Get:2 http://ring.asahi-net.or.jp etch/main Release [81B]
-Fetched 3544kB in 1s (3073kB/s)
+Get:1 http://ftp.jp.debian.org etch/main Packages [3489kB]
+Get:2 http://ftp.jp.debian.org etch/main Release [81B]
+Fetched 3489kB in 2s (1511kB/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
+ cpp-4.0 dmidecode g++-4.0 gcc-4.0 gcc-4.0-base laptop-detect libslang2
+ libstdc++6 libstdc++6-4.0-dev
The following packages will be upgraded:
- adduser base-config base-files base-passwd bash binutils bsdmainutils
- console-common cron debconf debconf-i18n debianutils exim4 exim4-base
- exim4-config exim4-daemon-light findutils gettext-base grep groff-base
- iptables libattr1 libgcc1 liblocale-gettext-perl liblzo1 libnewt0.51 libpcre3
- libtasn1-2 libtext-charwidth-perl libtext-iconv-perl libtext-wrapi18n-perl
- login makedev man-db manpages net-tools netkit-inetd passwd perl perl-base
- perl-modules procps psmisc tasksel wget whiptail
-46 upgraded, 1 newly installed, 0 to remove and 0 not upgraded.
-Need to get 18.2MB of archives.
-After unpacking 3481kB of additional disk space will be used.
-Get:1 http://ring.asahi-net.or.jp etch/main base-passwd 3.5.10 [34.7kB]
-Get:2 http://ring.asahi-net.or.jp etch/main base-files 3.1.5 [34.5kB]
-Get:3 http://ring.asahi-net.or.jp etch/main libpcre3 5.0-1.1 [159kB]
-Get:4 http://ring.asahi-net.or.jp etch/main exim4-daemon-light 4.52-1 [379kB]
-Get:5 http://ring.asahi-net.or.jp etch/main debianutils 2.14.1 [43.4kB]
-Get:6 http://ring.asahi-net.or.jp etch/main perl-modules 5.8.7-3 [2326kB]
-Get:7 http://ring.asahi-net.or.jp etch/main perl 5.8.7-3 [3371kB]
-Get:8 http://ring.asahi-net.or.jp etch/main perl-base 5.8.7-3 [749kB]
-Get:9 http://ring.asahi-net.or.jp etch/main liblocale-gettext-perl 1.05-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.52 [109kB]
-Get:14 http://ring.asahi-net.or.jp etch/main debconf 1.4.52 [109kB]
-Get:15 http://ring.asahi-net.or.jp etch/main adduser 3.64 [99.8kB]
-Get:16 http://ring.asahi-net.or.jp etch/main cron 3.0pl1-87 [58.8kB]
-Get:17 http://ring.asahi-net.or.jp etch/main exim4-config 4.52-1 [247kB]
-Get:18 http://ring.asahi-net.or.jp etch/main exim4-base 4.52-1 [834kB]
-Get:19 http://ring.asahi-net.or.jp etch/main login 1:4.0.3-35 [591kB]
-Get:20 http://ring.asahi-net.or.jp etch/main passwd 1:4.0.3-35 [533kB]
-Get:21 http://ring.asahi-net.or.jp etch/main bash 3.0-15 [793kB]
-Get:22 http://ring.asahi-net.or.jp etch/main findutils 4.2.22-2 [301kB]
-Get:23 http://ring.asahi-net.or.jp etch/main grep 2.5.1.ds1-5 [170kB]
-Get:24 http://ring.asahi-net.or.jp etch/main console-common 0.7.51 [108kB]
-Get:25 http://ring.asahi-net.or.jp etch/main libgcc1 1:4.0.0-9 [84.1kB]
-Get:26 http://ring.asahi-net.or.jp etch/main tasksel 2.25 [137kB]
-Get:27 http://ring.asahi-net.or.jp etch/main gettext-base 0.14.5-2 [101kB]
-Get:28 http://ring.asahi-net.or.jp etch/main base-config 2.65 [324kB]
-Get:29 http://ring.asahi-net.or.jp etch/main bsdmainutils 6.1.2 [170kB]
-Get:30 http://ring.asahi-net.or.jp etch/main groff-base 1.18.1.1-8 [832kB]
-Get:31 http://ring.asahi-net.or.jp etch/main iptables 1.3.1-2 [397kB]
-Get:32 http://ring.asahi-net.or.jp etch/main liblzo1 1.08-2 [48.4kB]
-Get:33 http://ring.asahi-net.or.jp etch/main libslang2 2.0.4-2 [408kB]
-Get:34 http://ring.asahi-net.or.jp etch/main libtasn1-2 0.2.10-4 [42.5kB]
-Get:35 http://ring.asahi-net.or.jp etch/main man-db 2.4.3-1 [658kB]
-Get:36 http://ring.asahi-net.or.jp etch/main manpages 2.02-2 [392kB]
-Get:37 http://ring.asahi-net.or.jp etch/main net-tools 1.60-15 [248kB]
-Get:38 http://ring.asahi-net.or.jp etch/main netkit-inetd 0.10-10.1 [30.9kB]
-Get:39 http://ring.asahi-net.or.jp etch/main wget 1.10-3+1.10.1beta1 [451kB]
-Get:40 http://ring.asahi-net.or.jp etch/main whiptail 0.51.6-26 [32.5kB]
-Get:41 http://ring.asahi-net.or.jp etch/main libnewt0.51 0.51.6-26 [57.8kB]
-Get:42 http://ring.asahi-net.or.jp etch/main libattr1 2.4.21-1.0.1 [7854B]
-Get:43 http://ring.asahi-net.or.jp etch/main makedev 2.3.1-78 [40.9kB]
-Get:44 http://ring.asahi-net.or.jp etch/main procps 1:3.2.5-1 [215kB]
-Get:45 http://ring.asahi-net.or.jp etch/main binutils 2.16.1-2 [2378kB]
-Get:46 http://ring.asahi-net.or.jp etch/main exim4 4.52-1 [1834B]
-Get:47 http://ring.asahi-net.or.jp etch/main psmisc 21.6-1 [58.9kB]
+ adduser at base-config base-files base-passwd bash binutils bsdmainutils
+ build-essential console-common cpp cpp-3.3 cron debconf debconf-i18n
+ debianutils dpkg dpkg-dev dselect exim4 exim4-base exim4-config
+ exim4-daemon-light fdutils findutils g++ g++-3.3 gcc gcc-3.3 gcc-3.3-base
+ gettext-base grep groff-base gzip iptables libacl1 libattr1 libgcc1
+ libgcrypt11 libgpg-error0 liblocale-gettext-perl liblzo1 libncurses5
+ libnewt0.51 libopencdk8 libpcre3 libstdc++5 libstdc++5-3.3-dev libtasn1-2
+ libtext-charwidth-perl libtext-iconv-perl libtext-wrapi18n-perl login mailx
+ makedev man-db manpages ncurses-base ncurses-bin net-tools netkit-inetd
+ passwd perl perl-base perl-modules procps psmisc tasksel wget whiptail
+70 upgraded, 9 newly installed, 0 to remove and 0 not upgraded.
+Need to get 34.8MB of archives.
+After unpacking 24.5MB of additional disk space will be used.
+Get:1 http://ftp.jp.debian.org etch/main base-passwd 3.5.10 [34.7kB]
+Get:2 http://ftp.jp.debian.org etch/main base-files 3.1.6 [34.6kB]
+Get:3 http://ftp.jp.debian.org etch/main libpcre3 5.0-1.1 [159kB]
+Get:4 http://ftp.jp.debian.org etch/main exim4-daemon-light 4.52-1 [379kB]
+Get:5 http://ftp.jp.debian.org etch/main debianutils 2.14.1 [43.4kB]
+Get:6 http://ftp.jp.debian.org etch/main perl-modules 5.8.7-3 [2326kB]
+Get:7 http://ftp.jp.debian.org etch/main perl 5.8.7-3 [3371kB]
+Get:8 http://ftp.jp.debian.org etch/main perl-base 5.8.7-3 [749kB]
+Get:9 http://ftp.jp.debian.org etch/main liblocale-gettext-perl 1.05-1 [19.9kB]
+Get:10 http://ftp.jp.debian.org etch/main libtext-iconv-perl 1.4-1 [14.9kB]
+Get:11 http://ftp.jp.debian.org etch/main libtext-charwidth-perl 0.04-2 [11.3kB]
+Get:12 http://ftp.jp.debian.org etch/main libtext-wrapi18n-perl 0.06-2 [8528B]
+Get:13 http://ftp.jp.debian.org etch/main debconf-i18n 1.4.52 [109kB]
+Get:14 http://ftp.jp.debian.org etch/main debconf 1.4.52 [109kB]
+Get:15 http://ftp.jp.debian.org etch/main adduser 3.66 [100kB]
+Get:16 http://ftp.jp.debian.org etch/main cron 3.0pl1-87 [58.8kB]
+Get:17 http://ftp.jp.debian.org etch/main exim4-config 4.52-1 [247kB]
+Get:18 http://ftp.jp.debian.org etch/main exim4-base 4.52-1 [834kB]
+Get:19 http://ftp.jp.debian.org etch/main login 1:4.0.3-35 [591kB]
+Get:20 http://ftp.jp.debian.org etch/main passwd 1:4.0.3-35 [533kB]
+Get:21 http://ftp.jp.debian.org etch/main bash 3.0-15 [793kB]
+Get:22 http://ftp.jp.debian.org etch/main dpkg 1.13.10 [1811kB]
+Get:23 http://ftp.jp.debian.org etch/main findutils 4.2.24-1 [373kB]
+Get:24 http://ftp.jp.debian.org etch/main grep 2.5.1.ds1-5 [170kB]
+Get:25 http://ftp.jp.debian.org etch/main gzip 1.3.5-12 [71.1kB]
+Get:26 http://ftp.jp.debian.org etch/main libncurses5 5.4-9 [290kB]
+Get:27 http://ftp.jp.debian.org etch/main ncurses-bin 5.4-9 [208kB]
+Get:28 http://ftp.jp.debian.org etch/main ncurses-base 5.4-9 [12.8kB]
+Get:29 http://ftp.jp.debian.org etch/main console-common 0.7.52 [116kB]
+Get:30 http://ftp.jp.debian.org etch/main libgcc1 1:4.0.1-2 [89.4kB]
+Get:31 http://ftp.jp.debian.org etch/main binutils 2.16.1-2 [2378kB]
+Get:32 http://ftp.jp.debian.org etch/main libstdc++5-3.3-dev 1:3.3.6-7 [775kB]
+Get:33 http://ftp.jp.debian.org etch/main g++-3.3 1:3.3.6-7 [1779kB]
+Get:34 http://ftp.jp.debian.org etch/main gcc-3.3 1:3.3.6-7 [1556kB]
+Get:35 http://ftp.jp.debian.org etch/main cpp-3.3 1:3.3.6-7 [1393kB]
+Get:36 http://ftp.jp.debian.org etch/main gcc-3.3-base 1:3.3.6-7 [150kB]
+Get:37 http://ftp.jp.debian.org etch/main libstdc++5 1:3.3.6-7 [295kB]
+Get:38 http://ftp.jp.debian.org etch/main dselect 1.13.10 [121kB]
+Get:39 http://ftp.jp.debian.org etch/main libattr1 2.4.21-1.0.1 [7854B]
+Get:40 http://ftp.jp.debian.org etch/main libacl1 2.2.29-1.0.1 [13.6kB]
+Get:41 http://ftp.jp.debian.org etch/main dmidecode 2.6-1 [44.8kB]
+Get:42 http://ftp.jp.debian.org etch/main laptop-detect 0.12.1 [2512B]
+Get:43 http://ftp.jp.debian.org etch/main tasksel 2.28 [154kB]
+Get:44 http://ftp.jp.debian.org etch/main gettext-base 0.14.5-2 [101kB]
+Get:45 http://ftp.jp.debian.org etch/main base-config 2.69 [333kB]
+Get:46 http://ftp.jp.debian.org etch/main bsdmainutils 6.1.2 [170kB]
+Get:47 http://ftp.jp.debian.org etch/main groff-base 1.18.1.1-8 [832kB]
+Get:48 http://ftp.jp.debian.org etch/main iptables 1.3.1-2 [397kB]
+Get:49 http://ftp.jp.debian.org etch/main libgpg-error0 1.1-4 [22.8kB]
+Get:50 http://ftp.jp.debian.org etch/main libgcrypt11 1.2.1-4 [180kB]
+Get:51 http://ftp.jp.debian.org etch/main liblzo1 1.08-2 [48.4kB]
+Get:52 http://ftp.jp.debian.org etch/main libopencdk8 0.5.7-2 [96.3kB]
+Get:53 http://ftp.jp.debian.org etch/main libslang2 2.0.4-2 [408kB]
+Get:54 http://ftp.jp.debian.org etch/main libtasn1-2 0.2.13-1 [46.5kB]
+Get:55 http://ftp.jp.debian.org etch/main man-db 2.4.3-1 [658kB]
+Get:56 http://ftp.jp.debian.org etch/main manpages 2.02-2 [392kB]
+Get:57 http://ftp.jp.debian.org etch/main net-tools 1.60-15 [248kB]
+Get:58 http://ftp.jp.debian.org etch/main netkit-inetd 0.10-10.2 [30.6kB]
+Get:59 http://ftp.jp.debian.org etch/main wget 1.10-3+1.10.1beta1 [451kB]
+Get:60 http://ftp.jp.debian.org etch/main whiptail 0.51.6-26 [32.5kB]
+Get:61 http://ftp.jp.debian.org etch/main libnewt0.51 0.51.6-26 [57.8kB]
+Get:62 http://ftp.jp.debian.org etch/main makedev 2.3.1-78 [40.9kB]
+Get:63 http://ftp.jp.debian.org etch/main procps 1:3.2.5-1 [215kB]
+Get:64 http://ftp.jp.debian.org etch/main at 3.1.9 [41.5kB]
+Get:65 http://ftp.jp.debian.org etch/main gcc-4.0-base 4.0.1-2 [174kB]
+Get:66 http://ftp.jp.debian.org etch/main cpp-4.0 4.0.1-2 [2038kB]
+Get:67 http://ftp.jp.debian.org etch/main cpp 4:4.0.1-3 [30.6kB]
+Get:68 http://ftp.jp.debian.org etch/main dpkg-dev 1.13.10 [163kB]
+Get:69 http://ftp.jp.debian.org etch/main exim4 4.52-1 [1834B]
+Get:70 http://ftp.jp.debian.org etch/main gcc-4.0 4.0.1-2 [495kB]
+Get:71 http://ftp.jp.debian.org etch/main gcc 4:4.0.1-3 [4918B]
+Get:72 http://ftp.jp.debian.org etch/main libstdc++6 4.0.1-2 [353kB]
+Get:73 http://ftp.jp.debian.org etch/main libstdc++6-4.0-dev 4.0.1-2 [1516kB]
+Get:74 http://ftp.jp.debian.org etch/main g++-4.0 4.0.1-2 [2321kB]
+Get:75 http://ftp.jp.debian.org etch/main g++ 4:4.0.1-3 [1384B]
+Get:76 http://ftp.jp.debian.org etch/main mailx 1:8.1.2-0.20050715cvs-1 [155kB]
+Get:77 http://ftp.jp.debian.org etch/main build-essential 11.1 [6834B]
+Get:78 http://ftp.jp.debian.org etch/main fdutils 5.5-20050303-1 [347kB]
+Get:79 http://ftp.jp.debian.org etch/main psmisc 21.6-1 [58.9kB]
Preconfiguring packages ...
-Fetched 18.2MB in 3s (5566kB/s)
+Fetched 34.8MB in 14s (2362kB/s)
(Reading database ... 11040 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 ... 11040 files and directories currently installed.)
-Preparing to replace base-files 3.1.2 (using .../base-files_3.1.5_i386.deb) ...
+Preparing to replace base-files 3.1.2 (using .../base-files_3.1.6_i386.deb) ...
Unpacking replacement base-files ...
-Setting up base-files (3.1.5) ...
+dpkg: warning - unable to delete old file `/usr/doc': Directory not empty
+Setting up base-files (3.1.6) ...
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.)
+(Reading database ... 11038 files and directories currently installed.)
Preparing to replace libpcre3 4.5-1.2 (using .../libpcre3_5.0-1.1_i386.deb) ...
Unpacking replacement libpcre3 ...
Preparing to replace exim4-daemon-light 4.50-8 (using .../exim4-daemon-light_4.52-1_i386.deb) ...
@@ -100,7 +137,7 @@ Preparing to replace debianutils 2.8.4 (using .../debianutils_2.14.1_i386.deb) .
Unpacking replacement debianutils ...
Setting up debianutils (2.14.1) ...
-(Reading database ... 11041 files and directories currently installed.)
+(Reading database ... 11039 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) ...
@@ -108,7 +145,7 @@ Unpacking replacement perl ...
Preparing to replace perl-base 5.8.4-8 (using .../perl-base_5.8.7-3_i386.deb) ...
Unpacking replacement perl-base ...
Setting up perl-base (5.8.7-3) ...
-(Reading database ... 11192 files and directories currently installed.)
+(Reading database ... 11190 files and directories currently installed.)
Preparing to replace liblocale-gettext-perl 1.01-17 (using .../liblocale-gettext-perl_1.05-1_i386.deb) ...
Unpacking replacement liblocale-gettext-perl ...
Preparing to replace libtext-iconv-perl 1.2-3 (using .../libtext-iconv-perl_1.4-1_i386.deb) ...
@@ -121,7 +158,7 @@ Preparing to replace debconf-i18n 1.4.30.13 (using .../debconf-i18n_1.4.52_all.d
Unpacking replacement debconf-i18n ...
Preparing to replace debconf 1.4.30.13 (using .../debconf_1.4.52_all.deb) ...
Unpacking replacement debconf ...
-Preparing to replace adduser 3.63 (using .../archives/adduser_3.64_all.deb) ...
+Preparing to replace adduser 3.63 (using .../archives/adduser_3.66_all.deb) ...
Unpacking replacement adduser ...
Preparing to replace cron 3.0pl1-86 (using .../cron_3.0pl1-87_i386.deb) ...
Unpacking replacement cron ...
@@ -136,12 +173,12 @@ 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 ... 11207 files and directories currently installed.)
+(Reading database ... 11206 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 ... 11213 files and directories currently installed.)
+(Reading database ... 11212 files and directories currently installed.)
Preparing to replace bash 2.05b-26 (using .../archives/bash_3.0-15_i386.deb) ...
Unpacking replacement bash ...
Setting up bash (3.0-15) ...
@@ -150,16 +187,76 @@ 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 ... 11216 files and directories currently installed.)
-Preparing to replace findutils 4.1.20-6 (using .../findutils_4.2.22-2_i386.deb) ...
+(Reading database ... 11215 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 ...
+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 ... 11214 files and directories currently installed.)
+Preparing to replace findutils 4.1.20-6 (using .../findutils_4.2.24-1_i386.deb) ...
Unpacking replacement findutils ...
-Setting up findutils (4.2.22-2) ...
+Setting up findutils (4.2.24-1) ...
Installing new version of config file /etc/updatedb.conf ...
-(Reading database ... 11237 files and directories currently installed.)
+(Reading database ... 11235 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 ... 11235 files and directories currently installed.)
+Preparing to replace gzip 1.3.5-10 (using .../gzip_1.3.5-12_i386.deb) ...
+Unpacking replacement gzip ...
+Setting up gzip (1.3.5-12) ...
+
+(Reading database ... 11235 files and directories currently installed.)
+Preparing to replace libncurses5 5.4-4 (using .../libncurses5_5.4-9_i386.deb) ...
+Unpacking replacement libncurses5 ...
+Setting up libncurses5 (5.4-9) ...
+
+(Reading database ... 11236 files and directories currently installed.)
+Preparing to replace ncurses-bin 5.4-4 (using .../ncurses-bin_5.4-9_i386.deb) ...
+Unpacking replacement ncurses-bin ...
+Setting up ncurses-bin (5.4-9) ...
+(Reading database ... 11236 files and directories currently installed.)
+Preparing to replace ncurses-base 5.4-4 (using .../ncurses-base_5.4-9_all.deb) ...
+Removing obsolete conffile /etc/terminfo/E/Eterm ...
+Removing obsolete conffile /etc/terminfo/E/Eterm-color ...
+Removing obsolete conffile /etc/terminfo/a/ansi ...
+Removing obsolete conffile /etc/terminfo/c/cons25 ...
+Removing obsolete conffile /etc/terminfo/c/cygwin ...
+Removing obsolete conffile /etc/terminfo/d/dumb ...
+Removing obsolete conffile /etc/terminfo/h/hurd ...
+Removing obsolete conffile /etc/terminfo/l/linux ...
+Removing obsolete conffile /etc/terminfo/m/mach ...
+Removing obsolete conffile /etc/terminfo/m/mach-bold ...
+Removing obsolete conffile /etc/terminfo/m/mach-color ...
+Removing obsolete conffile /etc/terminfo/p/pcansi ...
+Removing obsolete conffile /etc/terminfo/r/rxvt ...
+Removing obsolete conffile /etc/terminfo/r/rxvt-basic ...
+Removing obsolete conffile /etc/terminfo/r/rxvt-m ...
+Removing obsolete conffile /etc/terminfo/s/screen ...
+Removing obsolete conffile /etc/terminfo/s/screen-bce ...
+Removing obsolete conffile /etc/terminfo/s/screen-s ...
+Removing obsolete conffile /etc/terminfo/s/screen-w ...
+Removing obsolete conffile /etc/terminfo/s/sun ...
+Removing obsolete conffile /etc/terminfo/v/vt100 ...
+Removing obsolete conffile /etc/terminfo/v/vt102 ...
+Removing obsolete conffile /etc/terminfo/v/vt220 ...
+Removing obsolete conffile /etc/terminfo/v/vt52 ...
+Removing obsolete conffile /etc/terminfo/w/wsvt25 ...
+Removing obsolete conffile /etc/terminfo/w/wsvt25m ...
+Removing obsolete conffile /etc/terminfo/x/xterm ...
+Removing obsolete conffile /etc/terminfo/x/xterm-debian ...
+Removing obsolete conffile /etc/terminfo/x/xterm-r5 ...
+Removing obsolete conffile /etc/terminfo/x/xterm-r6 ...
+Removing obsolete conffile /etc/terminfo/x/xterm-xfree86 ...
+Removing obsolete conffile /etc/terminfo/x/xterm-mono ...
+Removing obsolete conffile /etc/terminfo/x/xterm-vt220 ...
+Removing obsolete conffile /etc/terminfo/x/xterm-color ...
+Unpacking replacement ncurses-base ...
+Setting up ncurses-base (5.4-9) ...
Setting up liblocale-gettext-perl (1.05-1) ...
Setting up libtext-iconv-perl (1.4-1) ...
Setting up libtext-charwidth-perl (0.04-2) ...
@@ -167,19 +264,55 @@ Setting up libtext-wrapi18n-perl (0.06-2) ...
Setting up debconf-i18n (1.4.52) ...
Setting up debconf (1.4.52) ...
-(Reading database ... 11237 files and directories currently installed.)
-Preparing to replace console-common 0.7.49 (using .../console-common_0.7.51_all.deb) ...
+(Reading database ... 11240 files and directories currently installed.)
+Preparing to replace console-common 0.7.49 (using .../console-common_0.7.52_all.deb) ...
Unpacking replacement console-common ...
-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.1-2_i386.deb) ...
Unpacking replacement libgcc1 ...
-Setting up libgcc1 (4.0.0-9) ...
+Setting up libgcc1 (4.0.1-2) ...
-(Reading database ... 11238 files and directories currently installed.)
-Preparing to replace tasksel 2.24 (using .../archives/tasksel_2.25_all.deb) ...
+(Reading database ... 11244 files and directories currently installed.)
+Preparing to replace binutils 2.15-6 (using .../binutils_2.16.1-2_i386.deb) ...
+Unpacking replacement binutils ...
+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 ... 11246 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 ... 11246 files and directories currently installed.)
+Preparing to replace libattr1 2.4.16-1 (using .../libattr1_2.4.21-1.0.1_i386.deb) ...
+Unpacking replacement libattr1 ...
+Preparing to replace libacl1 2.2.23-1 (using .../libacl1_2.2.29-1.0.1_i386.deb) ...
+Unpacking replacement libacl1 ...
+Setting up libattr1 (2.4.21-1.0.1) ...
+
+Setting up libacl1 (2.2.29-1.0.1) ...
+
+Selecting previously deselected package dmidecode.
+(Reading database ... 11246 files and directories currently installed.)
+Unpacking dmidecode (from .../dmidecode_2.6-1_i386.deb) ...
+Selecting previously deselected package laptop-detect.
+Unpacking laptop-detect (from .../laptop-detect_0.12.1_i386.deb) ...
+Preparing to replace tasksel 2.24 (using .../archives/tasksel_2.28_all.deb) ...
Unpacking replacement tasksel ...
Preparing to replace gettext-base 0.14.4-2 (using .../gettext-base_0.14.5-2_i386.deb) ...
Unpacking replacement gettext-base ...
-Preparing to replace base-config 2.53.10 (using .../base-config_2.65_all.deb) ...
+Preparing to replace base-config 2.53.10 (using .../base-config_2.69_all.deb) ...
Unpacking replacement base-config ...
Preparing to replace bsdmainutils 6.0.17 (using .../bsdmainutils_6.1.2_i386.deb) ...
Unpacking replacement bsdmainutils ...
@@ -187,11 +320,17 @@ Preparing to replace groff-base 1.18.1.1-7 (using .../groff-base_1.18.1.1-8_i386
Unpacking replacement groff-base ...
Preparing to replace iptables 1.2.11-10 (using .../iptables_1.3.1-2_i386.deb) ...
Unpacking replacement iptables ...
+Preparing to replace libgpg-error0 1.0-1 (using .../libgpg-error0_1.1-4_i386.deb) ...
+Unpacking replacement libgpg-error0 ...
+Preparing to replace libgcrypt11 1.2.0-11.1 (using .../libgcrypt11_1.2.1-4_i386.deb) ...
+Unpacking replacement libgcrypt11 ...
Preparing to replace liblzo1 1.08-1.2 (using .../liblzo1_1.08-2_i386.deb) ...
Unpacking replacement liblzo1 ...
+Preparing to replace libopencdk8 0.5.5-10 (using .../libopencdk8_0.5.7-2_i386.deb) ...
+Unpacking replacement libopencdk8 ...
Selecting previously deselected package libslang2.
Unpacking libslang2 (from .../libslang2_2.0.4-2_i386.deb) ...
-Preparing to replace libtasn1-2 0.2.10-3 (using .../libtasn1-2_0.2.10-4_i386.deb) ...
+Preparing to replace libtasn1-2 0.2.10-3 (using .../libtasn1-2_0.2.13-1_i386.deb) ...
Unpacking replacement libtasn1-2 ...
Preparing to replace man-db 2.4.2-21 (using .../man-db_2.4.3-1_i386.deb) ...
Unpacking replacement man-db ...
@@ -199,7 +338,7 @@ 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-15_i386.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.2_i386.deb) ...
Unpacking replacement netkit-inetd ...
Preparing to replace wget 1.9.1-12 (using .../wget_1.10-3+1.10.1beta1_i386.deb) ...
Unpacking replacement wget ...
@@ -207,21 +346,47 @@ Preparing to replace whiptail 0.51.6-20 (using .../whiptail_0.51.6-26_i386.deb)
Unpacking replacement whiptail ...
Preparing to replace libnewt0.51 0.51.6-20 (using .../libnewt0.51_0.51.6-26_i386.deb) ...
Unpacking replacement libnewt0.51 ...
-Preparing to replace libattr1 2.4.16-1 (using .../libattr1_2.4.21-1.0.1_i386.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) ...
Unpacking replacement procps ...
-Preparing to replace binutils 2.15-6 (using .../binutils_2.16.1-2_i386.deb) ...
-Unpacking replacement binutils ...
+Preparing to replace at 3.1.8-11 (using .../apt/archives/at_3.1.9_i386.deb) ...
+Stopping deferred execution scheduler: atd.
+Unpacking replacement at ...
+Selecting previously deselected package gcc-4.0-base.
+Unpacking gcc-4.0-base (from .../gcc-4.0-base_4.0.1-2_i386.deb) ...
+Selecting previously deselected package cpp-4.0.
+Unpacking cpp-4.0 (from .../cpp-4.0_4.0.1-2_i386.deb) ...
+Preparing to replace cpp 4:3.3.5-3 (using .../cpp_4%3a4.0.1-3_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 exim4 4.50-8 (using .../archives/exim4_4.52-1_all.deb) ...
Unpacking replacement exim4 ...
+Selecting previously deselected package gcc-4.0.
+Unpacking gcc-4.0 (from .../gcc-4.0_4.0.1-2_i386.deb) ...
+Preparing to replace gcc 4:3.3.5-3 (using .../gcc_4%3a4.0.1-3_i386.deb) ...
+Removing old gcc doc directory.
+Unpacking replacement gcc ...
+Selecting previously deselected package libstdc++6.
+Unpacking libstdc++6 (from .../libstdc++6_4.0.1-2_i386.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-2_i386.deb) ...
+Selecting previously deselected package g++-4.0.
+Unpacking g++-4.0 (from .../g++-4.0_4.0.1-2_i386.deb) ...
+Preparing to replace g++ 4:3.3.5-3 (using .../g++_4%3a4.0.1-3_i386.deb) ...
+Unpacking replacement g++ ...
+Preparing to replace mailx 1:8.1.2-0.20040524cvs-4 (using .../mailx_1%3a8.1.2-0.20050715cvs-1_i386.deb) ...
+Unpacking replacement mailx ...
+Preparing to replace build-essential 10.1 (using .../build-essential_11.1_i386.deb) ...
+Unpacking replacement build-essential ...
+Preparing to replace fdutils 5.4-20040228-1 (using .../fdutils_5.5-20050303-1_i386.deb) ...
+Unpacking replacement fdutils ...
Preparing to replace psmisc 21.5-1 (using .../psmisc_21.6-1_i386.deb) ...
Unpacking replacement psmisc ...
Setting up libpcre3 (5.0-1.1) ...
-Setting up adduser (3.64) ...
+Setting up adduser (3.66) ...
Setting up cron (3.0pl1-87) ...
@@ -236,15 +401,21 @@ Setting up exim4-base (4.52-1) ...
Setting up exim4-daemon-light (4.52-1) ...
-Setting up console-common (0.7.51) ...
+Setting up console-common (0.7.52) ...
Looking for keymap to install:
NONE
-Setting up tasksel (2.25) ...
+Setting up binutils (2.16.1-2) ...
+
+Setting up cpp-3.3 (3.3.6-7) ...
+Setting up gcc-3.3 (3.3.6-7) ...
+Setting up dmidecode (2.6-1) ...
+Setting up laptop-detect (0.12.1) ...
+Setting up tasksel (2.28) ...
Setting up gettext-base (0.14.5-2) ...
-Setting up base-config (2.65) ...
+Setting up base-config (2.69) ...
Setting up bsdmainutils (6.1.2) ...
@@ -252,18 +423,24 @@ Setting up groff-base (1.18.1.1-8) ...
Setting up iptables (1.3.1-2) ...
+Setting up libgpg-error0 (1.1-4) ...
+
+Setting up libgcrypt11 (1.2.1-4) ...
+
Setting up liblzo1 (1.08-2) ...
+Setting up libopencdk8 (0.5.7-2) ...
+
Setting up libslang2 (2.0.4-2) ...
-Setting up libtasn1-2 (0.2.10-4) ...
+Setting up libtasn1-2 (0.2.13-1) ...
Setting up man-db (2.4.3-1) ...
Installing new version of config file /etc/manpath.config ...
Setting up manpages (2.02-2) ...
Setting up net-tools (1.60-15) ...
-Setting up netkit-inetd (0.10-10.1) ...
+Setting up netkit-inetd (0.10-10.2) ...
Restarting internet superserver: inetd.
Setting up wget (1.10-3+1.10.1beta1) ...
@@ -272,22 +449,43 @@ Installing new version of config file /etc/wgetrc ...
Setting up libnewt0.51 (0.51.6-26) ...
Setting up whiptail (0.51.6-26) ...
-Setting up libattr1 (2.4.21-1.0.1) ...
-
Setting up makedev (2.3.1-78) ...
Setting up procps (3.2.5-1) ...
Installing new version of config file /etc/sysctl.conf ...
Installing new version of config file /etc/init.d/procps.sh ...
-Setting up binutils (2.16.1-2) ...
+Setting up at (3.1.9) ...
+Installing new version of config file /etc/init.d/atd ...
+Setting up gcc-4.0-base (4.0.1-2) ...
+Setting up cpp-4.0 (4.0.1-2) ...
+Setting up cpp (4.0.1-3) ...
Setting up exim4 (4.52-1) ...
+Setting up gcc-4.0 (4.0.1-2) ...
+Setting up gcc (4.0.1-3) ...
+
+Setting up libstdc++6 (4.0.1-2) ...
+
+Setting up mailx (8.1.2-0.20050715cvs-1) ...
+
+Setting up fdutils (5.5-20050303-1) ...
+
Setting up psmisc (21.6-1) ...
+Setting up libstdc++6-4.0-dev (4.0.1-2) ...
Setting up perl-modules (5.8.7-3) ...
+Setting up libstdc++5-3.3-dev (3.3.6-7) ...
+Setting up g++-4.0 (4.0.1-2) ...
+Setting up g++ (4.0.1-3) ...
+
Setting up perl (5.8.7-3) ...
+Setting up g++-3.3 (3.3.6-7) ...
+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.
@@ -296,6 +494,6 @@ 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.YJi8Z9/testimage]
+ -> creating base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/testimage]
-> cleaning the build env
- -> removing directory /var/cache/pbuilder/build//26577 and its subdirectories
+ -> removing directory /var/cache/pbuilder/build//17334 and its subdirectories
diff --git a/testsuite/normal/pdebuild-internal-etch.log b/testsuite/normal/pdebuild-internal-etch.log
index ff6612f..a4b3466 100644
--- a/testsuite/normal/pdebuild-internal-etch.log
+++ b/testsuite/normal/pdebuild-internal-etch.log
@@ -1,7 +1,7 @@
Building the build Environment
- -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/testimage]
+ -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/testimage to /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/6872
+E: failed to extract /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/testimage to /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/31876
diff --git a/testsuite/normal/pdebuild-internal-sarge.log b/testsuite/normal/pdebuild-internal-sarge.log
index 33e39c1..f9bc5ec 100644
--- a/testsuite/normal/pdebuild-internal-sarge.log
+++ b/testsuite/normal/pdebuild-internal-sarge.log
@@ -1,10 +1,10 @@
Building the build Environment
- -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/testimage]
+ -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/testimage]
-> creating local configuration
-> copying local configuration
-> mounting /proc filesystem
-> mounting /dev/pts filesystem
--> Mounting /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2
+-> Mounting /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2
-> policy-rc.d already exists
Using: : pdebuild-internal,v 1.6 2005/07/02 05:39:44 dancer Exp $
Reading Package Lists...
@@ -20,9 +20,9 @@ The following NEW packages will be installed:
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 (638kB/s)
+Get:1 http://ftp.jp.debian.org sarge/main debootstrap 0.2.45-0.2 [72.2kB]
+Get:2 http://ftp.jp.debian.org sarge/main pbuilder 0.123 [64.0kB]
+Fetched 136kB in 0s (736kB/s)
Selecting previously deselected package debootstrap.
(Reading database ... 11040 files and directories currently installed.)
Unpacking debootstrap (from .../debootstrap_0.2.45-0.2_i386.deb) ...
@@ -52,17 +52,17 @@ The following NEW packages will be installed:
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 (9214kB/s)
+Get:1 http://ftp.jp.debian.org sarge/main libmagic1 4.12-1 [233kB]
+Get:2 http://ftp.jp.debian.org sarge/main file 4.12-1 [28.6kB]
+Get:3 http://ftp.jp.debian.org sarge/main debconf-utils 1.4.30.13 [33.0kB]
+Get:4 http://ftp.jp.debian.org sarge/main html2text 1.3.2a-2 [92.6kB]
+Get:5 http://ftp.jp.debian.org sarge/main gettext 0.14.4-2 [1718kB]
+Get:6 http://ftp.jp.debian.org sarge/main intltool-debian 0.30+20040213 [23.5kB]
+Get:7 http://ftp.jp.debian.org sarge/main po-debconf 0.8.23 [78.0kB]
+Get:8 http://ftp.jp.debian.org sarge/main debhelper 4.2.32 [362kB]
+Get:9 http://ftp.jp.debian.org sarge/main libdshconfig1 0.20.11-1 [10.7kB]
+Get:10 http://ftp.jp.debian.org sarge/main libdshconfig1-dev 0.20.11-1 [12.4kB]
+Fetched 2591kB in 1s (2117kB/s)
Selecting previously deselected package libmagic1.
(Reading database ... 11115 files and directories currently installed.)
Unpacking libmagic1 (from .../libmagic1_4.12-1_i386.deb) ...
@@ -107,8 +107,8 @@ The following NEW packages will be installed:
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 (2268kB/s)
+Get:1 http://ftp.jp.debian.org sarge/main fakeroot 1.2.10 [70.5kB]
+Fetched 70.5kB in 0s (735kB/s)
Selecting previously deselected package fakeroot.
(Reading database ... 11657 files and directories currently installed.)
Unpacking fakeroot (from .../fakeroot_1.2.10_i386.deb) ...
@@ -123,14 +123,14 @@ 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.YJi8Z9/dir2/dsh-0.25.6'
+make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.YJi8Z9/dir2/dsh-0.25.6'
+make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.YJi8Z9/dir2/dsh-0.25.6'
+make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.YJi8Z9/dir2/dsh-0.25.6'
+make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6'
make: [clean] Error 2 (ignored)
dh_clean
dpkg-source -b dsh-0.25.6
@@ -318,18 +318,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.YJi8Z9/dir2/dsh-0.25.6'
+make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6'
/usr/bin/make all-recursive
-make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6'
+make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6'
Making all in m4
-make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6/m4'
+make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.YJi8Z9/dir2/dsh-0.25.6/m4'
+make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/m4'
Making all in po
-make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6/po'
+make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.YJi8Z9/dir2/dsh-0.25.6/po'
-make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6'
+make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/po'
+make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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 +342,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.YJi8Z9/dir2/dsh-0.25.6'
-make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6'
-make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6'
+make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6'
+make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6'
+make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6'
/usr/bin/make check
-make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6'
+make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6'
Making check in m4
-make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6/m4'
+make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.YJi8Z9/dir2/dsh-0.25.6/m4'
+make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/m4'
Making check in po
-make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6/po'
+make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.YJi8Z9/dir2/dsh-0.25.6/po'
-make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6'
+make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/po'
+make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6'
/usr/bin/make dsh
-make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6'
+make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6'
make[3]: `dsh' is up to date.
-make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6'
+make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6'
/usr/bin/make check-TESTS
-make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6'
+make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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
@@ -373,6 +373,7 @@ test to check that unknown parameter checking is right.
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
@@ -398,8 +399,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
@@ -411,7 +412,7 @@ PASS: tests/param-r-invalid.sh
2: 2
dsh: fork limit and wait shell cannot be specified at the same time
PASS: tests/param-F-invalid.sh
-Thu Aug 11 23:41:20 UTC 2005
+Mon Aug 15 23:03:32 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
@@ -481,14 +482,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
-Thu Aug 11 23:41:25 UTC 2005
+Mon Aug 15 23:03:37 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
+b: b
PASS: tests/segv-catcher.sh
l w
PASS: tests/test-bufferoverflow.sh
@@ -497,9 +498,9 @@ PASS: tests/machinelist-order.sh
===================
All 17 tests passed
===================
-make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6'
-make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6'
-make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6'
+make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6'
+make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6'
+make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6'
touch build-stamp
fakeroot debian/rules binary
dh_testdir
@@ -507,58 +508,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.YJi8Z9/dir2/dsh-0.25.6/debian/dsh
-make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6'
+/usr/bin/make install DESTDIR=/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/debian/dsh
+make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6'
Making install in m4
-make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6/m4'
-make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6/m4'
+make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/m4'
+make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.YJi8Z9/dir2/dsh-0.25.6/m4'
-make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6/m4'
+make[3]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/m4'
+make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/m4'
Making install in po
-make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6/po'
-/bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6/debian/dsh/usr/share
-mkdir -p -- /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6/debian/dsh/usr/share
-mkdir -p -- /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6/debian/dsh/usr/share/locale/ja/LC_MESSAGES
-installing ja.gmo as /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6/debian/dsh/usr/share/locale/ja/LC_MESSAGES/dsh.mo
+make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/po'
+/bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/debian/dsh/usr/share
+mkdir -p -- /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/debian/dsh/usr/share
+mkdir -p -- /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/debian/dsh/usr/share/locale/ja/LC_MESSAGES
+installing ja.gmo as /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.YJi8Z9/dir2/dsh-0.25.6/debian/dsh/usr/share/gettext/po; \
+ /bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.YJi8Z9/dir2/dsh-0.25.6/debian/dsh/usr/share/gettext/po/$file; \
+ /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.YJi8Z9/dir2/dsh-0.25.6/po'
-make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6'
-make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6'
-test -z "/usr/bin" || mkdir -p -- . "/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/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.YJi8Z9/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.YJi8Z9/dir2/dsh-0.25.6/debian/dsh/usr/bin/dsh
-test -z "/etc/dsh" || mkdir -p -- . "/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6/debian/dsh/etc/dsh"
- /usr/bin/install -c -m 644 'dsh.conf' '/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6/debian/dsh/etc/dsh/dsh.conf'
+make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/po'
+make[2]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6'
+make[3]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6'
+test -z "/usr/bin" || mkdir -p -- . "/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.ExPwZA/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.ExPwZA/dir2/dsh-0.25.6/debian/dsh/usr/bin/dsh
+test -z "/etc/dsh" || mkdir -p -- . "/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/debian/dsh/etc/dsh"
+ /usr/bin/install -c -m 644 'dsh.conf' '/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.YJi8Z9/dir2/dsh-0.25.6/debian/dsh/usr/share/man/$LANGS/man1 ;\
- mkdir -p /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6/debian/dsh/usr/share/man/$LANGS/man5 ;\
+ mkdir -p /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/debian/dsh/usr/share/man/$LANGS/man1 ;\
+ mkdir -p /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.YJi8Z9/dir2/dsh-0.25.6/debian/dsh/usr/share/man/$LANGS/man1/dsh.1 ; \
+ > /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.YJi8Z9/dir2/dsh-0.25.6/debian/dsh/usr/share/man/$LANGS/man5/dsh.conf.5 ; \
+ > /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.YJi8Z9/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.YJi8Z9/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.YJi8Z9/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.YJi8Z9/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.YJi8Z9/dir2/dsh-0.25.6'
-make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6'
-make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6'
-cp /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6/debian/machines.list /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6/debian/dsh/etc/dsh/machines.list
-cp /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6/dsh.conf /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6/debian/dsh/etc/dsh/dsh.conf
-ln -s ../machines.list /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6/debian/dsh/etc/dsh/group/all
-install -d /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6/debian/dsh/usr/lib/update-cluster
-install -m 755 /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6/debian/dsh.updatelist /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/dsh-0.25.6/debian/dsh/usr/lib/update-cluster/
+test -z "/usr/share/man/man1" || mkdir -p -- . "/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.ExPwZA/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.ExPwZA/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.ExPwZA/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.ExPwZA/dir2/dsh-0.25.6'
+make[2]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6'
+make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6'
+cp /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/debian/machines.list /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/debian/dsh/etc/dsh/machines.list
+cp /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/dsh.conf /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/debian/dsh/etc/dsh/dsh.conf
+ln -s ../machines.list /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/debian/dsh/etc/dsh/group/all
+install -d /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/debian/dsh/usr/lib/update-cluster
+install -m 755 /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/debian/dsh.updatelist /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6/debian/dsh/usr/lib/update-cluster/
dh_testdir
dh_testroot
dh_installdocs NEWS
@@ -581,6 +582,6 @@ 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.YJi8Z9/dir2 filesystem
+ -> unmounting /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2 filesystem
-> cleaning the build env
- -> removing directory /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/20853 and its subdirectories
+ -> removing directory /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/11621 and its subdirectories
diff --git a/testsuite/normal/pdebuild-internal-sid.log b/testsuite/normal/pdebuild-internal-sid.log
index 1057627..ecada96 100644
--- a/testsuite/normal/pdebuild-internal-sid.log
+++ b/testsuite/normal/pdebuild-internal-sid.log
@@ -1,7 +1,7 @@
Building the build Environment
- -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/testimage]
+ -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/testimage to /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/30777
+E: failed to extract /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/testimage to /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/20196
diff --git a/testsuite/normal/pdebuild-normal-etch.log b/testsuite/normal/pdebuild-normal-etch.log
index 7f8e0d0..52a471f 100644
--- a/testsuite/normal/pdebuild-normal-etch.log
+++ b/testsuite/normal/pdebuild-normal-etch.log
@@ -6,14 +6,14 @@ 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.YJi8Z9/dir2/dsh-0.25.6'
+make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.YJi8Z9/dir2/dsh-0.25.6'
+make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.YJi8Z9/dir2/dsh-0.25.6'
+make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.YJi8Z9/dir2/dsh-0.25.6'
+make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6'
make: [clean] Error 2 (ignored)
dh_clean
dpkg-source -b dsh-0.25.6
@@ -29,12 +29,12 @@ I: using fakeroot in build.
pbuilder-buildpackage/i386 $Id$
$Id$
-Current time: Fri Aug 12 08:45:08 JST 2005
-pbuilder-time-stamp: 1123803908
+Current time: Tue Aug 16 08:11:46 JST 2005
+pbuilder-time-stamp: 1124147506
Building the build Environment
- -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/testimage]
+ -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/testimage to /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/6836
+E: failed to extract /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/testimage to /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/31845
diff --git a/testsuite/normal/pdebuild-normal-sarge.log b/testsuite/normal/pdebuild-normal-sarge.log
index 55f195d..f7d2e13 100644
--- a/testsuite/normal/pdebuild-normal-sarge.log
+++ b/testsuite/normal/pdebuild-normal-sarge.log
@@ -6,14 +6,14 @@ 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.YJi8Z9/dir2/dsh-0.25.6'
+make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.YJi8Z9/dir2/dsh-0.25.6'
+make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.YJi8Z9/dir2/dsh-0.25.6'
+make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.YJi8Z9/dir2/dsh-0.25.6'
+make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6'
make: [clean] Error 2 (ignored)
dh_clean
dpkg-source -b dsh-0.25.6
@@ -29,10 +29,10 @@ I: using fakeroot in build.
pbuilder-buildpackage/i386 $Id$
$Id$
-Current time: Fri Aug 12 08:40:06 JST 2005
-pbuilder-time-stamp: 1123803606
+Current time: Tue Aug 16 08:02:22 JST 2005
+pbuilder-time-stamp: 1124146942
Building the build Environment
- -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/testimage]
+ -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/testimage]
-> creating local configuration
-> copying local configuration
-> mounting /proc filesystem
@@ -61,17 +61,17 @@ The following NEW packages will be installed:
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 (7985kB/s)
+Get:1 http://ftp.jp.debian.org sarge/main libmagic1 4.12-1 [233kB]
+Get:2 http://ftp.jp.debian.org sarge/main file 4.12-1 [28.6kB]
+Get:3 http://ftp.jp.debian.org sarge/main debconf-utils 1.4.30.13 [33.0kB]
+Get:4 http://ftp.jp.debian.org sarge/main html2text 1.3.2a-2 [92.6kB]
+Get:5 http://ftp.jp.debian.org sarge/main gettext 0.14.4-2 [1718kB]
+Get:6 http://ftp.jp.debian.org sarge/main intltool-debian 0.30+20040213 [23.5kB]
+Get:7 http://ftp.jp.debian.org sarge/main po-debconf 0.8.23 [78.0kB]
+Get:8 http://ftp.jp.debian.org sarge/main debhelper 4.2.32 [362kB]
+Get:9 http://ftp.jp.debian.org sarge/main libdshconfig1 0.20.11-1 [10.7kB]
+Get:10 http://ftp.jp.debian.org sarge/main libdshconfig1-dev 0.20.11-1 [12.4kB]
+Fetched 2591kB in 1s (2283kB/s)
Selecting previously deselected package libmagic1.
(Reading database ... 11040 files and directories currently installed.)
Unpacking libmagic1 (from .../libmagic1_4.12-1_i386.deb) ...
@@ -116,8 +116,8 @@ The following NEW packages will be installed:
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 (2387kB/s)
+Get:1 http://ftp.jp.debian.org sarge/main fakeroot 1.2.10 [70.5kB]
+Fetched 70.5kB in 0s (812kB/s)
Selecting previously deselected package fakeroot.
(Reading database ... 11582 files and directories currently installed.)
Unpacking fakeroot (from .../fakeroot_1.2.10_i386.deb) ...
@@ -439,11 +439,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
-1: 1
2: 2
+1: 1
dsh: fork limit and wait shell cannot be specified at the same time
PASS: tests/param-F-invalid.sh
-Thu Aug 11 23:40:40 UTC 2005
+Mon Aug 15 23:02:52 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 +513,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
-Thu Aug 11 23:40:45 UTC 2005
+Mon Aug 15 23:02:57 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
+b: b
PASS: tests/segv-catcher.sh
l w
PASS: tests/test-bufferoverflow.sh
@@ -625,9 +625,9 @@ dpkg-genchanges: including full source code in upload
dpkg-buildpackage: full upload (original source is included)
-> Terminate timeout process
-> unmounting dev/pts filesystem
-/usr/lib/pbuilder/pbuilder-modules: line 89: 15480 Terminated ( : Timeout process; sleep "${TIMEOUT_TIME}"; echo " -> Terminating build process due to timeout "; kill ${BUILD_PID} || true )
-> unmounting proc filesystem
-Current time: Fri Aug 12 08:40:47 JST 2005
-pbuilder-time-stamp: 1123803647
+/usr/lib/pbuilder/pbuilder-buildpackage: line 152: 6245 Terminated ( : Timeout process; sleep "${TIMEOUT_TIME}"; echo " -> Terminating build process due to timeout "; kill ${BUILD_PID} || true )
+Current time: Tue Aug 16 08:03:00 JST 2005
+pbuilder-time-stamp: 1124146980
-> cleaning the build env
- -> removing directory /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/15189 and its subdirectories
+ -> removing directory /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/5959 and its subdirectories
diff --git a/testsuite/normal/pdebuild-normal-sid.log b/testsuite/normal/pdebuild-normal-sid.log
index d0c7605..7f59c6e 100644
--- a/testsuite/normal/pdebuild-normal-sid.log
+++ b/testsuite/normal/pdebuild-normal-sid.log
@@ -6,14 +6,14 @@ 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.YJi8Z9/dir2/dsh-0.25.6'
+make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.YJi8Z9/dir2/dsh-0.25.6'
+make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.YJi8Z9/dir2/dsh-0.25.6'
+make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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.YJi8Z9/dir2/dsh-0.25.6'
+make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/dsh-0.25.6'
make: [clean] Error 2 (ignored)
dh_clean
dpkg-source -b dsh-0.25.6
@@ -29,12 +29,12 @@ I: using fakeroot in build.
pbuilder-buildpackage/i386 $Id$
$Id$
-Current time: Fri Aug 12 08:37:26 JST 2005
-pbuilder-time-stamp: 1123803446
+Current time: Tue Aug 16 07:57:37 JST 2005
+pbuilder-time-stamp: 1124146657
Building the build Environment
- -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/testimage]
+ -> extracting base tarball [/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/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/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/testimage to /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.YJi8Z9/dir2/30746
+E: failed to extract /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/testimage to /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/tmp.ExPwZA/dir2/20165
diff --git a/testsuite/run-test-cdebootstrap.log b/testsuite/run-test-cdebootstrap.log
index b6f31bb..0f31e31 100644
--- a/testsuite/run-test-cdebootstrap.log
+++ b/testsuite/run-test-cdebootstrap.log
@@ -1,17 +1,17 @@
-[FAIL] create-sid-cdebootstrap
-[FAIL] build-sid-dsh
-[FAIL] pdebuild-sid-dsh
-[FAIL] pdebuild-internal-sid-dsh
+[OK] create-sid-cdebootstrap
+[OK] build-sid-dsh
+[OK] pdebuild-sid-dsh
+[OK] pdebuild-internal-sid-dsh
[OK] create-sarge-cdebootstrap
[OK] build-sarge-dsh
[OK] pdebuild-sarge-dsh
[OK] pdebuild-internal-sarge-dsh
-[FAIL] update-sarge-etch.log
-[FAIL] update-sarge-etch-sid.log
-[FAIL] update-sarge-etch-sid-experimental.log
+[OK] update-sarge-etch.log
+[OK] update-sarge-etch-sid.log
+[OK] update-sarge-etch-sid-experimental.log
[OK] create-etch-cdebootstrap
[OK] build-etch-dsh
[OK] pdebuild-etch-dsh
[OK] pdebuild-internal-etch-dsh
-[FAIL] update-etch-sid.log
-[FAIL] update-etch-sid-experimental.log
+[OK] update-etch-sid.log
+[OK] update-etch-sid-experimental.log
diff --git a/testsuite/run-test.sh b/testsuite/run-test.sh
index 8d091d6..ae5ca2c 100755
--- a/testsuite/run-test.sh
+++ b/testsuite/run-test.sh
@@ -18,7 +18,7 @@ log_success () {
[ -x /usr/bin/cdebootstrap ] || exit 1
-mirror=http://ring.asahi-net.or.jp/archives/linux/debian/debian
+mirror=http://ftp.jp.debian.org/debian
testdir=$(TMPDIR=$(pwd) mktemp -d)
testimage=$testdir/testimage