pbuilder-0.215ubuntu7/0000775000000000000000000000000012412242264011550 5ustar pbuilder-0.215ubuntu7/pbuilder-buildpackage0000775000000000000000000001303312312041170015705 0ustar #! /bin/bash # pbuilder -- personal Debian package builder # Copyright (C) 2001-2007 Junichi Uekawa # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA export LANG=C export LC_ALL=C set -e . /usr/lib/pbuilder/pbuilder-checkparams . /usr/lib/pbuilder/pbuilder-runhooks . /usr/lib/pbuilder/pbuilder-buildpackage-funcs PACKAGENAME="$1" if [ ! -f "$PACKAGENAME" ]; then log "E: Command line parameter [$PACKAGENAME] does not exist" exit 1; fi; if [ -n "$BUILDUSERNAME" -a -n "$BUILDUSERID" ]; then # Command to SU to user. # LD_PRELOAD: Normal users don't have write access to build # environment, so cowdancer shouldn't have to run, and fakeroot # should be running later, so it shouldn't matter. # LOGNAME: set this to shut up some tools. # su -p : switch to user preserving env vars, we need most of them. SUTOUSER="env LD_PRELOAD= LOGNAME=$BUILDUSERNAME su -p $BUILDUSERNAME" DEBBUILDOPTS="${DEBBUILDOPTS:+$DEBBUILDOPTS }-rfakeroot" EXTRAPACKAGES="${EXTRAPACKAGES} fakeroot" log "I: using fakeroot in build." else # run the build in root SUTOUSER="su -p " BUILDUSERID=0 BUILDUSERNAME=root fi # created files should have these UID/GIDs outside of chroot. BUILDRESULTUID="${BUILDRESULTUID:-${SUDO_UID:-0}}" BUILDRESULTGID="${BUILDRESULTGID:-${SUDO_GID:-0}}" export HOME="/tmp/buildd" echobacktime extractbuildplace trap umountproc_cleanbuildplace_trap exit sighup sigpipe loadhooks if [ ! -d "${BUILDRESULT}" ]; then if [ -n "${BUILDRESULT}" ] ; then mkdir -p "${BUILDRESULT}" fi if [ -d "${BUILDRESULT}" ]; then log "I: created buildresult dir: ${BUILDRESULT}" else log "E: failed creating buildresult dir: ${BUILDRESULT}" exit 1 fi fi if [ -z "${PBUILDER_BUILD_LOGFILE}" ]; then if [ "${PKGNAME_LOGFILE}" = "yes" ]; then PBUILDER_BUILD_LOGFILE="${BUILDRESULT}/"$(basename "${PACKAGENAME}" .dsc)"${PKGNAME_LOGFILE_EXTENTION}" exec > >(tee "${PBUILDER_BUILD_LOGFILE}") 2>&1 PBUILDER_BUILD_LOGFILE=$(readlink -f "${PBUILDER_BUILD_LOGFILE}") log "I: Using pkgname logfile" echobacktime fi fi # make logfile have the permissions, logfiles should already be created in all cases if [ -f "${PBUILDER_BUILD_LOGFILE}" ]; then chown "${BUILDRESULTUID}:${BUILDRESULTGID}" "${PBUILDER_BUILD_LOGFILE}" chgrp "${BUILDRESULTGID}" "${PBUILDER_BUILD_LOGFILE}" fi recover_aptcache createbuilduser setup_ccache log "I: Installing the build-deps" executehooks "D" trap saveaptcache_umountproc_cleanbuildplace_trap exit sighup sigpipe checkbuilddep "$PACKAGENAME" save_aptcache trap umountproc_cleanbuildplace_trap exit sighup sigpipe log "I: Copying source file" copydsc "$PACKAGENAME" "$BUILDPLACE/tmp/buildd" copyinputfile "$BUILDPLACE/tmp/buildd" log "I: Extracting source" if echo "chown $BUILDUSERNAME:$BUILDUSERNAME /tmp/buildd /tmp/buildd/*" | $CHROOTEXEC /bin/bash; then : # success else log "E: pbuilder: Failed chowning to $BUILDUSERNAME:$BUILDUSERNAME" exit 1; fi if echo "( cd tmp/buildd; env PATH=\"$PATH\" /usr/bin/dpkg-source -x $(basename $PACKAGENAME) )" | $CHROOTEXEC $SUTOUSER ; then : # success else log "E: pbuilder: Failed extracting the source" exit 1; fi log "I: Building the package" executehooks "A" DPKG_COMMANDLINE="env PATH=\"$PATH\" dpkg-buildpackage -us -uc ${DEBEMAIL:+\"-e$DEBEMAIL\"} $DEBBUILDOPTS" ( : Build process if [ -n "$TWICE" ]; then DPKG_COMMANDLINE="$DPKG_COMMANDLINE && $DPKG_COMMANDLINE" fi DPKG_COMMANDLINE="cd tmp/buildd/*/ && $DPKG_COMMANDLINE" log "I: Running $DPKG_COMMANDLINE" echo "$DPKG_COMMANDLINE" | $CHROOTEXEC $SUTOUSER ) & BUILD_PID=$! if [ -n "${TIMEOUT_TIME}" ]; then ( : Timeout process sleep "${TIMEOUT_TIME}" log "I: Terminating build process due to timeout " kill ${BUILD_PID} || true ) & # timeout process KILL_WAIT_PID="kill "$!" || true; echo \"I: Terminate timeout process\"; " else KILL_WAIT_PID="" fi if ! wait ${BUILD_PID}; then trap umountproc_cleanbuildplace_trap exit sighup sigpipe eval "${KILL_WAIT_PID}" log "E: Failed autobuilding of package" executehooks "C" exit 1; else eval ${KILL_WAIT_PID} # build was successful fi trap umountproc_cleanbuildplace_trap exit sighup sigpipe executehooks "B" save_aptcache trap cleanbuildplace_trap exit sighup sigpipe umountproc if [ -d "${BUILDRESULT}" ]; then chown "${BUILDRESULTUID}:${BUILDRESULTGID}" "${BUILDPLACE}"/tmp/buildd/* chgrp "${BUILDRESULTGID}" "${BUILDPLACE}"/tmp/buildd/* for FILE in "${BUILDPLACE}"/tmp/buildd/*; do if [ -f "${FILE}" ]; then cp -p ${FILE} "${BUILDRESULT}" || true fi done for FILE in "${ADDITIONAL_BUILDRESULTS[@]}"; do log "I: Trying to save additional result ${FILE}" cp -a "${BUILDPLACE}/tmp/buildd/"*"/${FILE}" "${BUILDRESULT}" || true done else log "E: BUILDRESULT=[$BUILDRESULT] is not a directory." fi : cleanbuildplace trap - exit sighup sigpipe echobacktime exit 0 pbuilder-0.215ubuntu7/AUTHORS0000664000000000000000000000127012312041170012610 0ustar This program has been written by the following authors: Junichi Uekawa -- main code, initial coding. Loic Minier Matt Kraai Dale Amon -- for runhooks Daniel Kobras -- Patches and bugfixes for non-interactive building, and some other bugs. Dagfinn Ilmari Manns?er -- devfs support. Henrique de Moraes Holschuh -- portion of pbuilder-satisfydepends (version dependency check) Daniel Schepler -- many patches, --preserve-buildplace Sam Hartman -- bind-mount patch Mattia Dongili -- user-mode-linux support pbuilder-0.215ubuntu7/testlib.sh0000664000000000000000000001123512312041170013544 0ustar #!/bin/bash # 2008 Junichi Uekawa set -e # library for functional unit-testing in bash. # WARNING: this file locates files differently from the other pbuilder # functions: # - if PBUILDER_CHECKOUT is set, it is assumed that testlib.sh is sourced from # a pbuilder checkout (e.g. from the upstream Makefile or Debian build) # - otherwise, PBUILDER_TEST_ROOT or PBUILDER_TEST_*DIR should be used to # locate files instead of PBUILDER_ROOT and PBUILDER_*DIR since # testlib_setup_env() overrides these vars to run the other pbuilder modules # with a fake environment # if this is set, use pbuilder files from this location; otherwise, use # installed files (from PBUILDER_TEST_ROOT, which is a copy of PBUILDER_ROOT) PBUILDER_CHECKOUT="${PBUILDER_CHECKOUT:-}" if [ -z "$PBUILDER_CHECKOUT" ]; then # these currently don't need to be exported PBUILDER_TEST_ROOT="${PBUILDER_ROOT:-}" PBUILDER_TEST_PKGLIBDIR="${PBUILDER_PKGLIBDIR:-$PBUILDER_ROOT/usr/lib/pbuilder}" PBUILDER_TEST_PKGDATADIR="${PBUILDER_PKGDATADIR:-$PBUILDER_ROOT/usr/share/pbuilder}" fi # set PBUILDER_TEST_VERBOSE to get the full output of tests TESTLIB_FAILS=0 TESTLIB_TESTS=0 testlib_echo() { case "$1" in OK) shift if [ -n "$PBUILDER_TEST_VERBOSE" ]; then echo "[OK]" "$@" >&2 fi ;; FAIL) shift echo "[FAIL]" "$@" >&2 TESTLIB_FAILS=$(($TESTLIB_FAILS + 1)) ;; esac TESTLIB_TESTS=$(($TESTLIB_TESTS + 1)) } testlib_summary() { echo "$0: Ran $TESTLIB_TESTS tests and $(($TESTLIB_TESTS - $TESTLIB_FAILS)) succeeded, $TESTLIB_FAILS failed" if [ $TESTLIB_FAILS != 0 ]; then echo '=================' echo 'Testsuite FAILED!' echo " $0" echo '=================' return 1 fi return 0 } # Create fake installed tree with basic config files. Make sure you trap test # script exit to call testlib_cleanup_env. Optional arg is location of the # pbuilder checkout to copy files from. # this is where the env actually lives testlib_env_root="" testlib_setup_env() { local abs_pbuilder_checkout r if [ -n "$testlib_env_root" ]; then echo "testlib_setup_env called twice without testlib_cleanup_env" >&2 testlib_cleanup_env exit 1 fi if [ -n "$PBUILDER_CHECKOUT" ]; then abs_pbuilder_checkout="`cd $PBUILDER_CHECKOUT; pwd`" fi # backup env vars testlib_env_oldhome="$HOME" testlib_env_oldroot="$PBUILDER_ROOT" testlib_env_root="`mktemp -dt`" # brevity r="$testlib_env_root" mkdir "$r"/etc touch "$r"/etc/pbuilderrc mkdir -p "$r"/usr/share/pbuilder if [ -n "$PBUILDER_CHECKOUT" ]; then cp "$PBUILDER_CHECKOUT"/pbuilderrc "$r"/usr/share/pbuilder else cp "$PBUILDER_TEST_PKGDATADIR"/pbuilderrc "$r"/usr/share/pbuilder fi mkdir -p "$r"/usr/lib if [ -n "$PBUILDER_CHECKOUT" ]; then ln -s "$abs_pbuilder_checkout" "$r"/usr/lib/pbuilder else ln -s "$PBUILDER_TEST_PKGLIBDIR" "$r"/usr/lib/pbuilder fi export PBUILDER_ROOT="$r" # when running the testsuite within pbuilder, these env vars will have been # set by regular pbuilder commands, so we need to unset them as to allow # their default values to be recomputed relative to PBUILDER_ROOT unset PBUILDER_PKGLIBDIR PBUILDER_PKGDATADIR PBUILDER_SYSCONFDIR mkdir "$r"/home touch "$r"/home/.pbuilderrc export HOME="$r"/home } # Reverse the effect of testlib_setup_env. Setup a trap handler in your tests # on this function if you call testlib_setup_env. testlib_cleanup_env() { if [ -z "$testlib_env_root" ]; then # nothing to do return fi rm -rf "$testlib_env_root" export PBUILDER_ROOT="$testlib_env_oldroot" export HOME="$testlib_env_oldhome" testlib_env_root="" } expect_success() { # run the test in subshell; successful commands should not output anything # to stderr but may send output to stdout if (if [ -z "$PBUILDER_TEST_VERBOSE" ]; then exec >/dev/null; fi; "$@"); then testlib_echo "OK" "$1" else testlib_echo "FAIL" "$1" fi } expect_fail() { # run the test in subshell; failed commands may output anything to stdout # and stderr if (if [ -z "$PBUILDER_TEST_VERBOSE" ]; then exec >/dev/null 2>&1; fi; "$@"); then testlib_echo "FAIL" "$1" else testlib_echo "OK" "$1" fi } expect_output() { # run the test in subshell local val result val="$1" shift result="`"$@" 2>&1`" || true if [ "$result" = "$val" ]; then testlib_echo "OK" "$1" else testlib_echo "FAIL" "$1" "expected [$val] but got [$result]" fi } pbuilder-0.215ubuntu7/pbuilder0000775000000000000000000001064012312041170013275 0ustar #! /bin/bash # pbuilder -- personal Debian package builder # Copyright (C) 2001-2007 Junichi Uekawa # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA # pbuilder by Junichi Uekawa 2001 Aug 25 set -e # export this so that programs know which command line # operation is currently done export PBCURRENTCOMMANDLINEOPERATION="$1" umask 0022 case "$1" in --create|create) shift; /usr/lib/pbuilder/pbuilder-createbuildenv "$@" ;; --update|update) shift ; /usr/lib/pbuilder/pbuilder-updatebuildenv "$@" ;; --build|build) shift ; /usr/lib/pbuilder/pbuilder-buildpackage "$@" ;; --clean|clean) shift; . /usr/lib/pbuilder/pbuilder-checkparams if [ -n "$BASEBUILDPLACE" ]; then log "I: Cleaning [$BASEBUILDPLACE]" clean_subdirectories "$BASEBUILDPLACE" || true fi if [ -n "$APTCACHE" ]; then log "I: Cleaning [$APTCACHE]" rm "$APTCACHE"/* || true fi ;; --login|login) shift . /usr/lib/pbuilder/pbuilder-checkparams . /usr/lib/pbuilder/pbuilder-runhooks extractbuildplace trap umountproc_cleanbuildplace_trap exit sighup copyinputfile "${BUILDPLACE}/tmp/buildd" loadhooks recover_aptcache trap saveaptcache_umountproc_cleanbuildplace_trap exit sighup if [ "${INTERNAL_BUILD_UML}" = "yes" ]; then log "I: entering the shell" else log "I: entering the shell File extracted to: $BUILDPLACE " fi executehooks "F" (${CHROOTEXEC} bin/bash -c 'exec -a -bash bin/bash') RET=$? save_aptcache trap umountproc_cleanbuildplace_trap exit sighup # saving the place afterwards if [ "${SAVE_AFTER_LOGIN}" = "yes" ]; then if [ "${INTERNAL_BUILD_UML}" = "yes" ]; then log "E: Invalid combination of internal-build-uml and save-after-login flags" exit 1 else log "I: Saving the results, modifications to this session will persist" unloadhooks umountproc trap cleanbuildplace_trap exit sighup ${CHROOTEXEC} /usr/bin/apt-get clean || true create_basetgz cleanbuildplace trap - exit sighup exit $RET fi fi umountproc_cleanbuildplace trap - exit sighup exit $RET ;; --execute|execute) # try to execute arbitrary program. shift . /usr/lib/pbuilder/pbuilder-checkparams . /usr/lib/pbuilder/pbuilder-runhooks EXECPROGRAM="$1" shift if [ ! -f "${EXECPROGRAM}" ]; then log "E: Command line parameter [$EXECPROGRAM] does not exist" exit 1; fi; extractbuildplace trap umountproc_cleanbuildplace_trap exit sighup copyinputfile "${BUILDPLACE}/tmp/buildd" loadhooks recover_aptcache trap saveaptcache_umountproc_cleanbuildplace_trap exit sighup RUNNAME="$BUILDPLACE/runscript" cat "$EXECPROGRAM" > "$RUNNAME" chmod a+x "$RUNNAME" executehooks "F" ( ${CHROOTEXEC} /runscript "$@" ) RET=$? rm -f "$RUNNAME" save_aptcache trap umountproc_cleanbuildplace_trap exit sighup # saving the place afterwards if [ "${SAVE_AFTER_LOGIN}" = "yes" ]; then if [ "${INTERNAL_BUILD_UML}" = "yes" ]; then log "E: Invalid combination of internal-build-uml and save-after-login flags" else log "I: Saving the results, modifications to this session will persist" unloadhooks umountproc trap cleanbuildplace_trap exit sighup ${CHROOTEXEC} /usr/bin/apt-get clean || true create_basetgz cleanbuildplace trap - exit sighup exit $RET fi fi umountproc_cleanbuildplace trap - exit sighup exit $RET ;; --dumpconfig|dumpconfig) shift . /usr/lib/pbuilder/pbuilder-checkparams . /usr/lib/pbuilder/pbuilder-runhooks extractbuildplace trap umountproc_cleanbuildplace_trap exit sighup loadhooks executehooks "F" log "I: start dump config" log "I: set" set; log "I: env" env; log "I: end dump config" ;; --debuild|debuild) shift "$0" execute "$@" /usr/lib/pbuilder/pdebuild-internal ;; *) . /usr/lib/pbuilder/pbuilder-modules showhelp ;; esac pbuilder-0.215ubuntu7/pdebuild0000664000000000000000000000626512312041170013264 0ustar #! /bin/bash # pbuilder -- personal Debian package builder # Copyright (C) 2001-2007 Junichi Uekawa # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA set -e export PBCURRENTCOMMANDLINEOPERATION="pdebuild" . /usr/lib/pbuilder/pdebuild-checkparams while ! test -d ./debian -o "$(pwd)" = "/" ; do cd ..; done if test ! -d ./debian; then log "E: Cannot find ./debian dir" exit 1 fi; PKG_SOURCENAME=$(dpkg-parsechangelog|sed -n 's/^Source: //p') PKG_VERSION=$(dpkg-parsechangelog|sed -n 's/^Version: \(.*:\|\)//p') ARCHITECTURE="${ARCHITECTURE:-$(dpkg-architecture -qDEB_HOST_ARCH)}" CHANGES="${PKG_SOURCENAME}_${PKG_VERSION}_${ARCHITECTURE}.changes" if [ -z "${PBUILDER_BUILD_LOGFILE}" ]; then PBUILDER_BUILD_LOGFILE="../${PKG_SOURCENAME}_${PKG_VERSION}_${ARCHITECTURE}.build" exec > >(tee "${PBUILDER_BUILD_LOGFILE}") 2>&1 fi export BUILDRESULTUID=$(id -u) export BUILDRESULTGID=$(id -g) if [ "${USE_PDEBUILD_INTERNAL}" = 'yes' ]; then ${PBUILDERROOTCMD} \ ${PDEBUILD_PBUILDER} \ --execute \ ${EXTRA_CONFIGFILE[@]/#/--configfile } \ --bindmounts $(readlink -f ..) \ "$@" \ -- \ /usr/lib/pbuilder/pdebuild-internal \ ${PWD} \ --debbuildopts "" \ --debbuildopts "${DEBBUILDOPTS}" \ --uid "${BUILDRESULTUID}" \ --gid "${BUILDRESULTGID}" \ --pbuildersatisfydepends "$PBUILDERSATISFYDEPENDSCMD" if [ -d "${BUILDRESULT}" ]; then for files in $(sed -rn '/^Files:/,${s/^ .* ([^ ]+)$/\1/p}' ../${CHANGES}); do conditional_cp_a ../"$files" "${BUILDRESULT}" done conditional_cp_a ../${CHANGES} "${BUILDRESULT}" for files in "${ADDITIONAL_BUILDRESULTS[@]}"; do log "I: Trying to save additional result ${files}" conditional_cp_a "${files}" "${BUILDRESULT}" || true done else log "E: BUILDRESULT=[$BUILDRESULT] is not a directory." exit 1 fi else if ! dpkg-checkbuilddeps -B ; then log "W: Unmet build-dependency in source" fi echo "dpkg-buildpackage -S -us -uc -r${BUILDSOURCEROOTCMD} $DEBBUILDOPTS" | \ perl -pe 's/(^|\s)-[AbBF](\s|$)/$1$2/g' | \ /bin/bash ${PBUILDERROOTCMD} \ ${PDEBUILD_PBUILDER} \ --build \ ${EXTRA_CONFIGFILE[@]/#/--configfile } \ --buildresult "${BUILDRESULT}" \ --debbuildopts "" \ --debbuildopts "${DEBBUILDOPTS}" \ "$@" \ ../"${PKG_SOURCENAME}_${PKG_VERSION}".dsc fi # do signing with optional key specifier if [ "${AUTO_DEBSIGN}" = "yes" ]; then unset DEBSIGN_PARAM || true if [ -n "${DEBSIGN_KEYID}" ]; then DEBSIGN_PARAM[1]="-k${DEBSIGN_KEYID}" fi DEBSIGN_PARAM[2]="${BUILDRESULT}/${CHANGES}" debsign "${DEBSIGN_PARAM[@]}" fi pbuilder-0.215ubuntu7/test_pbuilder-checkparams0000775000000000000000000000232512312041170016614 0ustar #!/bin/bash # testsuite for pbuilder-checkparams if [ -n "$PBUILDER_CHECKOUT" ]; then . "$PBUILDER_CHECKOUT/testlib.sh" else # these currently don't need to be exported PBUILDER_TEST_ROOT="${PBUILDER_ROOT:-}" PBUILDER_TEST_PKGLIBDIR="${PBUILDER_PKGLIBDIR:-$PBUILDER_ROOT/usr/lib/pbuilder}" . "$PBUILDER_TEST_PKGLIBDIR/testlib.sh" fi # setup a fake installed environment trap testlib_cleanup_env sigpipe sighup exit testlib_setup_env if [ -n "$PBUILDER_CHECKOUT" ]; then PBUILDER_CHECKPARAMS="$PBUILDER_CHECKOUT/pbuilder-checkparams" else export PBUILDER_PKGLIBDIR="${PBUILDER_PKGLIBDIR:-$PBUILDER_ROOT/usr/lib/pbuilder}" PBUILDER_CHECKPARAMS="$PBUILDER_PKGLIBDIR/pbuilder-checkparams" fi test_debuildopts() { . "$PBUILDER_CHECKPARAMS" echo "$DEBBUILDOPTS" } expect_output "" \ test_debuildopts foo.dsc expect_output "" \ test_debuildopts --debbuildopts "" foo.dsc expect_output "-v1.0 -efoo" \ test_debuildopts --debbuildopts "-v1.0 -efoo" foo.dsc expect_output "-v1.0 -efoo" \ test_debuildopts --debbuildopts -v1.0 --debbuildopts -efoo foo.dsc expect_output "-efoo" \ test_debuildopts --debbuildopts -v1.0 --debbuildopts "" --debbuildopts -efoo foo.dsc testlib_summary pbuilder-0.215ubuntu7/pbuilder-satisfydepends-aptitude0000775000000000000000000001176512312041170020146 0ustar #!/bin/bash # pbuilder -- personal Debian package builder # Copyright (C) 2001,2002,2003,2005-2007 Junichi Uekawa # Copyright (C) 2007 Loïc Minier # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA # # module to satisfy build dependencies; aptitude flavor set -e export PBUILDER_PKGLIBDIR="${PBUILDER_PKGLIBDIR:-$PBUILDER_ROOT/usr/lib/pbuilder}" . "$PBUILDER_PKGLIBDIR"/pbuilder-satisfydepends-funcs # filter out dependencies sent on input not for this arch; deps can have # multiple lines; output is on a single line or "" if empty function filter_arch_deps() { local arch="$1" local INSTALLPKGMULTI local INSTALLPKG # split on "," sed 's/[[:space:]]*,[[:space:]]*/\n/g' | while read INSTALLPKGMULTI; do echo "$INSTALLPKGMULTI" | # split on "|" sed 's/[[:space:]]*|[[:space:]]*/\n/g' | while read INSTALLPKG; do if echo "$INSTALLPKG" | grep -q '\['; then if checkbuilddep_archdeps "$INSTALLPKG" "$ARCH"; then continue fi fi # output the selected package echo "$INSTALLPKG" done | # remove the arch list and add " | " between entries sed 's/\[.*\]//; $,$! s/$/ |/' | xargs --no-run-if-empty done | # add ", " between entries sed '$,$! s/$/,/' | xargs --no-run-if-empty } function checkbuilddep_internal () { # Use this function to fulfill the dependency (almost) local ARCH=$($CHROOTEXEC dpkg-architecture -qDEB_HOST_ARCH) local BUILD_DEP_DEB_DIR local BUILD_DEP_DEB_CONTROL local DEPENDS local CONFLICTS echo " -> Attempting to satisfy build-dependencies" DEPENDS="$(get_build_deps | filter_arch_deps "$ARCH")" CONFLICTS="$(get_build_conflicts | filter_arch_deps "$ARCH")" echo " -> Creating pbuilder-satisfydepends-dummy package" BUILD_DEP_DEB_DIR="/tmp/satisfydepends-aptitude" BUILD_DEP_DEB_CONTROL="$BUILD_DEP_DEB_DIR/pbuilder-satisfydepends-dummy/DEBIAN/control" $CHROOTEXEC mkdir -p "$BUILD_DEP_DEB_DIR/pbuilder-satisfydepends-dummy/DEBIAN/" $CHROOTEXEC sh -c "cat >\"$BUILD_DEP_DEB_CONTROL\"" < Description: Dummy package to satisfy dependencies with aptitude - created by pbuilder This package was created automatically by pbuilder to satisfy the build-dependencies of the package being currently built. EOF if [ -n "$DEPENDS" ]; then $CHROOTEXEC sh -c "echo \"Depends: $DEPENDS\" >>\"$BUILD_DEP_DEB_CONTROL\"" fi if [ -n "$CONFLICTS" ]; then $CHROOTEXEC sh -c "echo \"Conflicts: $CONFLICTS\" >>\"$BUILD_DEP_DEB_CONTROL\"" fi $CHROOTEXEC sh -c "cat \"$BUILD_DEP_DEB_CONTROL\"" $CHROOTEXEC sh -c "dpkg-deb -b \"$BUILD_DEP_DEB_DIR/pbuilder-satisfydepends-dummy\"" $CHROOTEXEC dpkg \ --force-depends \ --force-conflicts \ -i "$BUILD_DEP_DEB_DIR/pbuilder-satisfydepends-dummy.deb" || true $CHROOTEXEC aptitude \ -y \ --without-recommends -o APT::Install-Recommends=false \ "${APTITUDEOPT[@]}" \ -o Aptitude::ProblemResolver::StepScore=100 \ -o "Aptitude::ProblemResolver::Hints::KeepDummy=reject pbuilder-satisfydepends-dummy :UNINST" \ -o Aptitude::ProblemResolver::Keep-All-Level=55000 \ -o Aptitude::ProblemResolver::Remove-Essential-Level=maximum \ install \ pbuilder-satisfydepends-dummy # check whether the aptitude's resolver kept the package if ! $CHROOTEXEC dpkg -l pbuilder-satisfydepends-dummy 2>/dev/null | grep -q ^ii; then echo "Aptitude couldn't satisfy the build dependencies" exit 1 fi echo " -> Finished parsing the build-deps" } function print_help () { # print out help message cat < --help: give help --control: specify control file (debian/control, *.dsc) --chroot: operate inside chroot --binary-all: include binary-all --binary-arch: include binary-arch only --echo: echo mode, do nothing. (--force-version required for most operation) --force-version: skip version check. --continue-fail: continue even when failed. EOF } . "$PBUILDER_PKGLIBDIR"/pbuilder-satisfydepends-checkparams pbuilder-0.215ubuntu7/pdebuild.10000664000000000000000000001213112312041170013410 0ustar .TH "pdebuild" 1 "2006 May 24" "Debian" "pbuilder" .SH NAME pdebuild \- pbuilder way of doing debuild .SH SYNOPSIS .BI "pdebuild [" "pdebuild options" "] \-\- [" "pbuilder options" "]" .PP .SH DESCRIPTION A convenience program for .B "pbuilder" which invokes pbuilder after obtaining appropriate root privilege in a Debian source directory. One must be inside the source tree containing the .B "debian" directory. By default, build log file is stored in ../__.build. .SH "PDEBUILD OPTIONS" The options have the form .BI "\-\-" "option name" which modify the operation semantics as explained below. They are applied from left to right, and when options conflict, the option that appear later take precedence. .TP .BI "\-\-buildsourceroot [" "fakeroot" "]" The command used to gain root privilege for invoking dpkg-buildpackage .TP .BI "\-\-pbuilderroot [" "sudo -E" "]" The command used to gain root privilege for invoking pbuilder. .TP .BI "\-\-pbuildersatisfydepends [" "/usr/lib/pbuilder/pbuilder-satisfydepends" "]" The command used to satisfy (i.e. install) build-dependencies. .TP .BI "\-\-architecture" Set architecture. This is currently required when it doesn't match the host architecture. .TP .BI "\-\-auto\-debsign" Invoke debsign at the end of pdebuild process. .TP .BI "\-\-debsign\-k [" "key\-id" "]" Pass .B \-k option to debsign to specify which key-id to sign with. .TP .BI "\-\-buildresult [" "Directory for build results" "]" The place where the build result is stored. Note that for pdebuild, buildresult needs to be specified as a pdebuild option on the command-line, not as a pbuilder option. Note that the default value for buildresult is what is defined for pbuilder, which is .B "/var/cache/pbuilder/result" and not .B ".." .TP .BI "\-\-configfile [" "Extra config file to use" "]" The configuration file is used, and passed on to .BR "pbuilder" . .TP .BI "\-\-debbuildopts [" "options to pass to dpkg-buildpackage" "]" The space-delimited list of options are passed to dpkg-buildpackage. This option appends to pbuilder option .B "\-\-debbuildopts" and may also be used to reset the list of options by passing the empty string. Multiple options are delimited with spaces. Note that for pdebuild, debbuildopts needs to be specified as a pdebuild option in the command-line, not as a pbuilder option. .TP .BI "\-\-use\-pdebuild\-internal" Uses a different implementation of pdebuild, which calls clean and build inside the chroot, using bind-mounts. .B "pdebuild\-internal" tries to run debian/rules clean inside the chroot. To do so, the working directory is passed on inside the chroot, in the form of bind-mounting and .B debuild is run. This option will not protect the working directory and its parent directories from the build scripts. .TP .BI "\-\-logfile [" "file to log" "]" Specifies the build logfile to create. The messages generated during execution will be written to the file, as well as standard output. .TP .BI "\-\-pbuilder [" "pbuilder" "]" Specifies which command to invoke as pbuilder. .TP .BI "\-\-help" Show a brief help message. .TP .BI "\-\- [" "pbuilder options" "]" After the .B "\-\-" symbol, an arbitrary number of pbuilder options can be specified. See pbuilder(8) for a full list of options. There is an exception that .B "\-\-buildresult" and .B "\-\-debbuildopts" need to be specified as pdebuild options before the .B "\-\-" in order to be effective. .SH "FILES" .TP .I "/etc/pbuilderrc" The configuration file for pbuilder, used in pdebuild. .TP .I "/usr/share/pbuilder/pbuilderrc" The default configuration file for pbuilder, used in pdebuild. .TP .I "${HOME}/.pbuilderrc" Configuration file for pbuilder, used in pdebuild. It overrides .B /etc/pbuilderrc .SH "EXAMPLES" .TP .B "pdebuild" .nf $ pwd /home/dancer/DEBIAN/cowdancer/cowdancer $ ls debian/rules debian/rules $ pdebuild W: /home/dancer/.pbuilderrc does not exist dpkg-buildpackage: source package is cowdancer dpkg-buildpackage: source version is 0.26 dpkg-buildpackage: source changed by Junichi Uekawa dpkg-buildpackage: source version without epoch 0.26 fakeroot debian/rules clean dh_testdir dh_testroot rm \-f build-stamp configure-stamp /usr/bin/make clean make[1]: Entering directory `/home/dancer/DEBIAN/cowdancer/cowdancer' rm \-f *~ *.o *.lo libcowdancer.so cow-shell cowbuilder make[1]: Leaving directory `/home/dancer/DEBIAN/cowdancer/cowdancer' dh_clean dpkg-source \-b cowdancer dpkg-source: warning: source directory `./cowdancer' is not - `cowdancer-0.26' dpkg-source: building cowdancer in cowdancer_0.26.tar.gz . . . .hy .SH "BUGS" pdebuild will accept all options that pbuilder accepts as pdebuild option. However, unless the option is documented in the manual page, it may be ignored. .SH "AUTHOR" Initial coding and main maintenance is done by Junichi Uekawa . The homepage is .B "\%http://pbuilder.alioth.debian.org" .SH "SEE ALSO" .BR "/usr/share/doc/pbuilder/pbuilder-doc.html" ", " .BR "pbuilder" "(8), " .BR "pbuilderrc" "(5)" \" LocalWords: pdebuild pbuilder debuild debian debsign buildresult pbuilder-0.215ubuntu7/pbuilder.80000664000000000000000000004074212312041170013446 0ustar .TH "pbuilder" 8 "2007 Apr 10" "Debian" "pbuilder" .SH NAME pbuilder \- personal package builder .SH SYNOPSIS .BI "pbuilder --create [" "options" "]" .PP .BI "pbuilder --update [" "options" "]" .PP .BI "pbuilder --build [" "options" "] " ".dsc-file" .PP .BI "pbuilder --execute [" "options" "] -- " "script [" "script options" "]" .PP .BI "pbuilder --clean" .PP .BI "pbuilder --login [" "options" "]" .SH "DESCRIPTION" Front end program to the .B "pbuilder" suite of programs, used for creating and maintaining chroot environment and building Debian package in the chroot environment. .SH "COMMANDS" .TP .B "--create" Creates a .B "base.tgz" for the specified distribution. .TP .B "--update" Updates the .B "base.tgz" for the specified distribution. Also, by specifying the .B "\-\-override\-config" option, it is possible to install a new apt-line using the given options and settings in the configuration file for the base.tgz. For example, to switch the distribution of an existing base.tgz to sid, specify the .B "\-\-distribution sid \-\-override\-config" options to update. .TP .B "--build" Builds the package specified by .I ".dsc-file" in the chroot environment created using the .B "base.tgz" .TP .B "--clean" Cleans up the directory specified by the configuration .B "BUILDPLACE" and .B "APTCACHE" specified in .I "/etc/pbuilderrc" .TP .B "--login" Logs into the chroot, and cleaned up afterwards. Any changes you make will not be kept. Only use this for temporary and debugging purposes. Do not bind-mount filesystems directly inside the chroot. Use .B "\-\-bindmounts" option to mount. .TP .B "--execute" Execute a script or command inside the chroot, in a similar manner to .B "--login" The file specified in the command-line argument will be copied into the chroot, and invoked. The remaining arguments are passed on to the script. .TP .B "--dumpconfig" Dumps configuration information, used for debugging. .TP .B "--debuild" Builds a Debian package from the Debian source directory. The current directory should have the usual .I "debian/" directory. Same as .B "pdebuild --use-pdebuild-internal" .SH "OPTIONS" The command is followed by options of the form .BI "\-\-" "option name" which will modify the semantics as explained below. They are applied from left-to-right, and when there are conflicting options, the rightmost options will have effect. .TP .BI "\-\-basetgz [" "basetgz-location" "]" Specifies the location of .B "base.tgz" This option will define the default distribution and apt-lines when used in .B "pbuilder --update" and .B "pbuilder --create" .TP .BI "\-\-buildplace [" "location of build" "]" Specifies the location where building and .B "base.tgz" updating and creation takes place. This is a temporary work directory. A subdirectory of that directory using the current PID of the process is used. .TP .BI "\-\-buildresult [" "location to put build result" "]" Specifies the location the build result gets into after building. The deb files and other files that have resulted from build is copied there. Note that the default value is not the current directory, or .B ".." but another place, .B "/var/cache/pbuilder/result" This is to avoid overwriting already existing deb files with the newly generated ones. .TP .BI "\-\-mirror [" "mirror location" "]" Specifies the URL of Debian mirror to be specified in .B "sources.list" inside the chroot. This option is only valid when distribution is being specified, for .B "--update" and .B "--build" targets. The format is something like: .I "http://http.us.debian.org/debian" which should point to your favourite mirror. This option can optionally be omitted, and left blank, in which case, this part is skipped. Note that these URLs specified to pbuilder will be used from within the chroot, and specifying .B "file:/somewhere/" will most probably fail. .TP .BI "\-\-othermirror [" "deb http://xxx/xxx/ ./ " "|" " other deb lines... " "]" The lines which is added to the sources.list, delimited with .B "|" Like .B "deb http://local/mirror stable main|deb file:/usr/local/mirror ./" The deb lines here are the ones that will appear at the top of the .B "sources.list" inside the chroot. Be sure to follow the syntax rules of .BR "sources.list" "(5)." These lines appear at the beginning of the constructed sources file, so this is the place to list your .B "local" mirror sites; apt will then use them in preference to the ones listed in .B "\-\-mirror". .TP .BI "\-\-distribution [" "distribution" "]" Specifies the distribution used. The supported values are the ones debootstrap supports, plus experimental which is special cased in pbuilder. For instance you may use: .B "sid" or .B "experimental". .TP .BI "\-\-architecture [" "architecture" "]" Specifies the architecture used. The supported values are the ones debootstrap supports. .B "i386" or .B "amd64". .TP .BI "\-\-components [" "components" "]" Specifies the default distribution components to use. eg. "main contrib non-free". Default is "main". .TP .BI "\-\-override\-config" Specify to use different apt set up inside the chroot than it was used for creating the base.tgz. Specify this when you want to do .B "pbuilder --update" with a different distribution target set up. .B "--distribution", "--components", "--mirror", "--othermirror" options are only valid when .B "\-\-override\-config" option is specified in .B "--update" target, or when .B "pbuilder --create" is being called. .TP .BI "\-\-http\-proxy [" "proxy" "]" Specifies the http proxy URL. Something like .B "http://xxx.xxx.xxx.xxx:8080/" should do. .TP .BI "\-\-aptcache [" "location of retrieved package files" "]" Specifies the location where the packages downloaded by apt should be cached. Use .B "\-\-aptcache """"" if you want caching to be turned off. .TP .BI "\-\-configfile [" "configuration file to load" "]" Additional configuration file to read after all other configuration files have been read. \" START OF hookdir description .TP .BI "\-\-hookdir [" "location of user scripts" "]" Specifies the location where scripts for user intervention during the .B "--create" and .B "--update" process are stored. Currently scripts are executed at only one point, on exit from the chrooted environment, just before either a create or a build regenerated the base.tgz file. The script names must be in the form .B "X" much like boot scripts. The scripts must be executable and may be either binaries or interpreted scripts. If it is a script in other than Bourne Shell or Perl, it is up to the user to ensure the interpreter was previously installed in the chrooted environment. Files ending in ~ or .bak are ignored. Although it may not seem necessary, .B "pbuilder --update" does not invoke the hooks if .B "\-\-hookdir" is empty, so if you want to avoid running hooks, run pbuilder with .B "\-\-hookdir """"" If there is a distribution hook, for example, if there was a file .B "sid" inside the hook directory, and the script was creating the chroot for .B "sid" distribution, pbuilder will call debootstrap with that as the 4th parameter in the chroot creation process. This allows for use of custom debootstrap hook script. .B "A" is for .B "--build" target. It is executed before build starts; after unpacking the build system, and unpacking the source, and satisfying the build-dependency. .B "B" is executed after build system finishes building, successfully, before copying back the build result. .B "C" is executed after build failure, before cleanup. .B "D" is executed before unpacking the source inside the chroot, after setting up the chroot environment. Create $TMP, and $TMPDIR if necessary. This is called before build-dependency is satisfied. Also useful for calling .B "apt-get update" .B "E" is executed after .B "pbuilder --update" and .B "pbuilder --create" finishes apt-get work with the chroot, before umounting kernel file systems (/proc) and creating the tarball from the chroot. .B "F" is executed just before user logs in, or program starts executing, after chroot is created in .B "--login" or .B "--execute" target. .B "G" is executed just after debootstrap finishes, and configuration is loaded, and pbuilder starts mounting /proc and invoking .B "apt-get install" in .B "--create" target. \" End of hookdir description .TP .BI "\-\-debbuildopts [" "options" "]" List of options that are passed on to dpkg-buildpackage. Multiple flags are additive and appended ot the any value given in DEBBUILDOPTS as specified in pbuilderrc. To clear the list of options, pass the empty string, e.g. \-\-debbuildopts "". Multiple options are delimited with spaces, like \-\-debbuildopts "\-j100 \-E" .TP .BI "\-\-logfile [" "file to log" "]" Specifies the logfile to create. The messages generated during execution will be written to the specified file, and the standard output. .TP .BI "\-\-binary\-arch" Specify to build architecture specific targets instead of all targets. Setting .B "\-\-debbuildopts" after this option will re-set some parts of the effect. Use this option rather than using .B "\-\-debbuildopts -B" .TP .BI "\-\-bindmounts " "bind-mount-points" Bind-mount the specified directories to inside the chroot. .I "bind-mount-points" is a space-delimited list of directories to bind-mount which should be specified in a space-delimited manner, surrounded in double quotations, like: .B """/srv /somedir /someotherdir""" .TP .BI "\-\-debootstrapopts " "\-\-variant=buildd" " " "\-\-keyring" " " "/usr/share/keyrings/debian\-archive\-keyring.gpg" Add extra command-line options to debootstrap. Specify multiple options through multiple instance of this option, for example: .B "--debootstrapopts --arch=arm --debootstrapopts --variant=buildd" .TP .BI "\-\-debootstrap " "debootstrap" Use specified debootstrap implementation as debootstrap. Known implementations are .B cdebootstrap and .B debootstrap and default is to use .B debootstrap. .TP .BI "\-\-allow\-untrusted " Allow untrusted (no key installed) and unsigned repositories. .BI Warning: Enabling this option may allow remote attackers to compromise the system. Better use signed repositories and .B "\-\-keyring" to add the key(s). .TP .BI "\-\-keyring " "path/to/keyring" Additional keyrings to use for package verification with apt, not used for debootstrap (use .B "\-\-debootstrapopts" ). Use this to add (local) signed repositories. By default the debian-archive-keyring package inside the chroot is used. Can be specified multiple times. .TP .BI "\-\-save\-after\-login " .TP .BI "\-\-save\-after\-exec " Save the chroot image after exiting from the chroot instead of deleting changes. Effective for .B login and .B execute session. .TP .BI "\-\-autocleanaptcache" Clean apt cache automatically, to run apt-get autoclean to only keep the packages which are required for the version of Debian. This is useful when you keep a aptcache directory for each distribution and want to keep the size of the aptcache down. .TP .BI "\-\-help" Show a brief help message. .SH "MORE SPECIFIC OPTIONS" Some options are more involved to pbuilder internal than others. The following options are available. .TP .BI "\-\-removepackages [" "packages to remove" "]" Removes the packages on creating the .BR "base.tgz" "." Use this option to remove potentially dangerous or undesirable packages, like .B "lilo" which nobody will need to have inside a chroot. Packages should be specified in a space-delimited manner, surrounded in double quotations, like .B """lilo gcc mawk""" .TP .BI "\-\-extrapackages [" "packages to add" "]" Adds packages specified as an addition to the default, which is .B "build-essential" by default. This is used in .B "--build" and .B "--create" (after successfully creating the initial chroot) and .BR "--update" . The packages should be specified as a space-delimited list. .TP .BI "\-\-debemail [" "maintainer-name " "]" Specifies that dpkg-buildpackage be called with .BI "-m" "maintainer-name " instead of default value specified in the environment variable, or pbuilderrc .B "This option is almost obsolete, use \-\-debbuildopts instead" .TP .BI "\-\-pkgname\-logfile" Alternative option to .B "\-\-logfile" option. Automatically creates a logfile that is named by the .dsc file name, only really applicable for .B "--build" target. The file extension is specified by .B "PKGNAME_LOGFILE_EXTENTION" in .B "pbuilderrc" .TP .BI "\-\-aptconfdir [" "APT configuration directory to use" "]" Uses the apt configuration file found in the specified directory as the chroot configuration. .B "/etc/apt" is one example, so that the same configuration can be used inside the chroot. This option overrides other options, and may cause some inconsistency problems. .TP .BI "\-\-timeout [" "timeout in sleep time" "]" Time out building after sleeping set time. Specify something like .B "\-\-timeout 10h" in the command line. Default is no timeout. .TP .BI "\-\-no\-targz" Not using base.tgz for operation. The .B "\-\-buildplace" will not be deleted and reconstructed from a .B .tar.gz file. Also, .B "pbuilder" will not add its process ID to the .B "\-\-buildplace" as it usually would. Useful when experimenting with chroots, or trying to create chroots outside control of .B "pbuilder." .TP .BI "\-\-compressprog" Program to use for compression and decompression of the base.tgz. The default is to use gzip, and any program that can be used for the --use-compress-program option of tar can be given. If set to "pigz", compression and decompression is gzip compatible but will use all available CPUs. .TP .BI "\-\-twice" Build the package twice in a row. Useful to ensure the package cleans up properly. The resulting packages are the ones from the second build. .TP .BI "\-\-preserve\-buildplace" Do not clean the .B "\-\-buildplace" if it has the same contents as the .B .tar.gz file, and no modifications are done. For preserving the build place for .B "--create" and .B "--update" targets, see .B "--debug" option. As with .BR "\-\-no\-targz" "," suppresses appending .BR "pbuilder" "'s" process ID to the .BR "\-\-buildplace" "." This is useful if you want to attempt to build a large number of packages successively, but you expect that many of them cannot have their build dependencies satisfied. It will clean up the build place on failure, or after a successful build. .TP .BI "\-\-debug" Turn on Debug mode of pbuilder, to be verbose about errors, and try to avoid cleanup processing when error happens in .B "--update" and .B "--create" targets. .TP .BI "\-\-inputfile " "filename" Add extra file to be copied to .B "/tmp/buildd" inside the build environment. available in .B "--build" and .B "--login" and .B "--execute" targets. .SH "FILES" .TP .I "/etc/pbuilderrc" The system-wide configuration file for pbuilder. .TP .I "/usr/share/pbuilder/pbuilderrc" The default settings for pbuilder, used as fallback for all values that is not specified in .B "/etc/pbuilderrc." .TP .I "${HOME}/.pbuilderrc" The personal configuration file for pbuilder, which overrides settings set in other configuration files. Note that ${HOME} is usually /root (if you are running pbuilder through sudo). .SH "EXAMPLES" .TP .B "pbuilder --create" .nf # pbuilder \-\-create Distribution is sid. Building the build environment -> running debootstrap /usr/sbin/debootstrap I: Retrieving Release I: Retrieving Packages I: Validating Packages . . .hy .TP .B "pbuilder --update" .nf # pbuilder \-\-update W: /home/dancer/.pbuilderrc does not exist Building the build Environment -> extracting base tarball [/var/cache/pbuilder/base.tgz] . . .hy .TP .B "pbuilder --build" .nf # pbuilder \-\-build dsh_*.dsc I: using fakeroot in build. Current time: Sat Jan 20 12:03:34 JST 2007 pbuilder-time-stamp: 1169262214 Building the build Environment -> extracting base tarball [/home/dancer/DEBIAN/pbuilder/pbuilder/testsuite/tmp.FeeAX18779/testimage] -> creating local configuration . . .hy .SH "BUGS" This program is starting to have too many options already. .SH "AUTHOR" Initial coding, and main maintenance is done by Junichi Uekawa . User hooks code added by Dale Amon The homepage is available at .B "\%http://pbuilder.alioth.debian.org" .SH "SEE ALSO" .BR "/usr/share/doc/pbuilder/pbuilder-doc.html" ", " .BR "pdebuild" "(1), " .BR "pbuilderrc" "(5)" \" LocalWords: buildresult pbuilder-0.215ubuntu7/pbuilder-modules0000664000000000000000000004406712312041170014752 0ustar #! /bin/bash # common modules for pbuilder. # pbuilder -- personal Debian package builder # Copyright (C) 2001-2009 Junichi Uekawa # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA function showhelp () { cat <&2 ;; "W: "*) echo "$*" >&2 ;; "I: "*) echo "$*" ;; *) echo "malformed log message: $*" exit 1 ;; esac } # test whether a directory is empty # fails if "$*" exists but isn't a directory # fails and outputs garbage if "$*" doesn't actually exist is_empty_dir() { return "$(find "$*" -maxdepth 0 -type d -empty -printf 0 -o -printf 1)" } # sanity checks to ensure mountpoint $1 is truly unmounted in $BUILDPLACE # (fails relatively often to ensure we don't "rm -rf" a bind mount) function seems_truly_unmounted() { local mountpoint mountpoint="$1" if ! [ -e "$BUILDPLACE/$mountpoint" ]; then log "W: $mountpoint doesn't exist" return 1 fi if ! [ -d "$BUILDPLACE/$mountpoint" ]; then log "W: $mountpoint isn't a directory" return 1 fi if [ -r "$BUILDPLACE/proc/mounts" ] && \ grep -q "^[^ ]* $mountpoint " "$BUILDPLACE/proc/mounts"; then log "W: $mountpoint is mounted according to build place's /proc/mounts" return 1 fi if [ -r "/proc/mounts" ] && \ grep -q "^[^ ]* $BUILDPLACE/$mountpoint " "/proc/mounts"; then log "W: $mountpoint is mounted according to system's /proc/mounts" return 1 fi if ! is_empty_dir "$BUILDPLACE/$mountpoint"; then log "W: $mountpoint not empty" return 1 fi return 0 } function umount_one () { if [ "${IGNORE_UMOUNT}" = "yes" ]; then # support ignore umount option. log "I: ignoring umount of $1 filesystem" return fi log "I: unmounting $1 filesystem" local UMOUNT_OUTPUT if ! UMOUNT_OUTPUT="$(LC_ALL=C umount "$BUILDPLACE/$1" 2>&1)"; then log "W: Could not unmount $1: $UMOUNT_OUTPUT" local ignore_umount_error="no" case $UMOUNT_OUTPUT in "umount: "*": not found"|"umount:"*": not mounted") # run an additional set of sanity checks if seems_truly_unmounted "$1"; then ignore_umount_error="yes" else log "W: Tried ignoring error in unmount, but sanity check failed: $1 might still be mounted" fi ;; *) : ;; esac if [ "$ignore_umount_error" != "yes" ]; then log "W: Retrying to unmount $1 in 5s" sleep 5s while ! umount "$BUILDPLACE/$1"; do sleep 5s cat < /dev/null || true mounted[${#mounted[@]}]="$BUILDPLACE/proc" fi if [ "$USEDEVFS" = "yes" ]; then log "I: mounting /dev filesystem" mkdir -p $BUILDPLACE/dev || true mount -t devfs /dev "$BUILDPLACE/dev" mounted[${#mounted[@]}]="$BUILDPLACE/dev" fi if [ "$DEB_BUILD_ARCH_OS" = "linux" ] && [ "$USERUNSHM" = "yes" ]; then log "I: mounting /run/shm filesystem" mkdir -p $BUILDPLACE/run/shm || true mount -t tmpfs tmpfs "$BUILDPLACE/run/shm" mounted[${#mounted[@]}]="$BUILDPLACE/run/shm" fi if [ "$DEB_BUILD_ARCH_OS" = "linux" ] && [ "$USEDEVPTS" = "yes" ]; then log "I: mounting /dev/pts filesystem" mkdir -p $BUILDPLACE/dev/pts || true TTYGRP=5 TTYMODE=620 [ -f /etc/default/devpts ] && . /etc/default/devpts mount -t devpts /dev/pts "$BUILDPLACE/dev/pts" -onoexec,nosuid,gid=$TTYGRP,mode=$TTYMODE mounted[${#mounted[@]}]="$BUILDPLACE/dev/pts" fi if [ -x /usr/sbin/selinuxenabled ] && /usr/sbin/selinuxenabled; then log "I: mounting selinux filesystem" mkdir -p $BUILDPLACE/selinux mount -t selinuxfs /selinux "$BUILDPLACE/selinux" mounted[${#mounted[@]}]="$BUILDPLACE/selinux" fi MOUNTPARAMS="-obind" [ "$DEB_BUILD_ARCH_OS" = "kfreebsd" ] && MOUNTPARAMS="-t nullfs" for mnt in $BINDMOUNTS; do log "I: Mounting $mnt" if mkdir -p "$BUILDPLACE/$mnt" && mount $MOUNTPARAMS "$mnt" "$BUILDPLACE/$mnt"; then # successful. mounted[${#mounted[@]}]="$mnt" else # this part of code is the only part which is supposed to fail. # When unsuccessful, backtrack / umount and abort. if [ -n "${mounted[*]}" ]; then log "I: error recovery: umount successfully mounted mount-points: ${mounted[@]}" for umnt in "${mounted[@]}"; do log "I: umounting $umnt" umount "$umnt" done fi exit 1 fi done if [ -f "$BUILDPLACE/usr/sbin/policy-rc.d" ]; then log "I: policy-rc.d already exists" else log "I: installing dummy policy-rc.d" echo "\ #!/bin/sh while true; do case "\$1" in -*) shift ;; makedev) exit 0;; x11-common) exit 0;; *) exit 101;; esac done " > "$BUILDPLACE/usr/sbin/policy-rc.d" chmod a+x "$BUILDPLACE/usr/sbin/policy-rc.d" fi } ## function to clean subdirs, use instead of rm -r function clean_subdirectories () { if [ -z "$1" ]; then log "E: Fatal internal error in clean_subdirectories" exit 1; fi if [ ! -d "$1" ]; then log "W: directory $1 does not exist in clean_subdirectories" return; fi log "I: removing directory $1 and its subdirectories" find "$1" -xdev \( \! -type d \) -print0 |xargs -0 rm -f find "$1" -xdev -depth -type d -print0 | \ (xargs -0 rmdir || true) } function cleanbuildplace () { if [ "$?" -ne 0 ]; then log "W: Aborting with an error"; fi if [ "${INTERNAL_BUILD_UML}" != "yes" ]; then if [ -d "$BUILDPLACE" ]; then # A directory on the same partition as $BUILDPLACE, bind-mounted # into $BUILDPLACE, will be cleaned out by clean_subdirectories # (because -xdev doesn't know about bind mounts). To avoid that # potential disaster (and also to avoid ugly error messages from # rmdir otherwise), we want to make sure that there is *nothing* # mounted under the chroot before we do our bulldozer routine. # # The readlink -f is a simple way to canonicalize the path for # $BUILDPLACE (no dirty double slashes for *us*), so it matches # what will be in the output of mount. if mount |grep -q -F " $(readlink -f $BUILDPLACE)/"; then log "E: Something is still mounted under ${BUILDPLACE}; unmount and remove ${BUILDPLACE} manually" else log "I: cleaning the build env " clean_subdirectories "$BUILDPLACE" fi fi; fi } function umountproc_cleanbuildplace () { # rolling back to abort. if [ "$?" -ne 0 ]; then log "W: Aborting with an error"; fi umountproc cleanbuildplace } function saveaptcache_umountproc_cleanbuildplace () { # save the apt cache, and call umountproc_cleanbuildplace save_aptcache umountproc_cleanbuildplace } function installaptlines (){ log "I: Installing apt-lines" rm -f "$BUILDPLACE"/etc/apt/sources.list if [ -z "$DISTRIBUTION" ]; then log "E: Distribution not specified, please specify" exit 1 fi if [ -n "$OTHERMIRROR" ]; then echo "$OTHERMIRROR" | tr "|" "\n" >> "$BUILDPLACE"/etc/apt/sources.list fi if [ -n "$MIRRORSITE" ] ; then cat >> "$BUILDPLACE"/etc/apt/sources.list << EOF deb $MIRRORSITE $DISTRIBUTION $COMPONENTS #deb-src $MIRRORSITE $DISTRIBUTION $COMPONENTS EOF fi if [ -n "$APTCONFDIR" ]; then log "I: Copy " "$APTCONFDIR"/* " to chroot" cp -a "$APTCONFDIR/"* "$BUILDPLACE"/etc/apt fi if [ ! -d "$BUILDPLACE"/etc/apt/apt.conf.d ]; then log "I: Create /etc/apt/apt.conf.d/ inside chroot" mkdir "$BUILDPLACE"/etc/apt/apt.conf.d fi # configure /etc/apt.conf.d/15pbuilder cat > "$BUILDPLACE"/etc/apt/apt.conf.d/15pbuilder <> "$BUILDPLACE"/etc/apt/sources.list echo "#deb-src $MIRRORSITE experimental main" >> "$BUILDPLACE"/etc/apt/sources.list fi cat >> "$BUILDPLACE"/etc/apt/apt.conf.d/15pbuilder < to create your base tarball yet?" exit 1 fi if ! (cd "$BUILDPLACE" && tar -x --use-compress-program "$COMPRESSPROG" -p -f "$BASETGZ"); then log "E: failed to extract $BASETGZ to $BUILDPLACE" exit 1 fi log "I: creating local configuration" hostname -f > "$BUILDPLACE/etc/mailname" fi copy_local_configuration # installaptlines may fail with exit 1, do it earlier than mountproc. if [ "$OVERRIDE_APTLINES" = "yes" ]; then installaptlines else # Warn if override config is not set if [ "$OVERRIDE_APTLINES_WARN" = "yes" ]; then log "W: --override-config is not set; not updating apt.conf Read the manpage for details." fi fi mountproc mkdir -p "$BUILDPLACE/tmp/buildd" } function echobacktime () { log "I: Current time: $(date)" log "I: pbuilder-time-stamp: $(date +%s)" } function recover_aptcache() { local doit # recover the aptcache archive if [ -n "$APTCACHE" ]; then if [ "$APTCACHEHARDLINK" = "yes" ]; then doit=ln else doit=cp fi log "I: Obtaining the cached apt archive contents" find "$APTCACHE" -maxdepth 1 -name \*.deb | \ while read A ; do $doit "$A" "$BUILDPLACE/var/cache/apt/archives/" || true done fi } function save_aptcache() { # save the current aptcache archive # it is safe to call this function several times. local doit if [ -n "$APTCACHE" ]; then log "I: Copying back the cached apt archive contents" mkdir -p "$APTCACHE" ; if [ "$APTCACHEHARDLINK" = "yes" ]; then doit=ln else doit=cp fi find "$BUILDPLACE/var/cache/apt/archives/" -maxdepth 1 -name \*.deb | \ while read A ;do if [ ! -f "$APTCACHE/"$(basename "$A") -a -f "$A" ]; then log "I: new cache content "$(basename "$A")" added" $doit "$A" "$APTCACHE/" || true fi done fi } function create_basetgz() { # create base.tgz ( if ! cd "$BUILDPLACE"; then log "E: unexpected error in chdir to $BUILDPLACE" exit 1; fi while test -f "${BASETGZ}.tmp"; do log "I: Someone else has lock over ${BASETGZ}.tmp, waiting" sleep 10s done log "I: creating base tarball [${BASETGZ}]" if ! tar -c --use-compress-program "$COMPRESSPROG" -f "${BASETGZ}.tmp" * ; then log "E: failed building base tarball" rm -f "${BASETGZ}.tmp" exit 1; fi mv "${BASETGZ}.tmp" "${BASETGZ}" ) } function copyinputfile() { # copy files to inside chroot, copy all files specified by INPUTFILE[] parameter. TARGETDIR="$1" if [ -z "$TARGETDIR" ]; then log "E: Unexpected error in copyinputfile" exit 1x fi if [ -n "$INPUTFILE" ]; then log "I: copy ${INPUTFILE[*]} to target directory" cp "${INPUTFILE[@]}" "${TARGETDIR}" fi } # all trap hooks that should lead to 'exit'; and error exit. function cleanbuildplace_trap () { trap "" sigpipe sighup set +e cleanbuildplace trap - exit sighup sigpipe exit 1 } function saveaptcache_umountproc_cleanbuildplace_trap () { trap "" sigpipe sighup set +e saveaptcache_umountproc_cleanbuildplace trap - exit sighup sigpipe exit 1 } function umountproc_cleanbuildplace_trap () { trap "" sigpipe sighup set +e umountproc_cleanbuildplace trap - exit sighup sigpipe exit 1 } function umountproc_trap () { trap "" sigpipe sighup set +e umountproc trap - exit sighup sigpipe exit 1 } # copy to .. if target directory is not .. function conditional_cp_a() { local source_file="$1" # NOTE: target_dir must not end with /, which is usually the case # with 'readlink -f' result, which BUILDRESULT usually is. local target_dir="$2" # For testability, make cp overridable. local cp="${3:-cp}" # $PWD should end with non-'/', so dirname should give us the parent dir. local parent_dir=$(dirname "$PWD") if [ "${parent_dir}" != "${target_dir}" ]; then "$cp" -a "$source_file" "$target_dir" else log "I: file ${source_file} is already in target, not copying." fi } function add_additional_aptkeyrings() { # To support package verification inside the repository we may have to import # additional keys. for KEY in "${APTKEYRINGS[@]}"; do log "I: adding apt key file ${KEY}." $CHROOTEXEC /usr/bin/apt-key add - < "${KEY}" > /dev/null done } #Setting environmental variables that are really required: #required for some packages to install... export LANG=C export LC_ALL=C pbuilder-0.215ubuntu7/test_pbuilder-satisfydepends-classic0000775000000000000000000000572312312041170021004 0ustar #!/bin/bash #for flavour in aptitude classic experimental gdebi; do # (. ./pbuilder-satisfydepends-"$flavour") #done if [ -n "$PBUILDER_CHECKOUT" ]; then . "$PBUILDER_CHECKOUT/testlib.sh" PBUILDER_SATISFYDEPENDS_CLASSIC="$PBUILDER_CHECKOUT/pbuilder-satisfydepends-classic" else # these currently don't need to be exported PBUILDER_TEST_ROOT="${PBUILDER_ROOT:-}" PBUILDER_TEST_PKGLIBDIR="${PBUILDER_PKGLIBDIR:-$PBUILDER_ROOT/usr/lib/pbuilder}" . "$PBUILDER_TEST_PKGLIBDIR/testlib.sh" PBUILDER_SATISFYDEPENDS_CLASSIC="$PBUILDER_TEST_PKGLIBDIR/pbuilder-satisfydepends-classic" fi DEBIAN_CONTROL="" cleanup() { if [ -n "$DEBIAN_CONTROL" ]; then rm -f "$DEBIAN_CONTROL" fi testlib_cleanup_env } trap cleanup sigpipe sighup exit # setup a fake installed environment testlib_setup_env if [ -n "$PBUILDER_CHECKOUT" ]; then PBUILDER_SATISFYDEPENDS_CLASSIC="$PBUILDER_CHECKOUT/pbuilder-satisfydepends-classic" else export PBUILDER_PKGLIBDIR="${PBUILDER_PKGLIBDIR:-$PBUILDER_ROOT/usr/lib/pbuilder}" PBUILDER_SATISFYDEPENDS_CLASSIC="$PBUILDER_PKGLIBDIR/pbuilder-satisfydepends-classic" fi set -- --echo --control "$DEBIAN_CONTROL" # this is just to source the functions . "$PBUILDER_SATISFYDEPENDS_CLASSIC" >/dev/null 2>&1 || true DEBIAN_CONTROL="`mktemp -t`" cat >"$DEBIAN_CONTROL" <= 5.0.0), gnome-pkg-tools, autotools-dev, cdbs, libglib2.0-dev (>= 2.12), libgtk2.0-dev (>= 2.10), libgnome2-dev (>= 2.16.0), libgnomeui-dev (>= 2.16.0), libglade2-dev, libgnomevfs2-dev (>= 2.9.2), libgconf2-dev, libxft-dev, libperl-dev, python-dev, tcl8.4-dev, libxml-parser-perl, libdbus-glib-1-dev (>= 0.60), libtool, scrollkeeper, libgnutls-dev, libnotify-dev (>= 0.3.2-0), libsexy-dev (>= 0.1.7), gnome-doc-utils, libssl-dev (>= 0.9.8b-1), liblaunchpad-integration-dev EOF test_split_deps() { get_build_deps | split_deps } expect_output "debhelper/(>=/5.0.0) gnome-pkg-tools autotools-dev cdbs libglib2.0-dev/(>=/2.12) libgtk2.0-dev/(>=/2.10) libgnome2-dev/(>=/2.16.0) libgnomeui-dev/(>=/2.16.0) libglade2-dev libgnomevfs2-dev/(>=/2.9.2) libgconf2-dev libxft-dev libperl-dev python-dev tcl8.4-dev libxml-parser-perl libdbus-glib-1-dev/(>=/0.60) libtool scrollkeeper libgnutls-dev libnotify-dev/(>=/0.3.2-0) libsexy-dev/(>=/0.1.7) gnome-doc-utils libssl-dev/(>=/0.9.8b-1) liblaunchpad-integration-dev" test_split_deps expect_output "foo bar" split_alternates "foo | bar" expect_output "debhelper gnome-pkg-tools autotools-dev cdbs libglib2.0-dev libgtk2.0-dev libgnome2-dev libgnomeui-dev libglade2-dev libgnomevfs2-dev libgconf2-dev libxft-dev libperl-dev python-dev tcl8.4-dev libxml-parser-perl libdbus-glib-1-dev libtool scrollkeeper libgnutls-dev libnotify-dev libsexy-dev gnome-doc-utils libssl-dev liblaunchpad-integration-dev" get_pkg_name "`test_split_deps`" expect_output ">= 5.0.0 >= 2.12 >= 2.10 >= 2.16.0 >= 2.16.0 >= 2.9.2 >= 0.60 >= 0.3.2-0 >= 0.1.7 >= 0.9.8b-1" get_dep_op_and_ver "`test_split_deps`" testlib_summary pbuilder-0.215ubuntu7/pdebuild-internal0000664000000000000000000001010112312041170015056 0ustar #! /bin/bash # pbuilder-internal -- personal Debian package builder, internal routine # Copyright (C) 2003-2009 Junichi Uekawa # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA # # invoke this as # pbuilder execute pdebuild-internal --bindmount "${pwd}/.." "$1" # does not support --buildresult, but should that be required ? # # Risk: May corrupt your files depending on how user-mode-linux works, if used inside UML. # Will take longer if your package does not successfully run 'debian/rules clean' # # This script is running inside chroot under 'pbuilder execute' as root. set -e # I am probably running as root; make sure I have pbuilder installed here. # passwd is needed as well because of useradd and groupadd calls. apt-get install -q -y "${APTGETOPT[@]}" pbuilder passwd # I'm not going to have the same LOGNAME as outside, I'm root. export LOGNAME=root cd "$1" shift; # dummy function that does enough, real one is defined elsewhere. function log() { echo "$*" } while [ -n "$1" ]; do case "$1" in --debbuildopts) # append to DEBBUILDOPTS or reset to empty if $2 isn't set DEBBUILDOPTS="${2:+${DEBBUILDOPTS:+$DEBBUILDOPTS }$2}"; log "I: Setting DEBBUILDOPTS=$DEBBUILDOPTS" shift; shift; ;; --uid) BUILDRESULTUID=$2 shift; shift; ;; --gid) BUILDRESULTGID=$2 shift; shift; ;; --pbuildersatisfydepends) PBUILDERSATISFYDEPENDSCMD=$2 shift; shift; ;; --debug) PBUILDER_DEBUGMODE=yes set -x shift; ;; --*) log "E: Unknown option [$1] was specified " exit 1; ;; *) break; ;; esac done # Calling pbuilder-runhooks; we try to fix up enough to fool # pbuilder-runhooks. The following source call depends on # pbuilder-runhook inside the chroot, which might be different from # the version outside the chroot. . /usr/lib/pbuilder/pbuilder-runhooks # fool pbuilder-runhooks to use / as buildplace, since I am already # inside chroot. BUILDPLACE=/ # chroot command will just chroot to /, which will effectively chdir # to / and nothing else. CHROOTEXEC="chroot $BUILDPLACE " # make HOOKDIR contain something if there is a hook, to fool HOOKDIR # check inside pbuilder-runhooks that there is HOOKDIR # configuration. We don't call loadhooks or unloadhooks ourselves, # pbuilder execute will do that for you, so we should be okay. # TODO: handle when --hookdir was not initially specified. if [ -d "/$hookdir" ]; then HOOKDIR="/$hookdir" fi executehooks "D" export PBCURRENTCOMMANDLINEOPERATION="pdebuild" "$PBUILDERSATISFYDEPENDSCMD" apt-get install -q -y "${APTGETOPT[@]}" fakeroot # set home directory to .. export HOME=$(readlink -f $(pwd)/../) if [ -z "${HOME}" ]; then echo "E: Failed to obtain reasonable HOME from pwd" fi # create the user similar to that used outside. # TODO: what about id -G output? if other groups than the designated # is used, we're stuffed. groupadd -g "${BUILDRESULTGID}" -o pbgroup useradd -g pbgroup -u "${BUILDRESULTUID}" -d "${HOME}" -o pbuser executehooks "A" # do build with that user. # $DEBBUILDOPTS is evaluated inside the su and chroot. export DEBBUILDOPTS CMD="/usr/bin/dpkg-buildpackage -rfakeroot -us -uc "'${DEBBUILDOPTS}' echo "I: Running $CMD" # This command should be ran with current directory as bind-mounted # package source directory if echo "$CMD" | \ su -p pbuser; then # build was successful : else executehooks "C" exit 1 fi executehooks "B" pbuilder-0.215ubuntu7/pdebuild-checkparams0000664000000000000000000000620312312041170015533 0ustar #! /bin/bash # this is sourced from pbuilder packages to process the optional parameters. # pbuilder -- personal Debian package builder # Copyright (C) 2005-2007 Junichi Uekawa # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA # This code is called for pdebuild . /usr/lib/pbuilder/pbuilder-loadconfig . /usr/lib/pbuilder/pbuilder-modules PBUILDER_BUILD_LOGFILE= while [ -n "$1" ]; do case "$1" in # pbuilder-shared options. --buildresult) if [ -n "$2" ]; then if [ -d "$2" ]; then BUILDRESULT=$(readlink -f "$2"); else BUILDRESULT="$2" log "W: Build-result Directory $2 does not exist" # warn, but make it progress. fi else BUILDRESULT= fi shift; shift; ;; --debbuildopts) DEBBUILDOPTS="${2:+$DEBBUILDOPTS $2}"; shift; shift; ;; --configfile) if [ ! -f "$2" ]; then log "E: Config file $2 does not exist" exit 1 fi . "$2"; EXTRA_CONFIGFILE[${#EXTRA_CONFIGFILE[@]}]="$2"; shift; shift; ;; # pdebuild specific options. --architecture) ARCHITECTURE="$2" shift; shift; ;; --auto-debsign) AUTO_DEBSIGN="yes" shift; ;; --debsign-k) DEBSIGN_KEYID="$2" shift; shift; ;; --buildsourceroot*) BUILDSOURCEROOTCMD="$2"; shift; shift; ;; --pbuilderroot*) PBUILDERROOTCMD="$2"; shift; shift; ;; --pbuildersatisfydepends*) PBUILDERSATISFYDEPENDSCMD="$2"; shift; shift; ;; --use-pdebuild-internal) USE_PDEBUILD_INTERNAL=yes; shift; ;; --debug) PBUILDER_DEBUGMODE=yes set -x shift; ;; --logfile) log "I: Logging to $2" PBUILDER_BUILD_LOGFILE=$(readlink -f $2) exec > >(tee "$2") 2>&1 shift; shift; ;; --pbuilder) log "I: using $2 as pbuilder" PDEBUILD_PBUILDER="$2" shift; shift; ;; --help) showhelp ;; --) # end of processing for this shift; break; ;; --*) log "E: Unknown option [$1] was specified " exit 1; ;; *) break; ;; esac done BUILDPLACE=${BUILDPLACE?"Build root directory is not defined"} # the default is to add a PID in the buildplace specified in the config file. BASEBUILDPLACE="$BUILDPLACE" if [ "${INTERNAL_BUILD_UML}" != "yes" -a "${PRESERVE_BUILDPLACE}" != "yes" ]; then BUILDPLACE="$BUILDPLACE/$$" fi if [ -z "${CHROOTEXEC}" ]; then CHROOTEXEC="chroot $BUILDPLACE " fi if [ -z "${PDEBUILD_PBUILDER}" ]; then PDEBUILD_PBUILDER="pbuilder" fi pbuilder-0.215ubuntu7/pbuilder-uml.conf.50000664000000000000000000000447312312041170015163 0ustar .TH "pbuilder-uml.conf" 5 "2003 Jan 8" "Debian" "pbuilder" .SH NAME pbuilder-uml.conf \- configuration file for user-mode-linux port of pbuilder .SH DESCRIPTION .B "/etc/pbuilder/pbuilder-uml.conf" contains default values used in .B pbuilder-user-mode-linux program invocation. .SH "FORMAT" .TP .BI "MY_ETH0=" "tuntap,,,192.168.0.2" Configures ethernet setting used for booting linux. See how rootstrap boots your system, and copy that. Specify .B "--eth0=slirp,12345,/usr/bin/slirp-fullbolt" to use the slirp connection. .TP .BI "UML_IP=" "192.168.0.3" IP address to use for guest OS. This can be set to .B "dhcp" for obtaining IP address through DHCP. .TP .BI "UML_NETMASK" "=255.255.255.0" Guest OS netmask .TP .BI "UML_NETWORK" "=192.168.0.0" Guest OS network .TP .BI "UML_BROADCAST" "=255.255.255.255" Guest OS broadcast .TP .BI "UML_GATEWAY" "=192.168.0.1" Guest OS gateway .TP .BI "PBUILDER_UML_IMAGE=" "${HOME}/uml-image" Guest OS file system image. .TP .BI "UML_MOUNT_TMPFS=" "no" Whether to mount tmpfs inside the guest image. This is probably mostly useless. .TP .BI "BUILDPLACE=" "${HOME}/tmp/" The location which build will take place. .B pbuilder-user-mode-linux will place temporary COW files to there. The user running UML needs to be able to access that directory. .TP .BI "UML_MEM=" "128" The amount of memory allowed for UML. Give more value to here. .TP .BI "UML_HOSTNAME=" "uml-host" The hostname for the UML. The hostname should be available in .B /etc/hosts so that .B "hostname -f " will be able to return the FQDN. .TP .BI "UML_BUILDRESULT=" "/directory/of/build/result" The directory where build result of pbuilder-user-mode-linux is stored. .TP .BI "ROOTSTRAP_IMAGESIZE=" "size-in-megabytes" The size, in MB, of the disk iamge to create. Defaults to 1000. .SH "NOTES" It is advised to set .B "APTCACHEHARDLINK" to .I no in .BR "~/.pbuilderrc" . see .B "pbuilderrc(5)" for details. .SH "AUTHOR" Initial coding, and main maintenance is done by Junichi Uekawa . The homepage is available at .B "\%http://pbuilder.alioth.debian.org" .SH "FILES" .I "/etc/pbuilder/pbuilder-uml.conf, ${HOME}/.pbuilderrc" .SH "SEE ALSO" .BR "/usr/share/doc/pbuilder/pbuilder-doc.html" ", " .BR "pbuilder-user-mode-linux" "(1), " .BR "pbuilder" "(8), " .BR "pbuilderrc" "(5), " .BR "pdebuild" "(1)" pbuilder-0.215ubuntu7/COPYING0000664000000000000000000004310512312041170012576 0ustar GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc. 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Library General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) year name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. , 1 April 1989 Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Library General Public License instead of this License. pbuilder-0.215ubuntu7/pbuilder-loadconfig0000664000000000000000000000246212312041170015400 0ustar #! /bin/bash # this is sourced from pbuilder packages to process the optional parameters. # pbuilder -- personal Debian package builder # Copyright (C) 2001,2002,2006-2007 Junichi Uekawa # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA export PBUILDER_PKGDATADIR="${PBUILDER_PKGDATADIR:-$PBUILDER_ROOT/usr/share/pbuilder}" export PBUILDER_SYSCONFDIR="${PBUILDER_SYSCONFDIR:-$PBUILDER_ROOT/etc}" for RCFILE in \ "$PBUILDER_PKGDATADIR"/pbuilderrc \ "$PBUILDER_SYSCONFDIR"/pbuilderrc \ "$HOME"/.pbuilderrc; do if [ -f "$RCFILE" ]; then . "$RCFILE" else # log() is not available echo "W: $RCFILE does not exist" >&2 fi done pbuilder-0.215ubuntu7/pbuilder-satisfydepends-gdebi0000664000000000000000000000304012312041170017361 0ustar #!/bin/bash # pbuilder -- personal Debian package builder # Copyright (C) 2001,2002,2003,2005-2007 Junichi Uekawa # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA # # module to satisfy dependency using gdebi # AUTHOR: Michael Vogt set -e function checkbuilddep_internal () { if ! [ -x /usr/bin/gdebi ]; then echo "E: You need the gdebi-core package to resolve build-deps using gdebi" >&2 exit 1 fi NO_RECOMMENDS="" if VERSION=$(/usr/bin/gdebi --version 2>/dev/null); then if dpkg --compare-versions $VERSION ge 0.3.9; then NO_RECOMMENDS="-o APT::Install-Recommends=false" fi fi INSTALL=$(/usr/bin/gdebi --quiet --root $CHROOT --apt-line $NO_RECOMMENDS $DEBIAN_CONTROL) $CHROOTEXEC /usr/bin/apt-get install -y "${APTGETOPT[@]}" $INSTALL } . /usr/lib/pbuilder/pbuilder-satisfydepends-checkparams pbuilder-0.215ubuntu7/test_pbuilder-satisfydepends-checkparams0000775000000000000000000000301312312041170021632 0ustar #!/bin/bash if [ -n "$PBUILDER_CHECKOUT" ]; then . "$PBUILDER_CHECKOUT/testlib.sh" PBUILDER_SATISFYDEPENDS_CHECKPARAMS="$PBUILDER_CHECKOUT/pbuilder-satisfydepends-checkparams" else # these currently don't need to be exported PBUILDER_TEST_ROOT="${PBUILDER_ROOT:-}" PBUILDER_TEST_PKGLIBDIR="${PBUILDER_PKGLIBDIR:-$PBUILDER_ROOT/usr/lib/pbuilder}" . "$PBUILDER_TEST_PKGLIBDIR/testlib.sh" PBUILDER_SATISFYDEPENDS_CHECKPARAMS="$PBUILDER_TEST_PKGLIBDIR/pbuilder-satisfydepends-checkparams" fi # testsuite to test pbuilder-satisfydepends-checkparams. # mock function checkbuilddep_internal() { : # do nothing function } test_chrootexec2() { set -- --internal-chrootexec 'chroot /tmp-hoge ' --chroot /tmp . "$PBUILDER_SATISFYDEPENDS_CHECKPARAMS" } expect_fail test_chrootexec2 test_chrootexec1() { set -- --chroot /tmp --internal-chrootexec 'chroot /tmp-hoge ' . "$PBUILDER_SATISFYDEPENDS_CHECKPARAMS" } expect_success test_chrootexec1 test_chrootexec_echo() { set -- --echo --chroot /tmp . "$PBUILDER_SATISFYDEPENDS_CHECKPARAMS" } expect_fail test_chrootexec_echo test_chrootexec_echo2() { set -- --chroot /tmp --echo . "$PBUILDER_SATISFYDEPENDS_CHECKPARAMS" echo $CHROOTEXEC } expect_output "echo chroot /tmp" test_chrootexec_echo2 test_chrootexec_expect() { set -- --chroot /tmp --internal-chrootexec 'chroot /tmp-hoge ' . "$PBUILDER_SATISFYDEPENDS_CHECKPARAMS" echo $CHROOTEXEC } expect_output "chroot /tmp-hoge" test_chrootexec_expect testlib_summary pbuilder-0.215ubuntu7/patches/0000775000000000000000000000000012312041256013174 5ustar pbuilder-0.215ubuntu7/patches/hoge.diff0000664000000000000000000000626212312041170014751 0ustar diff -Nru pbuilder-0.199+nmu2/debian/changelog pbuilder-0.199+nmu3/debian/changelog --- pbuilder-0.199+nmu2/debian/changelog 2011-02-19 20:02:35.000000000 +0100 +++ pbuilder-0.199+nmu3/debian/changelog 2011-03-29 23:00:24.000000000 +0200 @@ -1,3 +1,11 @@ +pbuilder (0.199+nmu3) unstable; urgency=low + + * Non-Maintainer Upload. + * Apply patches provided by Gonéri Le Bouder to allow pbuilder to + create and manage chroots on kFreeBSD machines (Closes: #542837). + + -- Luca Falavigna Tue, 29 Mar 2011 22:56:44 +0200 + pbuilder (0.199+nmu2) unstable; urgency=low * Non-maintainer upload with maintainer's permission. diff -Nru pbuilder-0.199+nmu2/pbuilder-modules pbuilder-0.199+nmu3/pbuilder-modules --- pbuilder-0.199+nmu2/pbuilder-modules 2010-12-28 05:29:34.000000000 +0100 +++ pbuilder-0.199+nmu3/pbuilder-modules 2011-03-28 23:56:00.000000000 +0200 @@ -201,6 +201,7 @@ function umountproc () { # push arguments on a stack to reverse direction. local reversed + DEB_BUILD_ARCH_OS=$(dpkg-architecture -qDEB_BUILD_ARCH_OS) reversed= for mnt in $BINDMOUNTS; do reversed="$mnt $reversed" @@ -211,18 +212,21 @@ if [ -x /usr/sbin/selinuxenabled ] && /usr/sbin/selinuxenabled; then umount_one "selinux" fi - if [ "$USEDEVPTS" = "yes" ]; then + if [ "$DEB_BUILD_ARCH_OS" = "linux" ] && [ "$USEDEVPTS" = "yes" ]; then umount_one "dev/pts" fi if [ "$USEDEVFS" = "yes" ]; then umount_one "dev" fi if [ "$USEPROC" = "yes" ]; then - if [ -e $BUILDPLACE/proc/sys/fs/binfmt_misc/status ]; then + if [ "$DEB_BUILD_ARCH_OS" = "linux" ] && [ -e $BUILDPLACE/proc/sys/fs/binfmt_misc/status ]; then umount_one "proc/sys/fs/binfmt_misc" fi umount_one "proc" fi + if [ "$DEB_BUILD_ARCH_OS" = "kfreebsd" ]; then + umount_one "sys" + fi } @@ -230,10 +234,13 @@ # Also create a policy-rc.d script if it doesn't already exist. function mountproc () { local -a mounted + DEB_BUILD_ARCH_OS=$(dpkg-architecture -qDEB_BUILD_ARCH_OS) if [ "$USEPROC" = "yes" ]; then log "I: mounting /proc filesystem" mkdir -p $BUILDPLACE/proc - mount -t proc /proc "$BUILDPLACE/proc" + PROCFS="proc" + [ "$DEB_BUILD_ARCH_OS" = "kfreebsd" ] && PROCFS="linprocfs" + mount -t $PROCFS /proc "$BUILDPLACE/proc" ln -s ../proc/mounts $BUILDPLACE/etc/mtab 2> /dev/null || true mounted[${#mounted[@]}]="$BUILDPLACE/proc" fi @@ -243,7 +250,7 @@ mount -t devfs /dev "$BUILDPLACE/dev" mounted[${#mounted[@]}]="$BUILDPLACE/dev" fi - if [ "$USEDEVPTS" = "yes" ]; then + if [ "$DEB_BUILD_ARCH_OS" = "linux" ] && [ "$USEDEVPTS" = "yes" ]; then log "I: mounting /dev/pts filesystem" mkdir -p $BUILDPLACE/dev/pts || true TTYGRP=5 @@ -258,10 +265,12 @@ mount -t selinuxfs /selinux "$BUILDPLACE/selinux" mounted[${#mounted[@]}]="$BUILDPLACE/selinux" fi + MOUNTPARAMS="-obind" + [ "$DEB_BUILD_ARCH_OS" = "kfreebsd" ] && MOUNTPARAMS="-t nullfs" for mnt in $BINDMOUNTS; do log "I: Mounting $mnt" if mkdir -p "$BUILDPLACE/$mnt" && - mount -obind "$mnt" "$BUILDPLACE/$mnt"; then + mount $MOUNTPARAMS "$mnt" "$BUILDPLACE/$mnt"; then # successful. mounted[${#mounted[@]}]="$mnt" else pbuilder-0.215ubuntu7/patches/nmu40000664000000000000000000006050112312041170013777 0ustar From pbuilder-maint-bounces+dancer=netfort.gr.jp@lists.alioth.debian.org Thu May 26 21:12:27 2011 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on vaiop.dancer.pr.jp X-Spam-Level: *** X-Spam-Status: No, score=3.2 required=5.0 tests=BAYES_50,RDNS_NONE autolearn=no version=3.3.1 Delivered-To: dancer@netfort.gr.jp Received: (qmail 21866 invoked by uid 0); 26 May 2011 21:12:26 -0000 Received: from unknown (HELO wagner.debian.org) (217.196.43.132) by aegis.netfort.gr.jp with SMTP; 26 May 2011 21:12:26 -0000 Received: from localhost ([::1] helo=alioth.debian.org) by wagner.debian.org with esmtp (Exim 4.72) (envelope-from ) id 1QPhrD-000289-9H for dancer@netfort.gr.jp; Thu, 26 May 2011 21:12:39 +0000 Received: from busoni.debian.org ([140.211.15.34]) by wagner.debian.org with esmtp (Exim 4.72) (envelope-from ) id 1QPhrA-000281-IV for pbuilder-maint@lists.alioth.debian.org; Thu, 26 May 2011 21:12:37 +0000 Received: from debbugs by busoni.debian.org with local (Exim 4.72) (envelope-from ) id 1QPhqe-0000py-Jl; Thu, 26 May 2011 21:12:04 +0000 X-Loop: owner@bugs.debian.org Subject: Bug#400848: pbuilder: diff for NMU version 0.199+nmu4 Resent-From: Thorsten Glaser Resent-To: debian-bugs-dist@lists.debian.org Resent-CC: Debian pbuilder maintenance team X-Loop: owner@bugs.debian.org Resent-Date: Thu, 26 May 2011 21:12:02 +0000 Resent-Message-ID: X-Debian-PR-Message: followup 400848 X-Debian-PR-Package: pbuilder X-Debian-PR-Keywords: pending X-Debian-PR-Source: pbuilder Received: via spool by 400848-submit@bugs.debian.org id=B400848.13064441782813 (code B ref 400848); Thu, 26 May 2011 21:12:02 +0000 Received: (at 400848) by bugs.debian.org; 26 May 2011 21:09:38 +0000 Received: from static-87-79-237-121.netcologne.de ([87.79.237.121] helo=herc.mirbsd.org ident=root) by busoni.debian.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.72) (envelope-from ) id 1QPho6-0000is-1B; Thu, 26 May 2011 21:09:31 +0000 Received: from herc.mirbsd.org (tg@localhost [IPv6:::1]) by herc.mirbsd.org (8.14.5.Beta0/8.14.5.Beta0) with ESMTP id p4QL8dHB031212 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 26 May 2011 21:08:43 GMT Received: (from tg@localhost) by herc.mirbsd.org (8.14.5.Beta0/8.14.5.Beta0/Submit) id p4QL8dNu009529; Thu, 26 May 2011 21:08:39 GMT Received: by S/MIME Plugin for MirBSD 10 Kv#10uAE-20110220 i386; Thu May 26 21:08:38 UTC 2011 Date: Thu, 26 May 2011 21:08:37 +0000 (UTC) From: Thorsten Glaser X-X-Sender: tg@herc.mirbsd.org To: 620730@bugs.debian.org, 626431@bugs.debian.org, 627086@bugs.debian.org, 603420@bugs.debian.org, 601250@bugs.debian.org, 603881@bugs.debian.org, 400848@bugs.debian.org, 622624@bugs.debian.org Message-ID: X-Message-Flag: Your mailer is broken. Get an update at http://www.washington.edu/pine/getpine/pcpine.html for free. MIME-Version: 1.0 Content-Type: MULTIPART/MIXED; BOUNDARY="0-422438018-1306444141=:6597" Resent-Sender: Debian BTS x-debian-approved: yes Cc: control@bugs.debian.org X-BeenThere: pbuilder-maint@lists.alioth.debian.org X-Mailman-Version: 2.1.13 Precedence: list Reply-To: Thorsten Glaser , 400848@bugs.debian.org List-Id: Development mailing list for pbuilder List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: pbuilder-maint-bounces+dancer=netfort.gr.jp@lists.alioth.debian.org Errors-To: pbuilder-maint-bounces+dancer=netfort.gr.jp@lists.alioth.debian.org X-SA-Exim-Connect-IP: ::1 X-SA-Exim-Mail-From: pbuilder-maint-bounces+dancer=netfort.gr.jp@lists.alioth.debian.org X-SA-Exim-Scanned: No (on wagner.debian.org); SAEximRunCond expanded to false This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. --0-422438018-1306444141=:6597 Content-Type: TEXT/PLAIN; charset=utf-8 Content-Transfer-Encoding: QUOTED-PRINTABLE -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA384 tags 620730 + patch pending tags 626431 + patch pending tags 627086 + patch pending tags 603420 + patch pending tags 601250 + patch pending tags 603881 =3D unreproducible tags 400848 =3D unreproducible tags 622624 =3D unreproducible thanks Dear Junichi, Matt and others, I=E2=80=99ve prepared an NMU for pbuilder (versioned as 0.199+nmu4) and upl= oaded it to Debian unstable, with a two-day delay as per devref =C2=A75.11.1 sinc= e this fixes an RC bug older than seven days. The debdiff is attached; it closes five bugs. I=E2=80=99m also tagging three other bugs as unreproducib= le as pbuilder itself (obviously) doesn=E2=80=99t FTBFS on my system and the test= pak- kage I used didn=E2=80=99t exhibit problems with either comment blocks or h= ori- zontal tabulator characters in the control file. I=E2=80=99m also attaching= the test package (absolutely minimal, but that=E2=80=99s what you get). I mostly used patches from the bugs closed as baseline for my changes, but did a bit more usually. I=E2=80=99m a heavy user of cowbuilder, because= on m68k there=E2=80=99s currently no buildd and cowbuilder is all I know (and = love, really=E2=80=A6 someone should make a buildd flavour that uses cowbuilder i= n- stead of sbuild, if it goes by my will). Cheers. //mirabilos - --=20 I believe no one can invent an algorithm. One just happens to hit upon it when God enlightens him. Or only God invents algorithms, we merely copy the= m. If you don't believe in God, just consider God as Nature if you won't deny existence.=09=09-- Coywolf Qi Hunt -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.7 (MirBSD) iQIVAwUBTd7A/Xa1NLLpkAfgAQlWfQ/+LBSpx3E2TIbR68uHpVUYBdlzocMS0pGm 6a1aL3EPXfSe/Z20ikbMmXUQ2O7AV3imLgxb1bgkQsWMTDWalvma6gXN5jVzX/Sr upB0MOhCqC6cCj3vmpXXdAH45cnk0unYSbC7FIwgYqFlrOIPn9thU0YzRlTKpM6O 0Hkc3gZ2GsTWNVMVMzl27z3ptxN0NPuyEEQhInYiVt+bLbQSosVGgAmrKEYTf9dV qp3fG35ZiXG3RCLDWdAAq138+2SFtIGM1DNkTT9XiwUtMwnkqrqrl327BZJBxbs4 wmdU3kDg72rCu07tZDa8pFbamb0TEoZKDu6lHAuig4OGXXmUh60xthbAR+VRk4+j QuPklRXCOw0mOvNCtcTqeD2qKfzZ+RyOsOQmteayrym0ozUjzk5meeFUgcKDHAHN r9KfAxfuy9+QwVpNoAp+rc/cB6kmwjEgOQSJJpcmOEq3rorng3ybWTDFL//q/sMU Edg3gwuWoCQjR59GTdmMnRoUOq6nA2jUvxZK/m3rhQTfXXd7wO1IiAxYNnGzKDOV u1lVGxU4XCApcaB0gAEefKzEOKBhtLUqd6PWjVbcDbQrDTfblIOsResoKoUQF68y o2Fjx6M3OPYOMvwq7cdO2P37Euzm1CNg4SSry3KyZSdT9lo2onbIhYGd9wds0HGt 9LO14P1nmXI=3D =3D7BsQ -----END PGP SIGNATURE----- --0-422438018-1306444141=:6597 Content-Type: TEXT/PLAIN; charset=US-ASCII; name=pbuilder_0.199+nmu4.debdiff Content-Transfer-Encoding: BASE64 Content-ID: Content-Description: Content-Disposition: attachment; filename=pbuilder_0.199+nmu4.debdiff ZGlmZiAtTnJ1IHBidWlsZGVyLTAuMTk5K25tdTMvRG9jdW1lbnRhdGlvbi9w YnVpbGRlci1kb2MueG1sIHBidWlsZGVyLTAuMTk5K25tdTQvRG9jdW1lbnRh dGlvbi9wYnVpbGRlci1kb2MueG1sDQotLS0gcGJ1aWxkZXItMC4xOTkrbm11 My9Eb2N1bWVudGF0aW9uL3BidWlsZGVyLWRvYy54bWwJMjAxMC0wMS0wMyAw MjozODowOS4wMDAwMDAwMDAgKzAwMDANCisrKyBwYnVpbGRlci0wLjE5OStu bXU0L0RvY3VtZW50YXRpb24vcGJ1aWxkZXItZG9jLnhtbAkyMDExLTA1LTI2 IDIwOjI1OjI5LjAwMDAwMDAwMCArMDAwMA0KQEAgLTE2MDksNyArMTYwOSw3 IEBADQogCSAgICAgIDwvZW50cnk+DQogCSAgICA8L3Jvdz4NCiAJICAgIDxy b3c+DQotCSAgICAgIDxlbnRyeT48ZmlsZW5hbWU+L3J1bjwvZmlsZW5hbWU+ PC9lbnRyeT4gDQorCSAgICAgIDxlbnRyeT48ZmlsZW5hbWU+L3J1bnNjcmlw dDwvZmlsZW5hbWU+PC9lbnRyeT4gDQogCSAgICAgIDxlbnRyeT5UaGUNCiAJ ICAgICAgc2NyaXB0IHBhc3NlZCBhcyBhbiBhcmd1bWVudCB0bw0KIAkgICAg ICA8Y29tbWFuZD5wYnVpbGRlcjwvY29tbWFuZD4gZXhlY3V0ZSBpcyBwYXNz ZWQgb24uDQpkaWZmIC1OcnUgcGJ1aWxkZXItMC4xOTkrbm11My9kZWJpYW4v Y2hhbmdlbG9nIHBidWlsZGVyLTAuMTk5K25tdTQvZGViaWFuL2NoYW5nZWxv Zw0KLS0tIHBidWlsZGVyLTAuMTk5K25tdTMvZGViaWFuL2NoYW5nZWxvZwky MDExLTA0LTA4IDIzOjM2OjI1LjAwMDAwMDAwMCArMDAwMA0KKysrIHBidWls ZGVyLTAuMTk5K25tdTQvZGViaWFuL2NoYW5nZWxvZwkyMDExLTA1LTI2IDIw OjUwOjM2LjAwMDAwMDAwMCArMDAwMA0KQEAgLTEsMyArMSwxNyBAQA0KK3Bi dWlsZGVyICgwLjE5OStubXU0KSB1bnN0YWJsZTsgdXJnZW5jeT1sb3cNCisN CisgICogTm9uLW1haW50YWluZXIgdXBsb2FkLg0KKyAgKiBSZW5hbWUgdGhl IC9ydW4gc2NyaXB0IGZyb20gLS1leGVjdXRlIHRvIC9ydW5zY3JpcHQ7IG5v dCB1c2luZw0KKyAgICBta3RlbXAgZm9yIGNvbnNpc3RlbmN5IHdpdGggdGhl IGRvY3VtZW50YXRpb24uIChDbG9zZXM6ICM2MjcwODYpDQorICAqIEhhbmRs ZSBhcmNoaXRlY3R1cmUgd2lsZGNhcmRzIHdpdGggbW9yZSB0aGFuIG9uZSBh cmNoaXRlY3R1cmUuDQorICAgIChDbG9zZXM6ICM2MjA3MzApIChDbG9zZXM6 ICM2MjY0MzEpDQorICAqIEZpeCBwYnVpbGRlcnJjKDUpIGZvcm1hdHRpbmcu IChDbG9zZXM6ICM2MDM0MjApDQorICAqIEZpeCBwYnVpbGRlci1zYXRpc2Z5 ZGVwZW5kcy1jbGFzc2ljIG91dHB1dCwgaW5jbHVkaW5nIGJldHRlciBsaW5l DQorICAgIGJyZWFrcyBhbmQgaHlwaGVuLXVzZWQtYXMtbWludXMtc2lnbiBs aW50aWFuLiAoQ2xvc2VzOiAjNjAxMjUwKQ0KKyAgKiBQbGVhc2UgbGludGlh bjogYWRkIGRlYmlhbi9zb3VyY2UvZm9ybWF0Lg0KKw0KKyAtLSBUaG9yc3Rl biBHbGFzZXIgPHRnQG1pcmJzZC5kZT4gIFRodSwgMjYgTWF5IDIwMTEgMjA6 NDk6MDQgKzAwMDANCisNCiBwYnVpbGRlciAoMC4xOTkrbm11MykgdW5zdGFi bGU7IHVyZ2VuY3k9bG93DQogDQogICAqIE5vbi1NYWludGFpbmVyIFVwbG9h ZC4NCmRpZmYgLU5ydSBwYnVpbGRlci0wLjE5OStubXUzL2RlYmlhbi9zb3Vy Y2UvZm9ybWF0IHBidWlsZGVyLTAuMTk5K25tdTQvZGViaWFuL3NvdXJjZS9m b3JtYXQNCi0tLSBwYnVpbGRlci0wLjE5OStubXUzL2RlYmlhbi9zb3VyY2Uv Zm9ybWF0CTE5NzAtMDEtMDEgMDA6MDA6MDAuMDAwMDAwMDAwICswMDAwDQor KysgcGJ1aWxkZXItMC4xOTkrbm11NC9kZWJpYW4vc291cmNlL2Zvcm1hdAky MDExLTA1LTI2IDIwOjQyOjI0LjAwMDAwMDAwMCArMDAwMA0KQEAgLTAsMCAr MSBAQA0KKzEuMA0KZGlmZiAtTnJ1IHBidWlsZGVyLTAuMTk5K25tdTMvcGJ1 aWxkZXIgcGJ1aWxkZXItMC4xOTkrbm11NC9wYnVpbGRlcg0KLS0tIHBidWls ZGVyLTAuMTk5K25tdTMvcGJ1aWxkZXIJMjAwOS0wMy0wNyAwMToyODo1MS4w MDAwMDAwMDAgKzAwMDANCisrKyBwYnVpbGRlci0wLjE5OStubXU0L3BidWls ZGVyCTIwMTEtMDUtMjYgMjA6MjY6MDcuMDAwMDAwMDAwICswMDAwDQpAQCAt MTE2LDExICsxMTYsMTEgQEANCiAJcmVjb3Zlcl9hcHRjYWNoZQ0KIAl0cmFw IHNhdmVhcHRjYWNoZV91bW91bnRwcm9jX2NsZWFuYnVpbGRwbGFjZV90cmFw IGV4aXQgc2lnaHVwDQogDQotCVJVTk5BTUU9IiRCVUlMRFBMQUNFL3J1biIN CisJUlVOTkFNRT0iJEJVSUxEUExBQ0UvcnVuc2NyaXB0Ig0KIAljYXQgIiRF WEVDUFJPR1JBTSIgPiAiJFJVTk5BTUUiDQogCWNobW9kIGEreCAiJFJVTk5B TUUiDQogCWV4ZWN1dGVob29rcyAiRiINCi0JKCAke0NIUk9PVEVYRUN9IC9y dW4gIiRAIiApDQorCSggJHtDSFJPT1RFWEVDfSAvcnVuc2NyaXB0ICIkQCIg KQ0KIAlSRVQ9JD8NCiAJcm0gLWYgIiRSVU5OQU1FIg0KIA0KZGlmZiAtTnJ1 IHBidWlsZGVyLTAuMTk5K25tdTMvcGJ1aWxkZXItc2F0aXNmeWRlcGVuZHMt Y2xhc3NpYyBwYnVpbGRlci0wLjE5OStubXU0L3BidWlsZGVyLXNhdGlzZnlk ZXBlbmRzLWNsYXNzaWMNCi0tLSBwYnVpbGRlci0wLjE5OStubXUzL3BidWls ZGVyLXNhdGlzZnlkZXBlbmRzLWNsYXNzaWMJMjAxMC0wNy0wNSAxMzowOToy OS4wMDAwMDAwMDAgKzAwMDANCisrKyBwYnVpbGRlci0wLjE5OStubXU0L3Bi dWlsZGVyLXNhdGlzZnlkZXBlbmRzLWNsYXNzaWMJMjAxMS0wNS0yNiAyMDo0 MjowNS4wMDAwMDAwMDAgKzAwMDANCkBAIC03MCw3ICs3MCw3IEBADQogICAg IGxvY2FsIEFQVEZMQUc9Ii1vIEFQVDo6SW5zdGFsbC1SZWNvbW1lbmRzPWZh bHNlIg0KICAgICBlY2hvICIgLT4gQXR0ZW1wdGluZyB0byBwYXJzZSB0aGUg YnVpbGQtZGVwcyAiDQogICAgIGZvciBJTlNUQUxMUEtHTVVMVEkgaW4gJChn ZXRfYnVpbGRfZGVwcyB8IHNwbGl0X2RlcHMpOyBkbw0KLSAgICAgIGVjaG8g IiAtPiBDb25zaWRlcmluZyBidWlsZC1kZXAkKGVjaG8gIiRJTlNUQUxMUEtH TVVMVEkiIHwgdHIgIi8iICIgIiApIg0KKyAgICAgIGVjaG8gIiAtPiBDb25z aWRlcmluZyBidWlsZC1kZXAgJChlY2hvICIkSU5TVEFMTFBLR01VTFRJIiB8 IHRyICIvIiAiICIpIg0KICAgICAgIFNBVElTRklFRD0ibm8iDQogICAgICAg Zm9yIElOU1RBTExQS0cgaW4gJChzcGxpdF9hbHRlcm5hdGVzICIkSU5TVEFM TFBLR01VTFRJIik7IGRvDQogCUNVUlJFTlRSRUFMUEtHTkFNRT0kKGdldF9w a2dfbmFtZSAiJElOU1RBTExQS0ciKQ0KZGlmZiAtTnJ1IHBidWlsZGVyLTAu MTk5K25tdTMvcGJ1aWxkZXItc2F0aXNmeWRlcGVuZHMtZnVuY3MgcGJ1aWxk ZXItMC4xOTkrbm11NC9wYnVpbGRlci1zYXRpc2Z5ZGVwZW5kcy1mdW5jcw0K LS0tIHBidWlsZGVyLTAuMTk5K25tdTMvcGJ1aWxkZXItc2F0aXNmeWRlcGVu ZHMtZnVuY3MJMjAxMS0wMi0xOSAxODoxNjo0NC4wMDAwMDAwMDAgKzAwMDAN CisrKyBwYnVpbGRlci0wLjE5OStubXU0L3BidWlsZGVyLXNhdGlzZnlkZXBl bmRzLWZ1bmNzCTIwMTEtMDUtMjYgMjA6Mjk6MTQuMDAwMDAwMDAwICswMDAw DQpAQCAtMTIyLDcgKzEyMiw3IEBADQogICAgIGxvY2FsIElOU1RBTExQS0c9 IiQxIg0KICAgICBsb2NhbCBBUkNIPSIkMiINCiAgICAgIyBhcmNoaXRlY3R1 cmVzIGxpc3RlZCBiZXR3ZWVuIFsgYW5kIF0gZm9yIHRoaXMgZGVwDQotICAg IGxvY2FsIERFUF9BUkNIRVM9IiQoZWNobyAiJElOU1RBTExQS0ciIHwgc2Vk ICdzLy4qXFtcKC4qXClcXS4qL1wxLycpIg0KKyAgICBsb2NhbCBERVBfQVJD SEVTPSIkKGVjaG8gIiRJTlNUQUxMUEtHIiB8IHNlZCAtZSAncy8uKlxbXCgu KlwpXF0uKi9cMS8nIC1lICd5fC98IHwnKSINCiAgICAgbG9jYWwgUEtHPSIk KGVjaG8gIiRJTlNUQUxMUEtHIiB8IGN1dCAtZCAnICcgLWYgMSkiDQogICAg IGxvY2FsIFVTRV9JVA0KICAgICBsb2NhbCBJR05PUkVfSVQNCmRpZmYgLU5y dSBwYnVpbGRlci0wLjE5OStubXUzL3BidWlsZGVycmMuNSBwYnVpbGRlci0w LjE5OStubXU0L3BidWlsZGVycmMuNQ0KLS0tIHBidWlsZGVyLTAuMTk5K25t dTMvcGJ1aWxkZXJyYy41CTIwMTAtMDctMDUgMTM6MTQ6MDMuMDAwMDAwMDAw ICswMDAwDQorKysgcGJ1aWxkZXItMC4xOTkrbm11NC9wYnVpbGRlcnJjLjUJ MjAxMS0wNS0yNiAyMDo0ODozMi4wMDAwMDAwMDAgKzAwMDANCkBAIC0zMyw3 ICszMyw3IEBADQogdG8gdGFrZSBlZmZlY3QuDQogU2V0dGluZyB0aGlzIHZh cmlhYmxlIG92ZXJyaWRlcyBvdGhlciBvcHRpb25zLg0KIC5UUA0KLS5CSSAi QVJDSElURUNUVVJFPSIgImBkcGtnIC0tcHJpbnQtYXJjaGl0ZWN0dXJlYCIN CisuQkkgIkFSQ0hJVEVDVFVSRT0iICJgZHBrZyBcLVwtcHJpbnRcLWFyY2hp dGVjdHVyZWAiDQogU3BlY2lmeSB0aGUgZGVmYXVsdCBkaXN0cmlidXRpb24g dG8gdXNlLg0KIFRoaXMgb3B0aW9uIG9ubHkgYWZmZWN0cyB3aGVuIGRvaW5n DQogLkIgInBidWlsZGVyIGNyZWF0ZSINCkBAIC01MiwxMiArNTIsMTMgQEAN CiBTcGVjaWZpZXMgdGhlIGRlZmF1bHQgbG9jYXRpb24gZm9yIHRoZSBhcmNo aXZlZA0KIGNocm9vdCBpbWFnZSB0byBiZSBjcmVhdGVkIGFuZCB1c2VkLg0K IFRoaXMgaXMgb3ZlcnJpZGRlbiB3aXRoIHRoZSBvcHRpb24NCi0uQlIgIi0t YmFzZXRneiIgIi4iDQorLkJSICJcLVwtYmFzZXRneiIgIi4iDQogLlRQDQog LkJJICJCSU5ETU9VTlRTPSIgImRpcmVjdG9yaWVzLXRvLWJpbmQtbW91bnQi DQogV2hlbiB0aGlzIHZhbHVlIGlzIHNldCwgcGJ1aWxkZXIgd2lsbCBtb3Vu dCB0aGVzZSBkaXJlY3RvcmllcyB1c2luZw0KIGJpbmQtbW91bnQuIERvIG5v dCBiaW5kLW1vdW50DQogLkIgIi8iDQorLmJyDQogQW4gRXhhbXBsZToNCiAN CiAuRVgNCkBAIC04OCwxMCArODksMTEgQEANCiBiZSBjb3BpZWQgb3ZlciB0 byBhZnRlciB0aGUgYnVpbGRpbmcuDQogDQogVW5saWtlDQotLkIgIi0tYnVp bGRyZXN1bHQiDQorLkIgIlwtXC1idWlsZHJlc3VsdCINCiBjb21tYW5kLWxp bmUgb3B0aW9uLg0KIFRoZSBwYXRoIGlzIG5vdCBjYW5vbmljYWxpemVkLCBz byB5b3Ugc2hvdWxkIHNwZWNpZnkgYSBmdWxsLXBhdGgsDQotbm90IGEgcmVs YXRpdmUgcGF0aC4uVFANCitub3QgYSByZWxhdGl2ZSBwYXRoLg0KKy5UUA0K IC5CSSAiQ0NBQ0hFRElSPSIgIi92YXIvY2FjaGUvcGJ1aWxkZXIvY2NhY2hl Ig0KIFNwZWNpZmllcyB3aGVyZSBjY2FjaGUgd2lsbCBrZWVwIGl0cyBjYWNo ZWQgY29tcGlsZXIgb3V0cHV0Lg0KIElmIHRoaXMgaXMgc3BlY2lmaWVkLCBj Y2FjaGUgd2lsbCBiZSBpbnN0YWxsZWQgdXBvbiBwYnVpbGRlciBjcmVhdGUg b3INCkBAIC0xMDAsNyArMTAyLDggQEANCiBzZXQgdG8gQ0NBQ0hFRElSLiAg Tm90ZSB0aGF0IGZpbGVzIGluIENDQUNIRURJUiBhcmUgY2hvd25lZCB0bw0K IEJVSUxEVVNFUklEICgxMjM0IGJ5IGRlZmF1bHQpLg0KIC5UUA0KLS5CSSAi QlVJTERSRVNVTFRVSUQ9Ii5UUA0KKy5CSSAiQlVJTERSRVNVTFRVSUQ9Ig0K Ky5UUA0KIC5CSSAiQlVJTERSRVNVTFRHSUQ9Ig0KIFNldCB0aGUgVUlEIGFu ZCBHSUQgb2YgdGhlIGZpbGVzIGJ1aWx0IGFzIHJlc3VsdC4NCiBUaGV5IHBy b2JhYmx5IG5lZWQgdG8gYmUgc2V0IHRvIG51bWVyaWMgVUlEIHZhbHVlcywN CkBAIC0xMTcsNyArMTIwLDcgQEANCiAuQkkgIkJVSUxEU09VUkNFUk9PVENN RD0iICJmYWtlcm9vdCINCiBUaGlzIG9wdGlvbiBpcyB1c2VkIG9uIGludm9j YXRpb24gb2YgZmFrZXJvb3QNCiBmb3INCi0uQiAiZHBrZy1idWlsZHBhY2th Z2UiDQorLkIgImRwa2dcLWJ1aWxkcGFja2FnZSINCiBpbg0KIC5CICJwZGVi dWlsZCINCiAuVFANCkBAIC0xMzUsNyArMTM4LDcgQEANCiBOb3RlIHRoYXQg dGhpcyB3aWxsIHJlcXVpcmUgZmFrZXJvb3QgdG8gYmUgaW5zdGFsbGVkIHdp dGhpbg0KIHRoZSBjaHJvb3QsIGFuZCBmYWtlcm9vdCB3aWxsIGF1dG9tYXRp Y2FsbHkgYmUgaW5zdGFsbGVkLg0KIEFuZA0KLS5CICItcmZha2Vyb290Ig0K Ky5CICJcLXJmYWtlcm9vdCINCiB3aWxsIGJlIGFkZGVkIHRvDQogLkIgIkRF QkJVSUxET1BUUyINCiAuVFANCkBAIC0xNDUsMTAgKzE0OCwxMSBAQA0KIFRo aXMgb3B0aW9uIG9ubHkgYWZmZWN0cyB3aGVuIGRvaW5nDQogLkIgInBidWls ZGVyIGNyZWF0ZSINCiBvciB3aGVuDQotLkIgIi0tb3ZlcnJpZGUtY29uZmln Ig0KKy5CICJcLVwtb3ZlcnJpZGVcLWNvbmZpZyINCiBpcyBzcGVjaWZpZWQg Zm9yDQogLkIgInBidWlsZGVyIHVwZGF0ZSINCi1vcHRpb24uLlRQDQorb3B0 aW9uLg0KKy5UUA0KIC5CSSAiZXhwb3J0IGh0dHBfcHJveHk9IiAiaHR0cDov L3lvdXItcHJveHk6ODA4MC8iDQogRGVmaW5lcyB0aGUgcHJveHkgZm9yIGh0 dHAgY29ubmVjdGlvbi4NCiAuVFANCkBAIC0xNTksMTYgKzE2MywxNiBAQA0K IC5UUA0KIC5CSSAiREVCQlVJTERPUFRTPSIgIiINCiBUaGUgb3B0aW9ucyBn aXZlbiBoZXJlIHdpbGwgYmUgcGFzc2VkIG9uIHRvDQotLkJSIGRwa2ctYnVp bGRwYWNrYWdlIC4NCisuQlIgZHBrZ1wtYnVpbGRwYWNrYWdlIC4NCiBUaGlz IGNhbiBiZSB1c2VmdWwgZS5nLiBmb3IgYmluYXJ5LW9ubHkgYnVpbGRzLiBU aGUgY29tbWFuZC1saW5lIG9wdGlvbg0KLS5CICItLWRlYmJ1aWxkb3B0cyIg d2lsbCBiZSBhcHBlbmRlZCB0byBhbnkgY29udGVudHMgc3BlY2lmaWVkIGhl cmUgYnV0DQorLkIgIlwtXC1kZWJidWlsZG9wdHMiIHdpbGwgYmUgYXBwZW5k ZWQgdG8gYW55IGNvbnRlbnRzIHNwZWNpZmllZCBoZXJlIGJ1dA0KIG1heSBh bHNvIGJlIHVzZWQgdG8gcmVzZXQgdGhlIGxpc3Qgb2Ygb3B0aW9ucy4NCiAN CiBUaGUgZGVmYXVsdCB2YWx1ZSBpcyB0byBidWlsZCBzb3VyY2UgYW5kIGJp bmFyeSBwYWNrYWdlLg0KIC5UUA0KLS5CSSAiREVCT09UU1RSQVBPUFRTPSIg IiggJy0tdmFyaWFudD1idWlsZGQnICkiDQorLkJJICJERUJPT1RTVFJBUE9Q VFM9IiAiKCAnXC1cLXZhcmlhbnQ9YnVpbGRkJyApIg0KIFdoZW4gdGhpcyBv cHRpb24gaXMgc2V0IHRvDQotLkIgIi0tdmFyaWFudD1idWlsZGQiDQorLkIg IlwtXC12YXJpYW50PWJ1aWxkZCINCiAuQiAicGJ1aWxkZXIiDQogd2lsbCBp bnZva2UNCiAuQiAiJERFQk9PVFNUUkFQIg0KQEAgLTE4OCwxMiArMTkyLDEy IEBADQogLlRQDQogLkJJICJERUJFTUFJTD0iICJNYWludGFpbmVyIE5hbWUg PE1haWxAQWRkcmVzcz4iDQogSWYgdGhpcyB3YXMgc3BlY2lmaWVkLA0KLS5C IGRwa2ctYnVpbGRwYWNrYWdlDQorLkIgZHBrZ1wtYnVpbGRwYWNrYWdlDQog Y29tbWFuZCB3aWxsIGJlIHBhc3NlZCB3aXRoIHRoZSBuZWNlc3Nhcnkgc3Bv bnNvcnNoaXAgb3B0aW9uDQotLkIgIi1tTWFpbnRhaW5lciBOYW1lIDxNYWls QEFkZHJlc3M+Ig0KKy5CICJcLW1NYWludGFpbmVyIE5hbWUgPE1haWxAQWRk cmVzcz4iDQogb24gYnVpbGRpbmcuDQogT3ZlcnJpZGRlbiB3aXRoDQotLkIg Ii0tZGViZW1haWwiDQorLkIgIlwtXC1kZWJlbWFpbCINCiBjb21tYW5kLWxp bmUgb3B0aW9uLg0KIFRoZSBkZWZhdWx0IGNvbmZpZ3VyYXRpb24gZm9yDQog LkIgcGJ1aWxkZXINCkBAIC0yMTEsNyArMjE1LDcgQEANCiBUaGlzIG9wdGlv biBvbmx5IGFmZmVjdHMgd2hlbiBkb2luZw0KIC5CICJwYnVpbGRlciBjcmVh dGUiDQogb3Igd2hlbg0KLS5CICItLW92ZXJyaWRlLWNvbmZpZyINCisuQiAi XC1cLW92ZXJyaWRlXC1jb25maWciDQogaXMgc3BlY2lmaWVkIGZvcg0KIC5C ICJwYnVpbGRlciB1cGRhdGUiDQogb3B0aW9uLg0KQEAgLTIyOCw3ICsyMzIs NyBAQA0KIFNwZWNpZmllcyB0aGUgZGVmYXVsdCBsb2NhdGlvbiBmb3IgdGhl IHVzZXIgaG9va3MNCiBkaXJlY3RvcnkuDQogVGhpcyBpcyBvdmVycmlkZGVu IHdpdGggdGhlIG9wdGlvbg0KLS5CUiAiLS1ob29rZGlyIiAiLiINCisuQlIg IlwtXC1ob29rZGlyIiAiLiINCiANCiBJZiB0aGlzIGlzIHNwZWNpZmllZCwg aG9va3MgYXJlIHNlYXJjaGVkIGZvciBpbg0KIHRoZSBjaHJvb3QsIHdoZW4g cnVubmluZw0KQEAgLTI1MSw4ICsyNTUsOSBAQA0KIC5CSSAiT1RIRVJNSVJS T1I9IiAiZGViIGh0dHA6Ly94eHgveHh4LyAuLyAiICJbfCIgIiBvdGhlciBk ZWIgbGluZXMuLi4gIiAiXSINCiBUaGUgbGluZXMgd2hpY2ggaXMgYWRkZWQg dG8gdGhlIHNvdXJjZXMubGlzdCwgZGVsaW1pdGVkIHdpdGgNCiAuQiAifCIN Ci1MaWtlDQotLkIgImRlYiBodHRwOi8vbG9jYWwvbWlycm9yIHN0YWJsZSBt YWlufGRlYiBmaWxlOi91c3IvbG9jYWwvbWlycm9yIC4vIg0KK0xpa2U6DQor LmJyDQorLkIgImRlYiBodHRwOi8vbG9jYWwvbWlycm9yIHNpZCBtYWlufGRl YiBmaWxlOi91c3IvbG9jYWwvbWlycm9yIC4vIg0KIA0KIFRoZSBkZWIgbGlu ZXMgaGVyZSBhcmUgdGhlIG9uZXMgdGhhdCB3aWxsIGFwcGVhciBhdCB0aGUg dG9wIG9mIHRoZQ0KIC5CICJzb3VyY2VzLmxpc3QiDQpAQCAtMjY4LDcgKzI3 Myw3IEBADQogDQogVG8gbWFrZSBjaGFuZ2VzIG9uIG1pcnJvciBzaXRlIGVm ZmVjdGl2ZSBvbg0KIC5CIHVwZGF0ZQ0KLS5CICItLW92ZXJyaWRlLWNvbmZp ZyINCisuQiAiXC1cLW92ZXJyaWRlXC1jb25maWciDQogbmVlZHMgdG8gYmUg c3BlY2lmaWVkLg0KIC5UUA0KIC5CSSAiUERFQlVJTERfUEJVSUxERVI9IiAi cGJ1aWxkZXIiDQpAQCAtMjc5LDI2ICsyODQsMjYgQEANCiAuQiAiY293YnVp bGRlciINCiAuVFANCiAuQkkgIlBLR05BTUVfTE9HRklMRV9FWFRFTlRJT049 IiAiLmJ1aWxkIg0KLVRoZSBleHRlbnNpb24gb2YgZmlsZW5hbWUgdXNlZCBp biBwa2duYW1lLWxvZ2ZpbGUgb3B0aW9uLg0KK1RoZSBleHRlbnNpb24gb2Yg ZmlsZW5hbWUgdXNlZCBpbiBwa2duYW1lXC1sb2dmaWxlIG9wdGlvbi4NCiAu VFANCiAuQkkgIlBLR05BTUVfTE9HRklMRT0iICJ5ZXMiDQogQWx3YXlzIHJ1 biB3aXRoDQotLkIgIi0tcGtnbmFtZS1sb2dmaWxlIg0KKy5CICJcLVwtcGtn bmFtZVwtbG9nZmlsZSINCiBvcHRpb24sIGFuZCBjcmVhdGUgYSBsb2dmaWxl IG5hbWVkIGFmdGVyIHRoZSBwYWNrYWdlIG5hbWUuDQogLlRQDQotLkJJICJQ QlVJTERFUlJPT1RDTUQ9IiAic3VkbyAtRSINCisuQkkgIlBCVUlMREVSUk9P VENNRD0iICJzdWRvIFwtRSINCiBUaGlzIG9wdGlvbiBpcyB1c2VkIG9uIGlu dm9jYXRpb24gb2YNCiAuQiAicGJ1aWxkZXIgYnVpbGQiDQogaW4NCiAuQiAi cGRlYnVpbGQiDQogLlRQDQotLkJJICJQQlVJTERFUlNBVElTRllERVBFTkRT Q01EPSIgIi91c3IvbGliL3BidWlsZGVyL3BidWlsZGVyLXNhdGlzZnlkZXBl bmRzIg0KKy5CSSAiUEJVSUxERVJTQVRJU0ZZREVQRU5EU0NNRD0iICIvdXNy L2xpYi9wYnVpbGRlci9wYnVpbGRlclwtc2F0aXNmeWRlcGVuZHMiDQogVGhp cyBvcHRpb24gaXMgdXNlZCBieSB2YXJpb3VzIHBhcnRzIG9mIHBidWlsZGVy IHRvIHNhdGlzZnkNCiAoaS5lLiBpbnN0YWxsKSB0aGUgYnVpbGQtZGVwZW5k ZW5jaWVzIG9mIGEgcGFja2FnZS4gIFRoZXJlIGFyZSBmb3VyDQogaW1wbGVt ZW50YXRpb25zOg0KIA0KIFRoZSAiZXhwZXJpbWVudGFsIiBpbXBsZW1lbnRh dGlvbiwNCi0icGJ1aWxkZXItc2F0aXNmeWRlcGVuZHMtZXhwZXJpbWVudGFs Iiwgd2hpY2ggbWlnaHQgYmUgdXNlZnVsIHRvIHB1bGwNCisicGJ1aWxkZXJc LXNhdGlzZnlkZXBlbmRzXC1leHBlcmltZW50YWwiLCB3aGljaCBtaWdodCBi ZSB1c2VmdWwgdG8gcHVsbA0KIHBhY2thZ2VzIGZyb20gZXhwZXJpbWVudGFs IG9yIGZyb20gcmVwb3NpdG9yaWVzIHdpdGggYSBsb3cgQVBUIFBpbg0KIFBy aW9yaXR5Lg0KIA0KQEAgLTMxNiwxNCArMzIxLDE0IEBADQogDQogVGhlIGRl ZmF1bHQgaXMgbm93ICJhcHRpdHVkZSIuDQogLlRQDQotLkJJICJQQlVJTERF UlNBVElTRllERVBFTkRTT1BUPSIgIignLS1jaGVjay1rZXknKSINCi1BcnJh eSBvZiBmbGFncyB0byBnaXZlIHRvIHBidWlsZGVyLXNhdGlzZnlkZXBlbmRz Lg0KLVNwZWNpZnlpbmcgLS1jaGVjay1rZXkgaGVyZSB3aWxsIHRyeSB0byB2 ZXJpZnkga2V5IHNpZ25hdHVyZXMuDQorLkJJICJQQlVJTERFUlNBVElTRllE RVBFTkRTT1BUPSIgIignXC1cLWNoZWNrXC1rZXknKSINCitBcnJheSBvZiBm bGFncyB0byBnaXZlIHRvIHBidWlsZGVyXC1zYXRpc2Z5ZGVwZW5kcy4NCitT cGVjaWZ5aW5nIFwtXC1jaGVja1wta2V5IGhlcmUgd2lsbCB0cnkgdG8gdmVy aWZ5IGtleSBzaWduYXR1cmVzLg0KIA0KIC5UUA0KLS5CSSAiQVBUR0VUT1BU PSIgIignLS1mb3JjZS15ZXMnKSINCi1FeHRyYSBmbGFncyB0byBnaXZlIHRv IGFwdC1nZXQuDQotRGVmYXVsdCBpcyAtLWZvcmNlLXllcywgd2hpY2ggd2ls bCBza2lwIGtleSB2ZXJpZmljYXRpb24gb2YgcGFja2FnZXMNCisuQkkgIkFQ VEdFVE9QVD0iICIoJ1wtXC1mb3JjZVwteWVzJykiDQorRXh0cmEgZmxhZ3Mg dG8gZ2l2ZSB0byBhcHRcLWdldC4NCitEZWZhdWx0IGlzIFwtXC1mb3JjZVwt eWVzLCB3aGljaCB3aWxsIHNraXAga2V5IHZlcmlmaWNhdGlvbiBvZiBwYWNr YWdlcw0KIHRvIGJlIGluc3RhbGxlZC4gVW5zZXQgaWYgeW91IHdhbnQgdG8g ZW5hYmxlIGtleSB2ZXJpZmljYXRpb24uDQogDQogLlRQDQpAQCAtMzUyLDcg KzM1Nyw3IEBADQogLkJJICJVU0VfUERFQlVJTERfSU5URVJOQUw9IiAieWVz Ig0KIFdoZW4gdGhpcyBvcHRpb24gaXMgc2V0IHRvDQogLkkgeWVzDQotLkIg InBkZWJ1aWxkLWludGVybmFsIg0KKy5CICJwZGVidWlsZFwtaW50ZXJuYWwi DQogaW1wbGVtZW50YXRpb24gb2YNCiAuQiBwZGVidWlsZA0KIGlzIHVzZWQu DQpAQCAtMzc2LDcgKzM4MSw3IEBADQogLlNIICJGSUxFUyINCiAuSSAiL2V0 Yy9wYnVpbGRlcnJjLCAkSE9NRS8ucGJ1aWxkZXJyYyINCiAuU0ggIlNFRSBB TFNPIg0KLS5CUiAiL3Vzci9zaGFyZS9kb2MvcGJ1aWxkZXIvcGJ1aWxkZXIt ZG9jLmh0bWwiICIsICINCisuQlIgIi91c3Ivc2hhcmUvZG9jL3BidWlsZGVy L3BidWlsZGVyXC1kb2MuaHRtbCIgIiwgIg0KIC5CUiAiY293YnVpbGRlciIg Iig4KSwgIg0KIC5CUiAicGJ1aWxkZXIiICIoOCksICINCiAuQlIgInBkZWJ1 aWxkIiAiKDEpIg0K --0-422438018-1306444141=:6597 Content-Type: TEXT/PLAIN; charset=US-ASCII; name=tstpkg_1.dsc Content-Transfer-Encoding: BASE64 Content-ID: Content-Description: Content-Disposition: attachment; filename=tstpkg_1.dsc Rm9ybWF0OiAxLjANClNvdXJjZTogdHN0cGtnDQpCaW5hcnk6IHRzdHBrZw0K QXJjaGl0ZWN0dXJlOiBhbGwNClZlcnNpb246IDENCk1haW50YWluZXI6IFRo b3JzdGVuIEdsYXNlciA8dGdAbWlyYnNkLmRlPg0KQnVpbGQtRGVwZW5kczog bWtzaCBbYW1kNjQgaTM4Nl0sIGN2cyBbIWFtZDY0ICFpMzg2XSwgeHotbHpt YSAoPj0gNX4pLCBsZXNzDQpDaGVja3N1bXMtU2hhMTogDQogNjZlNzhkYTNm YmViYTNiOGQzNGJiMzc5NDY2MTYxNWUzOTYyMjM5ZCA2ODggdHN0cGtnXzEu dGFyLmd6DQpDaGVja3N1bXMtU2hhMjU2OiANCiA3OGJhMWU1NjZhYWUyNzE4 MDI3YzZlY2U2OGMyZWZmYTJjYjFjNjdiZDA2ZGQ2Y2UzYmZmYTY2ZTI5OWYx ODNhIDY4OCB0c3Rwa2dfMS50YXIuZ3oNCkZpbGVzOiANCiBhZDNmNmE1ZDli MmZkZTg2ODlmYTI3YTI1MTI3Y2U4MCA2ODggdHN0cGtnXzEudGFyLmd6DQo= --0-422438018-1306444141=:6597 Content-Type: APPLICATION/octet-stream; name=tstpkg_1.tar.gz Content-Transfer-Encoding: BASE64 Content-ID: Content-Description: Content-Disposition: attachment; filename=tstpkg_1.tar.gz H4sIAAAAAAACA+yWUW/TMBDH+4o/xVV7YINmjdMmQYFNgDYhpA1NbDxNPLjO tTF1nMh2gO6Bz86l3QBNAl5GB8I/qXV6Tu2r//nf1TvfLhcRHw/+HDGRp+l6 JG6P62vO0yxPJ/F00t+XT5N8AOlgC3TOCwsw+E/xN/qXOFPCjO9b/zynOI+z dBL0vw/9ZSXMAnWzuGP9s+n0p/rzPLulf5JO+ADioP+W9Iddvgfv3rw9Pjl+ cX589BQ6u0AjVwe6+cQYwCN4bZRXQoNFjcLhPkWjCC6qxjqPBl5pClp45hfP a2Vnrtwv8RBovhtBksGpWEESc05vRZwU6RQe98KzQeAv87/tNLot13/O8xv/ 83jS+5/nSRz8vw12huPO2fFMmXEtlgjRnLFZp3QJkoxugCaEXUXKlNjefBBW VtfXoAydn9YgK5TLIhj6n+//jfG20Xfu/1/1/yz+1v95mq77f0LlIvh/G/4H XynHdkA5EDTIpq7ReMbOm85KLGDzgLBzlF41poBaOcnOrGqs8qsCmrYPC81O hTKeXmiL3/wtoF3miub7LeeNBVGX2XQEDunZK/ugafyPE5SgLaESlCB4MWMv +/IUHWGLpnSU0NJVcLm+F9TkSfZ+1G9A2fuqX+wDCQy+2RQoUHNQ/qHrf2ar 0aNeQSusw5KB/OjgcrhZZ7hZCD5fRfqqFrB7ePAg/bI3AmqOjrEzIZdi8f1w XlBBVJ5OqLMUpHLIjtBJq9rNkV0gpXD9HQYn2CfgqXa260KLdhjKZiAQCAQC gUAgEAgEAl8BAAD//xoFAAAAAP//GgUAAAAA//8aBQAAAAD//xoFAAAAAP// GgUAAAAA//8aBQAAAAD//xoFAAAAAP//GgUAAAAA//8aBQAAAAD//6IiAAAA AP//AwAbFwmqACgAAA== --0-422438018-1306444141=:6597 Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Pbuilder-maint mailing list Pbuilder-maint@lists.alioth.debian.org http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pbuilder-maint --0-422438018-1306444141=:6597-- pbuilder-0.215ubuntu7/pdebuild-uml-checkparams0000664000000000000000000000447412312041170016336 0ustar #! /bin/bash # pbuilder-user-mode-linux -- personal Debian package builder # Copyright (C) 2005-2007 Junichi Uekawa # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA # load and check params. # requires # . /usr/lib/pbuilder/pbuilder-loadconfig for SYSTEM_CONFIG in /usr/share/pbuilder/pbuilder-uml.conf /etc/pbuilder/pbuilder-uml.conf ${HOME}/.pbuilderrc ${HOME}/.pbuilder-umlrc; do if [ -f ${SYSTEM_CONFIG} ]; then . ${SYSTEM_CONFIG} fi done PBUILDER_COW="" UML_EXTRAOPT= UML_DEBUGMODE= UML_EXECUTE_EXTRAOPT= UML_LOGIN_NOCOW= while [ -n "$1" ] ; do case "$1" in --logfile) exec > >(tee "$2") 2>&1 shift;shift;; --auto-debsign) AUTO_DEBSIGN="yes" shift; ;; --buildsourceroot*) BUILDSOURCEROOTCMD="$2"; shift; shift; ;; --configfile) . "$2" shift; shift;; --pbuilderroot*) PBUILDERROOTCMD="$2"; shift; shift; ;; --pbuildersatisfydepends*) PBUILDERSATISFYDEPENDSCMD="$2"; shift; shift; ;; --debsign-k) DEBSIGN_KEYID="$2" shift; shift; ;; --use-pdebuild-internal) USE_PDEBUILD_INTERNAL=yes; shift; ;; --debbuildopts) # append to DEBBUILDOPTS or reset to empty if $2 isn't set DEBBUILDOPTS="${2:+${DEBBUILDOPTS:+$DEBBUILDOPTS }$2}"; shift; shift; ;; --buildresult) # ignore buildresult if [ -d "$2" ]; then UML_BUILDRESULT=$(readlink -f "$2") else echo "E: Directory $2 does not exist" >&2 exit 1 fi shift; shift;; ## end pdebuild options --) shift; break; ;; --*) echo "Error: Unknown option [$1] was specified " >&2 exit 1; ;; *) break; ;; esac done pbuilder-0.215ubuntu7/pbuilder-satisfydepends-classic0000775000000000000000000001521112312041170017736 0ustar #!/bin/bash # pbuilder -- personal Debian package builder # Copyright (C) 2001,2002,2003,2005-2007 Junichi Uekawa # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA # # module to satisfy build dependencies; default flavor # The original pbuilder-satisfydepends code, which is now called 'classic' set -e export PBUILDER_PKGLIBDIR="${PBUILDER_PKGLIBDIR:-$PBUILDER_ROOT/usr/lib/pbuilder}" . "$PBUILDER_PKGLIBDIR"/pbuilder-satisfydepends-funcs # splits lines of deps (possibly with alternates) separated by commas into one # dep (possibly with alternates) per line; also changes all spaces to slashes # first as to iterate on deps with "for"; e.g. "foo, bar | baz", "foobar (>= # 2)" becomes "foo", "bar/|/baz", "foobar/(>=/2)" split_deps() { sed 's#, *#\n#g; s# #/#g' } # and build-conflicts # splits build-dep with alternates into one alternate per line; e.g. "foo|bar" # becomes "foo", "bar" split_alternates() { echo "$*" | sed 's/ *| */\n/g' } # filters package name out of a "/" escaped simple build-dep, possibly with # architecture or version specifier; e.g. "/foo/(>=/2)/[i386/amd64]" becomes # "foo" get_pkg_name() { echo "$*" | sed 's#^/*##; s#[[/(].*##' } # filter operator and version of a "/" escaped versioned build-dep; e.g. # "foo/(>=/2)" becomes ">= 2" get_dep_op_and_ver() { echo "$*" | sed -n 's#/# #g; s/.*( *\(<<\|<=\|>=\|=\|<\|>>\|>\) *\([^ )]*\) *).*/\1 \2/p' } # call apt-get in chroot in simulate mode apt_sim() { $CHROOTEXEC /usr/bin/apt-get -s install "$@" } # Use this function to fulfill the dependency (almost) checkbuilddep_internal() { local ARCH=$($CHROOTEXEC dpkg-architecture -qDEB_HOST_ARCH) local INSTALLPKG local INSTALLPKGLIST local INSTALLPKGMULTI local CURRENTREALPKGNAME local SATISFIED local APTFLAG="-o APT::Install-Recommends=false" echo " -> Attempting to parse the build-deps " for INSTALLPKGMULTI in $(get_build_deps | split_deps); do echo " -> Considering build-dep $(echo "$INSTALLPKGMULTI" | tr "/" " ")" SATISFIED="no" for INSTALLPKG in $(split_alternates "$INSTALLPKGMULTI"); do CURRENTREALPKGNAME=$(get_pkg_name "$INSTALLPKG") if echo "$INSTALLPKG" | grep -q '\['; then if checkbuilddep_archdeps "$INSTALLPKG" "$ARCH"; then SATISFIED="yes" echo " -> This package is not for this architecture" continue fi fi if echo "$INSTALLPKG" | grep -q '('; then #echo "Debug: $INSTALLPKG" if ! checkbuilddep_versiondeps "$CURRENTREALPKGNAME" `get_dep_op_and_ver "$INSTALLPKG"`; then echo " -> Does not satisfy version, not trying" continue fi fi echo " -> Trying $CURRENTREALPKGNAME" if apt_sim $APTFLAG $INSTALLPKGLIST $CURRENTREALPKGNAME >& /dev/null; then SATISFIED="yes" INSTALLPKGLIST="$INSTALLPKGLIST $CURRENTREALPKGNAME" else echo " -> Cannot install $CURRENTREALPKGNAME; apt errors follow:" if apt_sim $APTFLAG $INSTALLPKGLIST "$CURRENTREALPKGNAME"; then : fi # package could not be found. -- looking for alternative. PROVIDED="" checkbuilddep_provides "$CURRENTREALPKGNAME" if [ -n "$PROVIDED" ]; then # something provides this package echo " -> Considering $PROVIDED to satisfy the dependency " if apt_sim $APTFLAG $INSTALLPKGLIST $PROVIDED >& /dev/null; then SATISFIED="yes"; INSTALLPKGLIST="$INSTALLPKGLIST $PROVIDED" else # show the error for diagnostic purposes echo " -> Cannot install $PROVIDED; apt errors follow:" apt_sim $APTFLAG $INSTALLPKGLIST $PROVIDED || true fi fi fi if [ "$SATISFIED" = "yes" ]; then break; fi done; if [ "$SATISFIED" = "no" ]; then echo "E: Could not satisfy build-dependency." >&2 if [ "$CONTINUE_FAIL" != "yes" ]; then exit 2 fi fi done; # now actually install the packages echo " -> Installing $INSTALLPKGLIST" if ! $CHROOTEXEC apt-get -y "${APTGETOPT[@]}" install $APTFLAG $INSTALLPKGLIST; then echo " -> Trying to fix apt error" # Work around an apt bug which causes configure to fail. if $CHROOTEXEC dpkg --configure --pending && $CHROOTEXEC apt-get -y "${APTGETOPT[@]}" install $APTFLAG $INSTALLPKGLIST; then echo " -> Apt bug workaround succeeded" elif [ "$CONTINUE_FAIL" != "yes" ]; then echo "E: Unrecoverable error installing build-dependencies." >&2 exit 1 fi fi # start processing build-conflicts. for INSTALLPKG in $(get_build_conflicts | split_deps); do CURRENTREALPKGNAME=$(get_pkg_name "$INSTALLPKG") echo " -> Considering $CURRENTREALPKGNAME" if echo "$INSTALLPKG" | grep -q '\['; then # this package has arch-conflicts. if checkbuilddep_archdeps "$INSTALLPKG" "$ARCH"; then echo "I: Ignoring other-arch" continue fi fi if echo "$INSTALLPKG" | grep -q '('; then # this package has version-conflicts if ! checkbuilddep_versiondeps "$CURRENTREALPKGNAME" `get_dep_op_and_ver "$INSTALLPKG"`; then echo "I: Satisfies version, not trying" continue fi fi # if package exists, remove it. if $CHROOTEXEC /usr/bin/dpkg -s "$CURRENTREALPKGNAME" 2>&1 | grep -q ^Package:; then if ! $CHROOTEXEC /usr/bin/apt-get -y remove $CURRENTREALPKGNAME ; then echo "E: Could not satisfy build-conflicts" >&2 exit 1 fi else echo "I: $CURRENTREALPKGNAME package is not installed, no need to remove" fi done echo " -> Finished parsing the build-deps" } print_help() { # print out help message cat < --help: give help --control: specify control file (debian/control, *.dsc) --chroot: operate inside chroot --binary-all: include binary-all --binary-arch: include binary-arch only --echo: echo mode, do nothing. (--force-version required for most operation) --force-version: skip version check. --continue-fail: continue even when failed. EOF } . "$PBUILDER_PKGLIBDIR"/pbuilder-satisfydepends-checkparams pbuilder-0.215ubuntu7/pbuilder-satisfydepends-funcs0000775000000000000000000001450512312041170017440 0ustar #!/bin/bash # pbuilder -- personal Debian package builder # Copyright (C) 2001,2002,2003,2005-2007 Junichi Uekawa # Copyright (C) 2007 Loïc Minier # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA # # module to satisfy build dependencies; common functions package_versions() { local PACKAGE="$1" LC_ALL=C $CHROOTEXEC /usr/bin/apt-cache show "$PACKAGE" | sed -n 's/^Version: //p' } candidate_version() { local PACKAGE="$1" LC_ALL=C $CHROOTEXEC apt-cache policy "$PACKAGE" | sed -n 's/ *Candidate: //p' } checkbuilddep_versiondeps() { local PACKAGE="$1" local COMPARESTRING="$2" local DEPSVERSION="$3" local PACKAGEVERSIONS=$( package_versions "$PACKAGE" | xargs) # no versioned provides. if [ "${FORCEVERSION}" = "yes" ]; then return 0; fi for PACKAGEVERSION in $PACKAGEVERSIONS ; do if dpkg --compare-versions "$PACKAGEVERSION" "$COMPARESTRING" "$DEPSVERSION"; then # satisfies depends return 0; fi done echo " Tried versions: $PACKAGEVERSIONS" # cannot satisfy depends return 1; } get_source_control_field() { local field="$1" sed -n -e "s/^$field://i" -e ' t store /^-----BEGIN PGP SIGNED MESSAGE-----$/ { : pgploop n /^$/ d b pgploop } /^$/q d : store H : loop n /^#/ b loop /^[ \t]/ b store x # output on single line s/\n//g # change series of tabs and spaces into a space s/[\t ]\+/ /g # normalize space before and after commas s/ *, */, /g # normalize space before and after pipes s/ *| */ | /g # normalize space before and after parentheses s/ *( */ (/g s/ *) */)/g # normalize space before and after brackets s/ *\[ */ [/g s/ *\] */]/g # normalize space after exclamation mark s/! */!/g # normalize space between operator and version s/(\(>>\|>=\|>\|==\|=\|<=\|<<\|<\|!=\) *\([^)]*\))/(\1 \2)/g # normalize space at beginning and end of line s/^ *// s/ *$// p' \ "$DEBIAN_CONTROL" } get_build_deps() { local output output="`get_source_control_field "Build-Depends"`" output="${output%, }" if [ "$BINARY_ARCH" = no ]; then output="${output:+$output, }`get_source_control_field "Build-Depends-Indep"`" output="${output%, }" fi echo "$output" } get_build_conflicts() { local output output="`get_source_control_field "Build-Conflicts"`" if [ "$BINARY_ARCH" = no ]; then output="${output:+$output, }`get_source_control_field "Build-Conflicts-Indep"`" fi echo "$output" } checkbuilddep_archdeps() { # returns FALSE on INSTALL local INSTALLPKG="$1" local ARCH="$2" # architectures listed between [ and ] for this dep local DEP_ARCHES="$(echo "$INSTALLPKG" | sed -e 's/.*\[\(.*\)\].*/\1/' -e 'y|/| |')" local PKG="$(echo "$INSTALLPKG" | cut -d ' ' -f 1)" local USE_IT local IGNORE_IT local INCLUDE # Use 'dpkg-architecture' to support architecture wildcards. for d in $DEP_ARCHES; do if echo "$d" | grep -q '!'; then d="$(echo $d | sed 's/!//')" if dpkg-architecture -a$ARCH -i$d; then IGNORE_IT="yes" fi else if dpkg-architecture -a$ARCH -i$d; then USE_IT="yes" fi INCLUDE="yes" fi done if [ $IGNORE_IT ] && [ $USE_IT ]; then printf "W: inconsistent arch restriction on $PKG: " >&2 printf "$DEP_ARCHES depedency\n" >&2 fi if [ $IGNORE_IT ] || ( [ $INCLUDE ] && [ ! $USE_IT ] ); then return 0 fi return 1 } checkbuilddep_provides() { local PACKAGENAME="$1" # PROVIDED needs to be used outside of this function. PROVIDED=$($CHROOTEXEC /usr/bin/apt-cache showpkg $PACKAGENAME \ | awk '{p=0}/^Reverse Provides:/,/^$/{p=1}{if(p && ($0 !~ "Reverse Provides:")){PACKAGE=$1}} END{print PACKAGE}') } # returns either "package=version", to append to an apt-get install line, or # package versioneddep_to_aptcmd() { local INSTALLPKG="$1" local PACKAGE local PACKAGE_WITHVERSION local PACKAGEVERSIONS local CANDIDATE_VERSION local COMPARESTRING local DEPSVERSION PACKAGE="$(echo "$INSTALLPKG" | sed -e 's/^[/]*//' -e 's/[[/(].*//')" PACKAGE_WITHVERSION="$PACKAGE" # if not versionned, we skip directly to outputting $PACKAGE if echo "$INSTALLPKG" | grep '[(]' > /dev/null; then # package versions returned by APT, in reversed order PACKAGEVERSIONS="$( package_versions "$PACKAGE" | tac | xargs )" CANDIDATE_VERSION="$( candidate_version "$PACKAGE" )" COMPARESTRING="$(echo "$INSTALLPKG" | tr "/" " " | sed 's/^.*( *\(<<\|<=\|>=\|=\|<\|>>\|>\) *\(.*\)).*$/\1/')" DEPSVERSION="$(echo "$INSTALLPKG" | tr "/" " " | sed 's/^.*( *\(<<\|<=\|>=\|=\|<\|>>\|>\) *\(.*\)).*$/\2/')" # if strictly versionned, we skip to outputting that version if [ "=" = "$COMPARESTRING" ]; then PACKAGE_WITHVERSION="$PACKAGE=$DEPSVERSION" else # try the candidate version, then all available versions (asc) for VERSION in $CANDIDATE_VERSION $PACKAGEVERSIONS; do if dpkg --compare-versions "$VERSION" "$COMPARESTRING" "$DEPSVERSION"; then if [ $VERSION != $CANDIDATE_VERSION ]; then PACKAGE_WITHVERSION="$PACKAGE=$VERSION" fi break; fi done fi fi echo "$PACKAGE_WITHVERSION" } print_help() { # print out help message cat < --help: give help --control: specify control file (debian/control, *.dsc) --chroot: operate inside chroot --binary-all: include binary-all --binary-arch: include binary-arch only --echo: echo mode, do nothing. (--force-version required for most operation) --force-version: skip version check. --continue-fail: continue even when failed. EOF } pbuilder-0.215ubuntu7/THANKS0000664000000000000000000000243112312041170012453 0ustar Random list of people who seems to have contributed in some way or other: Jochen Voss Erich Schubert Steve M. Robbins Mikael Hedin Mark Brown Daniel Kobras David Schleef Eric Van Buggenhaut Henrique de Moraes Holschuh David Schmitt ranty@debian.org Robert Bihlmeyer Peter Hawkins Michael Banck ; Clint Adams Andrew Lau Sam Couter Jose Carlos Garcia Sogo Matt Zimmerman Mark Eichin Michel Dänzer Barak Pearlmutter Tommaso Moroni Barak Pearlmutter Marek Habersack Kenneth Pronovici Matt Kraai Roland Stigge "Aaron M. Ucko" Daniel Martin Artur R. Czechowski Turbo Fredriksson Mike Markley Era Eriksson Danilo Piazzalunga Peter Eisentraut Andres Mejia I thank them all! pbuilder-0.215ubuntu7/debuild-pbuilder.10000664000000000000000000000154412312041170015042 0ustar .TH "debuild-pbuilder" 1 "2002 Sep 25" "Debian" "pbuilder" .SH "NAME" debuild-pbuilder \- A "debuild" wrapper to satisfy build-dependency before debuild .SH SYNOPSIS .BI "debuild-pbuilder" .SH "DESCRIPTION" A wrapper to "debuild" program that does Build-Dependency satisfaction. .SH "OPTIONS" See debuild manpage for details. .SH "EXAMPLES" .TP .B "debuild-pbuilder" Satisfy build-dependency and run debuild. .nf $ debuild-pbuilder -> Attempting to satisfy build-dependencies -> Creating pbuilder-satisfydepends-dummy package Package: pbuilder-satisfydepends-dummy Version: 0.invalid.0 . . .hy .SH "AUTHOR" Initial coding, and main maintenance is done by Junichi Uekawa . The homepage is available at .B "\%http://pbuilder.alioth.debian.org" .SH "SEE ALSO" .BR "/usr/share/doc/pbuilder/pbuilder-doc.html" ", " .BR "debuild" "(1)" pbuilder-0.215ubuntu7/Makefile0000664000000000000000000001231312312041170013200 0ustar INSTALL = install INSTALL_DIRECTORY = $(INSTALL) -d -m 0755 INSTALL_FILE = $(INSTALL) -m 0644 INSTALL_EXECUTABLE = $(INSTALL) -m 0755 # semi-standard dirs DESTDIR := SYSCONFDIR := $(DESTDIR)/etc BINDIR := $(DESTDIR)/usr/bin PKGLIBDIR := $(DESTDIR)/usr/lib/pbuilder SBINDIR := $(DESTDIR)/usr/sbin PKGDATADIR := $(DESTDIR)/usr/share/pbuilder define newline endef NULL := ALLDIRS += BASHCOMPLETION BASHCOMPLETIONDIR := $(SYSCONFDIR)/bash_completion.d BASHCOMPLETION_DATA += \ bash_completion.d/pbuilder \ $(NULL) CHECK_SCRIPTS += bash_completion.d/pbuilder ALLDIRS += PBUILDERCONF PBUILDERCONFDIR := $(SYSCONFDIR)/pbuilder PBUILDERCONF_DATA += \ pbuilder-uml.conf \ $(NULL) CHECK_SCRIPTS += pbuilder-uml.conf ALLDIRS += BIN BIN_SCRIPTS += \ debuild-pbuilder \ pbuilder-user-mode-linux \ pdebuild \ pdebuild-user-mode-linux \ $(NULL) ALLDIRS += PKGLIB PKGLIB_SCRIPTS += \ pbuilder-apt-config \ pbuilder-buildpackage \ pbuilder-buildpackage-funcs \ pbuilder-checkparams \ pbuilder-createbuildenv \ pbuilder-loadconfig \ pbuilder-modules \ pbuilder-runhooks \ pbuilder-satisfydepends-aptitude \ pbuilder-satisfydepends-checkparams \ pbuilder-satisfydepends-classic \ pbuilder-satisfydepends-experimental \ pbuilder-satisfydepends-funcs \ pbuilder-satisfydepends-gdebi \ pbuilder-selftest \ pbuilder-uml-checkparams \ pbuilder-updatebuildenv \ pdebuild-checkparams \ pdebuild-internal \ pdebuild-uml-checkparams \ testlib.sh \ test_pbuilder-apt-config \ test_pbuilder-checkparams \ test_pbuilder-modules \ test_pbuilder-satisfydepends-checkparams \ test_pbuilder-satisfydepends-classic \ test_pbuilder-satisfydepends-funcs \ test_testlib.sh \ $(NULL) ALLDIRS += SBIN SBIN_SCRIPTS += \ pbuilder \ $(NULL) ALLDIRS += EXAMPLE EXAMPLEDIR := $(DESTDIR)/usr/share/doc/pbuilder/examples EXAMPLE_DATA += \ pbuilderrc \ $(NULL) CHECK_SCRIPTS += pbuilderrc EXAMPLE_SCRIPTS += \ examples/B90lintian \ examples/B91dpkg-i \ examples/B92test-pkg \ examples/C10shell \ examples/C11screen \ examples/D10tmp \ examples/D20addnonfree \ examples/D65various-compiler-support \ examples/D80no-man-db-rebuild \ examples/D90chrootmemo \ examples/F90chrootmemo \ examples/B90list-missing \ examples/B91debc \ examples/execute_installtest.sh \ examples/execute_paramtest.sh \ examples/pbuilder-distribution.sh \ $(NULL) ALLDIRS += EXAMPLE_LVMPBUILDER EXAMPLE_LVMPBUILDERDIR := $(EXAMPLEDIR)/lvmpbuilder EXAMPLE_LVMPBUILDER_DATA += \ examples/lvmpbuilder/README \ examples/lvmpbuilder/STRATEGY \ $(NULL) EXAMPLE_LVMPBUILDER_SCRIPTS += \ examples/lvmpbuilder/lvmbuilder \ $(NULL) ALLDIRS += EXAMPLE_LVMPBUILDER_LIB EXAMPLE_LVMPBUILDER_LIBDIR := $(EXAMPLE_LVMPBUILDERDIR)/lib EXAMPLE_LVMPBUILDER_LIB_SCRIPTS += \ examples/lvmpbuilder/lib/lvmbuilder-checkparams \ examples/lvmpbuilder/lib/lvmbuilder-modules \ examples/lvmpbuilder/lib/lvmbuilder-unimplemented \ $(NULL) ALLDIRS += EXAMPLE_PBUILDERTEST EXAMPLE_PBUILDERTESTDIR := $(EXAMPLEDIR)/pbuilder-test EXAMPLE_PBUILDERTEST_DATA += \ examples/pbuilder-test/README \ examples/pbuilder-test/002_sample.c \ $(NULL) EXAMPLE_PBUILDERTEST_SCRIPTS += \ examples/pbuilder-test/000_prepinstall \ examples/pbuilder-test/001_apprun \ examples/pbuilder-test/002_libfile \ examples/pbuilder-test/003_makecheck \ examples/pbuilder-test/004_ldd \ $(NULL) ALLDIRS += EXAMPLE_REBUILD EXAMPLE_REBUILDDIR := $(EXAMPLEDIR)/rebuild EXAMPLE_REBUILD_DATA += \ examples/rebuild/README \ $(NULL) EXAMPLE_REBUILD_SCRIPTS += \ examples/rebuild/buildall \ examples/rebuild/getlist \ $(NULL) ALLDIRS += EXAMPLE_WORKAROUND EXAMPLE_WORKAROUNDDIR := $(EXAMPLEDIR)/workaround EXAMPLE_WORKAROUND_SCRIPTS += \ $(NULL) ALLDIRS += PKGDATA PKGDATA_DATA += \ pbuilderrc \ pbuilder-uml.conf \ $(NULL) CHECK_SCRIPTS += \ pbuilderrc \ pbuilder-uml.conf \ $(NULL) NOINST_MANPAGES += \ debuild-pbuilder.1 \ pbuilder.8 \ pbuilderrc.5 \ pdebuild.1 \ $(NULL) CHECK_MANPAGES += $(NOINST_MANPAGES) # TODO: check subdirs etc. CHECK_SCRIPTS += $(foreach d,$(ALLDIRS),$($(d)_SCRIPTS)) all: $(MAKE) -C pbuildd $@ $(MAKE) -C Documentation $@ check: export PBUILDER_CHECKOUT := $(CURDIR) check: # syntax check. $(foreach script,$(CHECK_SCRIPTS),bash -n $(script)$(newline)) $(foreach mp,$(CHECK_MANPAGES),LANG=C MANWIDTH=80 man --warnings -l $(mp) >/dev/null$(newline)) # unit tests. $(foreach test,$(wildcard ./test_*),$(test)$(newline)) full-check: # system tests that might take long. cd testsuite && ./run-test.sh clean: rm -f *.bak *~ TAGS rm -f testsuite/testimage rm -rf testsuite/testbuild testsuite/testbuild2 $(MAKE) -C pbuildd $@ $(MAKE) -C Documentation $@ TAGS: etags pbuilder-* pbuilder define install_dir_impl $(INSTALL_DIRECTORY) $($(1)DIR)$(newline) $(foreach file,$($(1)_DATA),$(INSTALL_FILE) $(file) $($(1)DIR)$(newline)) $(foreach script,$($(1)_SCRIPTS),$(INSTALL_EXECUTABLE) $(script) $($(1)DIR)$(newline)) endef install: $(foreach d,$(ALLDIRS),$(call install_dir_impl,$(d))) $(INSTALL_DIRECTORY) $(DESTDIR)/var/cache/pbuilder/pbuilder-mnt $(INSTALL_DIRECTORY) $(DESTDIR)/var/cache/pbuilder/pbuilder-umlresult # install -aptitude flavour as the default satisfydepends ln -sf pbuilder-satisfydepends-aptitude $(PKGLIBDIR)/pbuilder-satisfydepends $(MAKE) -C pbuildd $@ $(MAKE) -C Documentation $@ pbuilder-0.215ubuntu7/debian/0000775000000000000000000000000012412242264012772 5ustar pbuilder-0.215ubuntu7/debian/NEWS0000664000000000000000000000344712312041170013471 0ustar pbuilder (0.207) unstable; urgency=low The default configuration will now only install trusted packages. This prevents building packages with manipulated sources or a system compromise due to a man-in-the-middle attack. However this also prevents installing packages from unsigned repositories by default. If you really want to continue using unsigned repositories, you have to set ALLOWUNTRUSTED=yes in your .pbuilderrc or use the --allow-untrusted option. But if possible use a signed repository and set the used keys with the new --keyring option (can be passed multiple times). Due to this change the PBUILDERSATISFYDEPENDSOPT option --check-key is no longer necessary and thus deprecated. -- Simon Ruderich Tue, 06 Mar 2012 02:02:38 +0100 pbuilder (0.197) unstable; urgency=low The default configuration will now enable ccache. To disable installation and usage of ccache in pbuilder, unset CCACHEDIR in your pbuilderrc. -- Loïc Minier Sat, 02 Jan 2010 17:11:23 +0100 pbuilder (0.195) unstable; urgency=low --debbuildopts is now additive and will append to pbuilderrc's DEBBUILDOPTS. To reset the list of options, pass --debbuildopts "". The default debootstrap command is now "debootstrap" instead of "cdebootstrap"; cdebootstrap is still supported, but you might have to set DEBOOTSTRAP="cdebootstrap" in your pbuilderrc or pass --debootstrap=cdebootstrap to use it. Custom cdebootstrap options set via DEBOOTSTRAPOPTS or --debootstrapopts might not be compatible with debootstrap. The default PBUILDERROOTCMD is now "sudo -E" instead of "sudo"; this allows passing env vars for pbuilderrc expansion or to the build process such as DEB_BUILD_OPTIONS. -- Loïc Minier Sat, 12 Dec 2009 16:03:21 +0100 pbuilder-0.215ubuntu7/debian/docs0000664000000000000000000000004212312041170013631 0ustar README AUTHORS THANKS debian/TODO pbuilder-0.215ubuntu7/debian/pbuilder.postinst0000664000000000000000000000010412312041170016370 0ustar #!/bin/sh set -e . /usr/share/debconf/confmodule #DEBHELPER# exit 0 pbuilder-0.215ubuntu7/debian/compat0000664000000000000000000000000212312041170014160 0ustar 7 pbuilder-0.215ubuntu7/debian/rules0000775000000000000000000000272712312041170014052 0ustar #!/usr/bin/make -f LOCALE_PATH := debian/tmplocale LOCALE_NAME := en_US LOCALE_CHARSET := UTF-8 build: build-stamp build-stamp: dh_testdir touch $@ clean: dh_testdir dh_testroot rm -f build-stamp rm -rf $(LOCALE_PATH) $(MAKE) clean dh_clean install: build dh_testdir dh_testroot dh_prep dh_installdirs ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS))) mkdir -p $(LOCALE_PATH) localedef -i $(LOCALE_NAME) -c -f $(LOCALE_CHARSET) \ -A /usr/share/locale/locale.alias --quiet \ $(LOCALE_PATH)/$(LOCALE_NAME).$(LOCALE_CHARSET) LOCPATH=$(LOCALE_PATH) LC_ALL=$(LOCALE_NAME).$(LOCALE_CHARSET) $(MAKE) check endif $(MAKE) install DESTDIR=$(CURDIR)/debian/pbuilder dh_movefiles -ppbuilder-uml --sourcedir=debian/pbuilder binary-indep: build install dh_testdir -i dh_testroot -i dh_installdocs -i dh_installman pbuilder.8 pbuilderrc.5 pdebuild.1 debuild-pbuilder.1 dh_installchangelogs -i dh_installdebconf dh_link -i dh_compress -i -X.pdf dh_fixperms -i dh_installdeb -i dh_gencontrol -i dh_md5sums -i dh_builddeb -i binary-arch: build install dh_testdir -s dh_testroot -s dh_installdocs -s dh_installman -ppbuilder-uml pbuilder-user-mode-linux.1 pbuilder-uml.conf.5 pdebuild-user-mode-linux.1 dh_installchangelogs -s dh_link -s dh_compress -s -X.pdf dh_fixperms -s dh_installdeb -s dh_gencontrol -s dh_md5sums -s dh_builddeb -s binary: binary-indep binary-arch .PHONY: build clean binary-indep binary-arch binary install pbuilder-0.215ubuntu7/debian/pbuilder.postrm0000664000000000000000000000030712312041170016036 0ustar #!/bin/sh set -e if [ "$1" = purge ]; then rm -f /etc/pbuilderrc if [ -e /usr/share/debconf/confmodule ]; then . /usr/share/debconf/confmodule db_purge fi fi #DEBHELPER# exit 0 pbuilder-0.215ubuntu7/debian/pbuilder-uml.files0000664000000000000000000000033112312041170016404 0ustar etc/pbuilder/pbuilder-uml.conf usr/share/pbuilder/pbuilder-uml.conf usr/bin/pbuilder-user-mode-linux usr/bin/pdebuild-user-mode-linux usr/lib/pbuilder/pbuilder-uml-checkparams usr/lib/pbuilder/pdebuild-uml-checkparamspbuilder-0.215ubuntu7/debian/TODO0000664000000000000000000000470412312041170013457 0ustar TODO and possible bugs: * lenny goal!: - support --allow-unauthenticated and package signatures; #317998 pbuilder support for signatures will hopefully come * apt authentication support Add hooks to install gnupg package. Allow new keys to be registered into pbuilder chroots. Document in manual. test * /etc/pbuilderrc I want to not make it a conffile, but removing the file is a problem, since I already have /etc/pbuilder/pbuilderrc symlink. * pdebuild-internal - Use pbuilder cache in pdebuild-internal (235237) I think I just need to add hacks to copy stuff. - testsuite for pdebuild-internal? - support readlink -e usage instead of readlink -f. This is too trivial, but anyway. Debian 3.1 does not support 'readlink -e'. * xvfb:x11-common - debian-bug: 337541: fixed in 0.138 /etc/init.d/x11-common needs to be ran; policy-rc.d is now patched. Remaining problem is the upgrade case, and when base.tgz already contains xvfb. Maybe document the limitation. * use arrays for debbuildopts - current --debbuildopts usages will break, how do we support it? * revert back to using --variant=buildd for debootstrap - depends-on debian-bug: 314858 debootstrap: fixed in 0.3.2 * BUG: Too many options! Creeping featurism!! * Fix pbuilder-user-mode-linux bind-mount, - Use hostfs for better performance, - fix space-handling in, use arrays * Build dependency handles |, but not when [] and | exist. -- no package should be using it ? * Machine type specification in Build dependency should either have [!xxx !xxx !xxx ...] or [xxx xxx xxx ...] [!xxx xxx] formats are not parsed, and should really not exist. * sbuild interface * Remember to update the TODO file. * Support for apt-move. Some, mount --bind trick - documentation of how to do it - putting example scripts. * Supporting really automatic/noninteractive "pbuilder upgrade" - user-mode-linux is noninteractive, it no longer umounts. - policy-rc.d is in place, everything should be automatic modulo bugs. * $HOME, $TMP, $TMPDIR, etc. environment vars are set to bogus values * set LOGNAME=root ? - related debian-bug: 166682 - perl spits out warning every time it starts up if LOGNAME is unset. * check cross-compile support, maybe adding support for dpkg-cross into build-depends checker? * Fix UML_EXTRAOPT to use arrays. This should change semantics; and how do we pass this thing to inside UML? elmo.txt is a memo of a discussion with James Troup. pbuilder-0.215ubuntu7/debian/dirs0000664000000000000000000000023612312041170013647 0ustar usr/bin usr/sbin usr/lib/pbuilder var/cache/pbuilder var/cache/pbuilder/result var/cache/pbuilder/aptcache var/cache/pbuilder/build var/cache/pbuilder/ccache pbuilder-0.215ubuntu7/debian/doc-base0000664000000000000000000000047012312041170014363 0ustar Document: pbuilder Title: pbuilder user's manual Author: Junichi Uekawa Abstract: This manual documents pbuilder for users Section: Debian Format: HTML Index: /usr/share/doc/pbuilder/pbuilder-doc.html Files: /usr/share/doc/pbuilder/pbuilder-doc.html Format: PDF Files: /usr/share/doc/pbuilder/pbuilder-doc.pdf pbuilder-0.215ubuntu7/debian/source/0000775000000000000000000000000012312041256014267 5ustar pbuilder-0.215ubuntu7/debian/source/format0000664000000000000000000000000412312041170015467 0ustar 1.0 pbuilder-0.215ubuntu7/debian/pbuilder.config0000775000000000000000000000615412312041170015770 0ustar #!/bin/sh # config script for pbuilder # # see: dh_installdeb(1) set -e . /usr/share/debconf/confmodule # summary of how this script can be called: # * `configure' # * `reconfigure' # for details, see http://www.debian.org/doc/debian-policy/ or # the debian-policy package case "$1" in configure|reconfigure) CONFFILE=/etc/pbuilderrc PLACEHOLDER='http://you-have-broken-debconf-configuration.example.com/' # if there is a custom file, then we shouldn't touch it if [ -f "$CONFFILE" ] ; then CURRENTMIRROR=$(grep -E "^[ ]*MIRRORSITE=" "$CONFFILE" | sed 's#MIRRORSITE=##g') if [ "$CURRENTMIRROR" ] ; then db_input low pbuilder/rewrite || [ $? = 30 ] db_go db_get pbuilder/rewrite [ "$RET" = "true" ] || exit 0 # make sure latter calls do not overwrite stuff silently db_set pbuilder/rewrite "false" else # no MIRRORSITE line found in the pbuilderrc file echo "MIRRORSITE=$PLACEHOLDER" >> "$CONFFILE" fi else cat < "$CONFFILE" # this is your configuration file for pbuilder. # the file in /usr/share/pbuilder/pbuilderrc is the default template. # /etc/pbuilderrc is the one meant for overwriting defaults in # the default template # # read pbuilderrc.5 document for notes on specific options. EOF echo "MIRRORSITE=$PLACEHOLDER" >> "$CONFFILE" fi db_input medium pbuilder/mirrorsite || [ $? = 30 ] db_go db_get pbuilder/mirrorsite MIRRORSITE="$RET" # the "$PLACEHOLDER" alternative is just a safety net, # but that should really never happen if [ -z "$MIRRORSITE" ] || [ "$MIRRORSITE" = "$PLACEHOLDER" ] ; then SRCLISTDIR=/etc/apt/sources.list.d MIRRORSITE=$( ( [ -f /etc/apt/sources.list ] && cat /etc/apt/sources.list || true ; [ -f $SRCLISTDIR/*.sources.list ] && cat $SRCLISTDIR/*.sources.list || true ) \ | grep -E '^deb[[:space:]]+(ftp|http):' | head -n 1 | awk '{print $2;}' ) while [ -z "$MIRRORSITE" ] ; do db_input high pbuilder/nomirror || true db_input high pbuilder/mirrorsite && RETCODE=$? || RETCODE=$? db_go # if the interface is non-interactive, still set a valid mirror if [ $RETCODE = 30 ] ; then MIRRORSITE="http://archive.ubuntu.com/ubuntu" else db_get pbuilder/mirrorsite MIRRORSITE="$RET" fi done db_set pbuilder/mirrorsite "$MIRRORSITE" fi sed -i "s#^\s*MIRRORSITE=.*\$#MIRRORSITE=$MIRRORSITE#" "$CONFFILE" ;; *) echo "config script called with unknown argument \`$1'" >&2 exit 1 ;; esac # dh_installdeb will replace this with shell code automatically # generated by other debhelper scripts. #DEBHELPER# exit 0 pbuilder-0.215ubuntu7/debian/control0000664000000000000000000000532512312041170014372 0ustar Source: pbuilder Section: devel Priority: extra Maintainer: Ubuntu Developers XSBC-Original-Maintainer: Debian pbuilder maintenance team Uploaders: Junichi Uekawa , Loïc Minier , Matt Kraai Build-Depends: debhelper (>= 7), docbook-xsl, ldp-docbook-xsl (>= 0.0.20040321-0.1), xsltproc, dpkg-dev (>= 1.13.19), dblatex, debconf|debconf-2.0, po-debconf, po4a, locales Standards-Version: 3.9.1 XS-Debian-Vcs-Git: git://git.debian.org/git/pbuilder/pbuilder.git XS-Debian-Vcs-Browser: http://git.debian.org/?p=pbuilder/pbuilder.git XS-Testsuite: autopkgtest Package: pbuilder Architecture: all Depends: coreutils (>= 4.5.8-1), debootstrap | cdebootstrap, dpkg-dev, debianutils (>= 1.13.1), wget, ${misc:Depends} Recommends: fakeroot, sudo, devscripts, aptitude Suggests: pbuilder-uml, gdebi-core, cowdancer Homepage: http://pbuilder.alioth.debian.org Description: personal package builder for Debian packages pbuilder constructs a chroot system, and builds a package inside the chroot. It is an ideal system to use to check that a package has correct build-dependencies. It uses apt extensively, and a local mirror, or a fast connection to a Debian mirror is ideal, but not necessary. . "pbuilder create" uses debootstrap to create a chroot image. . "pbuilder update" updates the image to the current state of testing/unstable/whatever . "pbuilder build" takes a *.dsc file and builds a binary in the chroot image. . pdebuild is a wrapper for Debian Developers, to allow running pbuilder just like "debuild", as a normal user. Package: pbuilder-uml Architecture: i386 amd64 Depends: rootstrap (>= 0.3.9-1), user-mode-linux, pbuilder (= ${source:Version}), ${misc:Depends} Description: user-mode-linux version of pbuilder pbuilder-uml uses a User-mode-linux system, and builds Debian packages inside the UML image. It is an ideal system to use to check that a package has correct build-dependencies. It uses apt extensively, and a local mirror, or a fast connection to a Debian mirror is ideal, but not necessary. . Requires user-mode-linux to function correctly . "pbuilder-user-mode-linux create" uses rootstrap to create UML image . "pbuilder-user-mode-linux update" updates the image to the current state of testing/unstable/whatever . "pbuilder-user-mode-linux build" takes a *.dsc file and builds a binary in the UML pbuilder-0.215ubuntu7/debian/copyright0000664000000000000000000000214412312041170014716 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: pbuilder Upstream-Contact: Junichi Uekawa Files: * Copyright: Copyright 2001-2007 Junichi Uekawa Copyright (C) 2010 Loïc Minier # pbuilder -- personal Debian package builder # Copyright (C) 2001-2007 Junichi Uekawa # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA License: GPL-2+ pbuilder-0.215ubuntu7/debian/changelog0000664000000000000000000036110512412242264014652 0ustar pbuilder (0.215ubuntu7.1) trusty; urgency=medium * pbuilderrc: Set default distribution to "trusty" (lp: #1316423) -- B. Clausius Sun, 25 May 2014 09:14:44 +0200 pbuilder (0.215ubuntu7) trusty; urgency=medium * debian/tests/control: build-depend on libcap-dev since procenv 0.33 now uses that. -- James Hunt Tue, 18 Mar 2014 13:57:11 +0100 pbuilder (0.215ubuntu6) trusty; urgency=medium * debian/tests/build_procenv: Use first remote url from sources.list rather than hard-coding the set of architectures that use particular ubuntu archives (since the latter strategy does not require maintenance). * debian/tests/control: - Depend on haveged for entropy. - Add architecture-specific depends on libnuma1 for the test package that is built (procenv). -- James Hunt Wed, 05 Mar 2014 14:40:22 +0100 pbuilder (0.215ubuntu5) trusty; urgency=medium * Add build-dependency on locales, which was always used but appears to have previously been preinstalled in the build chroots. -- Steve Langasek Wed, 05 Mar 2014 03:54:08 +0000 pbuilder (0.215ubuntu4) trusty; urgency=medium * debian/tests/build_procenv: on Ubuntu, select the correct archive mirror for the build architecture. -- Steve Langasek Tue, 04 Mar 2014 17:07:16 -0800 pbuilder (0.215ubuntu3) trusty; urgency=low * debian/tests/build_procenv: Add component universe for Ubuntu to make procenv buildable (LP: #1247420) -- Jean-Baptiste Lallement Sun, 03 Nov 2013 18:46:58 +0100 pbuilder (0.215ubuntu2) saucy; urgency=low * Fix typo in pbuilderrc -- Jonathan Riddell Fri, 16 Aug 2013 10:57:52 +0100 pbuilder (0.215ubuntu1) saucy; urgency=low * Merge from Debian unstable. Remaining changes: - pbuilderrc, debian/pbuilder.config: Set default archive mirror to "archive.ubuntu.com/ubuntu". - pbuilderrc: Set default keyring to the Ubuntu one. - pbuilderrc: change how we pass keyring in DEBOOTSTRAPOPTS - debian/rules: install temporary locale so man page tests don't cause FTBFS. - Added basic DEP-8 autopkgtest - debian/control: Recommend aptitude since it's needed by pbuilder-satisfydepends * pbuilderrc: Set default distribution to "saucy" -- Jackson Doak Fri, 16 Aug 2013 08:14:54 +1000 pbuilder (0.215) unstable; urgency=low * Do not try to use /dev/shm if /run/shm is not present. (closes: #702811, #702102) * Add clang support hook script from Hideki Yamane. (closes: #700290) -- Junichi Uekawa Sat, 30 Mar 2013 11:06:05 +0900 pbuilder (0.214) unstable; urgency=low [ Junichi Uekawa ] * update documentation about CCACHEDIR (closes: #694311) * update the release target to work with wagner, and release. [ Agustin Henze ] * Added support for shared memory mounting point (closes: #700591) -- Junichi Uekawa Sat, 02 Mar 2013 16:47:04 +0900 pbuilder (0.213ubuntu3) saucy; urgency=low * Recommend aptitude since it's needed by pbuilder-satisfydepends -- Jonathan Riddell Tue, 04 Jun 2013 15:58:28 +0100 pbuilder (0.213ubuntu2) saucy; urgency=low * Added basic DEP-8 autopkgtest. -- James Hunt Mon, 27 May 2013 10:14:45 +0200 pbuilder (0.213ubuntu1) raring; urgency=low * Merge from Debian unstable (LP: #1075347, LP: #1060101) Remaining changes: - pbuilderrc, debian/pbuilder.config: Set default archive mirror to "archive.ubuntu.com/ubuntu". - pbuilderrc: Set default keyring to the Ubuntu one. - pbuilderrc: change how we pass keyring in DEBOOTSTRAPOPTS - debian/rules: install temporary locale so man page tests don't cause FTBFS. * pbuilderrc: Set default distribution to "quantal" -- Maarten Bezemer Mon, 05 Nov 2012 23:27:25 +0100 pbuilder (0.213) unstable; urgency=low [ Beatrice Torracca ] * Bug#686004: [INTL: it] Italian translation of debconf messages - pbuilder [ David Martínez Moreno ] * Bug#686410: pbuilder: [INTL:es] Spanish translation update of debconfmessages - pbuilder. [ Junichi Uekawa ] * remove /etc/pbuilder/pbuilderrc -> etc/pbuilderrc. (closes: 689213) -- Junichi Uekawa Mon, 08 Oct 2012 08:30:04 +0900 pbuilder (0.212) unstable; urgency=low * update copyright file to be more machine-process-able, and move homepage information to debian/control * set ccachedir to default to off. It's a minor optimization that a developer may choose to enable at the cost of incompatibility and some bugs. (closes: #675691, #675843, #670651) -- Junichi Uekawa Fri, 24 Aug 2012 04:50:15 +0900 pbuilder (0.211) unstable; urgency=low [ Junichi Uekawa ] * policy update: 3.9.1 * For testsuite, do not depend on approx instance. It's not always reliable and confusing. Just trust autoconfiguration result here. * B90lintian requires bashism (closes: #604546) [ Sjoerd Simons ] * Recognize armhf as an architecture on ubuntu-ports * When testing mirror selection, force an architecture that we know is on that mirror (closes: #671007) -- Junichi Uekawa Wed, 30 May 2012 19:01:25 +0900 pbuilder (0.210) unstable; urgency=low * move around echobacktime definition location. (closes: #666440) * B92test-pkg: Having any test fail should make the regression test suite to fail and exit with exit value of 1 instead of 0. -- Junichi Uekawa Sat, 31 Mar 2012 14:33:15 +0900 pbuilder (0.209) unstable; urgency=low * pbuilder: Auto completion is missing --allow-untrusted flag (closes: #664323) * Show current time in create / update operations too. (closes: #613854) -- Junichi Uekawa Fri, 30 Mar 2012 03:44:30 +0900 pbuilder (0.208ubuntu1) precise; urgency=low * Merge from Debian unstable (LP: #952938) Remaining changes: - pbuilderrc, debian/pbuilder.config: Set default archive mirror to "archive.ubuntu.com/ubuntu". - pbuilderrc: Set default distribution to "precise" and the default keyring to the Ubuntu one. - pbuilderrc: change how we pass keyring in DEBOOTSTRAPOPTS - debian/rules: install temporary locale so man page tests don't cause FTBFS. -- Maarten Bezemer Wed, 14 Mar 2012 14:54:09 +0100 pbuilder (0.208) unstable; urgency=low [ Guido Günther ] * Allow to copy additional files out of the build directory (closes: 652634) [ Junichi Uekawa ] * fix space handling in additional-buildresults. * fix logging message and conditionality to make it less lines. * factor out common code for apt key rings. [ Thorsten Glaser ] * pbuilder-satisfydepends failed due to --check- key deprecation bug (closes: 663283) -- Junichi Uekawa Tue, 13 Mar 2012 19:11:00 +0900 pbuilder (0.207) unstable; urgency=low [ Maarten Bezemer ] * Bug#659581: pbuilder: does not autocomplete filename in all cases correctly * Bug#660838: pbuilder: Add complete bash_autocompletion for all flags and arguments * Bug#659703: pbuilder: Typo in error message [ Junichi Uekawa ] * Bug#660386: pbuilder: Remove /usr/X11R6/bin from default PATH * make longer lines wrap so reading patch files aren't as painful. [ Simon Ruderich ] * Bug#579028: pbuilder: installs untrusted packages without asking -- Junichi Uekawa Sat, 10 Mar 2012 09:40:35 +0900 pbuilder (0.206ubuntu2) precise; urgency=low * Auto complete flags and required file/directory names (Closes: #933339) -- Maarten Bezemer Sun, 19 Feb 2012 22:30:48 +0100 pbuilder (0.206ubuntu1) precise; urgency=low * Merge from Debian testing. (LP: #931936, LP: #788768) Remaining changes: - pbuilderrc, debian/pbuilder.config: Set default archive mirror to "archive.ubuntu.com/ubuntu". - pbuilderrc: Set default distribution to "precise" and the default keyring to the Ubuntu one. - pbuilderrc: change how we pass keyring in DEBOOTSTRAPOPTS - debian/rules: install temporary locale so man page tests don't cause FTBFS. - Auto complete filenames not working when not adding -- to the command - Add directories to filename auto completion -- Maarten Bezemer Tue, 14 Feb 2012 10:45:14 +0100 pbuilder (0.206) unstable; urgency=low [ Matthew Palmer ] * ccache support fails in the face of su PATH mangling (closes: #606687) * mirrorsite is not preseedable (closes: #598316) [ Junichi Uekawa ] * pbuilder produces a confusing error message about the dcs filename if it can't read the dsc file. (closes: #644507) * Note that ${HOME} is usually /root if you run with sudo. (closes: #620337) [ Steve M. Robbins ] * rebuild/buildall tries to download with acepack when building ack (closes: #553607) * rebuild/buildall tries to download with epoch in filename (closes: #553594) [ Peter Eisentraut ] * pdebuild needs to strip debbuildopts -A and -F (closes: #623321) -- Junichi Uekawa Sat, 28 Jan 2012 14:58:59 +0900 pbuilder (0.205) unstable; urgency=low [ Junichi Uekawa ] * Coding style. Use $() instead of `` * add dpkg-dev to pbuilder dependency (closes: 623623) * Remove obsolete example files which were used in regression testsuite for workarounds. (closes: #633055) [ Flamarion Jorge ] * pbuilder: [INTL:pt_BR] Brazilian Portuguese debconf templates translation (closes: #651265) -- Junichi Uekawa Sun, 25 Dec 2011 16:22:00 +0900 pbuilder (0.204ubuntu2) precise; urgency=low * Auto complete filenames not working when not adding -- to the command (Closes: #659581, LP: #770529) * Add directories to filename auto completion -- Maarten Bezemer Sun, 12 Feb 2012 15:19:43 +0100 pbuilder (0.204ubuntu1) precise; urgency=low * Merge from Debian testing. Remaining changes: - pbuilderrc, debian/pbuilder.config, debian/pbuilder.templates: Set default archive mirror to "archive.ubuntu.com/ubuntu". - pbuilderrc: Set default distribution to "precise" and the default keyring to the Ubuntu one. - pbuilderrc: change how we pass keyring in DEBOOTSTRAPOPTS - debian/rules: install temporary locale so man page tests don't cause FTBFS. - pbuilder-buildpackage: use env PATH=$PATH when calling dpkg-source and dpkg-buildpackage -- Michael Vogt Tue, 20 Dec 2011 10:02:44 +0100 pbuilder (0.204) unstable; urgency=low [ Slavko ] * pbuilder: [INTL:sk] Slovak po-debconf translation (closes: #647117) [ Tino Keitel ] * Support base.tar.xz/bz2 as well as tgz (closes: #569917) [ Tom Hughes ] * Avoid dsc copy error when using build-internal and buildresult=.. (closes: #422272) [ Junichi Uekawa ] * check for pdebuild in regression test too, just in case. * factor out the file copy test part and add a test. -- Junichi Uekawa Sun, 04 Dec 2011 22:43:19 +0900 pbuilder (0.203) unstable; urgency=low * lighttpd test fails with cowdancer loaded. (closes: #640684) - Ignore LD_PRELOAD when inside 'pbuilder build' building something. Note: This might break fakechroot users (if there are any) trying to run with non-root UID for building. -- Junichi Uekawa Thu, 22 Sep 2011 11:31:08 +0900 pbuilder (0.202) unstable; urgency=low [ Chris Leick ] * pbuilder: Patch fixes some typos in Documentation (closes: 636376) * pbuilder: [INTL:de] Initial German translation (closes: 636377) [ Junichi Uekawa ] * po file update * fix makefile for documentation so that I need to edit only one place when adding language. [ YOSHINO Yoshihito ] * cannot cross build i386 only package on amd64 host (closes: #624530) -- Junichi Uekawa Tue, 30 Aug 2011 19:39:12 +0900 pbuilder (0.201) unstable; urgency=low [ Junichi Uekawa ] * add an arch indep package for testing. [ Zlatan Todoric ] * Serbian cyrillic translation of debconf templates. (closes: #635217, #635277) [ Jeroen Schot ] * Dutch translation of debconf templates (closes: #631123) -- Junichi Uekawa Tue, 02 Aug 2011 07:19:01 +0900 pbuilder (0.200) unstable; urgency=low * Acknowledge NMUs. (closes: #542915, #363193, #606699, #542837, #601250, #603420, #626431, #620730, #627086) -- Junichi Uekawa Sun, 26 Jun 2011 09:20:24 +0900 pbuilder (0.199+nmu4) unstable; urgency=low * Non-maintainer upload. * Rename the /run script from --execute to /runscript; not using mktemp for consistency with the documentation. (Closes: #627086) * Handle architecture wildcards with more than one architecture. (Closes: #620730) (Closes: #626431) * Fix pbuilderrc(5) formatting. (Closes: #603420) * Fix pbuilder-satisfydepends-classic output, including better line breaks and hyphen-used-as-minus-sign lintian. (Closes: #601250) * Please lintian: add debian/source/format. -- Thorsten Glaser Thu, 26 May 2011 20:49:04 +0000 pbuilder (0.199+nmu3ubuntu3) oneiric; urgency=low * pbuilder: - Rename the /run script from --execute to /runscript (LP: #811016). -- Alberto Milone Wed, 05 Oct 2011 12:31:52 +0100 pbuilder (0.199+nmu3ubuntu2) oneiric; urgency=low * Apply patch from http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=606687 (Matthew Palmer) so ccache and icecc work again (LP: #826031) -- Philip Muškovac Wed, 07 Sep 2011 10:51:21 +0100 pbuilder (0.199+nmu3ubuntu1) oneiric; urgency=low * Merge from debian unstable (LP: #776279), remaining changes: - pbuilderrc, debian/pbuilder.config, debian/pbuilder.templates: Set default archive mirror to "archive.ubuntu.com/ubuntu". - pbuilderrc: Set default distribution to "oneiric" and the default keyring to the Ubuntu one. - pbuilderrc: change how we pass keyring in DEBOOTSTRAPOPTS - debian/rules: install temporary locale so man page tests don't cause FTBFS. -- Lorenzo De Liso Tue, 03 May 2011 12:20:24 +0200 pbuilder (0.199+nmu3) unstable; urgency=low * Non-Maintainer Upload. * Apply patches provided by Gonéri Le Bouder to allow pbuilder to create and manage chroots on kFreeBSD machines (Closes: #542837). -- Luca Falavigna Tue, 29 Mar 2011 22:56:44 +0200 pbuilder (0.199+nmu2) unstable; urgency=low * Non-maintainer upload with maintainer's permission. * pbuilder-satisfydepends-aptitude: Resolve packages from experimental when necessary. Logic stolen from sbuild. Closes: #606699. * pbuilder-buildpackage, pbuilder-buildpackage-funcs: Handle architecture wildcards properly. Patch from Andres Mejia. Closes: #363193. * Makefile: Don't require a UTF-8 encoding to check the manpages. -- Emilio Pozuelo Monfort Sat, 19 Feb 2011 19:02:34 +0000 pbuilder (0.199+nmu1ubuntu1) natty; urgency=low * Merge from debian unstable. Remaining changes: - pbuilderrc, debian/pbuilder.config, debian/pbuilder.templates: Set default archive mirror to "archive.ubuntu.com/ubuntu". - pbuilderrc: Set default distribution to "natty" and the default keyring to the Ubuntu one. - pbuilderrc: change how we pass keyring in DEBOOTSTRAPOPTS - debian/rules: install temporary locale so man page tests don't cause FTBFS. -- Marc Deslauriers Thu, 06 Jan 2011 08:29:47 -0500 pbuilder (0.199+nmu1) unstable; urgency=low * Non-Maintainer Upload. * pbuilder-modules: don't clean $BUILDPLACE if another directory has been bind-mounted under it; patch by Matthew Palmer. (closes: #542915) -- Steve M. Robbins Tue, 28 Dec 2010 10:19:37 -0600 pbuilder (0.199ubuntu4) natty; urgency=low * debian/rules: properly clean up temporary locale directory. -- Marc Deslauriers Tue, 23 Nov 2010 12:56:07 -0500 pbuilder (0.199ubuntu3) natty; urgency=low * debian/rules: install temporary locale so man page tests don't cause FTBFS. -- Marc Deslauriers Tue, 23 Nov 2010 11:22:24 -0500 pbuilder (0.199ubuntu2) natty; urgency=low * pbuilderrc: change how we pass keyring in DEBOOTSTRAPOPTS (LP: #671126) -- Alex Chiang Thu, 04 Nov 2010 13:23:04 -0600 pbuilder (0.199ubuntu1) natty; urgency=low * Merge with Debian; remaining changes: - pbuilderrc, debian/pbuilder.config, debian/pbuilder.templates: Set default archive mirror to "archive.ubuntu.com/ubuntu". - pbuilderrc: Set default distribution to "natty" and the default keyring to the Ubuntu one. -- Loïc Minier Wed, 13 Oct 2010 19:14:46 +0200 pbuilder (0.199) unstable; urgency=low * add a more useful message for pbuilder-runhooks when hookdir cannot be removed. (closes: #587254) * Add an option to verify key signatures. (closes: #579028) This is experimental; You can try with APTGETOPT, and setting PBUILDERSATISFYDEPENDSOPT=('--check-key'). -- Junichi Uekawa Mon, 05 Jul 2010 22:35:40 +0900 pbuilder (0.198ubuntu2) maverick; urgency=low * pbuilderrc: Use /usr/share/keyrings/ubuntu-archive-keyring.gpg by default instead of debian-archive-keyring.gpg; this should really be set on a per-distro way since it breaks creation of Debian chroots from Ubuntu and vice-versa; LP: #599394. -- Loïc Minier Mon, 28 Jun 2010 21:56:54 +0200 pbuilder (0.198ubuntu1) maverick; urgency=low * Merge from debian unstable; LP: #597980. Remaining changes: - pbuilderrc, debian/pbuilder.config, debian/pbuilder.templates: Set default archive mirror to "archive.ubuntu.com/ubuntu". - pbuilderrc: Set default distribution to "maverick". -- Bhavani Shankar Fri, 25 Jun 2010 13:06:57 +0530 pbuilder (0.198) unstable; urgency=low * add --keyring option as default parameter to DEBOOTSTRAPOPTS (closes: 579028) -- Junichi Uekawa Thu, 24 Jun 2010 21:27:59 +0900 pbuilder (0.197) unstable; urgency=low [ Loïc Minier ] * pbuilder-createbuildenv, -updatebuildenv: Remove apt from $CHROOTEXEC apt-get install call and add aptitude if pbuilder-satisfydepends uses it; remove aptitude otherwise; closes: 539578. Fixes support for --variant=buildd. * Make /usr/lib/pbuilder/pbuilder-satisfydepends a symlink to pbuilder- satisfydepends-aptitude instead of a copy; closes: #448098. * pbuilder-satisfydepends-aptitude: Fix typo in package description. * Add builtin support for using ccache in pbuilder and enable it by default. Ship a new /var/cache/pbuilder/ccache dir and bind-mount and chown it to BUILDUSERID at build time. Install/remove ccache automatically on create/update if CCACHEDIR is set/unset. Update docs and remove old ccache config example. Add a NEWS entry featuring the change. Stop intalling ccache sample config * debuild-pbuilder.1: update sample output of debuild-pbuilder to match current code; thanks Osamu Aoki; closes: 563209. * Don't quote PBUILDERROOTCMD as it's typically a command with arguments such as "su -p" or "sudo -E"; thanks Osamu Aoki; see #563209. * test_pbuilder-satisfydepends-*: add many tests. * pbuilder-satisfydepends-*: Large refactoring and cleanups; fixes historical bugs with space/tabs/etc. parsing in debian/control with pbuilder-satisfydepends-classic and perhaps -aptitude and -experimental. Also avoids large code duplication and normalizes debian/control handling. * pbuilder.8: Mention quoting around --bindmounts; LP: #376612 * Add pbuilder-apt-config tool to generate APT sources.list and query misc other data from archives; this is aimed at supporting multiple archives and setups better (instead of a single MIRROR, DISTRIBUTION etc.) but is generic and independent to encourage reuse. Comes with testsuite showing sample uses. * Fix misc man page typos. * Rework Makefile entirely. * Use paragraphs in debian/NEWS file instead of bullet points. * pbuilder-selftest: new command to run the tests which are now installed. [ Junichi Uekawa ] * [INTL:da] Danish translation of the debconf templates pbuilder (closes: 583676) * document that DEBOOTSTRAPOPTS is an array. (closes: 578989) [ Hideki Yamane ] * typo "taget" (closes: 582415) [ Jari Aalto ] * pbuilderrc.5 - Order item alphabetically (closes: 579705) -- Junichi Uekawa Wed, 23 Jun 2010 07:21:11 +0900 pbuilder (0.196ubuntu2) maverick; urgency=low * Update the default dist to maverick. -- Loïc Minier Sat, 08 May 2010 13:54:39 +0200 pbuilder (0.196ubuntu1) lucid; urgency=low * Merge with Debian unstable (lp: #502135). Remaining changes: - pbuilderrc, debian/pbuilder.config, debian/pbuilder.templates: Set default archive mirror to "archive.ubuntu.com". - pbuilderrc: Set default distribution to "lucid". -- Michael Bienia Sat, 02 Jan 2010 14:30:46 +0100 pbuilder (0.196) unstable; urgency=low [ Loïc Minier ] * Add comments to check target. * Use GNU-style vars for system directories, allow to set them from the env, and let them be prefixed with a PBUILDER_ROOT directory to allow relocation. * Add helpers to relocate pbuilder in testsuite. * Use a relocated pbuilder setup to run test_debuildopts; closes: #562681. [ Junichi Uekawa ] * Add Loic to uploaders. [ Loïc Minier ] * pbuilder: add support for setting the architecture on the command-line and in pbuilderrc. * pdebuild: add support for setting the architecture on the command-line and in pbuilderrc; closes: #516625. * Set testsuite mirror depending on FQDN. * Always prepend --include=apt to debootstrap args; this is needed when using --variant=buildd which doesn't include apt since pbuilder calls apt-get in the chroot. Note that this can still be overrident by the end-user by passing another --include= flag via DEBOOTSTRAPOPTS since these flags aren't cumulative in debootstrap. * Update testsuite logs; note that update-squeeze-sid-experimental fails due to #563049. -- Loïc Minier Fri, 01 Jan 2010 18:52:04 +0100 pbuilder (0.195) unstable; urgency=low [ Junichi Uekawa ] * fix pdebuild.1 documentation about options which was confusing (closes: #527878) * Warn when there is non-existing hookdir. (closes: #525420) * pdebuild-internal make HOME set to non-relative path. (closes: #492898) * Make error message visible when copying out to buildresult (closes: #505695) * explain pbuilder git commit message style in documentation. * install D80no-man-db-rebuild to example directory. * pbuilderrc: --variant=buildd is temporarily broken, disable. [ Loïc Minier ] * Change default root command to sudo -E; (closes: #361362) * Do not mention codename of testing where possible * Use debootstrap by default instead of cdebootstrap * Factor "exec >" + "exec 2>&1" together * Add support for building packages twice; (closes: #493538) * Update header of /usr/share/pbuilder/pbuilderrc * Copy .dsc in chroot before calling gdebi; (closes: #472407) * Make --debbuildopts additive * Log dpkg-buildpackage command lines * Require gdebi/gdebi-core on host to resolve bdeps [ gregor herrmann ] * Add a hook script example to disable man-db regeneration inside chroot (closes: #561539) -- Junichi Uekawa Sun, 27 Dec 2009 05:39:15 +0900 pbuilder (0.194) unstable; urgency=low * Gracefully handle non-existing bind-mount in --bindmount option (closes: #556164) -- Junichi Uekawa Wed, 02 Dec 2009 23:02:42 +0900 pbuilder (0.193) unstable; urgency=low [ Matt Kraai ] * Make debian/rules not ignore errors running "make clean" * Add ${misc:Depends} to pbuilder-uml's Depends line * Update the Standards-Version to 3.8.3 * complete filenames correctly if options are used. (closes: #555214) * allow --autocleanaptcache to be specified in pbuilderrc. * Update French documentation translation, thanks to Vincent Bernat. (closes: #480216) [ Junichi Uekawa ] * make --hookdir work on pdebuild-internal (closes:#526471) -- Junichi Uekawa Sun, 29 Nov 2009 18:25:40 +0900 pbuilder (0.192ubuntu1) lucid; urgency=low * Merge from debian testing, remaining changes: - debian/control, pbuilderrc: Prefer debootstrap over cdebootstrap. - pbuilderrc, debian/pbuilder.config, debian/pbuilder.templates: Set default archive mirror to "archive.ubuntu.com". - pbuilderrc: + Set default distribution to "lucid". + Set Ubuntu components, but comment them out, so that it still defaults to "main". + Use "sudo -E" for PBUILDERROOTCMD. (LP #175776, Debian #361362) - pbuilder-satisfydepends-gdebi: gdebi needs to be called from outside the chroot as the .dsc file isn't copied yet into the chroot. (Debian #472407, LP #242449). - pbuilder-buildpackage, pbuilder.8, pbuilder-checkparams, pbuilder-modules: Add support for building twice in a row. (Debian #493538) - pbuilder-satisfydepends-checkparams: Re-add the CHROOT variable which got lost during the merge. It's needed for pbuilder-satisfydepends-gdebi to work (lp: #384284). -- Michael Vogt Wed, 25 Nov 2009 11:37:25 +0100 pbuilder (0.192) unstable; urgency=low * quote-escape debemail so that email with space can be handled properly. -- Junichi Uekawa Mon, 02 Nov 2009 00:47:57 +0900 pbuilder (0.191) unstable; urgency=low [ Loïc Minier ] * pbuilder-buildpackage: pass -e to dpkg-bp, not -m (#546531) * Misc enhancements to sample lintian hook -- Junichi Uekawa Sun, 01 Nov 2009 23:36:13 +0900 pbuilder (0.190) unstable; urgency=low * install aptitude via EXTRAPACKAGES, and not hard-code. (closes: #539578) * pass apt-get '-q' option to remove the progress. -- Junichi Uekawa Tue, 25 Aug 2009 22:24:03 +0900 pbuilder (0.189ubuntu1) karmic; urgency=low * Merge from debian unstable, remaining changes: LP: #402255 - debian/control, pbuilderrc: Prefer debootstrap over cdebootstrap. - pbuilderrc, debian/pbuilder.config, debian/pbuilder.templates: Set default archive mirror to "archive.ubuntu.com". - pbuilderrc: + Set default distribution to "karmic". + Set Ubuntu components, but comment them out, so that it still defaults to "main". + Use "sudo -E" for PBUILDERROOTCMD. (LP #175776, Debian #361362) - pbuilder-satisfydepends-gdebi: gdebi needs to be called from outside the chroot as the .dsc file isn't copied yet into the chroot. (Debian #472407, LP #242449). - pbuilder-buildpackage, pbuilder.8, pbuilder-checkparams, pbuilder-modules: Add support for building twice in a row. (Debian #493538) - pbuilder-satisfydepends-checkparams: Re-add the CHROOT variable which got lost during the merge. It's needed for pbuilder-satisfydepends-gdebi to work (lp: #384284). -- Bhavani Shankar Wed, 22 Jul 2009 13:42:01 +0530 pbuilder (0.189) unstable; urgency=low [ Junichi Uekawa ] * Do not error out on etch apt for apt-get autoremove (closes: #531454) [ Peter Pentchev ] * update GPL symlink * Split a long description line. * Convert an example into a real shell script. * add all: target in Makefile * Bump Standards-Version to 3.8.1 by simply honoring the nocheck build option. * Bump the debhelper compatibility level to 7: dh_prep instead of dh_clean -k. -- Junichi Uekawa Mon, 13 Jul 2009 20:43:22 +0900 pbuilder (0.188) unstable; urgency=low [ Junichi Uekawa ] * add a note that debian/changelog should not be edited. * Declare bashisms explicit in buildall script. (closes: #530157) [ Loïc Minier ] * Call apt-get autoremove on upgrades: (closes: #322649) * Drop useless -o APT::Get::AutomaticRemove=true -- Junichi Uekawa Sun, 31 May 2009 10:44:05 +0900 pbuilder (0.187ubuntu2) karmic; urgency=low * pbuilder-satisfydepends-checkparams: Re-add the CHROOT variable which got lost during the merge. It's needed for pbuilder-satisfydepends-gdebi to work (lp: #384284). -- Michael Bienia Sat, 06 Jun 2009 16:03:23 +0200 pbuilder (0.187ubuntu1) karmic; urgency=low * Merge with Debian unstable; remaining Ubuntu changes: - debian/control, pbuilderrc: Prefer debootstrap over cdebootstrap. - pbuilderrc, debian/pbuilder.config, debian/pbuilder.templates: Set default archive mirror to "archive.ubuntu.com". - pbuilderrc: + Set default distribution to "karmic". + Set Ubuntu components, but comment them out, so that it still defaults to "main". + Use "sudo -E" for PBUILDERROOTCMD. (LP #175776, Debian #361362) - pbuilder-satisfydepends-gdebi: gdebi needs to be called from outside the chroot as the .dsc file isn't copied yet into the chroot. (Debian #472407, LP #242449). - pbuilder-buildpackage, pbuilder.8, pbuilder-checkparams, pbuilder-modules: Add support for building twice in a row. (Debian #493538) -- Martin Pitt Mon, 04 May 2009 12:49:29 +0200 pbuilder (0.187) unstable; urgency=low [ Junichi Uekawa ] * gcc is not a useful dependency of pbuilder (closes: #486492) * warn if --othermirror is specified and --override-config is not specified. (closes: #493154) * refactor to use 'log' function rather than using 'echo' directly. * implement --inputfile option. * handle packages line wrapping with something other than ',' in Build-Depends (closes: 519306) [ Stefan Fritsch ] * Bug#520251: pbuilder: Pbuilder does not umount bindmounts when ssh connection dies -- Junichi Uekawa Sat, 21 Mar 2009 12:47:46 +0900 pbuilder (0.186) unstable; urgency=low [ shaul Karl ] * Fixes to pbuilderrc.5, pbuilder.1, pbuilder.8 (closes: #513359, #513359, #513359) [ Junichi Uekawa ] * Document the default debootstrap implementation (closes: #513316) * /var/cache/pbuilder not empty so not removed upon purge, after purge configuration is still there. (closes: #513739, #513737) * made debbuildopts description in manpage more verbose (closes: #501390) * Handle comments in debian/control. (closes: #514656) * Lenny is released, We no longer support Etch and update regression testsuite accordingly. * revise documentation for obvious changes for lenny release, and squeeze updates. -- Junichi Uekawa Fri, 20 Feb 2009 21:56:49 +0900 pbuilder (0.185) unstable; urgency=low [ Junichi Uekawa ] * improve B92test-pkg: Allow satisfying dependency inside chroot. * A Hook to add Non-free distribution to sources.list. [ Otavio Salvador ] * add PDEBUILD_PBUILDER example to use cowbuilder -- Junichi Uekawa Sat, 24 Jan 2009 00:21:30 +0900 pbuilder (0.184) unstable; urgency=low [ Loïc Minier ] * Set doc-base Section to "Debian"; (closes: #504596) * Nicer comments in pbuilderrc; (closes: #504599) * Downgrade cowdancer to Suggests; (closes: #504594) [ Martin Bagge ] * [INTL:sv] Swedish strings for pbuilder debconf (closes: #506595) -- Junichi Uekawa Thu, 27 Nov 2008 21:22:11 +0900 pbuilder (0.183ubuntu1) jaunty; urgency=low * Merge with Debian unstable. Remaining Ubuntu changes: - debian/control: Prefer debootstrap over cdebootstrap. - debian/control: Demote cowdancer from Recommends to Suggests. This fits Suggests semantics. (Forwarded to Debian #504594) - debian/doc-base: Fix section. (Forwarded to Debian #504596) - pbuilderrc: + Set default archive to "archive.ubuntu.com". + Set default distribution to "jaunty". + Set Ubuntu components, but comment them out, so that it still defaults to "main". + Use debootstrap rather than cdebootstrap. + Use "sudo -E" for PBUILDERROOTCMD. (LP #175776, Debian #361362) - debian/pbuilder.config: add explanation header on new install that the new /etc/pbuilderrc uses the default values from /usr/share/pbuilder/pbuilderrc. (Forwarded to Debian #504599) - debian/pbuilder.templates, debian/pbuilder.config: Use Ubuntu mirror by default. - pbuilder-satisfydepends-checkparams, pbuilder-satisfydepends-gdebi: Fix pbuilder-satisfydepends-gdebi: gdebi needs to be called from outside the chroot as the .dsc file isn't copied yet into the chroot. (Debian #472407, LP #242449). - pbuilder-buildpackage, pbuilder.8, pbuilder-checkparams, pbuilder-modules: Add support for building twice in a row. (Debian #493538) -- Martin Pitt Wed, 05 Nov 2008 15:29:10 +0100 pbuilder (0.183) unstable; urgency=low [ Junichi Uekawa ] * use my local approx mirror for testing, since Argentina Debconf place does not have connection to cdn.debian.net / cdn.debian.or.jp * REMOVEPACKAGES="", thanks to Sven Joachim (closes: #500002) [ Ben Finney ] * Dereference symlinks when copying hooks. (closes: #499358) -- Junichi Uekawa Wed, 01 Oct 2008 21:41:46 -0700 pbuilder (0.182) unstable; urgency=low [ Junichi Uekawa ] * updated japanese documentation ja.po * implement a bash functional unit-testing testsuite, testlib. * run the unit-tests in makefile make check * Reorder command-line options, and add error check so that things are better checked. * update japanese po translation. [ Ignacio Mondino ] * [INTL:es] Spanish translation for po-debconf template (closes: #493649) [ Loïc Minier ] * Pass APT::Install-Recommends=false to gdebi when possible * Wrap build-deps, deps, and uploaders to get cleaner diffs. * Suggest gdebi; closes: #488314. * Pass -s to dh_* instead of checking dpkg-architecture and using -a * Cleanup rules * pbuilder-buildpackage-funcs: always pass chroot to satisfydepends * Drop build-dep on rootstrap; only used at runtime * pdebuild: Move "$@" to end of "arg chain" for PDEBUILD_BUILDER calls * pbuilder-satisfydepends-gdebi: add "--force-yes" to apt-get call * UNRELEASED snapshot banner -- Junichi Uekawa Tue, 12 Aug 2008 01:56:28 +0900 pbuilder (0.181ubuntu7) intrepid; urgency=low * Demote cowdancer from Recommends to Suggests. This fits Suggests semantics, and avoids pulling in qemu, bochs, gcc-3.4, and other stuff into main. -- Martin Pitt Fri, 17 Oct 2008 10:20:45 +0200 pbuilder (0.181ubuntu6) intrepid; urgency=low * Fix: correctly handle multiple --debbuildopts (LP: #278213). -- TJ Sat, 4 Oct 2008 18:30:00 +0200 pbuilder (0.181ubuntu5) intrepid; urgency=low * Fix condition that makes build twice in a row the default behavior. (LP: #258808) -- Nicolas Valcárcel Mon, 18 Aug 2008 00:54:57 -0500 pbuilder (0.181ubuntu4) intrepid; urgency=low [ Nicolas Valcárcel ] * Make pbuilder lintian clean (LP: #254305): - Edit debian/rules to not ignore make clean errors - Modified Standars version - Update debconf templates - Modified doc-base Section to Debian according to new schema - Added interpreter to pbuildd/hookdir/A10dpkg-l.sh due lintian error * Added --twice build option (LP: #196008) - Edited manpage with the new option - Added option information on built-in help message [ Michael Vogt ] * Added gdebi-core to Suggests (LP: #131153) -- Nicolas Valcárcel Sun, 03 Aug 2008 23:23:48 -0400 pbuilder (0.181ubuntu3) intrepid; urgency=low * Fix pbuilder-satisfydepends-gdebi: gdebi needs to be called from outside the chroot as the .dsc file isn't copied yet into the chroot (Closes: #472407, LP: #242449). -- Michael Bienia Mon, 23 Jun 2008 21:17:53 +0200 pbuilder (0.181ubuntu2) intrepid; urgency=low * debian/rules: s/ -a/ -s/ to fix FTBFS on powerpc (LP: #184218) -- Daniel Hahler Fri, 20 Jun 2008 11:01:15 +0100 pbuilder (0.181ubuntu1) intrepid; urgency=low * Merge from debian unstable, remaining changes: * debian/control: - Prefer debootstrap over cdebootstrap. - Remove rootstrap build-dependency. * pbuilderrc: - Set default archive to "archive.ubuntu.com". - Set default distribution to "intrepid". - Set Ubuntu components. - Don't create a buildd variant by default. - Use debootstrap rather than cdebootstrap. - pbuilderrc: use "sudo -E" for PBUILDERROOTCMD (LP: #175776) * pdebuild: Move "$@" to end of "arg chain" for PDEBUILD_BUILDER calls, so that "--buildresult" option gets passed to pbuilder (LP: #129586) * debian/pbuilder.config: - add explaination header on new install that the new /etc/pbuilderrc uses the default values from /usr/share/pbuilder/pbuilderrc -- Michael Vogt Thu, 29 May 2008 10:51:09 +0200 pbuilder (0.181) unstable; urgency=low [ Esko Arajärvi ] * Finnish translation of the debconf templates (closes: #482108) [ Jordà Polo ] * Catalan debconf templates translation update (closes: #481930) [ xabier bilbao ] * Basque translation (closes: #481842) [ Yuri Kozlov ] * Russian debconf templates translation (closes: #481711) [ Miroslav Kure ] * Czech translation of pbuilder debconf messages (closes: #481627) [ Jacobo Tarrio ] * Galician debconf template translation (closes: #481118) [ Junichi Uekawa ] * documentation .po files changed. -- Junichi Uekawa Sat, 24 May 2008 22:09:39 +0900 pbuilder (0.180) unstable; urgency=low [ Sylvain Beucler ] * lvmpbuilder is not complete in the binary packages (closes: #475363) [ Sandro Tosi ] * pbuilder: html doc enhancement (closes: #478021) [ Junichi Uekawa ] * umount on failed bind-mount (closes: #474771) * [INTL:de] initial German debconf translation (closes: #475046) * pbuilder: French debconf templates translation (closes: #474567) * pbuilder: [INTL:pt] Portuguese translation for debconf messages (closes: 473825) * --create with --basetgz will not fail file does not exist (closes: #451835) * add po4a build-dependency (closes: #480633) -- Junichi Uekawa Mon, 12 May 2008 08:12:52 +0900 pbuilder (0.179) unstable; urgency=low [ Eddy Petrișor ] * added support for detection of the default mirror in postinst (Closes: #333294) - /etc/pbuilderrc is no longer a conffile - detection of the default MIRRORSITE relies on the information from /etc/apt/sources.list and /etc/apt/sources.list.d/ * bumped versioned dependency on debhelper to (>= 4.1.16) as indicated in po-debconf manual [ po-debconf translations ] * iniatial Romanian translation (by Eddy Petrișor) * add ja.po (by Junichi Uekawa) [ Junichi Uekawa ] * French documentation update (closes: #465515) * remove linda and use lintian, linda is now gone. * use cdn.debian.net for default Debian mirror * Documentation: revise information about Git commit logs and changelog. -- Junichi Uekawa Sat, 29 Mar 2008 15:41:44 +0900 pbuilder (0.178) unstable; urgency=low [ Junichi Uekawa ] * satisfydepends-gdebi: reorganize code to go in-line with other funcs. * gdebi: install gdebi-core, not gdebi into chroot. * revise japanese documentation * Do not show "Upgrading for distribution xyz" message on update when --override-config is not specified (closes: #459432) [ Loïc Minier ] * Set APT::Get::AutomaticRemove=true in upgrade instead of calling autoremove -- Junichi Uekawa Sat, 02 Feb 2008 10:58:34 +0900 pbuilder (0.177) unstable; urgency=low [ Loic Minier ] * Run apt-get autoremove after upgrade. [ Junichi Uekawa ] * python-apt/gdebi based pbuilder-satisfydepends-gdebi (closes: #453388) * Fix devpts mount permissions (closes: #453862) * Document pbuilder-satisfydepends-gebi in manpage -- Junichi Uekawa Wed, 26 Dec 2007 20:53:24 +0900 pbuilder (0.176ubuntu2) hardy; urgency=low [ Daniel Hahler ] * pbuilderrc: use "sudo -E" for PBUILDERROOTCMD (LP: #175776) * pbuilder-satisfydepends-gdebi: add "--force-yes" to apt-get call (LP: #123068) * pdebuild: Move "$@" to end of "arg chain" for PDEBUILD_BUILDER calls, so that "--buildresult" option gets passed to pbuilder (LP: #129586) -- Michael Vogt Fri, 29 Feb 2008 12:49:35 +0100 pbuilder (0.176ubuntu1) hardy; urgency=low * Merge from debian unstable, remaining changes: * debian/control: - Prefer debootstrap over cdebootstrap. - DebianMaintainerField. - Remove rootstrap build-dependency. - add missing po4a build-dep * Makefile: - Addded pbuilder-satisfydepends-gdebi * pbuilder-buildpackage-funcs: - always pass --chroot to the pbuilder-satisfydepends (needed for pbuilder-satisfydepends-gdebi) * pbuilderrc: - Set default archive to "archive.ubuntu.com". - Set default distribution to "hardy". - Set Ubuntu components. - Don't create a buildd variant by default. - Use debootstrap rather than cdebootstrap. * pbuilder-satisfydepends-gdebi: - added alternative b-d resolver that should should speed up b-d resolution quite a bit. * Support for specifying components is now included in Debian. -- Michael Vogt Thu, 29 Nov 2007 10:16:12 +0100 pbuilder (0.176) unstable; urgency=low [ Loic Minier ] * Do not install recommends in pbuilder-satisfydepends-aptitude. explicitly add -o APT::Install-Recommends=false [ Junichi Uekawa ] * Create /etc/apt/apt.conf.d just in case it doesn't exist. (Closes: #452584). -- Junichi Uekawa Sun, 25 Nov 2007 12:41:42 +0900 pbuilder (0.175) unstable; urgency=low * debian/control: Vcs-Browser and Vcs-Git instead of XS-*. * Bug fix: "pbuilder: pdebuild - Breakage when using XC- headers", thanks to Soren Hansen (Closes: #448757). * Bug fix: "pbuilder: French documentation translation", thanks to Vincent Bernat (Closes: #448294). * Bug fix: "pbuilder-satisfydepends-classic should pass -o APT::Install-Recommends=false to apt-get", thanks to Daniel Schepler (Closes: #448562). * set /etc/apt/apt.conf.d/15pbuilder so that Install-Recommends is false. -- Junichi Uekawa Wed, 21 Nov 2007 19:22:00 +0900 pbuilder (0.174ubuntu2) hardy; urgency=low * Fix sed for pdebuild-internal to stop matching Original-Maintainer field as an output file name. -- John Dong Sat, 27 Oct 2007 15:30:13 -0400 pbuilder (0.174ubuntu1) hardy; urgency=low * Merge from Debian unstable. Remaining Ubuntu changes: * debian/control: - Prefer debootstrap over cdebootstrap. - DebianMaintainerField. - Remove rootstrap build-dependency. * Makefile: - Addded pbuilder-satisfydepends-gdebi * pbuilder-buildpackage-funcs: - always pass --chroot to the pbuilder-satisfydepends (needed for pbuilder-satisfydepends-gdebi) * pbuilderrc: - Set default archive to "archive.ubuntu.com". - Set default distribution to "hardy". - Set Ubuntu components. - Don't create a buildd variant by default. - Use debootstrap rather than cdebootstrap. * pbuilder-satisfydepends-gdebi: - added alternative b-d resolver that should should speed up b-d resolution quite a bit. * Support for specifying components is now included in Debian. -- Adrien Cunin Sat, 27 Oct 2007 13:58:41 +0200 pbuilder (0.174) unstable; urgency=low [ Junichi Uekawa ] * add bash_completion. * Bug fix: "pbuilder: incoherence man page with --help", thanks to David Vernazobres (Closes: #446479). * Bug fix: "Add XS-Vcs-* field", thanks to Laurent Bigonville (Closes: #447631). [ Adrien Cunin ] * Added the ability to specify the distribution components via $COMPONENTS in pbuilderrc or via pbuilder --components. Part of the patch taken from Ubuntu. (Closes: #422371) -- Junichi Uekawa Thu, 25 Oct 2007 20:18:09 +0900 pbuilder (0.173ubuntu1) hardy; urgency=low * Merge from debian unstable, remaining changes: * debian/control: - Prefer debootstrap over cdebootstrap. - DebianMaintainerField. - Remove rootstrap build-dependency. * Makefile: - Addded pbuilder-satisfydepends-gdebi * pbuilder-buildpackage-funcs: - always pass --chroot to the pbuilder-satisfydepends (needed for pbuilder-satisfydepends-gdebi) * pbuilder-modules: - Add support for multiple components. * pbuilderrc: - Set default archive to "archive.ubuntu.com". - Set default distribution to "gutsy". - Add comment about components. - Don't create a buildd variant by default. - Use debootstrap rather than cdebootstrap. * pbuilderrc.5: - Document support for multiple components. * pbuilder-satisfydepends-gdebi: - added alternative b-d resolver that should should speed up b-d resolution quite a bit. -- Soren Hansen Fri, 19 Oct 2007 17:55:29 +0200 pbuilder (0.173) unstable; urgency=low * documentation update: add svn-buildpackage example. * return exit code for pbuilder login / execute -- Junichi Uekawa Mon, 01 Oct 2007 22:19:54 +0900 pbuilder (0.172) unstable; urgency=low [ Loic Minier ] * Fix a file name in pdebuild.1's man page which was being interpreted by man; thanks Roland Stigge; closes: #437336. [ Junichi Uekawa ] * update lvmpbuilder, thanks to Kapil Hari Paranjape (closes: #389884) * rename pbuilder-satisfydepends to pbuilder-satisfydepends-classic, and install pbuilder-satisfydepends-aptitude as the deafault pbuilder-satisfydepends * install aptitude per default in chroot. * "pdebuild: [manual] Change pbuilder.8 to pbuilder(8)", thanks to Jari Aalto (Closes: #439818). * Bug fix: "pbuilder login does not create a login shell", thanks to Ben Hutchings (Closes: #439285). -- Junichi Uekawa Wed, 29 Aug 2007 08:42:19 +0900 pbuilder (0.171) unstable; urgency=low * add example configuration file for ccache. * Bug fix: "$HOME/.pbuilderrc example for use in using multiple pbuilder setups", thanks to Andres Mejia (Closes: #432277). -- Junichi Uekawa Wed, 01 Aug 2007 21:19:09 +0900 pbuilder (0.170) unstable; urgency=low * add example rebuild script from Bastian Venthur (http://people.debian.org/~venthur/stuff/2007-06-rebuild/) * /var/cache/apt/archives is deleted when I set APTCACHE to /var/cache/apt/archives and I call pbuilder clean (closes: #425832) * fix pbuilder.8 manpage example, it was different from real output. * pbuilder-doc.pdf: do not compress this file. * make pbuilderrc example on DEBBUILDOPTS not contain -b, which is not recommended. * Bug fix: "Patch for pbuilder-distribution.sh script for use with pdebuild", thanks to Andres Mejia (Closes: #429770). * Documentation, examples/pbuilder-test/: add sample scripts for pbuilder-test, and add reference to it. * Bug fix: "pbuilder: Some sample (device-mapper) cow build scripts", thanks to Kapil Hari Paranjape (Closes: #389884). Include lvmpbuilder sample implementation. -- Junichi Uekawa Mon, 25 Jun 2007 21:26:25 +0900 pbuilder (0.169) unstable; urgency=low [ Loic Minier ] * List amd64 in pbuilder-uml's Architectures; thanks Mattia Dongili. [ Junichi Uekawa ] * pdebuild-internal now runs hooks A, B, C, and D. (closes: #342613) * run dpkg-architecture inside chroot for pbuilder-satisfydepends-{aptitude,experimental} also. * build pbuilder-uml for amd64. * C10shell, C11screen: install vim and less, and cd to the source directory per default. Much useful. * pbuilder-doc.xml: review documentation. * install PDF documentation. * add doc-base file * Build-Depends on rootstrap and user-mode-linux on i386/amd64 so that test can run. -- Junichi Uekawa Tue, 05 Jun 2007 21:37:46 +0900 pbuilder (0.168) unstable; urgency=low * Bug fix: "Fix user/group name resolution inside chroot", thanks to Anderson Lizardo (Closes: #398865). * do not always output 'Aborting with error' on create/update (bug introduced in 0.167) * fix man pages to have reference to pbuilder-doc.html, and fix home page address to point to alioth. * update debian/copyright * fix C10shell script to work with the new 'tee' log mode. (add '2> /dev/tty') (Closes: #426380) -- Junichi Uekawa Mon, 28 May 2007 22:47:21 +0900 pbuilder (0.167) unstable; urgency=low [ Junichi Uekawa ] * examples/execute_installtest.sh: update to support multiple packages as apt target. * Documentation/pbuilder.xml: Improve documentation wordings. add more pbuilder-test documentation. * Use 'tee' to show output even in logged mode. * trap SIGHUP as well as exit, and reorganize code around the change. (Closes: #425454) * Improve log file support thanks to request from Russ Allbery (Closes: #424717). - pdebuild will create .build file in similar manner to debuild command - output is tee'd to terminal and also the logfile. * add C11screen example script, which starts up GNU screen after build failure. * pdebuild.1 documentation clarification, thanks to Sanjoy Mahajan (Closes: #425422). * shut up lintian: specify debian/compat (4) instead of DH_COMPAT in debian/rules * shut up lintian about binnmuability. Use {source:Version} instead of Source-Version, according to http://wiki.debian.org/binNMU [ Loic Minier ] * Tune aptitude opts in pbuilder-satisfydepends-aptitude to handle complex dependencies in experimental, to support unsigned APT repositories, and to not install Recommends. -- Junichi Uekawa Sun, 27 May 2007 15:53:49 +0900 pbuilder (0.166) unstable; urgency=low [ Junichi Uekawa ] * Re-Bug fix: "pbuilder: pbuilder-uml should not overwrite network configuration", thanks to Paul TBBle Hampson (Closes: #391915). * Bug fix: "pbuilder-uml: --uml-ip broken", thanks to Paul TBBle Hampson (Closes: #416920). * Manual page SEE ALSO fix, '.RI'->'.BR' (closes: #409135) * minor update to documentation. * remove CVS Id banners since they have no meaning on git trees. * pbuilder-uml: do not build for amd64, dependencies are not satisfied (yet). * pdebuild.1, pbuilder.8: --debbuildopts, --debootstrapopts documentation update. [ Loic Minier ] * New pbuilder-satisfydepends-aptitude resolver based on aptitude; based on an idea by Mike Hommey; closes: #337015. -- Junichi Uekawa Tue, 17 Apr 2007 08:42:01 +0900 pbuilder (0.165) unstable; urgency=low [ Junichi Uekawa ] * pbuilder: Build-dep resolution cannot determine the architecture being built on when building under fakeroot (closes: #415546) thanks to Paul TBBle Hampson for the patch. * pbuilder-uml: enable for amd64 * Use $BUILDRESULT with pdebuild-internal thanks to Anderson Lizardo (closes: #399484) * Change 'SEE ALSO' spacing from 'pdebuild (1)' => 'pdebuild(1)' to. (closes: #409135) * Try to warn only if network configuration files are not found on host OS, not error out. (closes: #391915) * support UML_IP=dhcp. (closes: #415544) -- Junichi Uekawa Fri, 30 Mar 2007 20:34:41 +0900 pbuilder (0.164) unstable; urgency=low [ Loic Minier ] * Document usage in a vserver environment. [ Mattia Dongili ] * Bug fix: "pbuilder-uml: allow pbuilder-user-mode-linux to mount /lib/modules on the host", thanks to Mattia Dongili (Closes: #406845). [ Junichi Uekawa ] * pbuilder-satisfydepends: run dpkg-architecture inside chroot. This allows cross-building for i386/amd64 -- Junichi Uekawa Tue, 27 Feb 2007 08:06:38 +0900 pbuilder (0.163) unstable; urgency=low [ Junichi Uekawa ] * --override-config and --mirror without --distribution leaves /proc mounted, and breaks cowbuilder. (closes: #405497) * pbuilder repository moved over to git! * add EXAMPLES section in documentation. * use --variant=buildd option for debootstrap and cdebootstrap chroot building. -- Junichi Uekawa Mon, 22 Jan 2007 20:45:10 +0900 pbuilder (0.162) unstable; urgency=low [ Junichi Uekawa ] * Bug fix: "pbuilder does not clean the /run script from pbuilder execute", thanks to Artur R. Czechowski (Closes: #403414). * Bug fix: "'EOF on stdin at conffile prompt'; when upgrading to etch", thanks to Max Kellermann (Closes: #401863). Surfaced when doing 'pbuilder create' with stable, and OTHERMIRROR set to backports. -- Junichi Uekawa Tue, 26 Dec 2006 17:11:08 +0900 pbuilder (0.161) unstable; urgency=low [ Junichi Uekawa ] * Clarify documentation so that --configfile loads additional configuration, and does not avoid loading configuration in place of ~/.pbuilderrc (closes: #394985) * pbuilder-doc.xml: update developer information. [ Loic Minier ] * Testsuite may now test pbuilder-satisfydepends. * Ignore umount errors of the types "umount: /foobar: not mounted" and "umount: /foobar: not found" as retries will be useless anyway and these errors shouldn't cause data loss; thanks Martin F Krafft; closes: #391390. * Unmount selinux and bind mounts first. * Fix usage of --pdebuild-internal: install passwd during groupadd/useradd in pdebuild-internal. * New PBUILDERSATISFYDEPENDSCMD config option and --pbuildersatisfydepends override flag to set the command to run to satisfy build dependencies; default to the /usr/lib/pbuilder/pbuilder-satisfydepends helper. * New experimental implementation of PBUILDERSATISFYDEPENDSCMD, pbuilder-satisfydepends-experimental, which might help building packages targetted at experimental. * Document usage of backports for a sarge pbuilder with cowdancer; closes: #394710. -- Junichi Uekawa Tue, 21 Nov 2006 22:28:10 +0900 pbuilder (0.160) unstable; urgency=low * Bug fix: "pbuilder-doc: cowbuilder instead of cowdancer", thanks to Joachim Breitner (Closes: #394673). * Bug fix: "pbuilder-doc: inaccurcies in `Chapter 3. Using User-mode-linux with pbuilder'?", thanks to shaulka@012.net.il (Closes: #394857). * Add workaround for /lib/init/rw (Closes: #392136). -- Junichi Uekawa Tue, 24 Oct 2006 08:02:41 +0900 pbuilder (0.159) unstable; urgency=low [Junichi Uekawa] * Bug fix: "pbuilder --login quits and cleans up immediately", thanks to dr@jones.dk (Closes: #385351). * add notes in the comment that files in examples are useful for --hookdir option. * add patch from Mattia Dongili to revive pbuilder-uml. -- Junichi Uekawa Tue, 26 Sep 2006 07:49:04 +0900 pbuilder (0.158) unstable; urgency=low [Junichi Uekawa] * Bug fix: "pbuilder: SELinux support, first step: mount /selinux", thanks to Erich Schubert (Closes: #384389). -- Junichi Uekawa Wed, 30 Aug 2006 08:07:18 +0900 pbuilder (0.157) unstable; urgency=low [Junichi Uekawa] * Bug fix: "pbuilder: need a way to make --pkgname-logfile the default", thanks to Yann Dirson (Closes: #382885). * Standards-version: 3.7.2 * add cowdancer to recommends. * Bug fix: "bind-mount/umount ordering fix", thanks to martin f krafft (Closes: #382977). -- Junichi Uekawa Sun, 20 Aug 2006 09:36:34 +0900 pbuilder (0.156) unstable; urgency=low [Junichi Uekawa] * export DEBBUILDOPTS, follow-up to 366327 * Bug fix: "pbuilder-doc.html refers to non-existing /usr/share/doc/fakechroot/README.Debian", thanks to Timo Juhani Lindfors (Closes: #379235). -- Junichi Uekawa Wed, 26 Jul 2006 08:38:56 +0900 pbuilder (0.155) unstable; urgency=low [Junichi Uekawa] * silence /etc/mtab symlink warning (Closes: #367135). * document tmpfs support for pbuilder buildplace. * Bug fix: "pbuilder: pdebuild-internal doesn't honor dpkg-buildpackage options", thanks to William Steve Applegate (Closes: #366327). call su with '-p' * Bug fix: "pbuilder: should create BUILDRESULT if not existent", thanks to Daniel Leidert (Closes: #335523), there was a wrong conditional check, and that's fixed. -- Junichi Uekawa Thu, 15 Jun 2006 08:39:28 +0900 pbuilder (0.154) unstable; urgency=low [Junichi Uekawa] * Document cowdancer and pdebuild. * pbuilder.8, pdebuild.1: document that default build result directory is /var/cache/pbuilder/result, instead of expecting users to read somewhere else. * update copyright information. [Matt Kraai] * Fix a misspelling of pdebuild (closes: #369446) -- Junichi Uekawa Wed, 31 May 2006 08:35:56 +0900 pbuilder (0.153) unstable; urgency=low [Junichi Uekawa] * fix pdebuild --help output (closes: #367133) * Support for new style architecture specifications (closes: #363193) Thanks to Peter Eisentraut for patch. The support is currently disabled, until dpkg maintainers clarify the situation. * pbuilder-doc.xml: update documentation to add an example snippet for using locally built packages from pbuilder. And other minor updates, including spellchecking. * manpages: spellcheck. * cowdancer support, pbuilder support cowbuilder. * quiet down cowprotect message. -- Junichi Uekawa Fri, 26 May 2006 06:30:13 +0900 pbuilder (0.152) unstable; urgency=low * fix pdebuild-internal, pass --uid/--gid options. partially address some of #361362 * documentation update -- Junichi Uekawa Wed, 26 Apr 2006 09:33:36 +0900 pbuilder (0.151) unstable; urgency=low [Junichi Uekawa] * minor spelling fixes. * Bug fix: "pdebuild --help does not work on a place that doesn't have debian/ dir", thanks to Nelson A. de Oliveira (Closes: #359347). -- Junichi Uekawa Sun, 2 Apr 2006 14:01:14 +0900 pbuilder (0.150) unstable; urgency=low * chown logfiles so that logfiles are not owned by root all the time (Closes: #341553). * Bug fix: "[changes default behavior] Fix logfile name to have .log appended if using --pkg-logfile", thanks to Christian Hammers (Closes: #287477). Note that the default is changed to '_{ARCH}.build' to match debuild. -- Junichi Uekawa Mon, 20 Mar 2006 23:31:26 +0900 pbuilder (0.149) unstable; urgency=low * Remove references to non-US, since it's empty in sarge. (Closes: #330108). -- Junichi Uekawa Tue, 28 Feb 2006 08:44:42 +0900 pbuilder (0.148) unstable; urgency=low * Bug fix: "[Feature request] support bind-mounted apt package cache", thanks to Michel Daenzer (Closes: #236304). -- Junichi Uekawa Sat, 18 Feb 2006 13:31:42 +0900 pbuilder (0.147) unstable; urgency=low * Update pbuilderrc man page to specify EXTRAPACKAGES is space-delimited (Closes: #352224). * Bug fix: "sudo pbuilder login --save-after-login includes the apt cache in the base.tgz", thanks to Andreas Beckmann (Closes: #351526). * Bug fix: "pbuilder: Arch-specific build-deps printed weird", thanks to Daniel Schepler (Closes: #184149). -- Junichi Uekawa Sat, 11 Feb 2006 23:45:17 +0900 pbuilder (0.146) unstable; urgency=low * improve B92test-pkg: cd to package build directory before invoking test scripts. * work around 350262, bug in initscripts and cdebootstrap interaction. Use --hookdir=/usr/share/doc/pbuilder/examples/ -- Junichi Uekawa Mon, 30 Jan 2006 23:09:41 +0900 pbuilder (0.145) unstable; urgency=low [Junichi Uekawa] * Bug fix: "pbuilder: url to debian experimental's apt archive seems to have changed recently", thanks to Johan Boule (Closes: #347296). * debian/TODO, Documentation/pbuilder-doc.xml: update -- Junichi Uekawa Fri, 13 Jan 2006 20:54:46 +0900 pbuilder (0.144) unstable; urgency=low * Bug fix: "pbuilder --help shows incorrect syntax for debootstrap option", thanks to Bryan Donlan (Closes: #345870). * Bug fix: "pbuilder: creates files with weird owner/group", thanks to Lars Wirzenius (Closes: #344958). -- Junichi Uekawa Sat, 7 Jan 2006 14:08:55 +0900 pbuilder (0.143) unstable; urgency=low [Junichi Uekawa] * remove libc6 workaround from examples directory, since the problem is already fixed, and install workaround for initscripts 2.86.ds1-7. Also add a workaround for a running inetd after upgrade. Use --hookdir /usr/share/doc/pbuilder/examples/344089 for the time being. * use readlink -f instead of readlink -e, since readlink -e is not supported on Debian 3.1 coreutils. thanks to Adrian 'Dagurashibanipal' von Bidder (Closes: #344119). * Add scripts contributed from q-funk. (Closes: #343894). -- Junichi Uekawa Wed, 21 Dec 2005 22:50:00 +0900 pbuilder (0.142) unstable; urgency=low [Junichi Uekawa] * Bug fix: "readlink -f/-e", thanks to Brian Nelson (Closes: #342117). Use readlink -e instead of readlink -f, readlink -f does not fail if the file symlink points to does not exist. * Document that ccache setting requires target directory to be writable by user within chroot. (Closes: #342665). * Document HOME=/tmp/buildd inside chroot. * set HOME=$(pwd)/../ in pdebuild-internal to match pdebuild. -- Junichi Uekawa Mon, 19 Dec 2005 23:35:08 +0900 pbuilder (0.141) unstable; urgency=low * pbuilder now uses fakeroot for 'pbuilder build' per default (Closes: #337582). - fix EXTRAPACKAGES handling in pbuilder-buildpackage-funcs for installing fakeroot. -- Junichi Uekawa Mon, 5 Dec 2005 21:22:59 +0900 pbuilder (0.140) unstable; urgency=low [Junichi Uekawa] * Bug fix: "pbuilder: PATH not preserved when either BUILDUSERID or BUILDUSERNAME isn't set", thanks to Mike Hommey (Closes: #341453). * pbuilder-doc.xml: Document ccache support in FAQ (Closes: #178350). * Bug fix: "/usr/share/doc/pbuilder/examples/B90linda missing --force-yes option", thanks to qfunk (Closes: #340715). Note: --allow-unauthenticated is probably a better option here, but apt-get in sarge does not support it, we will revisit it after etch. * debconf compatibility level 4 * Bug fix: "pbuilder-buildpackage-funcs check for createbuilduser for SUTOUSER is bogus", thanks to Brian Nelson (Closes: #338976). * Bug fix: "--no-targz option creates tarball in pbuilder create", thanks to Junichi Uekawa (Closes: #341916). -- Junichi Uekawa Sun, 4 Dec 2005 15:21:06 +0900 pbuilder (0.139) unstable; urgency=low [Junichi Uekawa] * Bug fix: "pbuilder: pdebuild dies if /etc/shadow doesn't exist", thanks to Brian Nelson (Closes: #338976). -- Junichi Uekawa Thu, 17 Nov 2005 07:35:42 +0900 pbuilder (0.138) unstable; urgency=low * Bug fix: "pbuilder: please add x11-common to policy-rc.d", thanks to patch from Aurelien Jarno (Closes: #337541). Fixes interaction with xvfb. Please recreate base.tgz for this to take effect. -- Junichi Uekawa Fri, 11 Nov 2005 08:46:38 +0900 pbuilder (0.137) unstable; urgency=low [Junichi Uekawa] * pbuilder-doc.xml - Document amd64-i386 usage in FAQ. (closes: #332737) - typo fix - document /etc/mtab inside chroot is a symbollic link. * update TODO file. * allow debootstrap or cdebootstrap as dependency. - check for debootstrap installation, and output meaningful error. This is a follow-up to (#323843, #324648) rationale: debootstrap has some more features and cdebootstrap, sometimes; and cdebootstrap is not ported to all architectures. [Matt Kraai] * If /proc is mounted, create a symbolic link from /etc/mtab to /proc/mounts. -- Junichi Uekawa Thu, 3 Nov 2005 10:06:58 +0900 pbuilder (0.136) unstable; urgency=low [Junichi Uekawa] * pbuilder-doc.xml: Update documentation on development policy * Bug fix: "pdebuild: remove -B from DEBBUILDOPTS when building the source package", thanks to Jonas Smedegaard (Closes: #312121). -- Junichi Uekawa Thu, 20 Oct 2005 23:12:20 +0900 pbuilder (0.135) unstable; urgency=low [Matt Kraai] * Don't add redundant group, passwd, and shadow entries for the build user. [Junichi Uekawa] * Document that --debug option preserves build place. If the following fails, the build directory will remain intact: pbuilder create --distribution etch --basetgz a.tgz --debug (closes: #331635) * README.Debian, pbuilder-doc.xml: updated. -- Junichi Uekawa Sat, 8 Oct 2005 17:23:32 +0900 pbuilder (0.134) unstable; urgency=low [Junichi Uekawa] * I made a mistake in maintainer field mail address, fix it. -- Junichi Uekawa Sat, 1 Oct 2005 13:33:57 +0900 pbuilder (0.133) unstable; urgency=low [Matt Kraai] * Change "exec" to "execute" in the description of the --save-after-exec option. [Junichi Uekawa] * Change maintainers field to point to pbuilder-maint mailing list, and switch to using uploaders field. -- Junichi Uekawa Sat, 1 Oct 2005 13:27:44 +0900 pbuilder (0.132) unstable; urgency=low * suppress warnings from find; it wants -maxdepth before any other argument. (closes: #330848) * Documentation update patch from Osamu Aoki to clarify about configuration file priorities and issues associated with it. (closes: #325318) -- Junichi Uekawa Fri, 30 Sep 2005 23:07:31 +0900 pbuilder (0.131) unstable; urgency=low * Document that pbuilder applies options from left-to-right. (closes: #324620) * Document updates on pbuilder move to alioth; it's now available in http://pbuilder.alioth.debian.org/ http://alioth.debian.org/projects/pbuilder -- Junichi Uekawa Wed, 14 Sep 2005 09:06:45 +0900 pbuilder (0.130) unstable; urgency=low * depend on cdebootstrap, and suggest debootstrap. You may alternatively use debootstrap, but the default is cdebootstrap. (closes: #323843, #324648) * cowdancer support improvement -- now passes testsuite. * Standards-version: 3.6.2 * SHELL=/bin/bash is now exported in default configuration; since setting that to 'zsh' and others will not always work inside the chroot (closes: #325184) -- Junichi Uekawa Sun, 28 Aug 2005 13:00:38 +0900 pbuilder (0.129) unstable; urgency=low * TODO items updated * updated testsuite to test sid/sarge/etch and upgrades. * changed manpages to use \- instead of - for dash. * work around su change in Debian. c.f. login:317264 (closes: #317361) * Support preliminary support for cdebootstrap. - --debootstrap option for selecting cdebootstrap - default pbuilderrc uses cdebootstrap - testsuite now tests both cdebootstrap and debootstrap - Depends on debootstrap or cdebootstrap. * Initial support for --internal-chrootexec: It is now possible to specify for example '--internal-chrootexec "chroot $BUILDPLACE cow-shell "'. -- Junichi Uekawa Wed, 17 Aug 2005 09:40:27 +0900 pbuilder (0.128) unstable; urgency=low * Add example framework to test package inside chroot - B92test-pkg - add debian/pbuilder-test/ directory to test pbuilder itself. * Documentation/pbuilder-doc.xml: - add reference on directory structure on pbuilder. - Add note on pbuilder-test * Support '--distribution experimental'. "pbuilder: Please add support for experimental", thanks to Emanuele Rocca (Closes: #308813). and also support working with new apt-get by using --force-yes. (closes: 316281). * Feature enhancement: "pbuilder: Clean apt cache ", thanks to Daniel Schepler implement --autocleanaptcache option. (Closes: #185227). * pdebuild now checks for unsupported command-line options. Bug fix: "pbuilder: pdebuild does not warn about --basetgz or --distribution", thanks to Matt Kraai (Closes: #305944). * man pages fixup: add \% for non-hyphenation (closes: #310656) * Fix find options -xdev location. (closes: #312913) * Bug fix: "pbuilder: Please document proper format of OTHERMIRROR", thanks to Roberto C. Sanchez (Closes: #312153). * Bug fix: "pbuilder: Support for preserving environment PATH", thanks to Brian Nelson (Closes: #306448). * work around debootstrap 3.0.0 bug which fails to build sid chroot with --variant=buildd, by not passing --variant=buildd, see 314858 -- Junichi Uekawa Sat, 2 Jul 2005 13:20:23 +0900 pbuilder (0.127) unstable; urgency=low * pdebuild.1, pdebuild-user-mode-linux.1: --debsign-k requires key-id. * save apt cache after running B hook in build target; so that we don't keep redownloading lintian/linda . (closes: #296999) -- Junichi Uekawa Fri, 22 Apr 2005 07:38:16 +0900 pbuilder (0.126) unstable; urgency=low * Documentation/pbuilder-doc.xml: Add documentation on why source.changes file is generated. Add documentation on what options are available for sponsoring. * Add --debsign-k option to pdebuild to allow specifying the keyid for signing the package; for sponsoring. (closes: #304849) -- Junichi Uekawa Sat, 16 Apr 2005 13:39:04 +0900 pbuilder (0.125) unstable; urgency=low * Bug fix: "pbuilder: example/B91dpkg-i calls dpkg --purge with pathnames in front of package names", thanks to Maurizio Lemmo (Tannoiser) (Closes: #304009). -- Junichi Uekawa Mon, 11 Apr 2005 15:16:27 +0900 pbuilder (0.124) unstable; urgency=low * Update confusing documentation on --debemail option. (closes: #302855) -- Junichi Uekawa Wed, 6 Apr 2005 08:09:25 +0900 pbuilder (0.123) unstable; urgency=low * save aptcache on pbuilder login/exec. (closes: #271600) * support --aptcache option. (closes: #295766) * clean build directory for pbuilder-uml. (closes: #297100) * document save-after-login/exec flags in pbuilder --help output. (closes: #296672) -- Junichi Uekawa Fri, 4 Mar 2005 13:34:51 +0900 pbuilder (0.122) unstable; urgency=low * set umask 0022 (closes: #276589) * pdebuild will create resulting files as user, not as root (closes: #286397) * emphasise in manpage that --debbuildopts -B is not recommended, and use --binary-arch (closes: #286602) * Documentation typo update (closes: #293882) * Minor changes in default config file: - mention sarge rather than woody (closes: #289170) - Change default mirror from www.jp.debian.org to ftp.jp.debian.org(closes: #295032) -- Junichi Uekawa Sun, 13 Feb 2005 16:13:25 +0900 pbuilder (0.121) unstable; urgency=low * Modify documentation to work with the new LDP stylesheet 0.0.20040321-0.1. -- Junichi Uekawa Tue, 4 Jan 2005 12:36:25 +0900 pbuilder (0.120) unstable; urgency=low * pdebuild/pdebuild-user-mode-linux typo fix in dpkg-checkbuilddeps. (closes: #287041) -- Junichi Uekawa Wed, 29 Dec 2004 20:13:30 +0900 pbuilder (0.119) unstable; urgency=low * pbuilderrc.5:Fix manual page formatting (closes: #279700) * Add example script from Jamin W Collins for short-cut way of specifying distribution. (closes: #255165) * Warn if build-depends is not satisfied when invoking dpkg-buildpackage -S (closes: #266349) * Potential pdebuild debbuildopts fix (closes: #281085) pdebuild --debug --debbuildopts '"-i\+\+pristine-trees|,,*|\{arch\}|\.arch-ids"' seems to work now. * "Documentation updates & fixes", thanks to era eriksson (Closes: #283135). * default distribution in pbuilder create is now 'sid', not 'woody'. -- Junichi Uekawa Sat, 11 Dec 2004 10:12:27 +0900 pbuilder (0.118) unstable; urgency=low * --debbuildopts behavior change for pdebuild: It is now: pdebuild --debbuildopts "xxx" It was: pdebuild --debbuildopts "xxx" -- --debbuildopts "xxx" (for internal pdebuild mode) pdebuild --debbuildopts "xxx" (for non-internal pdebuild mode) (closes: #278999) * pbuilder: --save-after-login, --save-after-exec options added. NOTE: pbuilder-UML already has --uml-login-nocow option, which is equivalent to this new feature. (closes: #275970, #275016) * buildresult dir creation is done after pkgname-logfile creation. Thanks: Mike Hommey (closes: #273882) * add notes on sudo and BUILDRESULTDUID on the manual (closes: #271211) -- Junichi Uekawa Sun, 31 Oct 2004 20:01:58 +0900 pbuilder (0.117) unstable; urgency=HIGH * Remove pbuilder-user-mode-linux package for the time being, until such time that user-mode-linux package is properly restored into Debian. (closes: #276992) - this is a task specially done for sarge release; to create a package which does create pbuilder-uml, copy the files and rebuild: debian/rules-uml -> debian/rules debian/control-uml -> debian/control -- Junichi Uekawa Wed, 20 Oct 2004 08:15:40 +0900 pbuilder (0.116) unstable; urgency=low * Maintenance update on pbuilder * Fix bugs reported by madduck * UML: versioned depends on user-mode-linux is removed, now depends on user-mode-linux so that packages with 'Provides:' can be used (closes: #275544) * 'pbuilder debuild' is implemented (closes: #275110) * update docs on PS1 and 'debian_chroot' environmental variable introduced in newer bash package (closes: #275466) * Add notes on what cannot be bind-mounted (closes: #275113) * hook to pbuilder update (closes: #275016, #272353) -- Junichi Uekawa Sat, 9 Oct 2004 09:22:30 +0900 pbuilder (0.115) unstable; urgency=low * remove non-free and non-us from contrib. (closes: #271329) -- Junichi Uekawa Mon, 13 Sep 2004 07:41:30 +0900 pbuilder (0.114) unstable; urgency=low * pbuildd.sh: Apply patches from Roland Stigge (closes: #263987, #264182, #264182) -- Junichi Uekawa Sun, 8 Aug 2004 08:36:57 +0900 pbuilder (0.113) unstable; urgency=low * pdebuild UML variable handling fix; should treat more variables more properly. May need more fixes later. (closes: #250526) -- Junichi Uekawa Fri, 30 Jul 2004 08:11:44 +0900 pbuilder (0.112) unstable; urgency=low * Added dumpconfig command-line operation for debugging. It will dump what pbuilder has picked up from the configuration. It is now possible to do: pbuilder-user-mode-linux dumpconfig --uml-debugmode -- Junichi Uekawa Sat, 24 Jul 2004 09:37:12 +0900 pbuilder (0.111) unstable; urgency=low * Fix pbuilder-uml default behavior to not to have cross-device link warnings set system default to 'APTCACHEHARDLINK=no' (closes: #259291) -- Junichi Uekawa Wed, 21 Jul 2004 01:04:03 +0900 pbuilder (0.110) unstable; urgency=low * shutdown UML cleanly on exit, thanks go to Joey Hess for noticing this (closes: #259325) -- Junichi Uekawa Fri, 16 Jul 2004 07:02:07 +0900 pbuilder (0.109) unstable; urgency=low * Improve D10tmp example script so that it uses mkdir -p instead of mkdir. * Update SGML document to show where that script exists. -- Junichi Uekawa Wed, 14 Jul 2004 06:31:02 +0900 pbuilder (0.108) unstable; urgency=low * move SUTOUSER outside of /bin/bash invocation. Should help quoting of DEBEMAIL. (Closes: #258219). -- Junichi Uekawa Fri, 9 Jul 2004 09:00:25 +0900 pbuilder (0.107) unstable; urgency=low * Document that pdebuild accepts pbuilder options as pdebuild options but ignores them, in the manual page. (Closes: #255005). * Feature request, '--uml-login-nocow' : "pbuilder-uml: How about a "muckwith" option, login without cowdevice", from Paul Hampson (Closes: #251482). * Feature: Do not hardcodes rootstrap image size argument", thanks to Mike Markley (Closes: #252800). * UML: Fix error message when --buildresult specified wrong directory -- Junichi Uekawa Sat, 19 Jun 2004 11:27:10 +0900 pbuilder (0.106) unstable; urgency=low * Patch from Matt Kraai to allow apt cache to be saved even when pbuilder update fails. (closes: #252777, #252793) -- Junichi Uekawa Thu, 17 Jun 2004 09:22:12 +0900 pbuilder (0.105) unstable; urgency=low * add readlink dependency; coreutils now has it, not debianutils (closes: #250160) -- Junichi Uekawa Sun, 6 Jun 2004 22:23:39 +0900 pbuilder (0.104) unstable; urgency=low * Gah, re-upload. Broken upload. -- Junichi Uekawa Tue, 20 Apr 2004 08:35:13 +0900 pbuilder (0.103) unstable; urgency=low * Bug fix: "binfmt-support prevents unmounting of /proc", thanks to Michel Daenzer (Closes: #244698). -- Junichi Uekawa Tue, 20 Apr 2004 08:05:23 +0900 pbuilder (0.102) unstable; urgency=low * Implement --variant=buildd support, thanks for Daniel Schepler for the work on debootstrap side. Note that this change does not affect user-mode-linux, since user-mode-linux version uses rootstrap (closes: #154528) - require debootstrap version 0.2.29 or later current unstable/sarge doesn't install, see #244227 for a debootstrap workaround. * remove references to non-free and contrib from default apt.conf entry. If anyone has problems with this set-up, shout. But it's already configurable. (Closes: #242754). -- Junichi Uekawa Sun, 18 Apr 2004 06:49:42 +0900 pbuilder (0.101) unstable; urgency=low * Update documentation, minor fix in documentation. * Add libc6 upgrade workaround script. add "--hookdir /usr/share/doc/pbuilder/examples/libc6workaround" for update command-line, until libc6 bug230008 is fixed. -- Junichi Uekawa Sat, 13 Mar 2004 12:00:59 +0900 pbuilder (0.100) unstable; urgency=low * Bug fix: "manual page typos", thanks to Matt Kraai (Closes: #233179). * Bug fix: "Need to distinguish the chroot", thanks to Turbo Fredriksson added an example hook script to implement that. (Closes: #234862). -- Junichi Uekawa Sat, 28 Feb 2004 09:36:58 +0900 pbuilder (0.99) unstable; urgency=low * Documentation update: - note apt-proxy is useful for caching the apt archives. - pbuilder create failure due to debootstrap needs to be fixed in debootstrap script side. * Fix B91dpkg-i to fix typo in script to get names of packages properly. * Change HTML CSS * debian/copyright: fix to get full copyright notice. * Add support for DEBBUILDOPTS for pdebuild, per request from Jamie Wilkinson (Closes: #228317). -- Junichi Uekawa Mon, 19 Jan 2004 21:15:16 +0900 pbuilder (0.98) unstable; urgency=low * use dpkg-buildpackage in pdebuild-internal rather than debuild, and do not try to gpg-sign inside the chroot, which will always fail. * Document --use-pdebuild-internal in the documentation. -- Junichi Uekawa Mon, 29 Dec 2003 08:48:49 +0900 pbuilder (0.97) unstable; urgency=low * update installtest script * allow multiple --bindmounts option to be specified for multiple bind-mount operation. * Support pdebuild which does not run debian/rules clean outside of chroot. Set 'USE_PDEBUILD_INTERNAL=yes' to use it, or --use-pdebuild-internal. It will not be the default yet, because it changes the manner of operation drastically. - "pdebuild builds source package outside chroot" by Matt Kraai (Closes: #211230). - "pbuilder: don't run debian/rules clean outside chroot" by thanks to Brian May (Closes: #215192). -- Junichi Uekawa Tue, 23 Dec 2003 22:57:47 +0900 pbuilder (0.96) unstable; urgency=low * Update documentation - Using debconf inside pbuilder. - Note in FAQ that /dev/null error comes from 'nodev' mount option. (closes: #223868) - Note that execute_installtest.sh can be used for light-weight mass-install testing. * pbuilder execute: now passes on command-line arguments to the script. * pbuilder-user-mode-linux execute: ditto. * examples/execute_installtest.sh: Tries to 'apt-get install' a package and sees if it does install. * examples/execute_paramtest.sh: Just dumps the parameter. * pbuilder --debug option added, to do some kind of debugging when update and create. (closes: #224039) * Do not conflict with older version of bash, and try to work with it. -- Junichi Uekawa Thu, 18 Dec 2003 08:16:09 +0900 pbuilder (0.95) unstable; urgency=low * Document fakechroot use * Conflict with old bash that fails on unset. (closes: #221805) * Fixed typo in debuild-pbuilder.1 leading to man warning, thanks to Roland Stigge (Closes: #223004). -- Junichi Uekawa Thu, 11 Dec 2003 23:24:58 +0900 pbuilder (0.94) unstable; urgency=low * pdebuild-user-mode-linux: support --configfile as pdebuild does. * Bug fix: "pbuilder: Trying to unmount dev/pts when not mounted", thanks to Chris Halls (Closes: #219941). Reordered mount order so that /dev/pts and /dev mounts can be specified at the same time. It might not be the real problem, but this seems like one big problem, at least. * Bug fix: "pbuilder: Error message: W: execute priv not set on file D[0-9][0-9]*, not executing.", thanks to Daniel Martin (Closes: #220979). -- Junichi Uekawa Sun, 16 Nov 2003 23:28:25 +0900 pbuilder (0.93) unstable; urgency=low * Change pdebuild behavior: pass on --configfile option from pdebuild to pbuilder. This is in response to: "pbuilder: BUILDRESULT doesn't work in --configfile file", thanks to Brian May (Closes: #217748). -- Junichi Uekawa Wed, 29 Oct 2003 08:04:03 +0900 pbuilder (0.92) unstable; urgency=low * Document that MIRRORSITE does not get effective unless --override-config is specified in pbuilderrc.5. (Closes: #216975). * patch: "pbuilder-modules writes non-functional policy script", thanks to Clint Adams (Closes: #216993). -- Junichi Uekawa Thu, 23 Oct 2003 23:33:52 +0900 pbuilder (0.91) unstable; urgency=low * Document --bindmounts option better. * add suggestion to bindmounts option in the manual page, where it documented the dangers of bind-mounting. (Closes: #214290). -- Junichi Uekawa Mon, 20 Oct 2003 06:05:38 +0900 pbuilder (0.90) unstable; urgency=low * Sanity check if BUILDPLACE is user-accessible. (Closes: #215452). * Bug fix: "debootstrap: Fails to build under pbuilder", thanks to Daniel Schepler: special-case makedev in policy-rc.d (Closes: #213541). -- Junichi Uekawa Sat, 18 Oct 2003 09:38:04 +0900 pbuilder (0.89) unstable; urgency=low * Document a workaround for sysklogd /proc busy message. -- Junichi Uekawa Fri, 10 Oct 2003 06:46:17 +0900 pbuilder (0.88) unstable; urgency=low * auditing of readlink occurrences * Bug fix: "pbuilder: Please deal with nonexistent --buildplace directory", reported from Artur R. Czechowski (Closes: #213890). -- Junichi Uekawa Sun, 5 Oct 2003 01:55:03 +0900 pbuilder (0.87) unstable; urgency=low * Bug fix: "pdebuild continues after source package fails to build", thanks to Matt Kraai (Closes: #211108). * UML: Add --mirror and --nonusmirror options. * Bug fix: "pbuilder: mishandles multiword DEBEMAIL", thanks to Aaron M. Ucko (Closes: #203584). * create policy-rc.d inside chroot if it does not exist, to fix "start-stop-daemon should not start any daemon inside chroot" (Closes: #165430) * Testsuite is added to the source tree, to get some kind of automatic regression testing. -- Junichi Uekawa Wed, 24 Sep 2003 08:07:34 +0900 pbuilder (0.86) unstable; urgency=low * check if /etc/hosts etc. exist before trying to readlink and cp. * Use force-confnew option of dpkg to make upgrade noninteractive if DEBIAN_FRONTEND=noninteractive. (closes: #208602) -- Junichi Uekawa Thu, 4 Sep 2003 08:07:32 +0900 pbuilder (0.85) unstable; urgency=low * Fix "pbuilder create with basetgz option fails due to new readlink behavior" so that it is possible to pbuilder create with --basetgz option. From: Roland Stigge (closes: #208038) -- Junichi Uekawa Mon, 1 Sep 2003 07:37:41 +0900 pbuilder (0.84) unstable; urgency=low * README.Debian: update very outdated parts. * change use of chown, supply group info when available. Subject: BUILDRESULTUID and BUILDRESULTGID no longer work as numeric values From: Kenneth Pronovici (closes: #207392) * fix manual page slightly. From: Matt Kraai (closes: #207390) * pbuilder-doc.xml: update. * Standards-version: 3.6.1 -- Junichi Uekawa Wed, 27 Aug 2003 05:58:22 +0900 pbuilder (0.83) unstable; urgency=low * user-mode-linux: Check if BUILDPLACE is writable * user-mode-linux: --buildplace options -- Junichi Uekawa Fri, 22 Aug 2003 19:00:22 +0900 pbuilder (0.82) unstable; urgency=low * Change use of chown. * pbuilder-user-mode-linux: Give warning when ran as root. * Give more meaningful message when there is problem accessing the root filesystem from inside user-mode-linux. (closes: #206292) -- Junichi Uekawa Wed, 20 Aug 2003 23:43:06 +0900 pbuilder (0.81) unstable; urgency=low * Note that pbuilder-user-mode-linux should be ran as a normal user. /etc/mtab will be written to, if root runs pbuilder-user-mode-linux. * "pbuilder-user-mode-linux create" will run properly when --distribution is unset. * Update documentation that user-mode-linux requires user to be in uml-net group. -- Junichi Uekawa Fri, 15 Aug 2003 18:50:17 +0900 pbuilder (0.80) unstable; urgency=low * replace rm -rf with clean_subdirectories, which uses find with -xdev. (closes: #204585) -- Junichi Uekawa Sat, 9 Aug 2003 06:40:27 +0900 pbuilder (0.79) unstable; urgency=low * Remove reference to lv from source code, it was only for debugging purposes. (closes: #203732) * Mount / rw for user-mode-linux. From: Daniel Schepler (closes: #203730): pbuilder-uml: apt cache is read-only -- Junichi Uekawa Tue, 5 Aug 2003 06:26:31 +0900 pbuilder (0.78) unstable; urgency=low * Support --distribution flag for user-mode-linux, a long-standing missing feature. (closes: #176095) -- Junichi Uekawa Sun, 27 Jul 2003 07:34:13 +0900 pbuilder (0.77) unstable; urgency=low * Improve documentation on hooks slightly, and mention lintian. (closes: #202318) * Symbollic link to /etc/pbuilderrc is placed in /etc/pbuilder/pbuilderrc so that all config files can be found under /etc/pbuilder/ (closes: #174155) * Standards-version 3.6.0 -- Junichi Uekawa Sat, 26 Jul 2003 12:30:05 +0900 pbuilder (0.76) unstable; urgency=low * Read config file in pbuilder-user-mode-linux specified by --configfile. Should indirectly address bugs on parameter parsing and config files (closes: #188273) * Update documentation FAQ section. - note that the warning message about LOGNAME being unset is currently safe. (closes: #187924) - Document that it is not a good idea to conflict against an essential package and pbuilder doesn't particularly support it. (closes: #169223) - Document "Invalid cross-device link" and how to fix it (closes: #200103) * Update some manual pages to reflect the changes. -- Junichi Uekawa Tue, 8 Jul 2003 22:02:39 +0900 pbuilder (0.75) unstable; urgency=low * Update documentation to note that --configfile is useful for specifying distribution. * Update manual page to make it clear that --othermirror etc options are only really useful for pbuilder update and create. * Document pbuilder backport location. -- Junichi Uekawa Sun, 8 Jun 2003 11:44:17 +0900 pbuilder (0.74) unstable; urgency=low * Support very old .dsc files which do not have Format: lines (closes: #189691) thanks Daniel Schepler -- Junichi Uekawa Sun, 20 Apr 2003 22:05:00 +0900 pbuilder (0.73) unstable; urgency=low * versioned dependency on rootstrap 0.3.9-1 which handles newer user-mode-linux. * Fix ordering of running D hooks; D hooks should be ran before checking build-dependency. Apparently broken since 0.67 -- Junichi Uekawa Sun, 20 Apr 2003 01:56:17 +0900 pbuilder (0.72) unstable; urgency=low * UML: support new format for root hostfs for 2.4.20-3um-1 - bump dependency for user-mode-linux version. -- Junichi Uekawa Wed, 9 Apr 2003 00:04:20 +0900 pbuilder (0.71) unstable; urgency=low * UML: Do not try to umount, it's going to kernel-panic anyway. - this fixes the problem of 'cannot umount because daemons are using /proc' -- Junichi Uekawa Tue, 8 Apr 2003 22:50:43 +0900 pbuilder (0.70) unstable; urgency=low * Support bind-mount, patch from Sam Hartman, thanks. To allow file:/// apt lines, and other things. (closes: #178589, 131210, 178408) -- Junichi Uekawa Sun, 6 Apr 2003 19:11:29 +0900 pbuilder (0.69) unstable; urgency=low * fix hand-applying mistakes in --preserve-buildplace patch (closes: #184418) * fix thinko in --buildresult fix. (closes: #184420,184422) -- Junichi Uekawa Wed, 12 Mar 2003 21:38:26 +0900 pbuilder (0.68) unstable; urgency=low * fix --buildresult behavior * fix checkbuilddeps brokenness. (closes: #184296) * really apply --preserve-buildplace patch so that package does compile -- Junichi Uekawa Wed, 12 Mar 2003 01:30:42 +0900 pbuilder (0.67) unstable; urgency=low * Documentation updates, note setting PS1 in pbuilderrc (closes: #183861) from suggestion of Barak Pearlmutter * fix typo in pbuilder.8 manual page (closes: #184049) from Tommaso Moroni * make the code work with GNU readlink, which errors out when "readlink -f " is called with non-existing filename. (closes: #183492, #184116) * Fix X hooks and rename them to E, and document them. They are ran after update/create. * unset LOGNAME for root-build cases, it was only fixed on fakeroot builds. thanks Barak Pearlmutter (closes: #183862) * Apply patch from Daniel Schepler , to support --preserve-buildplace (closes: #183605) -- Junichi Uekawa Mon, 10 Mar 2003 23:03:58 +0900 pbuilder (0.66) unstable; urgency=low * add execute option to pbuilder * finer grained message for UML mode login. * pbuilder-satisfydepends: give apt error messages, and fix some parts. thanks Daniel Schepler (closes: #182836) -- Junichi Uekawa Sat, 1 Mar 2003 15:54:07 +0900 pbuilder (0.65) unstable; urgency=low * pdebuild-user-mode-linux script. * fix pbuilder-user-mode-linux manual page slightly. -- Junichi Uekawa Wed, 12 Feb 2003 10:23:52 +0900 pbuilder (0.64) unstable; urgency=low * Apply patch from Daniel Schepler , to improve speed of build-dep satisfying routine. (closes: #178552) * UML: match hostname of UML to the host hostname, so that "hostname -f " will reliably work. * use cp -p in copydsc (closes: #177839) -- Junichi Uekawa Fri, 7 Feb 2003 11:41:49 +0900 pbuilder (0.63) unstable; urgency=low * pbuilder-modules; doit=cp, instead of doit=ln -s. Thanks to eichin@metacarta.com (Mark Eichin) (closes: #177173) -- Junichi Uekawa Mon, 20 Jan 2003 11:55:40 +0900 pbuilder (0.62) unstable; urgency=low * Do not rely on shell globbing for apt archive cache. (closes: #176872), reported by "Michel Dänzer" . -- Junichi Uekawa Thu, 16 Jan 2003 16:14:31 +0900 pbuilder (0.61) unstable; urgency=low * UML: set hostname inside UML. * UML: Add (almost) enough features to pbuilder-user-mode-linux so that it can be ran from within pbuildd, and can be used as an alternative to pbuilder - set exitcode according to pbuilder exit code. thanks to mdz for his hint. (closes: #175983) - implement --buildresult with hostfs mounting. -- Junichi Uekawa Fri, 10 Jan 2003 16:42:53 +0900 pbuilder (0.60) unstable; urgency=low * customized documentation stylesheets to look like other netfort pages * Changing the timing LOGNAME is set inside UML. * UML: umount the device after running pbuilder. * UML: set $HOME inside (closes: #175785) thanks to Matt Zimmerman for noticing the problem. * UML: manual page pbuilder-uml.conf.5 added. * UML: --uml-mem option for specifying amount of memory. implement --override-config. * UML: --logfile option implemented. -- Junichi Uekawa Wed, 8 Jan 2003 20:17:03 +0900 pbuilder (0.59) unstable; urgency=low * Load config for pbuilder in pbuilder-uml, so that BUILDPLACE is defined. buildpackage didn't work otherwise. * Fixed pbuilder-uml so that it actually works. * Document how to add extra apt sources in the documentation FAQ section. * pbuilder-uml now works, and document how to set it up in the documentation (closes: #175583) -- Junichi Uekawa Tue, 7 Jan 2003 17:34:33 +0900 pbuilder (0.58) unstable; urgency=low * Fix Suggests to pbuilder-uml. (closes: #175158) * Sign changes file instead of dsc file in pdebuild (closes: #175432) thanks to Andrew Lau for reporting. * Documentation updates, document some features possibly useful for dchroot. * add --no-targz option. -- Junichi Uekawa Mon, 6 Jan 2003 16:34:17 +0900 pbuilder (0.57) unstable; urgency=low * A new year release. * Add an example pbuildd script for people who want to waste their CPU cycles. * README.Debian: document pbuilder-doc.html. * pbuilder-doc.xml: New documentation in DocBook format. * Build-Depends-Indep on documentation. -- Junichi Uekawa Thu, 2 Jan 2003 14:51:19 +0900 pbuilder (0.56) unstable; urgency=low * Try using copy-on-write image in pbuilder-user-mode-linux. * Add verbose output for compare-versions portions to make it explicit that what version does not satisfy what version, so that it is more obvious. -- Junichi Uekawa Mon, 23 Dec 2002 22:11:01 +0900 pbuilder (0.55) unstable; urgency=low * Update documentation on pdebuild to make it clear that pdebuild option behavior changed since 0.52. --buildplace option now needs to be specified before "--" (closes: #173150) thanks to Jose Carlos Garcia Sogo for butting me. -- Junichi Uekawa Mon, 16 Dec 2002 11:51:52 +0900 pbuilder (0.54) unstable; urgency=low * Fixed ordering of messages so that concurrent-building experience is better. * Do not lock while extracting, it is not needed. (closes: #173038) -- Junichi Uekawa Sun, 15 Dec 2002 13:05:05 +0900 pbuilder (0.53) unstable; urgency=low * update README, to fix mistakes in text. (closes: #172905) * Standards-version: 3.5.8. * add an example of running dpkg -i after successful build, and running bash when unsuccessful. * fix D10tmp script. -- Junichi Uekawa Fri, 13 Dec 2002 21:53:14 +0900 pbuilder (0.52) unstable; urgency=low * Clarify pbuilder.8 documentation on the timing of hook "A". * --auto-debsign option, to debsign the resulting package. (closes: #165511), requested from Andrew Lau * --pkgname-logfile option, to allow creation of log files based on package name and version. (closes: #157791), requested from Michael Banck * debian/control: add devscripts to recommends, because this package uses devscripts features quite a lot in pdebuild etc. -- Junichi Uekawa Thu, 12 Dec 2002 18:28:48 +0900 pbuilder (0.51) unstable; urgency=low * Fix build-dependency satisfying for binary-arch target. (closes: #172033) thanks: Daniel Schepler -- Junichi Uekawa Sat, 7 Dec 2002 16:47:14 +0900 pbuilder (0.50) unstable; urgency=low * set HOME to /tmp/buildd (closes: #170762) thanks: Clint Adams * add --binary-arch option. (closes: #168149) thanks: Daniel Schepler -- Junichi Uekawa Wed, 27 Nov 2002 11:43:21 +0900 pbuilder (0.49) unstable; urgency=low * Fix -uml handling config files (closes: #167808) thanks: Peter Hawkins * use actual name of basetgz in '-> extracting base.tgz' message (closes: #167813) thanks: Michael Banck -- Junichi Uekawa Mon, 25 Nov 2002 13:21:42 +0900 pbuilder (0.48) unstable; urgency=low * improved handling of directory in debuild-pbuilder. * Version-deps parser changed slightly. * unset LOGNAME. * Fix problems with DEBEMAIL and other things, that was discussed on -devel. People are starting to upload packages using pbuilder, without testing. I don't like that trend very much, but I really cannot stop them. -- Junichi Uekawa Wed, 30 Oct 2002 21:04:28 +0900 pbuilder (0.47) unstable; urgency=low * use "trap" for trapping error in pbuilder-buildpackage routine. It might break some error conditions. * LOGNAME=BUILDUSERNAME. (closes: #166682) thanks: robbe@orcus.priv.at * create shadow entry for user inside chroot (closes: #166683) thanks: robbe@orcus.priv.at * I've updated documentation to hopefully clarify the situation, if you have better text for the documentation, shout! (closes: #165438) thanks: Steve M. Robbins. -- Junichi Uekawa Tue, 29 Oct 2002 15:18:38 +0900 pbuilder (0.46) unstable; urgency=low * Fix wrong BASEBUILDPLACE in uml-mode. (closes: #166194) thanks: ranty@debian.org -- Junichi Uekawa Sun, 27 Oct 2002 19:17:32 +0900 pbuilder (0.45) unstable; urgency=low * hack HOME to the fakerooted user when fakerooting, to hopefully fool GNUStep builds, etc. * Standards-Version: 3.5.7. * Build-dep on debhelper 4.1.0 or greater, which removed usr/doc symlink. * fix failure cases when initial *dsc file is invalid. * change pbuilder-uml to be i386 only. * build-depends-indep -> build-depends. * Fix build rules to have both binary-arch and binary-indep rules. -- Junichi Uekawa Thu, 24 Oct 2002 19:41:50 +0900 pbuilder (0.44) unstable; urgency=low * pbuilder-satisfydepends: now searches for a version that matches, instead of sorting. (closes: #164919) thanks: Henrique de Moraes Holschuh * pbuilder update updates the apt-lines when --override-config is specified. (closes: #164473) thanks: David Schmitt -- Junichi Uekawa Wed, 16 Oct 2002 20:55:37 +0900 pbuilder (0.43) unstable; urgency=low * Add locking capabilities in base.tgz handling. -- Junichi Uekawa Fri, 11 Oct 2002 17:14:09 +0900 pbuilder (0.42) unstable; urgency=low * fix quoting problem in KILL_WAIT_PID -- Junichi Uekawa Sun, 6 Oct 2002 17:37:43 +0900 pbuilder (0.41) unstable; urgency=low * Prevent kill from going wild :P (closes: #163358) Thanks for Daniel Kobras for noticing shell quoting problem * Update AUTHORS, and THANKS, and TODO files. -- Junichi Uekawa Sat, 5 Oct 2002 13:41:40 +0900 pbuilder (0.40) unstable; urgency=low * Add support for BUILDRESULTUID and BUILDRESULTGID so that UID and GID for build results can be specified. * Fix minor glitch with copying /etc files into the chroot which was caused with debootstrap quirks and pbuilder quirk. thanks: Eric Van Buggenhaut * update manual pages and fix minor typo. * Do not fail even if no plugin is available in the plugin dir. -- Junichi Uekawa Sun, 29 Sep 2002 18:20:30 +0900 pbuilder (0.39) unstable; urgency=low * Fix dereferencing of symlink code in pbuilder create thanks: Eric Van Buggenhaut * Fix handling of --configfile option, so that they are handled similar to command-line options and other config files. thanks: David Schleef (closes: #161856) -- Junichi Uekawa Sun, 22 Sep 2002 19:44:36 +0900 pbuilder (0.38) unstable; urgency=low * user-mode-linux support. (closes: #116117) This is not yet a completely working solution, rather experimental in nature. The interface to configure this package may change very easily. Beware. * create pbuilder-uml package. -- Junichi Uekawa Thu, 19 Sep 2002 19:13:35 +0900 pbuilder (0.37) unstable; urgency=low * Document how to not be noninteractive. (closes: #155655) * Add support for devfs (closes: #157074) -- Junichi Uekawa Mon, 9 Sep 2002 14:16:22 +0900 pbuilder (0.36) unstable; urgency=low * add option to --timeout. * debuild wrapper script is added, which satisfies build-dependencies before calling debuild. -- Junichi Uekawa Tue, 20 Aug 2002 17:00:47 +0900 pbuilder (0.35) unstable; urgency=low * update documentation for pbuilderrc.5 * Stricter dependency on debootstrap, because older debootstrap no longer bootstraps sid system (closes: #155619) -- Junichi Uekawa Wed, 7 Aug 2002 18:05:21 +0900 pbuilder (0.34) unstable; urgency=low * examples weren't installed. Thanks for noting that, Chris Halls. (closes: #153868) -- Junichi Uekawa Tue, 23 Jul 2002 21:40:20 +0900 pbuilder (0.33) unstable; urgency=low * Update documentation for pbuilder.8, and pbuilderrc.5 * Remove spurious message pointed out by Jochen Voss. (closes: #152175) -- Junichi Uekawa Wed, 17 Jul 2002 15:45:50 +0900 pbuilder (0.32) unstable; urgency=low * Documenting usage of TMPDIR in README.Debian. (closes: #149633) -- Junichi Uekawa Thu, 20 Jun 2002 13:51:17 +0900 pbuilder (0.31) unstable; urgency=low * Use readlink -f to work with symlinks also. Thanks to Erich Schubert for noticing the problem (closes: #142987) * pbuilder-modules: add suggestion from david@josefine.at, to give out telling error message when aborting. (closes: #148013) -- Junichi Uekawa Thu, 30 May 2002 19:49:56 +0900 pbuilder (0.30) unstable; urgency=low * Check the .dsc parsing routine, which seems to get broken by some packages which contain the url: field. -- Junichi Uekawa Tue, 14 May 2002 12:18:31 +0900 pbuilder (0.29) unstable; urgency=low * Fix typo in clean target, to use the config files properly. thanks to Steve M. Robbins for a patch. -- Junichi Uekawa Mon, 13 May 2002 20:02:37 +0900 pbuilder (0.28) unstable; urgency=low * mount/umount /dev/pts along with /proc (closes: #146100) -- Junichi Uekawa Tue, 7 May 2002 19:00:20 +0900 pbuilder (0.27) unstable; urgency=low * fix messages in pbuilder-satisfydepends to make it more parsable. * TODO: updated * pbuilderrc.5: updated documentation by comment from Steven M Robbins. Many thanks. (closes: #144919) * pbuilder.1: renamed to pbuilder.8. Thanks go to Mikael Hedin for noticing this (closes: #143288) -- Junichi Uekawa Wed, 1 May 2002 18:09:19 +0900 pbuilder (0.26) unstable; urgency=low * fix regexp for building smurf. -- Junichi Uekawa Fri, 29 Mar 2002 18:02:30 +0900 pbuilder (0.25) unstable; urgency=low * "Fixing the personal side of the pbuilder", release * Build-Dependency version checking improved, should work slightly better when multiple versions are available (reported by jbouse@debian.org) * logic-error on DEBEMAIL handling fixed. When it was blank, it was set to "nobody@nowhere", but that shouldn't be necessary. (closes: #136628, #137411) * pbuilderrc: change the default config so that binary and source is built * ignore build-depends in package lines and only use those found in the source lines. * debian/TODO: updated. * pbuilder-satisfydepends: split out the dependency satisfaction code, so that it can be used genericly. Or replaced with other programs, such as sbuild. However, sbuild reads .dsc files, while pbuilder parses debian/control. * fixed regexp for multi-line build-*: field processing. * Add "D" scripts, for after chroot setup, and before extracting source packages inside the chroot, on build target. (closes: #136536) -- Junichi Uekawa Thu, 14 Mar 2002 20:49:02 +0900 pbuilder (0.24) unstable; urgency=low * hooks support is in place for build target now. Read pbuilder.1 for details. Adding C00bash, which contains a line calling #!/bin/bash bash < /dev/tty will allow running bash inside the chroot. (closes: #134757) -- Junichi Uekawa Sun, 24 Feb 2002 20:37:35 +0900 pbuilder (0.23) unstable; urgency=low * Cache is updated even when Build-Dep processing routine fails. reported by Mark Brown (closes: #129053) * Fix update target to remove packages specified in REMOVEPACKAGES. * Support building as non-root user, and using fakeroot inside the chroot. * EXTRAPACKAGES takes effect within the build target. * handle ( < Wed, 20 Feb 2002 04:26:21 +0900 pbuilder (0.22) unstable; urgency=low * "The version that seems to be able to successfully build most of Debian archive" * pbuilder-buildpackage accepts case insensitive field name for "Build-depends" to cope with some packages like bzip2. (closes: #133054) * pbuilder create/update will use cached packages in addition to "build". However, the packages fed to debootstrap are not cached. * Supports Build-Depends without spaces like freefem (closes: #133162) * Version requirement on debootstrap bumped up to the fixed version, 0.1.16.2. That package is installed at last. * Documentation updates * Messages improvement, for automatic operation * Adding check for empty-cache state. -- Junichi Uekawa Tue, 12 Feb 2002 01:03:53 +0900 pbuilder (0.21) unstable; urgency=low * Accept "Noninteractive" like "noninteractive" as value of DEBIAN_FRONTEND, for compatibility with other (broken?) software. * Changed the dpkg-buildpackage -S invocation inside pdebuild. It should be more friendly for dpkg-buildpackage and its intentions, and mostly backward compatible behavior. * added build-time logging data to pbuilder-buildpackage. -- Junichi Uekawa Fri, 8 Feb 2002 19:17:51 +0900 pbuilder (0.20) unstable; urgency=low * "Really addressing some bugs" * --othermirror option fixed. Thanks go to kov@debian.org for pointing that out (closes: #131726). * --aptconfdir option. It is now possible to specify --aptconfdir /etc/apt to use the system configs. (closes: #116115) * some minor fixes. * banner for version info is given in build target. -- Junichi Uekawa Wed, 6 Feb 2002 01:12:41 +0900 pbuilder (0.19) unstable; urgency=low * "I know that the debootstrap version in sid doesn't work. You need to fix the mistakes in debootstrap." release * Improved "pbuilder update/create/build" temp file cleaning process, so that in most cases it will be cleaned. In some conditions, temp file will still remain, but really, there is not much atomicity in shell? * pbuilder.1 typo fixed. * --logfile option now seems to function properly, as expected. * ~/.pbuilderrc is checked for user configs. (closes: #131181) * more documentation, noting about dangers of mount --bind. -- Junichi Uekawa Thu, 31 Jan 2002 19:09:11 +0900 pbuilder (0.18) unstable; urgency=low * New version, "Trying to address some wishlists" * Added usr/share/pbuilder/pbuilderrc for default configuration. * Apply $@ -> "$@" fix from Daniel Kobras. * Apply the patch from Daniel Kobras for specifying options to dpkg-buildpacakge invocation in pbuilder-buildpacakge. It should be possible to build binary-only uploads etc. (closes: #129221) -- Junichi Uekawa Fri, 18 Jan 2002 12:58:15 +0900 pbuilder (0.17) unstable; urgency=low * new version, "Documentation updates and cosmetic fixes". * pbuilder.1, pbuilderrc.5: update to document problem with file:/ URLs if specified as mirrorsite (pbuilder is about chroots) * debian/TODO: updated - notes on apt-move archives, and other things. * debian/control: updated the dependency requirement of debootstrap (>= 0.1.15.5) see bug #126458 for a consequence. * debian/README.Debian: updated the testsuite info, and some descriptions are rewritten. * README: updated. * pbuilder-modules: no longer includes "deb-src" lines in the apt config. Source is not required at all by pbuilder. Some message cleanup. -- Junichi Uekawa Mon, 7 Jan 2002 09:29:42 +0900 pbuilder (0.16) unstable; urgency=low * pbuilder-modules: Fixed a typo, which made it to create a broken sources.list if MIRRORSITE was not specified. * pbuilder-modules: Shuffled the orderings so that OTHERMIRROR takes the priority. -- Junichi Uekawa Wed, 26 Dec 2001 00:12:25 +0900 pbuilder (0.15) unstable; urgency=low * Added a little more heuristics to pdebuild, so that it is nicer to use... It will search for ../debian directory, in addition to ./debian, and also to recurse upwards. * updated manpage for pdebuild.1 -- Junichi Uekawa Thu, 20 Dec 2001 15:28:44 +0900 pbuilder (0.14) unstable; urgency=low * Removed the test build-depends etc. from the debian/control. (closes: #124192), it really should not be there. The original debian/control is left as debian/control.test, so that testing can be done easily, by cp debian/control{.test,} -- Junichi Uekawa Sun, 16 Dec 2001 23:35:50 +0900 pbuilder (0.13) unstable; urgency=low * pdebuild could not handle packages with an epoch. Fixed. -- Junichi Uekawa Wed, 12 Dec 2001 18:17:55 +0900 pbuilder (0.12) unstable; urgency=low * The last version had a typo... bug 120057 was the one to close, not 12057 :P * A hook to check the current command-line operation, and not to do the "exec < /dev/null" when it is trying to do "login" is implemented, so that it is actually possible to log in with noninteractive mode enabled. At the request of steven.robbins@videotron.ca (closes: #120064) * Check for failures in umounting proc, and retry with a little wait to see if something happens. Will start up a command-line if something fails, and ask for some remedy. * It will now parse debian/control file with multi-line Build-Depends line or Build-Conflicts line (closes: #120718) However, I don't think the policy really permits this very clearly. There are packages which exist doing this, and other tools do support this. * --logfile option added. Log file can now be specified. * fixed pbuilder.1, and pbuilderrc.5 so that it can be processed correctly by WoMan. (removed some .PP) and fixed some awkwardness in text. * Added some error checking to pbuilder-buildpackage to give more information when base.tgz has not been created (yet). * updating TODO file -- Junichi Uekawa Fri, 30 Nov 2001 00:05:37 +0900 pbuilder (0.11) unstable; urgency=low * Fixing some minor glitch. pdebuild should be calling dpkg-buildpackage with -us -uc. * changed pdebuild logic in obtaining version number, from using grep/cut to sed. * fixed build-conflicts logic. It failed when build-conflicted target did not already exist inside chroot. * README.Debian is updated. * Added a nonexistent package to Build-Conflicts of debian/control, so that it will be possible to catch such possible error. * patch from fbiere@abacom.com, fixes build-dependency with OR conditions. It used to try out all. (closes: #119541) * Redundant "case" removed from pbuilder-createbasetgz. (it was introduced in 0.10). Thanks go to Steve for pointing this out. (closes: #12057) * Fixed the reverse-logic for the "distribution is not specified" line in pbuilder-modules. Thanks for steven.robbins@videotron.ca (again) for pointing this out. (closes: #120063) -- Junichi Uekawa Sun, 18 Nov 2001 17:56:06 +0900 pbuilder (0.10) unstable; urgency=low * Patch for full non-interactive compilation by Daniel Kobras (kobras@debian.org) applied. (closes: #116891) However, note that doing this will result in "pbuilder login" being very uninteresting. * Depends on gcc, because debootstrap does not seem to function well without gcc. Actually, dpkg does not work without gcc, when it is asked questions about the "architecture." * Now dpkg-buildpackage is invoked with DEBEMAIL as maintainer. It can be overridden with command line option. To build it like : dpkg-buildpackage -mdancer@debian.org" the command-line would be like: pbuiler build --debemail dancer@debian.org package.dsc * dpkg-buildpackage is being called with -us -uc * site local /etc/passwd is no longer copied to inside chroot. Copying of that file was never really required, as it seems. * use "set -e" at the beginning of shell scripts. It should work fine. * "cleaning the build env" message is prepended with -> * error state for cp for finished work in pbuilder-buildpackage is now ignored. (to work with set -e) * full non-interactive compilation patch, moved over to pbuilder-modules, so that build/update/create all benefit from this. * cleans build place on debootstrap failure. * A new command "pdebuild" is introduced. It can be invoked from a Debian source tree, and builds the package within a chroot after gaining root privilages appropriately. * added recommends: for fakeroot and sudo, since pdebuild requires them. -- Junichi Uekawa Sat, 3 Nov 2001 23:56:12 +0900 pbuilder (0.9) unstable; urgency=low * allow use of hardlinks in apt cache handling, with new option APTCACHEHARDLINK. This cannot be enabled if pbuilder files are distributed among filesystems. It should speed up processing. * Depends on wget, since debootstrap only recommends, and I think this program is not quite functional as it is without wget * fix runhook breakage introduced by my hacking around with quotes. * Make runhook work as advertized in pbuilder.1 manpage. (closes: #116416) * added DEBIAN_FRONTEND=noninteractive to the config file. This suppresses debconf questions. -- Junichi Uekawa Mon, 22 Oct 2001 23:38:22 +0900 pbuilder (0.8) unstable; urgency=low * support custom debootstrap scripts, requested by amon@vnl.com (closes: #114691) * changed hook handler. hopefully it should work if the directory is not called a hookdir ... * changed "hooks" variable in pbuilder-runhooks, to not to have a starting "/". It should be unnecessary * E: messages in pbuilder-runhooks are now "W:" messages, because even when those errors are detected, they should not really stop the execution of pbuilder halfway. -- Junichi Uekawa Sat, 13 Oct 2001 01:58:34 +0900 pbuilder (0.7) unstable; urgency=low * fixing manpage section * Adding --configfile option, to load random config file. * Adding --extrapackages option, to load random additional * Merging some patches from Dale, with some modifications to fit my taste. his changelog was : o Wrote pbuilder-runhooks and integrated it into the create and update scripts. o Added HOOKDIR to configuration options o Added --hookdir to command line options Updated man pages for pbuilder and pbuilderrc o Added defaulting/error checks of a couple key variables in pbuilder-checkparams. o Added /usr/lib/pbuilder/hooks default hook directory to debian/dirs oo Dale Amon Wed, 26 Sep 2001 23:49:00 +0001 * when HOOKDIR is not set, scripts won't be ran. It is a security risk to be able to run any random script as root, so be aware of this when setting "HOOKDIR". * debian/control: removed ${shlibs:Depends}, because there is none. * fixing logic error in updatebuildenv. * removed pushd and popd from runhooks, just because I don't think it looks cute. * updated README file, to have some contents * Added displaying what's copied in build target, parsing of .dsc. and changed pbuilder-buildpackage .dsc parser. It used to catch a bogus entry, something like "./", which is now fixed. -- Junichi Uekawa Mon, 1 Oct 2001 00:08:31 +0900 pbuilder (0.6) unstable; urgency=low * Added a man page for /etc/pbuilderrc configuration file. Should help people understand what is going on... * Added a feature of caching the contents of /var/cache/apt/archives inside the chroot. It's not quite apt-move, but this should do the trick ? * pbuilder clean will clean the apt cache. * REMOVEPACKAGES is a configurable option now. Please be warned, if you are upgrading, that "lilo" might be left on your chroot, which could potentially cause nasty damage. * added /var/cache/pbuilder/aptcache directory * A bug with .dsc file parser which caused some annoying error messages has been fixed. -- Junichi Uekawa Mon, 24 Sep 2001 00:12:47 +0900 pbuilder (0.5) unstable; urgency=low * fixed logic error in invocation to apt-cache. * Parsing of .dsc file is implemented, hoping not to have broken anything. -- Junichi Uekawa Thu, 20 Sep 2001 06:37:08 +0900 pbuilder (0.4) unstable; urgency=low * Updating notes on upstream page * moving routines around in arch-dep checker... hoping not to have broken anything. * Handles provides: in build dependency, parsing apt-cache showpkg output for reverse-dependency, and randomly installing one of the available packages. * Now it seems to be able to build (or satisfy the build dependency of) glibc, gcc-2.95 et al. * Handles versioned deps and conflicts. -- Junichi Uekawa Tue, 18 Sep 2001 18:56:14 +0900 pbuilder (0.3) unstable; urgency=low * note that --mirror only affects when --distribution is there. * fixed a typo in regexp. Could not handle NMU packages, for builder. It did not accept a "period" in the debian version number. strange. * depend on debootstrap 0.1.15 or greater. Because it has been tested on 0.1.15 * includes an internal checkbuilddep to support potato. Internal build-dependency checker is used instead of dpkg-checkbuilddeps. * does no longer copy the /etc/apt directory into the chroot. It should be non-necessary. * added a clean target to pbuilder program to clean up cruft. * removed the debian-changelog-mode thing at the bottom of the changelog. * added login target to pbuilder, to allow for easy debugging. * fixed typo in apt-line generation * added an or-sign for build-dependency internal checker, and moving over fully to the internal checker. Build dep checker does not support a Build depends with an or sign and a machine specification. Also it ignores the version preference. * change priority to extra, because it depends on an extra package. thanks to mechanix. * added non-us mirror and other mirror options -- Junichi Uekawa Fri, 7 Sep 2001 15:27:28 +0900 pbuilder (0.2) unstable; urgency=low * Initial upload to Debian archive. (closes: #110388) * Add a versioned depends on debootstrap, because that version is the only version I tested on ... 0.1.15.2 * --mirror option is fixed. it works now. * proc is not mounted when debootstrap is running in create, should fix problems. -- Junichi Uekawa Tue, 28 Aug 2001 19:44:34 +0900 pbuilder (0.1) unstable; urgency=low * Initial Release. -- Junichi Uekawa Mon, 27 Aug 2001 18:50:06 +0900 pbuilder-0.215ubuntu7/debian/README.Debian0000664000000000000000000000274512312041170015033 0ustar pbuilder for Debian ------------------- This is a personal builder. Try: pbuilder create --distribution woody to create the initial chroot build environment. pbuilder update would update the tarball. pbuilder build some-random-.dsc would build the file specified by the .dsc file in the chroot. If you were a Debian Developer doing some development of Debian packages, you may try invoking pdebuild from the Debian source directory, to save you from much typing. edit /etc/pbuilderrc if the default doesn't work, especially proxy. Editing the mirror location is also recommended, although the default should work fine. Please report to the Debian Bug Tracking System against pbuilder if a package does not build, and it seems like a genuine bug of pbuilder (i.e. you cannot work around the build failure in any way). Also, if something is missing and necessary on some arches, please file a bug to "build-essential" for packages. Testsuite: Regression test is done in testsuite/ directory of the pbuilder source package. Most of the Debian archive seems to build with pbuilder; keep up the good work. Further reading =============== This documentation is very terse. I recommend reading pbuilder.8 and pbuilderrc.5 manual pages. There is also a HTML manual now, pbuilder-doc.html, which contains the FAQ and other entries. When they are incorrect or misleading, please send bugreports to the Debian BTS. -- Junichi Uekawa , Mon, 2 Nov 2009 00:02:09 +0900 pbuilder-0.215ubuntu7/debian/tests/0000775000000000000000000000000012312041256014131 5ustar pbuilder-0.215ubuntu7/debian/tests/build_procenv0000664000000000000000000000762612312041170016715 0ustar #!/bin/sh set -e #--------------------------------------------------------------------- # DEP-8 test for sbuild. # # Creates a sbuild chroot, builds a package, installs the resulting # .deb, then runs the command provided by the .deb. #--------------------------------------------------------------------- die() { msg="$*" echo "ERROR: $msg" >&2 exit 1 } # The package we'll ask sbuild to build (we know its buildable since # it's already in the archive :-) # # The advantage of choosing this particular package being that it runs # *itself* at the end of its build, which has the nice side-effect of # exposing the full sbuild environment to those perusing the autopkgtest # logs. pkg=procenv components="" dir=/var/cache/pbuilder/result # Avoid conflict with ADT unset TMPDIR distro=$(lsb_release --id --short|tr '[A-Z]' '[a-z]' || :) [ -z "$distro" ] && die "cannot establish distribution" host_release=$(lsb_release --codename --short || :) [ -z "$host_release" ] && die "cannot establish release running on host" if [ "$distro" = ubuntu ] then # Build chroot for latest release. release=$(distro-info --devel) components="main universe" elif [ "$distro" = debian ] then # Build chroot for latest stable release since # sid may not be buildable on a particular day. release=$(distro-info --stable) components="main" else die "need to know where archive is for distro '$distro'" fi # XXX: try to establish the correct archive to use. We used to hard-code # the main debian+ubuntu archive urls. But that strategy is not reliable for # Ubuntu atleast where some architectures are only available on # http://ports.ubuntu.com/. However, we wish to avoid having to maintain # a list of architectures for ports.ubuntu.com, hence this simple # strategy - use the first remote entry in sources.list url=$(grep -v "[ ]*#" /etc/apt/sources.list|grep http|head -1|awk '{print $2}') [ -z "$url" ] && die "cannot establish archive to use" # Have to redirect stderr to avoid ADT thinking the test has failed # (the return code is still being checked, so this seems reasonable). echo "INFO: Creating pbuilder buildd chroot for release '$release' from url '$url'" pbuilder --create --debug \ --distribution "$release" \ --components "$components" \ --mirror "$url" \ --debootstrapopts --variant=buildd 2>&1 if [ ! -d "$dir" ] then echo "ERROR: cannot find directory $dir" >&2 exit 1 fi # Use '--download-only' to avoid unpack which generates a # signature warning to stderr, causing this test to fail. # Take care to download the package version for the release we will # create the chroot for. echo "INFO: Downloading source for package '$pkg' release '$release'" apt-get source --download-only "$pkg/$release" dsc=$(ls ${pkg}*.dsc) echo "INFO: Building package '$pkg' for release '$release' from '$dsc'" pbuilder --build --debug "$dsc" 2>&1 arch=$(dpkg --print-architecture 2>/dev/null) [ -z "$arch" ] && die "cannot establish architecture" pkg_and_version=$(echo "$dsc"|sed 's/\.dsc$//g') deb=${dir}/${pkg_and_version}_${arch}.deb # Do what we can to check if the .deb looks usable (since we may not # be able to install it to test it properly) echo "INFO: Listing information on '$deb'" dpkg --info "$deb" echo "INFO: Listing contents of '$deb'" dpkg --contents "$deb" extract="$ADTTMP/extract" echo "INFO: Extracting '$deb' to '$extract'" dpkg --extract "$deb" "$extract" if [ "$release" = "$host_release" ] then echo "INFO: Installing package '$pkg' from '$deb'" dpkg -i "$deb" # run the command to prove the build worked but also to expose the # auto-package-test environment used for this test. cmd=$pkg echo "INFO: Showing AutoPkgTest environment by running '$cmd' from package '$pkg'" "$cmd" else echo "INFO: Not installing package '$pkg' as host release ('$host_release')" echo "INFO: differs to release package is built for ('$release')" fi echo "INFO: SUCCESS" pbuilder-0.215ubuntu7/debian/tests/control0000664000000000000000000000037412312041170015533 0ustar Tests: build_procenv Depends: @, debian-keyring, distro-info, lsb-release, haveged, libnuma1 [linux-i386 linux-amd64 linux-ia64 linux-mips linux-mipsel linux-powerpc linux-ppc64 linux-ppc64el linux-x32], libcap-dev [linux-any] Restrictions: needs-root pbuilder-0.215ubuntu7/debian/pbuilder.templates0000664000000000000000000000152412312041170016512 0ustar Template: pbuilder/mirrorsite Type: string _Description: Default mirror site: Please enter the default mirror you want to be used by pbuilder. . If you leave this field blank, there will be one attempt to autodetect this information. If this attempt fails, you will be prompted again to insert some valid mirror information. . Here is a valid mirror example: http://archive.ubuntu.com/ubuntu Template: pbuilder/nomirror Type: error _Description: Default mirror not found Mirror information detection failed and the user provided no mirror information. . Please enter valid mirror information. Template: pbuilder/rewrite Type: boolean Default: false _Description: Overwrite current configuration? Your system seems to have already pbuilder configuration. Proceeding might discard or overwrite part or the entire pbuilder's configuration. pbuilder-0.215ubuntu7/debian/pbuilder-test/0000775000000000000000000000000012312041256015552 5ustar pbuilder-0.215ubuntu7/debian/pbuilder-test/00_prepinstall0000775000000000000000000000012712312041170020327 0ustar #!/bin/bash # Prepare and install packages used in the tests. apt-get install -y sudo pbuilder-0.215ubuntu7/debian/pbuilder-test/01_pbuilder_create0000775000000000000000000000021312312041170021120 0ustar #!/bin/bash env -u COWDANCER_REUSE -u COWDANCER_ILISTFILE -u LD_PRELOAD \ pbuilder create --distribution sid --debootstrap debootstrap pbuilder-0.215ubuntu7/debian/pbuilder-test/03_pbuilder_build0000775000000000000000000000044512312041170020765 0ustar #!/bin/bash mkdir /tmp/test-work cd /tmp/test-work cp /etc/apt/sources.list{,-} sed 's/#deb-src/deb-src/' < /etc/apt/sources.list- > /etc/apt/sources.list apt-get update apt-get source dsh env -u COWDANCER_REUSE -u COWDANCER_ILISTFILE -u LD_PRELOAD \ pbuilder build dsh*dsc cd dsh*/ pdebuild pbuilder-0.215ubuntu7/debian/pbuilder-test/02_pbuilder_update0000775000000000000000000000013312312041170021141 0ustar #!/bin/bash env -u COWDANCER_REUSE -u COWDANCER_ILISTFILE -u LD_PRELOAD \ pbuilder update pbuilder-0.215ubuntu7/debian/po/0000775000000000000000000000000012312041256013405 5ustar pbuilder-0.215ubuntu7/debian/po/gl.po0000664000000000000000000000525012312041170014344 0ustar # Galician translation of pbuilder's debconf templates # This file is distributed under the same license as the pbuilder package. # Jacobo Tarrio , 2008. # msgid "" msgstr "" "Project-Id-Version: pbuilder\n" "Report-Msgid-Bugs-To: pbuilder@packages.debian.org\n" "POT-Creation-Date: 2008-03-07 00:09+0900\n" "PO-Revision-Date: 2008-05-13 20:51+0100\n" "Last-Translator: Jacobo Tarrio \n" "Language-Team: Galician \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "Default mirror site:" msgstr "Réplica por defecto:" #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "Please enter the default mirror you want to be used by pbuilder." msgstr "Introduza a réplica que pbuilder debe empregar por defecto." #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "" "If you leave this field blank, there will be one attempt to autodetect this " "information. If this attempt fails, you will be prompted again to insert " "some valid mirror information." msgstr "" "Se deixa este campo baleiro hase facer unha tentativa de autodetectar esta " "información. Se esta tentativa falla, háselle pedir outra vez que introduza " "información válida sobre as réplicas." #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "Here is a valid mirror example: http://cdn.debian.net/debian" msgstr "Velaquí un exemplo dunha réplica válida: http://cdn.debian.net/debian" #. Type: error #. Description #: ../pbuilder.templates:2001 msgid "Default mirror not found" msgstr "Non se atopou a réplica por defecto" #. Type: error #. Description #: ../pbuilder.templates:2001 msgid "" "Mirror information detection failed and the user provided no mirror " "information." msgstr "" "A detección da información das réplicas fallou, e o usuario non forneceu " "información sobre as réplicas." #. Type: error #. Description #: ../pbuilder.templates:2001 msgid "Please enter valid mirror information." msgstr "Introduza información válida sobre as réplicas." #. Type: boolean #. Description #: ../pbuilder.templates:3001 msgid "Overwrite current configuration?" msgstr "¿Sobrescribir a configuración actual?" #. Type: boolean #. Description #: ../pbuilder.templates:3001 msgid "" "Your system seems to have already pbuilder configuration. Proceeding might " "discard or overwrite part or the entire pbuilder's configuration." msgstr "" "Semella que o sistema xa ten unha configuración de pbuilder. Se continúa " "pódese sobrescribir ou eliminar parcial ou totalmente a configuración de " "pbuilder." pbuilder-0.215ubuntu7/debian/po/es.po0000664000000000000000000000676712312041170014367 0ustar # pbuilder translation to spanish # Copyright (C) 2008 Software in the Public Interest # This file is distributed under the same license as the pbuilder package. # Changes: # - Initial translation # Ignacio Mondino , 2008 # Traductor, si no conoce el formato PO, merece la pena leer la # documentación de gettext, especialmente las secciones dedicadas a este # formato, por ejemplo ejecutando: # info -n '(gettext)PO Files' # info -n '(gettext)Header Entry' # Equipo de traducción al español, por favor lean antes de traducir # los siguientes documentos: # - El proyecto de traducción de Debian al español # http://www.debian.org/intl/spanish # especialmente las notas de traducción en # http://www.debian.org/intl/spanish/notas # - La guía de traducción de po's de debconf: # /usr/share/doc/po-debconf/README-trans # o http://www.debian.org/intl/l10n/po-debconf/README-trans # # msgid "" msgstr "" "Project-Id-Version: pbuilder_0.181\n" "Report-Msgid-Bugs-To: pbuilder@packages.debian.org\n" "POT-Creation-Date: 2008-03-07 00:09+0900\n" "PO-Revision-Date: 2012-08-31 22:35-0700\n" "Last-Translator: David Martínez Moreno \n" "Language-Team: Debian Spanish team \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "Default mirror site:" msgstr "Réplica por omisión:" #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "Please enter the default mirror you want to be used by pbuilder." msgstr "" "Por favor, introduzca la réplica que desea utilizar por omisión en pbuilder." #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "" "If you leave this field blank, there will be one attempt to autodetect this " "information. If this attempt fails, you will be prompted again to insert " "some valid mirror information." msgstr "" "Si deja este campo en blanco, se intentará autodetectar esta " "información. Si esto falla, se le pedirá nuevamente que introduzca " "información válida sobre una réplica." #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "Here is a valid mirror example: http://cdn.debian.net/debian" msgstr "He aquí un ejemplo de una réplica válida: http://cdn.debian.net/debian" #. Type: error #. Description #: ../pbuilder.templates:2001 msgid "Default mirror not found" msgstr "No se encontró la réplica por omisión" #. Type: error #. Description #: ../pbuilder.templates:2001 msgid "" "Mirror information detection failed and the user provided no mirror " "information." msgstr "" "Ha fallado la autodetección de la información de la réplica y el usuario no " "ha introducido ninguna información sobre la misma." #. Type: error #. Description #: ../pbuilder.templates:2001 msgid "Please enter valid mirror information." msgstr "Por favor, introduzca información válida sobre una réplica." #. Type: boolean #. Description #: ../pbuilder.templates:3001 msgid "Overwrite current configuration?" msgstr "¿Sobreescribir la configuración actual?" #. Type: boolean #. Description #: ../pbuilder.templates:3001 msgid "" "Your system seems to have already pbuilder configuration. Proceeding might " "discard or overwrite part or the entire pbuilder's configuration." msgstr "" "Su sistema parece ya disponer de una configuración de pbuilder. Si prosigue " "puede descartar o sobreescribir parcial o totalmente la configuración existente de " "pbuilder." pbuilder-0.215ubuntu7/debian/po/ja.po0000664000000000000000000000537412312041170014343 0ustar # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: pbuilder\n" "Report-Msgid-Bugs-To: pbuilder@packages.debian.org\n" "POT-Creation-Date: 2008-03-07 00:09+0900\n" "PO-Revision-Date: 2008-03-07 00:13+0900\n" "Last-Translator: Junichi Uekawa \n" "Language-Team: Japanese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "Default mirror site:" msgstr "デフォルトのミラーサイト:" #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "Please enter the default mirror you want to be used by pbuilder." msgstr "pbuilder で利用するデフォルトのミラーを入力してください。" #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "" "If you leave this field blank, there will be one attempt to autodetect this " "information. If this attempt fails, you will be prompted again to insert " "some valid mirror information." msgstr "このフィールドを空白にするとこの情報を自動認識しようとします。もしそれが失敗したら正しいミラーの情報を入力するように求められます。" #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "Here is a valid mirror example: http://cdn.debian.net/debian" msgstr "正しいミラーの例としては: http://cdn.debian.net/debian" #. Type: error #. Description #: ../pbuilder.templates:2001 msgid "Default mirror not found" msgstr "デフォルトミラーが発見できませんでした" #. Type: error #. Description #: ../pbuilder.templates:2001 msgid "" "Mirror information detection failed and the user provided no mirror " "information." msgstr "ミラー情報の検出が失敗し、ユーザがミラー情報を何も提供しませんでした。" #. Type: error #. Description #: ../pbuilder.templates:2001 msgid "Please enter valid mirror information." msgstr "正しいミラー情報を入力してください。" #. Type: boolean #. Description #: ../pbuilder.templates:3001 msgid "Overwrite current configuration?" msgstr "現在の設定を上書きしますか?" #. Type: boolean #. Description #: ../pbuilder.templates:3001 msgid "" "Your system seems to have already pbuilder configuration. Proceeding might " "discard or overwrite part or the entire pbuilder's configuration." msgstr "システムにはpbuilderの設定がすでに存在します。このまま進めると一部か全体の設定を上書きしてしまう可能性があります。" pbuilder-0.215ubuntu7/debian/po/ro.po0000664000000000000000000000627112312041170014366 0ustar # translation of ro.po to Romanian # Romanian translations for pbuilder package # Traducerea în limba română pentru pachetul pbuilder. # Copyright (C) 2007 THE pbuilder'S COPYRIGHT HOLDER # This file is distributed under the same license as the pbuilder package. # # Eddy Petrișor , 2007, 2008. msgid "" msgstr "" "Project-Id-Version: ro\n" "Report-Msgid-Bugs-To: pbuilder@packages.debian.org\n" "POT-Creation-Date: 2008-03-07 00:09+0900\n" "PO-Revision-Date: 2008-03-06 22:19+0200\n" "Last-Translator: Eddy Petrișor \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < 20)) ? 1 : 2;\n" "X-Generator: KBabel 1.11.4\n" #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "Default mirror site:" msgstr "Saitul-oglindă implicit:" #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "Please enter the default mirror you want to be used by pbuilder." msgstr "Introduceți saitul-oglindă implicit pe care doriți să-l folosească pbuilder." #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "" "If you leave this field blank, there will be one attempt to autodetect this " "information. If this attempt fails, you will be prompted again to insert " "some valid mirror information." msgstr "" "Dacă lăsați liber acest câmp, se va încerca o singură dată să se detecteze " "automat această informație. Dacă această încercare eșuează, vi se va cere, " "din nou să introduceți informații valide despre saitul-oglindă." #. Type: string #. Description #: ../pbuilder.templates:1001 #| msgid "Here is a valid mirror example: http://ftp.debian.org/debian" msgid "Here is a valid mirror example: http://cdn.debian.net/debian" msgstr "Iată un exemplu valid de sait-oglindă: http://cdn.debian.net/debian" #. Type: error #. Description #: ../pbuilder.templates:2001 msgid "Default mirror not found" msgstr "Saitul-oglindă implicit nu a fost găsit" #. Type: error #. Description #: ../pbuilder.templates:2001 msgid "" "Mirror information detection failed and the user provided no mirror " "information." msgstr "" "Detectarea informațiilor despre saitul-oglindă a eșuat și utilizatorul nu a " "furnizat nici o informație despre saitul-oglindă." #. Type: error #. Description #: ../pbuilder.templates:2001 msgid "Please enter valid mirror information." msgstr "Introduceți informație validă referitoare la saituri ." #. Type: boolean #. Description #: ../pbuilder.templates:3001 msgid "Overwrite current configuration?" msgstr "Se suprascrie actualul fișier de configurație?" #. Type: boolean #. Description #: ../pbuilder.templates:3001 msgid "" "Your system seems to have already pbuilder configuration. Proceeding might " "discard or overwrite part or the entire pbuilder's configuration." msgstr "" "Sistemul pare să aibă deja o configurație pentru pbuilder. Continuarea cu " "această acțiune ar putea duce la ștergerea sau suprascrierea parțială sau " "totală a fișierului de configurare aparținând lui pbuilder." pbuilder-0.215ubuntu7/debian/po/sr@latin.po0000664000000000000000000000523612312041170015522 0ustar # Copyright (C) 2011 # This file is distributed under the same license as the pbuilder package. # Zlatan Todoric , 2011. # msgid "" msgstr "" "Project-Id-Version: P0.200\n" "Report-Msgid-Bugs-To: pbuilder@packages.debian.org\n" "POT-Creation-Date: 2008-03-07 00:09+0900\n" "PO-Revision-Date: 011-07-24 HO:MI+ZONE\n" "Last-Translator: Zlatan Todoric \n" "Language-Team: Soon to come\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "Default mirror site:" msgstr "Podrazumijevana lokacija:" #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "Please enter the default mirror you want to be used by pbuilder." msgstr "Molivamo vas unesite podrazumijevanu internet lokaciju koju će koristiti pbuilder." #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "" "If you leave this field blank, there will be one attempt to autodetect this " "information. If this attempt fails, you will be prompted again to insert " "some valid mirror information." msgstr "" "Ako ovu opciju ostavite nepopunjenu, biće jedan pokušaj da se automatski otkrije" "ova informacija. Ako ovaj pokušaj ne uspije, bićete ponovo upitani da unesete" "validnu informaciju o internet lokaciji" #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "Here is a valid mirror example: http://cdn.debian.net/debian" msgstr "Ovdje je primjer validne internet lokacije: http://cdn.debian.net/debian" #. Type: error #. Description #: ../pbuilder.templates:2001 msgid "Default mirror not found" msgstr "Podrazumijevana internet lokacija nije pronađena" #. Type: error #. Description #: ../pbuilder.templates:2001 msgid "" "Mirror information detection failed and the user provided no mirror " "information." msgstr "" "Pronalazak informacije o internet lokaciji je bezuspješno i korisnik nije" "unio informaciju o internet lokaciji." #. Type: error #. Description #: ../pbuilder.templates:2001 msgid "Please enter valid mirror information." msgstr "Molimo vas unesite validnu informaciju o internet lokaciji." #. Type: boolean #. Description #: ../pbuilder.templates:3001 msgid "Overwrite current configuration?" msgstr "Zamijeniti trenutna podešavanja?" #. Type: boolean #. Description #: ../pbuilder.templates:3001 msgid "" "Your system seems to have already pbuilder configuration. Proceeding might " "discard or overwrite part or the entire pbuilder's configuration." msgstr "" "Vaš sistem pokazuje da već ima pbuilder podešavanja. Nastavljanjem može odbaciti" "ili zamijeniti dijelove ili čitavo pbuilder podešavanje." pbuilder-0.215ubuntu7/debian/po/da.po0000664000000000000000000000525712312041170014335 0ustar # Danish translation pbuilder. # Copyright (C) 2010 pbuilder & Joe Hansen. # This file is distributed under the same license as the pbuilder package. # Joe Hansen , 2010. # msgid "" msgstr "" "Project-Id-Version: pbuilder\n" "Report-Msgid-Bugs-To: pbuilder@packages.debian.org\n" "POT-Creation-Date: 2008-03-07 00:09+0900\n" "PO-Revision-Date: 2010-05-29 17:30+01:00\n" "Last-Translator: Joe Hansen \n" "Language-Team: Danish \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "Default mirror site:" msgstr "Standardspejlsted:" #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "Please enter the default mirror you want to be used by pbuilder." msgstr "Indtast venligst standardspejlstedet, du ønsker skal bruges af pbuilder." #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "" "If you leave this field blank, there will be one attempt to autodetect this " "information. If this attempt fails, you will be prompted again to insert " "some valid mirror information." msgstr "" "Hvis du efterlader dette felt uudfyldt, vil ét forsøg på automatisk at finde " "denne information udføres. Hvis dette forsøg fejler, vil du blive spurgt igen " "om at indsætte gyldig spejlinformation." #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "Here is a valid mirror example: http://cdn.debian.net/debian" msgstr "Her er et gyldigt spejleksempel: http://cdn.debian.net/debian" #. Type: error #. Description #: ../pbuilder.templates:2001 msgid "Default mirror not found" msgstr "Standardspejl blev ikke fundet" #. Type: error #. Description #: ../pbuilder.templates:2001 msgid "" "Mirror information detection failed and the user provided no mirror " "information." msgstr "" "Kunne ikke finde spejlinformation og brugeren angav ingen spejlinformation." #. Type: error #. Description #: ../pbuilder.templates:2001 msgid "Please enter valid mirror information." msgstr "Indtast venligst gyldig spejlinformation." #. Type: boolean #. Description #: ../pbuilder.templates:3001 msgid "Overwrite current configuration?" msgstr "Overskriv aktuel konfiguration?" #. Type: boolean #. Description #: ../pbuilder.templates:3001 msgid "" "Your system seems to have already pbuilder configuration. Proceeding might " "discard or overwrite part or the entire pbuilder's configuration." msgstr "" "Dit system ser allerede ud til, at have pbuilder-konfiguration. Hvis du " "fortsætter vil dele eller hele din pbuilders konfiguration måske blive " "fjernet eller overskrevet." pbuilder-0.215ubuntu7/debian/po/sr.po0000664000000000000000000000634412312041170014373 0ustar # Copyright (C) 2011 # This file is distributed under the same license as the pbuilder package. # Zlatan Todoric , 2011. # msgid "" msgstr "" "Project-Id-Version: 0.200\n" "Report-Msgid-Bugs-To: pbuilder@packages.debian.org\n" "POT-Creation-Date: 2008-03-07 00:09+0900\n" "PO-Revision-Date: 2011-07-24 00:01+0100\n" "Last-Translator: Zlatan Todoric \n" "Language-Team: Soon to come\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "Default mirror site:" msgstr "Подразумијевана локација:" #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "Please enter the default mirror you want to be used by pbuilder." msgstr "Моливамо вас унесите подразумијевану интернет локацију коју ће користити pbuilder." #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "" "If you leave this field blank, there will be one attempt to autodetect this " "information. If this attempt fails, you will be prompted again to insert " "some valid mirror information." msgstr "" "Ако ову опцију оставите непопуњену, биће један покушај да се аутоматски открије" "ова информација. Ако овај покушај не успије, бићете поново упитани да унесете" "валидну информацију о интернет локацији." #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "Here is a valid mirror example: http://cdn.debian.net/debian" msgstr "Овдје је примјер валидне интернет локације: http://cdn.debian.net/debian" #. Type: error #. Description #: ../pbuilder.templates:2001 msgid "Default mirror not found" msgstr "Подразумијевана интернет локација није пронађена" #. Type: error #. Description #: ../pbuilder.templates:2001 msgid "" "Mirror information detection failed and the user provided no mirror " "information." msgstr "" "Проналазак информације о интернет локацији безуспјешно и корисник није" "унио информацију о интернет локацији." #. Type: error #. Description #: ../pbuilder.templates:2001 msgid "Please enter valid mirror information." msgstr "Молимо вас унесите валидну информацију о интернет локацији" #. Type: boolean #. Description #: ../pbuilder.templates:3001 msgid "Overwrite current configuration?" msgstr "Замијенити тренутна подешавања?" #. Type: boolean #. Description #: ../pbuilder.templates:3001 msgid "" "Your system seems to have already pbuilder configuration. Proceeding might " "discard or overwrite part or the entire pbuilder's configuration." msgstr "" "Ваш систем показује да већ има pbuilder подешавања. Настављањем може одбацити" "или замијенити дијелове или читаво pbuilder подешавање." pbuilder-0.215ubuntu7/debian/po/sk.po0000664000000000000000000000561712312041170014366 0ustar # Slovak translations for pbuilder package # Slovenské preklady pre balík pbuilder. # Copyright (C) 2011 THE pbuilder'S COPYRIGHT HOLDER # This file is distributed under the same license as the pbuilder package. # Automatically generated, 2011. # Slavko , 2011. # msgid "" msgstr "" "Project-Id-Version: pbuilder 0.203\n" "Report-Msgid-Bugs-To: pbuilder@packages.debian.org\n" "POT-Creation-Date: 2008-03-07 00:09+0900\n" "PO-Revision-Date: 2011-10-30 15:27+0100\n" "Last-Translator: Slavko \n" "Language-Team: slovenčina \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: sk\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" "X-POFile-SpellExtra: autotedekciu cdn pbuilder net debian\n" #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "Default mirror site:" msgstr "Stránka predvoleného zrkadla:" #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "Please enter the default mirror you want to be used by pbuilder." msgstr "Prosím, zadajte predvolené zrkadlo, ktoré má pbuilder používať." #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "" "If you leave this field blank, there will be one attempt to autodetect this " "information. If this attempt fails, you will be prompted again to insert " "some valid mirror information." msgstr "" "Ak necháte toto pole prázdne, bude urobený jeden pokus o autotedekciu tejto " "informácie. Ak tento pokus zlyhá, budete znova vyzvaný na zadanie nejakej " "platnej informácie o zrkadle." #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "Here is a valid mirror example: http://cdn.debian.net/debian" msgstr "Tu je príklad platného zrkadla: http://cdn.debian.net/debian" #. Type: error #. Description #: ../pbuilder.templates:2001 msgid "Default mirror not found" msgstr "Predvolené zrkadlo nenájdené" #. Type: error #. Description #: ../pbuilder.templates:2001 msgid "" "Mirror information detection failed and the user provided no mirror " "information." msgstr "" "Detekcie informácií o zrkadle zlyhala a používateľ neposkytol informácie o " "zrkadle." #. Type: error #. Description #: ../pbuilder.templates:2001 msgid "Please enter valid mirror information." msgstr "Prosím, zadajte platné informácie o zrkadle." #. Type: boolean #. Description #: ../pbuilder.templates:3001 msgid "Overwrite current configuration?" msgstr "Nahradiť aktuálne nastavenie?" #. Type: boolean #. Description #: ../pbuilder.templates:3001 msgid "" "Your system seems to have already pbuilder configuration. Proceeding might " "discard or overwrite part or the entire pbuilder's configuration." msgstr "" "Vyzerá to, že váš systém už má nastavenie pbuilder. Pokračovaním môžete " "zahodiť alebo prepísať časť alebo celé nastavenie pbuilder." pbuilder-0.215ubuntu7/debian/po/de.po0000664000000000000000000000544712312041170014342 0ustar # Translation of pbuilder debconf templates to German # Copyright (C) Helge Kreutzmann , 2008. # This file is distributed under the same license as the pbuilder package. # msgid "" msgstr "" "Project-Id-Version: pbuilder 0.179\n" "Report-Msgid-Bugs-To: pbuilder@packages.debian.org\n" "POT-Creation-Date: 2008-03-07 00:09+0900\n" "PO-Revision-Date: 2008-04-03 21:52+0200\n" "Last-Translator: Helge Kreutzmann \n" "Language-Team: de \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-15\n" "Content-Transfer-Encoding: 8bit\n" #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "Default mirror site:" msgstr "Standard-Spiegelsite:" #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "Please enter the default mirror you want to be used by pbuilder." msgstr "" "Bitte geben Sie den Standard-Spiegelserver an, den Pbuilder verwenden soll." #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "" "If you leave this field blank, there will be one attempt to autodetect this " "information. If this attempt fails, you will be prompted again to insert " "some valid mirror information." msgstr "" "Falls Sie dieses Feld leer lassen, wird einmalig versucht, diese Information " "automatisch zu ermitteln. Falls dies fehlschlgt, werden Sie erneut " "aufgefordert, gltige Spiegelserverinformationen einzugeben." #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "Here is a valid mirror example: http://cdn.debian.net/debian" msgstr "" "Ein Beispiel fr einen gltigen Spiegelserver: http://cdn.debian.net/debian" #. Type: error #. Description #: ../pbuilder.templates:2001 msgid "Default mirror not found" msgstr "Standard-Spiegelserver nicht gefunden" #. Type: error #. Description #: ../pbuilder.templates:2001 msgid "" "Mirror information detection failed and the user provided no mirror " "information." msgstr "" "Spiegelserver-Informationserkennung schlug fehl und der Benutzer stellte " "keine Spiegelserver-Informationen bereit." #. Type: error #. Description #: ../pbuilder.templates:2001 msgid "Please enter valid mirror information." msgstr "Bitte geben Sie gltige Spiegelserver-Informationen ein." #. Type: boolean #. Description #: ../pbuilder.templates:3001 msgid "Overwrite current configuration?" msgstr "Aktuelle Konfiguration berschreiben?" #. Type: boolean #. Description #: ../pbuilder.templates:3001 msgid "" "Your system seems to have already pbuilder configuration. Proceeding might " "discard or overwrite part or the entire pbuilder's configuration." msgstr "" "Es scheint, dass Ihr System bereits ber eine Pbuilder-Konfiguration " "verfgt. Falls Sie fortfahren, knnten die gesamte oder Teile der Pbuilder-" "Konfiguration verworfen oder berschrieben werden." pbuilder-0.215ubuntu7/debian/po/pt.po0000664000000000000000000000541612312041170014371 0ustar # translation of pbuilder debconf to Portuguese # Copyright (C) 2008 Américo Monteiro # This file is distributed under the same license as the pbuilder package. # # Américo Monteiro , 2008. msgid "" msgstr "" "Project-Id-Version: pbuilder 0.179\n" "Report-Msgid-Bugs-To: pbuilder@packages.debian.org\n" "POT-Creation-Date: 2008-03-07 00:09+0900\n" "PO-Revision-Date: 2008-03-30 22:28+0100\n" "Last-Translator: Américo Monteiro \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "Default mirror site:" msgstr "Site mirror pré-definido:" #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "Please enter the default mirror you want to be used by pbuilder." msgstr "Por favor indique o mirror pré-definido que deseja que seja usado pelo pbuilder." #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "" "If you leave this field blank, there will be one attempt to autodetect this " "information. If this attempt fails, you will be prompted again to insert " "some valid mirror information." msgstr "" "Se deixar este campo vazio, irá ser feita uma tentativa de autodetectar esta " "informação. Se esta tentativa falhar, você será de novo questionado a indicar " "informação de algum mirror válido." #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "Here is a valid mirror example: http://cdn.debian.net/debian" msgstr "Aqui está um exemplo de mirror válido: http://cdn.debian.net/debian" #. Type: error #. Description #: ../pbuilder.templates:2001 msgid "Default mirror not found" msgstr "Mirror pré-definido não encontrado" #. Type: error #. Description #: ../pbuilder.templates:2001 msgid "" "Mirror information detection failed and the user provided no mirror " "information." msgstr "" "A detecção de informação do mirror falhou e o utilizador não disponibilizou " "informação de nenhum mirror." #. Type: error #. Description #: ../pbuilder.templates:2001 msgid "Please enter valid mirror information." msgstr "Por favor indique informação válida de um mirror." #. Type: boolean #. Description #: ../pbuilder.templates:3001 msgid "Overwrite current configuration?" msgstr "Sobreescrever a configuração actual?" #. Type: boolean #. Description #: ../pbuilder.templates:3001 msgid "" "Your system seems to have already pbuilder configuration. Proceeding might " "discard or overwrite part or the entire pbuilder's configuration." msgstr "" "O seu sistema parece já ter uma configuração de pbuider. Prosseguir poderá " "anular ou sobreescrever partes ou toda a configuração do pbuilder." pbuilder-0.215ubuntu7/debian/po/POTFILES.in0000664000000000000000000000005512312041170015155 0ustar [type: gettext/rfc822deb] pbuilder.templates pbuilder-0.215ubuntu7/debian/po/ru.po0000664000000000000000000000645712312041170014402 0ustar # translation of ru.po to Russian # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Yuri Kozlov , 2008. msgid "" msgstr "" "Project-Id-Version: pbuilder new\n" "Report-Msgid-Bugs-To: pbuilder@packages.debian.org\n" "POT-Creation-Date: 2008-03-07 00:09+0900\n" "PO-Revision-Date: 2008-05-18 09:10+0400\n" "Last-Translator: Yuri Kozlov \n" "Language-Team: Russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "Default mirror site:" msgstr "Сервер-зеркало по умолчанию:" #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "Please enter the default mirror you want to be used by pbuilder." msgstr "Укажите сервер-зеркало, который будет использовать pbuilder по умолчанию." #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "" "If you leave this field blank, there will be one attempt to autodetect this " "information. If this attempt fails, you will be prompted again to insert " "some valid mirror information." msgstr "" "Если оставить поле пустым, то будет сделана попытка определить сервер " "автоматически. Если она окажется неудачной, то вас снова попросят указать " "правильную информацию о сервере-зеркале." #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "Here is a valid mirror example: http://cdn.debian.net/debian" msgstr "Пример задания сервера-зеркала: http://cdn.debian.net/debian" #. Type: error #. Description #: ../pbuilder.templates:2001 msgid "Default mirror not found" msgstr "Сервер-зеркало по умолчанию не найден" #. Type: error #. Description #: ../pbuilder.templates:2001 msgid "" "Mirror information detection failed and the user provided no mirror " "information." msgstr "" "Не удалось определить сервер-зеркало и пользователь также " "не ввёл эту информацию." #. Type: error #. Description #: ../pbuilder.templates:2001 msgid "Please enter valid mirror information." msgstr "Укажите рабочий сервер-зеркало." #. Type: boolean #. Description #: ../pbuilder.templates:3001 msgid "Overwrite current configuration?" msgstr "Изменить имеющуюся настройку?" #. Type: boolean #. Description #: ../pbuilder.templates:3001 msgid "" "Your system seems to have already pbuilder configuration. Proceeding might " "discard or overwrite part or the entire pbuilder's configuration." msgstr "" "Кажется, что в вашей системе уже выполнена настройка pbuilder. " "Продолжение работы может стереть или изменить часть или всю " "настройку pbuilder." pbuilder-0.215ubuntu7/debian/po/sv.po0000664000000000000000000000534512312041170014377 0ustar # translation of pbuilder.po to swedish # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Martin Bagge , 2008. msgid "" msgstr "" "Project-Id-Version: pbuilder\n" "Report-Msgid-Bugs-To: pbuilder@packages.debian.org\n" "POT-Creation-Date: 2008-03-07 00:09+0900\n" "PO-Revision-Date: 2008-11-22 22:25+0100\n" "Last-Translator: Martin Bagge \n" "Language-Team: swedish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "Default mirror site:" msgstr "Standardspegel:" #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "Please enter the default mirror you want to be used by pbuilder." msgstr "Ange standardspegeln som du vill att pbuilder ska använda." #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "" "If you leave this field blank, there will be one attempt to autodetect this " "information. If this attempt fails, you will be prompted again to insert " "some valid mirror information." msgstr "" "Om du lämnar detta fält tomt görs försök för att automatiskt hitta denna " "information. Om detta försök misslyckas kommer du återigen att bli " "tillfrågad att ange korrekt spegelinformation." #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "Here is a valid mirror example: http://cdn.debian.net/debian" msgstr "Exempelvis kan denna spegel användas: http://cdn.debian.net/debian" #. Type: error #. Description #: ../pbuilder.templates:2001 msgid "Default mirror not found" msgstr "Standarsspegel kunde inte hittas" #. Type: error #. Description #: ../pbuilder.templates:2001 msgid "" "Mirror information detection failed and the user provided no mirror " "information." msgstr "" "Den automatiska sökningen efter standardspegel misslyckades och användaren " "har inte angivit någoninformation." #. Type: error #. Description #: ../pbuilder.templates:2001 msgid "Please enter valid mirror information." msgstr "Ange korrekt spegelinformation." #. Type: boolean #. Description #: ../pbuilder.templates:3001 msgid "Overwrite current configuration?" msgstr "Ska de aktuella inställningarna skrivas över?" #. Type: boolean #. Description #: ../pbuilder.templates:3001 msgid "" "Your system seems to have already pbuilder configuration. Proceeding might " "discard or overwrite part or the entire pbuilder's configuration." msgstr "" "Det verkar som om du redan har en inställningsfil för pbuilder på systemet. " "Om du fortsätter körningen nu kan hela eller delar av den komma att skrivas " "över." pbuilder-0.215ubuntu7/debian/po/cs.po0000664000000000000000000000514212312041170014347 0ustar # Czech translation of pbuilder debconf messages. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the pbuilder package. # Miroslav Kure , 2008 # msgid "" msgstr "" "Project-Id-Version: pbuilder\n" "Report-Msgid-Bugs-To: pbuilder@packages.debian.org\n" "POT-Creation-Date: 2008-03-07 00:09+0900\n" "PO-Revision-Date: 2008-05-17 13:43+0200\n" "Last-Translator: Miroslav Kure \n" "Language-Team: Czech \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "Default mirror site:" msgstr "Výchozí zrcadlo:" #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "Please enter the default mirror you want to be used by pbuilder." msgstr "Zadejte prosím výchozí zrcadlo, které má pbuilder používat." #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "" "If you leave this field blank, there will be one attempt to autodetect this " "information. If this attempt fails, you will be prompted again to insert " "some valid mirror information." msgstr "" "Ponecháte-li pole prázdné, zkusím tuto informaci zjistit sám. Pokud se to g" "nepovede, budete znovu dotázáni na zadání platného zrcadla." #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "Here is a valid mirror example: http://cdn.debian.net/debian" msgstr "Příklad platného zrcadla: http://cdn.debian.net/debian" #. Type: error #. Description #: ../pbuilder.templates:2001 msgid "Default mirror not found" msgstr "Výchozí zrcadlo nenalezeno" #. Type: error #. Description #: ../pbuilder.templates:2001 msgid "" "Mirror information detection failed and the user provided no mirror " "information." msgstr "" "Automatické rozpoznání zrcadla selhalo a uživatel neposkytnul žádné " "informace." #. Type: error #. Description #: ../pbuilder.templates:2001 msgid "Please enter valid mirror information." msgstr "Zadejte prosím platné zrcadlo." #. Type: boolean #. Description #: ../pbuilder.templates:3001 msgid "Overwrite current configuration?" msgstr "Přepsat stávající konfiguraci?" #. Type: boolean #. Description #: ../pbuilder.templates:3001 msgid "" "Your system seems to have already pbuilder configuration. Proceeding might " "discard or overwrite part or the entire pbuilder's configuration." msgstr "" "Zdá se, že se na vašem systému již nachází konfigurace pbuilderu. Budete-li " "pokračovat, může se stát, že přepíšete část nastavení pbuilderu." pbuilder-0.215ubuntu7/debian/po/fr.po0000664000000000000000000000520212312041170014346 0ustar # Translation of iodine debconf templates to French # Copyright (C) 2008 # This file is distributed under the same license as the iodine package. # # # , 2008 msgid "" msgstr "" "Project-Id-Version: pbuilder 0.170\n" "Report-Msgid-Bugs-To: pbuilder@packages.debian.org\n" "POT-Creation-Date: 2008-03-07 00:09+0900\n" "PO-Revision-Date: 2008-04-01 11:59+0100\n" "Last-Translator: Fakhry Ezzat \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "Default mirror site:" msgstr "Site miroir par défaut :" #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "Please enter the default mirror you want to be used by pbuilder." msgstr "" "Veuillez indiquer le miroir qui sera utilisé (par défaut) par pbuilder." #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "" "If you leave this field blank, there will be one attempt to autodetect this " "information. If this attempt fails, you will be prompted again to insert " "some valid mirror information." msgstr "" "Si vous laissez ce champ vide, une détection automatique du miroir le plus " "rapide sera tentée. Si cette tentative échoue, le miroir sera redemandé." #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "Here is a valid mirror example: http://cdn.debian.net/debian" msgstr "Exemple de miroir valable : http://cdn.debian.net/debian" #. Type: error #. Description #: ../pbuilder.templates:2001 msgid "Default mirror not found" msgstr "Miroir introuvable" #. Type: error #. Description #: ../pbuilder.templates:2001 msgid "" "Mirror information detection failed and the user provided no mirror " "information." msgstr "La tentative de détection automatique d'un miroir a échoué." #. Type: error #. Description #: ../pbuilder.templates:2001 msgid "Please enter valid mirror information." msgstr "Veuillez indiquer un miroir valable." #. Type: boolean #. Description #: ../pbuilder.templates:3001 msgid "Overwrite current configuration?" msgstr "Faut-il écraser la configuration actuelle?" #. Type: boolean #. Description #: ../pbuilder.templates:3001 msgid "" "Your system seems to have already pbuilder configuration. Proceeding might " "discard or overwrite part or the entire pbuilder's configuration." msgstr "" "Des paramètres de configuration de pbuilder semblent déjà exister sur ce " "système. Veuillez choisir si vous acceptez de perdre tout ou partie de ces " "informations de configuration." pbuilder-0.215ubuntu7/debian/po/pt_BR.po0000664000000000000000000000565512312041170014761 0ustar # Brazilian Portuguese translation of pbuilder. # Copyright (C) 2011 THE pbuilder COPYRIGHT HOLDER # This file is distributed under the same license as the pbuilder package. # Flamarion Jorge , 2011. # msgid "" msgstr "" "Project-Id-Version: pbuilder 0.203\n" "Report-Msgid-Bugs-To: pbuilder@packages.debian.org\n" "POT-Creation-Date: 2008-03-07 00:09+0900\n" "PO-Revision-Date: 2011-11-27 11:07-0200\n" "Last-Translator: Flamarion Jorge \n" "Language-Team: Brazilian Portuguese \n" "Language: pt_BR\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "Default mirror site:" msgstr "Localização do espelho de rede padrão:" #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "Please enter the default mirror you want to be used by pbuilder." msgstr "" "Por favor, informe o espelho de rede padrão que você quer que seja usado " "pelo pbuilder." #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "" "If you leave this field blank, there will be one attempt to autodetect this " "information. If this attempt fails, you will be prompted again to insert " "some valid mirror information." msgstr "" "Se você deixar este campo em branco, será feita uma tentativa de auto " "detectar esta informação. Se a tentativa falhar, você será perguntado " "novamente para inserir alguma informação válida de espelho de rede." #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "Here is a valid mirror example: http://cdn.debian.net/debian" msgstr "" "Este é um exemplo válido de espelho de rede: http://cdn.debian.net/debian" #. Type: error #. Description #: ../pbuilder.templates:2001 msgid "Default mirror not found" msgstr "Espelho de rede padrão não encontrado" #. Type: error #. Description #: ../pbuilder.templates:2001 msgid "" "Mirror information detection failed and the user provided no mirror " "information." msgstr "" "A detecção da informação do espelho de rede falhou e o usuário não forneceu " "uma informação de espelho de rede." #. Type: error #. Description #: ../pbuilder.templates:2001 msgid "Please enter valid mirror information." msgstr "Por favor, forneça uma informação de espelho de rede válida." #. Type: boolean #. Description #: ../pbuilder.templates:3001 msgid "Overwrite current configuration?" msgstr "Sobrescrever a configuração atual?" #. Type: boolean #. Description #: ../pbuilder.templates:3001 msgid "" "Your system seems to have already pbuilder configuration. Proceeding might " "discard or overwrite part or the entire pbuilder's configuration." msgstr "" "Seu sistema parece já ter uma configuração do pbuilder. Continuar poderá " "descartar ou sobrescrever parte ou toda a configuração do pbuilder." pbuilder-0.215ubuntu7/debian/po/ca.po0000664000000000000000000000527212312041170014331 0ustar # # Catalan translation for pbuilder package. # Copyright (C) 2008 Debian pbuilder maintenance team. # This file is distributed under the same license as the pbuilder package. # # Jordà Polo , 2008. # msgid "" msgstr "" "Project-Id-Version: 0.179\n" "Report-Msgid-Bugs-To: pbuilder@packages.debian.org\n" "POT-Creation-Date: 2008-03-07 00:09+0900\n" "PO-Revision-Date: 2008-05-11 17:03+0200\n" "Last-Translator: Jordà Polo \n" "Language-Team: Català \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "Default mirror site:" msgstr "Lloc de la rèplica predeterminada:" #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "Please enter the default mirror you want to be used by pbuilder." msgstr "Introduïu la rèplica que pbuilder utilitzarà per defecte." #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "" "If you leave this field blank, there will be one attempt to autodetect this " "information. If this attempt fails, you will be prompted again to insert " "some valid mirror information." msgstr "" "Si deixeu aquest camp en blanc s'intentarà detectar aquesta informació " "automàticament. Si aquesta detecció falla, un indicador us tornarà a demanar " "una rèplica vàlida." #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "Here is a valid mirror example: http://cdn.debian.net/debian" msgstr "Un exemple de rèplica vàlida seria: http://cdn.debian.net/debian" #. Type: error #. Description #: ../pbuilder.templates:2001 msgid "Default mirror not found" msgstr "No s'ha trobat la rèplica predeterminada" #. Type: error #. Description #: ../pbuilder.templates:2001 msgid "" "Mirror information detection failed and the user provided no mirror " "information." msgstr "" "Ha fallat la detecció de la rèplica i l'usuari no ha introduït informació " "sobre aquesta." #. Type: error #. Description #: ../pbuilder.templates:2001 msgid "Please enter valid mirror information." msgstr "Introduïu una rèplica vàlida." #. Type: boolean #. Description #: ../pbuilder.templates:3001 msgid "Overwrite current configuration?" msgstr "Voleu sobreescriure la configuració actual?" #. Type: boolean #. Description #: ../pbuilder.templates:3001 msgid "" "Your system seems to have already pbuilder configuration. Proceeding might " "discard or overwrite part or the entire pbuilder's configuration." msgstr "" "Ja hi ha una configuració de pbuilder al sistema. Continuar aquesta operació " "pot descartar o sobreescriure la configuració de pbuilder parcial o " "completament." pbuilder-0.215ubuntu7/debian/po/fi.po0000664000000000000000000000462712312041170014347 0ustar msgid "" msgstr "" "Project-Id-Version: pbuilder\n" "Report-Msgid-Bugs-To: pbuilder@packages.debian.org\n" "POT-Creation-Date: 2008-03-07 00:09+0900\n" "PO-Revision-Date: 2008-05-20 22:26+0200\n" "Last-Translator: Esko Arajärvi \n" "Language-Team: Finnish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Poedit-Language: Finnish\n" "X-Poedit-Country: FINLAND\n" #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "Default mirror site:" msgstr "Oletuspeilisivusto:" #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "Please enter the default mirror you want to be used by pbuilder." msgstr "Valitse peili, jota pbuilderin tulisi oletuksena käyttää." #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "If you leave this field blank, there will be one attempt to autodetect this information. If this attempt fails, you will be prompted again to insert some valid mirror information." msgstr "Jos tämä kenttä jätetään tyhjäksi, yritetään tieto löytää kerran automaattisesti. Jos tämä epäonnistuu, pyydetään kelvollista peiliä uudelleen." #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "Here is a valid mirror example: http://cdn.debian.net/debian" msgstr "Esimerkki kelvollisesta peilistä: http://cdn.debian.net/debian" #. Type: error #. Description #: ../pbuilder.templates:2001 msgid "Default mirror not found" msgstr "Oletuspeiliä ei löytynyt" #. Type: error #. Description #: ../pbuilder.templates:2001 msgid "Mirror information detection failed and the user provided no mirror information." msgstr "Peilitietojen etsintä epäonnistui, eikä käyttäjä antanut peilitietoja." #. Type: error #. Description #: ../pbuilder.templates:2001 msgid "Please enter valid mirror information." msgstr "Anna kelvollinen peili." #. Type: boolean #. Description #: ../pbuilder.templates:3001 msgid "Overwrite current configuration?" msgstr "Kirjoitetaanko nykyisten asetusten päälle?" #. Type: boolean #. Description #: ../pbuilder.templates:3001 msgid "Your system seems to have already pbuilder configuration. Proceeding might discard or overwrite part or the entire pbuilder's configuration." msgstr "Järjestelmässä on jo pbuilder-asetukset. Jatkaminen saattaa hävittää tai kirjoittaa yli osan tai kaikki pbuilderin aiemmista asetuksista." pbuilder-0.215ubuntu7/debian/po/nl.po0000664000000000000000000000540612312041170014356 0ustar # Dutch translation of pbuilder debconf templates. # Copyright (C) 2011 THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the pbuilder package. # Jeroen Schot , 2011. # msgid "" msgstr "" "Project-Id-Version: pbuilder 0.199+nmu4\n" "Report-Msgid-Bugs-To: pbuilder@packages.debian.org\n" "POT-Creation-Date: 2008-03-07 00:09+0900\n" "PO-Revision-Date: 2011-06-14 08:34+0200\n" "Last-Translator: Jeroen Schot \n" "Language-Team: Debian l10n Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: nl\n" #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "Default mirror site:" msgstr "Standaard spiegelserver:" #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "Please enter the default mirror you want to be used by pbuilder." msgstr "Geef de standaard spiegelserver op die pbuilder moet gebruiken." #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "" "If you leave this field blank, there will be one attempt to autodetect this " "information. If this attempt fails, you will be prompted again to insert " "some valid mirror information." msgstr "" "Als u dit veld leeg laat zal er een poging worden gedaan om deze informatie " "automatisch te detecteren. Als deze poging mislukt zal u nogmaals om een " "geldige spiegelserver worden gevraagd." #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "Here is a valid mirror example: http://cdn.debian.net/debian" msgstr "" "Dit is een geldig voorbeeld van een spiegelserver: http://cdn.debian.net/" "debian" #. Type: error #. Description #: ../pbuilder.templates:2001 msgid "Default mirror not found" msgstr "Standaard spiegelserver niet gevonden" #. Type: error #. Description #: ../pbuilder.templates:2001 msgid "" "Mirror information detection failed and the user provided no mirror " "information." msgstr "" "De detectie van de spiegelserver is mislukt en de gebruiker heeft geen " "spiegelserver opgegeven." #. Type: error #. Description #: ../pbuilder.templates:2001 msgid "Please enter valid mirror information." msgstr "Geef een geldige spiegelserver op." #. Type: boolean #. Description #: ../pbuilder.templates:3001 msgid "Overwrite current configuration?" msgstr "Huidige configuratie overschrijven?" #. Type: boolean #. Description #: ../pbuilder.templates:3001 msgid "" "Your system seems to have already pbuilder configuration. Proceeding might " "discard or overwrite part or the entire pbuilder's configuration." msgstr "" "Uw systeem lijkt al een pbuilder-configuratie te bevatten. Als u verdergaat " "wordt er mogelijk een deel of alles van de pbuilder-configuratie weggegooid " "of overschreven." pbuilder-0.215ubuntu7/debian/po/eu.po0000664000000000000000000000541412312041170014355 0ustar # translation of xb-pbuilder-templates-eu.po to basque # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # xabier bilbao , 2008. msgid "" msgstr "" "Project-Id-Version: xb-pbuilder-templates-eu\n" "Report-Msgid-Bugs-To: pbuilder@packages.debian.org\n" "POT-Creation-Date: 2008-03-07 00:09+0900\n" "PO-Revision-Date: 2008-05-17 21:46+0200\n" "Last-Translator: xabier bilbao \n" "Language-Team: basque \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "Default mirror site:" msgstr "Ispilu-gune lehenetsia:" #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "Please enter the default mirror you want to be used by pbuilder." msgstr "Sartu mesedez pbuilder-ek lehenetsi gisa erabiltzea nahi duzun ispilu-gunea." #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "" "If you leave this field blank, there will be one attempt to autodetect this " "information. If this attempt fails, you will be prompted again to insert " "some valid mirror information." msgstr "" "Eremu hau hutsik uzten baduzu, informazio hau automatikoki atzemateko " "saio bat egingo da. Saio honek huts egiten baldin badu, berriro " "eskatuko zaizu baliozko ispilu baten informazioa sartzeko." #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "Here is a valid mirror example: http://cdn.debian.net/debian" msgstr "Hau da baliozko ispilu baten adibidea: http://cdn.debian.net/debian" #. Type: error #. Description #: ../pbuilder.templates:2001 msgid "Default mirror not found" msgstr "Ispilu lehenetsia ez da aurkitu" #. Type: error #. Description #: ../pbuilder.templates:2001 msgid "" "Mirror information detection failed and the user provided no mirror " "information." msgstr "" "Ispiluaren informazioa atzemateko saioak huts egin du, eta erabiltzaileak ez " "du eman ispiluaren informaziorik." #. Type: error #. Description #: ../pbuilder.templates:2001 msgid "Please enter valid mirror information." msgstr "Sartu mesedez baliozko ispilu informazioa." #. Type: boolean #. Description #: ../pbuilder.templates:3001 msgid "Overwrite current configuration?" msgstr "Dagoen konfigurazioa gainidatzi?" #. Type: boolean #. Description #: ../pbuilder.templates:3001 msgid "" "Your system seems to have already pbuilder configuration. Proceeding might " "discard or overwrite part or the entire pbuilder's configuration." msgstr "" "Zure sistemak pbuilder konfigurazioa baduela dirudi. Aurrera jarraituz gero, " "baliteke pbuilder-en konfigurazio osoa edo zati bat baztertzea edo " "gainidaztea." pbuilder-0.215ubuntu7/debian/po/it.po0000664000000000000000000000554512312041170014365 0ustar # Italian translation of pbuilder debconf messages. # Copyright (C) 2012, pbuilder package copyright holder. # This file is distributed under the same license as the pbuilder package. # Beatrice Torracca , 2012. msgid "" msgstr "" "Project-Id-Version: pbuilder\n" "Report-Msgid-Bugs-To: pbuilder@packages.debian.org\n" "POT-Creation-Date: 2008-03-07 00:09+0900\n" "PO-Revision-Date: 2012-08-27 16:19+0200\n" "Last-Translator: Beatrice Torracca \n" "Language-Team: Italian \n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" "X-Generator: Virtaal 0.7.1\n" #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "Default mirror site:" msgstr "Sito mirror predefinito:" #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "Please enter the default mirror you want to be used by pbuilder." msgstr "Inserire il mirror predefinito che deve essere usato da pbuilder." #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "" "If you leave this field blank, there will be one attempt to autodetect this " "information. If this attempt fails, you will be prompted again to insert " "some valid mirror information." msgstr "" "Se questo campo viene lasciato vuoto, verrà fatto un tentativo di rilevare " "automaticamente questa informazione. Se tale tentativo fallirà, verrà " "chiesto nuovamente di inserire una qualche informazione valida per un " "mirror." #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "Here is a valid mirror example: http://cdn.debian.net/debian" msgstr "Ecco un esempio di mirror valido: http://cdn.debian.net/debian" #. Type: error #. Description #: ../pbuilder.templates:2001 msgid "Default mirror not found" msgstr "Mirror predefinito non trovato" #. Type: error #. Description #: ../pbuilder.templates:2001 msgid "" "Mirror information detection failed and the user provided no mirror " "information." msgstr "" "Il rilevamento delle informazioni sul mirror non è riuscito e l'utente non " "ne ha fornita alcuna." #. Type: error #. Description #: ../pbuilder.templates:2001 msgid "Please enter valid mirror information." msgstr "Inserire delle informazioni sul mirror valide." #. Type: boolean #. Description #: ../pbuilder.templates:3001 msgid "Overwrite current configuration?" msgstr "Sovrascrivere la configurazione attuale?" #. Type: boolean #. Description #: ../pbuilder.templates:3001 msgid "" "Your system seems to have already pbuilder configuration. Proceeding might " "discard or overwrite part or the entire pbuilder's configuration." msgstr "" "Il sistema sembra avere già una configurazione per pbuilder. Procedendo si " "potrebbero perdere o sovrascrivere la configurazione di pbuilder in parte o " "del tutto." pbuilder-0.215ubuntu7/debian/po/templates.pot0000664000000000000000000000367512312041170016135 0ustar # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: pbuilder@packages.debian.org\n" "POT-Creation-Date: 2008-03-07 00:09+0900\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "Default mirror site:" msgstr "" #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "Please enter the default mirror you want to be used by pbuilder." msgstr "" #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "" "If you leave this field blank, there will be one attempt to autodetect this " "information. If this attempt fails, you will be prompted again to insert " "some valid mirror information." msgstr "" #. Type: string #. Description #: ../pbuilder.templates:1001 msgid "Here is a valid mirror example: http://cdn.debian.net/debian" msgstr "" #. Type: error #. Description #: ../pbuilder.templates:2001 msgid "Default mirror not found" msgstr "" #. Type: error #. Description #: ../pbuilder.templates:2001 msgid "" "Mirror information detection failed and the user provided no mirror " "information." msgstr "" #. Type: error #. Description #: ../pbuilder.templates:2001 msgid "Please enter valid mirror information." msgstr "" #. Type: boolean #. Description #: ../pbuilder.templates:3001 msgid "Overwrite current configuration?" msgstr "" #. Type: boolean #. Description #: ../pbuilder.templates:3001 msgid "" "Your system seems to have already pbuilder configuration. Proceeding might " "discard or overwrite part or the entire pbuilder's configuration." msgstr "" pbuilder-0.215ubuntu7/pbuilder-createbuildenv0000775000000000000000000000754612312041170016302 0ustar #! /bin/bash # Creating the build environment with debootstrap. # pbuilder -- personal Debian package builder # Copyright (C) 2001-2003,2005-2007 Junichi Uekawa # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA set -e . /usr/lib/pbuilder/pbuilder-checkparams . /usr/lib/pbuilder/pbuilder-runhooks if [ -z "$DISTRIBUTION" ]; then DISTRIBUTION=sid fi log "I: Distribution is $DISTRIBUTION." if [ "${PBUILDER_DEBUGMODE}" = "yes" ]; then TRAP="echo ignoring trap " else TRAP=trap fi # show the current time before doing anything. echobacktime # first clean it. cleanbuildplace log "I: Building the build environment" mkdir -p "$BUILDPLACE" if [ ! -d "$BUILDPLACE" ]; then log "E: Could not make directory [$BUILDPLACE]" exit 1 fi $TRAP cleanbuildplace exit log "I: running $DEBOOTSTRAP" unset DEBOOTSTRAPSCRIPT if [ -n "$HOOKDIR" ]; then if [ -f "$HOOKDIR/$DISTRIBUTION" ]; then DEBOOTSTRAPSCRIPT=$(readlink -f "$HOOKDIR")"/$DISTRIBUTION" log "I: Applying user distribution dist build script $DEBOOTSTRAPSCRIPT" fi fi if which "${DEBOOTSTRAP}"; then : # debootstrap exists else log "E: ${DEBOOTSTRAP} does not exist, install or change DEBOOTSTRAP option" exit 1 fi # FIXME if the end-user passes another --include= to debootstrap in # DEBOOTSTRAPOPTS, it will override the --include=apt one and apt might not be # installed if ! ( cd "$BUILDPLACE" && \ "${DEBOOTSTRAP}" ${ARCHITECTURE:+--arch=$ARCHITECTURE} \ --include=apt \ "${DEBOOTSTRAPOPTS[@]}" \ "$DISTRIBUTION" \ . \ "$MIRRORSITE" \ $DEBOOTSTRAPSCRIPT ) ; then log "E: $DEBOOTSTRAP failed" exit 1 fi log "I: debootstrap finished" loadhooks mkdir -p "$BUILDPLACE/tmp/buildd" copy_local_configuration installaptlines add_additional_aptkeyrings executehooks "G" log "I: Refreshing the base.tgz " log "I: upgrading packages" mountproc $TRAP umountproc_cleanbuildplace_trap exit sighup $CHROOTEXEC /usr/bin/apt-get -q update case "`readlink -e "$PBUILDERSATISFYDEPENDSCMD"`" in *-aptitude) EXTRAPACKAGES="$EXTRAPACKAGES aptitude" ;; *) EXTRAPACKAGES="$EXTRAPACKAGES aptitude-" ;; esac if [ -n "$CCACHEDIR" ]; then EXTRAPACKAGES="$EXTRAPACKAGES ccache" else EXTRAPACKAGES="$EXTRAPACKAGES ccache-" fi if [ -n "$REMOVEPACKAGES" ]; then # FIXME this wont work if the packages have some reverse dependencies; # apt-get can also remove package, either with apt-get remove or purge, or # with apt-get install name-of-pkg- (i.e. a minus sign after the package # name) $CHROOTEXEC /usr/bin/dpkg --purge $REMOVEPACKAGES fi recover_aptcache $CHROOTEXEC /usr/bin/apt-get -q -y "${APTGETOPT[@]}" "${FORCE_CONFNEW[@]}" dist-upgrade $CHROOTEXEC /usr/bin/apt-get -q -y "${APTGETOPT[@]}" install \ build-essential \ dpkg-dev \ $EXTRAPACKAGES save_aptcache executehooks "E" unloadhooks umountproc $CHROOTEXEC /usr/bin/apt-get clean || true $TRAP cleanbuildplace_trap exit sighup # Internal_build_uml is set when --no-targz is set, this code is actually never called from pbuilder-user-mode-linux if [ ! "${INTERNAL_BUILD_UML}" = "yes" ]; then create_basetgz fi if [ "${PRESERVE_BUILDPLACE}" = "yes" ]; then : else : cleanbuildplace fi trap - exit sighup exit 0 pbuilder-0.215ubuntu7/pbuilder-selftest0000775000000000000000000000044212312041170015123 0ustar #!/bin/sh set -e if [ -n "$PBUILDER_CHECKOUT" ]; then PBUILDER_TESTS_DIR="$PBUILDER_CHECKOUT" else PBUILDER_PKGLIBDIR="${PBUILDER_PKGLIBDIR:-$PBUILDER_ROOT/usr/lib/pbuilder}" PBUILDER_TESTS_DIR="$PBUILDER_PKGLIBDIR" fi for t in "$PBUILDER_TESTS_DIR"/test_*; do "$t" done pbuilder-0.215ubuntu7/README0000664000000000000000000000101212312041170012412 0ustar pbuilder - a personal builder. Welcome to pbuilder, you will see some documentations. See README.Debian for some useful info. AUTHORS and THANKS, for the list of people who have been working on this. The man pages pbuilder.8, pbuilderrc.5, and pdebuild.1 should give some info on how to use pbuilder. There is a DocBook documentation, translated to html format, pbuilder-doc.html. It is the most complete documentation of pbuilder available. Junichi Uekawa. Initially, 30 Sep 2001 Midnight. Updated on 11 Jan 2004 pbuilder-0.215ubuntu7/pbuilderrc.50000664000000000000000000002742512312041170013773 0ustar .TH "pbuilderrc" 5 "2006 May 24" "Debian" "pbuilder" .SH NAME pbuilderrc \- configuration files for personal package builder .SH DESCRIPTION .B "/etc/pbuilderrc" contains default values used in the .B "pbuilder" program invocation. .PP The file itself is sourced by a shell script, so it is required that the file conforms to shell script conventions. .SH "FORMAT" .TP .BI "APTCACHE=" "/var/cache/pbuilder/aptcache" Specify the location that the packages downloaded by apt should be cached. Setting this value to "" will cause caching to be turned off. .TP .BI "APTCACHEHARDLINK=" "yes" Specify using hard links in apt cache handling. Changing this to no will disable hard linking and will copy the files. It is advised to set this to .B "no" if you are using user-mode-linux. .TP .BI "APTCONFDIR=" "/etc/apt" Configures where the apt configuration files are copied from. By default, this value is empty, allowing the usual configuration options to take effect. Setting this variable overrides other options. .TP .BI "ARCHITECTURE=" "`dpkg \-\-print\-architecture`" Specify the default distribution to use. This option only affects when doing .B "pbuilder create" .TP .BI "AUTOCLEANAPTCACHE=" "yes" Always run with .B "\-\-autocleanaptcache" option. .TP .BI "AUTO_DEBSIGN=" "yes" When this value is set to yes, .B pdebuild will invoke debsign command after building. .TP .BI "BASETGZ=" "/var/cache/pbuilder/base.tgz" Specifies the default location for the archived chroot image to be created and used. This is overridden with the option .BR "\-\-basetgz" "." .TP .BI "BINDMOUNTS=" "directories-to-bind-mount" When this value is set, pbuilder will mount these directories using bind-mount. Do not bind-mount .B "/" .br An Example: .EX BINDMOUNTS="/home /mnt/test" .EE .TP .BI "BUILDPLACE=" "/var/cache/pbuilder/build/" The default place which the chroot is constructed. .B pbuilder will use the directory .BR "$BUILDPLACE$$" "." which means, that it will use the directory and the PID to determine the directory to use. This should obtain an unique directory for concurrent runs of pbuilder in one machine. This is not guaranteed to happen on network shared drives, so be aware of this fact when playing with this option on NFS shared beowulf clusters. Change it to something like .I "/var/cache/pbuilder/build/$HOSTNAME/" when doing such a thing. .B "pbuilder clean" cleans up this directory. .TP .BI "BUILDRESULT=" "/var/cache/pbuilder/result/" Specify the default directory which the build result will be copied over to after the building. Unlike .B "\-\-buildresult" command-line option. The path is not canonicalized, so you should specify a full-path, not a relative path. .TP .BI "CCACHEDIR=" "/var/cache/pbuilder/ccache" Specifies where ccache will keep its cached compiler output. If this is specified, ccache will be installed upon pbuilder create or pbuilder update, /usr/lib/ccache will be prepended to the PATH, CCACHEDIR will be bind-mounted in the chroot, and CCACHE_DIR will be set to CCACHEDIR. Note that files in CCACHEDIR are chowned to BUILDUSERID (1234 by default). .TP .BI "BUILDRESULTUID=" .TP .BI "BUILDRESULTGID=" Set the UID and GID of the files built as result. They probably need to be set to numeric UID values, so that it works the same inside the chroot and outside the chroot. If sudo is used, the values specified by sudo is used. They are .BR "SUDO_UID" ", and" .BR "SUDO_GID" ". " The default value is .B "0" .TP .BI "BUILDSOURCEROOTCMD=" "fakeroot" This option is used on invocation of fakeroot for .B "dpkg\-buildpackage" in .B "pdebuild" .TP .BI "BUILDUSERID=" "1234" The uid to be used inside chroot. It should ideally not collide with user-id outside the chroot, to avoid user inside chroot having access to processes owned by the user id outside the chroot. .TP .BI "BUILDUSERNAME=" "pbuilder" The user name of the user the build will run as. Specifying this will enable the use of fakeroot inside pbuilder. Note that this will require fakeroot to be installed within the chroot, and fakeroot will automatically be installed. And .B "\-rfakeroot" will be added to .B "DEBBUILDOPTS" .TP .BI "COMPONENTS=" "main" Specify the default distribution components to use. This option is space-delimited. This option only affects when doing .B "pbuilder create" or when .B "\-\-override\-config" is specified for .B "pbuilder update" option. .TP .BI "COMPRESSPROG=" "gzip" Program to use for compression and decompression of the base.tgz. The default is to use gzip, and any program that can be used for the --use-compress-program option of tar can be given. If set to "pigz", compression and decompression is gzip compatible but will use all available CPUs. .TP .BI "export http_proxy=" "http://your-proxy:8080/" Defines the proxy for http connection. .TP .BI "export DEBIAN_BUILDARCH=" "athlon" Uses this variable as .BR "DEBIAN_BUILDARCH" "." This trick can be used for other environmental variables as well. .TP .BI "DEBBUILDOPTS=" "" The options given here will be passed on to .BR dpkg\-buildpackage . This can be useful e.g. for binary-only builds. The command-line option .B "\-\-debbuildopts" will be appended to any contents specified here but may also be used to reset the list of options. The default value is to build source and binary package. .TP .BI "DEBOOTSTRAPOPTS=" "( '\-\-variant=buildd' '\-\-keyring' '/usr/share/keyrings/debian\-archive\-keyring.gpg' )" When this option is set to .B "\-\-variant=buildd" .B "pbuilder" will invoke .B "$DEBOOTSTRAP" with .B "\-\-variant=buildd" option, which results in debootstrap creating a minimal chroot for buildd instead of trying to create a minimal installation chroot. .B "\-\-keyring" is used to specify a keyring for debootstrap. .TP .BI "APTKEYRINGS=" "()" Additional keyrings to use for package verification with apt, not used for debootstrap (use .B "$DEBOOTSTRAPOPTS" ). Use this to add (local) signed repositories. By default the debian-archive-keyring package inside the chroot is used. .TP .BI "DEBOOTSTRAP=" "debootstrap" Use this option to switch the implementation of debootstrap. Known implementations of debootstrap are .B "cdebootstrap" and .B "debootstrap" .TP .BI "DEBEMAIL=" "Maintainer Name " If this was specified, .B dpkg\-buildpackage command will be passed with the necessary sponsorship option .B "\-mMaintainer Name " on building. Overridden with .B "\-\-debemail" command-line option. The default configuration for .B pbuilder is empty for this value. .TP .BI "export DEBIAN_FRONTEND=" "noninteractive" Sets interactiveness of pbuilder run. Setting this value to blank will cause the pbuilder run to be interactive. Change this value when noninteractive upgrades do not work. .TP .BI "DISTRIBUTION=" "sid" Specify the default distribution to use. This option only affects when doing .B "pbuilder create" or when .B "\-\-override\-config" is specified for .B "pbuilder update" option. .TP .BI "EXTRAPACKAGES=" """ccache lintian XXX""" Specifies extra packages which the system should install in the chroot on .BR "pbuilder create" "." This is a space-delimited list. Also this is installed on .B "pbuilder build" .TP .BI "HOOKDIR=" "/usr/lib/pbuilder/hooks" Specifies the default location for the user hooks directory. This is overridden with the option .BR "\-\-hookdir" "." If this is specified, hooks are searched for in the chroot, when running .BR "pbuilder" "." If it is not defined, or is an empty string, hooks are not executed. For details, see .B "pbuilder(8)" .TP .BI "MIRRORSITE=" "http://www.jp.debian.org/debian" Specify the mirror site which contains the main Debian distribution. Note that you cannot really use .B "file:/" kind of URL, because the location needs to be accessible from within the chroot. .TP .BI "OTHERMIRROR=" "deb http://xxx/xxx/ ./ " "[|" " other deb lines... " "]" The lines which is added to the sources.list, delimited with .B "|" Like: .br .B "deb http://local/mirror sid main|deb file:/usr/local/mirror ./" The deb lines here are the ones that will appear at the top of the .B "sources.list" inside the chroot. Be sure to follow the syntax rules of .BR "sources.list" "(5)." These lines appear at the beginning of the constructed sources file, so this is the place to list your .B "local" mirror sites; apt will then use them in preference to the ones listed in .B "MIRRORSITE". To make changes on mirror site effective on .B update .B "\-\-override\-config" needs to be specified. .TP .BI "PDEBUILD_PBUILDER=" "pbuilder" Specify what pbuilder implementation to use for pdebuild. The currently possible values are .B "pbuilder" and .B "cowbuilder" .TP .BI "PKGNAME_LOGFILE_EXTENTION=" ".build" The extension of filename used in pkgname\-logfile option. .TP .BI "PKGNAME_LOGFILE=" "yes" Always run with .B "\-\-pkgname\-logfile" option, and create a logfile named after the package name. .TP .BI "PBUILDERROOTCMD=" "sudo \-E" This option is used on invocation of .B "pbuilder build" in .B "pdebuild" .TP .BI "PBUILDERSATISFYDEPENDSCMD=" "/usr/lib/pbuilder/pbuilder\-satisfydepends" This option is used by various parts of pbuilder to satisfy (i.e. install) the build-dependencies of a package. There are four implementations: The "experimental" implementation, "pbuilder\-satisfydepends\-experimental", which might be useful to pull packages from experimental or from repositories with a low APT Pin Priority. The "aptitude" implementation, which will resolve build-dependencies and build-conflicts with aptitude which helps dealing with complex cases but does not support unsigned APT repositories. The "gdebi" implementation, which will resolve build-dependencies using gdebi tool, faster than classic implementation, and does not require installation of a dummy package like the aptitude implementation. The "classic" implementation, which was the original implementation used until 0.172. The default is now "aptitude". .TP .BI "PBUILDERSATISFYDEPENDSOPT=" "()" Array of flags to give to pbuilder\-satisfydepends. .TP .BI "ALLOWUNTRUSTED=" "no" Allow untrusted (no key installed) and unsigned repositories. .BI Warning: Enabling this option may allow remote attackers to compromise the system. Better use signed repositories and .B "$APTKEYRINGS" to add the key(s). .TP .BI "APTGETOPT=" "()" Extra flags to give to apt\-get. .TP .BI "APTITUDEGETOPT=" "()" Extra flags to give to aptitude. .TP .BI "REMOVEPACKAGES=" "lilo" Specify the packages to be removed on creation of .B base.tgz Leaving lilo in the chroot is like keeping a timebomb... .TP .BI "TIMEOUT_TIME=" "2h" Sets timeout time. Build will be stoped with SIGTERM after the set time. .TP .BI "USEDEVFS=" "no" Whether to use DEVFS or not. .TP .BI "USEDEVPTS=" "yes" Specify .B yes when it is desired to mount .B /dev/pts interface. It is usually a good idea, since there are many software which fail miserably when there is no .B /dev/pts being mounted. .TP .BI "USERUNSHM=" "yes" Specify .B yes when it is desired to mount .B /run/shm mount point. It is usually a good idea in order to work with software that expect shm to work. .TP .BI "USE_PDEBUILD_INTERNAL=" "yes" When this option is set to .I yes .B "pdebuild\-internal" implementation of .B pdebuild is used. .TP .BI "USEPROC=" "yes" Specify .B yes when it is desired to mount .B /proc interface. It is usually a good idea, since there are many software which fail miserably when there is no .B /proc being mounted. .TP .BI "ADDITIONAL_BUILDRESULTS=""" Array of additional files to copy out of the build area. .SH "AUTHOR" Initial coding, and main maintenance is done by Junichi Uekawa . User hooks code added by Dale Amon The homepage is available at .B "\%http://pbuilder.alioth.debian.org" .SH "FILES" .I "/etc/pbuilderrc, $HOME/.pbuilderrc" .SH "SEE ALSO" .BR "/usr/share/doc/pbuilder/pbuilder\-doc.html" ", " .BR "cowbuilder" "(8), " .BR "pbuilder" "(8), " .BR "pdebuild" "(1)" \" LocalWords: interactiveness noninteractive pdebuild pbuilder buildd \" LocalWords: pbuilderrc pbuilder-0.215ubuntu7/pbuilder-runhooks0000664000000000000000000000654112312041170015145 0ustar #! /bin/bash #========================================================================== # Execute any hooks required for this segment # # Title: pbuilder-runhooks # Description User hooks for pbuilder package # Programmed by: Dale Amon # $HOOKDIR is set in /etc/pbuilderrc and contains a list of executable # programs or scripts. The type is only limited by what you expect will # be available in your chrooted environment after debootstrap has done # an initial install. The functions must be named in the format: # . Currently only X is defined; # scripts prefixed with X will be run just before the chroot environment # is exited and the base.tgz file is created or updated. # $BUILDPLACE is as used in pbuilder. When already inside chroot, this # routine can be called with $BUILDPLACE='' (from pdebuild-internal) # TODO: * Are there any other executable backup types we should # filtered besides *~ and *.bak? # #========================================================================== hooks=tmp/hooks #========================================================================== # Set up fresh chroot'd hooks tmp script directory # function loadhooks () { if [ -z "$HOOKDIR" ]; then return ; fi if [ -d "$BUILDPLACE/$hooks" ]; then rm -rf "$BUILDPLACE/$hooks" fi if [ -d "$HOOKDIR" ]; then mkdir -p "$BUILDPLACE/$hooks" if ! cp -aL "$HOOKDIR/"* "$BUILDPLACE/$hooks"; then log "W: no hooks found in the hookdir '$HOOKDIR'" fi else log "W: hookdir $HOOKDIR does not exist, skipping" fi } #-------------------------------------------------------------------------- # Tidy up after ourselves. (Anything we leave behind ends up in base.tgz) # function unloadhooks () { if [ -z "$HOOKDIR" ]; then return ; fi if [ -d "$BUILDPLACE/$hooks" ]; then rm -rf "$BUILDPLACE/$hooks" else log "E: Logic failure in hook handling. Directory $BUILDPLACE/$hooks should exist but it does not." fi } #-------------------------------------------------------------------------- # Execute every script found in the chroot'd target directory. We only # test for whether a file is executable because we have no idea what # the user had put in their dist. If they want PL/1 and ADA on the base # dist or have decided to use emacslisp for everything, it's their # problem. # # Args: Required prefix on hook fn name # Returns: none # function executehooks () { local prefix="$1" if [ -z "$HOOKDIR" ]; then return ; fi for fn in "$BUILDPLACE/$hooks/$prefix"[0-9][0-9]* ; do case "$fn" in "$BUILDPLACE/$hooks/$prefix"'[0-9][0-9]*') log "W: no hooks of type ${prefix} found -- ignoring" ;; *~) log "W: skipping an editor backup file $fn" ;; *.bak) log "W: skipping a backup file $fn" ;; *) if [ -x "$fn" ]; then log "I: user script $fn starting" $CHROOTEXEC "/$hooks/"$(basename "$fn") log "I: user script $fn finished" else if [ -f "$fn" ]; then filetype=$(basename "$fn" ) log "W: execute priv not set on file $filetype, not executing." else # Should it reach here ? This case should be caught in the above case. log "W: no hooks of type ${prefix} found -- internal error in logic" fi fi ;; esac done } #-------------------------------------------------------------------------- pbuilder-0.215ubuntu7/pbuilder-user-mode-linux0000775000000000000000000001614612312041170016337 0ustar #! /bin/bash # pbuilder user-mode-linux hack. # # pbuilder -- personal Debian package builder # Copyright (C) 2001-2007 Junichi Uekawa # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA # set -e function cleanup_function_trap () { rm -f ${INSIDE_PBUILDER} ${EXTRACLEANUP} } . /usr/lib/pbuilder/pbuilder-loadconfig OPERATION="$1" shift; . /usr/lib/pbuilder/pbuilder-uml-checkparams function usecow () { PBUILDER_COWFILENAME="${BUILDPLACE}/$$.cow" PBUILDER_COW="${PBUILDER_COWFILENAME}," if ! touch "${PBUILDER_COWFILENAME}"; then log "E: Cannot write-access to the COW file, check buildplace" exit 1; fi rm -f "${PBUILDER_COWFILENAME}" } function cleancow () { # clean the cow file rm -f "${PBUILDER_COWFILENAME}" } function operate_uml () { # opeartes on UML, and runs pbuilder $1 # use this script file to bootstrap the pbuilder inside the UML INSIDE_PBUILDER=$(tempfile) trap cleanup_function_trap exit sighup UML_CHROOT_MOUNTPOINT=/var/cache/pbuilder/pbuilder-mnt UML_CHROOT_BUILDRESULTMOUNTDIR=/var/cache/pbuilder/pbuilder-umlresult #The following script is ran inside UML as soon as it is started. cat < ${INSIDE_PBUILDER} #! /bin/bash ### ### BEGIN CODE EXECUTED INSIDE User-mode-linux ### ### note that ${VARIABLE}s are evaluated outside of user-mode-linux. ### while \${VARIABLE}s are evaluated inside of user-mode-linux. ${UML_DEBUGMODE} mount -t proc /proc /proc mount -t tmpfs /tmp /tmp # create devices mount -t tmpfs tmpfs /dev mknod /dev/ubdb b 98 16 #if ! fsck -p /dev/ubdb; then # echo "W: Failed to fsck /dev/ubdb" #fi if ! mount -t ext2 /dev/ubdb ${UML_CHROOT_MOUNTPOINT}; then echo "E: Cannot mount /dev/ubdb, is UML root image accessible as current user?" >&2 exit 1 fi mount --bind ${UML_CHROOT_MOUNTPOINT}/dev /dev # mount /lib/modules on the hostfs kernel_modules=\$(sed -ne 's\$.*/lib/modules.*hostfs.*defaults,ro,\([^[:space:]]*\).*\$\1\$p' ${UML_CHROOT_MOUNTPOINT}/etc/fstab) if [ -n "\${kernel_modules}" ] ; then echo " -> Mount /lib/modules on the host \${kernel_modules}" mount -t hostfs -o ro,\${kernel_modules} hostfs /lib/modules fi export LOGNAME="${LOGNAME}" export HOME="${HOME}" hostname "${UML_HOSTNAME}" if [ "${UML_MOUNT_TMPFS}" = "yes" ]; then mount -t tmpfs ${UML_CHROOT_MOUNTPOINT}/tmp ${UML_CHROOT_MOUNTPOINT}/tmp else # clean up tmp before playing with it. rm -rf ${UML_CHROOT_MOUNTPOINT}/tmp mkdir ${UML_CHROOT_MOUNTPOINT}/tmp chmod 1777 ${UML_CHROOT_MOUNTPOINT}/tmp fi if [ "${UML_IP}" != 'dhcp' ]; then cat < ${UML_CHROOT_MOUNTPOINT}/etc/network/interfaces auto lo iface lo inet loopback # The first network card - this entry was created during the Debian installation auto eth0 iface eth0 inet static address $UML_IP netmask $UML_NETMASK network $UML_NETWORK broadcast $UML_BROADCAST gateway $UML_GATEWAY IP fi cat < ${UML_CHROOT_MOUNTPOINT}/tmp/chrootshell #! /bin/bash ${UML_DEBUGMODE} # the shell executed inside chroot inside UML echo Starting network inside the chroot mount -t proc /proc /proc /etc/init.d/networking stop /etc/init.d/networking start umount /proc SHELL chmod a+x ${UML_CHROOT_MOUNTPOINT}/tmp/chrootshell chroot ${UML_CHROOT_MOUNTPOINT} /tmp/chrootshell #some variables need to be set from outside values, possibly export PATH="$PATH" export TMPDIR=/tmp unset EXTRAOPT || true declare -a EXTRAOPT if [ -n "${UML_DISTRIBUTION}" ]; then EXTRAOPT[0]="--distribution" EXTRAOPT[1]="${UML_DISTRIBUTION}" fi if [ -z "${UML_BUILDRESULT}" ]; then BUILDRESULT= else echo " -> Mount build result dir outside UML [${UML_BUILDRESULT}] as [${UML_CHROOT_BUILDRESULTMOUNTDIR}]" BUILDRESULT=${UML_CHROOT_BUILDRESULTMOUNTDIR} mkdir -p ${UML_CHROOT_BUILDRESULTMOUNTDIR} || true mount -t hostfs none "${UML_CHROOT_BUILDRESULTMOUNTDIR}" -o "${UML_BUILDRESULT}" fi pbuilder "$1" ${UML_EXTRAOPT} \${EXTRAOPT[@]} --buildresult "\${BUILDRESULT}" --buildplace "${UML_CHROOT_MOUNTPOINT}" --internal-build-uml ${UML_DEBUGMODE:+--debug} ${BUILDING_DSC_FILE} ${UML_EXECUTE_EXTRAOPT} echo \$? > /proc/exitcode if [ -n "\${kernel_modules}" ] ; then umount /lib/modules fi umount /dev umount ${UML_CHROOT_MOUNTPOINT} /sbin/halt -d -f ### ### END CODE EXECUTED INSIDE User-mode-linux ### EOF chmod a+x ${INSIDE_PBUILDER} if [ $( id -u ) = 0 ]; then echo "W: You are uid=0. Don't run UML as uid=0, it's not supported." >&2 fi echo Invoking: "linux mem=${UML_MEM} eth0=${MY_ETH0} con0=fd:0,fd:1 con=pty root=/dev/root rootflags=/ rootfstype=hostfs ubd1=${PBUILDER_COW}${PBUILDER_UML_IMAGE} init=${INSIDE_PBUILDER} rw" if linux mem=${UML_MEM} eth0=${MY_ETH0} con0=fd:0,fd:1 con=pty root=/dev/root rootflags=/ rootfstype=hostfs ubd1="${PBUILDER_COW}${PBUILDER_UML_IMAGE}" devfs=mount init=${INSIDE_PBUILDER} rw ; then UML_EXITCODE=$? echo " -> Successful exit from user-mode linux" else UML_EXITCODE=$? echo " -> Exit code ${UML_EXITCODE}" fi } BUILDING_DSC_FILE=$(readlink -f "$1") || true # ignore failure here EXTRACLEANUP= UML_EXITCODE=1 case "${OPERATION}" in build) usecow EXTRACLEANUP=cleancow operate_uml build ;; update) operate_uml update ;; login) if [ "${UML_LOGIN_NOCOW}" = "yes" ]; then echo " -> Not using COW filesystem for login session, modifications to this session will persist" else usecow EXTRACLEANUP=cleancow fi operate_uml login ;; execute) if [ "${UML_LOGIN_NOCOW}" = "yes" ]; then echo " -> Not using COW filesystem for login session, modifications to this session will persist" else usecow EXTRACLEANUP=cleancow fi shift; UML_EXECUTE_EXTRAOPT="${UML_EXECUTE_EXTRAOPT} $@" operate_uml execute ;; dumpconfig) echo " -> start dump outside of UML" echo " -> set" set; echo " -> env" env; echo " -> end dump outside of UML" usecow EXTRACLEANUP=cleancow operate_uml dumpconfig ;; create) if [ -n "${UML_DISTRIBUTION}" ]; then if [ ! -d ~/.pbuilder-user-mode-linux ]; then mkdir ~/.pbuilder-user-mode-linux fi sed "s/dist=.*/dist=${UML_DISTRIBUTION}/" /etc/rootstrap/rootstrap.conf > ~/.pbuilder-user-mode-linux/rootstrap.conf if [ -f rootstrap.conf ]; then sed "s/dist=.*/dist=${UML_DISTRIBUTION}/" rootstrap.conf > ~/.pbuilder-user-mode-linux/rootstrap.conf fi cd ~/.pbuilder-user-mode-linux fi rootstrap -s ${ROOTSTRAP_IMAGESIZE:=1000} ${PBUILDER_UML_IMAGE} operate_uml update ;; *) echo "Error: Unknown option [${OPERATION}] was specified " >&2 ;; esac exit ${UML_EXITCODE} pbuilder-0.215ubuntu7/examples/0000775000000000000000000000000012312041256013363 5ustar pbuilder-0.215ubuntu7/examples/D65various-compiler-support0000664000000000000000000000322012312041170020567 0ustar #!/bin/sh # # pbuilder hook script: choose optional compiler rather than default one # # Sometimes we want to choose other compiler than default, because of improving # code to conform to standard, check compiler quality or so. This script will # ease it. Try enable hook script and set "CHOOSE_COMPILER" variables as clang, # gcc-*, or other compilers (note: however, now only clang and gcc can works # well and others fails to build). # # i.e.) # $ sudo CHOOSE_COMPILER="clang" pbuilder --build foobar_1.0-1.dsc # $ sudo CHOOSE_COMPILER="gcc-4.6" pbuilder --build foobar_1.0-1.dsc # set -e # check whether we are asked to change the compiler. case "${CHOOSE_COMPILER}" in clang) newcc=/usr/bin/"${CHOOSE_COMPILER}" newcxx=/usr/bin/"${CHOOSE_COMPILER}"++ ;; gcc-*) use_gcc_version=$(echo ${CHOOSE_COMPILER} | sed -e s/gcc-//) gxx_package=g++-"${use_gcc_version}" newcc=/usr/bin/"${CHOOSE_COMPILER}" newcxx=/usr/bin/g++-"${use_gcc_version}" ;; tcc) newcc=/usr/bin/"${CHOOSE_COMPILER}" newcxx=/bin/false not_gcc_compat=1 ;; pcc) newcc=/usr/bin/"${CHOOSE_COMPILER}" newcxx=/bin/false not_gcc_compat=1 ;; asn1c) newcc=/usr/bin/"${CHOOSE_COMPILER}" newcxx=/bin/false not_gcc_compat=1 ;; *) exit 0 ;; esac apt-get -y install "${CHOOSE_COMPILER}" ${gxx_package} if [ ! -x /usr/bin/"${CHOOSE_COMPILER}" ]; then echo >&2 "E: Package ${CHOOSE_COMPILER} does not contain compiler driver?" exit 1 fi ln -sf "${newcc}" /usr/bin/cc ln -sf "${newcxx}" /usr/bin/c++ if [ -z "${not_gcc_compat}" ]; then ( cd /usr/bin ln -sf "$newcc" gcc ln -sf "$newcxx" g++ ) else rm -f /usr/bin/gcc /usr/bin/g++ fi exit 0 pbuilder-0.215ubuntu7/examples/B90lintian0000664000000000000000000000061012312041170015207 0ustar #!/bin/bash set -e install_packages() { apt-get -y "${APTGETOPT[@]}" install "$@" } install_packages lintian echo "+++ lintian output +++" su -c "lintian -I --show-overrides /tmp/buildd/*.changes" - pbuilder # use this version if you don't want lintian to fail the build #su -c "lintian -I --show-overrides /tmp/buildd/*.changes; :" - pbuilder echo "+++ end of lintian output +++" pbuilder-0.215ubuntu7/examples/B92test-pkg0000664000000000000000000000227612312041170015323 0ustar #!/bin/bash # example file to be used with --hookdir # # run tests. Current directory is top of source-code. # # 2005, 2007 Junichi Uekawa # set -e echo "Installing the prerequisites" for PKG in $(ls /tmp/buildd/*.deb | sed -e's,.*/,,;s,_.*,,' ); do apt-get install -y --force-yes "$PKG" || true apt-get remove -y "$PKG" || true done # ignore the failures since they are not the prime interest dpkg -i /tmp/buildd/*.deb || true apt-get install -y -f --force-yes if chmod a+x /tmp/buildd/*/debian/pbuilder-test/*; then : else echo "W: no pbuilder-test script found, skipping" exit 0 fi SUCCESS=0 COUNT=0 unset FAIL || true EXIT_CODE=0 # The current directory is the top of the source-tree. cd /tmp/buildd/*/debian/.. for SCRIPT in $(run-parts --test /tmp/buildd/*/debian/pbuilder-test) ; do echo "--- BEGIN test: ${SCRIPT##*/}" if "${SCRIPT}"; then echo SUCCESS ((SUCCESS=SUCCESS+1)) else echo FAIL FAIL[${#FAIL[@]}]="${SCRIPT##*/}" EXIT_CODE=1 fi echo "--- END test: ${SCRIPT##*/}" ((COUNT=COUNT+1)) done echo "Summary:" echo "=== $SUCCESS out of $COUNT tests passed" echo "${FAIL[@]/#/ failed }" echo "-- end of testsuite." exit "${EXIT_CODE}" pbuilder-0.215ubuntu7/examples/C11screen0000775000000000000000000000036412312041170015033 0ustar #!/bin/bash # example file to be used with --hookdir # # invoke GNU screen if build fails. export debian_chroot="pbuilder" apt-get install -y "${APTGETOPT[@]}" screen vim less cd /tmp/buildd/*/debian/.. screen /dev/tty 2> /dev/tty pbuilder-0.215ubuntu7/examples/execute_paramtest.sh0000775000000000000000000000042512312041170017440 0ustar #!/bin/bash # pbuilder example script. # Copyright 2003 Junichi Uekawa #Distributed under GPL version 2 or later # this is parameter testing script for # pbuilder execute. # This program will output the command-line echo "--- parameters given to this script" echo "[$@]" pbuilder-0.215ubuntu7/examples/pbuilder-distribution.sh0000775000000000000000000000135012312041170020237 0ustar #!/bin/sh # script from Jamin W. Collins BTS: #255165 # name this script 'pbuilder-woody', 'pbuilder-sid', 'pbuilder-sarge', 'pbuilder-experimental' etc. OPERATION=$1 DISTRIBUTION=`basename $0 | cut -f2 -d '-'` PROCEED=false BASE_DIR="$HOME/pbuilder" case $OPERATION in create|update|build|clean|login|execute ) PROCEED=true ;; esac if ( $PROCEED == true ) then shift sudo pbuilder $OPERATION \ --basetgz $BASE_DIR/$DISTRIBUTION-base.tgz \ --distribution $DISTRIBUTION \ --buildresult $BASE_DIR/result "$@" else echo "Invalid command..." echo "Valid commands are:" echo " create" echo " update" echo " build" echo " clean" echo " login" echo " execute" exit 1 fi pbuilder-0.215ubuntu7/examples/D20addnonfree0000775000000000000000000000047012312041170015660 0ustar #!/bin/bash # example file to be used with --hookdir # # add non-free and contrib distributions to # /etc/apt/sources.list echo ' Add sid non-free mirror to distribution' echo 'deb '$(awk '/^deb / {print $2} ' < /etc/apt/sources.list | head -1 )' sid contrib non-free' >> /etc/apt/sources.list apt-get update pbuilder-0.215ubuntu7/examples/D15start-stop-daemon0000664000000000000000000000020312312041170017127 0ustar #!/bin/bash # example file to be used with --hookdir # # create a fake start-stop-daemon ln -sf /bin/true /sbin/start-stop-daemon pbuilder-0.215ubuntu7/examples/F90chrootmemo0000664000000000000000000000041612312041170015735 0ustar #!/bin/sh # example file to be used with --hookdir # # an example to make a note that this is a chroot in / # suggested by Turbo Fredriksson # this shell is executed before logging in to chroot via login/execute. echo "This is a chroot made by pbuilder" > /CHROOT pbuilder-0.215ubuntu7/examples/D90chrootmemo0000664000000000000000000000030512312041170015730 0ustar #!/bin/sh # example file to be used with --hookdir # # an example to make a note that this is a chroot in / # suggested by Turbo Fredriksson echo "This is a chroot made by pbuilder" > /CHROOT pbuilder-0.215ubuntu7/examples/B91debc0000664000000000000000000000032112312041170014446 0ustar #!/bin/bash # example file to be used with --hookdir # # 343894: a script to run debc command, contributed from q-funk. apt-get install -y "${APTGETOPT[@]}" devscripts cd /tmp/buildd/*/debian cd .. debc #EOF pbuilder-0.215ubuntu7/examples/B90list-missing0000664000000000000000000000043012312041170016173 0ustar #!/bin/bash # example file to be used with --hookdir # # 343894: script from q-funk. # Depends on CDBS module in debian/rules: # include /usr/share/cdbs/1/rules/utils.mk echo "I: checking for missing files." cd /tmp/buildd/*/debian cd .. fakeroot debian/rules list-missing #EOF pbuilder-0.215ubuntu7/examples/C10shell0000664000000000000000000000031412312041170014652 0ustar #!/bin/bash # example file to be used with --hookdir # # invoke shell if build fails. apt-get install -y "${APTGETOPT[@]}" vim less cd /tmp/buildd/*/debian/.. /bin/bash < /dev/tty > /dev/tty 2> /dev/tty pbuilder-0.215ubuntu7/examples/execute_installtest.sh0000775000000000000000000000107312312041170020006 0ustar #!/bin/bash # pbuilder example script. # Copyright 2003, 2007 Junichi Uekawa #Distributed under GPL version 2 or later #before running this script, make sure you have an up-to-date system #with pbuilder update. # This will install a package using APT inside the chroot and see if # that fails. If it fails, it's wrong. set -ex # practically, killing is not enough, do a reboot here instead. echo 'nobody@nowhere' > /etc/mailname INSTALLTESTPID=$$ ( sleep 1h ; kill $INSTALLTESTPID ) & KILLPID=$! apt-get install -y "${APTGETOPT[@]}" "$@" < /dev/null kill $KILLPID pbuilder-0.215ubuntu7/examples/lvmpbuilder/0000775000000000000000000000000012312041256015710 5ustar pbuilder-0.215ubuntu7/examples/lvmpbuilder/lib/0000775000000000000000000000000012312041256016456 5ustar pbuilder-0.215ubuntu7/examples/lvmpbuilder/lib/lvmbuilder-unimplemented0000775000000000000000000000317312312041170023414 0ustar #! /bin/bash # This documents those features of pbuilder that are unimplemented in lvmbuilder # lvmbuilder -- Debian package builder using LVM # Copyright (C) 2007 Kapil Hari Paranjape # based on: # pbuilder -- personal Debian package builder # Copyright (C) 2001-2006 Junichi Uekawa # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA set -e # Currently we only warn if some unimplemented option or variable # is given on the lvmbuilder command line. function warn_option(){ OP=$1; echo "W: Cannot use variable pbuilder option/variable $OP with lvmbuilder" >&2 } # This portion is not yet used but lists the unimplemented or # undefined variables. LVMBADVARS=("APTCACHEHARDLINK" \ "HOOKDIR" \ "BASETGZ" \ "PRESERVE_BUILDPLACE" \ "BINDMOUNTS" \ "CHROOTEXEC" \ "INTERNAL_BUILD_UML" \ "IGNORE_UMOUNT") function unimplemented(){ for var in "${LVMBADVARS[@]}" do if [ -n "${!var}" ] then echo "W: Cannot use variable $var with lvmbuilder." >&2 fi done } pbuilder-0.215ubuntu7/examples/lvmpbuilder/lib/lvmbuilder-modules0000775000000000000000000001062712312041170022220 0ustar #! /bin/bash # The functions used to mount and unmount the filesystems for lvmbuilder # lvmbuilder -- Debian package builder using LVM # Copyright (C) 2007 Kapil Hari Paranjape # based on: # pbuilder -- personal Debian package builder # Copyright (C) 2001-2006 Junichi Uekawa # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA # lvmbuilder by Kapil Hari Paranjape 2007 Aug 15 # pbuilder by Junichi Uekawa 2001 Aug 25 set -e function clean_basedev(){ echo -n "This will wipe out $BASEDEV. Proceed?[y/N]" read ans if [ "$ans" != "y" -a "$ans" != "Y" ] then exit 0 fi echo "Making new file system at $BASEDEV." mke2fs $BASEDEV } function unmount_basedev(){ umount $BASEDEV e2fsck -f -v $BASEDEV } function setup_workplace(){ # Size computations BASESIZE=$(blockdev --getsize $BASEDEV) COWSIZE=$(blockdev --getsize $COWDEV) TOTAL=$[ $COWSIZE + $BASESIZE ] # Load the necessary modules modprobe dm_zero dm_mirror dm_snapshot dm_mod ## Create the total base device # It consists of the base device extended by zeroes. # The length of the zeroes is the size of the cow. ( echo 0 $BASESIZE linear $BASEDEV 0 ; \ echo $BASESIZE $COWSIZE zero ) | \ dmsetup create $TOTALNAME ## Create the work device # It is the snapshot device with the all writes # going to the cow device. The file-system is resized # to the maximum extent possible. echo 0 $TOTAL snapshot $TOTALDEV $COWDEV n 16 | \ dmsetup create $WORKNAME [ -b $WORKDEV ] && resize2fs $WORKDEV mount $WORKDEV $BUILDPLACE } function takedown_workplace(){ umount /dev/mapper/lvmbuilder-work dmsetup remove lvmbuilder-work dmsetup remove lvmbuilder-total } function showhelp(){ cat <&2 exit 1 fi . "$2"; PBCMDLINE+=("--configfile" "$2"); shift; shift; ;; # We also grab those options that are likely to be meaningless with # lvmbuilder --basetgz) BASETGZ="$2"; warn_option $1; shift; shift; ;; --hookdir) HOOKDIR="$2"; warn_option $1; shift; shift; ;; --preserve-buildplace) PRESERVE_BUILDPLACE="yes" warn_option $1; shift; ;; --bindmounts) BINDMOUNTS="${BINDMOUNTS} $2" warn_option $1; shift; shift; ;; --save-after-login|--save-after-exec) SAVE_AFTER_LOGIN=yes; warn_option $1; shift; ;; --internal-chrootexec) CHROOTEXEC="$2" warn_option $1; shift; shift; ;; --internal-build-uml) INTERNAL_BUILD_UML="yes" IGNORE_UMOUNT="no" warn_option $1; shift; ;; --|*.dsc) break; ;; *) PBCMDLINE+=("$1"); shift; ;; esac done # Add a no-targz option at the end of the cmdline to override # any conflicting options set by the user PBCMDLINE+=("--no-targz"); # These variables must be defined properly in order for us to proceed! BUILDPLACE=${BUILDPLACE:?"E: Build root directory is not defined"} if [ ! -d "$BUILDPLACE" ] ; then echo "E: Directory $2 does not exist" >&2 exit 1 else BUILDPLACE=$(readlink -f "$BUILDPLACE") PBCMDLINE+=("--buildplace" "$BUILDPLACE") fi BASEDEV=${BASEDEV:?"E: Base device is not defined"} if [ ! -b "$BASEDEV" ] ; then echo "E: Base device is not a block device" >&2 exit 1 else BASEDEV=$(readlink -f "$BASEDEV") fi COWDEV=${COWDEV:?"E: Cow device is not defined"} if [ ! -b "$COWDEV" ]; then echo "E: Cow device is not a block device" >&2 exit 1 else COWDEV=$(readlink -f "$COWDEV") fi PBCMDLINE+=("$@") pbuilder-0.215ubuntu7/examples/lvmpbuilder/README0000664000000000000000000000336412312041170016571 0ustar The files under this directory were written by Kapil Hari Paranjape and are based on pbuilder by Junichi Uekawa. They are placed under the GPL (see the header of each file for details). These files are scripts to help pbuilder run with the linux device mapper. I hope the files are reasonably well commented. If not please ask me. The order of things is roughly as follows. 1. Create/assign two block devices for build work. The BASEDEV device should have enough space to hold the basic debian buildd root (an unpacked base.tgz from pbuilder). The COWDEV device should have enough space to actually perform the build. WARNING: All data on these two devices will be wiped out in the process of using lvmbuilder. You have been warned. 1a.You could use a script like "sample_device_creator" to create two block devices. This creates "loop"back block devices out of files. WARNING: This is a sample script which I no longer use. Instead I have two real block devices reserved for build work. 2. You should edit your ~/.pbuilderrc and add two lines BASEDEV= COWDEV= you can also give these on the command line with --basedev and --cowdev 3. Edit the lvmbuilder script to give the location of the lib subdirectory. 4. After this you can use lvmbuilder in place of pbuilder for the "create", "update", "build", "login" and "execute" operations. A number of command line options of pbuilder do not make sense in the lvm context --- these should generate error messages. See the file STRATEGY for details. Hope this helps! -- Kapil Hari Paranjape Wed, 15 Aug 2007 09:55:17 +0530 pbuilder-0.215ubuntu7/examples/lvmpbuilder/lvmbuilder0000775000000000000000000000467412312041170020011 0ustar #! /bin/bash # lvmbuilder -- Debian package builder using LVM # Copyright (C) 2007 Kapil Hari Paranjape # based on: # pbuilder -- personal Debian package builder # Copyright (C) 2001-2006 Junichi Uekawa # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA # lvmbuilder by Kapil Hari Paranjape 2007 Aug 15 # pbuilder by Junichi Uekawa 2001 Aug 25 set -e # Base directory for LVM stuff LVMBLIB=./lib 'LVMBLIB needs to be defined' # For safe file creation umask 0022 # command line operation OP="$1" shift case "$OP" in --create|create) . ${LVMBLIB}/lvmbuilder-checkparams . ${LVMBLIB}/lvmbuilder-modules clean_basedev mount $BASEDEV $BUILDPLACE trap unmount_basedev exit pbuilder "$OP" "${PBCMDLINE[@]}" ;; --update|update) . ${LVMBLIB}/lvmbuilder-checkparams . ${LVMBLIB}/lvmbuilder-modules mount $BASEDEV $BUILDPLACE trap unmount_basedev exit pbuilder "$OP" "${PBCMDLINE[@]}" ;; --clean|clean) . ${LVMBLIB}/lvmbuilder-checkparams . ${LVMBLIB}/lvmbuilder-modules clean_basedev . /usr/lib/pbuilder/pbuilder-checkparams if [ -n "$APTCACHE" ]; then echo "Cleaning [$APTCACHE]" clean_subdirectories "$APTCACHE" || true fi ;; --build|build|--login|login|--execute|execute) . ${LVMBLIB}/lvmbuilder-checkparams . ${LVMBLIB}/lvmbuilder-modules setup_workplace trap takedown_workplace exit pbuilder "$OP" "${PBCMDLINE[@]}" ;; --dumpconfig|dumpconfig) . ${LVMBLIB}/lvmbuilder-checkparams . ${LVMBLIB}/lvmbuilder-modules echo " -> start dump config" echo " -> set" set; echo " -> env" env; echo " -> end dump config" ;; --debuild|debuild) echo "E: The debuild mode of pbuilder is currently not supported by lvmbuilder." >&2 exit 1 ;; *) . ${LVMBLIB}/lvmbuilder-modules showhelp ;; esac pbuilder-0.215ubuntu7/examples/lvmpbuilder/STRATEGY0000664000000000000000000000225112312041170017070 0ustar 1. We require that the user has defined (either in the environment or in one of the pbuilderrc files), two devices: BASEDEV This is the device where the persistent ext2 filesystem containing the basic build file system lies (what is usually kept in base.tgz). This file system should be e2fsck -f clean. create/update/clean go here. COWDEV This is the device to which the writes will actually go during the build/login/execute. 2. For create/update/clean, we just mount BASEDEV in the appropriate place and run pbuilder create/update/clean --no-tgz. We run an e2fsck -f at the end. 3. For all other operations: a. we create a new device TOTALDEV consisting of BASEDEV extended by zeroes by the size of COWDEV. d. we create a snapshot version WORKDEV of TOTALDEV with the writes going to COWDEV. e. we resize2fs the filesystem WORKDEV. This step could be *slow*. f. we mount WORKDEV in the appropriate place and run pbuilder with the appropriate command. g. on exit or error we must unmount WORKDEV and remove WORKDEV and TOTALDEV. pbuilder-0.215ubuntu7/examples/D80no-man-db-rebuild0000775000000000000000000000023112312041170016750 0ustar #!/bin/sh # Don't rebuild man-db echo "I: Preseed man-db/auto-update to false" debconf-set-selections < #include int main() { printf("hello world\n"); eci_init(); eci_command("engine-status"); printf("%s\n", eci_last_string()); eci_cleanup(); return 0; } pbuilder-0.215ubuntu7/examples/pbuilder-test/003_makecheck0000664000000000000000000000007412312041170020362 0ustar #!/bin/bash # run upstream-provided make check. make check pbuilder-0.215ubuntu7/examples/rebuild/0000775000000000000000000000000012312041256015011 5ustar pbuilder-0.215ubuntu7/examples/rebuild/buildall0000775000000000000000000000360412312041170016525 0ustar #!/bin/bash # # rebuild - builds every package in a clean cowbuilder environment # Usage: rebuild list # # Copyright (C) 2007 Bastian Venthur # # License: GPL 2 # # Version: 2007-06-06 # * Included many patches from Gregor Herrmann # Version: 2007-02-21 # * Initial release LIST=$1 DIST=${2:-testing} MIRROR=http://ftp.at.debian.org LOGDIR=$(pwd)/"logs" BUILDDIR=$(pwd)/"build" BASEPATH="/var/cache/pbuilder/testing-base.cow" # source lsb-functions for nice log messages . /lib/lsb/init-functions function build { PACKAGE=$1 mkdir -p $BUILDDIR/$PACKAGE cd $BUILDDIR/$PACKAGE #apt-get source $PACKAGE -t $DIST > /dev/null 2> $LOGDIR/.$PACKAGE G=$(grep-dctrl -S -n -s Directory,Version -r ^$PACKAGE\$ ../../Sources) set -- $G DIR=$1 VER=`echo $2 | sed s/^.*://` dget -x ${MIRROR}/debian/${DIR}/${PACKAGE}_${VER}.dsc > /dev/null 2> $LOGDIR/.$PACKAGE cd $(find . -type d ! -name .) mkdir -p $BUILDDIR/$PACKAGE/result pdebuild --pbuilder cowbuilder --use-pdebuild-internal --buildresult $BUILDDIR/$PACKAGE/result/ -- --basepath $BASEPATH >> $LOGDIR/.$PACKAGE 2>&1 if [ $? -eq 0 ]; then mv $LOGDIR/.$PACKAGE $LOGDIR/succeeded-$PACKAGE log_action_end_msg 0 else mv $LOGDIR/.$PACKAGE $LOGDIR/failed-$PACKAGE log_action_end_msg 1 fi cd $BUILDDIR rm -rf $PACKAGE } [ -d $LOGDIR ] || mkdir $LOGDIR if [ ! -e "$LIST" ]; then log_failure_msg "No Buildlist given." exit 1 fi while read package; do # Create Lockfile (ln -s is atomic and fails if link already exists) ln -s $package $LOGDIR/.$package.lock 2> /dev/null || continue # Build the package if not already built if [ ! -e $LOGDIR/succeeded-$package -a ! -e $LOGDIR/failed-$package ]; then log_action_begin_msg "$(date +%F\ %T) Building $package " build $package fi # Remove Lockfile rm -f $LOGDIR/.$package.lock done < $LIST pbuilder-0.215ubuntu7/examples/rebuild/README0000664000000000000000000000315012312041170015663 0ustar :1. Preparing the cowbuilder: ============================ sudo aptitude install cowdancer grep-dctrl wget sudo cowbuilder --create --distribution squeeze --basepath /var/cache/pbuilder/testing-base.cow 2. Getting the list of packages to build: ========================================= getlist squeeze Will fetch the Sources.gz for main and contrib of the distribution you choose and creates two files: 1. list.squeeze 2. list.squeeze.i368 The first list contains the name of all packages followed by all architectures it can be build on. The second list Contains the names of all packages which can be build on your arch. 3. Setting the rebuild variables: ================================= The only setting should change is the BASEPATH variable. It must match the --basepath option you gave. The other settings BUILDDIR and LOGDIR are optional. 4. Rebuilding the archive ========================= rebuild list.squeeze.i386 squeeze Will attempt to build all packages appearing in list.testing.i368. It will temporarily build them in $BUILDDIR/$PACKAGE and will use $LOGDIR to create lock- and logfiles. NOTES: ====== - On a machine with more than one processor you can run multiple instances of the rebuild script in order to speed up the build process by building multiple packages concurrently - When building for a different distribution (testing) than the one the host system is running (sid) you got to make sure that apt-get source fetches the right sources. Otherwise you'll rebuild the packages from sid in a testing environment and get false-positive FTBFS. -- 2007-02-21, Bastian Venthur pbuilder-0.215ubuntu7/examples/rebuild/getlist0000775000000000000000000000121012312041170016377 0ustar #!/bin/sh DIST=$1 BUILD_ARCH=$(dpkg-architecture -qDEB_BUILD_ARCH) MIRROR=http://ftp.at.debian.org if [ -z $DIST ]; then echo "No distribution given." exit 1 fi wget -q ${MIRROR}/debian/dists/$DIST/main/source/Sources.gz -O Sources.main.gz wget -q ${MIRROR}/debian/dists/$DIST/contrib/source/Sources.gz -O Sources.contrib.gz zcat Sources.main.gz Sources.contrib.gz > Sources grep -E "^Package|^Architecture|^$" Sources | paste -s -d "=" | sed "s/==/\n/g" | sed "s/=/ /g" | cut -d " " -f 2,4- > list.$DIST grep -E " all| any| $BUILD_ARCH" list.$DIST | cut -d " " -f 1 > list.$DIST.$BUILD_ARCH rm -f Sources.main.gz Sources.contrib.gz pbuilder-0.215ubuntu7/debuild-pbuilder0000664000000000000000000000043012312041170014674 0ustar #!/bin/bash set -e while ! test -d ./debian -o "$(pwd)" = "/" ; do cd ..; done if test ! -d ./debian; then echo "E: Cannot find ./debian dir" >&2 exit 1 fi; . /usr/lib/pbuilder/pbuilder-loadconfig $PBUILDERROOTCMD "$PBUILDERSATISFYDEPENDSCMD" /usr/bin/debuild "$@" pbuilder-0.215ubuntu7/pbuilder-satisfydepends-checkparams0000775000000000000000000000474612312041170020611 0ustar #!/bin/bash # pbuilder -- personal Debian package builder # Copyright (C) 2001,2002,2003,2005-2007 Junichi Uekawa # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA # # module to satisfy build dependencies; parse command line parameters DEBIAN_CONTROL=debian/control CHROOT="" CHROOTEXEC="" BINARY_ARCH="no" FORCEVERSION="" CONTINUE_FAIL="no" CHROOTEXEC_AFTER_INTERNAL_CHROOTEXEC=no ALLOWUNTRUSTED=no while [ -n "$1" ]; do case "$1" in --control|-c) DEBIAN_CONTROL="$2" shift; shift ;; # --chroot option and --internal-chrootexec options and --echo options somewhat conflict with each other. --chroot) CHROOT="$2" CHROOTEXEC="chroot $2 " if [ ${CHROOTEXEC_AFTER_INTERNAL_CHROOTEXEC} = maybe ]; then echo '--chroot specified after --internal-chrootexec' >&2 exit 1 fi shift; shift ;; --internal-chrootexec) CHROOTEXEC="$2" CHROOTEXEC_AFTER_INTERNAL_CHROOTEXEC=maybe shift; shift ;; --echo) CHROOTEXEC="echo $CHROOTEXEC" CHROOTEXEC_AFTER_INTERNAL_CHROOTEXEC=maybe shift ;; --binary-all) BINARY_ARCH="no" shift ;; --binary-arch) BINARY_ARCH="yes" shift ;; --continue-fail) CONTINUE_FAIL="yes" shift ;; --force-version) FORCEVERSION="yes" shift; ;; --check-key) ALLOWUNTRUSTED=no shift; ;; --allow-untrusted) ALLOWUNTRUSTED=yes shift; ;; --help|-h|*) print_help exit 1 ;; esac done if [ $ALLOWUNTRUSTED = yes ]; then # Also duplicated in pbuilder-checkparams! # apt flag to accept untrusted packages APTGETOPT[${#APTGETOPT[@]}]='--force-yes' # aptitude flag to accept untrusted packages APTITUDEOPT[${#APTITUDEOPT[@]}]='-o' APTITUDEOPT[${#APTITUDEOPT[@]}]='Aptitude::CmdLine::Ignore-Trust-Violations=true' fi checkbuilddep_internal pbuilder-0.215ubuntu7/pbuilder-updatebuildenv0000775000000000000000000000650412312041170016312 0ustar #! /bin/bash # pbuilder -- personal Debian package builder # Copyright (C) 2001-2003,2005-2007 Junichi Uekawa # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA set -e . /usr/lib/pbuilder/pbuilder-checkparams . /usr/lib/pbuilder/pbuilder-runhooks if [ -n "$DISTRIBUTION" ] && [ "$OVERRIDE_APTLINES" = "yes" ]; then log "I: Upgrading for distribution $DISTRIBUTION" fi if [ "${PBUILDER_DEBUGMODE}" = "yes" ]; then TRAP="echo ignoring trap " else TRAP=trap fi # show the current time before doing anything. echobacktime extractbuildplace $TRAP umountproc_cleanbuildplace_trap exit sighup loadhooks log "I: Refreshing the base.tgz " log "I: upgrading packages" $CHROOTEXEC /usr/bin/apt-get -q update case "`readlink -e "$PBUILDERSATISFYDEPENDSCMD"`" in *-aptitude) EXTRAPACKAGES="$EXTRAPACKAGES aptitude" ;; *) EXTRAPACKAGES="$EXTRAPACKAGES aptitude-" ;; esac if [ -n "$CCACHEDIR" ]; then EXTRAPACKAGES="$EXTRAPACKAGES ccache" else EXTRAPACKAGES="$EXTRAPACKAGES ccache-" fi if [ -n "$REMOVEPACKAGES" ]; then # FIXME this wont work if the packages have some reverse dependencies; # apt-get can also remove package, either with apt-get remove or purge, or # with apt-get install name-of-pkg- (i.e. a minus sign after the package # name) $CHROOTEXEC /usr/bin/dpkg --purge $REMOVEPACKAGES fi recover_aptcache $TRAP saveaptcache_umountproc_cleanbuildplace_trap exit sighup $CHROOTEXEC /usr/bin/apt-get -q -y "${APTGETOPT[@]}" "${FORCE_CONFNEW[@]}" dist-upgrade # autoremove: Ignore error in case of etch because apt in etch doesn't # support autoremove. TODO: Do not ignore error when etch is no longer # supported. $CHROOTEXEC /usr/bin/apt-get -q -y "${APTGETOPT[@]}" autoremove || true $CHROOTEXEC /usr/bin/apt-get -q -y "${APTGETOPT[@]}" install \ build-essential \ dpkg-dev \ $EXTRAPACKAGES save_aptcache add_additional_aptkeyrings # optionally auto-clean apt-cache if [ "${AUTOCLEANAPTCACHE}" = "yes" -a -n "$APTCACHE" ]; then log "I: Cleaning the cached apt archive" $CHROOTEXEC /usr/bin/apt-get autoclean || true find "$APTCACHE/" -maxdepth 1 -name \*.deb | \ while read A; do if [ ! -f "$BUILDPLACE/var/cache/apt/archives/"$(basename "$A") -a \ -f "$A" ]; then log "I: obsolete cache content "$(basename "$A")" removed" rm -f "$A" || true fi done fi $TRAP umountproc_cleanbuildplace_trap exit sighup executehooks "E" unloadhooks umountproc $CHROOTEXEC /usr/bin/apt-get clean || true $TRAP cleanbuildplace_trap exit sighup if [ ! "${INTERNAL_BUILD_UML}" = "yes" ]; then create_basetgz fi if [ "${PRESERVE_BUILDPLACE}" = "yes" ]; then : else : cleanbuildplace fi trap - exit sighup exit 0 pbuilder-0.215ubuntu7/pbuilder-buildpackage-funcs0000664000000000000000000000765612312041170017034 0ustar #! /bin/bash # pbuilder -- personal Debian package builder # Copyright (C) 2001,2002,2005-2007 Junichi Uekawa # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA # functions local to pbuilder-buildpackage function copydsc () { local DSCFILE="$1" local TARGET="$2" for FILE in \ "$DSCFILE" \ $(cat "$DSCFILE" | \ awk 'BEGIN{p=0} /^$/ {p=0} /^.*:/ {p=0} {if (p){print "'$(dirname "$DSCFILE")'/" $3}} /^Files:/{p=1}' ) ; do log "I: copying [$FILE]" cp -p "$FILE" "$TARGET" done } function checkbuilddep () { # call satisfydepends local BUILDOPT="--binary-all" case "${BINARY_ARCH}" in yes) BUILDOPT="--binary-arch";; *) ;; esac if "$PBUILDERSATISFYDEPENDSCMD" --control "$1" --chroot "${BUILDPLACE}" --internal-chrootexec "${CHROOTEXEC}" "${BUILDOPT}" "${PBUILDERSATISFYDEPENDSOPT[@]}"; then : else # If asked to preserve the build place, and pbuilder-satisfydepends # didn't taint it, then don't clean it when exiting. if [ $? -eq 2 -a "${PRESERVE_BUILDPLACE}" = "yes" ]; then trap umountproc_trap exit sighup fi log "E: pbuilder-satisfydepends failed." exit 2 fi # install extra packages to the chroot if [ -n "$EXTRAPACKAGES" ]; then $CHROOTEXEC usr/bin/apt-get -q -y "${APTGETOPT[@]}" install ${EXTRAPACKAGES} fi } function showbuildbanner () { # show some banners for building log "I: pbuilder-buildpackage/"$(dpkg --print-architecture) log "I: $1" } function cowprotect () { # a hack for cowdancer, used when a file is edited in-place; # Copy the file to create a new i-node so that hardlinked original is intact for A in "$@"; do if readlink -f "$A" > /dev/null; then A=$(readlink -f "$A") mv "$A" "$A"~ cp -a "$A"~ "$A" rm -f "$A"~ fi done } function createbuilduser () { # create the build user, if it is necessary and specified. if [ -n "$BUILDUSERNAME" -a -n "$BUILDUSERID" ]; then if [ -e $BUILDPLACE/etc/shadow ]; then p='x'; else p='*'; fi if [ -e $BUILDPLACE/etc/gshadow ]; then g='x'; else g='*'; fi if ! grep -q ^$BUILDUSERNAME: $BUILDPLACE/etc/passwd; then cowprotect $BUILDPLACE/etc/passwd echo "$BUILDUSERNAME:$p:$BUILDUSERID:$BUILDUSERID:,,,:/tmp/buildd:/bin/sh" >> $BUILDPLACE/etc/passwd fi if ! grep -q ^$BUILDUSERNAME: $BUILDPLACE/etc/group; then cowprotect $BUILDPLACE/etc/group echo "$BUILDUSERNAME:$g:$BUILDUSERID:" >> $BUILDPLACE/etc/group fi if [ -e $BUILDPLACE/etc/shadow ] && ! grep -q ^$BUILDUSERNAME: $BUILDPLACE/etc/shadow; then cowprotect $BUILDPLACE/etc/shadow echo "$BUILDUSERNAME:!:::::::" >> $BUILDPLACE/etc/shadow fi if [ -e $BUILDPLACE/etc/gshadow ] && ! grep -q ^$BUILDUSERNAME: $BUILDPLACE/etc/gshadow; then cowprotect $BUILDPLACE/etc/gshadow echo "$BUILDUSERNAME:!::" >> $BUILDPLACE/etc/gshadow fi unset LOGNAME || true else unset LOGNAME || true fi } function setup_ccache() { if [ -n "$CCACHEDIR" ]; then log "I: Setting up ccache" if ! [ -d "$BUILDPLACE/$CCACHEDIR" ]; then mkdir -p "$BUILDPLACE/$CCACHEDIR" fi chown -R $BUILDUSERID:$BUILDUSERID "$BUILDPLACE/$CCACHEDIR" # Unfortunate difference between pbuilder-style and ccache-style config # env vars :-/ export CCACHE_DIR="$CCACHEDIR" fi } pbuilder-0.215ubuntu7/pbuildd/0000775000000000000000000000000012312041256013170 5ustar pbuilder-0.215ubuntu7/pbuildd/build-agent.sh0000775000000000000000000000110412312041170015711 0ustar #!/bin/bash # accept host name as $1 # return unbuilt package, and reserve the package for building. # exit 1 if no more package is available. # 2004 1 12, Junichi Uekawa cd /game/buildd/ #build agent for pbuilder for A in $( zcat /mirror/debian/dists/sid/main/source/Sources.gz | sed -n 's/^Package: //p' | cut -d\ -f1|sort | uniq | bogosort -n ); do #waitingroutine if [ $(find -name $A.log | wc -l ) != "0" ]; then echo Already build tried for "$A" >&2 else echo $A echo "$1 $(date)" > WORKING/$A.log exit 0 fi done exit 1 pbuilder-0.215ubuntu7/pbuildd/buildd-config.sh0000664000000000000000000000056512312041170016233 0ustar # this is the configuration for buildd-pbuilder. BASEDIRECTORY=/var/cache/pbuilder/pbuildd/ MIRROR=ftp.debian.org HOOKDIR=/usr/share/doc/pbuilder/examples/pbuildd/hookdir ROOTCOMMAND=sudo # the following is one sample: function waitingroutine () { while sleep 1s; do if ps ax | grep "x[l]ock"; then # if xlock does exist, break from loop break fi done }pbuilder-0.215ubuntu7/pbuildd/hookdir/0000775000000000000000000000000012312041256014627 5ustar pbuilder-0.215ubuntu7/pbuildd/hookdir/A10dpkg-l.sh0000775000000000000000000000003312312041170016575 0ustar #!/bin/sh set -e dpkg -l pbuilder-0.215ubuntu7/pbuildd/Makefile0000664000000000000000000000067212312041170014630 0ustar PBUILDDDIR=/usr/share/doc/pbuilder/examples/pbuildd/ all: clean: rm -f *~ install: install -d $(DESTDIR)$(PBUILDDDIR) install -d $(DESTDIR)$(PBUILDDDIR)/hookdir install -d $(DESTDIR)/var/cache/pbuilder/pbuildd install -m 755 -o root -g root buildd.sh $(DESTDIR)$(PBUILDDDIR) install -m 644 -o root -g root buildd-config.sh $(DESTDIR)/etc/pbuilder/ install -m 755 -o root -g root hookdir/A10dpkg-l.sh $(DESTDIR)$(PBUILDDDIR)/hookdir pbuilder-0.215ubuntu7/pbuildd/README0000664000000000000000000000032112312041170014037 0ustar This directory contains examples for running pbuilder on multiple hosts. This is the configuration used in 'compiler' system. build-agent.sh -- the agent on the master side remote-buildd.sh -- the buildd pbuilder-0.215ubuntu7/pbuildd/install-test.sh0000775000000000000000000000156712312041170016156 0ustar #!/bin/bash # all-rebuilder script. set -e . buildd-config.sh SUCCESS=install-success FAIL=install-fail WORKING=install-work mkdir $SUCCESS || true mkdir $FAIL || true mkdir $WORKING || true function buildone() { local PROGNAME="$1" local LOGFILE=${WORKING}/"$PROGNAME.log" echo "Trying $1" if pbuilder-user-mode-linux execute --logfile "$LOGFILE" /usr/share/doc/pbuilder/examples/execute_installtest.sh "$1"; then mv "$LOGFILE" "$SUCCESS" echo " Install successful" else mv "$LOGFILE" "$FAIL" echo " Install fail" fi } $ROOTCOMMAND dselect update #$ROOTCOMMAND pbuilder update pbuilder-user-mode-linux update tmpfile=$(tempfile) wget "${MIRROR}"/debian/dists/unstable/main/binary-i386/Packages.gz -O${tmpfile} for A in $( zcat ${tmpfile} | sed -n 's/^Package: //p' | bogosort -n ); do #waitingroutine buildone $A done rm -f ${tmpfile} pbuilder-0.215ubuntu7/pbuildd/buildd.sh0000775000000000000000000000511312312041170014765 0ustar #!/bin/bash # all-rebuilder script. set -e . /etc/pbuilder/buildd-config.sh NOBUILDDEP=${BASEDIRECTORY}/FAILED/NOBUILDDEP FAILED=${BASEDIRECTORY}/FAILED DEPWAIT=${BASEDIRECTORY}/DEPWAIT SUCCESS=${BASEDIRECTORY}/SUCCESS mkdir "$FAILED" || true mkdir "$DEPWAIT" || true mkdir "$SUCCESS" || true mkdir ${BASEDIRECTORY}/WORKING || true mkdir ${BASEDIRECTORY}/STATUS || true mkdir "$NOBUILDDEP" || true BUILDRESULTDIR=${PWD}/RESULT-deb mkdir "$BUILDRESULTDIR" || true STATUSFILE=${BASEDIRECTORY}/STATUS/$(hostname)-$$ BUILDTMP=${BASEDIRECTORY}/tmp-b-$(hostname)-$$ function status () { echo "$@" > $STATUSFILE echo "$@" } function buildone() { local PROGNAME="$1" local LOGFILE=${BASEDIRECTORY}/WORKING/"$PROGNAME.log" status "building $PROGNAME" mkdir $BUILDTMP || true ( cd $BUILDTMP apt-get source -d $PROGNAME if sudo pbuilder build --hookdir "${HOOKDIR}" --buildresult . --logfile "$LOGFILE" *.dsc; then mv "$LOGFILE" "$SUCCESS" echo Build successful else if grep "^E: pbuilder: Could not satisfy build-dependency." $LOGFILE > /dev/null; then mv "$LOGFILE" "$DEPWAIT" echo Dependency cannot be satisfied. elif [ $(awk '/ -> Attempting to parse the build-deps/,/^ -> Finished parsing the build-deps/{print $0}' $LOGFILE | wc -l ) = "2" ]; then echo "Missing build-deps" mv "$LOGFILE" "$NOBUILDDEP" elif grep '^E: Could not satisfy build-dependency' "$LOGFILE" > /dev/null ; then echo "Build-dep wait" mv "$LOGFILE" "$DEPWAIT" elif grep '^E: pbuilder-satisfydepends failed.' "$LOGFILE" > /dev/null ; then echo "Build-dep satisfaction failed on other package's installation" mv "$LOGFILE" "$DEPWAIT" else mv "$LOGFILE" "$FAILED" echo Build failed fi fi ) status "finished building $PROGNAME" rm -rf $BUILDTMP; } $ROOTCOMMAND dselect update $ROOTCOMMAND pbuilder update tmpfile=$(tempfile) wget "${MIRROR}"/debian/dists/unstable/main/source/Sources.gz -O${tmpfile} for A in $( zcat ${tmpfile} | awk "BEGIN { RS = \"\" } {if (match(\$0, /\nArchitecture: [^\n]*(all|any|`dpkg --print-architecture`)/)) print \$0}" | sed -n 's/^Package: //p' | cut -d\ -f1|sort | uniq | bogosort -n ); do # this part needs to be atomic status "considering $A" if grep "^$A$" $AVOIDLIST; then echo Skip. continue fi if echo "$A" | grep "^kernel-image"; then echo I hate kernel images. continue fi if [ $(find ${BASEDIRECTORY} -name $A.log | wc -l ) = "1" ]; then echo Already build tried for "$A" continue fi # end of atomic. waitingroutine buildone $A done rm -f ${tmpfile} pbuilder-0.215ubuntu7/pbuildd/remote-buildd.sh0000775000000000000000000000552212312041170016262 0ustar #!/bin/bash # all-rebuilder script. # remote-agent. runs on remote machine and runs with master node. # 2004 01 12 set -e . buildd-config.sh NOBUILDDEP=${BASEDIRECTORY}/FAILED/NOBUILDDEP FAILED=${BASEDIRECTORY}/FAILED DEPWAIT=${BASEDIRECTORY}/DEPWAIT SUCCESS=${BASEDIRECTORY}/SUCCESS DEPWAIT=${BASEDIRECTORY}/DEPWAIT mkdir "$FAILED" || true mkdir "$DEPWAIT" || true mkdir "$SUCCESS" || true mkdir "$DEPWAIT" || true mkdir ${BASEDIRECTORY}/WORKING || true mkdir ${BASEDIRECTORY}/STATUS || true mkdir "$NOBUILDDEP" || true BUILDRESULTDIR=${PWD}/RESULT-deb mkdir "$BUILDRESULTDIR" || true STATUSFILE=${BASEDIRECTORY}/STATUS/$(hostname)-$$ BUILDTMP=${BASEDIRECTORY}/tmp-b-$(hostname)-$$ function status () { echo "$@" > $STATUSFILE echo "$@" } function buildone() { local PROGNAME="$1" local LOGFILE=${BASEDIRECTORY}/WORKING/"$PROGNAME.log" # this part needs to be atomic status "considering $PROGNAME" if grep "$PROGNAME" avoidlist; then echo Skip. return fi if echo "$PROGNAME" | grep "^kernel-image"; then echo I hate kernel images. return fi # end of atomic. status "building $PROGNAME" mkdir $BUILDTMP || true ( cd $BUILDTMP apt-get source -d $PROGNAME if /usr/sbin/pbuilder build --hookdir "${HOOKDIR}" --buildresult . --logfile "$LOGFILE" *.dsc; then scp "$LOGFILE" "$MASTER:$SUCCESS" mv "$LOGFILE" "$SUCCESS" echo Build successful else if grep "^E: pbuilder: Could not satisfy build-dependency." $LOGFILE > /dev/null; then scp "$LOGFILE" "$MASTER:$DEPWAIT" mv "$LOGFILE" "$DEPWAIT" echo Dependency cannot be satisfied. elif [ $(awk '/ -> Attempting to parse the build-deps/,/^ -> Finished parsing the build-deps/{print $0}' $LOGFILE | wc -l ) = "2" ]; then echo "Missing build-deps" scp "$LOGFILE" "$MASTER:$NOBUILDDEP" mv "$LOGFILE" "$NOBUILDDEP" elif grep '^E: Could not satisfy build-dependency' "$LOGFILE" > /dev/null ; then echo "Build-dep wait" scp "$LOGFILE" "$MASTER:$DEPWAIT" mv "$LOGFILE" "$DEPWAIT" else cat "$LOGFILE" | fsh $MASTER mail -s "\"pbuilder-FTBFS [$(hostname)] $(basename $LOGFILE) \"" dancer-pbuildlog@netfort.gr.jp scp "$LOGFILE" "$MASTER:$FAILED" mv "$LOGFILE" "$FAILED" echo Build failed fi fi ) status "finished building $PROGNAME" rm -rf $BUILDTMP; } $ROOTCOMMAND dselect update $ROOTCOMMAND /usr/sbin/pbuilder update #pbuilder-user-mode-linux update while sleep 1s; do A=$( ssh $MASTER /game/buildd/build-agent.sh $(hostname ) ); if [ $? = 1 ]; then exit ; fi buildone $A done pbuilder-0.215ubuntu7/test_testlib.sh0000775000000000000000000000117012312041170014603 0ustar #!/bin/bash # testsuite for testlib if [ -n "$PBUILDER_CHECKOUT" ]; then . "$PBUILDER_CHECKOUT/testlib.sh" else # these currently don't need to be exported PBUILDER_TEST_ROOT="${PBUILDER_ROOT:-}" PBUILDER_TEST_PKGLIBDIR="${PBUILDER_PKGLIBDIR:-$PBUILDER_ROOT/usr/lib/pbuilder}" . "$PBUILDER_TEST_PKGLIBDIR/testlib.sh" fi test_success() { exit 0 } test_fail() { exit 1 } test_options() { echo "$@" exit 1 } test_output() { echo "$@" } expect_success test_success expect_fail test_fail expect_fail test_options "hello world" expect_output "foo bar" test_output "foo" "bar" testlib_summary pbuilder-0.215ubuntu7/pbuilder-uml.conf0000664000000000000000000000057012312041170015012 0ustar #documented in pbuilder-uml.conf.5 MY_ETH0=tuntap,,,192.168.0.2 UML_IP=192.168.0.3 UML_NETMASK=255.255.255.0 UML_NETWORK=192.168.0.0 UML_BROADCAST=255.255.255.255 UML_GATEWAY=192.168.0.1 PBUILDER_UML_IMAGE="${HOME}/uml-image" UML_MOUNT_TMPFS="no" BUILDPLACE="${HOME}/tmp/" UML_MEM=128M UML_HOSTNAME=$(hostname) UML_BUILDRESULT= ROOTSTRAP_IMAGESIZE=1000 APTCACHEHARDLINK=no pbuilder-0.215ubuntu7/pdebuild-user-mode-linux0000664000000000000000000000446512312041170016317 0ustar #! /bin/bash # pbuilder-user-mode-linux -- personal Debian package builder # Copyright (C) 2003-2007 Junichi Uekawa # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA set -e while ! test -d ./debian -o "$(pwd)" = "/" ; do cd ..; done if test ! -d ./debian; then echo "E: Cannot find ./debian dir" >&2 exit 1 fi; export PBCURRENTCOMMANDLINEOPERATION="pdebuild" . /usr/lib/pbuilder/pbuilder-loadconfig . /usr/lib/pbuilder/pdebuild-uml-checkparams PKG_SOURCENAME=$(dpkg-parsechangelog|sed -n 's/^Source: //p') PKG_VERSION=$(dpkg-parsechangelog|sed -n 's/^Version: \(.*:\|\)//p') ARCHITECTURE=$(dpkg-architecture -qDEB_HOST_ARCH) if [ "${USE_PDEBUILD_INTERNAL}" = 'yes' ]; then if [ ! readlink -f .. ]; then echo "E: Cannot find .. dir from PWD=$(pwd)" >&2 exit 1 fi pbuilder-user-mode-linux \ execute \ "$@" \ --bindmounts $(readlink -f ..) \ /usr/lib/pbuilder/pdebuild-internal \ ${PWD} \ --debbuildopts "" \ --debbuildopts "${DEBBUILDOPTS}" else if ! dpkg-checkbuilddeps -B; then echo "W: Unmet build-dependency in source" >&2 fi CMD="dpkg-buildpackage -S -us -uc -r${BUILDSOURCEROOTCMD} $DEBBUILDOPTS" echo "I: Running $CMD" >&2 echo "$CMD" | /bin/bash pbuilder-user-mode-linux build \ "$@" \ --buildresult "${UML_BUILDRESULT}" \ ../"${PKG_SOURCENAME}_${PKG_VERSION}".dsc fi # do signing with optional key specifier if [ "${AUTO_DEBSIGN}" = "yes" ]; then unset DEBSIGN_PARAM || true if [ -n "${DEBSIGN_KEYID}" ]; then DEBSIGN_PARAM[1]="-k${DEBSIGN_KEYID}" fi DEBSIGN_PARAM[2]="${UML_BUILDRESULT}/${PKG_SOURCENAME}_${PKG_VERSION}_${ARCHITECTURE}.changes" debsign "${DEBSIGN_PARAM[@]}" fi pbuilder-0.215ubuntu7/test_pbuilder-satisfydepends-funcs0000775000000000000000000000416612312041170020501 0ustar #!/bin/bash # testsuite to test pbuilder-satisfydepends-funcs. if [ -n "$PBUILDER_CHECKOUT" ]; then . "$PBUILDER_CHECKOUT/testlib.sh" . "$PBUILDER_CHECKOUT/pbuilder-satisfydepends-funcs" else # these currently don't need to be exported PBUILDER_TEST_ROOT="${PBUILDER_ROOT:-}" PBUILDER_TEST_PKGLIBDIR="${PBUILDER_PKGLIBDIR:-$PBUILDER_ROOT/usr/lib/pbuilder}" . "$PBUILDER_TEST_PKGLIBDIR/testlib.sh" . "$PBUILDER_TEST_PKGLIBDIR/pbuilder-satisfydepends-funcs" fi DEBIAN_CONTROL="" cleanup() { if [ -n "$DEBIAN_CONTROL" ]; then rm -f "$DEBIAN_CONTROL" fi } test_get_build_deps() { local BINARY_ARCH BINARY_ARCH="$1" cat <"$DEBIAN_CONTROL" Source: amule XXXX: Build-Depends: autotools-dev ( >= 1.2 ) , debhelper , quilt(<<12:0), ## libwxgtk2.8-dev Build-Depends-Indep: test [ amd64 i386 ], test1, test2[!i386 ! amd64], test3 | test4, test5 Misc: test Build-Depends: wrong build depends, line Description: test other things wow EOF get_build_deps } test_get_build_deps_dsc() { cat <"$DEBIAN_CONTROL" -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA256 Format: 1.0 Source: hello-debhelper Build-Depends: debhelper (>= 7) Checksums-Sha1: fcbf0264928900adf03a7797474375e1a6fa3836 499638 hello-debhelper_2.4.orig.tar.gz 0ea70eb46b4c90a8dbefbe60bebe4b9f9abb2733 5308 hello-debhelper_2.4-3.diff.gz -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (GNU/Linux) iQEcBAEBCAAGBQJKml74AAoJEEHOfwufG4sysC4H/26EikyIgIqRuSXMiykc1hmd 97id9nWl+QzgCpUEg/+uDqEW+Bl6291FstGvzTFCwmB5JjH9ErH1LsyG1OLXbFUb H89Em7qkl4o2ACTh255oM7FhVweof3UEaLCZMH+HZVVpHXNpEnhrfDvpTBbPGjUi -----END PGP SIGNATURE----- EOF get_build_deps } trap cleanup sigpipe sighup exit # TODO move to build dir DEBIAN_CONTROL="$(tempfile)" expect_output "autotools-dev (>= 1.2), debhelper, quilt (<< 12:0), libwxgtk2.8-dev, test [amd64 i386], test1, test2 [!i386 !amd64], test3 | test4, test5" \ test_get_build_deps "no" expect_output "autotools-dev (>= 1.2), debhelper, quilt (<< 12:0), libwxgtk2.8-dev" \ test_get_build_deps "yes" expect_output "debhelper (>= 7)" test_get_build_deps_dsc testlib_summary pbuilder-0.215ubuntu7/ChangeLog0000664000000000000000000033474612312041170013333 0ustar 2007-12-24 Junichi Uekawa * This changelog is no longer maintained, see git log for details. For brief user-oriented list of changes, see debian/changelog 2007-12-18 Loïc Minier * pbuilder-updatebuildenv: Run apt-get autoremove after upgrade. 2007-12-16 Junichi Uekawa * examples/B92test-pkg: try to skip package test which do not have any test. 2007-11-24 Junichi Uekawa * pbuilder-modules (pbuilder-options): create etc/apt/apt.conf.d/ 2007-11-23 Loïc Minier * pbuilder-satisfydepends-aptitude: Pass -o APT::Install-Recommends=false to aptitude as --without-recommends doesn't seem to be enough with the new APT. 2007-11-07 Junichi Uekawa * testsuite/random-manual-test-material/build-depends-on-experimental/bde_0.1.dsc: add sample files for easier testing. * pbuilder-satisfydepends-experimental: add APTFLAG here also. * pbuilder-satisfydepends-classic: add APTFLAG, which is "-o APT::Install-Recommends=false" to toggle recommends installation. This option is ignored by etch apt, so should be harmless. * pbuilder-modules (APT): install Install-Recommends "false" configuration to /etc/apt/apt.conf.d/15pbuilder. Move experimental configuration to there from /etc/apt/apt.conf to /etc/apt/apt.conf.d/15pbuilder. 2007-10-25 Junichi Uekawa * pbuilderrc: set default value for COMPONENTS, so that qemubuilder and others can depend on it being set. 2007-10-15 Junichi Uekawa * pbuilder-modules: change 'pbuilder --help' command-line format to be prepended with '--' * Makefile: update makefile to install bash_completion * bash_completion.pbuilder: add bash_completion 2007-09-10 Junichi Uekawa * pbuilder: return return codes for --login and --execute 2007-09-06 Junichi Uekawa * Documentation/pbuilder-doc.xml: add svn-buildpackage example. 2007-08-28 Junichi Uekawa * pbuilderrc.5 (Example): document pbuilder-satisfydepends-aptitude as the default. * pbuilder-updatebuildenv: install aptitude per default. * pbuilder-createbuildenv: install aptitude per default. * pbuilder-satisfydepends-classic: rename to '-classic'. 2007-08-20 Junichi Uekawa * Makefile: update makefile to install lvmbuilder * examples/lvmpbuilder/lvmbuilder: update with new version. 2007-07-27 Junichi Uekawa * Documentation/pbuilder-doc.xml: add document on example usage of pbuilderrc with DIST env-var. 2007-07-22 Junichi Uekawa * Documentation/pbuilder-doc.xml: refer to example file. * examples/pbuilderrc.ccache: create example file. 2007-07-16 Junichi Uekawa * Documentation/debconf7/develcycle.dot: change diagram to contain testing pbuilder-generated package before debsign and dput. 2007-06-23 Junichi Uekawa * Makefile: install lvmpbuilder scripts as example. * Documentation/pbuilder-doc.xml: document the files * Makefile: install pbuilder-test sample files. * examples/pbuilder-test/README: install pbuilder-test sample files. 000_prepinstall 001_apprun 002_libfile 002_sample.c 003_makecheck 004_ldd * examples/pbuilder-distribution.sh: $@ -> "$@" 2007-06-17 Junichi Uekawa * pbuilder.8: fix incorrect banners in execution example. reorganize command-line parameters to be prepended with a '--', in par with cowdancer which uses getopt_long. getopt_long requires the '--'. 2007-06-16 Junichi Uekawa * pbuilder: rm "$APTCACHE"/*, instead of cleaning subdirectories. Subdirectories shouldn't usually be created. 2007-06-15 Junichi Uekawa * pbuilderrc.5: reorganize to maintain same ordering as pbuilder.8 * pbuilder.8: reorganize the ordering of options. 2007-06-07 Junichi Uekawa * Makefile (install): install rebuild example scripts. * examples/rebuild/getlist: * examples/rebuild/buildall: * examples/rebuild/README: add example rebuilding script. 2007-06-05 Junichi Uekawa * AUTHORS: add people 2007-06-04 Junichi Uekawa * Documentation/pbuilder-doc.xml: * Documentation/pbuilder-doc.ja.po: reviewed and updated. * examples/C11screen: * examples/C10shell: try installing vim and less, and cd to the source directory. Inspired by Lo-lan-do. 2007-06-01 Junichi Uekawa * testsuite/random-manual-test-material/control.test: move the debian/control file which was originally used for testing to here, not under debian/ * pbuilder-satisfydepends-aptitude: * pbuilder-satisfydepends-experimental: run dpkg-architecture inside chroot. 2007-05-31 Junichi Uekawa * pbuilder-runhooks: add documentation on usage of BUILDPLACE when already inside chroot. * pdebuild-internal: run hooks A, B, C and D in pdebuild-internal. 2007-05-28 Loic Minier * debian/control: list amd64 in pbuilder-uml's Architectures; thanks Mattia Dongili. 2007-05-28 Junichi Uekawa * examples/C10shell: * examples/C11screen: 2> /dev/tty, also. * testsuite/run-test.sh: add workaround for tzdata output which is different every time it's invoked. * Documentation/Makefile: use dblatex for building PDF document. 2007-05-27 Junichi Uekawa * Documentation/pbuilder-doc.xml: remove reference to netfort.gr.jp page. * pbuilder.8, etc.: fix home page URL to point to pbuilder.alioth.debian.org, not netfort.gr.jp, and add reference to pbuilder-doc.html * pbuilder-createbuildenv: pbuilder seems to always finish with 'Aborting with error', fix that. * pbuilder-updatebuildenv: the following gives 0, 1 as output: function a_called() { echo $? } function a () { a_called } trap a exit false : a exit 1 * pbuilder-buildpackage-funcs: set LOGNAME when build user is created inside chroot. * testsuite/run-test.sh: fix scripting for less diffs. * pdebuild.1: fix from * Documentation/pbuilder-doc.xml: add documentation about C11screen. * Makefile: install the new example. * examples/C11screen: add new hook, which might be more useful, call GNU screen instead of bash. * pbuilder-updatebuildenv: * pbuilder-createbuildenv: exit 0 at end. * pbuilder-buildpackage (BUILD_PID): explicitly call trap to untrap unexpected exit cases. Unexpected cases should exit 1, expected exit cases should exit 0. * pbuilder-user-mode-linux: change all 'trap' functions to be postfixed with _trap * pbuilder-createbuildenv: * pbuilder-updatebuildenv: trap sighup as well as exit. * pdebuild.1: document the new behavior. * pdebuild: create ../pkg_ver_arch.build file per default, matching debuild. * pdebuild-checkparams (BASEBUILDPLACE): use "${PBUILDER_BUILD_LOGFILE}" variable * testsuite/run-test.sh: process logs to reduce diff. * pbuilder-buildpackage: * pbuilder-buildpackage-funcs: * pbuilder-createbuildenv: * pbuilder-updatebuildenv: * pbuilder-user-mode-linux: trap sighup as well as exit. 2007-05-17 Junichi Uekawa * Documentation/pbuilder-doc.xml: Make some references to 'base chroot image tar-ball' to explicitly refer to 'base.tgz' * pdebuild.1: * pbuilder.8: * pbuilder-user-mode-linux.1: update documentation. * pdebuild-uml-checkparams: use tee for --logfile * pdebuild-checkparams: * pbuilder-checkparams: * pbuilder-buildpackage: use tee so that user can see what's being logged. 2007-05-14 Junichi Uekawa * Documentation/pbuilder-doc.ja.po: * Documentation/Makefile: start implementing Japanese version of manual 2007-05-10 Junichi Uekawa * Documentation/debconf7/pbuilder.tex: add references to other works. * Documentation/pbuilder-doc.xml: add more explanation about B92test-pkg 2007-05-05 Junichi Uekawa * Documentation/pbuilder-doc.xml: update and clarify documentation. 2007-04-29 Loic Minier * pbuilder-satisfydepends-aptitude: Pass --without-recommends to aptitude. 2007-04-22 Junichi Uekawa * examples/execute_installtest.sh: update install test so that it can handle more than one packages. 2007-04-22 Loic Minier * pbuilder-satisfydepends-aptitude: Pass Aptitude::ProblemResolver::StepScore and Aptitude::CmdLine::Ignore-Trust-Violations flags to aptitude to help resolve complex situations relatively common in experimental and support unsigned repositories like we do for apt-get. 2007-04-17 Junichi Uekawa * debian/rules: remove amd64 from build rules. * testsuite/run-test.sh (HOOKOPTION): change upgrade testing procedure 2007-04-16 Junichi Uekawa * examples/B92test-pkg: change comment to clarify. * pdebuild.1: documentation update: note --debbuildopts and --debootstrapopts have different ways of specifying multiple options. This probably needs really fixing, but that will happen sometime later. * pbuilder.8: ditto. 2007-04-11 Junichi Uekawa * AUTHORS, etc: remove $Id$, which is CVS specific 2007-04-10 Junichi Uekawa * Documentation/pbuilder-doc.xml: update documentation * pbuilder-modules: say lenny instead of sarge * pbuilder.8: lenny is supported architecture, not sarge * pbuilderrc: make lenny default * testsuite/run-test.sh: add lenny 2007-04-03 Junichi Uekawa * Makefile: install pbuilder-satisfydepends-funcs, pbuilder-satisfydepends-checkparams 2007-04-02 Loic Minier * pbuilder-satisfydepends-aptitude: check whether the dummy dependencies package was truly installed or error out; catches situation where "aptitude" did not keep the dummy package but claimed the installation was successful. 2007-04-01 Junichi Uekawa * pbuilder-user-mode-linux.1, etc.: 409135: SEE ALSO fix. 2007-04-01 Loic Minier * pbuilder-satisfydepends*: - Modularize with new -funcs and -checkparams shared sources. - New pbuilder-satisfydepends-aptitude resolver based on aptitude. - Cleanups. 2007-03-31 Junichi Uekawa * pbuilder-user-mode-linux: spacing fix. * pbuilder-modules: re-refix. 391915 "The fix for #391915 as applied in 0.165 isn't quite correct, it still has an unconditional rm -f "$BUILDPLACE/etc/$a" outside the check for an existing /etc/$a to copy into its place." From Paul TBBle Hampson 2007-03-30 Junichi Uekawa * pbuilder-user-mode-linux : '-n "${PBUILDER_COW}"' is not a good condition since it will change default behavior for pbuilder create/update. Just use UML_IP=dhcp for condition. 2007-03-29 Junichi Uekawa * pbuilder-uml.conf.5: * pbuilder-user-mode-linux.1: add documentation for 'dhcp' option. * pbuilder-user-mode-linux: allow network dhcp configuration 415544 From: Paul TBBle Hampson 2007-03-28 Junichi Uekawa * pbuilder-user-mode-linux: make more vivid notes on what is executed inside the user-mode-linux * pbuilder-modules: for pbuilder-user-mode-linux; only warn if host network configuration files are not available, and assume it is correct inside the chroot, and give out a W: warning. From: Paul TBBle Hampson * debuild-pbuilder.1, pbuilder-uml.conf.5, pbuilder-user-mode-linux.1, pbuilder.8, pbuilderrc.5, pdebuild-user-mode-linux.1, pdebuild.1: 409135: Fix 'SEE ALSO' spacing. 2007-03-27 Junichi Uekawa * pbuilder, et al: Copyrigjht 2007 update. warning/ error message sent to >&2 consistently. * pdebuild: 399484: Use $BUILDRESULT with pdebuild-internal "Anderson Lizardo" 2007-03-21 Junichi Uekawa * debian/rules (binary-arch): create similar for amd64. * debian/control (Architecture): try having amd64 package for pbuilder-uml 2007-03-20 Junichi Uekawa * pbuilder-buildpackage: build-dep resolution cannot determine the architecture being built on when building under fakeroot, reported and patch submitted by Paul TBBle Hampson. 2007-01-31 Junichi Uekawa * pbuilder-satisfydepends: run dpkg-architecture inside chroot. 2007-01-30 Junichi Uekawa * pbuilder-user-mode-linux: Mattia Dongili: "As rootstrap allows this configuration it would be nice if pbuilder-uml was aware of it too and mount /lib/modules early enough to avoid errors and warnings." 2007-01-22 Junichi Uekawa * pbuilderrc: default is now --variant=buildd for debootstrap option 2007-01-20 Junichi Uekawa * pbuilder.8: add EXAMPLES section * pdebuild.1: add EXAMPLES section * debuild-pbuilder.1: add EXAMPLES section. 2007-01-13 Junichi Uekawa * git-tag.sh: * debuild.sh: tools for git repository package building. * Documentation/pbuilder-doc.xml: Add references to git repository. 2007-01-04 Junichi Uekawa * pbuilder-modules: Fix the situation where "cowbuilder --update --override-config --mirror $mirror" fails to clean up. 2006-12-17 Junichi Uekawa * pbuilder-createbuildenv: use FORCE_CONFNEW in 'pbuilder create' also, since dist-upgrade here may cause configuration file change if enough change exists. e.g. when OTHERMIRROR is set to backports.org * pbuilder: remove '/run' after 'execute' 2006-12-09 Loic Minier * pbuilder-satisfydepends-experimental: small optimization: move COMPARESTRING and DEPSVERSION computation out of the per-version loop; quote COMPARESTRING properly. * pbuilder-satisfydepends-experimental: small optimization: return the exact requested version when a strictly versionned dependency is used. 2006-11-14 Loic Minier * testsuite/regression/run-test-satisfy-depends.sh: log error messages with E:, not I:. 2006-11-13 Loic Minier * Documentation/pbuilder-doc.xml: describe workaround of using backports.org to use cowdancer for sarge; fixes #394710. 2006-11-06 Loic Minier * debuild-pbuilder, pbuilder-buildpackage-funcs, pdebuild-internal: use $PBUILDERSATISFYDEPENDSCMD instead of /usr/lib/pbuilder/pbuilder-satisfydepends. * pbuilderrc: set PBUILDERSATISFYDEPENDSCMD to /usr/lib/pbuilder/pbuilder-satisfydepends by default. * pbuilderrc.5: document PBUILDERSATISFYDEPENDSCMD. * debian/TODO: alternatives implementation of pbuilder-satisfydepends now possible. * pdebuild-checkparams, pdebuild-uml-checkparams, pdebuild-internal: add a new --pbuildersatisfydepends flag to override PBUILDERSATISFYDEPENDSCMD * pdebuild: pass --pbuildersatisfydepends to pdebuild-internal. * pbuilder-modules, pdebuild.1: document --pbuildersatisfydepends. * pbuilder-satisfydepends: drop an useless invocation of awk. * pbuilder-satisfydepends-experimental, Makefile: alternate implementation of pbuilder-satisfydepends which supports pulling build-deps with a version on the apt-get command-line; this is derived from pbuilder-satisfydepends with the following changes: - Add and use new package_versions() and candidate_version() helpers; the former returns all versions of a package available via APT, the later APT's candidate version. - For versionned build-deps, when building the "apt-get install" command, try APT's candidate version or all available versions available from APT in ascending order (the reverse order of apt-cache's output); checkbuilddep_versiondeps() isn't used for this part of the process anymore, but it is still used to honor build-conflicts. - Recover from APT errors caused by unsufficient dependencies ("libfoo-dev Depends: bar but baz is to be installed") and missing dependencies libfoo-dev Depends: bar but it is not going to be installed", or simply "libfoo-dev Depends: bar"); this permits simply listing build-deps when uploading to experimental; achieved by moving the version matching logic in the new versioneddep_to_aptcmd() helper. * pbuilderrc, pbuilderrc.5: document the availability of the alternate implementation. 2006-11-03 Loic Minier * pdebuild-internal: install the passwd package before calling groupadd and useradd. 2006-10-30 Loic Minier * pbuilder-modules: add sanity checks during umount_one(); ignore umount errors of the type "umount: /foobar: not mounted" and "umount: /foobar: not found" as retries will be useless anyway, and these errors shouldn't cause data loss; fixes #391390. * pbuilder-modules: umount selinux and bind mounts first. * testsuite/satisfydepends/gtk2-engines_*.changelog, testsuite/satisfydepends/gtk2-engines_*.control, testsuite/run-test-satisfy-depends.log, testsuite/run-test-satisfy-depends.sh: move to testsuite/regression and adapt to the regression suite layout. 2006-10-29 Junichi Uekawa * Documentation/pbuilder-doc.xml: developer info is updated. 2006-10-28 Loic Minier * testsuite/run-test-satisfy-depends.sh, testsuite/satisfydepends/debian/rules: new testsuite scripts to test pbuilder-satisfydepends. * testsuite/satisfydepends/gtk2-engines_*.changelog, testsuite/satisfydepends/gtk2-engines_*.control: initial test data. * testsuite/run-test-satisfy-depends.log: initial test results. * testsuite/run-test-satisfy-depends.sh: fix invocation from CVS checkout by only copying debian/rules and not debian/*. 2006-10-27 Junichi Uekawa * Documentation/pbuilder-doc.xml: update developers documentation. 2006-10-24 Junichi Uekawa * examples/E50-initscripts-2.86.ds1-7.workaround.sh: workaround postinst which mounts /lib/init/rw * Documentation/pbuilder-doc.xml: remove the note saying that pbuilder-user-mode-linux is not available. 2006-10-23 Junichi Uekawa * Documentation/pbuilder-doc.xml: s/cowdancer/cowbuilder/ 2006-09-16 Junichi Uekawa * added patch from Mattia Dongili for pbuilder-uml. diffstat /tmp/pbuilder-uml.diff debian/rules | 16 ++++++++++++++-- pbuilder-checkparams | 2 +- pbuilder-uml-checkparams | 2 +- pbuilder-user-mode-linux | 20 +++++++++++++++----- pdebuild-uml-checkparams | 2 +- pdebuild-user-mode-linux | 2 +- 6 files changed, 33 insertions(+), 11 deletions(-) 2006-09-03 Junichi Uekawa * examples/B90linda, etc.: add notice that it's usable for hookdir. 2006-09-02 Junichi Uekawa * pbuilder-checkparams (BASEBUILDPLACE): support --login, --execute, --pdebuild 2006-08-25 Junichi Uekawa * pbuilder-modules: support for selinux. 2006-08-20 Junichi Uekawa * pbuilder-checkparams: sort and reverse-sort bindmounts * pbuilder-modules: 2006-08-15 Junichi Uekawa * debian/control (Recommends): recommend cowdancer, for those people who complain about speed. * debian/TODO: update the TODO file for a change. * pbuilder-checkparams: PKGNAME_LOGFILE option support * pbuilderrc: PKGNAME_LOGFILE option support * pbuilderrc.5: PKGNAME_LOGFILE option support 2006-07-23 Junichi Uekawa * Documentation/pbuilder-doc.xml: update documentation on fakechroot. 2006-06-26 Junichi Uekawa * pdebuild-internal: export DEBBUILDOPTS 2006-06-17 Junichi Uekawa * testsuite/run-test.sh: remove sarge from test target, since I know it fails every time. 2006-06-15 Junichi Uekawa * debian/pbuilder-test/01_pbuilder_create: test against sid rather than sarge for now, since amd64 sarge doesn't work. 2006-06-11 Junichi Uekawa * pdebuild-checkparams: do not error out if buildresult directory does not exist. * pbuilder-buildpackage: actually do error-checking. * pbuilder-checkparams: do not error out if buildresult directory does not exist. * pbuilder-buildpackage: actually create buildresult dir, the condition was wrong. 2006-06-05 Junichi Uekawa * pdebuild-internal: -p for 'su' 2006-06-04 Junichi Uekawa * debian/TODO: spellfix * pbuilder-user-mode-linux.1: spellfix * Documentation/pbuilder-doc.xml: add note on tmpfs building. 2006-06-01 Junichi Uekawa * pbuilder-modules (pbuilder-options): silence ln -s for /etc/mtab 2006-05-31 Junichi Uekawa * pbuilder: update address of GPL, and generally update copyright dates. * debian/copyright (Copyright): update copyright info. 2006-05-29 Matt Kraai * pdebuild.1: Fix a misspelling of pdebuild. 2006-05-28 Junichi Uekawa * pbuilder-user-mode-linux.1: uppercase url->URL * pbuilder.8: ditto * pdebuild.1: From comment from Sesse, note that the default place build results are placed is /var/cache/pbuilder/result. 2006-05-27 Junichi Uekawa * Documentation/pbuilder-doc.xml: document cowdancer and pdebuild cowdancer option. 2006-05-24 Junichi Uekawa * pbuilder-buildpackage-funcs: quiet down cowprotect, it's giving out useless output, like the following: Copying back the cached apt archive contents /var/cache/pbuilder/build/cow.12278/etc/passwd /var/cache/pbuilder/build/cow.12278/etc/group Copying source file * pbuilder.8: fix pbuilder execute command-line specification to reflect that script can receive command-line parameters. * pdebuild: add a in invocation to pbuilder execute "--", to avoid reorder in cowbuilder, and still work with pbuilder. * pdebuild.1: document --pbuilder option. * pbuilderrc.5: document the new option * pdebuild-checkparams: --pbuilder option. Use pbuilder as default. It is possible to use cowbuilder. * pbuilder: add --XXX options as compatibility options for cowbuilder. * pdebuild (ARCHITECTURE): use PDEBUILD_PBUILDER instead of calling pbuilder directly, and use cowdancer-compatible command-line options. * Documentation/pbuilder-doc.xml: generally spellcheck, and revise. * pdebuild.1: spellcheck * pdebuild-user-mode-linux.1: spellcheck * pbuilderrc.5: spellcheck * pbuilder-modules: remove mention of potato/woody, since they probably don't work (pbuilder-options): remove potato/woody. * pbuilder.8: remove woody from supported list of distributions, we know dpkg from then doesn't really work with modern kernel. (well, they do, but I don't want this documented/advertised) * pbuilder-user-mode-linux.1: spellcheck * pbuilder.8: spellcheck 2006-05-22 Junichi Uekawa * debian/TODO: update TODO, amd64-x86 cross build is documented and functional. * pbuilder-satisfydepends: keep the original behavior until dpkg change is verified. 2006-05-17 Junichi Uekawa * Documentation/pbuilder-doc.xml: minor updates to the documentation. 2006-05-15 Junichi Uekawa * Documentation/pbuilder-doc.xml: document method for adding local repository. * pbuilder-satisfydepends: add support for new dpkg-dev construct for linux-any etc. patch by Peter Eisentraut. * THANKS: update thanks text for a change. * pbuilderrc.5: undocument the restriction that --buildresult option needs to be specified for pdebuild, and BUILDRESULT cannot be used. I should probably warn that the directory should be absolute. * pdebuild.1: fix man a bit to make --buildresult option doc unambiguous. * pbuilder-modules: fix pdebuild command options. 2006-04-22 Junichi Uekawa * Documentation/pbuilder-doc.xml: update docs on user-mode-linux usage. add reference to PDF version. * pdebuild: give --uid/--gid options to pdebuild-internal 2006-04-01 Junichi Uekawa * pdebuild: directory is moved after command-line is parsed. This should fix a few weird behaviors wrt relative directories, and allow --help to work if there is no debian/ directory 2006-03-31 Junichi Uekawa * pbuilder-satisfydepends: spelling mistake, thanks pryzbyj for telling me. daner->dancer 2006-03-22 Junichi Uekawa * pbuilderrc.5: spelling fix: s/extention/extension/ * pbuilderrc: * pbuilder.8: 2006-03-18 Junichi Uekawa * testsuite/regression/287477-pkgname-logfile.sh: create regression * pbuilder.8: update documentation of --pkgname-logfile * pbuilder-buildpackage: allow chown, and add support for PKGNAME_LOGFILE_EXTENTION. * pbuilderrc (PKGNAME_LOGFILE_EXTENTION): add * pbuilderrc.5: document 2006-03-17 Junichi Uekawa * pbuilder-buildpackage (BUILDRESULTGID): chown/chgrp buildresult logfiles 2006-03-08 Junichi Uekawa * Documentation/pbuilder-doc.xml: apply necessary formatting edition. * Documentation/Makefile (%.pdf): create PDF documentation out of pbuilder-doc. * Documentation/pbuilder-doc.xml: update amd64->i386 cross debootstrap command-line option. apparently, the --arch=i386 notation doesn't seem to work anymore. 2006-02-23 Junichi Uekawa * pbuilder-modules (pbuilder-options): remove NONUSMIRRORSITE * pbuilder.8: * pbuilder-user-mode-linux.1: remove --nonusmirror * pbuilder-uml-checkparams: remove --nonusmirror * pbuilder-checkparams: remove --nonusmirror * pbuilder-modules (pbuilder-options): remove reference to --nonusmirror [non-US mirror location] option. * pbuilderrc (MIRRORSITE): remove non-US * testsuite/regression/344089-initscripts-inetd-workaround-check.sh: remove, bugs are all resolved. 2006-02-12 Junichi Uekawa * pbuilder-updatebuildenv: * pbuilder-createbuildenv: * pbuilder: move apt-get clean after umountproc, so that you can probably bind-mount /var/cache/apt/archives 2006-02-11 Junichi Uekawa * pbuilder-satisfydepends: quote echo INSTALLPKGMULTI * pbuilder: apt-get clean after save_aptcache. * pbuilderrc.5: document that EXTRAPACKAGES is a space-delimited list. 2006-01-30 Junichi Uekawa * Makefile: install the script * examples/G50-initscripts-2.86.ds1-11-cdebootstrap0.3.9.sh: implement workaround. * pbuilder.8: document G hook. * pbuilder-createbuildenv: add G hook * testsuite/run-test.sh: use the workaround dir for testing. * Makefile: install workaround hooks to /usr/share/doc/pbuilder/examples/workaround 2006-01-24 Junichi Uekawa * examples/B92test-pkg: improve the script a bit; do not fail if apt-get install of a previous version fails, and cd to the package directory before test starts. 2006-01-13 Junichi Uekawa * debian/TODO: update notes on cowdancer. * Documentation/pbuilder-doc.xml (BINDMOUNTS): add note on regression testing. 2006-01-12 Junichi Uekawa * pbuilder-modules: replace ../project/experimental with experimental 2006-01-06 Junichi Uekawa * pbuilderrc.5: document that there are default values for BUILDRESULTUID * pbuilder-buildpackage (BUILDRESULTGID, BUILDRESULTUID): set default values here. * pbuilder-modules (pbuilder-options): --debootstrap= is not a valid option, change to --debootstrap[space] 2005-12-21 Junichi Uekawa * Makefile (install): * examples/B91debc: * examples/B90list-missing: from q-funk. 343894 * testsuite/run-regression.sh: add results display. * testsuite/run-test.sh: add results display * testsuite/run-test-uml.sh: add results display. * testsuite/run-regression.sh: run tests in numerical order of bug reports. * testsuite/regression/344089-workaround-check.sh: create a regression test * testsuite/run-test.sh: use /usr/share/doc/pbuilder/examples/344089 for hookdir. * Makefile: no longer install libc6 workaround which is outdated, and install the initscripts workaround to /usr/share/doc/pbuilder/examples/344089 * examples/E50-initscripts-2.86.ds1-7.workaround.sh: add a workaround for #344089, and #262627 2005-12-19 Junichi Uekawa * pdebuild-internal: export HOME with a decent value. * Documentation/pbuilder-doc.xml: document that $HOME is set to /tmp/buildd, since that seems to be the case in pbuilder-buildpackage 2005-12-12 Junichi Uekawa * testsuite/regression/342665-config: config used for the regression test. This is to address 342665 * testsuite/regression/342665-pbuilder-ccache.sh: regression testsuite. * Documentation/pbuilder-doc.xml: update FAQ to note that ccache dir needs to be writable from user within chroot. * testsuite/run-regression.sh: add 2005-12-09 Junichi Uekawa * debian/TODO: update TODO. 2005-12-05 Junichi Uekawa * pdebuild-user-mode-linux: * pdebuild-uml-checkparams: * pdebuild-checkparams: * pdebuild: readlink -e instead of readlink -f * pbuilder-uml-checkparams: readlink -e instead of readlink -f * pbuilder-modules: readlink -e instead of readlink -f * pbuilder-createbuildenv: quote HOOKDIR and readlink -e instead of readlink -f. * pbuilder-checkparams: * pbuilder-buildpackage: use readlink -e here. * pbuilder-buildpackage-funcs: use readlink -e instead of readlink -f. 338976, reopened as 342117 thanks to Markus Kolb * pbuilder-buildpackage-funcs: 'install' was missing from apt-get for EXTRAPACKAGES handling. Fix. * pbuilderrc: make fakeroot default. * Documentation/pbuilder-doc.xml: update a note on pdebuild-internal is ran as the outside user uid. * pdebuild-internal: Add a note what I'm doing. 2005-12-04 Junichi Uekawa * debian/TODO: note TODO item. * pdebuild-internal: Revert to use of --force-yes, since --allow-unauthenticated does not work in sarge * pbuilder-updatebuildenv: * pbuilder-satisfydepends: * pbuilder-createbuildenv: * pbuilder-buildpackage-funcs: * examples/execute_installtest.sh: * examples/B92test-pkg: * examples/B91dpkg-i: * examples/B90linda: * pbuilder-createbuildenv: implement --no-targz for pbuilder create. * pbuilder-buildpackage-funcs: #338976; SUTOUSER check is bogus. Only add a user when there is a user to add. * pdebuild-internal: use --allow-unauthenticated option rather than --force-yes to apt-get install * pbuilder-updatebuildenv: * pbuilder-satisfydepends: * pbuilder-createbuildenv: * pbuilder-buildpackage-funcs: * examples/execute_installtest.sh: --allow-unauthenticated option to apt-get install * examples/B92test-pkg: * examples/B91dpkg-i: * examples/B90linda: 2005-12-01 Junichi Uekawa * Documentation/pbuilder-doc.xml: add notes on ccache+pbuilder. * pbuilder-buildpackage: preserve environment when running as root. Thanks to Mike Hommey 2005-11-28 Junichi Uekawa * testsuite/run-test.sh: run pdebuild-internal on one directory and use another directory for build place. I don't know why but it's started to fail running since 28 Nov..? pdebuild internal sid fails to umount the bind-mount. -- this was fixed in 29 Nov run. Strange. 2005-11-16 Junichi Uekawa * pbuilder-buildpackage-funcs: test if /etc/shadow already exists before trying to change it. fix typo. 2005-11-11 Junichi Uekawa * pbuilder-modules (pbuilder-options): policy-rc.d: allow x11-common to run. 337541 2005-11-03 Junichi Uekawa * testsuite/run-test-experimental.sh: * testsuite/run-test-experimental.log: experimental test no longer works since apt with gpg checking is default, remove it. * debian/TODO: remove todo item on /etc/mtab documentation. * Documentation/pbuilder-doc.xml: document /etc/mtab is a symlink to /proc/mounts spellcheck. * debian/control (Depends): cdebootstrap or debootstrap * pbuilder-createbuildenv: change inconsistent error message Check and report error state when debootstrap specified in DEBOOTSTRAP option does not exist. 2005-11-02 Junichi Uekawa * debian/TODO: update. * pbuilder-modules: ln -s is protected with ||true, since /etc/mtab may already exist. * debian/TODO: update TODO. 2005-10-28 Junichi Uekawa * debian/TODO: update. * Documentation/pbuilder-doc.xml: Update documentation on pbuilder on amd64 document TODO file. 2005-10-26 Junichi Uekawa * debian/TODO: update * testsuite/run-test.sh (testbuild): --resolve-deps removed. debootstrap 0.3.2 runs --resolve-deps per default. 2005-10-20 Junichi Uekawa * pdebuild: apply patch from Jonas Smedegaard (#312121) and change -P to -[bB] 2005-10-19 Junichi Uekawa * testsuite/run-test.sh (testbuild): Change to use resolve-deps in testsuite for debootstrap. 2005-10-18 Junichi Uekawa * debian/TODO: updated TODO file; with hopefully a better tracking of debian bugs. 2005-10-14 Junichi Uekawa * Documentation/pbuilder-doc.xml: update documentation to include IRC channel specification 2005-10-09 Junichi Uekawa * Documentation/pbuilder-doc.xml: update documentation on development policy. 2005-10-08 Junichi Uekawa * Documentation/pbuilder-doc.xml: reviewed and updated documentation. Added development, and bugreporting section, which should be filled up later, if possible. * debian/README.Debian: update README * pbuilder.8: refer to --debug option from --preserve-buildplace. 2005-10-06 Junichi Uekawa * testsuite/run-test.sh (testbuild): add debootstrapopts, --verbose. 2005-10-04 Junichi Uekawa * pbuilder-buildpackage-funcs: Add comment on what cowprotect is there for. 2005-09-30 Junichi Uekawa * Documentation/pbuilder-doc.xml: #325318, from Osamu Aoki; clarify about precedence in configuration options. * pbuilder-modules: * pbuilder-updatebuildenv: apply patch to place -maxdepth before other args. 2005-09-04 Junichi Uekawa * Documentation/pbuilder-doc.xml: Add notes on cowdancer. updates notes to note that it's hosted at alioth now. * Documentation/Makefile (preview): create target for preview with mozilla firefox. 2005-08-29 Junichi Uekawa * pdebuild.1: update semantics; left-to-right * pbuilder.8: update semantics; left-to-right 2005-08-28 Junichi Uekawa * pbuilderrc: SHELL variable is set a default value. 2005-08-19 Junichi Uekawa * pbuilder-buildpackage-funcs: do cow thing, with cowprotect, for cowdancer. 2005-08-17 Junichi Uekawa * debian/TODO: update the TODO list. * pbuilder-buildpackage-funcs: pass ${CHROOTEXEC} value directly to pbuilder-satisfydepends. * pbuilder-satisfydepends (CONTINUE_FAIL): add --internal-chrootexec 2005-08-15 Junichi Uekawa * 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 * debian/control: allow cdebootstrap dependency. * testsuite/run-test.sh: complicate the process by testing both cdebootstrap and debootstrap. * pbuilder.8: document --debootstrap * pbuilder-checkparams: --debootstrap * pbuilder-modules: --debootstrap * pbuilder-createbuildenv: unset DEBOOTSTRAPSCRIPT instead of setting "". The number of parameter given to cdebootstrap changes. since DEBOOTSTRAPSCRIPT are not supported by cdebootstrap, Giving cdebootstrap this parameter caused it to fail. * pbuilderrc.5: Document DEBOOTSTRAP * pbuilderrc (DEBOOTSTRAP): new option. * pbuilder-createbuildenv (DEBOOTSTRAPSCRIPT): call ${DEBOOTSTRAP} instead of calling debootstrap directly. 2005-07-28 Junichi Uekawa * Documentation/Makefile (%.html): update make rule to successfully fail on error. 2005-07-14 Junichi Uekawa * pbuilder-buildpackage: change the use of su, to allow su design change. Bug: 317264 2005-07-13 Junichi Uekawa * Documentation/pbuilder-doc.xml: added a reference to bug 316135 2005-07-11 Junichi Uekawa * pbuilderrc.5: clarify documentation to lighten the requirement of BUILDUSERID 2005-07-10 Junichi Uekawa * pbuilder-user-mode-linux.1: * pdebuild-user-mode-linux.1: * pdebuild.1: * pbuilder.8: use \- for dash. 2005-07-03 Junichi Uekawa * testsuite/run-test.sh (RESULTFILE): remove vmstat and iostat. I don't really need them; and add test for etch. * debian/TODO: add TODO 2005-07-02 Junichi Uekawa * testsuite/run-test.log: failure to run pdebuild-internal-sid-dsh is correct; until fixed pbuilder is in archive proper, it will fail. * debian/changelog: prepare for release. * debian/TODO: updated todo list. * pdebuild-internal: add missing --force-yes to pbuilder install. 2005-06-25 Junichi Uekawa * pbuilder-user-mode-linux: use configured PATH instead of hard-coded PATH. * pbuilder-buildpackage: preserve PATH in su, pass -p option. This fixes the problem with env-var preservation. 2005-06-20 Junichi Uekawa * pbuilderrc: set PATH in the configuration file. * pbuilder-buildpackage: do not set PATH inside pbuilder-buildpackage 2005-06-12 Junichi Uekawa * pbuilder-uml-checkparams: add --othermirror option to uml. * pbuilder-user-mode-linux.1: add othermirror documentation. * pbuilderrc.5: synchronize --othermirror documentation. * pbuilder.8: * testsuite/test-pdebuild.sh: add a sample command-line that should work. * pbuilder-modules (pbuilder-options): find '-xdev' is an option, not an evaluation, and so moved it around since newer find now complains. Marc Dequ竪nes (Duck) and "Artur R. Czechowski" #312913 2005-06-08 Junichi Uekawa * pbuildd/install-test.sh: imported from pbuilder-buildd tree. 2005-06-05 Junichi Uekawa * debuild-pbuilder.1: * pbuilder-uml.conf.5: * pbuilderrc.5: * pdebuild.1: * pdebuild-user-mode-linux.1: * pbuilder.8: add \% escape for URL. 2005-06-04 Junichi Uekawa * pdebuild-internal: implement with user-adding. * pbuilder.8: document --help option * pdebuild.1: document the --help option. * pdebuild-checkparams: add --help * debian/pbuilder-uml.files: move to uml. * Makefile: install * pdebuild-user-mode-linux: use pdebuild-uml-checkparams * pdebuild-uml-checkparams: add --debsign-k * pbuilder-uml-checkparams: pdebuild options remove. * pdebuild-uml-checkparams: --buildresult * pdebuild.1: add --logfile option to documentation. * pdebuild-checkparams: --logfile option implemented for pdebuild. * Makefile (install): install * pdebuild: use pdebuild-checkparams instead. * pbuilder-checkparams: split * pdebuild-checkparams: new file. * pbuilder-updatebuildenv: fix typo * pbuilder.8: document --autocleanaptcache * pbuilder-updatebuildenv: * pbuilder-checkparams (AUTOCLEANAPTCACHE): support auto-clean of aptcache (IGNORE_UMOUNT): add --autocleanaptcache * debian/pbuilder-test/01_pbuilder_create: use sarge. * examples/B92test-pkg: fix after testing so that it works. * debian/pbuilder-test/03_pbuilder_build: fix typo. 2005-06-03 Junichi Uekawa * testsuite/run-test-experimental.sh: created a testsuite. * pbuilder-updatebuildenv: update copyright year * pbuilder-checkparams (BASEBUILDPLACE): move distribution 'experimental' checking here, instead of 'create' target. * pbuilder-createbuildenv: update copyright year. * pbuilder-modules: add etch. * pbuilder.8: add 'etch' for list of supported architectures, and make it the default. * examples/pbuilder-distribution.sh: * pbuilder-buildpackage-funcs: * pbuilder-createbuildenv: * pbuilder-modules: * pbuilder-satisfydepends: * pbuilder-updatebuildenv: * pbuilder.8: patch Emanuele Rocca to support 'experimental' for distribution. 2005-05-07 Junichi Uekawa * Documentation/pbuilder-doc.xml: Document testsuite. * debian/pbuilder-test/03_pbuilder_build: add * debian/pbuilder-test/02_pbuilder_update: add * debian/pbuilder-test/01_pbuilder_create: update 2005-05-02 Junichi Uekawa * Documentation/pbuilder-doc.xml: trim trailing spaces on lines Added documentation on directory structure of pbuilder. 2005-05-01 Junichi Uekawa * debian/pbuilder-test/01_pbuilder_create: an example script to test pbuilder. * Makefile (install): install * examples/B92test-pkg: a generic interface script to test a package. 2005-04-22 Junichi Uekawa * pbuilder-buildpackage: call save_aptcache after running final B hook on build. 2005-04-16 Junichi Uekawa * pdebuild.1: * pdebuild-user-mode-linux.1: add note that key-id is required in --debsign-k. * pbuilder-modules: document signing-related options in pbuilder-options. * pdebuild-user-mode-linux: * pdebuild: implement keyid specification. * Documentation/pbuilder-doc.xml: add document on using auto-debsign and add a FAQ entry for source.changes file. * pbuilder-checkparams: use --debsign-k option to specify DEBSIGN_KEYID * pdebuild.1: add --debsign-k option * pdebuild-user-mode-linux.1: add --debsign-k option 2005-04-11 Junichi Uekawa * examples/B91dpkg-i: Fix example script so that it actually works. 2005-04-06 Junichi Uekawa * pbuilder.8: * pbuilderrc.5: update documentation to fix confusing entry on DEBEMAIL (#302855) 2005-03-04 Junichi Uekawa * pbuilder: apply patch frp, Danilo to save aptcache on pbuilder login. Apply similar change to pbuilder execute. 271600 * pbuilder.8: * pbuilder-checkparams: * pbuilder-modules: support --aptcache option thanks: Danilo Piazzalunga 295766 * Cleaned build dir for pbuilder-uml #297100 * pbuilder-modules (pbuilder-options): document save-after-login/exec flag in --help output. #296672 2005-02-13 Junichi Uekawa * pbuilder.8: update documentation to include 'sarge' * pbuilder: set umask 0022 in pbuilder. 276589 * pbuilderrc (BUILDRESULT): make default distribution sarge, instead of woody. * pbuilder-modules: update to include sarge in list of distributions; this list is too long, needs some improvement. 289170 * pdebuild: Change build results by default to be owned by the building user, not root:root This change only required for pdebuild only, UML already runs as user. 286397 * pbuilder.8: clarify documentation for 286602, Do not use --debbuildopts -B, but use --binary-arch * Documentation/pbuilder-doc.xml: 293882: Jens Seidel small typo fixes. * pbuilderrc (MIRRORSITE): 295032: change default mirror from www.jp.debian.org to ftp.jp.debian.org 2005-01-04 Junichi Uekawa * Documentation/pbuilder-doc.xsl: update XSL stylesheet to work with new LDP * Documentation/pbuilder-doc.xml: update date. * pbuilder-buildpackage: * pbuilder-buildpackage-funcs: * pbuilder-checkparams: * pbuilder-modules: * pbuilder-uml-checkparams: * pdebuild: * pdebuild-internal: * pdebuild-user-mode-linux: * pbuilder: update copyright year * update copyright 2004-12-29 Junichi Uekawa * Documentation/pbuilder-doc.xml: minor update, it's fourth year already passed? * pdebuild-user-mode-linux, pdebuild: typo fix, thanks Clint Adams , Bug#287041 2004-12-11 Junichi Uekawa * Documentation/pbuilder-doc.xml: some more minor fixes before it is released * pdebuild-user-mode-linux, pdebuild: use bash instead of sh 2004-12-02 Junichi Uekawa * Documentation/pbuilder-doc.xml: some parts I fixed, but I am leaving some FIXME entries for later. * pbuilderrc.5: change to 'sid'. distribution default is now sid. * pbuilder-createbuildenv: change default distribution to sid, not woody * Documentation/pbuilder-doc.xml: apply patch from on documentation era eriksson . Needs review. * pdebuild-user-mode-linux: also * pdebuild: pass DEBBUILDOPTS through echo to dpkg-buildpackage. 2004-11-19 Junichi Uekawa * pbuilder.8: update docs. 2004-11-17 Junichi Uekawa * Makefile: add pbuilder-distribution.sh * Documentation/pbuilder-doc.xml: document the example. * examples/pbuilder-distribution.sh: add example from Jamin. 2004-11-16 Junichi Uekawa * pdebuild-user-mode-linux: * pdebuild: Check for build-deps before dpkg-buildpackage -S 2004-11-14 Junichi Uekawa * pdebuild: add quoting for debbuildopts. 2004-11-05 Junichi Uekawa * pbuilderrc.5: Fix formatting errors #279700 from Jordi Mallach 2004-10-31 Junichi Uekawa * Documentation/pbuilder-doc.xml (PBUILDER_UML_IMAGE): add notes on BUILDRESULTUID and SUDO interaction. * pbuilder-buildpackage (PACKAGENAME): move around buildresult dir creation before pkgname logfile creation. * pbuilder.8: add documentation for --save-after-login/exec option. * pbuilder: execute and login with --save-after-login/exec option. * pbuilder-user-mode-linux.1: add notes that uml-nocow is effective for exec and login. * pbuilder-uml-checkparams (UML_SAVE_AFTER_LOGIN): add UML_NOCOW for exec * pbuilder-checkparams (SAVE_AFTER_LOGIN): --save-after-login/exec command-option. * pdebuild-user-mode-linux.1: add notes that the option will override pbuilder option. * pdebuild.1: add notes that the option will override pbuilder option * pdebuild-user-mode-linux: ditto. * pdebuild: override --debbbuildopts in pbuilder option when DEBBUILDOPTS is available and for non-internal mode. 2004-10-20 Junichi Uekawa * debian/control: Remove uml package * debian/rules: Remove uml package workaround for sarge release. 2004-10-09 Junichi Uekawa * Documentation/pbuilder-doc.xml (PBUILDER_UML_IMAGE): documentation on what directories cannot be bind-mounted #275113 Added documentation on how to hook to pbuilder update. somewhat addresses #275016, #272353 * debian/control (Depends): remove versioned depends on user-mode-linux. Packages are provided from other kernel packages. #275544 * pbuilder: implement pbuilder debuild #275110 * Documentation/pbuilder-doc.xml (PBUILDER_UML_IMAGE): update doc on debian_chroot env var. #275466 2004-09-13 Junichi Uekawa * pbuilder-modules (pbuilder-options): remove non-free and contrib from non-us. 2004-08-12 Junichi Uekawa * pbuildd/remote-buildd.sh: files from 'compiler' distributed pbuilder setup * pbuildd/build-agent.sh: files from 'compiler' * pbuildd/README: Added 2004-08-08 Junichi Uekawa * pbuildd/buildd.sh: Applied patch from Roland Stigge. 263987 264182 264182 buildd.sh assumes to be in ${BASEDIRECTORY} buildd.sh shouldn't try to build packages for wrong architectures support DEPWAIT 2004-07-29 Junichi Uekawa * debian/pbuilder-uml.files: add pbuilder-uml-checkparams * Makefile: add pbuilder-uml-checkparams * pdebuild-user-mode-linux.1: update manual to reflect current reality of pdebuild-user-mode-linux. It was originally just a copy of pdebuild manpage. * pbuilder-checkparams: shift around debootstrapopts parameter processing out of pdebuild options; it doesn't belong there. * pdebuild-user-mode-linux: Call pbuilder-uml-checkparams to parse commands in UML way, not pbuilder way. * pbuilder-uml-checkparams: Move command-line parser to here * pbuilder-user-mode-linux: Move command-line parser out 2004-07-24 Junichi Uekawa * pbuilder-user-mode-linux.1: document dumpconfig. * pbuilder.8: document dumpconfig * pbuilder-modules: add note to dumpconfig in help. * pbuilder: add dumpconfig option. * pbuilder-user-mode-linux: pass --debug option to pbuilder when --uml-debugmode is available. add "dumpconfig" operation. 2004-07-21 Junichi Uekawa * testsuite/run-test-uml.sh: try to update. Still does not work. * testsuite/rootstrap.conf: try to update * pbuilder-uml.conf.5: update doc to note that ~/.pbuilderrc shoulnd't have APTCACHEHARDLINK=yes if using user-mode-linux * pbuilder-uml.conf (APTCACHEHARDLINK): set default value of APTCACHEHARDLINK to no. 2004-07-16 Junichi Uekawa * pbuilder-user-mode-linux: 259325: call /sbin/halt -d -f instead of just doing an exit from UML. init=/bin/sh, and this is required for safe exit now, apparently. 2004-07-14 Junichi Uekawa * Documentation/pbuilder-doc.xml: update notes on D10tmp script. * examples/D10tmp: mkdir -p 2004-07-09 Junichi Uekawa * testsuite/run-test.sh (IOSTATPID): add debemail to testsuite. * pbuilder-buildpackage (PACKAGENAME): move SUTOUSER outside of what's fed into bash. Run bash in SUTOUSER. SUTOUSER might be eating quote characters. 2004-06-19 Junichi Uekawa * pbuilder-user-mode-linux: apply patch from Mike Markley Bug#252800: pbuilder-uml: hardcodes rootstrap image size argument (--buildresult): found typo in error message, It said $d instead of $2. * pbuilder-user-mode-linux.1: document. * pbuilder-user-mode-linux (uml-login-nocow): add --uml-login-nocow option for pbuilder login without COW filesystem use. * pdebuild.1: add warning on pdebuild/pbuilder options. specifying --basetgz as pdebuild option does not work. 255005 2004-06-17 Junichi Uekawa * pbuilder-updatebuildenv: Patch from matt kraai to save apt cache when pbuilder update fails. 252777, 252793 2004-05-27 Junichi Uekawa * debian/control (Depends): add coreutils 4.5.8-1 dependency. 2004-04-20 Junichi Uekawa * pbuilder-modules: patch from Michel Daenzer (244698) to work around /usr/sbin/update-binfmts. 2004-04-18 Junichi Uekawa * pbuilder-modules: "main contrib non-free" to "main" only. contrib, non-free aren't really required here. 2004-04-07 Junichi Uekawa * debian/control (Depends): Require 0.2.29 or later of debootstrap * pbuilder-modules (pbuilder-options): document option. * pbuilder-checkparams (IGNORE_UMOUNT): --debootstrapopts * pbuilderrc.5: document the option DEBOOTSTRAPVARIANT. * pbuilderrc (DEBOOTSTRAPOPTS): new option. * pbuilder-createbuildenv (DEBOOTSTRAPOPTS): add DEBOOTSTRAPOPTS which should be empty, or '--variant=buildd' 2004-04-04 Junichi Uekawa * pbuilder.8: update manpage to clarify terms on don't bind-mount. update date. * debian/TODO: update TODO file. 2004-03-13 Junichi Uekawa * testsuite/run-test.sh: run-test changed to create log. Add libc6workaround for now. -- after some testing, libc6workaround is not really required. Strange. It will probably be required for upgrades containing libc6. * Makefile: install * examples/E50-libc2.3.2.ds1-11-workaround: libc6 workaround. * Documentation/pbuilder-doc.xml: Try to update the docs. 2004-02-28 Junichi Uekawa * Makefile (install): install F90chrootmemo * pbuilder: implement hook F for login/execute * Documentation/pbuilder-doc.xml: update doc to use F hook. * examples/F90chrootmemo: create F example. * pbuilder.8: add "F" hook 2004-02-27 Junichi Uekawa * Documentation/pbuilder-doc.xml: document the chrootmemo script in FAQ section. * Makefile (install): install the memo. * examples/D90chrootmemo: implement Turbo's request. Add this to your hookdir. 2004-02-23 Junichi Uekawa * pbuilder.8: fix typo on manual page from Matt Kraai 2004-01-19 Junichi Uekawa * pdebuild-user-mode-linux.1: document * pdebuild.1: document * pdebuild-internal: add support for DEBBUILDOPTS * pdebuild-user-mode-linux: add support for DEBBUILDOPTS remove '|| true ' from dpkg-source invocation * pdebuild: --debbuildopts support. * examples/execute_installtest.sh (KILLPID): add killing routine; change it to reboot, to get a reboot done. 2004-01-12 Junichi Uekawa * testsuite/run-test.sh (IOSTATPID): create normal/ dir for plain pbuilder logs. * testsuite/run-test-uml.sh (PBUILDER_UML): create uml/ dir for uml logs. * testsuite/run-test.sh: update estimate time. 2004-01-11 Junichi Uekawa * pbuilder-checkparams: logging * debian/copyright (Copyright): update copyright info. * pbuilder: update copyright info * pbuilder-modules: update copyright info. * testsuite/run-test.sh: change to pbuilder test, instead of UML. * testsuite/run-test-uml.sh: split out UML test * README: tried updating the documentation. * Documentation/pbuilder-doc.css: Change css so that it's black on white, not white on black. 2004-01-10 Junichi Uekawa * examples/B91dpkg-i: fix typo to properly obtain the list of packages 2004-01-06 Junichi Uekawa * Documentation/pbuilder-doc.xml: Notes on debootstrap failures. * pbuilder.8: add a note so that people won't mistake pbuilder will use --extrapackage for creating the bootstrap script. 2003-12-31 Junichi Uekawa * Documentation/pbuilder-doc.xml: updated doc so that user-mode-linux is no longer in the experimental section of the documentation. A new faq entry on 'pbuilder is slow', to recomment using pbuilder-uml when the user thinks tar is slow. 2003-12-30 Junichi Uekawa * Documentation/pbuilder-doc.xml (EXTRAPACKAGES): Document apt-proxy is usable as a proxy. 2003-12-29 Junichi Uekawa * Documentation/pbuilder-doc.xml: update docs on --use-pdebuild-internal 2003-12-27 Junichi Uekawa * testsuite/run-test.sh (PBUILDER_UML): fix rm testbuild2. Estimate is 45 minutes now. It takes longer. * Makefile (clean): clean testsuite/testbuild2 directory also. * pdebuild-internal: use dpkg-buildpackage inside the chroot rather than debuild. 2003-12-26 Junichi Uekawa * examples/execute_installtest.sh: add CVS id output 2003-12-24 Junichi Uekawa * testsuite/run-test.sh (PBUILDER_UML): add pdebuild-user-mode-linux tests. 2003-12-23 Junichi Uekawa * Makefile (install): update build rules to install pdebuild-internal * pbuilderrc.5: update document USE_PDEBUILD_INTERNAL * pdebuild-user-mode-linux.1: document --use-pdebuild-internal * pdebuild.1: document --use-pdebuild-internal * pbuilder-modules: document use-pdebuild-internal * pbuilder-checkparams: --use-pdebuild-internal option. * pdebuild: use pdebuild-internal if USE_PDEBUILD_INTERNAL option is 'yes' * pdebuild-user-mode-linux: use pdebuild-internal if USE_PDEBUILD_INTERNAL option is 'yes' * pdebuild-internal: Implement a pbuilder execute script to be used for pdebuild without doing debian/rules clean outside of chroot. * pbuilder-checkparams: support multiple bindmounts; delimit it with spaces. * pbuilder-modules: add --debug option here. 2003-12-20 Junichi Uekawa * examples/execute_installtest.sh: add /etc/mailname hack for emacs. note known bugs as comment. 2003-12-18 Junichi Uekawa * debian/changelog: update changelog for 0.96 release 2003-12-16 Junichi Uekawa * debian/control (Description): do not conflict with older bash. * pbuilder-buildpackage-funcs: * pbuilder-checkparams: do not error out on failure to unset. * pbuilder.8: document --debug. * pbuilder-checkparams (IGNORE_UMOUNT): --debug option. * pbuilder-createbuildenv: * pbuilder-updatebuildenv: use PBUILDER_DEBUGMODE variable * pbuilder-createbuildenv (DEBOOTSTRAPSCRIPT): use $TRAP instead of trap, and set TRAP to trap only when PRESERVE_BUILDPLACE is not yes. * Makefile (install): install new examples. * Documentation/pbuilder-doc.xml: Document execute_installtest.sh * examples/execute_installtest.sh: Install testing script. Calls apt. * testsuite/run-test.sh (PBUILDER_UML): add regression test on execute script. * pbuilder-user-mode-linux.1: update manual page on passing on of the command-line on 'execute'. * pbuilder.8: update manual page on passing on of the command-line on 'execute' * pbuilder-user-mode-linux (UML_EXECUTE_EXTRAOPT): added new option for appending parameters to the end of the pbuilder-command-line. * examples/execute_paramtest.sh: sample execute script; to give what is given as a parameter. * pbuilder-user-mode-linux: || true on unset. * pbuilder: Accept command-line options for 'execute' command 2003-12-15 Junichi Uekawa * Documentation/pbuilder-doc.xml (EXTRAPACKAGES): document problem with /dev/null 2003-12-14 Junichi Uekawa * Documentation/pbuilder-doc.xml (EXTRAPACKAGES): add notes on debconf inside pbuilder. 2003-12-11 Junichi Uekawa * debuild-pbuilder.1: fix document formatting error, from Roland Stigge. * pbuilder-runhooks (hooks): Try and detect file name non-matching case for hooks, from Dale Amon. 2003-11-28 * Documentation/pbuilder-doc.xml: update 2003-11-27 Junichi Uekawa * debian/control (Conflicts): add conflicts against old bash. unset fails. 2003-11-21 Junichi Uekawa * Documentation/pbuilder-doc.xml (EXTRAPACKAGES): add notes on fakechroot. 2003-11-16 Junichi Uekawa * pbuilder-user-mode-linux: preen fsck. comment out fsck bit, it's too slow. * THANKS: add * pbuilder-runhooks: fix warning messages to be more correct, thanks to Daniel Martin. 2003-11-11 Junichi Uekawa * pbuilder-modules (pbuilder-options): reorder umount and mount so that dev, devpts, proc is done in that order. 2003-11-09 Junichi Uekawa * pbuilder-user-mode-linux: Do no hard-fail if I fail to fsck; fsck isn't really a requirement. 2003-11-08 Junichi Uekawa * pbuilder-user-mode-linux: add fsck 2003-11-06 Junichi Uekawa * pdebuild-user-mode-linux.1: update documentation. * pdebuild.1: typographical fix. * pdebuild-user-mode-linux (ARCHITECTURE): update to support --configfile option. 2003-10-29 Junichi Uekawa * debian/TODO: note the memo. * elmo.txt: note on apt. 2003-10-28 Junichi Uekawa * pdebuild.1: pbuilder will use the config file that is specified as pdebuild command-line. * pdebuild (ARCHITECTURE): Add --configfile to the call to pbuilder invocation. * pbuilder-checkparams (IGNORE_UMOUNT): EXTRA_CONFIGFILE is an array containing the list of CONFIGFILEs loaded via --configfile. * pbuilder-user-mode-linux: rename variable that looked similar to other variable. CONFIGFILE->SYSTEM_CONFIG. * pbuilder-checkparams (IGNORE_UMOUNT): add error check to --configfile option * pbuilderrc.5: update docs on BUILDRESULT not effective on pdebuild. * pdebuild.1: add notes on pdebuild requiring buildresult to be specified. 2003-10-23 Junichi Uekawa * pbuilder-modules (pbuilder-options): fix quoting. * pbuilderrc.5: update doc to mention mirrorsite. 2003-10-20 Junichi Uekawa * pbuilder.8: document. add more warnings against bind mounting. -xdev does cross bind-mount boundaries if they are the same device. 2003-10-18 Junichi Uekawa * Makefile (clean): fix clean rule to clean up * testsuite/run-test.sh (PBUILDER_UML): add more cases, test-build debootstrap also. * pbuilder-modules (pbuilder-options): change policy-rc.d to allow makedev to run. * pbuilder-user-mode-linux.1: update doc. * pbuilder-user-mode-linux (UML_DEBUGMODE): error check if BUILDPLACE is user-accessible. 2003-10-10 Junichi Uekawa * pbuilder-modules (pbuilder-options): change the wording slightly and document a workaround. 2003-10-05 Junichi Uekawa * THANKS: update thanks file. 2003-10-03 Junichi Uekawa * pbuilder-user-mode-linux (BUILDING_DSC_FILE): error checking on readlink. * pbuilder-checkparams (IGNORE_UMOUNT): error-checking on readlink. 2003-09-24 Junichi Uekawa * pbuilder-modules (pbuilder-options): actually, return 101 for policy-rc.d * debian/TODO: update * pbuilder-modules (pbuilder-options): install policy-rc.d inside chroot if it does not exist, and make it a dummy exit-all one. * THANKS: add Aaron here. * pbuilder-buildpackage (PACKAGENAME): use echo here, so that su won't mess up the command-line. c.f. 203584, "Aaron M. Ucko" 2003-09-23 Junichi Uekawa * debian/TODO: update * pbuilder.8: updated docs. * pbuilder-user-mode-linux.1: add docs on new options, mirror and nonusmirror. * testsuite/run-test.sh (PBUILDER_UML): add option --mirror. * pbuilder-user-mode-linux (UML_DEBUGMODE): support mirror option to set mirror, and nonusmirror. 2003-09-22 Junichi Uekawa * pdebuild (ARCHITECTURE): do not || true for dpkg-buildpackage -S. * testsuite/run-test.sh (PBUILDER_UML): update script to test both sid and sarge. 2003-09-19 Junichi Uekawa * testsuite/run-test.sh (PBUILDER_UML): download * Makefile (clean): remove testsuite/testimage, it's 1G. (full-check): add new target to run the test program. * pbuilder-user-mode-linux (UML_EXITCODE): check for rootstrap.conf in the current directory. * testsuite/run-test.sh (PBUILDER_UML): a test script to run pbuilder-uml and see if it's working. * testsuite/rootstrap.conf (interface): testsuite config 2003-09-05 Junichi Uekawa * pbuilder-uml.conf.5: document slirp here also. 2003-09-04 Junichi Uekawa * pbuilder-user-mode-linux.1: Document how to use slirp; it was actually easy. * pbuilder-modules: fix typo in file existence checking. * debian/TODO: how about passing "-o dpkg::Options=--force-confnew" to apt? is now done. Request from Roland Stigge to finally implement the missing feature. * pbuilder-checkparams: set FORCE_CONFNEW array variable if DEBIAN_FRONTEND is noninteractive to allow non-interactive install. * pbuilder-updatebuildenv: use FORCE_CONFNEW variable to give force-confnew option to DPKG 2003-09-02 Junichi Uekawa * pbuilder-modules: check if etc/hosts etc. exists before trying to readlink. 2003-09-01 Junichi Uekawa * debian/changelog: 0.85 * THANKS: update * pbuilder-checkparams (IGNORE_UMOUNT): fix case of --basetgz option when the base.tgz does not exist (pbuilder create). readlink failed if file did not exist. 2003-08-27 Junichi Uekawa * Documentation/pbuilder-doc.xml (PBUILDER_UML_IMAGE): Update documentation to note updates that I am aware of. * THANKS: update the list. * pbuilder.8: fix unintended italic in manual page Subject: Bug#207390: italicized period in manual page From: Matt Kraai * pbuilder-buildpackage (BUILD_PID): add default BUILDRESULTGID for chown. 2003-08-25 Junichi Uekawa * debian/README.Debian (Testsuite): update README.Debian 2003-08-22 Junichi Uekawa * pbuilder-user-mode-linux: error out when COW file cannot be created. (UML_DEBUGMODE): add --buildplace option. * pbuilder-user-mode-linux.1: update manual page since some information are missing. Add information on --buildplace option. 2003-08-20 Junichi Uekawa * pbuilder-user-mode-linux: give a more helpful message when /dev/ubd/1 is not mountable. Give a warning message that running as uid=0 is not supported. * pbuilder-buildpackage (BUILD_PID): Use chown "userid:" instead of "userid" 2003-08-15 Junichi Uekawa * Documentation/pbuilder-doc.xml (EXTRAPACKAGES): Document uml-net group requirement for user-mode-linux. * THANKS: update. * pbuilder-user-mode-linux (UML_EXITCODE): check against no --distribution flag. pbuilder-user-mode-linux errored out when no distribution was set. From: Marek Habersack * pbuilder-user-mode-linux.1: update document to note that pbuilder-uml shouldn't be ran as root. 2003-08-09 Junichi Uekawa * pbuilder-modules (pbuilder-options): rm -r replacement, clean_subdirectories, use this instead of rm -rf, to check for -xdev. 2003-08-05 Junichi Uekawa * pbuilder-user-mode-linux: add 'rw' option to linux invocation to mount / read-write. 2003-08-01 Junichi Uekawa * pbuilder-user-mode-linux (UML_EXITCODE): remove |lv from pipe, it's not needed. Subject: Bug#203732: pbuilder-uml: Missing dependency on lv From: Daniel Schepler 2003-07-27 Junichi Uekawa * pbuilder-user-mode-linux: support --distribution flag for pbuilder-user-mode-linux #176095 2003-07-26 Junichi Uekawa * debian/pbuilder.links: Try symlinking /etc/pbuilderrc to /etc/pbuilder/pbuilderrc 2003-07-22 Junichi Uekawa * Documentation/pbuilder-doc.xml: document update, to clarify a little bit on where the example for running lintian is. 2003-07-08 Junichi Uekawa * pbuilderrc.5: update to note about user-mode-linux quirks. * pbuilder-uml.conf.5: note that APTCACHEHARDLINK * Documentation/pbuilder-doc.xml: document the error for LOGNAME not defined warning, Invalid cross-device link error, and conflict against essential being a bad idea. 2003-07-03 Junichi Uekawa * pbuilder-user-mode-linux.1: document that. * pbuilder-user-mode-linux (UML_DEBUGMODE): interpret --configfile itself and then pass to pbuilder. 2003-06-07 Junichi Uekawa * pbuilder.8: update documentation so that --othermirror is obvious. 2003-05-17 Junichi Uekawa * Documentation/pbuilder-doc.xml (EXTRAPACKAGES): add notes on pbuilder backport. 2003-04-24 Junichi Uekawa * Documentation/pbuilder-doc.xml: note that --configfile option is useful for switching distributions. 2003-04-20 Junichi Uekawa * pbuilder-satisfydepends: use Source: rather than Format. Format does not exist on very old .dsc files. 189691 Daniel Schepler 2003-04-19 Junichi Uekawa * pbuilder: update copyright date. * pbuilder-buildpackage (PACKAGENAME): moved around D hook location so that D hook is called before satisfying build-deps. update copyright date. * pbuilder.8: minor improvements on the documentation wording. 2003-04-17 Junichi Uekawa * Documentation/pbuilder-doc.xml (PBUILDER_UML_IMAGE): update and document /tmp peculiarity. * pbuilder-user-mode-linux.1: document /tmp peculiarity 2003-04-11 Junichi Uekawa * debian/TODO: update TODO, bind mount, and other entries. 2003-04-10 Junichi Uekawa * Documentation/pbuilder-doc.xml (EXTRAPACKAGES): added id tags to facilitate with wysidocbookxml 2003-04-09 Junichi Uekawa * pbuilder-user-mode-linux (EXTRAOPT): Change to use new hostfs options for user-mode-linux 2003-04-08 Junichi Uekawa * Documentation/pbuilder-doc.xml: update documentation a bit. * debian/TODO: update the TODO file wrt bind-mount/hostfs for UML. * pbuilder-user-mode-linux: Do not try to umount the mountpoints. There is no point in doing that. This works around the problem of non-upgradable UML. * pbuilder-modules (pbuilder-options): support IGNORE_UMOUNT option, and do not umount. * pbuilder-checkparams (IGNORE_UMOUNT): split --no-targz and --internal-build-uml. new variable IGNORE_UMOUNT, for ignoring umount. 2003-04-06 Junichi Uekawa * Documentation/pbuilder-doc.xml (EXTRAPACKAGES): document bindmounts option. * pbuilderrc: add reference to the manual page in the example configuration file. * pbuilder-user-mode-linux (UML_DEBUGMODE): --bindmounts option. * debian/TODO: remove bind-mount from TODO. * pbuilder.8: document --bindmounts. * pbuilder-modules (pbuilder-options): add --bindmounts option * pbuilder-checkparams (PRESERVE_BUILDPLACE): add --bindmounts option * AUTHORS: update * pbuilderrc.5: document BINDMOUNTS option 2003-04-05 Sam Hartman * pbuilder: Remove warning about bind filesystems as it is no longer true. * pbuilder-modules : Support Bind mounts * pbuilderrc (BINDMOUNTS): New option 2003-04-05 Sam Hartman * pbuilder-modules (cleanbuildplace): Use find not rm -rf to clean up; avoid crossing out of the chroot on bind mounts. 2003-03-30 Junichi Uekawa * Documentation/pbuilder-doc.xml (PBUILDER_UML_IMAGE): spell-checked 2003-03-17 Junichi Uekawa * Documentation/pbuilder-doc.xml: add new FAQ entry on using apt cache for pbuilder files. 2003-03-12 Junichi Uekawa * pbuilder-modules (pbuilder-options): fix applying of preserve-buildplace patch. * pbuilder-checkparams (PRESERVE_BUILDPLACE): thinko fix. do not unset buildresult. 184420,184422 2003-03-11 Junichi Uekawa * pbuilder-buildpackage (PACKAGENAME): add missing PACKAGENAME. duh. * pbuilder-satisfydepends: unquote checkbuilddep_versiondeps ${CURRENTREALPKGNAME} * pbuilder-checkparams (PRESERVE_BUILDPLACE): the next day bug. let -buildresult '' to set BUILDRESULT to ''. 2003-03-10 Junichi Uekawa * pbuilder-checkparams (PRESERVE_BUILDPLACE): support pbuilder-user-mode-linux invocation for --buildresult. * pbuilder.8,pbuilder-createbuildenv,pbuilder-updatebuildenv: change hook name to E. * debian/rules: add check target for build. * Makefile (check): add check target to makefile, to see if there is any syntax error. * pbuilder-updatebuildenv: support --preserve-buildplace apply things from Daniel Schepler * pbuilder-satisfydepends: support --preserve-buildplace support Format: field. * pbuilder-modules (pbuilder-options): support --preserve-buildplace * pbuilder-buildpackage (PACKAGENAME): support --preserve-buildplace * pbuilder-buildpackage-funcs: support --preserve-buildplace * pbuilder-createbuildenv (DEBOOTSTRAPSCRIPT): support --preserve-buildplace * pbuilder-checkparams (PRESERVE_BUILDPLACE): add PRESERVE_BUILDPLACE * pbuilder.8: update docs to add --preserve-buildplace * pbuilder-satisfydepends: quote some strings... trying to be pedantic * pbuilder-buildpackage-funcs: unset LOGNAME for when building with real root privilage. thanks Barak Pearlmutter * pbuilder.8: document X hooks which were previously undocumented. * pbuilder-user-mode-linux (BUILDING_DSC_FILE): use readlink on real existing files. GNU "readlink -f " exits with an exit code of 1 when the file does not exist, debianutils readlink did not. * pbuilder-runhooks (hooks): do not call readlink here, since the file may not exist. * pbuilder-checkparams (USE_PKGNAME_LOGFILE): use readlink on real existing files. * pbuilder-buildpackage (PACKAGENAME): use readlink on real existing files. 2003-03-09 Junichi Uekawa * pbuilder.8: fix typo From: Tommaso Moroni Subject: Bug#184049: pbuilder: typo error in man page * THANKS: update. * Documentation/pbuilder-doc.xml (EXTRAPACKAGES): add doc on PS1 setting for pbuilder. 183861: distinctive prompt Barak Pearlmutter 2003-03-06 Junichi Uekawa * AUTHORS: update authors and thanks file. 2003-03-01 Junichi Uekawa * pbuilder-satisfydepends: Try giving out messages on fail to install, and bugfix. from Daniel Schepler * Documentation/pbuilder-doc.xml: update documentation info somewhat to match what dxml-db2latex expects. 2003-02-22 Junichi Uekawa * pbuilder: check if it is in UML mode, and do not warn if it is in UML mode. 2003-02-14 Junichi Uekawa * Documentation/pbuilder-doc.xml: update ssh installing script to allow X forwarding. 2003-02-13 Junichi Uekawa * Documentation/pbuilder-doc.xml: document an example script to start up ssh inside pbuilder-uml. * pbuilder-checkparams: support execute option. * Documentation/pbuilder-doc.xml: document pbuilder-uml more, and execute command. * pbuilder-modules: update copyright statement. document "execute" * pbuilder-user-mode-linux.1: document "execute" command * pbuilder-user-mode-linux: implement execute command. * pbuilder.8: document "execute" * pbuilder: "execute" command. 2003-02-10 Junichi Uekawa * pdebuild: set pdebuild here as well. * pbuilder-checkparams (BASEBUILDPLACE): support the convention, and do not exec < /dev/null in that case. * pdebuild-user-mode-linux (PBCURRENTCOMMANDLINEOPERATION): set to pdebuild-user-mode-linux. * pbuilder-user-mode-linux.1: fix manual to have pbuilder-uml.conf.5 * Makefile (install): add pdebuild-user-mode-linux * pdebuild-user-mode-linux.1: Initial manual page. * pdebuild-user-mode-linux: try making a new script that uses pbuilder-user-mode-linux for building instead of pbuilder. 2003-02-04 Junichi Uekawa * pbuilder-buildpackage-funcs: use "cp -p" in copydsc 2003-01-29 Junichi Uekawa * pbuilder: add warning on never to bind mount on login. * pbuilder-uml.conf.5: document the FQDN lookup quirk. * pbuilder-uml.conf (UML_HOSTNAME): default value is the hostname of the host system. 2003-01-28 Junichi Uekawa * Documentation/pbuilder-doc.xml (EXTRAPACKAGES): document that. * pbuilder.8: document apt-get update hook. * pbuilder-satisfydepends: apply patch from Daniel Schepler , fixing obvious typos. Bug: 178552 2003-01-18 Junichi Uekawa * THANKS: update. * pbuilder-modules (pbuilder-options): doit=cp instead of "ln -s". in pbuilder-modules. Thanks to eichin@metacarta.com (Mark Eichin) for reporting this. Bug: 177173 2003-01-16 Junichi Uekawa * pbuilder-modules (save_aptcache,recover_aptcache): use "find | while read ; " combination to go over the limits of shell globbing. #176872, reported by "Michel D辰nzer" . 2003-01-10 Junichi Uekawa * pbuilder-user-mode-linux: use /var/cache/pbuilder/pbuilder-umlresult as directory to mount hostfs for result. (UML_DEBUGMODE): --uml-debugmode option to enable trace of shell. * Makefile (install): create pbuilder-umlresult dir. * pbuilder-uml.conf.5: document UML_BUILDRESULT * pbuilder-uml.conf (UML_BUILDRESULT): add UML_BUILDRESULT= * pbuilder-user-mode-linux (EXTRAOPT): add support for exitcode. Thanks mdz for the hint! (UML_EXTRAOPT): try and implement BUILDRESULT 2003-01-09 Junichi Uekawa * pbuilder-user-mode-linux: use /var/cache/pbuilder/pbuilder-mnt instead of /mnt, which may be used for other tasks. PBUILDER_COWFILENAME is buildplace/$$.cow. * Makefile (install): install /var/cache/pbuilder/pbuilder-mnt dir. * pbuilder-user-mode-linux (UML_EXTRAOPT): --buildresult ignore. * pbuilder-user-mode-linux.1: document --uml-hostname * pbuilder-user-mode-linux: set hostname inside UML. (UML_EXTRAOPT): --uml-hostname option. * pbuilder-uml.conf.5: document * pbuilder-uml.conf (UML_HOSTNAME): add variable for hostname 2003-01-08 Junichi Uekawa * pbuilder-user-mode-linux (UML_EXTRAOPT): --logfile option. * pbuilder-user-mode-linux.1: and document these new options. * pbuilder-user-mode-linux (OPERATION): --override-config option passed through to pbuilder. (EXTRAOPT): quote ${EXTRAOPT} which is probably meant to be passed through. (UML_EXTRAOPT): define as variable that is used to pass uml extra options. and, of course, add these options: --binary-arch --override-config --timeout --http-proxy --configfile --hookdir --aptconfdir * debian/rules (binary-arch): add manual page installation * pbuilder-uml.conf.5: new manual page * pbuilder-uml.conf (UML_MEM): Use 128MB memory per default, it would be better to use that. * pbuilder-user-mode-linux: export HOME inside UML Try and umount the device afterwards, so that it will be clean-mount the next time. thanks: Matt Zimmerman (OPERATION): --uml-mem option. * pbuilder-checkparams: update copyright * pdebuild: update copyright info. * update copyright information to add 2003. * pbuilder-user-mode-linux: LOGNAME is set as soon as entering UML. 2003-01-07 Junichi Uekawa * Documentation/pbuilder-doc.xml (PBUILDER_UML_IMAGE): update notes on parallel-invocation of pbuilder-uml * Documentation/pbuilder-doc.xsl: stylesheet * Documentation/Makefile (%.html): build rules updated thusly. * Documentation/pbuilder-doc.css: add new file to match netfort page style. * Documentation/pbuilder-doc.xml: update documentation and add chapter on pbuilder-uml, document that pbuilder-uml actually works, and some detailed nodes on how to use them. Add FAQ entry on how to specify extra apt sources. fix encoding to be utf-8 * pbuilder-user-mode-linux.1: update doc to document that configuration files for pbuilder is now read in. * pbuilder-user-mode-linux: add debug info, to print out the command-line used for running uml. export TMPDIR=/tmp inside the chroot inside UML. change UML_CHROOT_MOUNTPOINT from /tmp/ubd1 to /mnt, and do not mkdir UML_CHROOT_MOUNTPOINT. fix /tmp creation script so that /tmp is writable when not using tmpfs. use tempfile in creating the COW file. clean COW file after finishing. remove temporary file created by tempfile, because UML doesn't seem to like the zero-byte file. (POSSIBLE SECURITY PROBLEM) extra cleanup added for cleanup_function * pbuilder-uml.conf (BUILDPLACE): add definition of BUILDPLACE for pbuilder-uml. It is probably needed, because BUILDPLACE needs to be writable by the user for UML, while it is not for pbuilder. * pbuilder-user-mode-linux: load config for pbuilder also, before trying to load other things. 2003-01-06 Junichi Uekawa * Documentation/pbuilder-doc.xml (EXTRAPACKAGES): document possible usage of pbuilder for dchroot. * pbuilder.8: document --no-targz * pbuilder-checkparams (USE_PKGNAME_LOGFILE): allow --no-targz option as alias to --internal-build-uml * pdebuild (ARCHITECTURE): use dpkg-architecture to find out the architecture. sign changes file not dsc file. pointed out by Andrew Lau , bug #175432 2003-01-04 Junichi Uekawa * debian/control (Description): fix suggests to pbuilder-uml 2003-01-03 Junichi Uekawa * Documentation/pbuilder-doc.xml: add notes on what kind of things to expect when mass-autobuilding. 2002-12-31 Junichi Uekawa * debian/README.Debian (Testsuite): update the number of packages which do build and not build. 5000 builds -> 6000 1000 fail -> 600 * Documentation/pbuilder-doc.xml: import some parts from README.Debian. * debian/README.Debian (Try): removed some parts to XML doc. * Documentation/pbuilder-doc.xml: add notes on how to set up pentium-builder for building. * Documentation/Makefile (install): add install method. * Makefile (install): add install method for docs. * Documentation/pbuilder-doc.xml: history of pbuilder moved to here. * AUTHORS: history and background of pbuilder is moved over and remove from here. * Documentation/pbuilder-doc.xml: add docs on pbuildd. * pbuildd/Makefile (install): add /var/cache/pbuilder/pbuildd dir 2002-12-30 Junichi Uekawa * Makefile: install pbuildd files as well. * pbuildd/buildd.sh: modified for pbuilder. * pbuildd/buildd-config.sh (HOOKDIR): modified for pbuilder. 2002-12-28 Junichi Uekawa * Documentation/Makefile (all): documentation makefile. * Documentation/pbuilder-doc.xml: start to create documentation. 2002-12-23 Junichi Uekawa * pbuilder-satisfydepends: add note of which versions to try in pdebuild. 2002-12-18 Junichi Uekawa * pbuilder-user-mode-linux: try to use COW device. I had a typo, fix it. * pbuilder-user-mode-linux.1: document 2002-12-16 Junichi Uekawa * THANKS: update. * pdebuild.1: More vigorously document pdebuild option, which changed. From: Jose Carlos Garcia Sogo . 2002-12-15 Junichi Uekawa * THANKS: update this file, thinking that this file is probably autogenerated from ChangeLog on other projects... * pbuilder-modules (pbuilder-options): modify the ordering of scripts so that concurrent-build experience is more active. (pbuilder-options): extraction does not need the locking, does it? I can ignore the locks while extracting. Creating the tarball needs to lock the file. mv will not replace inodes, and running extraction routines will not be affected by it. Therefore I am removing the locking completely from extraction routines. At request of Sam Couter 2002-12-13 Junichi Uekawa * examples/D10tmp: fix error in script. * examples/C10shell: example of shell invocation. * Makefile (install): install dpkg-i example. * examples/B91dpkg-i: add new file to demonstrate using script to automatically install packages. * README: update the readme file for a change, since Andrew Stribblehill noticed a mistake. 2002-12-12 Junichi Uekawa * pbuilder-buildpackage (PACKAGENAME): add banner for logfile. * debian/control (Recommends): add devscripts to recommends * pbuilder-checkparams (USE_PKGNAME_LOGFILE): fix typo * pbuilder-modules (pbuilder-options): add reference to pkgname-logfile to help text. * pbuilder.8: documentation of pkgname-logfile moved closer to --logfile option. * ChangeLog: spell-checked. * pbuilder.8: document --pkgname-logfile option. From Michael Banck , requested feature. * pbuilder-checkparams (PBUILDER_BUILD_LOGFILE): logfile name is stored in PBUILDER_BUILD_LOGFILE (PBUILDER_BUILD_LOGFILE): add --pkgname-logfile option for using logfile with pkgname-version.log (USE_PKGNAME_LOGFILE): make this variable be usable only as command-line option, and not for configuration. * pbuilderrc.5: update doc to document AUTO_DEBSIGN * pdebuild: force set BUILDRESULT from pdebuild options when invoking pbuilder, so that config from pdebuild is used inside pbuilder. (PKG_SOURCENAME, PKG_VERSION): define as version and source base name. (debsign): invoke debsign when AUTO_DEBSIGN=yes. From Andrew Lau , requested feature. * pdebuild.1: update docs, so that --buildresult quirk is documented, and --auto-debsign is documented. * pbuilder-checkparams: change option ordering so that internal options go at bottom. --auto-debsign option added for setting AUTO_DEBSIGN=yes (BINARY_ARCH): move buildsourceroot and pbuilderroot option around so that they are in the pdebuild options section. * pbuilder.8: fix the documentation to clarify that A is executed after satisfying the build-depends. 2002-12-07 Junichi Uekawa * pbuilder-buildpackage-funcs: apply patch from Daniel Schepler , to properly use BUILDOPT in checkbuilddep. 2002-11-27 Junichi Uekawa * pbuilder-buildpackage-funcs: try and implement binary-arch option. * pbuilder-checkparams (--binary-arch): set DEBBUILDOPTS. * pbuilder.8: document --binary-arch * pbuilder-modules (pbuilder-options): add doc of binary-arch * pbuilder-checkparams (OVERRIDE_APTLINES): --binary-arch option. (BINARY_ARCH): set initial value to "no". thanks: Daniel Schepler * THANKS: update. * pbuilder-buildpackage-funcs (createbuilduser): do not set HOME here. * pbuilder-buildpackage (PACKAGENAME): make HOME to be "/tmp/buildd". thanks: Clint Adams 2002-11-25 Junichi Uekawa * THANKS: update list of people. * pbuilder-modules (pbuilder-options): display value of $BASETGZ instead of base.tgz Bug: 167813 Thanks: Michael Banck * pbuilder-user-mode-linux: Fix the order of conffile loading. Bug: 167808 Thanks: Peter Hawkins 2002-11-12 Junichi Uekawa * debian/README.Debian: update documentation a little-bit. 2002-10-30 Junichi Uekawa * pbuilder.8: update documentation for --debemail, it was wrong. * pbuilderrc.5: update documentation for DEBEMAIL, it was wrong. * pbuilderrc (HOOKDIR): Set default DEBEMAIL to "". * pbuilder-satisfydepends: remove the debug thing. * debuild-pbuilder: a better handling of directory, copied from pdebuild. * pbuilder-satisfydepends: make CHROOTEXEC invocation to make it less ambiguous, for versiondeps. 2002-10-29 Junichi Uekawa * pbuilder-buildpackage-funcs: unset LOGNAME * pbuilder-satisfydepends (--continue-fail): add a new feature to debug. * pbuilderrc.5: update * pbuilder.8: update documentation slightly. * THANKS: update thanks file. * pbuilder-buildpackage-funcs: LOGNAME is set to BUILDUSERNAME, and Create shadow entry for inside chroot on fakerooting as well. Reported by: Robert Bihlmeyer * pbuilder-buildpackage: Changed to work with trap instead of other kludgey alternatives. * pbuilder-buildpackage-funcs: fixed to use trap for buildpackage hooks. 2002-10-27 Junichi Uekawa * pbuilder-checkparams (BASEBUILDPLACE): check for user-mode-linux operation, Reported by ranty@debian.org Bug: #166194 2002-10-23 Junichi Uekawa * pbuilder-buildpackage-funcs: clean up when dsc-file copying into chroot fails. 2002-10-19 Junichi Uekawa * debian/TODO: beautify file, with Todoo mode. * debian/control (Standards-Version): 3.5.7 * and revert the change made.... fuser will kill anything that uses proc, which may be outside the chroot (including X and other things..) * pbuilder-modules (umountproc): use "umount_one". * debian/control (Suggests): add psmisc Suggestion. * pbuilder-modules (umount_one): generic umount module split out from umountproc Add FORCE_KILL_WITH_FUSER option, kills processes with fuser if "yes" Reported by Thorsten Sauter 2002-10-18 Junichi Uekawa * pbuilder-buildpackage-funcs: hack HOME variable. 2002-10-16 Junichi Uekawa * THANKS: update. * AUTHORS: update, add hmh. * debian/README.Debian: update a lot. * pbuilderrc.5: update doc to mention --override-config * pbuilder.8: update doc to mention that sid/sarge/woody are supported. update doc to mention --override-config * pbuilder-modules: update the help text a little bit. * pbuilder-checkparams (OVERRIDE_APTLINES): new option --override-config to install new aptlines. * pbuilder-modules (extractbuildplace): Check that OVERRIDE_APTLINES is not set, and rewrite apt lines. Bug: #164473 * pbuilder-satisfydepends: apply patch from hmh, thanks! It now searches for a version that matches. Bug: #164919 2002-10-11 Junichi Uekawa * pbuilder-modules (create_basetgz): new function add file locking (extractbuildplace) add file locking. * pbuilder-updatebuildenv: use create_basetgz * pbuilder-createbuildenv (DEBOOTSTRAPSCRIPT): make error handling more fine-grained, and add more handling for error cases. (create_basetgz): move function over to -modules. and use it. 2002-10-05 Junichi Uekawa * pbuilder-buildpackage (BUILD_PID): fix more quoting problems with PID. $! cannot be inside "". It seems. * debian/TODO: note that TODO item, support building without root is implemented. Running as non-root in the build process is implemented through the fakeroot options, so that entry goes away, too. * AUTHORS: update the little story. * THANKS: update a bit. * pbuilder-buildpackage (BUILD_PID): quote properly 2002-09-29 Junichi Uekawa * pbuilderrc.5: update manpage to document the vars. * pbuilder-buildpackage (BUILD_PID): preserve file permissions on copying the result. (BUILDRESULTUID,BUILDRESULTGID): define UID and GID. chown and chgrp to the user ID after build. 2002-09-25 Junichi Uekawa * pbuilder-runhooks (hooks): do not error out if there are no hooks in the hookdir. * debuild-pbuilder.1: fix typo. update date. add author and URL. * pdebuild.1: add author, URL. * pbuilder.8: update date and add URL. * pbuilderrc.5: add credits and upstream URL. update date. 2002-09-24 Junichi Uekawa * pbuilder-modules (copy_local_configuration): fix the rules to copy over to work around debootstrap breakage with handling of symlinks. Remove the target file prior to copy. 2002-09-22 Junichi Uekawa * THANKS: updated thanks file. * pbuilder.8: update documentation, to clarify a bit. * pbuilder-checkparams (BUILDPLACE): Change command-line parsing so that it should fix problems with specifying configfile. (BUILDPLACE): only set CHROOTEXEC if it is empty. set CHROOTEXEC to be empty at the start of param checking. * pbuilder-createbuildenv: use pbuilder-modules code for copying etc/ files. * pbuilder-modules: split out the function to copy local configuration. 2002-09-19 Junichi Uekawa * debian/rules (binary-indep): install pbuilder-user-mode-linux.1 manpage. * pbuilder-user-mode-linux.1: document with more details. * pbuilder-user-mode-linux (OPERATION): add distribution option. 2002-09-18 Junichi Uekawa * pbuilder-uml.conf: change configuration file so that it is more generic. * debian/pbuilder-uml.files: add more files to be moved over to pbuilder-uml package. * pbuilder-user-mode-linux: change the filenames to pbuilder.conf pbuilder-uml.conf * pbuilder-user-mode-linux.1: document config files. * pbuilder-uml.conf: change filename. * uml.conf: new file created. * pbuilder-user-mode-linux (BUILDING_DSC_FILE): add update after create. It should work better. (UML_MOUNT_TMPFS): add config file loading routine. 2002-09-17 Junichi Uekawa * pbuilder-user-mode-linux (UML_MOUNT_TMPFS): fix update whatever. * pbuilder-user-mode-linux.1: create manual page * pbuilder-user-mode-linux (BUILDING_DSC_FILE): update script to get it working. 2002-09-16 Junichi Uekawa * pbuilder-user-mode-linux (BUILDING_DSC_FILE): change the construct of the script. (UML_MOUNT_TMPFS): make chroot tmpfs mounting optional. * debian/control (Depends): add Source-Version dependency, because some modules are going to be incompatible with each other. * debian/pbuilder-user-mode-linux.files: create file. Move pbuilder-user-mode-linux * debian/rules: move the thing from binary-arch to binary-indep * debian/control (Depends): update depends of debootstrap to 0.1.17.9 * pbuilder-user-mode-linux: add trapping and cleaning up routine. * pbuilder-modules: modify things shuffling around until it works... * pbuilder-user-mode-linux (BUILDING_DSC_FILE): add call to pbuilder update. * pbuilder-updatebuildenv: check for INTERNAL_BUILD_UML and ignore the basetgz creation in UML. * pbuilder-modules: remove invocation of hostname from uml. * debian/control (Depends): require 1.31.1 or greater of debianutils for readlink * Makefile (install): add pbuilder-user-mode-linux to install target * debian/control (Depends): add depends on debianutils, for readlink * pbuilder-user-mode-linux (BUILDING_DSC_FILE): use --internal-build-uml * pbuilder-modules (extractbuildplace): change to do less things when INTERNAL_BUILD_UML is specified. (cleanbuildplace): add check for INTERNAL_BUILD_UML * pbuilder-checkparams (--internal-build-uml): new option. * Makefile (install): add pbuilder-buildpackage-funcs to install target * pbuilder-buildpackage (PACKAGENAME): add id tag for calling showbuildbanner * pbuilder-buildpackage-funcs: create new file add banner opt for showbuildbanner * pbuilder-buildpackage: move funcs to /usr/lib/pbuilder/pbuilder-buildpackage-funcs 2002-09-15 Junichi Uekawa * pbuilder-user-mode-linux: experimental file. 2002-09-13 Junichi Uekawa * pbuilder-checkparams (CHROOTEXEC): add --internal-chrootexec option to set CHROOTEXEC variable. * pbuilder-createbuildenv: remove def for CHROOTEXEC * pbuilder-updatebuildenv: ditto * pbuilder-checkparams (CHROOTEXEC): CHROOTEXEC is set in checkparams, instead of -buildpackage etc. 2002-09-09 Junichi Uekawa * AUTHORS: add notes on devfs support. * pbuilder-modules: add devfs support Thanks to: "Dagfinn Ilmari Manns?er" * pbuilderrc (USEDEVFS): change default value on USEDEVFS * pbuilderrc.5: update docs on noninteractive. document USEDEVFS 2002-09-06 Junichi Uekawa * debian/changelog: 0.36 * debian/rules (binary-arch): add manpage install * pbuilder-loadconfig: create from checkparams. a module to load config files only. * debuild-pbuilder: add debuild wrapper script. * debuild-pbuilder.1: add manpage * pbuilder-buildpackage (BUILD_PID): use "trap" a bit, so that error checking can be done at all. 2002-08-27 Junichi Uekawa * pbuilder-buildpackage (BUILD_PID): race condition with termination. Make it display message before KILL. 2002-08-24 Junichi Uekawa * pbuilder-buildpackage (BUILD_PID): add error checking for "kill" 2002-08-20 Junichi Uekawa * pbuilder-buildpackage (BUILD_PID): add better messages for build-termination process. more verbose execution logs, better messages * debian/docs: add THANKS. * pbuilder-modules: document --timeout option. * pbuilder.8: document --timeout option * pbuilder-checkparams: add --timeout option * pbuilderrc.5: document TIMEOUT_TIME * pbuilder-buildpackage (CHROOTEXEC): add missing executehooks "C" to a case. (CHROOTEXEC): clean the command-line a bit, so that it's easier to use. (BUILD_PID): add timeout for build process. 2002-08-18 Junichi Uekawa * AUTHORS: added section about History and background of pbuilder. 2002-08-07 Junichi Uekawa * debian/changelog: 0.35 release * debian/control (Depends): stricter depends. * debian/README.Debian: update notes 2002-08-06 Junichi Uekawa * pbuilderrc.5: update manpage to make it more verbose 2002-07-23 Junichi Uekawa * Makefile (install): add examples dir. (install): install B90linda, D10tmp (install): install them executable, probably. 2002-07-17 Junichi Uekawa * debian/changelog: 0.33 release * THANKS: Created file to credit people. 2002-07-11 Junichi Uekawa * pbuilder-updatebuildenv: fix the && usage to use if. 2002-07-07 Junichi Uekawa * pbuilderrc.5: document that "" for APTCACHE will turn off the caching, as pointed by Colin Walters * pbuilder.8: add some documentation. 2002-06-20 Junichi Uekawa * examples/B90linda: added an example to use linda. 2002-06-18 Junichi Uekawa * debian/README.Debian: update README.Debian to note of TMPDIR. 2002-05-30 Junichi Uekawa * pbuilder-modules: add suggestion from david@josefine.at 2002-05-26 Junichi Uekawa * pbuilder-modules: use readlink -f to determine the real location of etc/hostname etc. 2002-05-14 Junichi Uekawa * pbuilder-buildpackage: add handler for some .dsc files which contain something after the filenames, like ones which have the undocumented url: field. (e.g. zope-extfile) 2002-05-13 Junichi Uekawa * pbuilder: modified clean target to load pbuilder-checkparams, instead of sourcing the config file directly. Change the test to if conditions. Fixed a thinko. 2002-05-07 Junichi Uekawa * pbuilderrc.5: document USEDEVPTS * pbuilderrc (USEDEVPTS): added USEDEVPTS option, and change to yes. * pbuilder-modules: mount /dev/pts and umount. fixed messages 2002-05-01 Junichi Uekawa * debian/changelog: release 0.27 2002-04-30 Junichi Uekawa * debian/rules (binary-arch): change pbuilder manpage to 8 * pbuilderrc.5: change pbuilder manpage to 8 * pbuilder.1: change pbuilder manpage to 8 * pdebuild.1: change pbuilder manpage to 8 * pbuilderrc.5: updated documentation by comment from Steven M Robbins. I appreciate this! 2002-04-20 Junichi Uekawa * debian/TODO: update a little bit. 2002-04-13 Junichi Uekawa * examples/D10tmp: created TMPDIR creating script * created examples dir, for example script. * pbuilder.1: added notes on manpage 2002-04-05 Junichi Uekawa * pbuilder-buildpackage: "perl dpkg-source" instead of "dpkg-source" for potato. er... this didn't help, reverting. 2002-03-31 Junichi Uekawa * pbuilder-satisfydepends: changed message slightly to make things more visible. 2002-03-24 Junichi Uekawa * pbuilder-satisfydepends: Build-Depends:[SPACE] is not forced. Fixed regexp. for "smurf" 2002-03-13 Junichi Uekawa * pbuilderrc.5: fixed the documentation, somehow --distribution doc was mixed in with --hookdir. refer to pbuilder.1 for --hookdir options. * pbuilder-buildpackage (CHROOTEXEC): executehooks "D" before unpack, and after extract. * pbuilder.1: document new hook "D" * pbuilder-satisfydepends: fix depends regexp, so that multi-line Build-Depends with epoch versions will not fail. * pbuilder-buildpackage: will clean up and exit if satisfydepends fail. * pbuilder-satisfydepends: fixed --echo and --chroot race. It is now possible to specify "--chroot whatever --echo" to debug some chrooting action. "/usr/lib/pbuilder/pbuilder-satisfydepends" reads debian/control and satisfies dependency, outside of chroot. It is rather handy. saveaptcache_umountproc_cleanbuildplace cannot be called from satisfydepends. fixed error message. * pbuilder.1: added notes on "almost obsolete"ness of -m option. 2002-03-12 Junichi Uekawa * pbuilder-satisfydepends: created Modified/forked pbuilder-buildpackage. Should be possible to install build-dependency outside of chroot, for usual operation. -- Do you trust pbuilder parser ? Instead of dpkg --print-architecture, use dpkg-architecture -qDEB_HOST_ARCH It is now possible to debug dependency with pbuilder-satisfydepends --echo --force-version --control controlfile * pbuilder-buildpackage: only run apt-get -y install ${EXTRAPACKAGES} when ${EXTRAPACKAGES} is not "" * debian/TODO: updated, non-root builds using fakeroot are now supported. document $TMPDIR and $HOME problems. * pbuilder-buildpackage: only handle Build-Depends / Control found in Source section and ignore any such entry in package sections.. 2002-03-10 Junichi Uekawa * debian/changelog: add new bug # to changelog. 2002-03-03 Junichi Uekawa * pbuilder.1: fix the documentation, --debbuildopts. Note the default. * pbuilder-checkparams (BUILDPLACE): no longer set DEBEMAIL to nobody@nowhere even if it is "". Just hope that the user has set it to a valid value. * pbuilderrc (DEBEMAIL): nobody@nowhere is the default DEBEMAIL. Configure it! * pbuilderrc, pbuilderrc.5: change default to build source/binary packages. Document it. 2002-02-26 Junichi Uekawa * pbuilder-buildpackage: reversed logic. sort -nr instead of sort in PACKAGEVERSION apt-cache routine. 2002-02-24 Junichi Uekawa * debian/changelog: release 0.24 * pdebuild.1: added better documentation. * pbuilder-buildpackage: add runhooks * pbuilder-runhooks: add quoting. * pbuilder.1: added notes of hooks * pbuilder-createbuildenv: HOOKDIR checking is moved over to runhooks. * pbuilder-updatebuildenv: likewise * pbuilder-runhooks: checks HOOKDIR, and if it's blank, quit. 2002-02-22 Junichi Uekawa * debian/changelog: release 0.23 2002-02-20 Junichi Uekawa * Makefile (install): fixed typo. * pbuilderrc.5: update the doc accordingly. * pbuilder-buildpackage (CHROOTEXEC): add fakeroot to EXTRAPACKAGES when in fakeroot mode. * pbuilderrc (BASETGZ): revert the pbuilderrc change to make fakeroot always installed. It's only required when fakeroot mode of buildpackage is run. Make it so. * pbuilder-buildpackage: most things are now fixed. fakeroot mode now works! * Makefile (INSTALL_DIRECTORY): rewrote the makefile to be a bit better with install. * pbuilder-buildpackage: add fix to chown the directory as well removed some debug string. 2002-02-18 Junichi Uekawa * pbuilder-modules: adds /etc/mailname on extractbuildplace. emacsen should install. * pbuilder-buildpackage: Can now handle ([SPACE]<< version) version relationship. Needed for arpack trying to change the /etc/group string, to make things work. Changed ordering of commands for SUTOUSER. 2002-02-16 Junichi Uekawa * pbuilder-buildpackage: fix ordering, to make the passwd creation work -rfakeroot added to DEBBUILDOPTS automatically. some more typos fixed. very much fixo. * pbuilderrc: added fakeroot to default extrapackages * pbuilderrc.5: added notes. 2002-02-15 Junichi Uekawa * pbuilder.1: document updated, noting of minor details of what option takes effect in what command. * pbuilder-buildpackage: changing it to use the specified uid. EXTRAPACKAGES option is valued within "pbuilder build" * pbuilderrc.5: document BUILDUSERNAME, BUILDUSERID * pbuilderrc (BUILDUSERNAME): added (BUILDUSERID): added 2002-02-14 Junichi Uekawa * debian/TODO: document some known bugs and features. * pbuilder-updatebuildenv: instead of purge lilo, purge $REMOVEPACKAGES Tried to add something like: -o 'DPkg::Options={"--force-confnew";}' to apt-get dist-upgrade, but it doesn't seem to function. * pbuilder-buildpackage: quoting some string redirct the cp error output to /dev/null because it looks ugly. Slight mods to message 2002-02-13 Junichi Uekawa * pbuilder-buildpackage: support for saving the aptcache when build target fails in the middle of installing the build dependency. 2002-02-12 Junichi Uekawa * debian/changelog: 0.22 released, 0.23 started. * pbuilder-updatebuildenv: apt-get clean is handled with ||true * pbuilder-modules: some notes will be given if cache content is empty Added more check. * debian/changelog: updated the changelog, adding notes. 2002-02-11 Junichi Uekawa * pbuilder-buildpackage: added a banner for pbuilder changed the message for build-dependency failure, to make it more "pbuilder" like. 2002-02-10 Junichi Uekawa * debian/TODO: updated TODO * debian/README.Debian (Testsuite): document testsuit. The current testsuite is not individual programs, but the Debian main archive itself. * debian/changelog: update the changelog wrt the problem with debootstrap. * debian/control (Depends): update the depends field to require 0.1.16.2 of debootstrap. There was a bug in 0.1.16 and 0.1.16.1 0.1.15.7 etc. should work, but they no longer exist in the archive, I shouldn't worry about it. * pbuilder-buildpackage: fixed the sed rule to allow for space. * pbuilder-buildpackage: fixing the awk bit to make case-insensitive, and non-intervening. Build-Depends detection should be better now. slight fix in ordering and minor detail. * pbuilder-buildpackage: Build-Depends-Indep etc. field names are handled as case-insensitive. So "BuilD-DePeNDS-inDeP" is a valid field name according to policy. INSTALLPKG and INSTALLPKGMULTI are local vars considering INSTALLPKGMULTI is printed with $0, not $1 (which contains random output) introduced CURRENTREALPKGNAME Using the CURRENTREALPKGNAME variable in depends/conflicts checker. fixed the CURRENTREALPKGNAME to handle packages with build-dependency without space. i.e. PACKAGENAME(>> version) * pbuilder-updatebuildenv: uses recover_aptcache and save_aptcache. * pbuilder-createbuildenv: added recover_aptcache, and save_aptcache to the creation process. * pbuilder-modules: recover_aptcache, save_aptcache function created * pbuilder-buildpackage: moved the recovering the aptcache and saving routine out to -modules. 2002-02-09 Junichi Uekawa * pbuilder-modules: some message change. * pbuilder-buildpackage: Build-[dD]epends, and Build-[Dd]epends-[Ii]ndep, because many packages seem to use Build-depends instead of Build-Depends, and most tools seem to cope with it. Likewise for Build-Conflicts. fix some messages. 2002-02-08 Junichi Uekawa * debian/changelog: release 0.21 * pbuilder-buildpackage: added echobacktime function, and some logging of time, so that the information can be used in tracking the time required. * pdebuild: use the dpkg-buildpackage -r option rather than calling it with $BUILDSOURCEROOTCMD. dpkg-buildpackage does more optimal things. Am I breaking things? * pbuilder-checkparams : adding DEBIAN_FRONTEND=Noninteractive case to the noninteractive mode check. Needed to work around FAI/ sbuild/whateverelse undocumented incompatibility. 2002-02-06 Junichi Uekawa * debian/changelog: updated the changelog. 2002-02-02 Junichi Uekawa * debian/README.Debian: typo fixes. * pbuilderrc.5: checked and fixed typos. * pbuilder-modules: fixed, privilate -> privilege * debian/TODO: fixed typo, added notes. * pbuilder-updatebuildenv: added GPL notice * pbuilder-createbuildenv: added GPL notice * pbuilder-checkparams: added GPL notice * pbuilder-modules: added GPL notice * pbuilder-buildpackage: added GPL notice at top * pbuilder: updated copyright notice to 2001,2002. * pbuilder: remove the unnecessary test -z thing, so that duplicate help message will not appear. * pbuilderrc.5: APTCONFDIR documentation * pbuilder.1: document --aptconfdir added some more comments on "update" option and "--distribution" more notes are added to --buildresult. * pbuilder-modules: when aptconfdir is set, just dump the files inside there to /etc/apt inside chroot. * pbuilder-checkparams: added --aptconfdir * pbuilderrc (APTCONFDIR): new variable. * pbuilder-modules: installing apt-lines will use arbitrary dir to copy the template from. 2002-02-01 Junichi Uekawa * pbuilder-checkparams: --othermirror option parser had a typo. pointed by kov@debian.org 2002-01-31 Junichi Uekawa * debian/TODO: updated documentation in TODO. * debian/changelog, debian/README.Debian: the documented workaround is not a good one, removed the workaround, and mention of it. * debian/README.Debian: updates to the documentation. 2002-01-28 Junichi Uekawa * debian/changelog: updated the changelog. * pbuilder-checkparams: change the --logfile option behavior, it should be able to redirect stderr output better. Read ~/.pbuilderrc * pbuilder.1: typo/spelling mistake fixed. * debian/README.Debian (Notes): added notes on the workaround. 2002-01-27 Junichi Uekawa * pbuilder: modified to use umountproc_cleanbuildplace in "trap" for "pbuilder login" * pbuilder-createbuildenv: added a trap function to cleanbuildplace on exit. some obsolete and unnecessary cleanbuildplace invocation removed. * pbuilder-buildpackage: changed abortingfunction -> umountproc_cleanbuildplace (name change) * pbuilder-modules (umountproc_cleanbuildplace): changed function name. * pbuilder-updatebuildenv: changed aborting function to umountproc_cleanbuildplace, to unify. moved the "trap" invocation to a better location, before loadhooks. 2002-01-24 Junichi Uekawa * pbuilder-updatebuildenv: Aborting function is performed through trap * exit. Probably others too need to be done this way. 2002-01-22 Junichi Uekawa * pbuilder-updatebuildenv: added a aborting function abortprocess, so that any upgrade process that fails will clean up. 2002-01-18 Junichi Uekawa * pbuilder-checkparams: fixed a typo. 2002-01-18 * pbuilder-modules: added documentation for debbuildopts. * pbuilderrc (DEBBUILDOPTS): added a default value for the new option. * pbuilder-buildpackage : hand-applied patch from Daniel Kobras * pbuilder-checkparams: ditto * pbuilder.1: ditto * pbuilderrc.5: ditto * added copyright notice to bottom of ChangeLog * AUTHORS: added Daniel Kobras to the list. Maybe he should join the "THANKS" file, but I don't know if I should be making another file. * debian/TODO: updated 2002-01-15 * pbuilderrc: quoting some text just for the sake of quoting. adding some verbose comments. * pbuilder-checkparams: var emptying at the beginning for DPKG_BUILDPACKAGEOPTS was obsolete, removed. * debian/README.Debian (Testsuite): added notes on testsuites, and how they are doing. * pbuilder: Modify $@ to "$@" as pointed out by Daniel Kobras. 2002-01-15 Junichi Uekawa * pbuilder-checkparams : added routine to load usr/share/pbuilder/pbuilderrc if it exists. * Makefile (install): added usr/share/pbuilder/pbuilderrc default config. This file contains some changelog record for individual files. More generic info should be found in debian/changelog. I should probably create NEWS file, but well... it takes some energy. When pbuilder stabilizes, I will look at doing it. 14 Jan 2002 Junichi Uekawa Copyright (c) 2001-2007 Junichi Uekawa 上川純一 pbuilder-0.215ubuntu7/pbuilder-checkparams0000775000000000000000000001753412312041170015565 0ustar #! /bin/bash # this is sourced from pbuilder packages to process the optional parameters. # pbuilder -- personal Debian package builder # Copyright (C) 2001-2007 Junichi Uekawa # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA # This code is called for pbuilder and pbuilder inside pbuilder-uml; # pbuilder-uml calls uml-checkparams. export PBUILDER_PKGLIBDIR="${PBUILDER_PKGLIBDIR:-$PBUILDER_ROOT/usr/lib/pbuilder}" . "$PBUILDER_PKGLIBDIR"/pbuilder-loadconfig . "$PBUILDER_PKGLIBDIR"/pbuilder-modules #default value for this option is !empty! INTERNAL_BUILD_UML="" TWICE="" CHROOTEXEC="" OVERRIDE_APTLINES="no" OVERRIDE_APTLINES_WARN="" # set this if --override-config option should be set. BINARY_ARCH="no" PBUILDER_BUILD_LOGFILE= PRESERVE_BUILDPLACE="no" unset EXTRA_CONFIGFILE || true PBUILDER_DEBUGMODE= SAVE_AFTER_LOGIN= #option for user-mode-linux only. IGNORE_UMOUNT="" while [ -n "$1" ]; do case "$1" in --basetgz) case "${PBCURRENTCOMMANDLINEOPERATION}" in create|--create) touch "$2";; esac if [ ! -f "$2" ]; then log "E: File $2 does not exist" exit 1 fi BASETGZ=$(readlink -f "$2"); shift; shift; ;; --buildplace) if [ ! -d "$2" ] ; then log "E: Directory $2 does not exist" exit 1 fi BUILDPLACE=$(readlink -f "$2"); shift; shift; ;; --mirror) MIRRORSITE="$2"; OVERRIDE_APTLINES_WARN=yes shift; shift; ;; --othermirror) OTHERMIRROR="$2"; OVERRIDE_APTLINES_WARN=yes shift; shift; ;; --http-proxy) export http_proxy="$2"; shift; shift; ;; --distribution) DISTRIBUTION="$2"; OVERRIDE_APTLINES_WARN=yes shift; shift; ;; --architecture) ARCHITECTURE="$2"; shift; shift; ;; --components) COMPONENTS="$2"; OVERRIDE_APTLINES_WARN=yes shift; shift; ;; --buildresult) if [ -n "$2" ]; then if [ -d "$2" ]; then BUILDRESULT=$(readlink -f "$2"); else BUILDRESULT="$2" log "W: Build-result Directory $2 does not exist" # warn, but make it progress. fi else BUILDRESULT= fi shift; shift; ;; --compressprog) if [ -n "$2" ]; then COMPRESSPROG="$2" fi shift; shift; ;; --aptcache) if [ -n "$2" ]; then if [ -d "$2" ]; then APTCACHE=$(readlink -f "$2"); else log "E: Directory $2 does not exist" exit 1 fi else APTCACHE= fi shift; shift; ;; --autocleanaptcache) AUTOCLEANAPTCACHE=yes shift; ;; --removepackages) REMOVEPACKAGES="$2"; shift; shift; ;; --configfile) if [ ! -f "$2" ]; then log "E: Config file $2 does not exist" exit 1 fi . "$2"; EXTRA_CONFIGFILE[${#EXTRA_CONFIGFILE[@]}]="$2"; shift; shift; ;; --extrapackages) EXTRAPACKAGES="$2"; shift; shift; ;; --hookdir) HOOKDIR="$2"; shift; shift; ;; --debemail) DEBEMAIL="$2"; shift; shift; ;; --debbuildopts) # append to DEBBUILDOPTS or reset to empty if $2 isn't set DEBBUILDOPTS="${2:+${DEBBUILDOPTS:+$DEBBUILDOPTS }$2}"; shift; shift; ;; --logfile) log "I: Logging to $2" exec > >(tee "$2") 2>&1 PBUILDER_BUILD_LOGFILE=$(readlink -f "$2") shift; shift; ;; --pkgname-logfile) PKGNAME_LOGFILE="yes" shift; ;; --aptconfdir) APTCONFDIR="$2"; shift; shift; ;; --timeout) TIMEOUT_TIME="$2" shift; shift; ;; --help) showhelp ;; --override-config) OVERRIDE_APTLINES="yes" shift; ;; --binary-arch) BINARY_ARCH="yes" # XXX this might be overwriten by --debbuildopts "" DEBBUILDOPTS="${DEBBUILDOPTS} -B" shift; ;; --preserve-buildplace) PRESERVE_BUILDPLACE="yes" shift; ;; --bindmounts) BINDMOUNTS="${BINDMOUNTS} $2" shift; shift; ;; --debootstrapopts) # specify this option to set --variant=buildd value to debootstrap DEBOOTSTRAPOPTS[${#DEBOOTSTRAPOPTS[@]}]="$2"; shift; shift; ;; --debootstrap) # Use this option to specify debootstrap/cdebootstrap DEBOOTSTRAP="$2"; shift; shift; ;; --allow-untrusted) ALLOWUNTRUSTED=yes; shift; ;; --keyring) APTKEYRINGS[${#APTKEYRINGS[@]}]="$2"; shift; shift; ;; --save-after-login|--save-after-exec) SAVE_AFTER_LOGIN=yes; shift; ;; --inputfile) if [ ! -f "$2" ]; then log "E: Input file $2 does not exist" exit 1 fi INPUTFILE[${#INPUTFILE[@]}]="$2"; shift; shift; ;; --outputfile) OUTPUTFILE[${#OUTPUTFILE[@]}]="$2"; shift; shift; ;; ## internal options. --internal-chrootexec) # specify custom chrootexec function -- this is internal debugging function CHROOTEXEC="$2" shift; shift; ;; --debug) PBUILDER_DEBUGMODE=yes set -x shift; ;; --no-targz) # specify this option if I am running in no-targz mode log "I: Running in no-targz mode" INTERNAL_BUILD_UML="yes" shift; ;; --internal-build-uml) # specify this option if I am running inside UML. log "I: Running in pbuilder-user-mode-linux mode" INTERNAL_BUILD_UML="yes" IGNORE_UMOUNT="no" shift; ;; --twice) TWICE="yes" shift; ;; --) # end of processing for this shift; break; ;; --*) log "E: Unknown option [$1] was specified " exit 1; ;; *) break; ;; esac done BUILDPLACE=${BUILDPLACE?"Build root directory is not defined"} # the default is to add a PID in the buildplace specified in the config file. BASEBUILDPLACE="$BUILDPLACE" if [ "${INTERNAL_BUILD_UML}" != "yes" -a "${PRESERVE_BUILDPLACE}" != "yes" ]; then BUILDPLACE="$BUILDPLACE/$$" fi if [ -z "${CHROOTEXEC}" ]; then CHROOTEXEC="chroot $BUILDPLACE " fi # handle 'experimental' specially. -- required for raw pbuilder (create/update) only. if [ "$DISTRIBUTION" = "experimental" ]; then DISTRIBUTION="sid" EXPERIMENTAL="true" else EXPERIMENTAL= fi case "$PBCURRENTCOMMANDLINEOPERATION" in --login|login|--execute|execute|--pdebuild|pdebuild) # don't do anything if it is "login", or pdebuild ;; *) # line from kobras@debian.org if [ "$DEBIAN_FRONTEND" = "noninteractive" -o "$DEBIAN_FRONTEND" = "Noninteractive" ]; then exec < /dev/null # set variables used in the upgrade option. FORCE_CONFNEW[0]='-o' FORCE_CONFNEW[1]='DPkg::Options::=--force-confnew' else unset FORCE_CONFNEW || true fi ;; esac if [ -n "$CCACHEDIR" ]; then if [ -d "$CCACHEDIR" ]; then BINDMOUNTS="$BINDMOUNTS $CCACHEDIR" fi export PATH="/usr/lib/ccache:$PATH" fi # sort BINDMOUNTS to ensure that deeper directories are mounted last BINDMOUNTS="$(for i in $BINDMOUNTS; do echo $i; done | sort -u)" if [ "$ALLOWUNTRUSTED" = "yes" ]; then PBUILDERSATISFYDEPENDSOPT[${#PBUILDERSATISFYDEPENDSOPT[@]}]='--allow-untrusted' # Also duplicated in pbuilder-satisfydepends-checkparams! # apt flag to accept untrusted packages APTGETOPT[${#APTGETOPT[@]}]='--force-yes' # aptitude flag to accept untrusted packages APTITUDEOPT[${#APTITUDEOPT[@]}]='-o' APTITUDEOPT[${#APTITUDEOPT[@]}]='Aptitude::CmdLine::Ignore-Trust-Violations=true' fi pbuilder-0.215ubuntu7/bash_completion.d/0000775000000000000000000000000012312041256015135 5ustar pbuilder-0.215ubuntu7/bash_completion.d/pbuilder0000664000000000000000000000455312312041170016670 0ustar # Debian GNU/Linux cowbuilder(1) completion # Copyright 2007 Cyril Brulebois # # This script can be distributed under the same license as the # cowdancer or bash packages. # # adapted to pbuilder, the license is GPLv2 or later. # Copyright 2007 Junichi Uekawa have pbuilder && { _pbuilder() { local cur prev command i COMPREPLY=() _get_comp_words_by_ref cur prev if [[ $COMP_CWORD -eq 1 ]]; then COMPREPLY=( $( compgen -W '--create --update --build --login --execute \ --dumpconfig create update build login execute dumpconfig' -- "$cur" ) ) return 0 fi _expand || return 0 # find the last option flag if [[ $cur != -* ]]; then i=$COMP_CWORD while [[ $prev != -* && $i != 2 ]]; do i=$((i-1)) prev=${COMP_WORDS[i-1]} done fi command=${COMP_WORDS[1]} case $prev in --basetgz) # tgz file completion _filedir 'tgz' return 0 ;; --configfile|--logfile) # Any file _filedir return 0 ;; --buildplace|--buildresults) # Any directory _filedir -d return 0 ;; *) # Provide available flags COMPREPLY=( $( compgen -W '--allow-untrusted --basetgz --buildplace --mirror \ --othermirror --http-proxy --distribution --architecture --components \ --buildresult --aptcache --removepackages --extrapackages --configfile \ --hookdir --debemail --debbuildopts --logfile --pkgname-logfile \ --aptconfdir --timeout --override-config --binary-arch \ --preserve-buildplace --bindmounts --debug --twice --autocleanaptcache \ --compressprog --debootstrapopts --save-after-login --save-after-exec \ --debootstrap' \ -- "$cur" ) ) if [[ $prev = @(--aptcache|--hookdir) ]]; then # Optionally provide a directory _filedir -d fi if [[ $cur != -* && $command == @(--build|build) ]]; then # dsc file completion _filedir "dsc" fi return 0 ;; esac return 0 } complete -F _pbuilder pbuilder } pbuilder-0.215ubuntu7/pbuilder-user-mode-linux.10000664000000000000000000001500512312041170016464 0ustar .TH "pbuilder\-user\-mode\-linux" 1 "2005 Jun 12" "Debian" "pbuilder" .SH NAME pbuilder\-user\-mode\-linux \- personal package builder in UML .SH SYNOPSIS .BI "pbuilder\-user\-mode\-linux create [" "options" "]" .PP .BI "pbuilder\-user\-mode\-linux update [" "options" "]" .PP .BI "pbuilder\-user\-mode\-linux build [" "options" "] " ".dsc-file" .PP .BI "pbuilder\-user\-mode\-linux execute [" "options" "] " "script" .PP .BI "pbuilder-user\-mode\-linux login [" "options" "]" .SH DESCRIPTION Front end program to the .B "pbuilder" suite of programs, used for creating and maintaining user-mode-linux environment and building Debian package within the user-mode-linux virtual machine environment. Unlike .B "pbuilder", .B "pbuilder\-user\-mode\-linux" does not require root privilege to run. It should be ran under a normal user. .SH "OPTIONS" .TP .B "create" Creates a user-mode-linux root image for the specified distribution using .B rootstrap software .TP .B "update" Updates the user-mode-linux root image for the specified distribution. Also, by specifying the .B "\-\-distribution" option, it is possible to switch the distribution. Specify a dummy distribution value even for custom apt config files. .TP .B "build" Builds the package specified by .I ".dsc-file" within the user-mode-linux environment. .TP .B "login" Invokes shell within UML. .TP .B "dumpconfig" dumps configuration information about user-mode-linux, used for debugging. .TP .B "execute" Invokes a command or script inside UML. .B "execute" will copy the specified file into the UML system, and run it. The remaining command-line arguments are passed on to the script. .TP .BI "\-\-uml\-image [" "UML image" "]" Specify the UML image to use. .TP .BI "\-\-eth0 [" "uml option for eth0" "]" Specify this option as parameter to UML. Specify .B "\-\-eth0=slirp,12345,/usr/bin/slirp\-fullbolt" to use the slirp connection. .TP .BI "\-\-uml\-ip [" "IP inside UML" "]" Specify this to set the IP inside UML. This can be set to .B "dhcp" for obtaining IP address through DHCP. .TP .BI "\-\-uml\-netmask [" "netmask" "]" The netmask. .TP .BI "\-\-uml\-network [" "network" "]" The network address. .TP .BI "\-\-uml\-broadcast [" "broadcast" "]" The broadcast address. .TP .BI "\-\-uml\-gateway [" "gateway" "]" The gateway address. .TP .BI "\-\-mount\-tmpfs [" "yes" "]" Specify whether to mount tmpfs inside UML chroot. .TP .BI "\-\-uml\-hostname [" "uml-host" "]" The hostname inside uml. .TP .BI "\-\-distribution [" "sid" "]" Specify the distribution. see pbuilder(8) .TP .BI "\-\-binary-arch" Specify only to build binary-arch targets. see pbuilder(8) .TP .BI "\-\-timeout " "timeouttime" Timeout build after specified time. see pbuilder(8) .TP .BI "\-\-configfile " "config file to read" Makes pbuilder to read the config file inside UML. pbuilder-user-mode-linux itself would be affected by the contents of the config file. .TP .BI "\-\-hookdir " "location of hooks" Makes pbuilder use the specified hookdir inside UML. .TP .BI "\-\-aptconfdir " "apt configuretion directory" Makes pbuilder to use specified apt configuration directory instead of other settings. See pbuilder(8) .TP .BI "\-\-override\-config" Specify this option along with .B \-\-distribution to switch distribution using .B "pbuilder\-user\-mode\-linux update" .TP .BI "\-\-logfile " "logfilename" Specify this option to make the output go to .I logfilename as well as standard output. .TP .BI "\-\-buildresult " "/dir/to/build/result" The directory where build result is placed to .TP .BI "\-\-uml\-debugmode" Enable tracing of shell scripts used by pbuilder\-user\-mode\-linux. .TP .BI "\-\-bindmounts " "/dir/to/bind-mount" Bind-mount the directory inside the chroot inside the user-mode-linux. .TP .BI "\-\-buildplace " "place-to-put-COW-file" Specify the directory to place the COW file. The user needs to be able to access that directory, and the directory must exist. .TP .BI "\-\-uml\-login\-nocow" Do not use COW filesystem when using .B "pbuilder\-user\-mode\-linux login" so that changes made in the log in session will persist. Effective in .B login and .B exec options. \" copied from pbuilder.8 .TP .BI "\-\-mirror [" "mirror location" "]" Specifies the URL of Debian mirror to be specified in .B "sources.list" inside the chroot. This option is only valid when distribution is being specified, for update and build targets. The format is something like: .I "http://http.us.debian.org/debian" which should point to your favourite mirror. This option can optionally be omitted, and left blank, in which case, this part is skipped. Note that these URLs specified to pbuilder will be used from within the chroot, and specifying .B "file:/somewhere/" will most probably fail. .TP .BI "\-\-othermirror [" "deb http://xxx/xxx/ ./ " "|" " other deb lines... " "]" The lines which is added to the sources.list, delimited with .B "|" Like .B "deb http://local/mirror stable main|deb file:/usr/local/mirror ./" The deb lines here are the ones that will appear at the top of the .B "sources.list" inside the chroot. Be sure to follow the syntax rules of .BR "sources.list" "(5)." These lines appear at the beginning of the constructed sources file, so this is the place to list your .B "local" mirror sites; apt will then use them in preference to the ones listed in .B "\-\-mirror". These options are only valid when .B "\-\-override\-config" option is specified in .B "update" target, or when .B "pbuilder create" is being called. \" copied from pbuilder.8 .SH "NOTES" For .B build and .B login targets, .B pbuilder\-user\-mode\-linux will try to use COW devices. Inside user-mode-linux, pbuilder-user-mode-linux will mount tmpfs as .B /tmp to avoid temporary file race conditions with outside of UML. This may cause problems trying to use files in /tmp directory. .SH "FILES" .TP .I "/etc/pbuilderrc" The system-wide configuration file for pbuilder. .TP .I "/usr/share/pbuilder/pbuilderrc" The default settings for pbuilder, used as fallback for all values that is not specified in .B "/etc/pbuilderrc." .TP .B "/etc/pbuilder/pbuilder\-uml.conf" System-wide configuration file for pbuilder-uml, it will take priority over pbuilder configurations. .TP .B "/usr/share/pbuilder/pbuilder\-uml.conf" Software-default configuration file for pbuilder-uml. .TP .B "${HOME}/.pbuilderrc" User-default configuration file. .SH "SEE ALSO" .BR "/usr/share/doc/pbuilder/pbuilder-doc.html" ", " .BR "pdebuild" "(1), " .BR "pbuilder" "(8), " .BR "rootstrap" "(1), " .BR "linux" "(1), " .BR "pbuilderrc" "(5), " .BR "pbuilder\-uml.conf" "(5)" pbuilder-0.215ubuntu7/pdebuild-user-mode-linux.10000664000000000000000000000574512312041170016460 0ustar .TH "pdebuild\-user\-mode\-linux" 1 "2006 May 24" "Debian" "pbuilder" .SH NAME pdebuild\-user\-mode\-linux \- pbuilder\-user\-mode\-linux way of doing debuild .SH SYNOPSIS .BI "pdebuild\-user\-mode\-linux [" "pdebuild\-user\-mode\-linux options" "] \-\- [" "pbuilder\-user\-mode\-linux options" "]" .PP .SH "DESCRIPTION" A convenience program for .B pbuilder\-user\-mode\-linux which invokes pbuilder after obtaining appropriate root privilege in a Debian source directory. One must be inside the source tree containing the .B debian directory, in order to make it work. .SH "PDEBUILD OPTIONS" .TP .BI "\-\-buildsourceroot [" "fakeroot" "]" The command used to gain root privilege for invoking dpkg-buildpackage .TP .BI "\-\-auto\-debsign" Invoke debsign at the end of pdebuild process. .TP .BI "\-\-debsign\-k [" "key-id" "]" Pass .B "\-k" option to debsign to specify which keyid to sign. .TP .BI "\-\-buildresult [" "Directory for build results" "]" The place which build result is stored. .TP .BI "\-\-configfile [" "Extra config file to use" "]" The configuration file is used, but not passed on to .BR "pbuilder\-user\-mode\-linux" . .TP .BI "\-\-debbuildopts [" "options to pass to dpkg\-buildpackage" "]" The space-delimited list of options are passed to dpkg\-buildpackage. This option appends to pbuilder option .B "\-\-debbuildopts" and may also be used to reset the list of options by passing the empty string. .TP .BI "\-\-use\-pdebuild\-internal" Uses a different implementation of pdebuild, which calls clean and build inside the chroot, using bind-mounts. .B "pdebuild\-internal" tries to run debian/rules clean inside the chroot. To achieve the goal, the working directory is passed on inside the chroot, in the form of bind-mounting and .B debuild is run. This option will not protect the working directory and its parent directories from the build scripts. .TP .BI "\-\- [" "pbuilder options" "]" After the .B "\-\-" symbol, an arbitrary number of pbuilder options can be specified. See pbuilder-user-mode-linux.1 for full list of options. There is an exception that .B "\-\-buildresult" needs to be specified as pdebuild option before the .B "\-\-" to be effective. .SH "FILES" .TP .I "/etc/pbuilderrc" The configuration file for pbuilder\-user\-mode\-linux, used in pdebuild\-user\-mode\-linux. .TP .I "/usr/share/pbuilder/pbuilderrc" The default configuration file for pbuilder\-user\-mode\-linux, used in pdebuild\-user\-mode\-linux. .TP .I "${HOME}/.pbuilderrc" Configuration file for pbuilder\-user\-mode\-linux, used in pdebuild\-user\-mode\-linux, overrides what is written in .B /etc/pbuilderrc .SH "AUTHOR" Initial coding, and main maintenance is done by Junichi Uekawa . The homepage is available at .B "\%http://pbuilder.alioth.debian.org" .SH "SEE ALSO" .BR "/usr/share/doc/pbuilder/pbuilder-doc.html" ", " .BR "pbuilder\-user\-mode\-linux" "(1), " .BR "pbuilderrc" "(5), " .BR "pbuilder\-uml.conf" "(5) " \" LocalWords: pdebuild linux pbuilder fakeroot pbuilder-0.215ubuntu7/pbuilder-uml-checkparams0000664000000000000000000000637012312041170016351 0ustar #! /bin/bash # pbuilder-user-mode-linux -- personal Debian package builder # Copyright (C) 2004-2007 Junichi Uekawa # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA # load and check params. # requires # . /usr/lib/pbuilder/pbuilder-loadconfig for SYSTEM_CONFIG in \ /usr/share/pbuilder/pbuilder-uml.conf \ /etc/pbuilder/pbuilder-uml.conf \ ${HOME}/.pbuilderrc \ ${HOME}/.pbuilder-umlrc; do if [ -f ${SYSTEM_CONFIG} ]; then . ${SYSTEM_CONFIG} fi done PBUILDER_COW="" UML_EXTRAOPT= UML_DEBUGMODE= UML_EXECUTE_EXTRAOPT= UML_LOGIN_NOCOW= while [ -n "$1" ] ; do case "$1" in # pbuilder UML options --eth0) MY_ETH0="$2"; shift; shift; ;; --uml-ip) UML_IP="$2"; shift; shift; ;; --uml-netmask) UML_NETMASK="$2"; shift; shift; ;; --uml-network) UML_NETWORK="$2"; shift; shift; ;; --uml-broadcast) UML_BROADCAST="$2"; shift; shift; ;; --uml-gateway) UML_GATEWAY="$2"; shift; shift; ;; --uml-image) PBUILDER_UML_IMAGE="$2"; shift; shift; ;; --mount-tmpfs) UML_MOUNT_TMPFS="$2"; shift; shift; ;; --uml-mem) UML_MEM="$2"; shift; shift; ;; --uml-hostname) UML_HOSTNAME="$2"; shift; shift; ;; --uml-debugmode) UML_DEBUGMODE="set -x"; shift;; --distribution) UML_DISTRIBUTION="$2"; shift; shift; ;; --uml-login-nocow) UML_LOGIN_NOCOW=yes; shift; ;; #things that can be passed through without options --override-config|--binary-arch) UML_EXTRAOPT="${UML_EXTRAOPT} $1" shift;; --configfile) UML_EXTRAOPT="${UML_EXTRAOPT} $1 $2" . "$2" shift; shift;; #things that can be passed through with options --timeout|--http-proxy|--hookdir|--aptconfdir|--bindmounts|--mirror|--othermirror) UML_EXTRAOPT="${UML_EXTRAOPT} $1 $2" shift; shift;; --buildresult) # ignore buildresult if [ -d "$2" ]; then UML_BUILDRESULT=$(readlink -f "$2") else echo "E: Directory $2 does not exist" >&2 exit 1 fi shift; shift;; --buildplace) if [ -d "$2" ]; then BUILDPLACE=$(readlink -f "$2") else echo "E: Directory $2 does not exist" >&2 exit 1 fi shift; shift;; --logfile) exec > "$2" 2>&1 PBUILDER_BUILD_LOGFILE=$(readlink -f "$2") shift;shift;; --) shift; break; ;; --*) echo "Error: Unknown option [$1] was specified " >&2 exit 1; ;; *) break; ;; esac done if ! touch "${BUILDPLACE}/touch" ; then echo "E: Cannot touch BUILDPLACE/touch, check BUILDPLACE" >&2 exit 1 fi pbuilder-0.215ubuntu7/test_pbuilder-modules0000775000000000000000000000211612312041170016001 0ustar #!/bin/bash if [ -n "$PBUILDER_CHECKOUT" ]; then . "$PBUILDER_CHECKOUT/testlib.sh" . "$PBUILDER_CHECKOUT/pbuilder-modules" else # these currently don't need to be exported PBUILDER_TEST_ROOT="${PBUILDER_ROOT:-}" PBUILDER_TEST_PKGLIBDIR="${PBUILDER_PKGLIBDIR:-$PBUILDER_ROOT/usr/lib/pbuilder}" . "$PBUILDER_TEST_PKGLIBDIR/testlib.sh" . "$PBUILDER_TEST_PKGLIBDIR/pbuilder-modules" fi function test_information() { log "I: test" log "W: warning" log "E: error" } expect_output "I: test W: warning E: error" test_information # test the non-copy case function test_conditional_cp_a() { ( TEMPDIR=$(mktemp -d) cd "${TEMPDIR}" touch "hoge" outdir=$(readlink -f "${TEMPDIR}/..") conditional_cp_a "hoge" "${outdir}" echo ) } expect_output "I: file hoge is already in target, not copying." \ test_conditional_cp_a # test the copy case. function test_conditional_cp_a_copy() { ( cd /tmp outdir=/something-else conditional_cp_a "hoge" "${outdir}" echo ) } expect_output "-a hoge /something-else" test_conditional_cp_a_copy testlib_summary pbuilder-0.215ubuntu7/pbuilderrc0000664000000000000000000000762612412242264013641 0ustar # pbuilder defaults; edit /etc/pbuilderrc to override these and see # pbuilderrc.5 for documentation BASETGZ=/var/cache/pbuilder/base.tgz #EXTRAPACKAGES="" #export DEBIAN_BUILDARCH=athlon BUILDPLACE=/var/cache/pbuilder/build/ MIRRORSITE=http://archive.ubuntu.com/ubuntu #OTHERMIRROR="deb http://www.home.com/updates/ ./" #export http_proxy=http://your-proxy:8080/ USEPROC=yes USEDEVPTS=yes USERUNSHM=yes USEDEVFS=no BUILDRESULT=/var/cache/pbuilder/result/ # specifying the distribution forces the distribution on "pbuilder update" DISTRIBUTION=trusty # specifying the architecture passes --arch= to debootstrap; the default is # to use the architecture of the host #ARCHITECTURE=`dpkg --print-architecture` # specifying the components of the distribution, for instance to enable all # components on Debian use "main contrib non-free" and on Ubuntu "main # restricted universe multiverse" COMPONENTS="main" #specify the cache for APT APTCACHE="/var/cache/pbuilder/aptcache/" APTCACHEHARDLINK="yes" REMOVEPACKAGES="" #HOOKDIR="/usr/lib/pbuilder/hooks" HOOKDIR="" # NB: this var is private to pbuilder; ccache uses "CCACHE_DIR" instead # CCACHEDIR="/var/cache/pbuilder/ccache" CCACHEDIR="" # make debconf not interact with user export DEBIAN_FRONTEND="noninteractive" DEBEMAIL="" #for pbuilder debuild BUILDSOURCEROOTCMD="fakeroot" PBUILDERROOTCMD="sudo -E" # use cowbuilder for pdebuild #PDEBUILD_PBUILDER="cowbuilder" # additional build results to copy out of the package build area #ADDITIONAL_BUILDRESULTS=(xunit.xml .coverage) # command to satisfy build-dependencies; the default is an internal shell # implementation which is relatively slow; there are two alternate # implementations, the "experimental" implementation, # "pbuilder-satisfydepends-experimental", which might be useful to pull # packages from experimental or from repositories with a low APT Pin Priority, # and the "aptitude" implementation, which will resolve build-dependencies and # build-conflicts with aptitude which helps dealing with complex cases but does # not support unsigned APT repositories PBUILDERSATISFYDEPENDSCMD="/usr/lib/pbuilder/pbuilder-satisfydepends" # Arguments for $PBUILDERSATISFYDEPENDSCMD. # PBUILDERSATISFYDEPENDSOPT=() # You can optionally make pbuilder accept untrusted repositories by setting # this option to yes, but this may allow remote attackers to compromise the # system. Better set a valid key for the signed (local) repository with # $APTKEYRINGS (see below). ALLOWUNTRUSTED=no # Option to pass to apt-get always. export APTGETOPT=() # Option to pass to aptitude always. export APTITUDEOPT=() #Command-line option passed on to dpkg-buildpackage. #DEBBUILDOPTS="-IXXX -iXXX" DEBBUILDOPTS="" #APT configuration files directory APTCONFDIR="" # the username and ID used by pbuilder, inside chroot. Needs fakeroot, really BUILDUSERID=1234 BUILDUSERNAME=pbuilder # BINDMOUNTS is a space separated list of things to mount # inside the chroot. BINDMOUNTS="" # Set the debootstrap variant to 'buildd' type. DEBOOTSTRAPOPTS=( '--variant=buildd' '--keyring=/usr/share/keyrings/ubuntu-archive-keyring.gpg' ) # or unset it to make it not a buildd type. # unset DEBOOTSTRAPOPTS # Keyrings to use for package verification with apt, not used for debootstrap # (use DEBOOTSTRAPOPTS). By default the debian-archive-keyring package inside # the chroot is used. APTKEYRINGS=() # Set the PATH I am going to use inside pbuilder: default is "/usr/sbin:/usr/bin:/sbin:/bin" export PATH="/usr/sbin:/usr/bin:/sbin:/bin" # SHELL variable is used inside pbuilder by commands like 'su'; and they need sane values export SHELL=/bin/bash # The name of debootstrap command, you might want "cdebootstrap". DEBOOTSTRAP="debootstrap" # default file extension for pkgname-logfile PKGNAME_LOGFILE_EXTENTION="_$(dpkg --print-architecture).build" # default PKGNAME_LOGFILE PKGNAME_LOGFILE="" # default AUTOCLEANAPTCACHE AUTOCLEANAPTCACHE="" #default COMPRESSPROG COMPRESSPROG="gzip" pbuilder-0.215ubuntu7/test_pbuilder-apt-config0000775000000000000000000001460512312041170016366 0ustar #!/bin/bash set -e self="$(basename "$0")" # if this is set, use pbuilder files from this location; otherwise, use # installed files (from PBUILDER_TEST_ROOT, which is a copy of PBUILDER_ROOT) PBUILDER_CHECKOUT="${PBUILDER_CHECKOUT:-}" if [ -n "$PBUILDER_CHECKOUT" ]; then . "$PBUILDER_CHECKOUT/testlib.sh" PBUILDER_APT_CONFIG="$PBUILDER_CHECKOUT/pbuilder-apt-config" else # these currently don't need to be exported PBUILDER_TEST_ROOT="${PBUILDER_ROOT:-}" PBUILDER_TEST_PKGLIBDIR="${PBUILDER_PKGLIBDIR:-$PBUILDER_ROOT/usr/lib/pbuilder}" . "$PBUILDER_TEST_PKGLIBDIR/testlib.sh" PBUILDER_APT_CONFIG="$PBUILDER_TEST_PKGLIBDIR/pbuilder-apt-config" fi mirror_map="" cleanup() { if [ -n "$mirror_map" ]; then rm -f "$mirror_map" fi } mirror_map="$(mktemp -t "$self.XXXXXXXXXX")" cat >"$mirror_map" < # # Permission is hereby granted, free of charge, to any person obtaining a # copy of this software and associated documentation files (the "Software"), # to deal in the Software without restriction, including without limitation # the rights to use, copy, modify, merge, publish, distribute, sublicense, # and/or sell copies of the Software, and to permit persons to whom the # Software is furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL # SOFTWARE IN THE PUBLIC INTEREST, INC. BE LIABLE FOR ANY CLAIM, DAMAGES OR # OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, # ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER # DEALINGS IN THE SOFTWARE. # # Except as contained in this notice, the name of the author shall not be used # in advertising or otherwise to promote the sale, use or other dealings in # this Software without prior written authorization from the author. # # TODO figure a way to integrate PPA support in profile mode set -e self="$(basename "$0")" log() { echo "$@" >&2 } usage() { log "$self [] [--archive=] [--mirror=] [--suite=] [--pockets=,] " log "$self [--profile=] " log " where is one of apt-sources, debootstrap-mirror, or debootstrap-suite" log log "Common options:" log " --with-sources, --with-sources=[yes|no|disabled]" log " --mirror-map=" log " --arch=" log " --components=," } die() { log "$@" exit 1 } guess_dist_arch_archive() { local dist="$1" local arch="$2" case "$dist" in etch|lenny|squeeze|sid|oldstable|stable|testing|unstable|experimental) echo "debian" ;; buzz|rex|bo|hamm|slink|potato|woody|sarge|etch|lenny|squeeze) echo "debian-archive" ;; dapper|hardy|intrepid|jaunty|karmic|lucid) case "$arch" in amd64|i386) echo "ubuntu" ;; armel|armhf|hppa|ia64|lpia|powerpc|sparc) echo "ubuntu-ports" ;; *) die "Unknown Ubuntu archive for arch=$arch" ;; esac ;; warty|hoary|breezy|edgy|feisty|gutsy) echo "ubuntu-old" ;; *) die "Unknown archive for dist=$dist" ;; esac } get_archive_url() { local mirror_map="$1" local archive="$2" local url if [ -z "$archive" ]; then die "Need an archive in get_archive_url()" fi if [ -n "$mirror_map" ]; then while read a url; do case "$a" in "$archive") if [ -n "$url" ]; then echo "$url" return fi ;; \#*|""|*) : ;; esac done <"$mirror_map" fi builtin_mirror_map "$archive" } builtin_mirror_map() { local archive="$1" local people_ppa case "$archive" in backports.org) echo "http://www.backports.org/backports.org/" ;; debian) echo "http://ftp.us.debian.org/debian/" ;; debian-archive) echo "http://archive.debian.org/debian/" ;; debian-security) echo "http://security.debian.org/" ;; debian-volatile) echo "http://volatile.debian.org/debian-volatile/" ;; ppa:*) people_ppa="${archive#ppa:}" case "$people_ppa" in */*) : ;; *) people_ppa="$people_ppa/ppa" esac echo "http://ppa.launchpad.net/$people_ppa/ubuntu/" ;; ubuntu) echo "http://archive.ubuntu.com/ubuntu/" ;; ubuntu-old) echo "http://old-releases.ubuntu.com/ubuntu/" ;; ubuntu-ports) echo "http://ports.ubuntu.com/ubuntu-ports/" ;; ubuntu-security) echo "http://security.ubuntu.com/ubuntu/" ;; *) die "Unknown mirror for archive=$archive" ;; esac } output_sources() { local with_sources="$1" local mirror="$2" local dist="$3" local components="$4" case "$with_sources" in yes) echo "deb $mirror $dist $components" echo "deb-src $mirror $dist $components" ;; disabled) echo "deb $mirror $dist $components" echo "#deb-src $mirror $dist $components" ;; no) echo "deb $mirror $dist $components" ;; *) die 'with_sources must be either "yes", "disabled", or "no"' ;; esac } sources="" debootstrap_suite="" debootstrap_mirror="" add_output_sources() { local output="$(output_sources "$@")" sources="$sources${sources:+ }$output" } set_debootstrap_suite() { local archive="$1" local suite="$2" case "$archive" in debian) case "$suite" in unstable) debootstrap_suite="sid" ;; testing) debootstrap_suite="squeeze" ;; stable) debootstrap_suite="lenny" ;; oldstable) debootstrap_suite="etch" ;; *) debootstrap_suite="$suite" ;; esac ;; *) debootstrap_suite="$suite" ;; esac } getopt_output="`getopt -o "" -l help,with-sources::,arch:,components:,archive:,mirror:,mirror-map:,suite:,pockets:,profile: -n "$self" -s sh -- "$@"`" eval set -- "$getopt_output" with_sources="disabled" arch="`dpkg --print-architecture`" components="main" archive="" mirror="" mirror_map="" suite="" pockets="" archive="" profile="" while :; do case "$1" in --help) usage exit 0 ;; --with-sources) case "$2" in "") with_sources="yes" ;; yes|no|disabled) with_sources="$2" ;; *) die '--with-sources must be either "yes", "disabled", or "no"' ;; esac shift 2 ;; --arch) arch="$2" shift 2 ;; --components) components="$2" shift 2 ;; --archive) archive="$2" shift 2 ;; --mirror) mirror="$2" shift 2 ;; --mirror-map) mirror_map="$2" shift 2 ;; --suite) if [ -z "$2" ]; then die "Need a suite for --suite" fi if [ -n "$profile" ]; then die "Can't set --suite after --profile" fi suite="$2" shift 2 ;; --pockets) pockets="$2" shift 2 ;; --profile) if [ -z "$2" ]; then die "Need a profile for --profile" fi if [ -n "$suite" ]; then die "Can't set --profile after --suite" fi profile="$2" shift 2 ;; --) shift break ;; *) die "Unhandled arg=$1" ;; esac done if [ -z "$suite" ] && [ -z "$profile" ]; then die "Please pass --suite or --profile" fi components="$(echo "$components" | tr , " ")" pockets="$(echo "$pockets" | tr , " ")" if [ -n "$profile" ]; then base_dist="${profile%%/*}" base_dist="${base_dist%%-*}" base_archive="`guess_dist_arch_archive "$base_dist" "$arch"`" base_mirror="`get_archive_url "$mirror_map" "$base_archive"`" case "$base_archive" in debian|debian-archive) case "$profile" in experimental) base_dist="unstable" add_output_sources "$with_sources" "$base_mirror" "$base_dist" "$components" add_output_sources "$with_sources" "$base_mirror" "$profile" "$components" ;; *-proposed-updates/volatile) archive="debian-volatile" mirror="`get_archive_url "$mirror_map" "$archive"`" volatile_dist="$base_dist/volatile" add_output_sources "$with_sources" "$base_mirror" "$base_dist" "$components" add_output_sources "$with_sources" "$mirror" "$volatile_dist" "$components" add_output_sources "$with_sources" "$mirror" "$profile" "$components" ;; */volatile|*/volatile-sloppy) if [ "$base_dist" != "${profile%%/*}" ]; then die "Unknown Debian Volatile based profile=$profile" fi archive="debian-volatile" mirror="`get_archive_url "$mirror_map" "$archive"`" volatile_dist=${profile%-sloppy} add_output_sources "$with_sources" "$base_mirror" "$base_dist" "$components" add_output_sources "$with_sources" "$mirror" "$volatile_dist" "$components" if [ "$volatile_dist" != "$profile" ]; then add_output_sources "$with_sources" "$mirror" "$profile" "$components" fi ;; *-backports) if [ "$base_dist" != "${profile%%-*}" ]; then die "Unknown Backports.org based profile=$profile" fi archive="backports.org" mirror="`get_archive_url "$mirror_map" "$archive"`" add_output_sources "$with_sources" "$base_mirror" "$base_dist" "$components" add_output_sources "$with_sources" "$mirror" "$profile" "$components" ;; */updates) if [ "$base_dist" != "${profile%%/*}" ]; then die "Unknown Debian Security based profile=$profile" fi archive="debian-security" mirror="`get_archive_url "$mirror_map" "$archive"`" add_output_sources "$with_sources" "$base_mirror" "$base_dist" "$components" add_output_sources "$with_sources" "$mirror" "$profile" "$components" ;; *-proposed-updates) if [ "$base_dist" != "${profile%%-*}" ]; then die "Unknown Debian Updates based profile=$profile" fi add_output_sources "$with_sources" "$base_mirror" "$base_dist" "$components" add_output_sources "$with_sources" "$base_mirror" "$profile" "$components" ;; *) if [ "$base_dist" != "$profile" ]; then die "Unknown Debian based profile=$profile" fi add_output_sources "$with_sources" "$base_mirror" "$base_dist" "$components" ;; esac ;; ubuntu|ubuntu-old|ubuntu-ports) if [ "$base_dist" != "${profile%%-*}" ]; then die "Unknown Ubuntu based profile=$profile" fi pockets="" # whether to include the security mirror has_security="yes" case "$profile" in *-security) pockets="security" ;; *-updates) pockets="security updates" ;; *-backports) pockets="security updates backports" ;; *-proposed) pockets="security updates proposed" ;; *) if [ "$base_dist" != "$profile" ]; then die "Unknown Ubuntu pocket based profile=$profile" fi has_security="no" ;; esac add_output_sources "$with_sources" "$base_mirror" "$base_dist" "$components" for pocket in $pockets; do add_output_sources "$with_sources" "$base_mirror" "$base_dist-$pocket" "$components" done if [ "$has_security" = "yes" ]; then archive="ubuntu-security" mirror="`get_archive_url "$mirror_map" "$archive"`" if [ "$mirror" != "$base_mirror" ]; then add_output_sources "$with_sources" "$mirror" "$base_dist-security" "$components" fi fi ;; *) die "Unknown profile for base_archive=$base_archive" ;; esac set_debootstrap_suite "$base_archive" "$base_dist" debootstrap_mirror="$base_mirror" fi if [ -n "$suite" ]; then if [ -z "$mirror" ]; then if [ -z "$archive" ]; then archive="`guess_dist_arch_archive "$suite" "$arch"`" fi mirror="`get_archive_url "$mirror_map" "$archive"`" fi add_output_sources "$with_sources" "$mirror" "$suite" "$components" for pocket in $pockets; do add_output_sources "$with_sources" "$mirror" "$suite-$pocket" "$components" done # NB: archive might be empty; best effort to try to guess it if [ -z "$archive" ]; then archive="`guess_dist_arch_archive "$suite" "$arch"`" 2>/dev/null || true fi set_debootstrap_suite "$archive" "$suite" debootstrap_mirror="$mirror" fi command="$1" case $1 in apt-sources) echo "$sources" ;; debootstrap-mirror) echo "$debootstrap_mirror" ;; debootstrap-suite) echo "$debootstrap_suite" ;; *) usage exit 1 ;; esac pbuilder-0.215ubuntu7/Documentation/0000775000000000000000000000000012312041256014356 5ustar pbuilder-0.215ubuntu7/Documentation/pbuilder-doc.fr.html0000664000000000000000000031452612312041170020231 0ustar Manuel de l'utilisateur de pbuilder

Manuel de l'utilisateur de pbuilder

Mode d'emploi

Junichi Uekawa

documentation en construction


Table des matires

1. Prsentation de pbuilder
1. Buts de pbuilder
2. Utilisation de pbuilder
1. Cration de l'image de base
2. Mettre jour le fichier base.tgz
3. Construire un paquet en utilisant le fichier base.tgz
4. pdebuild ou comment viter d'en taper trop
5. Fichiers de configuration
6. Construire des paquets sans tre root dans l'environnement de base
7. Utiliser pbuilder pour les rtroportages
8. Construction des paquets en grand nombre
9. Scripts de rtroportage automatique
10. Utiliser pbuilder pour tester automatiquement les paquets
11. Utiliser pbuilder pour tester la construction en utilisant d'autres compilateurs
3. Utiliser User-mode-linux avec pbuilder
1. Configurer user-mode-linux
2. Configurer rootstrap
3. Configurer pbuilder-uml
4. Considrations pour excuter pbuilder-user-mode-linux
5. Excution en parallle de pbuilder-user-mode-linux
6. Utiliser pbuilder-user-mode-linux pour dmarrer une machine virtuelle
4. Questions frquentes
1. chec de pbuilder create
2. Les rpertoires ne peuvent pas tre rattachs (bind-mount)
3. Se logguer dans pbuilder pour dterminer les problmes de construction
4. Se logguer dans pbuilder pour modifier l'environnement
5. Variable BUILDRESULTUID pour les sessions utilisant sudo
6. Note propos de l'utilisation de $TMPDIR
7. Crer un raccourci pour lancer pbuilder pour une distribution spcifique
8. Utilisation des variables d'environnement pour lancer pbuilder pour une distribution spcifique
9. Utiliser des sources spcifiques pour apt et des paquets locaux
10. Comment configurer pbuilder pour lancer apt-get update avant de tenter de satisfaire les dpendances la construction
11. Utilise une invite diffrente l'intrieur de pbuilder
12. Cration d'un pense-bte de chroot
13. Utiliser /var/cache/apt/archives comme cache pour les paquets
14. Rtroportage de pbuilder vers les versions stables de Debian
15. Alerte: LOGNAME n'est pas dfini.
16. Construction impossible: conflit avec un paquet essentiel
17. viter le message "ln: Lien crois de priphrique invalide"
18. Utiliser fakechroot
19. Utiliser debconf l'intrieur d'une session pbuilder
20. L'option de montage nodev entrave le bon fonctionnement de pbuilder
21. pbuilder est lent
22. Utilisation de pdebuild pour parrainer un paquet
23. Pourquoi y'a-t-il un fichier source.changes dans ../?
24. amd64 et i386-mode
25. Utilisation de tmpfs comme emplacement de construction
26. Utiliser svn-buildpackage avec pbuilder
5. Dpistage des pannes et dveloppement
1. Rapports de bogues
2. Liste de diffusion
3. Canal IRC
4. Informations pour les dveloppeurs de pbuilder
6. Autres utilisations de pbuilder
1. Utilisation de pbuilder pour de petites exprimentations
2. Lancer de petits programmes dans l'environnement de base
7. Experimental or wishlist features of pbuilder
1. Utilisation de LVM
2. Utilisation de cowdancer
3. Utilisation de pbuilder sans tar.gz
4. Utilisation de pbuilder dans un vserver
5. Usage of ccache
8. Documents de rfrence
1. Structure des rpertoires l'extrieur de l'environnement de base
2. Structure des rpertoires l'intrieur de l'image de base
9. Quelques dtails archologiques mineurs
1. Historique de la documentation
2. Histoire peut-tre incorrecte de pbuilder
2.1. L'avant pbuilder
2.2. Naissance de pbuilder
2.3. Et la seconde anne de sa vie
2.4. Cinq annes de pbuilder

Chapitre1.Prsentation de pbuilder

Table des matires

1. Buts de pbuilder

1.Buts de pbuilder

pbuilder signifie Personal Builder et constitue un systme de construction automatique des paquets Debian destin une utilisation sur une station de dveloppement personnelle. pbuilder se veut un systme simple mettre en place pour construire automatiquement des paquets Debian l'intrieur d'un environnement propre afin de vrifier qu'un paquet peut tre construit sur la plupart des installations de Debian. L'environnement propre est ralis travers une image de base ne contenant qu'un minimum de paquets.

La distribution Debian est constitue de logiciels libres accompagns des sources. Tous les codes sources dans la section "main" de Debian doivent tre construits uniquement l'aide des dpendances sources explicitement spcifies et contenues galement dans la section "main".

L'objectif principal de pbuilder est diffrent de celui des autres systmes de construction automatique dans Debian dans le sens o il ne s'agit pas de construire le maximum de paquets possible. Les paquets ncessaires ne sont pas devins et quand un choix est ncessaire, c'est le plus souvent le plus mauvais choix qui est slectionn.

De cette faon, pbuilder tente de garantir que les paquets construits travers pbuilder se construiront certainement correctement sur la plupart des installations de Debian permettant ainsi d'obtenir la capacit de construire Debian partir des sources.

La possibilit de construire Debian partir des sources est dsormais quasiment acquis et a vu beaucoup de progrs. l'poque de Debian 3.0, de nombreux problmes pouvaient survenir en construisant Debian depuis les sources. Depuis, les choses se sont grandemment amliores.

Chapitre2.Utilisation de pbuilder

Pour tre oprationnel, il existe plusieurs commandes simples. pbuilder create, pbuilder update et pbuilder build sont les commandes les plus couramment utilises. Regardons chacune de ces commandes.

1.Cration de l'image de base

pbuilder create will create a base chroot image tar-ball (base.tgz). All other commands will operate on the resulting base.tgz If the Debian release to be created within chroot is not going to be "sid" (which is the default), the distribution code-name needs to be specified with the --distribution command-line option.

debootstrap [1] is used to create the bare minimum Debian installation, and then build-essential packages are installed on top of the minimum installation using apt-get inside the chroot.

For fuller documentation of command-line options, see the pbuilder.8 manual page. Some configuration will be required for /etc/pbuilderrc for the mirror site [2] to use, and proxy configuration may be required to allow access through HTTP. See the pbuilderrc.5 manual page for details.

2.Mettre jour le fichier base.tgz

pbuilder update will update the base.tgz. It will extract the chroot, invoke apt-get update and apt-get dist-upgrade inside the chroot, and then recreate the base.tgz (the base tar-ball).

It is possible to switch the distribution which the base.tgz is targeted at at this point. Specify --distribution sid --override-config to change the distribution to sid. [3]

Pour une documentation plus complte des options disponibles, rfrez-vous la page de manuel pbuilder.8.

3.Construire un paquet en utilisant le fichier base.tgz

To build a package inside the chroot, invoke pbuilder build whatever.dsc. pbuilder will extract the base.tgz to a temporary working directory, enter the directory with chroot, satisfy the build-dependencies inside chroot, and build the package. The built packages will be moved to a directory specified with the --buildresult command-line option.

The --basetgz option can be used to specify which base.tgz to use.

pbuilder va extraire un environnement de base du fichier base.tgz. (base.tgz est cr l'aide de pbuilder create et mis jour avec pbuilder update.) Le fichier debian/control est analys afin de dterminer les dpendances installer avec apt-get.

Pour une documentation plus complte des options disponibles, rfrez-vous la page de manuel pbuilder.8.

4.pdebuild ou comment viter d'en taper trop

pdebuild est un petit script qui permet d'effectuer les tches les plus frquentes. Pour construire un paquet, un dveloppeur Debian peut utiliser debuild dans un rpertoire source Debian. pdebuild utilise un principe similaire et permet de construire un paquet dans l'environnement de base et de vrifier ainsi que le code source actuel se construit sans problme dans celui-ci.

pdebuild calls dpkg-source to build the source packages, and then invokes pbuilder on the resulting source package. However, unlike debuild, the resulting deb files will be found in the --buildresult directory.

Rfrez-vous la page de manuel pdebuild.1 pour plus de dtails.

There is a slightly different mode of operation available in pdebuild since version 0.97. pdebuild usually runs debian/rules clean outside of the chroot; however, it is possible to change the behavior to run it inside the chroot with the --use-pdebuild-internal. It will try to bind mount the working directory inside chroot, and run dpkg-buildpackage inside. It has the following characteristics, and is not yet the default mode of operation.

  • Les dpendances de construction sont satisfaites l'intrieur de l'environnement de base avant de crer le paquet source. Bien que ce soit un bon comportement, pdebuild ne l'effectue pas par dfaut.

  • Le rpertoire de travail est modifi depuis l'environnement de base.

  • Construire en utilisant pdebuild ne garantit pas que cela fonctionnera galement avec pbuilder.

  • Si la construction du paquet source ne russit pas, la session utilisant l'environnement de base est gche (la cration de cet environnement prend un peu de temps, ce qui peut tre amlior en utilisant cowdancer).

  • Does not work in the same manner as it used to; for example, --buildresult does not have any effect.

  • La construction dans l'environnement de base utilise le mme utilisateur qu'en dehors de celui-ci.

5.Fichiers de configuration

Il est possible de spcifier tous les paramtres en utilisant les options en ligne de commande. Toutefois, afin d'viter de retaper celles-ci chaque fois, il est possible d'utiliser un fichier de configuration.

/etc/pbuilderrc et ${HOME}/.pbuilderrc sont lus lors de l'utilisation de pbuilder. Les options possibles sont documentes dans la page de manuel pbuilderrc.5.

It is useful to use --configfile option to load up a preset configuration file when switching between configuration files for different distributions.

Please note ${HOME}/.pbuilderrc supersede system settings. Caveats is that if you have some configuration, you may need to tweak the configuration to work with new versions of pbuilder when upgrading.

6.Construire des paquets sans tre root dans l'environnement de base

pbuilder requires full root privilege when it is satisfying the build-dependencies, but most packages do not need root privilege to build, or even refused to build when they are built as root. pbuilder can create a user which is only used inside pbuilder and use that user id when building, and use the fakeroot command when root privilege is required.

L'option de configuration BUILDUSERID doit correspondre la valeur d'un identifiant utilisateur n'existant pas encore sur le systme de faon ce qu'il soit plus difficile pour les paquets construits avec pbuilder d'affecter le systme en dehors de l'environnement de base. Quand l'option de configuration BUILDUSERNAME est aussi renseigne, pbuilder utilisera le nom d'utilisateur indiqu et fakeroot pour construire les paquets plutt que d'tre root dans l'environnement de base.

Mme en utilisant ces options, pbuilder utilisera les privilges du super-utilisateur quand ils seront rellement ncessaires, par exemple quand il doit installer des paquets dans l'environnement de base.

Pour pouvoir utiliser pbuilder sans tre root, vous devez utiliser user-mode-linux comme expliqu dans Chapitre3, Utiliser User-mode-linux avec pbuilder

7.Utiliser pbuilder pour les rtroportages

pbuilder peut tre utilis pour rtroporter des logiciels de la dernire distribution Debian vers une version stable plus ancienne en utilisant une image de base de l'ancienne distribution et en construisant les paquets dans celle-ci. Il y a plusieurs points considrer et, en raison de ceux-ci, le rtroportage automatique n'est gnralement pas possible et une intervention manuelle est requise:

  • Le paquet de la distribution unstable peut dpendre de paquets ou de versions de paquets qui sont disponibles uniquement dans unstable. Il peut donc tre impossible de satisfaire les dpendances de construction dans stable (sans travail supplmentaire).

  • La distribution stable peut contenir des bugs qui ont t corrigs dans unstable et qui ont besoin d'tre contourns.

  • Le paquet dans unstable peut avoir des problmes de construction, y compris dans unstable.

8.Construction des paquets en grand nombre

pbuilder peut tre automatis car le processus ne ncessite pas d'interactions. Il est possible d'excuter pbuilder sur plusieurs paquets de manire non interactive. Plusieurs scripts destins cet usage existent. Junichi Uekawa utilise un tel script depuis 2001 et a envoy des rapports de bugs pour les paquets qui n'ont pas pu tre construits avec pbuilder. Plusieurs problmes existent avec la construction automatique:

  • Les dpendances la construction doivent s'installer sans ncessiter d'interactions. Cependant, certains paquets ne peuvent pas s'installer sans interaction (postgresql par exemple).

  • Quand une bibliothque est casse ou qu'un problme survient sur gcc/gcj/g++ ou mme bison, un trs grand nombre d'checs sont signals (gcj-3.0 qui n'a pas de commande "javac", bison qui devient plus strict, etc.).

  • Certaines personnes sont particulirement hostiles vis--vis des rapports d'checs de construction partir des sources.

La plupart des bugs prsents initialement dans pbuilder ont t rsolus autour de 2002 mais ces problmes transitionnels qui affectent une grande partie de l'archive Debian apparaissent de temps en temps. Les tests de rgression sont alors utiles.

Un script qui tait utilis par Junichi Uekawa est dsormais inclus dans la distribution de pbuilder sous le nom pbuildd.sh. Il est disponible dans /usr/share/doc/pbuilder/examples/pbuildd/ et son fichier de configuration est /etc/pbuilder/pbuildd-config.sh. Les personnes qui sont habitues pbuilder devraient facilement pouvoir l'utiliser. Il existe depuis un certain temps et vous devriez aussi pouvoir l'utiliser sur votre systme. Cette version n'est pas la mieux teste mais devrait pouvoir servir de base.

Pour configurer pbuildd, vous devez prendre en considration un certain nombre de points.

  • Un fichier ./avoidlist doit contenir la liste des paquets qu'il ne faut pas construire.

  • Il essaiera de construire absolument tout, y compris les paquets qui ne sont pas destins votre architecture.

  • Parce que vous allez excuter un certain nombre de scripts de construction, utilisez l'option fakeroot de pbuilder plutt que de l'excuter avec les privilges du super-utilisateur.

  • Parce qu'il n'est pas garanti que toutes les constructions se finiront en un temps fini, placer une limite temporelle sur l'excution est sans doute ncessaire. Dans le cas contraire, pbuildd peut rester indfiniment sur un mauvais paquet.

  • Certains paquets ncessitent beaucoup d'espace disque. Environ 2 Go sont actuellement suffisants pour les paquets les plus gros. Si vous trouvez des contre-exemples, informez-en le mainteneur de cette documentation.

9.Scripts de rtroportage automatique

Certaines personnes utilisent pbuilder pour rtroporter automatiquement un sous-ensemble de paquets vers la distribution stable.

Je souhaiterais obtenir quelques informations sur la faon de faire. Un retour sur le sujet ou des exemples seraient apprcis.

10.Utiliser pbuilder pour tester automatiquement les paquets

pbuilder peut tre utilis pour tester automatiquement les paquets. Il est possible de dfinir des crochets qui vont essayer d'installer le paquet dans l'image de base, les excuter ou toute autre action. Voici quelques pistes:

  • Automatic install-remove-install-purge-upgrade-remove-upgrade-purge test-suite (distributed as an example, B91dpkg-i), or just check that everything installs somewhat (execute_installtest.sh).

  • Lancer automatiquement lintian. Un exemple est fourni dans /usr/share/doc/pbuilder/examples/B90lintian).

  • Utiliser automatiquement debian-test sur le paquet. Le paquet debian-test a t retir de Debian. Vous pouvez trouver dans le rpertoire debian/pbuilder-test une implmentation pour pbuilder travers le script B92test-pkg.

To use B92test-pkg script, first, add it to your hook directory. [4]. The test files are shell scripts placed in debian/pbuilder-test/NN_name (where NN is a number) following run-parts standard[5] for file names. After a successful build, packages are first tested for installation and removal, and then each test is ran inside the chroot. The current directory is the top directory of the source-code. This means you can expect to be able to use ./debian/ directory from inside your scripts.

Example scripts for use with pbuilder-test can be found in /usr/share/doc/pbuilder/examples/pbuilder-test.

11.Utiliser pbuilder pour tester la construction en utilisant d'autres compilateurs

Most packages are compiled with gcc or g++ and using the default compiler version, which was gcc 2.95 for Debian GNU/Linux 3.0 (i386). However, Debian 3.0 was distributed with other compilers, under package names such as gcc-3.2 for gcc compiler version 3.2. It was therefore possible to try compiling packages against different compiler versions. pentium-builder provides an infrastructure for using a different compiler for building packages than the default gcc, by providing a wrapper script called gcc which calls the real gcc. To use pentium-builder in pbuilder, it is possible to set up the following in the configuration:

EXTRAPACKAGES="pentium-builder gcc-3.2 g++-3.2"
export DEBIAN_BUILDARCH=athlon
export DEBIAN_BUILDGCCVER=3.2

Cela indique pbuilder d'installer le paquet pentium-builder ainsi que le compilateur GCC 3.2 dans l'image de base puis de renseigner les variables d'environnement ncessaires pour faire fonctionner pentium-builder.



[1] il est possible de choisir debootstrap ou cdebootstrap

[2] Il est prfrable d'utiliser un miroir local ou un serveur cache afin de ne pas surcharger les miroirs publics avec un trs grand nombre d'accs. L'utilisation d'outils tels que apt-proxy est conseille.

[3] Seule une mise jour est possible: Debian ne supporte pas (encore?) les retours en arrire.

[4] Il est possible d'utiliser l'option --hookdir /usr/share/doc/pbuilder/examples pour inclure tous les crochets donns en exemple.

[5] Voyez run-parts(8). Par exemple, n'utilisez pas '.' dans les noms de fichiers!

Chapitre3.Utiliser User-mode-linux avec pbuilder

Il est possible d'utiliser user-mode-linux en invoquant pbuilder-user-mode-linux plutt que pbuilder. pbuilder-user-mode-linux ne ncessite pas les privilges du super-utilisateur et utilise la mthode copy-on-write (COW) ce qui la rend plus rapide que le traditionnel pbuilder.

User-mode-linux est une plateforme moins prouve que les outils standards sur lesquels reposent pbuilder ((chroot, tar, et gzip) mais suffisamment mre car prsente depuis la version 0.59. Depuis, pbuilder-user-mode-linux a connu une volution rapide.

La configuration de pbuilder-user-mode-linux s'effectue en trois tapes:

  • Configuration de user-mode-linux

  • Configuration de rootstrap

  • Configuration de pbuilder-uml

1.Configurer user-mode-linux

user-mode-linux peut prsenter quelques difficults de configuration. Il est prfrable de se familiariser avec avant de tenter d'utiliser rootstrap ou pbuilder-user-mode-linux. Pour plus de dtails, reportez-vous au fichier /usr/share/doc/uml-utilities/README.Debian et la documentation de user-mode-linux qui se trouve dans le paquet user-mode-linux-doc.

user-mode-linux ncessite que l'utilisateur appartienne au groupe uml-net de faon configurer le rseau, sauf si utilisez slirp.

Si vous compilez votre propre noyau, vrifiez que le support de TUN/TAP est activ. Vous pouvez ventuellement appliquer le patch SKAS.

2.Configurer rootstrap

rootstrap est un utilitaire construit autour de debootstrap. Il cre une image disque de Debian destine tre utilise avec UML. Pour configurer rootstrap, il y a plusieurs prrequis.

  • Installer le paquet rootstrap.

  • TUN/TAP only: add the user to the uml-net group to allow access to the network

    adduser dancer uml-net

  • Seulement pour utiliser TUN/TAP: vrifier que le noyau inclut l'interface TUN/TAP ou recompiler le noyau si ncessaire.

  • Set up /etc/rootstrap/rootstrap.conf. For example, if the current host is 192.168.1.2, changing following entries to something like this seems to work.

    transport=tuntap
    interface=eth0
    gateway=192.168.1.1
    mirror=http://192.168.1.2:8081/debian
    host=192.168.1.198
    uml=192.168.1.199
    netmask=255.255.255.0

    Some experimentation with configuration and running rootstrap ~/test.uml to actually test it would be handy.

    Utiliser slirp ncessite moins de configuration. La configuration par dfaut est livre avec un exemple fonctionnel.

3.Configurer pbuilder-uml

Suivre les tapes suivantes:

  • Installer le paquet pbuilder-uml.

  • Set up the configuration file /etc/pbuilder/pbuilder-uml.conf in the following manner. It will be different for slirp.

    MY_ETH0=tuntap,,,192.168.1.198
    UML_IP=192.168.1.199
    UML_NETMASK=255.255.255.0
    UML_NETWORK=192.168.1.0
    UML_BROADCAST=255.255.255.255
    UML_GATEWAY=192.168.1.1
    PBUILDER_UML_IMAGE="/home/dancer/uml-image"

    Also, it needs to match the rootstrap configuration.

  • Assurez-vous que l'utilisateur a les droits pour crire dans BUILDPLACE. Changez la valeur de BUILDPLACE dans le fichier de configuration pour un emplacement pour lequel l'utilisateur a les droits d'criture.

  • Run pbuilder-user-mode-linux create --distribution sid to create the image.

  • Essayez pbuilder-user-mode-linux build.

4.Considrations pour excuter pbuilder-user-mode-linux

pbuilder-user-mode-linux mule la plupart des fonctionnalits de pbuilder avec quelques diffrences.

  • pbuilder-user-mode-linux ne supporte pas encore correctement toutes les options de pbuilder. C'est un problme qui sera rgl au fur et mesure.

  • /tmp is handled differently inside pbuilder-user-mode-linux. In pbuilder-user-mode-linux, /tmp is mounted as tmpfs inside UML, so accessing files under /tmp from outside user-mode-linux does not work. It affects options like --configfile, and when trying to build packages placed under /tmp.

5.Excution en parallle de pbuilder-user-mode-linux

Pour excuter pbuilder-user-mode-linux en parallle sur un systme, un certain nombre de choses doivent tre gardes l'esprit.

  • Les mthodes create et update ne doivent pas tre excutes lorsqu'un paquet est en cours de construction. Dans le cas contraire, le fichier COW sera corrompu.

  • If you are not using slirp, user-mode-linux processes which are running in parallel need to have different IP addresses. Just trying to run the pbuilder-user-mode-linux several times will result in failure to access the network. But something like the following will work:

    for IP in 102 103 104 105; do
      xterm -e pbuilder-user-mode-linux build --uml-ip 192.168.0.$IP \
        20030107/whizzytex_1.1.1-1.dsc &
    done

    When using slirp, this problem does not exist.

6.Utiliser pbuilder-user-mode-linux pour dmarrer une machine virtuelle

It is possible to use pbuilder-user-mode-linux for other uses than just building Debian packages. pbuilder-user-mode-linux login will let a user use a shell inside the user-mode-linux pbuilder base image, and pbuilder-user-mode-linux execute will allow the user to execute a script inside the image.

Vous pouvez utiliser un script pour installer ssh et ajouter un nouvel utilisateur ce qui permettra d'accder l'intrieur de user-mode-linux l'aide de ssh.

Il n'est pas possible d'utiliser un script depuis /tmp en raison du fait que pbuilder-user-mode-linux monte un tmpfs sur /tmp.

Le script d'exemple suivant permet de dmarrer sshd dans user-mode-linux.

#!/bin/bash

apt-get install -y ssh xbase-clients xterm
echo "enter root password"
passwd
cp /etc/ssh/sshd_config{,-}
sed 's/X11Forwarding.*/X11Forwarding yes/' /etc/ssh/sshd_config- > /etc/ssh/sshd_config

/etc/init.d/ssh restart
ifconfig
echo "Hit enter to finish"
read

Chapitre4.Questions frquentes

Les problmes frquemment recontrs et les questions les plus courantes sont documentes ici. Cette portion tait initialement disponible dans le fichier README.Debian mais a t dplace ici.

1.chec de pbuilder create

Il est frquent que pbuilder ne parvienne pas crer une image de base rcente. Essayez de mettre jour pbuilder et debootstrap. Pour le moment, il n'est possible de concevoir que des logiciels sachant prendre en compte le pass. Une fois que nous serons l'aise avec le pass, nous pourrons nous concentrer sur les prvisions du futur.

Certaines personnes rtroportent de manire occasionnelle debootstrap pour les versions stables ; trouvez-les.

Quand une erreur concerne la phase de debootstrap, c'est le script debootstrap qui doit tre corrig. pbuilder ne permet pas de pallier aux problmes de debootstrap.

2.Les rpertoires ne peuvent pas tre rattachs (bind-mount)

En raison du mode de fonctionnement de pbuilder, il y a plusieurs rpertoires qui ne peuvent pas tre rattachs lorsque pbuilder tourne. Ces rpertoires incluent /tmp, /var/cache/pbuilder et des rpertoires systmes comme /etc et /usr. Il est recommand de ne rattacher que des rpertoires prsents dans le dossier de l'utilisateur.

3.Se logguer dans pbuilder pour dterminer les problmes de construction

It is possible to invoke a shell session after a build failure. Example hook scripts are provided as C10shell and C11screen scripts. C10shell script will start bash inside chroot, and C11screen script will start GNU screen inside the chroot.

4.Se logguer dans pbuilder pour modifier l'environnement

Il est parfois ncessaire de modifier l'image de base. login supprimera toute modification aprs dconnexion. Il est possible de lancer un shell en utilisant les crochets. pbuilder update excute les scripts commenant par 'E' et un exemple pour lancer un shell est fourni sous le nom C10shell.

$ mkdir ~/loginhooks
$ cp C10shell ~/loginhooks/E10shell
$ sudo pbuilder update --hookdir ~/loginhooks/E10shell

It is also possible to add --save-after-exec and/or --save-after-login options to the pbuilder login session to accomplish the goal. It is possible to add the --uml-login-nocow option to pbuilder-user-mode-linux login session as well.

5.Variable BUILDRESULTUID pour les sessions utilisant sudo

It is possible to set

BUILDRESULTUID=$SUDO_UID

in pbuilderrc to set the proper BUILDRESULTUID when using sudo.

6.Note propos de l'utilisation de $TMPDIR

Si vous placez la variable $TMPDIR une valeur inhabituelle, des erreurs peuvent se produire dans l'environnement de base telles que des checs de dpkg-source.

There are two options, you may install a hook to create that directory, or set

export TMPDIR=/tmp

in pbuilderrc. Take your pick.

Un script d'exemple est fourni sous le nom examples/D10tmp avec pbuilder.

7.Crer un raccourci pour lancer pbuilder pour une distribution spcifique

When working with multiple chroots, it would be nice to work with scripts that reduce the amount of typing. An example script pbuilder-distribution.sh is provided as an example. Invoking the script as pbuilder-squeeze will invoke pbuilder with a squeeze chroot.

8.Utilisation des variables d'environnement pour lancer pbuilder pour une distribution spcifique

This section[6] describes briefly a way to setup and use multiple pbuilder setups by creating a pbuilderrc configuration in your home path ($HOME/.pbuilderrc) and using the variable "DIST" when running pbuilder or pdebuild.

Tout d'abord, mettez en place un fichier $HOME/.pbuilderrc ressemblant ceci:

if [ -n "${DIST}" ]; then
        BASETGZ="`dirname $BASETGZ`/$DIST-base.tgz"
        DISTRIBUTION="$DIST"
        BUILDRESULT="/var/cache/pbuilder/$DIST/result/"
        APTCACHE="/var/cache/pbuilder/$DIST/aptcache/"
fi

Puis, ds que vous voulez utiliser une distribution particulire avec pbuilder, assignez la valeur de "DIST" une des distributions de Debian ou n'importe quelle distribution base sur Debian (c'est dire n'importe quelle valeur qui se trouve dans /usr/lib/debootstrap/scripts).

Voici quelques exemples d'utilisation avec pbuilder ou pdebuild:

DIST=gutsy sudo pbuilder create

DIST=sid sudo pbuilder create --mirror http://http.us.debian.org/debian

DIST=gutsy sudo pbuilder create \
        --othermirror "deb http://archive.ubuntu.com/ubuntu gutsy universe \
        multiverse"

DIST=gutsy sudo pbuilder update

DIST=sid sudo pbuilder update --override-config --mirror \
http://http.us.debian.org/debian \
--othermirror "deb http://http.us.debian.org/debian sid contrib non-free"

DIST=gutsy pdebuild

9.Utiliser des sources spcifiques pour apt et des paquets locaux

If you have some very specialized requirements on your apt setup inside pbuilder, it is possible to specify that through the --othermirror option. Try something like: --othermirror "deb http://local/mirror stable main|deb-src http://local/source/repository ./"

To use the local file system instead of HTTP, it is necessary to do bind-mounting. --bindmounts is a command-line option useful for such cases.

Utiliser les paquets que vous venez de construire dans l'environnement de base peut tre pratique. Il est possible d'automatiser cette tche en utilisant la configuration suivante. D'abord, configurez pbuilderrc pour rattacher votre rpertoire contenant le rsultat des constructions.

BINDMOUNTS="/var/cache/pbuilder/result"

Puis utilisez le crochet suivant

# cat /var/cache/pbuilder/hooks/D70results
#!/bin/sh
cd /var/cache/pbuilder/result/
/usr/bin/dpkg-scanpackages . /dev/null > /var/cache/pbuilder/result/Packages
/usr/bin/apt-get update

De cette faon, vous pouvez utiliser deb file:/var/cache/pbuilder/result

To add new apt-key inside chroot:

sudo pbuilder --login --save-after-login
# apt-key add - <<EOF
...public key goes here...
EOF
# logout

10.Comment configurer pbuilder pour lancer apt-get update avant de tenter de satisfaire les dpendances la construction

Vous pouvez utiliser cet effet des crochets. Les scripts commenant par D sont lancs avant de rsoudre les dpendances la construction.

This snippet comes from Ondrej Sury.

11.Utilise une invite diffrente l'intrieur de pbuilder

Pour indiquer que l'on se trouve l'intrieur de pbuilder, il est possible de modifier l'invite en utilisant des variables comme PS1 dans pbuilderrc

With versions of bash more recent than 2.05b-2-15, the value of the debian_chroot variable, if set, is included in the value of PS1 (the Bash prompt) inside the chroot. In prior versions of bash,[7] setting PS1 in pbuilderrc worked.

exemple pour debian_chroot

	export debian_chroot="pbuild$$"

exemple pour PS1

	export PS1="pbuild chroot 32165 # "

12.Cration d'un pense-bte de chroot

L'invite de Bash vous aidera vous souvenir que vous tes dans un environnement chroot. Dans certains cas, vous pourriez souhaiter disposer d'autres lments l'indiquant. Utilisez le script crochet examples/F90chrootmemo. Il crera un fichier nomm /CHROOT dans l'environnement chroot.

13.Utiliser /var/cache/apt/archives comme cache pour les paquets

Pour les systmes dont la bande passante est rduite, il est possible d'utiliser /var/cache/apt/archives comme cache pour les paquets. Indiquez ce rpertoire la place de celui par dfaut /var/cache/pbuilder/aptcache.

Il n'est cependant pas possible de faire ainsi pour le moment avec la version pour user-mode-linux de pbuilder car /var/cache/apt/archives n'est gnralement accessible en criture que par root.

L'utilisation d'outils comme apt-proxy est recommand car la mise en cache des paquets profite galement au reste du systme.

14.Rtroportage de pbuilder vers les versions stables de Debian

Currently stable back port of pbuilder is available at backports.org.

15.Alerte: LOGNAME n'est pas dfini.

Vous pourriez voir beaucoup de message d'alertes en excutant pbuilder.

	dpkg-genchanges: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)

Il n'est pas risqu d'ignorer ce message. Veuillez signaler tout problme avec LOGNAME non dfini. Paramtrer LOGNAME cause quelques problmes lors de l'appel chroot. Par exemple, dpkg a besoin de getpwnam pour fonctionner dans le chroot, ce qui implique que LOGNAME et les informations relatives l'utilisateur doivent tre paramtrs dans le chroot.

16.Construction impossible: conflit avec un paquet essentiel

pbuilder ne peut pas permettre de conflit de construction ('Build-Conflict') sur des paquets essentiels. Il semble vident que les paquets essentiels ne devraient pas tre enlevs d'un systme Debian fonctionnel et qu'un paquet source ne devrait pas essayer de forcer la suppression de tels paquets pour des utilisateurs construisant le paquet.

17.viter le message "ln: Lien crois de priphrique invalide"

By default, pbuilder uses hard links to manage the pbuilder package cache. It is not possible to make hard links across different devices; and thus this error will occur, depending on your set up. If this happens, set

APTCACHEHARDLINK=no

in your pbuilderrc file. Note that packages in APTCACHE will be copied into chroot local cache, so plan for enough space on BUILDPLACE device.

18.Utiliser fakechroot

It is possible to use fakechroot instead of being root to run pbuilder; however, several things make this impractical. fakechroot overrides library loads and tries to override default libc functions when providing the functionality of virtual chroot. However, some binaries do no use libc to function, or override the overriding provided by fakechroot. One example is ldd. Inside fakechroot, ldd will check the library dependency outside of the chroot, which is not the expected behavior.

To work around the problem, debootstrap has a --variant fakechroot option. Use that, so that ldd and ldconfig are overridden.

Assurez-vous d'avoir correctement renseign la variable LD_PRELOAD, comme dcrit dans la page de manuel de fakechroot.

19.Utiliser debconf l'intrieur d'une session pbuilder

Pour utiliser debconf l'intrieur de pbuilder, placer la variable DEBIAN_FRONTEND readline dans pbuilderrc devrait faire l'affaire. La placer dialog devrait aussi marcher mais assurez-vous que whiptail ou dialog sont installs dans l'environnement de base.

20.L'option de montage nodev entrave le bon fonctionnement de pbuilder

Si vous voyez de tels messages d'erreur lors de la construction de l'image de base, c'est que vous utilisez l'option nodev pour monter le systme de fichiers.

	/var/lib/dpkg/info/base-files.postinst: /dev/null: Permission denied

Vous aurez galement des problmes si vous montez le systme de fichiers avec l'option noexec ou nosuid. Assurez-vous qu'aucun de ces drapeaux ne soient utiliss lorsque vous montez le systme de fichiers pour /var/cache/pbuilder ou $BUILDPLACE.

Ce problme n'apparat pas en utilisant user-mode-linux.

Rfrez-vous 316135 pour un exemple.

21.pbuilder est lent

pbuilder est souvent lent. La partie la plus lente a lieu lors de l'extraction de l'image de base chaque fois que pbuilder est lanc. Cela peut tre vit en utilisant pbuilder-user-mode-linux qui utilise un systme de fichiers COW et qui n'a donc pas besoin de nettoyer et recrer l'image de base.

pbuilder-user-mode-linux est plus lent construire les paquets en raison du temps supplmentaire de traitement pour chaque appel systme. Il est plus amical avec le disque dur.

pbuilder associ cowdancer est aussi une alternative qui amliore la vitesse de lancement de pbuilder.

22.Utilisation de pdebuild pour parrainer un paquet

To sign a package marking for sponsorship, it is possible to use --auto-debsign and --debsign-k options of pdebuild.

	pdebuild  --auto-debsign  --debsign-k XXXXXXXX

23.Pourquoi y'a-t-il un fichier source.changes dans ../?

En lanant pdebuild, pbuilder va lancer dpkg-buildpackage pour crer le paquet source et le fournir pbuilder. Le fichier XXXX_YYY_source.changes est le reliquat de ce processus. C'est sans danger moins d'essayer de l'envoyer dans l'archive Debian.

This behavior is different when running through --use-pdebuild-internal

24.amd64 et i386-mode

amd64 architectures are capable of running binaries in i386 mode. It is possible to use pbuilder to run packages, using linux32 and debootstrap --arch option. Specifically, a command-line option like the following will work.

pbuilder create --distribution sid --debootstrapopts --arch --debootstrapopts i386 \
  --basetgz /var/cache/pbuilder/base-i386.tgz --mirror http://ftp.jp.debian.org/debian
linux32 pbuilder build --basetgz /var/cache/pbuilder/base-i386.tgz

25.Utilisation de tmpfs comme emplacement de construction

To improve speed of operation, it is possible to use tmpfs for pbuilder build location. Mount tmpfs to /var/cache/pbuilder/build, and set

APTCACHEHARDLINK=no

.

26.Utiliser svn-buildpackage avec pbuilder

pdebuild command can be used with svn-buildpackage --svn-builder command-line option. [8]

alias svn-cowbuilder="svn-buildpackage --svn-builder='pdebuild --pbuilder cowbuilder"


[6] Cette partie de la documentation est une contribution de Andres Mejia

Cette exemple est issu d'un wiki (https://wiki.ubuntu.com/PbuilderHowto).

[7] Les versions de bash jusqu' Debian 3.0 incluse

Chapitre5.Dpistage des pannes et dveloppement

1.Rapports de bogues

To report bugs, it would be important to have a log of what's going wrong. Most of the time, adding a --debug option and re-running the session should do the trick. Please send the log of such session along with your problem to ease the debugging process.

2.Liste de diffusion

Il existe une liste de diffusion pour pbuilder sur alioth (pbuilder-maint@lists.alioth.debian.org). Vous pouvez vous y inscrire travers l'interface web http://alioth.debian.org/mail/?group_id=30778.

3.Canal IRC

Le canal IRC #pbuilder sur irc.oftc.net est utilis pour la coordination et la communication. Indiquez-y votre intention avant d'effectuer un changement ou de publier une modification.

4.Informations pour les dveloppeurs de pbuilder

Cette section tente de documenter les actuelles pratiques de dveloppement et comment les choses marchent dans le dveloppement.

pbuilder est co-maintenu sur Alioth. La page du projet sur Alioth se trouve l'adresse http://alioth.debian.org/projects/pbuilder. La page d'accueil est disponible sur http://alioth.debian.org/projects/pbuilder. Le dpt git est disponible par http, git ou (si vous avez un compte sur alioth) ssh.

git-clone git://git.debian.org/git/pbuilder/pbuilder.git
git-clone http://git.debian.org/git/pbuilder/pbuilder.git
git-clone ssh://git.debian.org/git/pbuilder/pbuilder.git

Git commit message should have the first one line describing what the commit does, formatted in the way debian/changelog is formatted because it is copied verbatim to changelog via git-dch. The second line is empty, and the rest should describe the background and extra information related to implementation of the commit.

Les suites de tests sont disponibles dans le rpertoire ./testsuite. Les changements ne doivent pas casser ces tests. ./run-test.sh est une suite de tests simples dont le rsultat est plac dans run-test.log et dans run-test-cdebootstrap.log. ./run-test-regression.sh permet de tester les rgressions. Les rsultats se trouvent dans run-test-regression.log. Actuellement, run-test.sh est lanc automatiquement tous les jours pour s'assurer que pbuilder est fonctionnel.

Tableau5.1.Structure des rpertoires de la suite de tests

RpertoireSignification
./testsuite/Rpertoire de la suite de tests
./testsuite/run-test.shTests de rgression journaliers pour dtecter les rgressions dues aux changements survenus dans l'archive Debian.
./testsuite/run-test.logUn rsum de la suite de tests
./testsuite/normal/Rpertoire contenant les rsultats des tests en utilisant debootstrap
./testsuite/cdebootstrap/Rpertoire contenant les rsultats des tests en utilisant cdebootstrap
./testsuite/run-regression.shTests de rgression lancs chaque fois qu'un changement est effectu sur pbuilder pour s'assurer qu'aucune rgression n'est apparue
./testsuite/run-regression.logRsum des rsultats des tests
./testsuite/regression/BugID-*.shTests de rgression, retourne 0 en cas de succs et 1 en cas d'chec
./testsuite/regression/BugID-*Fichiers utiliss pour les tests de rgression.
./testsuite/regression/log/BugID-*.sh.logSortie des tests de rgression obtenue par redirection de la sortie des scripts par run-regression.sh

When making changes, changes should be documented in the Git commit log. git-dch will generate debian/changelog from the commit log. Make the first line of your commit log meaningful, and add any bug-closing information available. debian/changelog should not be edited directly unless when releasing a new version.

Une liste des choses faire est disponible dans debian/TODO. Elle n'est quasiment pas maintenue mais deviendra un peu plus jour lorsqu'elle sera plus utilise. Le mode emacs todoo-mode est utilis pour diter ce fichier.

Lorsqu'une nouvelle version de pbuilder est publie, elle est marque avec l'tiquette X.XXX (numro de version). Le script ./git-tag.sh, disponible dans l'arbre de source, effectue cette action.

Chapitre6.Autres utilisations de pbuilder

1.Utilisation de pbuilder pour de petites exprimentations

Dans certains cas, vous voulez mener de petites expriences sans risquer de casser votre systme, par exemple pour installer une bibliothque exprimentale ou pour compiler avec un compilateur exprimental. Dans de tels cas, la commande pbuilder login est disponible.

pbuilder login est une fonctionnalit de diagnostic pour pbuilder, mais permet aux utilisateurs d'obtenir temporairement un environnement restreint.

noter que l'environnement est nettoy aprs la dconnexion du shell et que monter des systmes de fichiers dans celui-ci est dconseill.

2.Lancer de petits programmes dans l'environnement de base

Pour faciliter l'utilisation de pbuilder pour d'autres usages, la commande pbuilder execute est disponible. Celle-ci prend en paramtre un script qui sera excut dans l'environnement de base.

Le script peut tre utilis pour excuter une suite d'oprations comme l'installation de ssh et l'ajout d'un nouvel utilisateur dans l'environnement de base.

Chapitre7.Experimental or wishlist features of pbuilder

pbuilder dispose de certaines fonctionnalits avances pour certains usages spcifiques.

1.Utilisation de LVM

LVM2 has a useful snapshot function that features Copy-on-write images. That could be used for pbuilder just as it can be used for the user-mode-linux pbuilder port. lvmpbuilder script in the examples directory implements such port. The scripts and documentation can be found under /usr/share/doc/pbuilder/examples/lvmpbuilder/.

2.Utilisation de cowdancer

cowdancer utilise des liens directs et des astuces cassant ces liens lors d'une criture pour mettre en place un mcanisme de copy-on-write. pbuilder utilis via cowdancer semble beaucoup plus rapide et constitue un point d'amlioration idal. cowbuilder est un script autour de pbuilder permettant d'utiliser cowdancer. Celui-ci est disponible dans le paquet cowdancer depuis la version 0.14

Voici quelques exemples pour utiliser cowbuilder.

# cowbuilder --create --distribution sid
# cowbuilder --update --distribution sid
# cowbuilder --build XXX.dsc

It is also possible to use cowdancer with pdebuild command. Specify with command-line option --pbuilder or set it in PDEBUILD_PBUILDER configuration option.

$ pdebuild --pbuilder cowbuilder

3.Utilisation de pbuilder sans tar.gz

The --no-targz option of pbuilder will allow usage of pbuilder in a different way from conventional usage. It will try to use an existing chroot, and will not try to clean up after working on it. It is an operation mode more like sbuild.

It should be possible to create base chroot images for dchroot with the following commands:

# pbuilder create --distribution lenny --no-targz --basetgz /chroot/lenny
# pbuilder create --distribution squeeze --no-targz --basetgz /chroot/squeeze
# pbuilder create --distribution sid --no-targz --basetgz /chroot/sid

4.Utilisation de pbuilder dans un vserver

Il est possible d'utiliser pbuilder dans un vserver. Cela ncessite soit le paquet vserver-patches en version 2.1.1-rc14 ou plus rcent ou bien un noyau Linux 2.6.16 ou plus rcent.

Pour utiliser la commande pbuilder dans un vserver, vous avez besoin de placer le CAPS secure_mount dans les ccapabilities de ce vserver.

5.Usage of ccache

It is possible to use C compiler cache ccache to speed up repeated builds of the same package (or packages that compile the same files multiple times for some reason). Using ccache can speed up repeated building of large packages dramatically, at the cost of some disk space and bookkeeping.

To enable usage of ccache with pbuilder, you should set CCACHEDIR in your pbuilderrc file.

Current implementation of ccache support has several bugs, that CCACHEDIR must be owned by the pbuilder build user, and parallel runs of pbuilder is not supported. Therefore it is not enabled by default.

Chapitre8.Documents de rfrence

1.Structure des rpertoires l'extrieur de l'environnement de base

Tableau8.1.Structure des rpertoires l'extrieur de l'environnement de base

RpertoireSignification
/etc/pbuilderrcfichier de configuration
/usr/share/pbuilder/pbuilderrcConfiguration par dfaut
/var/cache/pbuilder/base.tgzEmplacement par dfaut utilis par pbuilder pour le fichier base.tgz contenant l'environnement de base constitu uniquement des paquets essentiels pour la construction des paquets.
/var/cache/pbuilder/build/PID/Emplacement par dfaut utilis pour l'image de base
/var/cache/pbuilder/aptcacheEmplacement par dfaut utilis par pbuilder pour le cache apt pour stocker les paquets Debian pendant le processus de construction.
/var/cache/pbuilder/ccacheDefault location pbuilder will use as cache location
/var/cache/pbuilder/resultEmplacement par dfaut o pbuilder place les paquets et les autres fichiers crs aprs la construction
/var/cache/pbuilder/pbuilder-umlresultEmplacement par dfaut o pbuilder-user-mode-linux place les paquets et les autres fichiers crs aprs la construction
/var/cache/pbuilder/pbuilder-mntEmplacement par dfaut o pbuilder-user-mode-linux monte le systme de fichiers COW pour l'environnement de base.
/tmppbuilder-user-mode-linux montera le tmpfs ici.
${HOME}/tmp/PID.cowpbuilder-user-mode-linux utilise ce rpertoire comme emplacement pour le systme de fichiers COW.
${HOME}/uml-imagepbuilder-user-mode-linux utilise ce rpertoire pour placer l'image disque pour user-mode-linux.

2.Structure des rpertoires l'intrieur de l'image de base

Tableau8.2.Structure des rpertoires l'intrieur de l'image de base

RpertoireSignification
/etc/mtab Lien symbolique vers /proc/mounts.
/tmp/builddDefault place used in pbuilder to place the Debian package to be processed. /tmp/buildd/packagename-version/ will be the root directory of the package being processed. HOME environment variable is set to this value inside chroot by pbuilder-buildpackage. --inputfile will place files here.
/runscriptLe script utilis comme argument pour pbuilder execute est plac ici.
/tmp/hooks Emplacement des crochets.
/var/cache/apt/archives pbuilder copie le contenu de ce rpertoire depuis et vers le rpertoire aptcache l'extrieur de l'environnement de base.
/var/cache/pbuilder/ccache pbuilder bind-mounts this directory for use by ccache.
/tmp/XXXXpbuilder-user-mode-linux utilise un script dans /tmp pour le dmarrage initial dans user-mode-linux

Chapitre9.Quelques dtails archologiques mineurs

1.Historique de la documentation

Ce document a t commenc le 28 dcembre 2002 par Junichi Uekawa qui essayait de documenter ce qui tait connu propos de pbuilder.

Cette documentation est disponible dans les sources de pbuilder et depuis le dpt git de pbuilder (un accs web est possible). Une copie de cette documentation peut tre trouve sur la page du projet Alioth pour pbuilder. Il existe une version en PDF. La page d'accueil pour pbuilder est http://pbuilder.alioth.debain.org/ hberge par le projet alioth.

La documentation est crite avec DocBook XML, en utilisant le mode PSGML d'Emacs et wysidocbookxml pour la prvisualisation en direct.

2.Histoire peut-tre incorrecte de pbuilder

Ce qui suit explique, de manire sans doute incorrecte, comment pbuilder a vu le jour et les autres tentatives pour obtenir quelque chose de similaire. Cette partie de la documentation se trouvait initialement dans le fichier AUTHORS pour citer ceux qui existaient avant pbuilder.

2.1.L'avant pbuilder

Il tait une fois dbuild qui tait un script pour construire des paquets Debian depuis les sources. Lars Wirzenius a crit ce script qui tait bon, court et simple (probablement). Il n'y avait rien qui ressemblait aux dpendances source ( mon avis) et il tait simple. Il aurait pu tre amlior mais je n'ai trouv que des citations et non le code source.

debbuild tait probablement crit par James Troup. Je n'en suis pas sr car je n'ai jamais trouv le code source. Je n'ai trouv que quelques citations sur le net et dans les archives des listes de diffusion.

sbuild est un script crit en Perl pour construire les paquets Debian depuis les sources. Il prend en compte les dpendances source et effectue quelques vrifications supplmentaires et utilise un grand nombre d'astuces pour russir construire les paquets, y compris une table de correspondance entre les paquets virtuels et les paquets effectivement installer. Il permet galement l'utilisation d'une base locale de paquets qui n'ont pas de dpendances source. Il a t crit par Ronan Hodek et je suppose qu'il a t corrig et amlior par de nombreuses personnes. Il fait partie de wanna-build et tait trs utilis dans le systme de construction automatique buildd de Debian. Je crois qu'il tait maintenu principalement par Ryan Murray.

2.2.Naissance de pbuilder

wanna-build (sbuild) tait (en 2001) particulirement difficile configurer et il n'est jamais devenu un paquet Debian. dbuild a permis de promouvoir l'usage des dpendances source.

Construire des paquets depuis les sources en respectant les dpendances source semblait trivial et pbuilder est n. C'tait initialement un script shell de seulement quelques lignes qui appelait debootstrap, chroot et dpkg-buildpackage chaque excution. Mais il a t rapidement dcid que cette approche tait trop lente.

Yes, and it took almost an year to get things somewhat right, and in the middle of the process, Debian 3.0 was released. Yay. Debian 3.0 wasn't completely buildable with pbuilder, but the amount of packages which are not buildable is steadily decreasing (I hope).

2.3.Et la seconde anne de sa vie

Quelqu'un voulait que pbuilder ne soit pas lanc sous l'utilisateur root et j'ai commenc jouer avec pbuilder-user-mode-linux. Ce dernier n'est pas rest aussi fonctionnel que je l'aurais voulu et construire l'environnement user-mode-linux tait trs difficile en raison de la qualit du code de user-mode-linux ainsi que son empaquetage. Rgulirement, le support du rseau tait cass d'une faon ou d'une autre.

2.4.Cinq annes de pbuilder

pbuilder est maintenant largement adopt comme un outil quasi standard pour tester les paquets et construire les paquets dans un environnement minimal. Il existe d'autres outils pour effectuer des tches similaires mais ils n'ont pas exactement le mme but. En mmoire, pbuilder est dsormais co-maintenu par plusieurs personnes.

sbuild est maintenant un paquet Debian bien maintenu. En raison de la lenteur de pbuilder, certaines personnes prfrent l'approche de sbuild. Les dveloppements visant utilisant les instantans LVM, cowloop ou cowdancer permettront sans doute d'amliorer cette situation.

pbuilder-0.215ubuntu7/Documentation/pbuilder-doc.xml0000664000000000000000000021040312312041170017444 0ustar 2007-5-27 pbuilder User's Manual pbuilder-doc Usage and operations documentation in progress Junichi Uekawa Introducing pbuilder Aims of pbuilder pbuilder stands for Personal Builder, and it is an automatic Debian Package Building system for personal development workstation environments. pbuilder aims to be an easy-to-setup system for auto-building Debian packages inside a clean-room environment, so that it is possible to verify that a package can be built on most Debian installations. The clean-room environment is achieved through the use of a base chroot image, so that only minimal packages will be installed inside the chroot. The Debian distribution consists of free software accompanied with source. The source code within Debian's "main" section must build within Debian "main", with only the explicitly specified build-dependencies installed. The primary aim of pbuilder is different from other auto-building systems in Debian in that its aim is not to try to build as many packages as possible. It does not try to guess what a package needs, and in most cases it tries the worst choice of all if there is a choice to be made. In this way, pbuilder tries to ensure that packages tested against pbuilder will build properly in most Debian installations, hopefully resulting in a good overall Debian source-buildability. The goal of making Debian buildable from source is somewhat accomplished, and has seen good progress. In the past age of Debian 3.0, there were many problems when building from source. More recent versions of Debian is much better. Using pbuilder There are several simple commands for operation. pbuilder create, pbuilder update, and pbuilder build commands are the typical commands used. Let us look at the commands one by one. Creating a base chroot image tar-ball pbuilder create will create a base chroot image tar-ball (base.tgz). All other commands will operate on the resulting base.tgz If the Debian release to be created within chroot is not going to be "sid" (which is the default), the distribution code-name needs to be specified with the command-line option. debootstrap debootstrap or cdebootstrap can be chosen is used to create the bare minimum Debian installation, and then build-essential packages are installed on top of the minimum installation using apt-get inside the chroot. For fuller documentation of command-line options, see the pbuilder.8 manual page. Some configuration will be required for /etc/pbuilderrc for the mirror site The mirror site should preferably be a local mirror or a cache server, so as not to overload the public mirrors with a lot of access. Use of tools such as apt-proxy would be advisable. to use, and proxy configuration may be required to allow access through HTTP. See the pbuilderrc.5 manual page for details. Updating the base.tgz pbuilder update will update the base.tgz. It will extract the chroot, invoke apt-get update and apt-get dist-upgrade inside the chroot, and then recreate the base.tgz (the base tar-ball). It is possible to switch the distribution which the base.tgz is targeted at at this point. Specify to change the distribution to sid. Only upgrading is supported. Debian does not generally support downgrading (yet?). For fuller documentation of command-line options, see the pbuilder.8 manual page Building a package using the base.tgz To build a package inside the chroot, invoke pbuilder build . pbuilder will extract the base.tgz to a temporary working directory, enter the directory with chroot, satisfy the build-dependencies inside chroot, and build the package. The built packages will be moved to a directory specified with the command-line option. The option can be used to specify which base.tgz to use. pbuilder will extract a fresh base chroot image from base.tgz. (base.tgz is created with pbuilder create, and updated with pbuilder update). The chroot is populated with build-dependencies by parsing debian/control and invoking apt-get. For fuller documentation of command-line options, see the pbuilder.8 manual page Facilitating Debian Developers' typing, pdebuild pdebuild is a little wrapper script that does the most frequent of all tasks. A Debian Developer may try to do debuild, and build a package, inside a Debian source directory. pdebuild will allow similar control, and allow package to be built inside the chroot, to check that the current source tree will build happily inside the chroot. pdebuild calls dpkg-source to build the source packages, and then invokes pbuilder on the resulting source package. However, unlike debuild, the resulting deb files will be found in the directory. See the pdebuild.1 manual page for more details. There is a slightly different mode of operation available in pdebuild since version 0.97. pdebuild usually runs debian/rules clean outside of the chroot; however, it is possible to change the behavior to run it inside the chroot with the . It will try to bind mount the working directory inside chroot, and run dpkg-buildpackage inside. It has the following characteristics, and is not yet the default mode of operation. Satisfies build-dependency inside the chroot before creating source package. (which is a good point that default pdebuild could not do). The working directory is modified from inside the chroot. Building with pdebuild does not guarantee that it works with pbuilder. If making the source package fails, the session using the chroot is wasted (chroot creation takes a bit of time, which should be improved with cowdancer). Does not work in the same manner as it used to; for example, does not have any effect. The build inside chroot is ran with the current user outside chroot. Configuration Files It is possible to specify all settings by command-line options. However, for typing convenience, it is possible to use a configuration file. /etc/pbuilderrc and ${HOME}/.pbuilderrc are read in when pbuilder is invoked. The possible options are documented in the pbuilderrc.5 manual page. It is useful to use option to load up a preset configuration file when switching between configuration files for different distributions. Please note ${HOME}/.pbuilderrc supersede system settings. Caveats is that if you have some configuration, you may need to tweak the configuration to work with new versions of pbuilder when upgrading. Building packages as non-root inside the chroot pbuilder requires full root privilege when it is satisfying the build-dependencies, but most packages do not need root privilege to build, or even refused to build when they are built as root. pbuilder can create a user which is only used inside pbuilder and use that user id when building, and use the fakeroot command when root privilege is required. BUILDUSERID configuration option should be set to a value for a user id that does not already exist on the system, so that it is more difficult for packages that are being built with pbuilder to affect the environment outside the chroot. When BUILDUSERNAME configuration option is also set, pbuilder will use the specified user name and fakeroot for building packages, instead of running as root inside chroot. Even when using the fakerooting method, pbuilder will run with root privilege when it is required. For example, when installing packages to the chroot, pbuilder will run under root privilege. To be able to invoke pbuilder without being root, you need to use user-mode-linux, as explained in . Using pbuilder for back-porting pbuilder can be used for back-porting software from the latest Debian distribution to the older stable distribution, by using a chroot that contains an image of the older distribution, and building packages inside the chroot. There are several points to consider, and due to the following reasons, automatic back-porting is usually not possible, and manual interaction is required: The package from the unstable distribution may depend on packages or versions of packages which are only available in unstable. Thus, it may not be possible to satisfy Build-Depends: on stable (without additional backporting work). The stable distribution may have bugs that have been fixed in unstable which need to be worked around. The package in the unstable distribution may have problems building even on unstable. Mass-building packages pbuilder can be automated, because its operations are non-interactive. It is possible to run pbuilder through multiple packages non-interactively. Several such scripts are known to exist. Junichi Uekawa has been running such a script since 2001, and has been filing bugs on packages that fail the test of pbuilder. There were several problems with auto-building: Build-Dependencies need to install non-interactively, but some packages are so broken that they cannot install without interaction (like postgresql). When a library package breaks, or gcc/gcj/g++ breaks, or even bison, a large number of build failures are reported. (gcj-3.0 which had no "javac", bison which got more strict, etc.) Some people were quite hostile against build failure reports. Most of the initial bugs have been resolved in the pbuilder sweep done around 2002, but these transitional problems which affect a large portion of Debian Archive do arise from time to time. Regression tests have their values. A script that was used by Junichi Uekawa in the initial run is now included in the pbuilder distribution, as pbuildd.sh. It is available in /usr/share/doc/pbuilder/examples/pbuildd/ and its configuration is in /etc/pbuilder/pbuildd-config.sh. It should be easy enough to set up for people who are used to pbuilder. It has been running for quite a while, and it should be possible to set the application up on your system also. This version of the code is not the most tested, but should function as a starter. To set up pbuildd, there are some points to be aware of. A file ./avoidlist needs to be available with the list of packages to avoid building. It will try building anything, even packages which are not aimed for your architecture. Because you are running random build scripts, it is better to use the fakeroot option of pbuilder, to avoid running the build under root privilege. Because not all builds are guaranteed to finish in a finite time, setting a timeout is probably necessary, or pbuildd may stall with a bad build. Some packages require a lot of disk space, around 2GB seems to be sufficient for the largest packages for the time being. If you find otherwise, please inform the maintainer of this documentation. Auto-backporting scripts There are some people who use pbuilder to automatically back-port a subset of packages to the stable distribution. I would like some information on how people are doing it, I would appreciate any feedback or information on how you are doing, or any examples. Using pbuilder for automated testing of packages pbuilder can be used for automated testing of packages. It has the feature of allowing hooks to be placed, and these hooks can try to install packages inside the chroot, or run them, or whatever else that can be done. Some known tests and ideas: Automatic install-remove-install-purge-upgrade-remove-upgrade-purge test-suite (distributed as an example, B91dpkg-i), or just check that everything installs somewhat (execute_installtest.sh). Automatically running lintian (distributed as an example in /usr/share/doc/pbuilder/examples/B90lintian). Automatic debian-test of the package? The debian-test package has been removed from Debian. A pbuilder implementation can be found as debian/pbuilder-test directory, implemented through B92test-pkg script. To use B92test-pkg script, first, add it to your hook directory. It is possible to specify --hookdir /usr/share/doc/pbuilder/examples command-line option to include all example hooks as well.. The test files are shell scripts placed in debian/pbuilder-test/NN_name (where NN is a number) following run-parts standard See run-parts(8). For example, no '.' in file names! for file names. After a successful build, packages are first tested for installation and removal, and then each test is ran inside the chroot. The current directory is the top directory of the source-code. This means you can expect to be able to use ./debian/ directory from inside your scripts. Example scripts for use with pbuilder-test can be found in /usr/share/doc/pbuilder/examples/pbuilder-test. Using pbuilder for testing builds with alternate compilers Most packages are compiled with gcc or g++ and using the default compiler version, which was gcc 2.95 for Debian GNU/Linux 3.0 (i386). However, Debian 3.0 was distributed with other compilers, under package names such as gcc-3.2 for gcc compiler version 3.2. It was therefore possible to try compiling packages against different compiler versions. pentium-builder provides an infrastructure for using a different compiler for building packages than the default gcc, by providing a wrapper script called gcc which calls the real gcc. To use pentium-builder in pbuilder, it is possible to set up the following in the configuration: EXTRAPACKAGES="pentium-builder gcc-3.2 g++-3.2" export DEBIAN_BUILDARCH=athlon export DEBIAN_BUILDGCCVER=3.2 It will instruct pbuilder to install the pentium-builder package and also the GCC 3.2 compiler packages inside the chroot, and set the environment variables required for pentium-builder to function. Using User-mode-linux with pbuilder It is possible to use user-mode-linux by invoking pbuilder-user-mode-linux instead of pbuilder. pbuilder-user-mode-linux doesn't require root privileges, and it uses the copy-on-write (COW) disk access method of User-mode-linux which typically makes it much faster than the traditional pbuilder. User-mode-linux is a somewhat less proven platform than the standard Unix tools which pbuilder relies on (chroot, tar, and gzip) but mature enough to support pbuilder-user-mode-linux since its version 0.59. And since then, pbuilder-user-mode-linux has seen a rapid evolution. The configuration of pbuilder-user-mode-linux goes in three steps: Configuration of user-mode-linux Configuration of rootstrap Configuration of pbuilder-uml Configuring user-mode-linux user-mode-linux isn't completely trivial to set up. It would probably be useful to acquaint yourself with it a bit before attempting to use rootstrap or pbuilder-user-mode-linux. For details, read /usr/share/doc/uml-utilities/README.Debian and the user-mode-linux documentation. (It's in a separate package, user-mode-linux-doc.) user-mode-linux requires the user to be in the uml-net group in order to configure the network unless you are using slirp. If you compile your own kernel, you may want to verify that you enable TUN/TAP support, and you might want to consider the SKAS patch. Configuring rootstrap rootstrap is a wrapper around debootstrap. It creates a Debian disk image for use with UML. To configure rootstrap, there are several requirements. Install the rootstrap package. TUN/TAP only: add the user to the uml-net group to allow access to the network adduser dancer uml-net TUN/TAP only: Check that the kernel supports the TUN/TAP interface, or recompile the kernel if necessary. Set up /etc/rootstrap/rootstrap.conf. For example, if the current host is 192.168.1.2, changing following entries to something like this seems to work. transport=tuntap interface=eth0 gateway=192.168.1.1 mirror=http://192.168.1.2:8081/debian host=192.168.1.198 uml=192.168.1.199 netmask=255.255.255.0 Some experimentation with configuration and running rootstrap ~/test.uml to actually test it would be handy. Using slirp requires less configuration. The default configuration comes with a working example. Configuring pbuilder-uml The following needs to happen: Install the pbuilder-uml package. Set up the configuration file /etc/pbuilder/pbuilder-uml.conf in the following manner. It will be different for slirp. MY_ETH0=tuntap,,,192.168.1.198 UML_IP=192.168.1.199 UML_NETMASK=255.255.255.0 UML_NETWORK=192.168.1.0 UML_BROADCAST=255.255.255.255 UML_GATEWAY=192.168.1.1 PBUILDER_UML_IMAGE="/home/dancer/uml-image" Also, it needs to match the rootstrap configuration. Make sure BUILDPLACE is writable by the user. Change BUILDPLACE in the configuration file to a place where the user has access. Run pbuilder-user-mode-linux to create the image. Try running pbuilder-user-mode-linux build. Considerations for running pbuilder-user-mode-linux pbuilder-user-mode-linux emulates most of pbuilder, but there are some differences. pbuilder-user-mode-linux does not support all options of pbuilder properly yet. This is a problem, and will be addressed as specific areas are discovered. /tmp is handled differently inside pbuilder-user-mode-linux. In pbuilder-user-mode-linux, /tmp is mounted as tmpfs inside UML, so accessing files under /tmp from outside user-mode-linux does not work. It affects options like , and when trying to build packages placed under /tmp. Parallel running of pbuilder-user-mode-linux To run pbuilder-user-mode-linux in parallel on a system, there are a few things to bear in mind. The create and update methods must not be run when a build is in progress, or the COW file will be invalidated. If you are not using slirp, user-mode-linux processes which are running in parallel need to have different IP addresses. Just trying to run the pbuilder-user-mode-linux several times will result in failure to access the network. But something like the following will work: for IP in 102 103 104 105; do xterm -e pbuilder-user-mode-linux build --uml-ip 192.168.0.$IP \ 20030107/whizzytex_1.1.1-1.dsc & done When using slirp, this problem does not exist. Using pbuilder-user-mode-linux as a wrapper script to start up a virtual machine It is possible to use pbuilder-user-mode-linux for other uses than just building Debian packages. pbuilder-user-mode-linux will let a user use a shell inside the user-mode-linux pbuilder base image, and pbuilder-user-mode-linux will allow the user to execute a script inside the image. You can use the script to install ssh and add a new user, so that it is possible to access inside the user-mode-linux through ssh. Note that it is not possible to use a script from /tmp due to the way pbuilder-user-mode-linux mounts a tmpfs at /tmp. The following example script may be useful in starting a sshd inside user-mode-linux. #!/bin/bash apt-get install -y ssh xbase-clients xterm echo "enter root password" passwd cp /etc/ssh/sshd_config{,-} sed 's/X11Forwarding.*/X11Forwarding yes/' /etc/ssh/sshd_config- > /etc/ssh/sshd_config /etc/init.d/ssh restart ifconfig echo "Hit enter to finish" read Frequently asked questions Here, known problems and frequently asked questions are documented. This portion was initially available in README.Debian file, but moved here. pbuilder create fails It often happens that pbuilder cannot create the latest chroot. Try upgrading pbuilder and debootstrap. It is currently only possible to create software that handles the past. Future prediction is a feature which may be added later after we have become comfortable with the past. There are people who occasionally back port debootstrap to stable versions; hunt for them. When there are errors with the debootstrap phase, the debootstrap script needs to be fixed. pbuilder does not provide a way to work around debootstrap. Directories that cannot be bind-mounted Because of the way pbuilder works, there are several directories which cannot be bind-mounted when running pbuilder. The directories include /tmp, /var/cache/pbuilder, and system directories such as /etc and /usr. The recommendation is to use directories under the user's home directory for bind-mounts. Logging in to pbuilder to investigate build failure It is possible to invoke a shell session after a build failure. Example hook scripts are provided as C10shell and C11screen scripts. C10shell script will start bash inside chroot, and C11screen script will start GNU screen inside the chroot. Logging in to pbuilder to modify the environment It is sometimes necessary to modify the chroot environment. login will remove the contents of the chroot after logout. It is possible to invoke a shell using hook scripts. pbuilder update executes 'E' scripts, and a sample for invoking a shell is provided as C10shell. $ mkdir ~/loginhooks $ cp C10shell ~/loginhooks/E10shell $ sudo pbuilder update --hookdir ~/loginhooks/E10shell It is also possible to add and/or options to the pbuilder login session to accomplish the goal. It is possible to add the option to pbuilder-user-mode-linux session as well. Setting BUILDRESULTUID for sudo sessions It is possible to set BUILDRESULTUID=$SUDO_UID in pbuilderrc to set the proper BUILDRESULTUID when using sudo. Notes on usage of $TMPDIR If you are setting $TMPDIR to an unusual value, of other than /tmp, you will find that some errors may occur inside the chroot, such as dpkg-source failing. There are two options, you may install a hook to create that directory, or set export TMPDIR=/tmp in pbuilderrc. Take your pick. An example script is provided as examples/D10tmp with pbuilder. Creating a shortcut for running <command>pbuilder</command> with a specific distribution When working with multiple chroots, it would be nice to work with scripts that reduce the amount of typing. An example script pbuilder-distribution.sh is provided as an example. Invoking the script as pbuilder-squeeze will invoke pbuilder with a squeeze chroot. Using environmental variables for running <command>pbuilder</command> for specific distribution This section This part of the documentation contributed by Andres Mejia This example was taken from a wiki (https://wiki.ubuntu.com/PbuilderHowto). describes briefly a way to setup and use multiple pbuilder setups by creating a pbuilderrc configuration in your home path ($HOME/.pbuilderrc) and using the variable "DIST" when running pbuilder or pdebuild. First, setup $HOME/.pbuilderrc to look like: if [ -n "${DIST}" ]; then BASETGZ="`dirname $BASETGZ`/$DIST-base.tgz" DISTRIBUTION="$DIST" BUILDRESULT="/var/cache/pbuilder/$DIST/result/" APTCACHE="/var/cache/pbuilder/$DIST/aptcache/" fi Then, whenever you wish to use pbuilder for a particular distro, assign a value to "DIST" that is one of the distros available for Debian or any Debian based distro you happen to be running (i.e. whatever is found under /usr/lib/debootstrap/scripts). Here's some examples on running pbuilder or pdebuild: DIST=gutsy sudo pbuilder create DIST=sid sudo pbuilder create --mirror http://http.us.debian.org/debian DIST=gutsy sudo pbuilder create \ --othermirror "deb http://archive.ubuntu.com/ubuntu gutsy universe \ multiverse" DIST=gutsy sudo pbuilder update DIST=sid sudo pbuilder update --override-config --mirror \ http://http.us.debian.org/debian \ --othermirror "deb http://http.us.debian.org/debian sid contrib non-free" DIST=gutsy pdebuild Using special apt sources lists, and local packages If you have some very specialized requirements on your apt setup inside pbuilder, it is possible to specify that through the option. Try something like: To use the local file system instead of HTTP, it is necessary to do bind-mounting. is a command-line option useful for such cases. It might be convenient to use your built packages from inside the chroot. It is possible to automate the task with the following configuration. First, set up pbuilderrc to bindmount your build results directory. BINDMOUNTS="/var/cache/pbuilder/result" Then, add the following hook # cat /var/cache/pbuilder/hooks/D70results #!/bin/sh cd /var/cache/pbuilder/result/ /usr/bin/dpkg-scanpackages . /dev/null > /var/cache/pbuilder/result/Packages /usr/bin/apt-get update This way, you can use deb file:/var/cache/pbuilder/result To add new apt-key inside chroot: sudo pbuilder --login --save-after-login # apt-key add - <<EOF ...public key goes here... EOF # logout How to get pbuilder to run apt-get update before trying to satisfy build-dependency You can use hook scripts for this. D scripts are run before satisfying build-dependency. This snippet comes from Ondrej Sury. Different bash prompts inside pbuilder login To make distinguishing bash prompts inside pbuilder easier, it is possible to set environment variables such as PS1 inside pbuilderrc With versions of bash more recent than 2.05b-2-15, the value of the debian_chroot variable, if set, is included in the value of PS1 (the Bash prompt) inside the chroot. In prior versions of bash, Versions of bash from and before Debian 3.0 setting PS1 in pbuilderrc worked. example of debian_chroot export debian_chroot="pbuild$$" example of PS1 export PS1="pbuild chroot 32165 # " Creating a chroot reminder Bash prompts will help you remember that you are inside a chroot. There are other cases where you may want other signs of being inside a chroot. Check out the examples/F90chrootmemo hook script. It will create a file called /CHROOT inside your chroot. Using /var/cache/apt/archives for the package cache For the help of low-bandwidth systems, it is possible to use /var/cache/apt/archives as the package cache. Just specify it instead of the default /var/cache/pbuilder/aptcache. It is however not possible to do so currently with the user-mode-linux version of pbuilder, because /var/cache/apt/archives is usually only writable by root. Use of dedicated tools such as apt-proxy is recommended, since caching of packages would benefit the system outside the scope of pbuilder. pbuilder back ported to stable Debian releases Currently stable back port of pbuilder is available at backports.org. Warning about LOGNAME not being defined You might see a lot of warning messages when running pbuilder. dpkg-genchanges: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234) It is currently safe to ignore this warning message. Please report back if you find any problem with having LOGNAME unset. Setting LOGNAME caused a few problems when invoking chroot. For example, dpkg requires getpwnam to succeed inside chroot, which means LOGNAME and the related user information have to be set up inside chroot. Cannot Build-conflict against an essential package pbuilder does not currently allow Build-Conflicts against essential packages. It should be obvious that essential packages should not be removed from a working Debian system, and a source package should not try to force removal of such packages on people building the package. Avoiding the "ln: Invalid cross-device link" message By default, pbuilder uses hard links to manage the pbuilder package cache. It is not possible to make hard links across different devices; and thus this error will occur, depending on your set up. If this happens, set APTCACHEHARDLINK=no in your pbuilderrc file. Note that packages in APTCACHE will be copied into chroot local cache, so plan for enough space on BUILDPLACE device. Using fakechroot It is possible to use fakechroot instead of being root to run pbuilder; however, several things make this impractical. fakechroot overrides library loads and tries to override default libc functions when providing the functionality of virtual chroot. However, some binaries do no use libc to function, or override the overriding provided by fakechroot. One example is ldd. Inside fakechroot, ldd will check the library dependency outside of the chroot, which is not the expected behavior. To work around the problem, debootstrap has a option. Use that, so that ldd and ldconfig are overridden. Make sure you have set your LD_PRELOAD path correctly, as described in the fakechroot manpage. Using debconf inside pbuilder sessions To use debconf inside pbuilder, setting DEBIAN_FRONTEND to readline in pbuilderrc should work. Setting it to dialog should also work, but make sure whiptail or dialog is installed inside the chroot. nodev mount options hinder pbuilder activity If you see messages such as this when building a chroot, you are mounting the file system with the nodev option. /var/lib/dpkg/info/base-files.postinst: /dev/null: Permission denied You will also have problems if you mount the file system with the noexec option, or nosuid. Make sure you do not have these flags set when mounting the file system for /var/cache/pbuilder or $BUILDPLACE. This is not a problem when using user-mode-linux. See 316135 for example. pbuilder is slow pbuilder is often slow. The slowest part of pbuilder is extracting the tar.gz every time pbuilder is invoked. That can be avoided by using pbuilder-user-mode-linux. pbuilder-user-mode-linux uses COW file system, and thus does not need to clean up and recreate the root file system. pbuilder-user-mode-linux is slower in executing the actual build system, due to the usual user-mode-linux overhead for system calls. It is more friendly to the hard drive. pbuilder with cowdancer is also an alternative that improves speed of pbuilder startup. Why is there a source.changes file in ../? When running pdebuild, pbuilder will run dpkg-buildpackage to create a Debian source package to pass it on to pbuilder. File named XXXX_YYY_source.changes is what remains from that process. It is harmless unless you try to upload it to the Debian archive. This behavior is different when running through amd64 and i386-mode amd64 architectures are capable of running binaries in i386 mode. It is possible to use pbuilder to run packages, using linux32 and debootstrap option. Specifically, a command-line option like the following will work. pbuilder create --distribution sid --debootstrapopts --arch --debootstrapopts i386 \ --basetgz /var/cache/pbuilder/base-i386.tgz --mirror http://ftp.jp.debian.org/debian linux32 pbuilder build --basetgz /var/cache/pbuilder/base-i386.tgz Using tmpfs for buildplace To improve speed of operation, it is possible to use tmpfs for pbuilder build location. Mount tmpfs to /var/cache/pbuilder/build, and set APTCACHEHARDLINK=no. Using svn-buildpackage together with pbuilder pdebuild command can be used with svn-buildpackage --svn-builder command-line option. Zack has posted an example on his blog. alias svn-cowbuilder="svn-buildpackage --svn-builder='pdebuild --pbuilder cowbuilder" Troubleshooting and development Reporting bugs To report bugs, it would be important to have a log of what's going wrong. Most of the time, adding a option and re-running the session should do the trick. Please send the log of such session along with your problem to ease the debugging process. Mailing list There is a mailing list for pbuilder on alioth (pbuilder-maint@lists.alioth.debian.org). You can subscribe through the alioth web interface. http://alioth.debian.org/mail/?group_id=30778. IRC Channel For coordination and communication, IRC channel #pbuilder on irc.oftc.net is used. Please log your intent there when you are going to start doing some changes and committing some change. Information for pbuilder developers This section tries to document current development practices and how things generally operate in development. pbuilder is co-maintained with resources provided by Alioth. There is an Alioth project page at http://alioth.debian.org/projects/pbuilder. Home page is also available, at http://alioth.debian.org/projects/pbuilder which shows this text. git repository is available through http, git, or (if you have an account on alioth, ) ssh. git-clone git://git.debian.org/git/pbuilder/pbuilder.git git-clone http://git.debian.org/git/pbuilder/pbuilder.git git-clone ssh://git.debian.org/git/pbuilder/pbuilder.git Git commit message should have the first one line describing what the commit does, formatted in the way debian/changelog is formatted because it is copied verbatim to changelog via git-dch. The second line is empty, and the rest should describe the background and extra information related to implementation of the commit. Test-suites are available in ./testsuite/ directory. Changes are expected not to break the test-suites. ./run-test.sh is a basic test-suite, which puts a summary in run-test.log, and run-test-cdebootstrap.log. ./run-test-regression.sh is a regression test-suite, which puts the result in run-test-regression.log. Currently, run-test.sh is ran automatically daily to ensure that pbuilder is working. Directory structure of the testsuite Directory Meaning ./testsuite/ Directory for testsuite ./testsuite/run-test.sh Daily regression test to test against Debian Archive changes breaking pbuilder. ./testsuite/run-test.log A summary of testsuite ./testsuite/normal/ Directory for testsuite results of running pbuilder with debootstrap ./testsuite/cdebootstrap/ Directory for testsuite results of running pbuilder with cdebootstrap ./testsuite/run-regression.sh Regression testsuite, ran every time change is made to pbuilder to make sure there is no regression. ./testsuite/run-regression.log Summary of test result ./testsuite/regression/BugID-*.sh Regression tests, exit 0 for success, exit 1 for failure ./testsuite/regression/BugID-* Files used for the regression testsuite. ./testsuite/regression/log/BugID-*.sh.log Output of the regression test, output from the script is redirected by run-regression.sh
When making changes, changes should be documented in the Git commit log. git-dch will generate debian/changelog from the commit log. Make the first line of your commit log meaningful, and add any bug-closing information available. debian/changelog should not be edited directly unless when releasing a new version. A TODO file is available in debian/TODO. It's mostly not well-maintained, but hopefully it will be more up-to-date when people start using it. emacs todoo-mode is used in editing the file. When releasing a new version of pbuilder, the version is tagged with the git tag X.XXX (version number). This is done with ./git-tag.sh script available in the source tree.
Other uses of pbuilder Using pbuilder for small experiments There are cases when some small experimenting is required, and you do not want to damage the main system, like when installing experimental library packages, or compiling with experimental compilers. For such cases, the pbuilder login command is available. pbuilder login is a debugging feature for pbuilder itself, but it also allows users to have a temporary chroot. Note that the chroot is cleaned after logging out of the shell, and mounting file systems inside it is considered harmful. Running little programs inside the chroot To facilitate using pbuilder for other uses, pbuilder execute is available. pbuilder execute will take a script specified in the command-line argument, and invoke the script inside the chroot. The script can be useful for sequences of operations such as installing ssh and adding a new user inside the chroot. Experimental or wishlist features of pbuilder There are some advanced features, above that of the basic feature of pbuilder, for some specific purposes. Using LVM LVM2 has a useful snapshot function that features Copy-on-write images. That could be used for pbuilder just as it can be used for the user-mode-linux pbuilder port. lvmpbuilder script in the examples directory implements such port. The scripts and documentation can be found under /usr/share/doc/pbuilder/examples/lvmpbuilder/. Using cowdancer cowdancer allows copy-on-write semantics on file system using hard links and hard-link-breaking-on-write tricks. pbuilder using cowdancer seems to be much faster and it is one ideal point for improvement. cowbuilder, a wrapper for pbuilder for using cowdancer is available from cowdancer package since 0.14 Example command-lines for cowbuilder look like the following. # cowbuilder --create --distribution sid # cowbuilder --update --distribution sid # cowbuilder --build XXX.dsc It is also possible to use cowdancer with pdebuild command. Specify with command-line option or set it in PDEBUILD_PBUILDER configuration option. $ pdebuild --pbuilder cowbuilder Using pbuilder without tar.gz The option of pbuilder will allow usage of pbuilder in a different way from conventional usage. It will try to use an existing chroot, and will not try to clean up after working on it. It is an operation mode more like sbuild. It should be possible to create base chroot images for dchroot with the following commands: # pbuilder create --distribution lenny --no-targz --basetgz /chroot/lenny # pbuilder create --distribution squeeze --no-targz --basetgz /chroot/squeeze # pbuilder create --distribution sid --no-targz --basetgz /chroot/sid Using pbuilder in a vserver It is possible to use pbuilder in a vserver environment. This requires either vserver-patches in version 2.1.1-rc14 or higher, or a Linux kernel version 2.6.16 or higher. To use pbuilder in a vserver, you need to set the secure_mount CAPS in the ccapabilities of this vserver. Usage of ccache It is possible to use C compiler cache ccache to speed up repeated builds of the same package (or packages that compile the same files multiple times for some reason). Using ccache can speed up repeated building of large packages dramatically, at the cost of some disk space and bookkeeping. To enable usage of ccache with pbuilder, you should set CCACHEDIR in your pbuilderrc file. Current implementation of ccache support has several bugs, that CCACHEDIR must be owned by the pbuilder build user, and parallel runs of pbuilder is not supported. Therefore it is not enabled by default. Reference materials Directory structure outside the chroot Directory Structure outside the chroot Directory Meaning /etc/pbuilderrc configuration file /usr/share/pbuilder/pbuilderrc Default configuration /var/cache/pbuilder/base.tgz Default location pbuilder uses for base.tgz, the tar-ball containing a basic Debian installation with only the build-essential packages. /var/cache/pbuilder/build/PID/ Default location pbuilder uses for chroot /var/cache/pbuilder/aptcache Default location pbuilder will use as apt cache, to store deb packages required during pbuilder build. /var/cache/pbuilder/ccache Default location pbuilder will use as cache location /var/cache/pbuilder/result Default location pbuilder puts the deb files and other files created after build /var/cache/pbuilder/pbuilder-umlresult Default location pbuilder-user-mode-linux puts the deb files and other files created after build /var/cache/pbuilder/pbuilder-mnt Default location pbuilder-user-mode-linux uses for mounting the COW file system, for chrooting. /tmp pbuilder-user-mode-linux will mount tmpfs for work. ${HOME}/tmp/PID.cow pbuilder-user-mode-linux use this directory for location of COW file system. ${HOME}/uml-image pbuilder-user-mode-linux use this directory for user-mode-linux full disk image.
Directory structure inside the chroot Directory Structure inside the chroot Directory Meaning /etc/mtab symlink to /proc/mounts. /tmp/buildd Default place used in pbuilder to place the Debian package to be processed. /tmp/buildd/packagename-version/ will be the root directory of the package being processed. HOME environment variable is set to this value inside chroot by pbuilder-buildpackage. will place files here. /runscript The script passed as an argument to pbuilder execute is passed on. /tmp/hooks The location of hooks. /var/cache/apt/archives pbuilder copies the content of this directory to and from the aptcache directory of outside chroot. /var/cache/pbuilder/ccache pbuilder bind-mounts this directory for use by ccache. /tmp/XXXX pbuilder-user-mode-linux uses a script in /tmp to bootstrap into user-mode-linux
Minor archaeological details Documentation history This document was started on 28 Dec 2002 by Junichi Uekawa, trying to document what is known about pbuilder. This documentation is available from the pbuilder source tar-ball, and from the git repository of pbuilder (web-based access is possible). A copy of this documentation can be found on the Alioth project page for pbuilder. There is also a PDF version. The homepage for pbuilder is http://pbuilder.alioth.debian.org/ hosted by alioth project. Documentation is written using DocBook XML, with emacs PSGML mode, and using wysidocbookxml for live previewing. Possibly inaccurate Background History of pbuilder The following is a most possibly inaccurate account of how pbuilder came to happen, and other attempts to make something like pbuilder happen. This part of the document was originally in the AUTHORS file, to give credit to those who existed before pbuilder. The Time Before pbuilder There was once dbuild, which was a shell script to build Debian packages from source. Lars Wirzenius wrote that script, and it was good, short, and simple (probably). There was nothing like build-depends then (I think), and it was simple. It could have been improved, I could only find references and no actual source. debbuild was probably written by James Troup. I don't know it because I have never seen the actual code, I could only find some references to it on the net, and mailing list logs. sbuild is a perl script to build Debian packages from source. It parses Build-Depends, and performs other miscellaneous checks, and has a lot of hacks to actually get things building, including a table of what package to use when virtual packages are specified (does it do that still?). It supports the use of a local database for packages which do not have build-dependencies. It was written by Ronan Hodek, and I think it was patched and fixed and extended by several people. It is part of wanna-build, and used extensively in the Debian buildd system. I think it was maintained mostly by Ryan Murray. Birth of pbuilder wanna-build (sbuild) was (at the time of year 2001) quite difficult to set up, and it was never a Debian package. dbuild was something that predated Build-Depends. Building packages from source using Build-Depends information within a chroot sounded trivial; and pbuilder was born. It was initially a shell script with only a few lines, which called debootstrap and chroot and dpkg-buildpackage in the same run, but soon, it was decided that that's too slow. Yes, and it took almost an year to get things somewhat right, and in the middle of the process, Debian 3.0 was released. Yay. Debian 3.0 wasn't completely buildable with pbuilder, but the amount of packages which are not buildable is steadily decreasing (I hope). And the second year of its life Someone wanted pbuilder to not run as root, and as User-mode-linux has become more useful as time passed, I've started experimenting with pbuilder-user-mode-linux. pbuilder-user-mode-linux has not stayed functional as much as I would have liked, and bootstrapping user-mode-linux environment has been pretty hard, due to the quality of user-mode-linux code or packaging at that time, which kept on breaking network support in one way or the other. Fifth year of pbuilder pbuilder is now widely adopted as a 'almost standard' tool for testing packages, and building packages in a pristine environment. There are other similar tools that do similar tasks, but they do not share the exact same goal. To commemorate this fact, pbuilder is now co-maintained with several people. sbuild is now a well-maintained Debian package within Debian, and with pbuilder being such a slow monster, some people prefer the approach of sbuild. Development to use LVM-snapshots, cowloop, or cowdancer is hoped to improve the situation somewhat.
pbuilder-0.215ubuntu7/Documentation/pbuilder-doc.ja.html0000664000000000000000000037525112312041170020216 0ustar pbuilder 利用マニュアル

pbuilder 利用マニュアル

利用と操作方法について

Uekawa Junichi [FAMILY Given]

草稿


目次

1. pbuilder の紹介
1. pbuilder の目的
2. pbuilder を利用する
1. base chroot イメージの tar 玉の作成
2. base.tgz の更新
3. base.tgz を利用してパッケージをビルドする
4. Debian Developer のタイピングを省略する、pdebuild
5. 設定ファイル
6. chroot 内部で root 以外でパッケージをビルドする
7. pbuilder をバックポートに活用する
8. パッケージを大量にビルドする
9. 自動バックポートスクリプト
10. pbuilder を自動テストに利用する
11. pbuilder でその他のコンパイラでのビルドを試験する
3. user-mode-linux を pbuilder で利用する
1. user-mode-linux の設定
2. rootstrap の設定
3. pbuilder-uml の設定
4. pbuilder-user-mode-linuxを実行する場合の検討項目
5. pbuilder-user-mode-linux を複数同時に実行させる
6. Using pbuilder-user-mode-linux as a wrapper script to start up a virtual machine
4. FAQ (よくある質問)
1. pbuilder create が失敗する
2. bind mount できないディレクトリ
3. ビルド失敗の調査のために pbuilder 環境にログインする
4. 環境を変更するために pbuilder 環境にログインする
5. BUILDRESULTUID を sudo のセッションに追加する
6. $TMPDIRの使い方について
7. Creating a shortcut for running pbuilder with a specific distribution
8. Using environmental variables for running pbuilder for specific distribution
9. Using special apt sources lists, and local packages
10. How to get pbuilder to run apt-get update before trying to satisfy build-dependency
11. pbuilder login で bash のプロンプトを変更する
12. Creating a chroot reminder
13. Using /var/cache/apt/archives for the package cache
14. pbuilder back ported to stable Debian releases
15. Warning about LOGNAME not being defined
16. Cannot Build-conflict against an essential package
17. Avoiding the "ln: Invalid cross-device link" message
18. Using fakechroot
19. Using debconf inside pbuilder sessions
20. nodev mount options hinder pbuilder activity
21. pbuilder が遅い
22. Using pdebuild to sponsor package
23. Why is there a source.changes file in ../?
24. amd64 and i386-mode
25. Using tmpfs for buildplace
26. svn-buildpackage を pbuilder で利用する
5. Troubleshooting and development
1. Reporting bugs
2. Mailing list
3. IRC Channel
4. Information for pbuilder developers
6. Other uses of pbuilder
1. pbuilder を小規模な実験のために活用する
2. Running little programs inside the chroot
7. Experimental or wishlist features of pbuilder
1. LVMの活用
2. cowdancer の活用
3. tar.gz を利用しないで pbuilder を利用する
4. pbuilder を vserver で利用する
5. Usage of ccache
8. 参考文献
1. chroot 外部のディレクトリ構造
2. chroot 内部のディレクトリ構造
9. 些細な過去の経緯の詳細
1. マニュアルの履歴
2. Possibly inaccurate Background History of pbuilder
2.1. The Time Before pbuilder
2.2. pbuilder の誕生
2.3. そして二年目の人生
2.4. pbuilder の5年目

第1章 pbuilder の紹介

1. pbuilder の目的

pbuilder は Personal Builder の略です。個人的なワークステーションなどの開発環境で、Debianパッケージをビルドするためのシステムです。pbuilder はパッケージが Debian のインストール環境のほとんどでビルドできることを確認するため、Debianパッケージをクリーンルーム内部で自動にビルドするシステムとして簡単に利用できるようになることを目指しています。クリーンルーム環境は最小限のパッケージを chroot にインストールすることで実現しています。

Debian ディストリビューションはソースコードつきのフリーソフトウェアにより構成されています。Debianの「main」セクションにあるソフトウェアは、Build-depend (ビルド時依存関係)として指定されたDebianの「main」セクションにあるパッケージのみがインストールされている状態でビルドできなければなりません。

主なる pbuilder の目的は、他の自動ビルドシステムとは違います。それは、パッケージをできるだけビルドできるようなことを目的としていないところです。パッケージが何を必要としているのかを想像しようとはしません。また選択が可能であれば、最悪な選択をする場合もあります。

この方針を採用することで、 pbuilder は、 pbuilder で試験したパッケージはほとんどのDebianがインストールされた環境でビルドできるように確認することができます。これによってDebian全体としてのソースコードのビルドしやすさの向上を目指しています。

Debian をソースからビルドできるようにするという目標はほぼ完了し、よく進捗しています。Debian 3.0の時代ではソースからビルドするのに問題が多数ありましたが、最近のリリースではましになってきています。

第2章 pbuilder を利用する

操作には、いくつかの簡単なコマンドがあります。pbuilder createpbuilder update、そして pbuilder build コマンドがよく使われます。ひとつづつ見ていきましょう。

1. base chroot イメージの tar 玉の作成

pbuilder create will create a base chroot image tar-ball (base.tgz). All other commands will operate on the resulting base.tgz If the Debian release to be created within chroot is not going to be "sid" (which is the default), the distribution code-name needs to be specified with the --distribution command-line option.

debootstrap [1] is used to create the bare minimum Debian installation, and then build-essential packages are installed on top of the minimum installation using apt-get inside the chroot.

For fuller documentation of command-line options, see the pbuilder.8 manual page. Some configuration will be required for /etc/pbuilderrc for the mirror site [2] to use, and proxy configuration may be required to allow access through HTTP. See the pbuilderrc.5 manual page for details.

2. base.tgz の更新

pbuilder update will update the base.tgz. It will extract the chroot, invoke apt-get update and apt-get dist-upgrade inside the chroot, and then recreate the base.tgz (the base tar-ball).

It is possible to switch the distribution which the base.tgz is targeted at at this point. Specify --distribution sid --override-config to change the distribution to sid. [3]

コマンドラインオプションの詳細なドキュメントについては、pbuilder.8 マニュアルを参照

3. base.tgz を利用してパッケージをビルドする

To build a package inside the chroot, invoke pbuilder build whatever.dsc. pbuilder will extract the base.tgz to a temporary working directory, enter the directory with chroot, satisfy the build-dependencies inside chroot, and build the package. The built packages will be moved to a directory specified with the --buildresult command-line option.

The --basetgz option can be used to specify which base.tgz to use.

pbuilder は base.tgz から新しい chroot イメージを展開します。(base.tgz は pbuilder create で作成され、 pbuilder update で更新されます)。 chroot には Build-Depend関係のパッケージが debian/control を解析して apt-get を実行することで追加されます。

コマンドラインオプションの詳細なドキュメントについては、pbuilder.8 マニュアルを参照

4. Debian Developer のタイピングを省略する、pdebuild

pdebuild は、あらゆる操作の中でももっとも頻繁に行われるだろう作業を簡略化するためのラッパースクリプトです。Debian Developerは Debian パッケージのソースディレクトリで debuild コマンドをうつことでパッケージをビルドします。 pdebuild は同様の操作をすることで、パッケージを chroot 内部でビルドし、 現在のツリーが chroot 内部でもビルドすることを確認します。

pdebuild calls dpkg-source to build the source packages, and then invokes pbuilder on the resulting source package. However, unlike debuild, the resulting deb files will be found in the --buildresult directory.

詳細は pdebuild.1 マニュアルページを参照してください。

There is a slightly different mode of operation available in pdebuild since version 0.97. pdebuild usually runs debian/rules clean outside of the chroot; however, it is possible to change the behavior to run it inside the chroot with the --use-pdebuild-internal. It will try to bind mount the working directory inside chroot, and run dpkg-buildpackage inside. It has the following characteristics, and is not yet the default mode of operation.

  • ソースパッケージを作成する際に、Build-Depend を chroot 内部で満たします。 (以前の pdebuild でできなかったよい点です)。

  • 作業ディレクトリに chroot 内部から変更を加えられます。

  • pdebuild でビルドできることは pbuilder で必ず動くということが保証されるわけではないです。

  • ソースパッケージを作るステップ自体が失敗した場合に、その chroot を利用するセッションは無駄に終わります(chroot の作成には時間がかかる、cowdancer 等で改善します。)

  • Does not work in the same manner as it used to; for example, --buildresult does not have any effect.

  • chroot 内部でのビルドは chroot 外部での現在のユーザで実行される。

5. 設定ファイル

設定をすべてコマンドラインで指定することも可能です。しかし、入力を簡便にするために、設定ファイルを利用することもできます。

/etc/pbuilderrc${HOME}/.pbuilderrcpbuilder を実行すると読み込まれます。可能なオプションについては、 pbuilderrc.5 に解説されています。

It is useful to use --configfile option to load up a preset configuration file when switching between configuration files for different distributions.

Please note ${HOME}/.pbuilderrc supersede system settings. Caveats is that if you have some configuration, you may need to tweak the configuration to work with new versions of pbuilder when upgrading.

6. chroot 内部で root 以外でパッケージをビルドする

pbuilder requires full root privilege when it is satisfying the build-dependencies, but most packages do not need root privilege to build, or even refused to build when they are built as root. pbuilder can create a user which is only used inside pbuilder and use that user id when building, and use the fakeroot command when root privilege is required.

BUILDUSERID 設定オプションは既存のユーザIDと異なるIDに設定しておきましょう。そうするとパッケージが pbuilder 内部でビルドしている際に、chroot 外部の環境に影響をあたえにくくなります。BUILDUSERNAME が設定されている場合、その名前を pbuilder は利用し、 chroot 内部でroot権限で動作する代わりに、fakeroot を利用してパッケージをビルドします。

fakeroot の方法を利用している場合でも、pbuilder は root 権限が必要な場面では root 権限で稼働します。例えば、chroot内部にパッケージをインストールする時にはpbuilder は root 権限で稼働します。

pbuilder を root 権限を必要としないで利用する方法については、 user-mode-linux の利用が必要です。 3章user-mode-linux を pbuilder で利用する で説明しています。

7. pbuilder をバックポートに活用する

pbuilder は古いディストリビューションのchroot を作成し、そこでパッケージをビルドすることで、Debian の最新版のディストリビューションからソフトウエアをバックポートするのに利用することが可能です。いくつかの点を検討する必要があり、次の理由により全自動でバックポートすることは現実的では無く、手動での作業も必要になるでしょう:

  • unstableのパッケージが unstable にしかないパッケージや、unstable にしかないバージョンのパッケージに依存している場合がある。つまり、stable では Build-Depends: を充足することができない(さらなるバックポートが必要になる)。

  • stable ディストリビューションには unstable で修正しているバグが含まれており、ワークアラウンドが必要になる。

  • unstable のパッケージが unstable 上であってもビルドしない場合がある。

8. パッケージを大量にビルドする

pbuilder は操作がインタラクティブではないため、自動的に動かすことができる。pbuilder を複数のパッケージに関して、インタラクティブじゃないように実行することができます。それをするためのスクリプトはいくつか存在します。上川は2001年からそのようなスクリプトを実行し、 pbuilder でビルドできない場合についてバグ報告をしていました。次のような問題が発見されました:

  • 依存関係を充足させるためのインストールは非インタラクティブに行われる必要がありますが、一部のパッケージはインタラクティブな操作がないとインストールできないくらいに壊れているものがあります(postgresqlなど).

  • ライブラリパッケージに問題があったり、gcc/gcj/g++ に問題がある場合、また bison もそうですが、多くのビルド失敗が報告されます。 (gcj-3.0 に "javac" がなくなったり、bison がより厳密になったり、など)

  • 一部の人はビルド失敗の報告に敵対的なので注意しましょう。

2002年ころのpbuilder の実行により初期のバグは洗いだされました。しかし、このように移行に関連したDebian全体に影響するような問題はときどき発生します。回帰テストには価値があるのです。

上川が利用したスクリプトは今 pbuilder ディストリビューションに含まれています。/usr/share/doc/pbuilder/examples/pbuildd/ にあり、設定は、 /etc/pbuilder/pbuildd-config.sh が設定ファイルです。pbuilder になれている人であれば簡単に設定することができるはずです。しばらく実行されていたため、自分のシステムでも実行できるでしょう。ただ、まだ新しいので問題があれば Debian BTS に登録してください。

pbuildd の設定について気にしておくところがいくつかあります。

  • ビルドしないパッケージの一覧ファイル ./avoidlist が存在する必要があります。

  • 自分のアーキテクチャ向けでないものを含めて、あらゆるものをビルドしようとします。

  • 任意のビルドスクリプトを実行しているため、 root 権限で実行しないために、 pbuilder のfakeroot オプションを利用するのがよいでしょう。

  • すべてのビルドが有限時間で完了することが保証されているわけではありません、そのためタイムアウトを準備しておくことが必要かもしれません。そうしないとpbuilddは悪いビルドでずっと待ち状態になる可能性もあります。

  • 一部のパッケージは大量のディスク領域を必要とします、現時点では最大のパッケージであっても2GBくらいが十分なようです。もしそうでないという状況を発見した場合はこの文書のメンテナに連絡してください。

9. 自動バックポートスクリプト

一部の人は pbuilder を一部のパッケージを自動的に stable ディストリビューションにバックポートするために利用しています。

どのように実際にやっているのか情報をください、フィードバックや情報や例を歓迎します。

10. pbuilder を自動テストに利用する

pbuilder は、自動的なテストのために利用することができます。フックを配置することができ、そのフックは chroot 内部にパッケージをインストールしたり実行したりその他のいろいろなことを実行することができます。実行可能なテストとアイデアは次です:

  • Automatic install-remove-install-purge-upgrade-remove-upgrade-purge test-suite (distributed as an example, B91dpkg-i), or just check that everything installs somewhat (execute_installtest.sh).

  • 自動的にlintianを実行する (例として /usr/share/doc/pbuilder/examples/B90lintianが配布されている)。

  • 自動的にパッケージの debian-test を行う? debian-test パッケージは Debian から削除されました。 pbuilder での代替は debian/pbuilder-test ディレクトリにあります。B92test-pkgスクリプトで実装されています。

To use B92test-pkg script, first, add it to your hook directory. [4]. The test files are shell scripts placed in debian/pbuilder-test/NN_name (where NN is a number) following run-parts standard[5] for file names. After a successful build, packages are first tested for installation and removal, and then each test is ran inside the chroot. The current directory is the top directory of the source-code. This means you can expect to be able to use ./debian/ directory from inside your scripts.

Example scripts for use with pbuilder-test can be found in /usr/share/doc/pbuilder/examples/pbuilder-test.

11. pbuilder でその他のコンパイラでのビルドを試験する

Most packages are compiled with gcc or g++ and using the default compiler version, which was gcc 2.95 for Debian GNU/Linux 3.0 (i386). However, Debian 3.0 was distributed with other compilers, under package names such as gcc-3.2 for gcc compiler version 3.2. It was therefore possible to try compiling packages against different compiler versions. pentium-builder provides an infrastructure for using a different compiler for building packages than the default gcc, by providing a wrapper script called gcc which calls the real gcc. To use pentium-builder in pbuilder, it is possible to set up the following in the configuration:

EXTRAPACKAGES="pentium-builder gcc-3.2 g++-3.2"
export DEBIAN_BUILDARCH=athlon
export DEBIAN_BUILDGCCVER=3.2

It will instruct pbuilder to install the pentium-builder package and also the GCC 3.2 compiler packages inside the chroot, and set the environment variables required for pentium-builder to function.



[1] debootstrap か cdebootstrap か選択することができます

[2] 公開ミラーに多数のアクセス負荷をかけないため、ミラーはローカルミラーであることが望ましいです。apt-proxy などのツールの活用を推奨します。

[3] アップグレードしかサポートされていません。Debianはダウングレードをサポートしていません(現時点では?)。

[4] --hookdir /usr/share/doc/pbuilder/examples コマンドラインオプションを指定することですべてのサンプルフックを利用することが可能です。

[5] run-parts(8) を参照してください。例えば、ファイル名に '.' はふくめられません。

第3章 user-mode-linux を pbuilder で利用する

It is possible to use user-mode-linux by invoking pbuilder-user-mode-linux instead of pbuilder. pbuilder-user-mode-linux doesn't require root privileges, and it uses the copy-on-write (COW) disk access method of User-mode-linux which typically makes it much faster than the traditional pbuilder.

User-mode-linux is a somewhat less proven platform than the standard Unix tools which pbuilder relies on (chroot, tar, and gzip) but mature enough to support pbuilder-user-mode-linux since its version 0.59. And since then, pbuilder-user-mode-linux has seen a rapid evolution.

The configuration of pbuilder-user-mode-linux goes in three steps:

  • user-mode-linux の設定

  • rootstrap の設定

  • pbuilder-uml の設定

1. user-mode-linux の設定

user-mode-linux isn't completely trivial to set up. It would probably be useful to acquaint yourself with it a bit before attempting to use rootstrap or pbuilder-user-mode-linux. For details, read /usr/share/doc/uml-utilities/README.Debian and the user-mode-linux documentation. (It's in a separate package, user-mode-linux-doc.)

user-mode-linux requires the user to be in the uml-net group in order to configure the network unless you are using slirp.

If you compile your own kernel, you may want to verify that you enable TUN/TAP support, and you might want to consider the SKAS patch.

2. rootstrap の設定

rootstrap is a wrapper around debootstrap. It creates a Debian disk image for use with UML. To configure rootstrap, there are several requirements.

  • rootstrap パッケージをインストールします。

  • TUN/TAP only: add the user to the uml-net group to allow access to the network

    adduser dancer uml-net

  • TUN/TAPを利用している場合: カーネルが TUN/TAP インタフェースをサポートしていることを確認してください。必要であればカーネルをリビルドしてください。

  • Set up /etc/rootstrap/rootstrap.conf. For example, if the current host is 192.168.1.2, changing following entries to something like this seems to work.

    transport=tuntap
    interface=eth0
    gateway=192.168.1.1
    mirror=http://192.168.1.2:8081/debian
    host=192.168.1.198
    uml=192.168.1.199
    netmask=255.255.255.0

    Some experimentation with configuration and running rootstrap ~/test.uml to actually test it would be handy.

    Using slirp requires less configuration. The default configuration comes with a working example.

3. pbuilder-uml の設定

以下の設定が必要です:

  • pbuilder-uml をインストールする

  • Set up the configuration file /etc/pbuilder/pbuilder-uml.conf in the following manner. It will be different for slirp.

    MY_ETH0=tuntap,,,192.168.1.198
    UML_IP=192.168.1.199
    UML_NETMASK=255.255.255.0
    UML_NETWORK=192.168.1.0
    UML_BROADCAST=255.255.255.255
    UML_GATEWAY=192.168.1.1
    PBUILDER_UML_IMAGE="/home/dancer/uml-image"

    Also, it needs to match the rootstrap configuration.

  • Make sure BUILDPLACE is writable by the user. Change BUILDPLACE in the configuration file to a place where the user has access.

  • Run pbuilder-user-mode-linux create --distribution sid to create the image.

  • Try running pbuilder-user-mode-linux build.

4. pbuilder-user-mode-linuxを実行する場合の検討項目

pbuilder-user-mode-linux emulates most of pbuilder, but there are some differences.

  • pbuilder-user-mode-linux does not support all options of pbuilder properly yet. This is a problem, and will be addressed as specific areas are discovered.

  • /tmp is handled differently inside pbuilder-user-mode-linux. In pbuilder-user-mode-linux, /tmp is mounted as tmpfs inside UML, so accessing files under /tmp from outside user-mode-linux does not work. It affects options like --configfile, and when trying to build packages placed under /tmp.

5. pbuilder-user-mode-linux を複数同時に実行させる

pbuilder-user-mode-linux を同一システム上で同時に複数実行させるにはいくつか注意するべき点があります。

  • The create and update methods must not be run when a build is in progress, or the COW file will be invalidated.

  • If you are not using slirp, user-mode-linux processes which are running in parallel need to have different IP addresses. Just trying to run the pbuilder-user-mode-linux several times will result in failure to access the network. But something like the following will work:

    for IP in 102 103 104 105; do
      xterm -e pbuilder-user-mode-linux build --uml-ip 192.168.0.$IP \
        20030107/whizzytex_1.1.1-1.dsc &
    done

    When using slirp, this problem does not exist.

6. Using pbuilder-user-mode-linux as a wrapper script to start up a virtual machine

It is possible to use pbuilder-user-mode-linux for other uses than just building Debian packages. pbuilder-user-mode-linux login will let a user use a shell inside the user-mode-linux pbuilder base image, and pbuilder-user-mode-linux execute will allow the user to execute a script inside the image.

You can use the script to install ssh and add a new user, so that it is possible to access inside the user-mode-linux through ssh.

Note that it is not possible to use a script from /tmp due to the way pbuilder-user-mode-linux mounts a tmpfs at /tmp.

The following example script may be useful in starting a sshd inside user-mode-linux.

#!/bin/bash

apt-get install -y ssh xbase-clients xterm
echo "enter root password"
passwd
cp /etc/ssh/sshd_config{,-}
sed 's/X11Forwarding.*/X11Forwarding yes/' /etc/ssh/sshd_config- > /etc/ssh/sshd_config

/etc/init.d/ssh restart
ifconfig
echo "Hit enter to finish"
read

第4章 FAQ (よくある質問)

Here, known problems and frequently asked questions are documented. This portion was initially available in README.Debian file, but moved here.

1. pbuilder create が失敗する

It often happens that pbuilder cannot create the latest chroot. Try upgrading pbuilder and debootstrap. It is currently only possible to create software that handles the past. Future prediction is a feature which may be added later after we have become comfortable with the past.

There are people who occasionally back port debootstrap to stable versions; hunt for them.

When there are errors with the debootstrap phase, the debootstrap script needs to be fixed. pbuilder does not provide a way to work around debootstrap.

2. bind mount できないディレクトリ

Because of the way pbuilder works, there are several directories which cannot be bind-mounted when running pbuilder. The directories include /tmp, /var/cache/pbuilder, and system directories such as /etc and /usr. The recommendation is to use directories under the user's home directory for bind-mounts.

3. ビルド失敗の調査のために pbuilder 環境にログインする

It is possible to invoke a shell session after a build failure. Example hook scripts are provided as C10shell and C11screen scripts. C10shell script will start bash inside chroot, and C11screen script will start GNU screen inside the chroot.

4. 環境を変更するために pbuilder 環境にログインする

It is sometimes necessary to modify the chroot environment. login will remove the contents of the chroot after logout. It is possible to invoke a shell using hook scripts. pbuilder update executes 'E' scripts, and a sample for invoking a shell is provided as C10shell.

$ mkdir ~/loginhooks
$ cp C10shell ~/loginhooks/E10shell
$ sudo pbuilder update --hookdir ~/loginhooks/E10shell

It is also possible to add --save-after-exec and/or --save-after-login options to the pbuilder login session to accomplish the goal. It is possible to add the --uml-login-nocow option to pbuilder-user-mode-linux login session as well.

5. BUILDRESULTUID を sudo のセッションに追加する

It is possible to set

BUILDRESULTUID=$SUDO_UID

in pbuilderrc to set the proper BUILDRESULTUID when using sudo.

6. $TMPDIRの使い方について

If you are setting $TMPDIR to an unusual value, of other than /tmp, you will find that some errors may occur inside the chroot, such as dpkg-source failing.

There are two options, you may install a hook to create that directory, or set

export TMPDIR=/tmp

in pbuilderrc. Take your pick.

An example script is provided as examples/D10tmp with pbuilder.

7. Creating a shortcut for running pbuilder with a specific distribution

When working with multiple chroots, it would be nice to work with scripts that reduce the amount of typing. An example script pbuilder-distribution.sh is provided as an example. Invoking the script as pbuilder-squeeze will invoke pbuilder with a squeeze chroot.

8. Using environmental variables for running pbuilder for specific distribution

This section[6] describes briefly a way to setup and use multiple pbuilder setups by creating a pbuilderrc configuration in your home path ($HOME/.pbuilderrc) and using the variable "DIST" when running pbuilder or pdebuild.

First, setup $HOME/.pbuilderrc to look like:

if [ -n "${DIST}" ]; then
        BASETGZ="`dirname $BASETGZ`/$DIST-base.tgz"
        DISTRIBUTION="$DIST"
        BUILDRESULT="/var/cache/pbuilder/$DIST/result/"
        APTCACHE="/var/cache/pbuilder/$DIST/aptcache/"
fi

Then, whenever you wish to use pbuilder for a particular distro, assign a value to "DIST" that is one of the distros available for Debian or any Debian based distro you happen to be running (i.e. whatever is found under /usr/lib/debootstrap/scripts).

Here's some examples on running pbuilder or pdebuild:

DIST=gutsy sudo pbuilder create

DIST=sid sudo pbuilder create --mirror http://http.us.debian.org/debian

DIST=gutsy sudo pbuilder create \
        --othermirror "deb http://archive.ubuntu.com/ubuntu gutsy universe \
        multiverse"

DIST=gutsy sudo pbuilder update

DIST=sid sudo pbuilder update --override-config --mirror \
http://http.us.debian.org/debian \
--othermirror "deb http://http.us.debian.org/debian sid contrib non-free"

DIST=gutsy pdebuild

9. Using special apt sources lists, and local packages

If you have some very specialized requirements on your apt setup inside pbuilder, it is possible to specify that through the --othermirror option. Try something like: --othermirror "deb http://local/mirror stable main|deb-src http://local/source/repository ./"

To use the local file system instead of HTTP, it is necessary to do bind-mounting. --bindmounts is a command-line option useful for such cases.

It might be convenient to use your built packages from inside the chroot. It is possible to automate the task with the following configuration. First, set up pbuilderrc to bindmount your build results directory.

BINDMOUNTS="/var/cache/pbuilder/result"

Then, add the following hook

# cat /var/cache/pbuilder/hooks/D70results
#!/bin/sh
cd /var/cache/pbuilder/result/
/usr/bin/dpkg-scanpackages . /dev/null > /var/cache/pbuilder/result/Packages
/usr/bin/apt-get update

This way, you can use deb file:/var/cache/pbuilder/result

To add new apt-key inside chroot:

sudo pbuilder --login --save-after-login
# apt-key add - <<EOF
...public key goes here...
EOF
# logout

10. How to get pbuilder to run apt-get update before trying to satisfy build-dependency

You can use hook scripts for this. D scripts are run before satisfying build-dependency.

This snippet comes from Ondrej Sury.

11. pbuilder login で bash のプロンプトを変更する

To make distinguishing bash prompts inside pbuilder easier, it is possible to set environment variables such as PS1 inside pbuilderrc

With versions of bash more recent than 2.05b-2-15, the value of the debian_chroot variable, if set, is included in the value of PS1 (the Bash prompt) inside the chroot. In prior versions of bash,[7] setting PS1 in pbuilderrc worked.

example of debian_chroot

	export debian_chroot="pbuild$$"

example of PS1

	export PS1="pbuild chroot 32165 # "

12. Creating a chroot reminder

Bash prompts will help you remember that you are inside a chroot. There are other cases where you may want other signs of being inside a chroot. Check out the examples/F90chrootmemo hook script. It will create a file called /CHROOT inside your chroot.

13. Using /var/cache/apt/archives for the package cache

For the help of low-bandwidth systems, it is possible to use /var/cache/apt/archives as the package cache. Just specify it instead of the default /var/cache/pbuilder/aptcache.

It is however not possible to do so currently with the user-mode-linux version of pbuilder, because /var/cache/apt/archives is usually only writable by root.

Use of dedicated tools such as apt-proxy is recommended, since caching of packages would benefit the system outside the scope of pbuilder.

14. pbuilder back ported to stable Debian releases

Currently stable back port of pbuilder is available at backports.org.

15. Warning about LOGNAME not being defined

You might see a lot of warning messages when running pbuilder.

	dpkg-genchanges: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)

It is currently safe to ignore this warning message. Please report back if you find any problem with having LOGNAME unset. Setting LOGNAME caused a few problems when invoking chroot. For example, dpkg requires getpwnam to succeed inside chroot, which means LOGNAME and the related user information have to be set up inside chroot.

16. Cannot Build-conflict against an essential package

pbuilder does not currently allow Build-Conflicts against essential packages. It should be obvious that essential packages should not be removed from a working Debian system, and a source package should not try to force removal of such packages on people building the package.

17. Avoiding the "ln: Invalid cross-device link" message

By default, pbuilder uses hard links to manage the pbuilder package cache. It is not possible to make hard links across different devices; and thus this error will occur, depending on your set up. If this happens, set

APTCACHEHARDLINK=no

in your pbuilderrc file. Note that packages in APTCACHE will be copied into chroot local cache, so plan for enough space on BUILDPLACE device.

18. Using fakechroot

It is possible to use fakechroot instead of being root to run pbuilder; however, several things make this impractical. fakechroot overrides library loads and tries to override default libc functions when providing the functionality of virtual chroot. However, some binaries do no use libc to function, or override the overriding provided by fakechroot. One example is ldd. Inside fakechroot, ldd will check the library dependency outside of the chroot, which is not the expected behavior.

To work around the problem, debootstrap has a --variant fakechroot option. Use that, so that ldd and ldconfig are overridden.

Make sure you have set your LD_PRELOAD path correctly, as described in the fakechroot manpage.

19. Using debconf inside pbuilder sessions

To use debconf inside pbuilder, setting DEBIAN_FRONTEND to readline in pbuilderrc should work. Setting it to dialog should also work, but make sure whiptail or dialog is installed inside the chroot.

20. nodev mount options hinder pbuilder activity

If you see messages such as this when building a chroot, you are mounting the file system with the nodev option.

	/var/lib/dpkg/info/base-files.postinst: /dev/null: Permission denied

You will also have problems if you mount the file system with the noexec option, or nosuid. Make sure you do not have these flags set when mounting the file system for /var/cache/pbuilder or $BUILDPLACE.

This is not a problem when using user-mode-linux.

See 316135 for example.

21. pbuilder が遅い

pbuilder is often slow. The slowest part of pbuilder is extracting the tar.gz every time pbuilder is invoked. That can be avoided by using pbuilder-user-mode-linux. pbuilder-user-mode-linux uses COW file system, and thus does not need to clean up and recreate the root file system.

pbuilder-user-mode-linux is slower in executing the actual build system, due to the usual user-mode-linux overhead for system calls. It is more friendly to the hard drive.

pbuilder with cowdancer is also an alternative that improves speed of pbuilder startup.

22. Using pdebuild to sponsor package

To sign a package marking for sponsorship, it is possible to use --auto-debsign and --debsign-k options of pdebuild.

	pdebuild  --auto-debsign  --debsign-k XXXXXXXX

23. Why is there a source.changes file in ../?

When running pdebuild, pbuilder will run dpkg-buildpackage to create a Debian source package to pass it on to pbuilder. File named XXXX_YYY_source.changes is what remains from that process. It is harmless unless you try to upload it to the Debian archive.

This behavior is different when running through --use-pdebuild-internal

24. amd64 and i386-mode

amd64 architectures are capable of running binaries in i386 mode. It is possible to use pbuilder to run packages, using linux32 and debootstrap --arch option. Specifically, a command-line option like the following will work.

pbuilder create --distribution sid --debootstrapopts --arch --debootstrapopts i386 \
  --basetgz /var/cache/pbuilder/base-i386.tgz --mirror http://ftp.jp.debian.org/debian
linux32 pbuilder build --basetgz /var/cache/pbuilder/base-i386.tgz

25. Using tmpfs for buildplace

To improve speed of operation, it is possible to use tmpfs for pbuilder build location. Mount tmpfs to /var/cache/pbuilder/build, and set

APTCACHEHARDLINK=no

.

26. svn-buildpackage を pbuilder で利用する

pdebuild command can be used with svn-buildpackage --svn-builder command-line option. [8]

alias svn-cowbuilder="svn-buildpackage --svn-builder='pdebuild --pbuilder cowbuilder"


[6] This part of the documentation contributed by Andres Mejia

This example was taken from a wiki (https://wiki.ubuntu.com/PbuilderHowto).

[7] Debian 3.0 以前のbash

第5章 Troubleshooting and development

1. Reporting bugs

To report bugs, it would be important to have a log of what's going wrong. Most of the time, adding a --debug option and re-running the session should do the trick. Please send the log of such session along with your problem to ease the debugging process.

2. Mailing list

There is a mailing list for pbuilder on alioth (pbuilder-maint@lists.alioth.debian.org). You can subscribe through the alioth web interface. http://alioth.debian.org/mail/?group_id=30778.

3. IRC Channel

For coordination and communication, IRC channel #pbuilder on irc.oftc.net is used. Please log your intent there when you are going to start doing some changes and committing some change.

4. Information for pbuilder developers

This section tries to document current development practices and how things generally operate in development.

pbuilder is co-maintained with resources provided by Alioth. There is an Alioth project page at http://alioth.debian.org/projects/pbuilder. Home page is also available, at http://alioth.debian.org/projects/pbuilder which shows this text. git repository is available through http, git, or (if you have an account on alioth, ) ssh.

git-clone git://git.debian.org/git/pbuilder/pbuilder.git
git-clone http://git.debian.org/git/pbuilder/pbuilder.git
git-clone ssh://git.debian.org/git/pbuilder/pbuilder.git

Git commit message should have the first one line describing what the commit does, formatted in the way debian/changelog is formatted because it is copied verbatim to changelog via git-dch. The second line is empty, and the rest should describe the background and extra information related to implementation of the commit.

Test-suites are available in ./testsuite/ directory. Changes are expected not to break the test-suites. ./run-test.sh is a basic test-suite, which puts a summary in run-test.log, and run-test-cdebootstrap.log. ./run-test-regression.sh is a regression test-suite, which puts the result in run-test-regression.log. Currently, run-test.sh is ran automatically daily to ensure that pbuilder is working.

表5.1 テストスイートのディレクトリ構造

ディレクトリ意味
./testsuite/テストスイートへのディレクトリ
./testsuite/run-test.shDaily regression test to test against Debian Archive changes breaking pbuilder.
./testsuite/run-test.logA summary of testsuite
./testsuite/normal/Directory for testsuite results of running pbuilder with debootstrap
./testsuite/cdebootstrap/Directory for testsuite results of running pbuilder with cdebootstrap
./testsuite/run-regression.shRegression testsuite, ran every time change is made to pbuilder to make sure there is no regression.
./testsuite/run-regression.logSummary of test result
./testsuite/regression/BugID-*.shRegression tests, exit 0 for success, exit 1 for failure
./testsuite/regression/BugID-*回帰テストスイートに利用されるファイル
./testsuite/regression/log/BugID-*.sh.log回帰テストの出力、 run-regression.sh によりスクリプトの出力がリダイレクトされる

When making changes, changes should be documented in the Git commit log. git-dch will generate debian/changelog from the commit log. Make the first line of your commit log meaningful, and add any bug-closing information available. debian/changelog should not be edited directly unless when releasing a new version.

A TODO file is available in debian/TODO. It's mostly not well-maintained, but hopefully it will be more up-to-date when people start using it. emacs todoo-mode is used in editing the file.

When releasing a new version of pbuilder, the version is tagged with the git tag X.XXX (version number). This is done with ./git-tag.sh script available in the source tree.

第6章 Other uses of pbuilder

1. pbuilder を小規模な実験のために活用する

There are cases when some small experimenting is required, and you do not want to damage the main system, like when installing experimental library packages, or compiling with experimental compilers. For such cases, the pbuilder login command is available.

pbuilder login is a debugging feature for pbuilder itself, but it also allows users to have a temporary chroot.

Note that the chroot is cleaned after logging out of the shell, and mounting file systems inside it is considered harmful.

2. Running little programs inside the chroot

To facilitate using pbuilder for other uses, pbuilder execute is available. pbuilder execute will take a script specified in the command-line argument, and invoke the script inside the chroot.

The script can be useful for sequences of operations such as installing ssh and adding a new user inside the chroot.

第7章 Experimental or wishlist features of pbuilder

There are some advanced features, above that of the basic feature of pbuilder, for some specific purposes.

1. LVMの活用

LVM2 has a useful snapshot function that features Copy-on-write images. That could be used for pbuilder just as it can be used for the user-mode-linux pbuilder port. lvmpbuilder script in the examples directory implements such port. The scripts and documentation can be found under /usr/share/doc/pbuilder/examples/lvmpbuilder/.

2. cowdancer の活用

cowdancer allows copy-on-write semantics on file system using hard links and hard-link-breaking-on-write tricks. pbuilder using cowdancer seems to be much faster and it is one ideal point for improvement. cowbuilder, a wrapper for pbuilder for using cowdancer is available from cowdancer package since 0.14

Example command-lines for cowbuilder look like the following.

# cowbuilder --create --distribution sid
# cowbuilder --update --distribution sid
# cowbuilder --build XXX.dsc

It is also possible to use cowdancer with pdebuild command. Specify with command-line option --pbuilder or set it in PDEBUILD_PBUILDER configuration option.

$ pdebuild --pbuilder cowbuilder

3. tar.gz を利用しないで pbuilder を利用する

The --no-targz option of pbuilder will allow usage of pbuilder in a different way from conventional usage. It will try to use an existing chroot, and will not try to clean up after working on it. It is an operation mode more like sbuild.

It should be possible to create base chroot images for dchroot with the following commands:

# pbuilder create --distribution lenny --no-targz --basetgz /chroot/lenny
# pbuilder create --distribution squeeze --no-targz --basetgz /chroot/squeeze
# pbuilder create --distribution sid --no-targz --basetgz /chroot/sid

4. pbuilder を vserver で利用する

It is possible to use pbuilder in a vserver environment. This requires either vserver-patches in version 2.1.1-rc14 or higher, or a Linux kernel version 2.6.16 or higher.

To use pbuilder in a vserver, you need to set the secure_mount CAPS in the ccapabilities of this vserver.

5. Usage of ccache

It is possible to use C compiler cache ccache to speed up repeated builds of the same package (or packages that compile the same files multiple times for some reason). Using ccache can speed up repeated building of large packages dramatically, at the cost of some disk space and bookkeeping.

To enable usage of ccache with pbuilder, you should set CCACHEDIR in your pbuilderrc file.

Current implementation of ccache support has several bugs, that CCACHEDIR must be owned by the pbuilder build user, and parallel runs of pbuilder is not supported. Therefore it is not enabled by default.

第8章 参考文献

1. chroot 外部のディレクトリ構造

表8.1 chroot 内部のディレクトリ構造

ディレクトリ意味
/etc/pbuilderrc設定ファイル
/usr/share/pbuilder/pbuilderrcデフォルト設定
/var/cache/pbuilder/base.tgzDefault location pbuilder uses for base.tgz, the tar-ball containing a basic Debian installation with only the build-essential packages.
/var/cache/pbuilder/build/PID/pbuilder がデフォルトでchroot のために利用する場所
/var/cache/pbuilder/aptcacheDefault location pbuilder will use as apt cache, to store deb packages required during pbuilder build.
/var/cache/pbuilder/ccacheDefault location pbuilder will use as cache location
/var/cache/pbuilder/resultDefault location pbuilder puts the deb files and other files created after build
/var/cache/pbuilder/pbuilder-umlresultDefault location pbuilder-user-mode-linux puts the deb files and other files created after build
/var/cache/pbuilder/pbuilder-mntDefault location pbuilder-user-mode-linux uses for mounting the COW file system, for chrooting.
/tmppbuilder-user-mode-linux will mount tmpfs for work.
${HOME}/tmp/PID.cowpbuilder-user-mode-linux use this directory for location of COW file system.
${HOME}/uml-imagepbuilder-user-mode-linux use this directory for user-mode-linux full disk image.

2. chroot 内部のディレクトリ構造

表8.2 chroot 内部のディレクトリ構造

ディレクトリ意味
/etc/mtab /proc/mountsへのシンボリックリンク。
/tmp/builddDefault place used in pbuilder to place the Debian package to be processed. /tmp/buildd/packagename-version/ will be the root directory of the package being processed. HOME environment variable is set to this value inside chroot by pbuilder-buildpackage. --inputfile will place files here.
/runscriptThe script passed as an argument to pbuilder execute is passed on.
/tmp/hooks フックの場所。
/var/cache/apt/archives pbuilder は chroot 外部の aptcache ディレクトリからコピーしてきたり、chroot 外部の aptcache ディレクトリへコピーしたりします。
/var/cache/pbuilder/ccache pbuilder bind-mounts this directory for use by ccache.
/tmp/XXXXpbuilder-user-mode-linux/tmp のスクリプトを利用して user-mode-linux にブートストラップします。

第9章 些細な過去の経緯の詳細

1. マニュアルの履歴

This document was started on 28 Dec 2002 by Junichi Uekawa, trying to document what is known about pbuilder.

This documentation is available from the pbuilder source tar-ball, and from the git repository of pbuilder (web-based access is possible). A copy of this documentation can be found on the Alioth project page for pbuilder. There is also a PDF version. The homepage for pbuilder is http://pbuilder.alioth.debian.org/ hosted by alioth project.

Documentation is written using DocBook XML, with emacs PSGML mode, and using wysidocbookxml for live previewing.

2. Possibly inaccurate Background History of pbuilder

The following is a most possibly inaccurate account of how pbuilder came to happen, and other attempts to make something like pbuilder happen. This part of the document was originally in the AUTHORS file, to give credit to those who existed before pbuilder.

2.1. The Time Before pbuilder

There was once dbuild, which was a shell script to build Debian packages from source. Lars Wirzenius wrote that script, and it was good, short, and simple (probably). There was nothing like build-depends then (I think), and it was simple. It could have been improved, I could only find references and no actual source.

debbuild was probably written by James Troup. I don't know it because I have never seen the actual code, I could only find some references to it on the net, and mailing list logs.

sbuild is a perl script to build Debian packages from source. It parses Build-Depends, and performs other miscellaneous checks, and has a lot of hacks to actually get things building, including a table of what package to use when virtual packages are specified (does it do that still?). It supports the use of a local database for packages which do not have build-dependencies. It was written by Ronan Hodek, and I think it was patched and fixed and extended by several people. It is part of wanna-build, and used extensively in the Debian buildd system. I think it was maintained mostly by Ryan Murray.

2.2. pbuilder の誕生

wanna-build (sbuild) was (at the time of year 2001) quite difficult to set up, and it was never a Debian package. dbuild was something that predated Build-Depends.

Building packages from source using Build-Depends information within a chroot sounded trivial; and pbuilder was born. It was initially a shell script with only a few lines, which called debootstrap and chroot and dpkg-buildpackage in the same run, but soon, it was decided that that's too slow.

Yes, and it took almost an year to get things somewhat right, and in the middle of the process, Debian 3.0 was released. Yay. Debian 3.0 wasn't completely buildable with pbuilder, but the amount of packages which are not buildable is steadily decreasing (I hope).

2.3. そして二年目の人生

Someone wanted pbuilder to not run as root, and as User-mode-linux has become more useful as time passed, I've started experimenting with pbuilder-user-mode-linux. pbuilder-user-mode-linux has not stayed functional as much as I would have liked, and bootstrapping user-mode-linux environment has been pretty hard, due to the quality of user-mode-linux code or packaging at that time, which kept on breaking network support in one way or the other.

2.4. pbuilder の5年目

pbuilder is now widely adopted as a 'almost standard' tool for testing packages, and building packages in a pristine environment. There are other similar tools that do similar tasks, but they do not share the exact same goal. To commemorate this fact, pbuilder is now co-maintained with several people.

sbuild is now a well-maintained Debian package within Debian, and with pbuilder being such a slow monster, some people prefer the approach of sbuild. Development to use LVM-snapshots, cowloop, or cowdancer is hoped to improve the situation somewhat.

pbuilder-0.215ubuntu7/Documentation/pbuilder-doc.de.po0000664000000000000000000046621612312041170017670 0ustar # Translation of the pbuilder documentation to German # http://www.netfort.gr.jp/~dancer/software/pbuilder-doc/pbuilder-doc.html # Copyright (C) 2001-2007 Junichi Uekawa. # This file is distributed under the same license as the pbuilder package. # Chris Leick , 2011 # msgid "" msgstr "" "Project-Id-Version: pbuilder 0.199+nmu4\n" "Report-Msgid-Bugs-To: pbuilder@packages.debian.org\n" "POT-Creation-Date: 2013-03-02 16:37+0900\n" "PO-Revision-Date: 2011-08-01 19:11+0100\n" "Last-Translator: Chris Leick \n" "Language-Team: German \n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. type: Attribute 'xml:lang' of: #: pbuilder-doc.xml:5 msgid "en" msgstr "de" #. type: Content of: #: pbuilder-doc.xml:7 msgid "2007-5-27" msgstr "27. Mai 2007" #. type: Content of: #: pbuilder-doc.xml:8 msgid "pbuilder User's Manual" msgstr "Pbuilder-Benutzerhandbuch" #. type: Content of: <book><bookinfo> #: pbuilder-doc.xml:9 msgid "<abbrev>pbuilder-doc</abbrev>" msgstr "<abbrev>pbuilder-doc</abbrev>" #. type: Content of: <book><bookinfo><subtitle> #: pbuilder-doc.xml:10 msgid "Usage and operations" msgstr "Aufruf und Betrieb" #. type: Content of: <book><bookinfo><releaseinfo> #: pbuilder-doc.xml:11 msgid "documentation in progress" msgstr "Dokumentation in Entwicklung" #. type: Content of: <book><bookinfo><authorgroup><author><firstname> #: pbuilder-doc.xml:14 msgid "Junichi" msgstr "Junichi" #. type: Content of: <book><bookinfo><authorgroup><author><surname> #: pbuilder-doc.xml:15 msgid "Uekawa" msgstr "Uekawa" #. type: Content of: <book><chapter><title> #: pbuilder-doc.xml:22 msgid "Introducing pbuilder" msgstr "Einführung in Pbuilder" #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:24 msgid "Aims of pbuilder" msgstr "Ziele von Pbuilder" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:26 msgid "" "<command>pbuilder</command> stands for Personal Builder, and it is an " "automatic Debian Package Building system for personal development " "workstation environments. <command>pbuilder</command> aims to be an easy-to-" "setup system for auto-building Debian packages inside a clean-room " "environment, so that it is possible to verify that a package can be built on " "most Debian installations. The clean-room environment is achieved through " "the use of a base chroot image, so that only minimal packages will be " "installed inside the chroot." msgstr "" "<command>pbuilder</command> steht für »Personal Builder« und ist ein " "automatisches System zum Bau von Debian-Paketen für persönliche Entwickler-" "Arbeitsplatzumgebungen. Ziel von <command>pbuilder</command> ist es, ein " "einfach einzurichtendes System zum automatischen Bau von Debian-Paketen " "innerhalb einer Reinraumumgebung zu sein, so dass eine Prüfung, ob ein Paket " "in den meisten Debian-Installationen gebaut werden kann, möglich ist. Die " "Reinraumumgebung wird durch den Gebrauch eines Chroot-Images erreicht, so " "dass nur eine minimale Zahl von Paketen innerhalb der Chroot installiert " "wird." #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:40 msgid "" "The Debian distribution consists of free software accompanied with source. " "The source code within Debian's \"main\" section must build within Debian " "\"main\", with only the explicitly specified build-dependencies installed." msgstr "" "Die Distribution Debian besteht aus freier Software, die zusammen mit " "Quellen weitergegeben wird. Der Quellkode innerhalb Debians Bereich »main« " "muss innerhalb Debian-»main« gebaut werden, nur mit den explizit angegebenen " "installierten Build-Abhängigkeiten." #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:48 msgid "" "The primary aim of <command>pbuilder</command> is different from other auto-" "building systems in Debian in that its aim is not to try to build as many " "packages as possible. It does not try to guess what a package needs, and in " "most cases it tries the worst choice of all if there is a choice to be made." msgstr "" "Das vorrangige Ziel von <command>pbuilder</command> unterscheidet sich von " "anderen automatischen Bausystemen in Debian darin, dass es nicht das Ziel " "hat, so viele Pakete wie möglich zu bauen. Es versucht nicht abzuschätzen, " "was ein Paket benötigt und probiert, wenn eine Auswahl zu treffen ist, in " "den meisten Fällen die schlechtest mögliche Auswahl von allen." #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:56 msgid "" "In this way, <command>pbuilder</command> tries to ensure that packages " "tested against <command>pbuilder</command> will build properly in most " "Debian installations, hopefully resulting in a good overall Debian source-" "buildability." msgstr "" "Auf diese Art versucht <command>pbuilder</command> sicherzustellen, dass " "Pakete, die mit <command>pbuilder</command> getestet wurden, auf den meisten " "Debian-Installationen ordentlich gebaut werden, was hoffentlich in einer " "guten umfassenden Erstellbarkeit von Debian aus den Quellen resultiert." #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:63 msgid "" "The goal of making Debian buildable from source is somewhat accomplished, " "and has seen good progress. In the past age of Debian 3.0, there were many " "problems when building from source. More recent versions of Debian is much " "better." msgstr "" "Das Ziel, Debian aus den Quellen erstellbar zu machen, ist einigermaßen " "vollendet und hat gute Fortschritte gemacht. In früheren Zeiten, als Debian " "3.0 aktuell war, gab es viele Probleme beim Bau aus den Quellen. Bei " "aktuelleren Versionen von Debian ist dies viel besser." #. type: Content of: <book><chapter><title> #: pbuilder-doc.xml:71 msgid "Using pbuilder" msgstr "Pbuilder benutzen" #. type: Content of: <book><chapter><para> #: pbuilder-doc.xml:73 msgid "" "There are several simple commands for operation. <command>pbuilder create</" "command>, <command>pbuilder update</command>, and <command>pbuilder build</" "command> commands are the typical commands used. Let us look at the " "commands one by one." msgstr "" "Es gibt mehrere einfache Befehle für den Betrieb. Normalerweise werden die " "Befehle <command>pbuilder create</command>, <command>pbuilder update</" "command> und <command>pbuilder build</command> benutzt. Sie werden nun " "nacheinander vorgestellt." #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:80 msgid "Creating a base chroot image tar-ball" msgstr "Einen Basis-Chroot-Tarball erstellen" # FIXME s/base.tgz If/base.tgz. If/ #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:82 msgid "" "<command>pbuilder create</command> will create a base chroot image tar-ball " "(base.tgz). All other commands will operate on the resulting base.tgz If " "the Debian release to be created within chroot is not going to be \"sid" "\" (which is the default), the distribution code-name needs to be specified " "with the <command><option>--distribution</option></command> command-line " "option." msgstr "" "<command>pbuilder create</command> wird einen Basis-Chroot-Tarball (base." "tgz) erstellen. Alle anderen Befehle werden mit dem resultierenden base.tgz " "arbeiten. Falls das zu erstellende Debian-Release nicht »sid« sein wird (was " "Vorgabe ist), muss der Kodename der Distribution mit der Befehlszeilenoption " "<command><option>--distribution</option></command> angegeben werden." #. type: Content of: <book><chapter><sect1><para><footnote><para> #: pbuilder-doc.xml:94 msgid "debootstrap or cdebootstrap can be chosen" msgstr "debootstrap oder cdebootstrap können ausgewählt werden" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:93 msgid "" "<command>debootstrap</command> <placeholder type=\"footnote\" id=\"0\"/> is " "used to create the bare minimum Debian installation, and then build-" "essential packages are installed on top of the minimum installation using " "<command>apt-get</command> inside the chroot." msgstr "" "<command>debootstrap</command> <placeholder type=\"footnote\" id=\"0\"/> " "wird benutzt, um die reine minimale Debian-Installation zu erstellen. Dann " "werden Build-essential-Pakete auf der minimalen Installation unter Benutzung " "von <command>apt-get</command> innerhalb der Chroot installiert." #. type: Content of: <book><chapter><sect1><para><footnote><para> #: pbuilder-doc.xml:109 msgid "" "The mirror site should preferably be a local mirror or a cache server, so as " "not to overload the public mirrors with a lot of access. Use of tools such " "as apt-proxy would be advisable." msgstr "" "Die Spiegel-Site sollte möglichst ein lokaler Spiegel oder ein " "Zwischenspeicher-Server sein, damit die öffentlichen Spiegel nicht mit " "vielen Zugriffen überladen werden. Die Benutzung von Werkzeugen wie Apt-" "proxy ist empfehlenswert." #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:103 msgid "" "For fuller documentation of command-line options, see the pbuilder.8 manual " "page. Some configuration will be required for <filename>/etc/pbuilderrc</" "filename> for the mirror site <placeholder type=\"footnote\" id=\"0\"/> to " "use, and proxy configuration may be required to allow access through HTTP. " "See the pbuilderrc.5 manual page for details." msgstr "" "Für weitere Dokumentationen der Befehlszeilenoptionen lesen Sie die " "Handbuchseite pbuilder.8. Zur Benutzung wird manche Konfiguration von " "<filename>/etc/pbuilderrc</filename> für die Spiegel-Site <placeholder type=" "\"footnote\" id=\"0\"/> nötig sein und es könnte notwendig sein, den Proxy " "zu konfigurieren, um Zugriff über HTTP zu erlauben. Einzelheiten finden Sie " "in der Handbuchseite von pbuilderrc.5." #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:122 msgid "Updating the base.tgz" msgstr "Das base.tgz aktualisieren" # FIXME s/tar-ball.)/tar-ball)./ #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:123 #, fuzzy #| msgid "" #| "<command>pbuilder update</command> will update the base.tgz. It will " #| "extract the chroot, invoke <command>apt-get update</command> and " #| "<command>apt-get dist-upgrade</command> inside the chroot, and then " #| "recreate the base.tgz (the base tar-ball.)" msgid "" "<command>pbuilder update</command> will update the base.tgz. It will " "extract the chroot, invoke <command>apt-get update</command> and " "<command>apt-get dist-upgrade</command> inside the chroot, and then recreate " "the base.tgz (the base tar-ball)." msgstr "" "<command>pbuilder update</command> wird das base.tgz aktualisieren. Es wird " "die Chroot extrahieren, <command>apt-get update</command> und <command>apt-" "get dist-upgrade</command> innerhalb der Chroot ausführen und dann das base." "tgz (den Tarball) neu erstellen." #. type: Content of: <book><chapter><sect1><para><footnote><para> #: pbuilder-doc.xml:135 msgid "" "Only upgrading is supported. Debian does not generally support downgrading " "(yet?)." msgstr "" "Nur das Durchführen von Upgrades wird unterstützt. Debian unterstützt " "generell (noch?) kein Downgrade." #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:130 msgid "" "It is possible to switch the distribution which the base.tgz is targeted at " "at this point. Specify <command><option>--distribution <parameter>sid</" "parameter></option> <option>--override-config</option></command> to change " "the distribution to sid. <placeholder type=\"footnote\" id=\"0\"/>" msgstr "" "Es ist möglich, die Distribution zu wechseln auf die base.tgz an diesem " "Punkt verweist. Geben Sie <command><option>--distribution <parameter>sid</" "parameter></option> <option>--override-config</option></command> an, um die " "Distribution auf Sid zu ändern. <placeholder type=\"footnote\" id=\"0\"/>" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:140 pbuilder-doc.xml:172 msgid "" "For fuller documentation of command-line options, see the pbuilder.8 manual " "page" msgstr "" "Weitere Dokumentationen der Befehlszeilenoptionen finden Sie auf der " "Handbuchseite pbuilder.8." #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:145 msgid "Building a package using the base.tgz" msgstr "Ein Paket unter Benutzung von base.tgz bauen" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:147 msgid "" "To build a package inside the chroot, invoke <command>pbuilder build " "<option>whatever.dsc</option></command>. <command>pbuilder</command> will " "extract the base.tgz to a temporary working directory, enter the directory " "with chroot, satisfy the build-dependencies inside chroot, and build the " "package. The built packages will be moved to a directory specified with the " "<command><option>--buildresult</option></command> command-line option." msgstr "" "Um ein Paket innerhalb der Chroot zu bauen, rufen Sie <command>pbuilder " "build <option>wasauchimmer.dsc</option></command> auf. <command>pbuilder</" "command> wird das base.tgz in ein temporäres Verzeichnis extrahieren, mit " "Chroot in das Verzeichnis wechseln, die Build-Abhängigkeiten erfüllen und " "das Paket bauen. Das gebaute Paket wird in das Verzeichnis verschoben, das " "mit der Befehlszeilenoption <command><option>--buildresult</option></" "command> angegeben wurde." #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:160 msgid "" "The <command><option>--basetgz</option></command> option can be used to " "specify which base.tgz to use." msgstr "" "Die Option <command><option>--basetgz</option></command> kann benutzt " "werden, um anzugeben, welche base.tgz benutzt werden soll." #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:164 msgid "" "<command>pbuilder</command> will extract a fresh base chroot image from base." "tgz. (base.tgz is created with <command>pbuilder create</command>, and " "updated with <command>pbuilder update</command>). The chroot is populated " "with build-dependencies by parsing debian/control and invoking <command>apt-" "get</command>." msgstr "" "<command>pbuilder</command> wird ein frisches Chroot-Basis-Image aus base." "tgz extrahieren (base.tgz wird mit <command>pbuilder create</command> " "erstellt und mit <command>pbuilder update</command> aktualisiert). Die " "Chroot wird durch Auswertung von debian/control und Aufruf von <command>apt-" "get</command> mit Build-Abhängigkeiten bestückt." #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:177 msgid "Facilitating Debian Developers' typing, pdebuild" msgstr "Debian-Entwicklern das Tippen erleichtern, Pdebuild" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:179 msgid "" "<command>pdebuild</command> is a little wrapper script that does the most " "frequent of all tasks. A Debian Developer may try to do <command>debuild</" "command>, and build a package, inside a Debian source directory. " "<command>pdebuild</command> will allow similar control, and allow package to " "be built inside the chroot, to check that the current source tree will build " "happily inside the chroot." msgstr "" "<command>pdebuild</command> ist ein kleines Wrapper-Skript, das die " "häufigsten aller Aufgaben erledigt. Ein Debian-Entwickler könnte versuchen, " "<command>debuild</command> auszuführen und ein Paket innerhalb eines Debian-" "Quellverzeichnisses zu bauen. <command>pdebuild</command> wird eine ähnliche " "Steuerung erlauben und ermöglichen, dass Pakete innerhalb der Chroot gebaut " "werden, um zu prüfen, ob der aktuelle Quellbaum geschickterweise innerhalb " "der Chroot gebaut wird." #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:189 msgid "" "<command>pdebuild</command> calls <command>dpkg-source</command> to build " "the source packages, and then invokes <command>pbuilder</command> on the " "resulting source package. However, unlike debuild, the resulting deb files " "will be found in the <command><option>--buildresult</option></command> " "directory." msgstr "" "<command>pdebuild</command> ruft zum Bau der Quellpakete <command>dpkg-" "source</command> und dann für das resultierende Quellpaket " "<command>pbuilder</command> auf. Anders als bei Debuild können die " "resultierenden Deb-Dateien jedoch im mit <command><option>--buildresult</" "option></command> angegebenen Verzeichnis gefunden werden." #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:197 msgid "See the pdebuild.1 manual page for more details." msgstr "Weitere Einzelheiten finden Sie auf der Handbuchseite pdebuild.1." #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:200 msgid "" "There is a slightly different mode of operation available in " "<command>pdebuild</command> since version 0.97. <command>pdebuild</command> " "usually runs <command>debian/rules clean</command> outside of the chroot; " "however, it is possible to change the behavior to run it inside the chroot " "with the <command><option>--use-pdebuild-internal</option></command>. It " "will try to bind mount the working directory inside chroot, and run " "<command>dpkg-buildpackage</command> inside. It has the following " "characteristics, and is not yet the default mode of operation." msgstr "" "Es gibt einen etwas anderen Betriebsmodus, der in <command>pdebuild</" "command> seit Version 0.97 verfügbar ist. <command>pdebuild</command> führt " "<command>debian/rules clean</command> normalerweise außerhalb der Chroot " "aus; es ist jedoch möglich, dieses Verhalten mit <command><option>--use-" "pdebuild-internal</option></command> zu ändern, damit es innerhalb der " "Chroot läuft. Es wird versuchen, das Arbeitsverzeichnis innerhalb der Chroot " "einzuhängen und <command>dpkg-buildpackage</command> darin auszuführen. Es " "hat die folgenden Merkmale und ist noch nicht der Standardbetriebsmodus." #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:214 msgid "" "Satisfies build-dependency inside the chroot before creating source " "package. (which is a good point that default <command>pdebuild</command> " "could not do)." msgstr "" "erfüllt die Build-Abhängigkeiten innerhalb der Chroot, bevor das Quellpaket " "erstellt wird (was ein guter Punkt ist, den Standard-<command>pdebuild</" "command> nicht beherrscht)" #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:219 msgid "The working directory is modified from inside the chroot." msgstr "Das Arbeitsverzeichnis wird von innerhalb der Chroot geändert." #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:223 msgid "" "Building with <command>pdebuild</command> does not guarantee that it works " "with <command>pbuilder</command>." msgstr "" "Bauen mit <command>pdebuild</command> garantiert nicht, dass dies mit " "<command>pbuilder</command> funktioniert." #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:227 msgid "" "If making the source package fails, the session using the chroot is wasted " "(chroot creation takes a bit of time, which should be improved with " "cowdancer)." msgstr "" "Falls das Erstellen des Quellpakets fehlschlägt, ist die Sitzung vergeudet, " "die die Chroot verwendet (Erstellen einer Chroot nimmt etwas Zeit in " "Anspruch, was mit Cowdancer verbessert werden sollte)." #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:232 msgid "" "Does not work in the same manner as it used to; for example, " "<command><option>--buildresult</option></command> does not have any effect." msgstr "" "funktioniert nicht auf die gleiche Weise wie gewohnt; zum Beispiel hat " "<command><option>--buildresult</option></command> keine Auswirkungen." #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:237 msgid "The build inside chroot is ran with the current user outside chroot." msgstr "" "Das Bauen innerhalb der Chroot ist mit dem aktuellen Benutzer außerhalb der " "Chroot ausgeführt worden." #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:243 msgid "Configuration Files" msgstr "Konfigurationsdateien" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:245 msgid "" "It is possible to specify all settings by command-line options. However, for " "typing convenience, it is possible to use a configuration file." msgstr "" "Es ist möglich, alle Einstellungen mit Befehlszeilenoptionen anzugeben. " "Wegen des Eingabekomforts ist es jedoch möglich, eine Konfigurationsdatei zu " "benutzen." #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:250 msgid "" "<filename>/etc/pbuilderrc</filename> and <filename>${HOME}/.pbuilderrc</" "filename> are read in when <command>pbuilder</command> is invoked. The " "possible options are documented in the pbuilderrc.5 manual page." msgstr "" "Wenn <command>pbuilder</command> aufgerufen wird, werden <filename>/etc/" "pbuilderrc</filename> und <filename>${HOME}/.pbuilderrc</filename> gelesen. " "Die möglichen Optionen sind in der Handbuchseite pbuilderrc.5 dokumentiert." #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:257 msgid "" "It is useful to use <option>--configfile</option> option to load up a preset " "configuration file when switching between configuration files for different " "distributions." msgstr "" "Es ist nützlich, die Option <option>--configfile</option> zu benutzen, um " "eine voreingestellte Konfigurationsdatei zu laden, wenn zwischen " "Konfigurationsdateien verschiedener Distributionen gewechselt wird." #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:262 msgid "" "Please note <filename>${HOME}/.pbuilderrc</filename> supersede system " "settings. Caveats is that if you have some configuration, you may need to " "tweak the configuration to work with new versions of pbuilder when upgrading." msgstr "" "Bitte beachten Sie, dass <filename>${HOME}/.pbuilderrc</filename> " "Systemeinstellungen aufhebt. Als Vorsichtsmaßnahme, wenn Sie über irgendeine " "Konfiguration verfügen, müssen Sie die Konfiguration so optimieren, dass sie " "bei einem Upgrade mit neuen Versionen von Pbuilder funktioniert." #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:269 msgid "Building packages as non-root inside the chroot" msgstr "Pakete innerhalb der Chroot bauen ohne Root zu sein" # FIXME s/<command>pbuilder </command>/<command>pbuilder</command>/ 2x #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:271 #, fuzzy #| msgid "" #| "<command>pbuilder</command> requires full root privilege when it is " #| "satisfying the build-dependencies, but most packages do not need root " #| "privilege to build, or even refused to build when they are built as " #| "root. <command>pbuilder </command> can create a user which is only used " #| "inside <command>pbuilder </command> and use that user id when building, " #| "and use the <command>fakeroot</command> command when root privilege is " #| "required." msgid "" "<command>pbuilder</command> requires full root privilege when it is " "satisfying the build-dependencies, but most packages do not need root " "privilege to build, or even refused to build when they are built as root. " "<command>pbuilder</command> can create a user which is only used inside " "<command>pbuilder</command> and use that user id when building, and use the " "<command>fakeroot</command> command when root privilege is required." msgstr "" "<command>pbuilder</command> benötigt volle Root-Rechte, um Build-" "Abhängigkeiten zu erfüllen, aber die meisten Pakete benötigen keine Root-" "Rechte zum Bau oder verweigern sogar die Erstellung, wenn sie als Root " "gebaut werden. <command>pbuilder</command> kann einen Benutzer erstellen, " "der nur innerhalb von <command>pbuilder</command> benutzt wird und diese " "Benutzer-ID beim Bauen verwenden. Wenn Root-Rechte erforderlich sind, wird " "der Befehl <command>fakeroot</command> verwandt." #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:280 msgid "" "BUILDUSERID configuration option should be set to a value for a user id that " "does not already exist on the system, so that it is more difficult for " "packages that are being built with <command>pbuilder</command> to affect the " "environment outside the chroot. When BUILDUSERNAME configuration option is " "also set, <command>pbuilder</command> will use the specified user name and " "fakeroot for building packages, instead of running as root inside chroot." msgstr "" "Die Konfigurationsoption BUILDUSERID sollte auf einen Wert für eine Benutzer-" "ID gesetzt werden, die noch nicht auf dem System existiert, so dass es für " "Pakete, die mit <command>pbuilder</command> erstellt werden, schwieriger " "wird, die Umgebung außerhalb der Chroot zu beeinflussen. Wenn außerdem die " "Konfigurationsoption BUILDUSERNAME gesetzt ist, wird <command>pbuilder</" "command> den angegebenen Benutzernamen verwenden und zum Bauen von Paketen " "Fakeroot verwenden, anstatt es als Root innerhalb der Chroot auszuführen." #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:289 msgid "" "Even when using the fakerooting method, <command>pbuilder</command> will run " "with root privilege when it is required. For example, when installing " "packages to the chroot, <command>pbuilder</command> will run under root " "privilege." msgstr "" "Sogar wenn die Fakeroot-Methode benutzt wird, wird <command>pbuilder</" "command> mit Root-Rechten ausgeführt, wenn dies erforderlich ist. Wenn " "beispielsweise Pakete in die Chroot installiert werden, wird " "<command>pbuilder</command> mit Root-Rechten ausgeführt." # http://de.wikipedia.org/wiki/User_Mode_Linux #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:295 msgid "" "To be able to invoke <command>pbuilder</command> without being root, you " "need to use user-mode-linux, as explained in <xref linkend=\"pbuilder-uml\"/" ">." msgstr "" "Um <command>pbuilder</command> aufrufen zu können ohne Root zu sein, müssen " "Sie User Mode Linux benutzen, wie es unter <xref linkend=\"pbuilder-uml\"/> " "erklärt wird." #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:301 msgid "Using pbuilder for back-porting" msgstr "Pbuilder zur Rückportierung benutzen" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:303 msgid "" "<command>pbuilder</command> can be used for back-porting software from the " "latest Debian distribution to the older stable distribution, by using a " "chroot that contains an image of the older distribution, and building " "packages inside the chroot. There are several points to consider, and due " "to the following reasons, automatic back-porting is usually not possible, " "and manual interaction is required:" msgstr "" "<command>pbuilder</command> kann benutzt werden, um Software von der letzten " "Debian-Distribution auf eine ältere stabile Version zurück zu portieren, " "indem eine Chroot benutzt wird, die ein Image der älteren Distribution " "enthält, und die Pakete innerhalb der Chroot erstellt werden. Es sind " "mehrere Punkte zu beachten und wegen der folgenden Gründe ist automatische " "Rückportierung normalerweise nicht möglich und manuelle Interaktion " "erforderlich:" #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:314 msgid "" "The package from the unstable distribution may depend on packages or " "versions of packages which are only available in unstable. Thus, it may not " "be possible to satisfy Build-Depends: on stable (without additional " "backporting work)." msgstr "" "Das Paket von der Distribution Unstable könnte von Paketen oder " "Paketversionen abhängig sein, die nur in Unstable verfügbar sind. Daher ist " "es vielleicht nicht möglich, Build-Abhängigkeiten zu erfüllen: auf Stable " "(ohne zusätzliche Rückportierungsarbeiten)." #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:321 msgid "" "The stable distribution may have bugs that have been fixed in unstable which " "need to be worked around." msgstr "" "Die Distribution Stable könnte Fehler haben, die in Unstable behoben wurden " "und an denen gearbeitet werden muss." #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:324 msgid "" "The package in the unstable distribution may have problems building even on " "unstable." msgstr "" "Das Paket in der Distribution Unstable könnte sogar Bauprobleme in Unstable " "haben." #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:330 msgid "Mass-building packages" msgstr "Massenhaft Pakete bauen" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:332 msgid "" "<command>pbuilder</command> can be automated, because its operations are non-" "interactive. It is possible to run <command>pbuilder</command> through " "multiple packages non-interactively. Several such scripts are known to " "exist. Junichi Uekawa has been running such a script since 2001, and has " "been filing bugs on packages that fail the test of <command>pbuilder</" "command>. There were several problems with auto-building:" msgstr "" "<command>pbuilder</command> kann automatisiert werden, da seine Operationen " "nicht interaktiv sind. Es ist möglich, <command>pbuilder</command> für " "mehrere Pakete ohne Benutzerinteraktion auszuführen. Es ist bekannt, dass " "mehrere solche Skripte existieren. Junichi Uekawa führt solch ein Skript " "seit 2001 aus und reichte Fehlerberichte gegen Pakete ein, die beim Test von " "<command>pbuilder</command> scheiterten. Es gab mehrere Probleme beim " "automatischen Erstellen:" # http://de.wikipedia.org/wiki/Postgresql #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:343 msgid "" "Build-Dependencies need to install non-interactively, but some packages are " "so broken that they cannot install without interaction (like postgresql)." msgstr "" "Build-Abhängigkeiten mussten interaktiv installiert werden, aber einige " "Pakete waren so kaputt, dass sie nicht ohne einzugreifen installiert werden " "konnten (wie PostgreSQL)." #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:348 msgid "" "When a library package breaks, or gcc/gcj/g++ breaks, or even bison, a large " "number of build failures are reported. (gcj-3.0 which had no \"javac\", " "bison which got more strict, etc.)" msgstr "" "Wenn ein Bibliothekpaket, gcc/gcj/g++ oder sogar Bison kaputtging, wurde " "eine große Zahl gescheiterter Builds gemeldet. (gcj-3.0, das kein »javac« " "hatte, Bison, das sich strenger verhielt, etc.)" #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:354 msgid "Some people were quite hostile against build failure reports." msgstr "" "Einige Leute waren ziemlich verärgert über Berichte fehlgeschlagener Builds." #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:358 msgid "" "Most of the initial bugs have been resolved in the <command>pbuilder</" "command> sweep done around 2002, but these transitional problems which " "affect a large portion of Debian Archive do arise from time to time. " "Regression tests have their values." msgstr "" "Die meisten anfänglichen Fehler wurden im <command>pbuilder</command>-" "Kehraus um das Jahr 2002 gelöst, aber von Zeit zu Zeit treten einige " "Übergangsprobleme auf, die eine große Zahl von Debian-Archiven beeinflussen." "Regressionstests haben ihren Preis." #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:364 msgid "" "A script that was used by Junichi Uekawa in the initial run is now included " "in the <command>pbuilder</command> distribution, as <command>pbuildd.sh</" "command>. It is available in <filename>/usr/share/doc/pbuilder/examples/" "pbuildd/</filename> and its configuration is in <filename>/etc/pbuilder/" "pbuildd-config.sh</filename>. It should be easy enough to set up for people " "who are used to <command>pbuilder</command>. It has been running for quite a " "while, and it should be possible to set the application up on your system " "also. This version of the code is not the most tested, but should function " "as a starter." msgstr "" "Ein Skript, das in der anfänglichen Ausführung von Junichi Uekawa benutzt " "wurde, ist im nun verbreiteten <command>pbuilder</command> als " "<command>pbuildd.sh</command> enthalten. Es liegt in <filename>/usr/share/" "doc/pbuilder/examples/pbuildd/</filename> und seine Konfiguration liegt in " "<filename>/etc/pbuilder/pbuildd-config.sh</filename>. Es sollte einfach " "genug für Leute einzurichten sein, die in <command>pbuilder</command> " "eingearbeitet sind. Es lief ziemlich lange und es sollte möglich sein, es " "auch auf Ihrem System einzurichten. Diese Version des Kodes ist nicht die am " "meisten getestete, sollte aber als Startpunkt funktionieren." #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:374 msgid "To set up pbuildd, there are some points to be aware of." msgstr "Um Pbuildd einzurichten, gibt es einige wissenswerte Punkte." #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:378 msgid "" "A file <filename>./avoidlist</filename> needs to be available with the list " "of packages to avoid building." msgstr "" "Um das Bauen zu verhindern, muss in der Paketliste eine <filename>./" "avoidlist</filename>-Datei verfügbar sein." #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:381 msgid "" "It will try building anything, even packages which are not aimed for your " "architecture." msgstr "" "Es wird versuchen alles zu erstellen, sogar Pakete, die nicht für Ihre " "Architektur gedacht sind." #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:385 msgid "" "Because you are running random build scripts, it is better to use the " "fakeroot option of <command>pbuilder</command>, to avoid running the build " "under root privilege." msgstr "" "Da Sie zufällige Build-Skripte ausführen, ist es besser, die Fakeroot-Option " "von <command>pbuilder</command> zu benutzen, um zu verhindern, dass das " "Bauen mit Root-Rechten ausgeführt wird." #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:390 msgid "" "Because not all builds are guaranteed to finish in a finite time, setting a " "timeout is probably necessary, or pbuildd may stall with a bad build." msgstr "" "Da nicht alle Builds garantiert in einer endlichen Zeit beendet sind, ist es " "wahrscheinlich nötig, eine Zeitüberschreitung festzulegen, ansonsten könnte " "Pbuildd bei einem schlechten Build zum Stillstand kommen." #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:396 msgid "" "Some packages require a lot of disk space, around 2GB seems to be sufficient " "for the largest packages for the time being. If you find otherwise, please " "inform the maintainer of this documentation." msgstr "" "Einige Pakete benötigen viel Plattenplatz. Circa zwei Gigabyte scheinen für " "den Augenblick ausreichend zu sein. Falls Sie etwas anderes entdecken, " "informieren Sie bitte auf Englisch den Betreuer dieser Dokumentation." #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:404 msgid "Auto-backporting scripts" msgstr "Automatische Rückportierungsskripte" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:406 msgid "" "There are some people who use <command>pbuilder</command> to automatically " "back-port a subset of packages to the stable distribution." msgstr "" "Es gibt einige Leute, die <command>pbuilder</command> benutzen, um eine " "Teilmenge von Paketen automatisch auf die Distribution Stable " "zurückzuportieren." #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:410 msgid "" "I would like some information on how people are doing it, I would appreciate " "any feedback or information on how you are doing, or any examples." msgstr "" "Informationen darüber, wie Leute dies tun wären wünschenswert. Rückmeldungen " "oder Informationen, wie dies getan wird oder irgendwelche Beispiele würden " "begrüßt." #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:416 msgid "Using pbuilder for automated testing of packages" msgstr "Pbuilder für das automatisierte Testen von Paketen benutzen" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:418 msgid "" "<command>pbuilder</command> can be used for automated testing of packages. " "It has the feature of allowing hooks to be placed, and these hooks can try " "to install packages inside the chroot, or run them, or whatever else that " "can be done. Some known tests and ideas:" msgstr "" "<command>pbuilder</command> kann benutzt werden, um Pakete automatisch zu " "testen. Es hat die Eigenschaft, das Platzieren von Hooks zu erlauben. Diese " "Hooks können innerhalb der Chroot versuchen, Pakete zu installieren, sie " "auszuführen oder was auch immer sonst noch getan werden kann. Einige " "bekannte Tests und Ideen:" # FIXME upgrade after remove? #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:426 #, fuzzy #| msgid "" #| "Automatic install-remove-upgrade-remove-install-purge-upgrade-purge test-" #| "suite (distributed as an example, <filename>B91dpkg-i</filename>), or " #| "just check that everything installs somewhat " #| "(<filename>execute_installtest.sh</filename>)." msgid "" "Automatic install-remove-install-purge-upgrade-remove-upgrade-purge test-" "suite (distributed as an example, <filename>B91dpkg-i</filename>), or just " "check that everything installs somewhat (<filename>execute_installtest.sh</" "filename>)." msgstr "" "Automatische Folge von installieren, entfernen, Upgrade durchführen, " "entfernen, installieren, vollständig entfernen, Upgrade durchführen und " "vollständig entfernen (als Beispiel <filename>B91dpkg-i</filename> verteilt) " "oder nur prüfen, ob alles irgendetwas installiert " "(<filename>execute_installtest.sh</filename>)." #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:431 msgid "" "Automatically running lintian (distributed as an example in <filename>/usr/" "share/doc/pbuilder/examples/B90lintian</filename>)." msgstr "" "Automatisch Lintian ausführen (verteilt als Beispiel in <filename>/usr/share/" "doc/pbuilder/examples/B90lintian</filename>)." #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:435 msgid "" "Automatic debian-test of the package? The debian-test package has been " "removed from Debian. A <command>pbuilder</command> implementation can be " "found as debian/pbuilder-test directory, implemented through B92test-pkg " "script." msgstr "" "Automatischer Debian-Test des Pakets? Das Paket debian-test wurde aus Debian " "entfernt. Eine <command>pbuilder</command>-Implementierung kann als debian/" "pbuilder-test-Verzeichnis gefunden werden, implementiert durch das Skript " "B92test-pkg." #. type: Content of: <book><chapter><sect1><para><footnote><para> #: pbuilder-doc.xml:444 msgid "" "It is possible to specify <command>--hookdir /usr/share/doc/pbuilder/" "examples</command> command-line option to include all example hooks as well." msgstr "" "Es ist möglich, die Befehlszeilenoption <command>--hookdir /usr/share/doc/" "pbuilder/examples</command> anzugeben, um ebenfalls alle Beispiel-Hooks " "einzufügen." #. type: Content of: <book><chapter><sect1><para><footnote><para> #: pbuilder-doc.xml:452 msgid "See run-parts(8). For example, no '.' in file names!" msgstr "Siehe run-parts(8). Zum Beispiel kein ».« in Dateinamen!" # FIXME s/is number/is a number/ #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:442 #, fuzzy #| msgid "" #| "To use B92test-pkg script, first, add it to your hook directory. " #| "<placeholder type=\"footnote\" id=\"0\"/>. The test files are shell " #| "scripts placed in <filename>debian/pbuilder-test/NN_name</filename> " #| "(where NN is number) following run-parts standard<placeholder type=" #| "\"footnote\" id=\"1\"/> for file names. After a successful build, " #| "packages are first tested for installation and removal, and then each " #| "test is ran inside the chroot. The current directory is the top " #| "directory of the source-code. This means you can expect to be able to " #| "use ./debian/ directory from inside your scripts." msgid "" "To use B92test-pkg script, first, add it to your hook directory. " "<placeholder type=\"footnote\" id=\"0\"/>. The test files are shell scripts " "placed in <filename>debian/pbuilder-test/NN_name</filename> (where NN is a " "number) following run-parts standard<placeholder type=\"footnote\" id=\"1\"/" "> for file names. After a successful build, packages are first tested for " "installation and removal, and then each test is ran inside the chroot. The " "current directory is the top directory of the source-code. This means you " "can expect to be able to use ./debian/ directory from inside your scripts." msgstr "" "Um das Skript B92test-pkg zu benutzen, fügen Sie es zuerst Ihrem Hook-" "Verzeichnis hinzu. <placeholder type=\"footnote\" id=\"0\"/>. Die " "Testdateien sind Shell-Skripte, die in <filename>debian/pbuilder-test/" "NN_name</filename> liegen (wobei NN eine Zahl ist) und dem Run-parts-" "Standard für Dateinamen entsprechen <placeholder type=\"footnote\" id=\"1\"/" ">. Nachdem sie erfolgreich gebaut wurden, werden Pakete zuerst für das " "Installieren und Entfernen getestet und dann wird jeder Test innerhalb der " "Chroot ausgeführt. Das aktuelle Verzeichnis ist das oberste Verzeichnis des " "Quellkodes. Das bedeutet, dass Sie voraussetzen können, dass das " "Verzeichnis ./debian/ aus Ihren Skripten heraus benutzt werden kann." # FIXME s/</filename>/</filename>./ #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:463 #, fuzzy #| msgid "" #| "Example scripts for use with pbuilder-test can be found in <filename>/usr/" #| "share/doc/pbuilder/examples/pbuilder-test</filename>" msgid "" "Example scripts for use with pbuilder-test can be found in <filename>/usr/" "share/doc/pbuilder/examples/pbuilder-test</filename>." msgstr "" "Beispielskripte, die mit Pbuilder-test benutzt werden können, können in " "<filename>/usr/share/doc/pbuilder/examples/pbuilder-test</filename> gefunden " "werden." #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:468 msgid "Using pbuilder for testing builds with alternate compilers" msgstr "Pbuilder benutzen, um Builds mit alternativen Kompilern zu testen" #. type: Content of: <book><chapter><sect1><para><screen> #: pbuilder-doc.xml:484 #, no-wrap msgid "" "EXTRAPACKAGES=\"pentium-builder gcc-3.2 g++-3.2\"\n" "export DEBIAN_BUILDARCH=athlon\n" "export DEBIAN_BUILDGCCVER=3.2" msgstr "" "EXTRAPACKAGES=\"pentium-builder gcc-3.2 g++-3.2\"\n" "export DEBIAN_BUILDARCH=athlon\n" "export DEBIAN_BUILDGCCVER=3.2" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:470 msgid "" "Most packages are compiled with <command>gcc</command> or <command>g++</" "command> and using the default compiler version, which was gcc 2.95 for " "Debian GNU/Linux 3.0 (i386). However, Debian 3.0 was distributed with other " "compilers, under package names such as <command>gcc-3.2</command> for gcc " "compiler version 3.2. It was therefore possible to try compiling packages " "against different compiler versions. <command>pentium-builder</command> " "provides an infrastructure for using a different compiler for building " "packages than the default gcc, by providing a wrapper script called gcc " "which calls the real gcc. To use <command>pentium-builder</command> in " "<command>pbuilder</command>, it is possible to set up the following in the " "configuration: <placeholder type=\"screen\" id=\"0\"/>" msgstr "" "Die meisten Pakete werden mit <command>gcc</command> oder <command>g++</" "command> kompiliert und benutzen die Standardkompilerversion. Diese war für " "Debian GNU/Linux 3.0 (i386) Gcc 2.95. Debian 3.0 wurde jedoch mit anderen " "Kompilern unter Paketnamen wie <command>gcc-3.2</command> für die Gcc-" "Kompilerversion 3.2 weitergegeben. Es war daher möglich, zu versuchen, " "Pakete mit verschiedenen Kompilerversionen zu kompilieren. <command>pentium-" "builder</command> stellt eine Infrastruktur bereit, um einen anderen " "Kompiler als den vorgegebenenen Gcc zum Bau von Paketen zu benutzen, indem " "es ein Wrapper-Skript bereitstellt, das Gcc heißt und den echten Gcc " "aufruft. Um <command>pentium-builder</command> in <command>pbuilder</" "command> zu benutzen, ist es möglich das Folgende in der Konfiguration " "einzurichten: <placeholder type=\"screen\" id=\"0\"/>" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:489 msgid "" "It will instruct <command>pbuilder</command> to install the <command>pentium-" "builder</command> package and also the GCC 3.2 compiler packages inside the " "chroot, and set the environment variables required for <command>pentium-" "builder</command> to function." msgstr "" "Es wird <command>pbuilder</command> anweisen, das Paket <command>pentium-" "builder</command> und außerdem die GCC 3.2-Kompilerpakete innerhalb der " "Chroot zu installieren und die zum Funktionieren von <command>pentium-" "builder</command> benötigten Umgebungsvariablen zu setzen." #. type: Content of: <book><chapter><title> #: pbuilder-doc.xml:497 msgid "Using User-mode-linux with pbuilder" msgstr "User Mode Linux mit Pbuilder benutzen" #. type: Content of: <book><chapter><para> #: pbuilder-doc.xml:499 msgid "" "It is possible to use user-mode-linux by invoking <command>pbuilder-user-" "mode-linux</command> instead of <command>pbuilder</command>. " "<command>pbuilder-user-mode-linux</command> doesn't require root privileges, " "and it uses the copy-on-write (COW) disk access method of <command>User-mode-" "linux</command> which typically makes it much faster than the traditional " "<command>pbuilder</command>." msgstr "" "Es ist möglich, User Mode Linux zu benutzen, indem <command>pbuilder-user-" "mode-linux</command> anstelle von <command>pbuilder</command> aufgerufen " "wird. <command>pbuilder-user-mode-linux</command> benötigt keine Root-Rechte " "und benutzt die Plattenzugriffsmethode Copy-on-write (COW) von <command>User-" "mode-linux</command>, die normalerweise wesentlich schneller ist als das " "traditionelle <command>pbuilder</command>." #. type: Content of: <book><chapter><para> #: pbuilder-doc.xml:509 msgid "" "<command>User-mode-linux</command> is a somewhat less proven platform than " "the standard Unix tools which <command>pbuilder</command> relies on " "(<command>chroot</command>, <command>tar</command>, and <command>gzip</" "command>) but mature enough to support <command>pbuilder-user-mode-linux</" "command> since its version 0.59. And since then, <command>pbuilder-user-" "mode-linux</command> has seen a rapid evolution." msgstr "" "<command>User-mode-linux</command> ist eine etwas weniger bewährte Plattform " "als die Standard-Unix-Werkzeuge, auf denen <command>pbuilder</command> " "beruht (<command>chroot</command>, <command>tar</command> und <command>gzip</" "command>), aber ausgereift genug, um <command>pbuilder-user-mode-linux</" "command> seit der Version 0.59 zu unterstützen. Und seitdem hat " "<command>pbuilder-user-mode-linux</command> eine schnelle Entwicklung " "durchlebt." #. type: Content of: <book><chapter><para> #: pbuilder-doc.xml:520 msgid "" "The configuration of <command>pbuilder-user-mode-linux</command> goes in " "three steps:" msgstr "" "Die Konfiguration von <command>pbuilder-user-mode-linux</command> erfolgt in " "folgenden Schritten:" #. type: Content of: <book><chapter><para><itemizedlist><listitem><para> #: pbuilder-doc.xml:524 msgid "Configuration of user-mode-linux" msgstr "Konfiguration von User Mode Linux" #. type: Content of: <book><chapter><para><itemizedlist><listitem><para> #: pbuilder-doc.xml:527 msgid "Configuration of rootstrap" msgstr "Konfiguration von Rootstrap" #. type: Content of: <book><chapter><para><itemizedlist><listitem><para> #: pbuilder-doc.xml:530 msgid "Configuration of pbuilder-uml" msgstr "Konfiguration von Pbuilder-uml" #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:535 msgid "Configuring user-mode-linux" msgstr "User Mode Linux konfigurieren" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:537 msgid "" "user-mode-linux isn't completely trivial to set up. It would probably be " "useful to acquaint yourself with it a bit before attempting to use " "<command>rootstrap</command> or <command>pbuilder-user-mode-linux</" "command>. For details, read <filename>/usr/share/doc/uml-utilities/README." "Debian</filename> and the <command>user-mode-linux</command> documentation. " "(It's in a separate package, user-mode-linux-doc.)" msgstr "" "Die Einrichtung von User Mode Linux ist nicht ganz einfach. Es wäre " "wahrscheinlich nützlich, wenn Sie sich selbst ein wenig darüber informieren, " "bevor Sie versuchen <command>rootstrap</command> oder <command>pbuilder-user-" "mode-linux</command> zu benutzen. Um Einzelheiten zu erfahren, lesen Sie " "<filename>/usr/share/doc/uml-utilities/README.Debian</filename> und die " "Dokumentation von <command>user-mode-linux</command>. (Sie liegt in einem " "gesonderten Paket, user-mode-linux-doc.)" # http://en.wikipedia.org/wiki/Slirp #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:547 msgid "" "<command>user-mode-linux</command> requires the user to be in the uml-net " "group in order to configure the network unless you are using slirp." msgstr "" "<command>user-mode-linux</command> erfordert, dass der Benutzer der Gruppe " "»uml-net« angehört, um das Netzwerk zu konfigurieren, außer wenn Sie Slirp " "benutzen." #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:552 msgid "" "If you compile your own kernel, you may want to verify that you enable TUN/" "TAP support, and you might want to consider the SKAS patch." msgstr "" "Falls Sie Ihren eigenen Kernel kompilieren, möchten Sie möglicherweise " "überprüfen, ob Sie Unterstützung für TUN/TAP aktiviert haben und den SKAS-" "Patch betrachten." #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:558 msgid "Configuring rootstrap" msgstr "Rootstrap konfigurieren" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:560 msgid "" "<command>rootstrap</command> is a wrapper around debootstrap. It creates a " "Debian disk image for use with UML. To configure rootstrap, there are " "several requirements." msgstr "" "<command>rootstrap</command> ist ein Wrapper um Debootstrap. Er erstellt ein " "Debian-Platten-Image zur Benutzung mit UML. Um Rootstrap zu konfigurieren, " "gibt es mehrere Anforderungen." #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:567 msgid "Install the rootstrap package." msgstr "Das Rootstrap-Paket installieren" #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para><screen> #: pbuilder-doc.xml:573 #, no-wrap msgid "adduser dancer uml-net" msgstr "adduser dancer uml-net" #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:571 msgid "" "TUN/TAP only: add the user to the uml-net group to allow access to the " "network <placeholder type=\"screen\" id=\"0\"/>" msgstr "" "Nur TUN/TAP: den Benutzer zur Gruppe »uml-net« hinzufügen, um " "Netzwerkzugriff zu gewähren <placeholder type=\"screen\" id=\"0\"/>" #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:577 msgid "" "TUN/TAP only: Check that the kernel supports the TUN/TAP interface, or " "recompile the kernel if necessary." msgstr "" "Nur TUN/TAP: prüfen, ob der Kernel die TUN/TAP-Schnittstelle unterstützt " "oder, falls nötig, den Kernel neu komplilieren." #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para><screen> #: pbuilder-doc.xml:588 #, no-wrap msgid "" "transport=tuntap\n" "interface=eth0\n" "gateway=192.168.1.1\n" "mirror=http://192.168.1.2:8081/debian\n" "host=192.168.1.198\n" "uml=192.168.1.199\n" "netmask=255.255.255.0" msgstr "" "transport=tuntap\n" "interface=eth0\n" "gateway=192.168.1.1\n" "mirror=http://192.168.1.2:8081/debian\n" "host=192.168.1.198\n" "uml=192.168.1.199\n" "netmask=255.255.255.0" #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:583 msgid "" "Set up <filename>/etc/rootstrap/rootstrap.conf</filename>. For example, if " "the current host is 192.168.1.2, changing following entries to something " "like this seems to work. <placeholder type=\"screen\" id=\"0\"/> Some " "experimentation with configuration and running <command>rootstrap ~/test." "uml</command> to actually test it would be handy." msgstr "" "<filename>/etc/rootstrap/rootstrap.conf</filename> einrichten. Falls der " "aktuelle Rechner beispielsweise 192.168.1.2 ist, scheint es zu " "funktionieren, die folgenden Einträge auf etwas wie das Folgende zu ändern. " "<placeholder type=\"screen\" id=\"0\"/> Einige Experimente mit der " "Konfiguration und das Ausführen von <command>rootstrap ~/test.uml</command>, " "um es tatsächlich zu testen, wären praktisch." #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:600 msgid "" "Using slirp requires less configuration. The default configuration comes " "with a working example." msgstr "" "Die Benutzung vom Slirp erfordert weniger Konfiguration. Die " "Standardkonfiguration bringt ein funktionierendes Beispiel mit." #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:607 msgid "Configuring pbuilder-uml" msgstr "Pbuilder-uml konfigurieren" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:609 msgid "The following needs to happen:" msgstr "Das Folgende muss geschehen:" #. type: Content of: <book><chapter><sect1><para><itemizedlist><listitem><para> #: pbuilder-doc.xml:612 msgid "Install the pbuilder-uml package." msgstr "Installation des Pakets pbuilder-uml" #. type: Content of: <book><chapter><sect1><para><itemizedlist><listitem><para><screen> #: pbuilder-doc.xml:620 #, no-wrap msgid "" "MY_ETH0=tuntap,,,192.168.1.198\n" "UML_IP=192.168.1.199\n" "UML_NETMASK=255.255.255.0\n" "UML_NETWORK=192.168.1.0\n" "UML_BROADCAST=255.255.255.255\n" "UML_GATEWAY=192.168.1.1\n" "PBUILDER_UML_IMAGE=\"/home/dancer/uml-image\"" msgstr "" "MY_ETH0=tuntap,,,192.168.1.198\n" "UML_IP=192.168.1.199\n" "UML_NETMASK=255.255.255.0\n" "UML_NETWORK=192.168.1.0\n" "UML_BROADCAST=255.255.255.255\n" "UML_GATEWAY=192.168.1.1\n" "PBUILDER_UML_IMAGE=\"/home/dancer/uml-image\"" #. type: Content of: <book><chapter><sect1><para><itemizedlist><listitem><para> #: pbuilder-doc.xml:616 msgid "" "Set up the configuration file <filename>/etc/pbuilder/pbuilder-uml.conf</" "filename> in the following manner. It will be different for slirp. " "<placeholder type=\"screen\" id=\"0\"/> Also, it needs to match the " "rootstrap configuration." msgstr "" "Einrichten der Konfigurationsdatei <filename>/etc/pbuilder/pbuilder-uml." "conf</filename> auf die folgende Weise. Sie unterscheidet sich bei Slirp. " "<placeholder type=\"screen\" id=\"0\"/> Außerdem muss sie zur Rootstrap-" "Konfiguration passen." #. type: Content of: <book><chapter><sect1><para><itemizedlist><listitem><para> #: pbuilder-doc.xml:632 msgid "" "Make sure BUILDPLACE is writable by the user. Change BUILDPLACE in the " "configuration file to a place where the user has access." msgstr "" "Stellen Sie sicher, dass der Benutzer in BUILDPLACE schreiben darf. Ändern " "Sie BUILDPLACE in der Konfigurationsdatei auf eine Stelle, auf die der " "Benutzer zugreifen kann." #. type: Content of: <book><chapter><sect1><para><itemizedlist><listitem><para> #: pbuilder-doc.xml:638 msgid "" "Run <command>pbuilder-user-mode-linux <option>create --distribution sid</" "option></command> to create the image." msgstr "" "Führen Sie <command>pbuilder-user-mode-linux <option>create --distribution " "sid</option></command> aus, um das Image zu erstellen." #. type: Content of: <book><chapter><sect1><para><itemizedlist><listitem><para> #: pbuilder-doc.xml:641 msgid "Try running <command>pbuilder-user-mode-linux build</command>." msgstr "" "Versuchen Sie <command>pbuilder-user-mode-linux build</command> auszuführen." #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:647 msgid "Considerations for running pbuilder-user-mode-linux" msgstr "Betrachtungen, um Pbuilder-user-mode-linux auszuführen" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:649 msgid "" "<command>pbuilder-user-mode-linux</command> emulates most of " "<command>pbuilder</command>, but there are some differences." msgstr "" "<command>pbuilder-user-mode-linux</command> emuliert <command>pbuilder</" "command> größtenteils, es gibt aber einige Unterschiede." #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:655 msgid "" "<command>pbuilder-user-mode-linux</command> does not support all options of " "<command>pbuilder</command> properly yet. This is a problem, and will be " "addressed as specific areas are discovered." msgstr "" "<command>pbuilder-user-mode-linux</command> unterstützt noch nicht alle " "Optionen von <command>pbuilder</command> ordentlich. Dies ist ein Problem " "und wird angesprochen, während besondere Bereiche entdeckt werden." #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:662 msgid "" "/tmp is handled differently inside <command>pbuilder-user-mode-linux</" "command>. In <command>pbuilder-user-mode-linux</command>, <filename>/tmp</" "filename> is mounted as tmpfs inside UML, so accessing files under " "<filename>/tmp</filename> from outside user-mode-linux does not work. It " "affects options like <command><option>--configfile</option></command>, and " "when trying to build packages placed under <filename>/tmp</filename>." msgstr "" "/tmp wird innerhalb von <command>pbuilder-user-mode-linux</command> " "unterschiedlich gehandhabt. In <command>pbuilder-user-mode-linux</command> " "wird <filename>/tmp</filename> als Tmpfs innerhalb UML eingehängt, so dass " "der Zugriff auf Dateien unter <filename>/tmp</filename> von außerhalb des " "User Mode Linux nicht funktioniert. Es beeinflusst Optionen wie " "<command><option>--configfile</option></command> und wenn versucht wird, " "Pakete zu bauen, die unter <filename>/tmp</filename> liegen." #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:676 msgid "Parallel running of pbuilder-user-mode-linux" msgstr "Paralleles Ausführen von Pbuilder-user-mode-linux" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:678 msgid "" "To run <command>pbuilder-user-mode-linux</command> in parallel on a system, " "there are a few things to bear in mind." msgstr "" "Um <command>pbuilder-user-mode-linux</command> parallel auf einem System " "auszuführen, sind ein paar Dinge zu berücksichtigen." #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:683 msgid "" "The create and update methods must not be run when a build is in progress, " "or the COW file will be invalidated." msgstr "" "Die Methoden zum Erstellen und Aktualisieren dürfen nicht laufen, wenn ein " "Build-Prozess läuft oder eine COW-Datei entkräftet wird." #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para><screen> #: pbuilder-doc.xml:694 #, no-wrap msgid "" "for IP in 102 103 104 105; do\n" " xterm -e pbuilder-user-mode-linux build --uml-ip 192.168.0.$IP \\\n" " 20030107/whizzytex_1.1.1-1.dsc &\n" "done" msgstr "" "for IP in 102 103 104 105; do\n" " xterm -e pbuilder-user-mode-linux build --uml-ip 192.168.0.$IP \\\n" " 20030107/whizzytex_1.1.1-1.dsc &\n" "done" #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:688 msgid "" "If you are not using slirp, user-mode-linux processes which are running in " "parallel need to have different IP addresses. Just trying to run the " "<command>pbuilder-user-mode-linux</command> several times will result in " "failure to access the network. But something like the following will work: " "<placeholder type=\"screen\" id=\"0\"/> When using slirp, this problem does " "not exist." msgstr "" "Falls Sie Slirp nicht benutzen, müssen parallel laufende Prozesse von User " "Mode Linux unterschiedliche IP-Adressen haben. Der reine Versuch, " "<command>pbuilder-user-mode-linux</command> mehrmals auszuführen, wird dazu " "führen, dass der Netzwerkzugriff fehlschlägt. Aber etwas wie das Folgende " "wird funktionieren: <placeholder type=\"screen\" id=\"0\"/> Wenn Slirp " "benutzt wird, besteht dieses Problem nicht." #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:704 msgid "" "Using pbuilder-user-mode-linux as a wrapper script to start up a virtual " "machine" msgstr "" "Pbuilder-user-mode-linux als Wrapper-Skript benutzen, um eine virtuelle " "Maschine zu starten" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:706 msgid "" "It is possible to use <command>pbuilder-user-mode-linux</command> for other " "uses than just building Debian packages. <command>pbuilder-user-mode-linux " "<option>login</option></command> will let a user use a shell inside the user-" "mode-linux <command>pbuilder</command> base image, and <command>pbuilder-" "user-mode-linux <option>execute</option></command> will allow the user to " "execute a script inside the image." msgstr "" "Es ist möglich, <command>pbuilder-user-mode-linux</command> für andere " "Zwecke als nur das Bauen von Debian-Paketen zu verwenden. <command>pbuilder-" "user-mode-linux <option>login</option></command> wird einem Benutzer " "ermöglichen, eine Shell innerhalb des <command>pbuilder</command>-Basis-" "Images von User Mode Linux zu verwenden und <command>pbuilder-user-mode-" "linux <option>execute</option></command> wird dem Benutzer ermöglichen, ein " "Skript innerhalb des Images auszuführen." #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:717 msgid "" "You can use the script to install ssh and add a new user, so that it is " "possible to access inside the user-mode-linux through ssh." msgstr "" "Sie können das Skript benutzen, um SSH zu installieren und einen neuen " "Benutzer hinzuzufügen, so dass SSH-Zugriffe innerhalb von User Mode Linux " "möglich sind." #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:721 msgid "" "Note that it is not possible to use a script from <filename>/tmp</filename> " "due to the way <command>pbuilder-user-mode-linux</command> mounts a tmpfs at " "<filename>/tmp</filename>." msgstr "" "Beachten Sie, dass es nicht möglich ist, ein Skript von <filename>/tmp</" "filename> zu benutzen, da <command>pbuilder-user-mode-linux</command> ein " "Tmpfs unter <filename>/tmp</filename> einhängt." #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:727 msgid "" "The following example script may be useful in starting a sshd inside user-" "mode-linux." msgstr "" "Das folgende Beispielskript könnte nützlich sein, um einen Sshd innerhalb " "von User Mode Linux zu starten." #. type: Content of: <book><chapter><sect1><screen> #: pbuilder-doc.xml:731 #, no-wrap msgid "" "#!/bin/bash\n" "\n" "apt-get install -y ssh xbase-clients xterm\n" "echo \"enter root password\"\n" "passwd\n" "cp /etc/ssh/sshd_config{,-}\n" "sed 's/X11Forwarding.*/X11Forwarding yes/' /etc/ssh/sshd_config- > /etc/ssh/sshd_config\n" "\n" "/etc/init.d/ssh restart\n" "ifconfig\n" "echo \"Hit enter to finish\"\n" "read" msgstr "" "#!/bin/bash\n" "\n" "apt-get install -y ssh xbase-clients xterm\n" "echo \"Geben Sie das Root-Passwort ein\"\n" "passwd\n" "cp /etc/ssh/sshd_config{,-}\n" "sed 's/X11Forwarding.*/X11Forwarding yes/' /etc/ssh/sshd_config- > /etc/ssh/sshd_config\n" "\n" "/etc/init.d/ssh restart\n" "ifconfig\n" "echo \"Zum Beenden Eingabetaste drücken\"\n" "read" #. type: Content of: <book><chapter><title> #: pbuilder-doc.xml:746 msgid "Frequently asked questions" msgstr "Häufig gestellte Fragen" #. type: Content of: <book><chapter><para> #: pbuilder-doc.xml:749 msgid "" "Here, known problems and frequently asked questions are documented. This " "portion was initially available in README.Debian file, but moved here." msgstr "" "Hier sind bekannte Probleme und häufig gestellte Fragen dokumentiert. Dieser " "Teil war anfangs in der Datei README.Debian verfügbar, wurde aber hierher " "verschoben." #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:754 msgid "pbuilder create fails" msgstr "Fehlschlagen des Erstellens mit Pbuilder" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:756 msgid "" "It often happens that <command>pbuilder</command> cannot create the latest " "chroot. Try upgrading <command>pbuilder</command> and debootstrap. It is " "currently only possible to create software that handles the past. Future " "prediction is a feature which may be added later after we have become " "comfortable with the past." msgstr "" "Es kommt häufig vor, dass <command>pbuilder</command> die letzte Chroot " "nicht erstellen kann. Versuchen Sie ein Upgrade von <command>pbuilder</" "command> und Debootstrap durchzuführen. Es ist derzeit nicht möglich, " "Software zu erstellen, die die Vergangenheit handhabt. Zukunftsvorhersage " "ist eine Funktion, die später hinzugefügt werden könnte, wenn wir uns mit " "der Vergangenheit arrangieren können." #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:763 msgid "" "There are people who occasionally back port debootstrap to stable versions; " "hunt for them." msgstr "" "Es gibt Leute, die gelegentlich Debootstrap auf stabile Versionen " "zurückportieren; jagen Sie sie." #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:767 msgid "" "When there are errors with the debootstrap phase, the debootstrap script " "needs to be fixed. <command>pbuilder</command> does not provide a way to " "work around debootstrap." msgstr "" "Wenn in der Debootstrap-Phase Fehler auftreten, muss das Debootstrap-Skript " "repariert werden. <command>pbuilder</command> stellt keine Möglichkeit " "bereit, Debootstrap zu umgehen." # mount - o bind Einhängepunkt Verzeichnis #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:773 msgid "Directories that cannot be bind-mounted" msgstr "Verzeichnisse, bei denen kein Bind-Mount möglich ist" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:775 msgid "" "Because of the way <command>pbuilder</command> works, there are several " "directories which cannot be bind-mounted when running <command>pbuilder</" "command>. The directories include <filename>/tmp</filename>, <filename>/var/" "cache/pbuilder</filename>, and system directories such as <filename>/etc</" "filename> and <filename>/usr</filename>. The recommendation is to use " "directories under the user's home directory for bind-mounts." msgstr "" "Aufgrund der Weise, wie <command>pbuilder</command> arbeitet, gibt es viele " "Verzeichnisse, bei denen ein Bind-Mount beim Ausführen von " "<command>pbuilder</command> nicht möglich ist. Die Verzeichnisse umfassen " "<filename>/tmp</filename>, <filename>/var/cache/pbuilder</filename> und " "Systemverzeichnisse wie <filename>/etc</filename> und <filename>/usr</" "filename>. Es wird empfohlen, Verzeichnisse unter dem Home-Verzeichnis des " "Benutzers für Bind-Mounts zu verwenden." #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:786 msgid "Logging in to pbuilder to investigate build failure" msgstr "In Pbuilder anmelden, um Fehlschlagen des Builds zu untersuchen" # FIXME s/script are/scripts are/ #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:788 #, fuzzy #| msgid "" #| "It is possible to invoke a shell session after a build failure. Example " #| "hook script are provided as <filename>C10shell</filename> and " #| "<filename>C11screen</filename> scripts. C10shell script will start bash " #| "inside chroot, and C11screen script will start GNU screen inside the " #| "chroot." msgid "" "It is possible to invoke a shell session after a build failure. Example " "hook scripts are provided as <filename>C10shell</filename> and " "<filename>C11screen</filename> scripts. C10shell script will start bash " "inside chroot, and C11screen script will start GNU screen inside the chroot." msgstr "" "Es ist möglich, nach dem Scheitern eines Builds eine Shell-Sitzung " "aufzurufen. Beispiel-Hook-Skripte werden als <filename>C10shell</filename> " "und <filename>C11screen</filename> bereitgestellt. Das Skript C10shell wird " "die Bash innerhalb der Chroot starten und das Skript C11screen wird den GNU-" "Bildschirm innerhalb der Chroot starten." #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:797 msgid "Logging in to pbuilder to modify the environment" msgstr "In Pbuilder anmelden, um die Umgebung zu ändern" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:799 msgid "" "It is sometimes necessary to modify the chroot environment. <command>login</" "command> will remove the contents of the chroot after logout. It is " "possible to invoke a shell using hook scripts. <command>pbuilder update</" "command> executes 'E' scripts, and a sample for invoking a shell is provided " "as <filename>C10shell</filename>." msgstr "" "Manchmal ist es notwendig, die Chroot-Umgebung zu verändern. <command>login</" "command> wird den Inhalt der Chroot nach dem Abmelden entfernen. Es ist " "möglich unter Benutzung von Hook-Skripten eine Shell aufzurufen. " "<command>pbuilder update</command> führt »E«-Skripte aus und ruft " "beispielsweise eine Shell auf, die als <filename>C10shell</filename> " "bereitgestellt wird." #. type: Content of: <book><chapter><sect1><screen> #: pbuilder-doc.xml:807 #, no-wrap msgid "" "$ mkdir ~/loginhooks\n" "$ cp C10shell ~/loginhooks/E10shell\n" "$ sudo pbuilder update --hookdir ~/loginhooks/E10shell" msgstr "" "$ mkdir ~/loginhooks\n" "$ cp C10shell ~/loginhooks/E10shell\n" "$ sudo pbuilder update --hookdir ~/loginhooks/E10shell" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:811 msgid "" "It is also possible to add <option>--save-after-exec</option> and/or " "<option>--save-after-login</option> options to the <command>pbuilder login</" "command> session to accomplish the goal. It is possible to add the " "<option>--uml-login-nocow</option> option to <command>pbuilder-user-mode-" "linux <option>login</option></command> session as well." msgstr "" "Außerdem ist es möglich, die Optionen <option>--save-after-exec</option> und/" "oder <option>--save-after-login</option> zu der <command>pbuilder login</" "command>-Sitzung hinzuzufügen, um das Ziel zu erreichen. Es ist ebenfalls " "möglich, die Option <option>--uml-login-nocow</option> zur Sitzung von " "<command>pbuilder-user-mode-linux <option>login</option></command> " "hinzuzufügen." #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:821 msgid "Setting BUILDRESULTUID for sudo sessions" msgstr "BUILDRESULTUID für Sudo-Sitzungen setzen" #. type: Content of: <book><chapter><sect1><para><screen> #: pbuilder-doc.xml:824 #, no-wrap msgid "BUILDRESULTUID=$SUDO_UID" msgstr "BUILDRESULTUID=$SUDO_UID" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:823 msgid "" "It is possible to set <placeholder type=\"screen\" id=\"0\"/> in pbuilderrc " "to set the proper BUILDRESULTUID when using <command>sudo</command>." msgstr "" "Es ist möglich, <placeholder type=\"screen\" id=\"0\"/> in Pbuilderrc " "einzustellen, um BUILDRESULTUID angemessen zu setzen, wenn <command>sudo</" "command> benutzt wird." #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:829 msgid "Notes on usage of $TMPDIR" msgstr "Anmerkungen zum Gerauch von $TMPDIR" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:831 msgid "" "If you are setting $TMPDIR to an unusual value, of other than <filename>/" "tmp</filename>, you will find that some errors may occur inside the chroot, " "such as <command>dpkg-source</command> failing." msgstr "" "Falls Sie $TMPDIR auf einen unüblichen Wert setzen, der von <filename>/tmp</" "filename> abweicht, werden Sie bemerken, dass einige Fehler, wie das " "Scheitern von <command>dpkg-source</command>, innerhalb der Chroot auftreten." #. type: Content of: <book><chapter><sect1><para><screen> #: pbuilder-doc.xml:837 #, no-wrap msgid "export TMPDIR=/tmp" msgstr "export TMPDIR=/tmp" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:835 msgid "" "There are two options, you may install a hook to create that directory, or " "set <placeholder type=\"screen\" id=\"0\"/> in pbuilderrc. Take your pick." msgstr "" "Es gibt zwei Optionen – Sie können einen Hook installieren, um dieses " "Verzeichnis zu erstellen oder <placeholder type=\"screen\" id=\"0\"/> in " "Pbuilderrc setzen. Suchen Sie sich eine aus." #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:841 msgid "" "An example script is provided as <filename>examples/D10tmp</filename> with " "<command>pbuilder</command>." msgstr "" "Ein Beispielskript wird als <filename>examples/D10tmp</filename> mit " "Pbuilder bereitgestellt." #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:846 msgid "" "Creating a shortcut for running <command>pbuilder</command> with a specific " "distribution" msgstr "" "Ein Kürzel erstellen, um <command>pbuilder</command> mit einer speziellen " "Distribution auszuführen." #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:848 msgid "" "When working with multiple chroots, it would be nice to work with scripts " "that reduce the amount of typing. An example script <filename>pbuilder-" "distribution.sh</filename> is provided as an example. Invoking the script " "as <filename>pbuilder-squeeze</filename> will invoke <command>pbuilder</" "command> with a squeeze chroot." msgstr "" "Wenn mit mehreren Chroots gearbeitet wird, wäre es nett, mit Skripten zu " "arbeiten, um weniger tippen zu müssen. Ein Beispielskript <filename>pbuilder-" "distribution.sh</filename> wird als Muster bereitgestellt. Der Aufruf des " "Skripts mit <filename>pbuilder-squeeze</filename> wird <command>pbuilder</" "command> mit einer Squeeze-Chroot aufrufen." #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:857 msgid "" "Using environmental variables for running <command>pbuilder</command> for " "specific distribution" msgstr "" "Umgebungsvariablen benutzen, um <command>pbuilder</command> für eine " "spezielle Distribution auszuführen." #. type: Content of: <book><chapter><sect1><para><footnote><para> #: pbuilder-doc.xml:861 msgid "This part of the documentation contributed by Andres Mejia" msgstr "Dieser Teil der Dokumentation wurde von Andres Mejia beigetragen." #. type: Content of: <book><chapter><sect1><para><footnote><para> #: pbuilder-doc.xml:863 msgid "" "This example was taken from a wiki (<ulink url=\"https://wiki.ubuntu.com/" "PbuilderHowto\">https://wiki.ubuntu.com/PbuilderHowto</ulink>)." msgstr "" "Dieses Beispiel wurde von einem Wiki übernommen (<ulink url=\"https://wiki." "ubuntu.com/PbuilderHowto\">https://wiki.ubuntu.com/PbuilderHowto</ulink>)." #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:860 msgid "" "This section<placeholder type=\"footnote\" id=\"0\"/> describes briefly a " "way to setup and use multiple pbuilder setups by creating a pbuilderrc " "configuration in your home path (<filename>$HOME/.pbuilderrc</filename>) " "and using the variable \"DIST\" when running pbuilder or pdebuild." msgstr "" "Dieser Abschnitt<placeholder type=\"footnote\" id=\"0\"/> beschreibt kurz " "eine Möglichkeit, mehrere Pbuilder-Einrichtungen zu erstellen und zu " "benutzen, indem eine Pbuilderrc-Konfiguration in Ihrem Home-Pfad (<filename>" "$HOME/.pbuilderrc</filename>) erstellt und die Variable »DIST« beim " "Ausführen von Pbuilder oder Pdebuild benutzt wird." #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:871 msgid "First, setup <filename>$HOME/.pbuilderrc</filename> to look like:" msgstr "" "Richten Sie zuerst <filename>$HOME/.pbuilderrc</filename> ein, dass es wie " "folgt aussieht:" #. type: Content of: <book><chapter><sect1><para><screen> #: pbuilder-doc.xml:874 #, no-wrap msgid "" "if [ -n \"${DIST}\" ]; then\n" " BASETGZ=\"`dirname $BASETGZ`/$DIST-base.tgz\"\n" " DISTRIBUTION=\"$DIST\"\n" " BUILDRESULT=\"/var/cache/pbuilder/$DIST/result/\"\n" " APTCACHE=\"/var/cache/pbuilder/$DIST/aptcache/\"\n" "fi\n" msgstr "" "if [ -n \"${DIST}\" ]; then\n" " BASETGZ=\"`dirname $BASETGZ`/$DIST-base.tgz\"\n" " DISTRIBUTION=\"$DIST\"\n" " BUILDRESULT=\"/var/cache/pbuilder/$DIST/result/\"\n" " APTCACHE=\"/var/cache/pbuilder/$DIST/aptcache/\"\n" "fi\n" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:873 pbuilder-doc.xml:889 pbuilder-doc.xml:930 #: pbuilder-doc.xml:936 pbuilder-doc.xml:951 pbuilder-doc.xml:1039 #: pbuilder-doc.xml:1190 pbuilder-doc.xml:1442 pbuilder-doc.xml:1453 msgid "<placeholder type=\"screen\" id=\"0\"/>" msgstr "<placeholder type=\"screen\" id=\"0\"/>" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:881 msgid "" "Then, whenever you wish to use pbuilder for a particular distro, assign a " "value to \"DIST\" that is one of the distros available for Debian or any " "Debian based distro you happen to be running (i.e. whatever is found under /" "usr/lib/debootstrap/scripts)." msgstr "" "Wann auch immer Sie dann Pbuilder für eine spezielle Distribution benutzen " "möchten, weisen Sie »DIST« einen Wert zu, der einer der für Debian " "verfügbaren Distribution oder einer auf Debian basierenden Distribution, die " "Sie zufällig ausführen, entspricht (d.h. was auch immer unter /usr/lib/" "debootstrap/scripts gefunden wird)." #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:887 msgid "Here's some examples on running pbuilder or pdebuild:" msgstr "Hier einige Beispiele, der Ausführung von Pbuilder oder Pdebuild:" #. type: Content of: <book><chapter><sect1><para><screen> #: pbuilder-doc.xml:890 #, no-wrap msgid "" "DIST=gutsy sudo pbuilder create\n" "\n" "DIST=sid sudo pbuilder create --mirror http://http.us.debian.org/debian\n" "\n" "DIST=gutsy sudo pbuilder create \\\n" " --othermirror \"deb http://archive.ubuntu.com/ubuntu gutsy universe \\\n" " multiverse\"\n" "\n" "DIST=gutsy sudo pbuilder update\n" "\n" "DIST=sid sudo pbuilder update --override-config --mirror \\\n" "http://http.us.debian.org/debian \\\n" "--othermirror \"deb http://http.us.debian.org/debian sid contrib non-free\"\n" "\n" "DIST=gutsy pdebuild\n" msgstr "" "DIST=gutsy sudo pbuilder create\n" "\n" "DIST=sid sudo pbuilder create --mirror http://http.us.debian.org/debian\n" "\n" "DIST=gutsy sudo pbuilder create \\\n" " --othermirror \"deb http://archive.ubuntu.com/ubuntu gutsy universe \\\n" " multiverse\"\n" "\n" "DIST=gutsy sudo pbuilder update\n" "\n" "DIST=sid sudo pbuilder update --override-config --mirror \\\n" "http://http.us.debian.org/debian \\\n" "--othermirror \"deb http://http.us.debian.org/debian sid contrib non-free\"\n" "\n" "DIST=gutsy pdebuild\n" #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:908 msgid "Using special apt sources lists, and local packages" msgstr "Spezielle Listen von Apt-Quellen und lokale Pakete verwenden" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:910 msgid "" "If you have some very specialized requirements on your apt setup inside " "<command>pbuilder</command>, it is possible to specify that through the " "<command><option>--othermirror</option></command> option. Try something " "like: <command><option>--othermirror \"deb http://local/mirror stable main|" "deb-src http://local/source/repository ./\"</option></command>" msgstr "" "Falls Sie einige außergewöhnliche Anforderungen an Ihre Apt-Einrichtung " "innerhalb <command>pbuilder</command> haben, ist es möglich, dies über die " "Option <command><option>--othermirror</option></command> anzugeben. " "Versuchen Sie etwas wie dies: <command><option>--othermirror \"deb http://" "local/mirror stable main|deb-src http://local/source/repository ./\"</" "option></command>" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:919 msgid "" "To use the local file system instead of HTTP, it is necessary to do bind-" "mounting. <command><option>--bindmounts</option></command> is a command-" "line option useful for such cases." msgstr "" "Um ein lokales Dateisystem anstelle von HTTP zu benutzen, ist es nötig, Bind-" "Mount zu verwenden. <command><option>--bindmounts</option></command> ist " "eine in solchen Fällen nützliche Befehlszeilenoption." #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:925 msgid "" "It might be convenient to use your built packages from inside the chroot. " "It is possible to automate the task with the following configuration. " "First, set up pbuilderrc to bindmount your build results directory." msgstr "" "Es könnte vorteilhaft sein, Ihre Build-Pakete von innerhalb der Chroot zu " "benutzen. Es ist möglich, die Aufgabe mit der folgenden Konfiguration zu " "automatisieren. Richten Sie zuerst Pbuilderrc ein, um ein Bind-Mount Ihres " "Verzeichnisses für Build-Ergebnisse auszuführen." #. type: Content of: <book><chapter><sect1><para><screen> #: pbuilder-doc.xml:930 #, no-wrap msgid "BINDMOUNTS=\"/var/cache/pbuilder/result\"" msgstr "BINDMOUNTS=\"/var/cache/pbuilder/result\"" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:933 msgid "Then, add the following hook" msgstr "Fügen Sie dann den folgenden Hook hinzu" #. type: Content of: <book><chapter><sect1><para><screen> #: pbuilder-doc.xml:937 #, no-wrap msgid "" "# cat /var/cache/pbuilder/hooks/D70results\n" "#!/bin/sh\n" "cd /var/cache/pbuilder/result/\n" "/usr/bin/dpkg-scanpackages . /dev/null > /var/cache/pbuilder/result/Packages\n" "/usr/bin/apt-get update" msgstr "" "# cat /var/cache/pbuilder/hooks/D70results\n" "#!/bin/sh\n" "cd /var/cache/pbuilder/result/\n" "/usr/bin/dpkg-scanpackages . /dev/null > /var/cache/pbuilder/result/Packages\n" "/usr/bin/apt-get update" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:944 msgid "" "This way, you can use <filename>deb file:/var/cache/pbuilder/result</" "filename>" msgstr "" "Auf diese Weise können Sie <filename>deb file:/var/cache/pbuilder/result</" "filename> benutzen." #. from http://ubuntuforums.org/archive/index.php/t-696820.html #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:947 msgid "To add new apt-key inside chroot:" msgstr "So fügen Sie einen neuen Apt-Schlüssel innerhalb der Chroot hinzu:" #. type: Content of: <book><chapter><sect1><para><screen> #: pbuilder-doc.xml:952 #, no-wrap msgid "" "sudo pbuilder --login --save-after-login\n" "# apt-key add - <<EOF\n" "...public key goes here...\n" "EOF\n" "# logout\n" msgstr "" "sudo pbuilder --login --save-after-login\n" "# apt-key add - <<EOF\n" "...public key goes here...\n" "EOF\n" "# logout\n" #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:960 msgid "" "How to get pbuilder to run apt-get update before trying to satisfy build-" "dependency" msgstr "" "Wie kann erreicht werden, dass Pbuilder »apt-get update« ausführt, bevor es " "versucht die Build-Abhängigkeiten zu erfüllen?" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:962 msgid "" "You can use hook scripts for this. D scripts are run before satisfying " "build-dependency." msgstr "" "Sie können dafür Hook-Skripte benutzen. D-Skripte werden ausgeführt, bevor " "Build-Abhängigkeiten erfüllt werden." #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:966 msgid "" "<ulink url=\"http://lists.debian.org/debian-devel/2006/05/msg00550.html\"> " "This snippet comes from Ondrej Sury. </ulink>" msgstr "" "<ulink url=\"http://lists.debian.org/debian-devel/2006/05/msg00550.html\"> " "Dieser Kodeausschnitt stammt von Ondrej Sury. </ulink>" #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:972 msgid "Different bash prompts inside pbuilder login" msgstr "" "Unterschiedliche Eingabeaufforderungen innerhalb der Pbuilder-Anmeldung" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:974 msgid "" "To make distinguishing bash prompts inside <command>pbuilder</command> " "easier, it is possible to set environment variables such as PS1 inside " "<filename>pbuilderrc</filename>" msgstr "" "Um charakteristische Bash-Eingabeaufforderungen innerhalb <command>pbuilder</" "command> zu erleichtern, ist es möglich, innerhalb der <filename>pbuilderrc</" "filename> Umgebungsvariablen wie PS1 zu setzen." #. type: Content of: <book><chapter><sect1><para><footnote><para> #: pbuilder-doc.xml:985 msgid "Versions of bash from and before Debian 3.0" msgstr "Versionen der Bash seit und vor Debian 3.0" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:980 msgid "" "With versions of bash more recent than 2.05b-2-15, the value of the " "debian_chroot variable, if set, is included in the value of PS1 (the Bash " "prompt) inside the chroot. In prior versions of bash,<placeholder type=" "\"footnote\" id=\"0\"/> setting PS1 in pbuilderrc worked." msgstr "" "Mit aktuelleren Versionen der Bash als 2.05b-2-15 ist der Wert der Variablen " "»debian_chroot«, falls er gesetzt ist, im Wert von PS1 (der Bash-" "Eingabeaufforderung) innerhalb der Chroot enthalten. In vorhergehenden " "Versionen der Bash,<placeholder type=\"footnote\" id=\"0\"/> funktionierte " "die Einstellung PS1 in Pbuilderrc." #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:989 msgid "example of debian_chroot" msgstr "Beispiel für »debian_chroot«" #. type: Content of: <book><chapter><sect1><screen> #: pbuilder-doc.xml:991 #, no-wrap msgid "\texport debian_chroot=\"pbuild$$\"" msgstr "\texport debian_chroot=\"pbuild$$\"" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:992 msgid "example of PS1" msgstr "Beispiel für PS1" #. type: Content of: <book><chapter><sect1><screen> #: pbuilder-doc.xml:994 #, no-wrap msgid "\texport PS1=\"pbuild chroot 32165 # \"" msgstr "\texport PS1=\"pbuild chroot 32165 # \"" #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:997 msgid "Creating a chroot reminder" msgstr "Eine Chroot-Erinnerung erstellen" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:999 msgid "" "Bash prompts will help you remember that you are inside a chroot. There are " "other cases where you may want other signs of being inside a chroot. Check " "out the <filename>examples/F90chrootmemo</filename> hook script. It will " "create a file called <filename>/CHROOT</filename> inside your chroot." msgstr "" "Bash-Eingabeaufforderungen werden Ihnen helfen, sich daran zu erinnern, dass " "Sie sich innerhalb der Chroot befinden. Es gibt andere Fälle, in denen Sie " "möglicherweise andere Hinweise bekommen möchten, dass Sie innerhalb der " "Chroot sind. Probieren Sie das Hook-Skript <filename>examples/F90chrootmemo</" "filename> aus. Es wird eine Datei innerhalb der Chroot erstellen, die " "<filename>/CHROOT</filename> heißt." #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1008 msgid "Using /var/cache/apt/archives for the package cache" msgstr "/var/cache/apt/archives für den Paket-Zwischenspeicher benutzen" # really bandwidth? not RAM #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1010 msgid "" "For the help of low-bandwidth systems, it is possible to use <filename>/var/" "cache/apt/archives</filename> as the package cache. Just specify it instead " "of the default <filename>/var/cache/pbuilder/aptcache</filename>." msgstr "" "Um Systemen mit geringer Bandbreite zu helfen, ist es möglich <filename>/var/" "cache/apt/archives</filename> als Paket-Zwischenspeicher zu benutzen. Geben " "Sie es einfach anstelle von <filename>/var/cache/pbuilder/aptcache</" "filename> an." #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1016 msgid "" "It is however not possible to do so currently with the user-mode-linux " "version of <command>pbuilder</command>, because <filename>/var/cache/apt/" "archives</filename> is usually only writable by root." msgstr "" "Es ist jedoch nicht möglich, dies derzeit mit der User-Mode-Linux-Version " "von <command>pbuilder</command> zu tun, da <filename>/var/cache/apt/" "archives</filename> normalerweise nur für Root schreibbar ist." #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1022 msgid "" "Use of dedicated tools such as apt-proxy is recommended, since caching of " "packages would benefit the system outside the scope of <command>pbuilder</" "command>." msgstr "" "Es wird empfohlen, zugehörige Werkzeuge wie Apt-proxy zu benutzen, da das " "Zwischenspeichern von Paketen dem System außerhalb des Einflussbereichs von " "<command>pbuilder</command> nutzen würde." #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1028 msgid "pbuilder back ported to stable Debian releases" msgstr "Pbuilder auf Debian-Stable-Releases zurückportiert" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1030 msgid "Currently stable back port of pbuilder is available at backports.org." msgstr "" "Die aktuelle Stable-Rückportierung von Pbuilder ist auf backports.org " "verfügbar." #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1034 msgid "Warning about LOGNAME not being defined" msgstr "Warnung, dass LOGNAME nicht definiert wurde" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1036 msgid "" "You might see a lot of warning messages when running <command>pbuilder</" "command>." msgstr "" "Sie bekommen möglicherweise viele Fehlermeldungen zu Gesicht, wenn Sie " "<command>pbuilder</command> ausführen." #. type: Content of: <book><chapter><sect1><para><screen> #: pbuilder-doc.xml:1040 #, no-wrap msgid "\tdpkg-genchanges: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)" msgstr "\tdpkg-genchanges: Warnung: kein UTMP-Eintrag verfügbar und LOGNAME nicht definiert; UID des Prozesses wird benutzt (1234)" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1043 msgid "" "It is currently safe to ignore this warning message. Please report back if " "you find any problem with having LOGNAME unset. Setting LOGNAME caused a " "few problems when invoking <command>chroot</command>. For example, dpkg " "requires getpwnam to succeed inside chroot, which means LOGNAME and the " "related user information have to be set up inside chroot." msgstr "" "Es ist derzeit sicher, diese Warnmeldung zu ignorieren. Bitte geben Sie eine " "Rückmeldung, wenn Sie ein Problem mit nicht gesetztem LOGNAME haben. LOGNAME " "zu setzen bereitet einige Probleme, wenn <command>chroot</command> " "aufgerufen wird. Dpkg benötigt beispielsweise Getpwnam, um innerhalb der " "Chroot erfolgreich zu sein, was bedeutet, dass LOGNAME und die zugehörige " "Benutzerinformation innerhalb der Chroot eingerichtet werden müssen." # Build-Conflicts: http://www.debian.org/doc/debian-policy/ch-relationships.html #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1052 msgid "Cannot Build-conflict against an essential package" msgstr "»Build-Conflikt« mit wesentlichem Paket nicht möglich" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1054 msgid "" "<command>pbuilder</command> does not currently allow Build-Conflicts against " "essential packages. It should be obvious that essential packages should not " "be removed from a working Debian system, and a source package should not try " "to force removal of such packages on people building the package." msgstr "" "<command>pbuilder</command> erlaubt derzeit kein »Build-Conflicts« mit " "wesentlichen Paketen. Es sollte offensichtlich sein, dass wesentliche Pakete " "nicht von einem funktionierenden Debian-System entfernt werden sollten und " "ein Quellpaket nicht versuchen sollte, das Entfernen solcher Pakete zu " "erzwingen, wenn Leute das Paket bauen." # »ungültig« ist auch in der Übersetzung von ln groß geschrieben (Fehler) #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1063 msgid "Avoiding the \"ln: Invalid cross-device link\" message" msgstr "" "Vermeiden der Nachricht »ln: Ungültiger Link über Gerätegrenzen hinweg«" #. type: Content of: <book><chapter><sect1><para><screen> #: pbuilder-doc.xml:1069 pbuilder-doc.xml:1202 #, no-wrap msgid "APTCACHEHARDLINK=no" msgstr "APTCACHEHARDLINK=no" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1065 msgid "" "By default, <command>pbuilder</command> uses hard links to manage the " "<command>pbuilder</command> package cache. It is not possible to make hard " "links across different devices; and thus this error will occur, depending on " "your set up. If this happens, set <placeholder type=\"screen\" id=\"0\"/> " "in your pbuilderrc file. Note that packages in <command>APTCACHE</command> " "will be copied into chroot local cache, so plan for enough space on " "<command>BUILDPLACE</command> device." msgstr "" "Standardmäßig benutzt <command>pbuilder</command> harte Links, um den " "<command>pbuilder</command>-Paketzwischenspeicher zu verwalten. Es ist nicht " "möglich, harte Links über unterschiedliche Geräte hinweg zu erstellen. Daher " "wird dieser Fehler, abhängig von Ihrer Einrichtung, erscheinen. Falls dies " "geschieht, setzen Sie in ihrer Pbuilderrc-Datei <placeholder type=\"screen\" " "id=\"0\"/>. Beachten Sie, dass Pakete in <command>APTCACHE</command> in den " "lokalen Chroot-Zwischenspeicher kopiert werden. Planen Sie daher genug " "Speicher auf dem Gerät <command>BUILDPLACE</command> ein." #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1077 msgid "Using fakechroot" msgstr "Fakechroot benutzen" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1079 msgid "" "It is possible to use <command>fakechroot</command> instead of being root to " "run <command>pbuilder</command>; however, several things make this " "impractical. <command>fakechroot</command> overrides library loads and " "tries to override default libc functions when providing the functionality of " "virtual <command>chroot</command>. However, some binaries do no use libc to " "function, or override the overriding provided by <command>fakechroot</" "command>. One example is <command>ldd</command>. Inside " "<command>fakechroot</command>, <command>ldd</command> will check the library " "dependency outside of the chroot, which is not the expected behavior." msgstr "" "Es ist möglich, <command>fakechroot</command> zu benutzen, anstatt " "<command>pbuilder</command> als Root auszuführen; mehrere Dinge machen dies " "jedoch unpraktisch. <command>fakechroot</command> setzt geladene " "Bibliotheken außer Kraft und versucht, vorgegebene Libc-Funktionen außer " "Kraft zu setzen, wenn es die Funktionalität von virtuellem <command>chroot</" "command> bereitstellt. Einige Bibliotheken benutzen jedoch zum Funktionieren " "Libc nicht oder setzen das außer Kraft setzen von <command>fakechroot</" "command> außer Kraft. Ein Beispiel ist <command>ldd</command>. Innerhalb " "<command>fakechroot</command> wird <command>ldd</command> die Abhängigkeiten " "von Bibliotheken außerhalb der Chroot prüfen, die nicht das erwartete " "Verhalten aufweisen." #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1093 msgid "" "To work around the problem, debootstrap has a <option>--variant fakechroot</" "option> option. Use that, so that ldd and ldconfig are overridden." msgstr "" "Um das Problem zu umgehen, hat Debootstrap eine Option <option>--variant " "fakechroot</option>. Benutzen Sie diese, so dass Ldd und Ldconfig " "überschrieben werden." #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1098 msgid "" "Make sure you have set your LD_PRELOAD path correctly, as described in the " "fakechroot manpage." msgstr "" "Stellen Sie sicher, dass Sie Ihrem Pfad LD_PRELOAD korrekt gesetzt haben, " "wie es in der Handbuchseite von Fakechroot beschrieben ist." #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1103 msgid "Using debconf inside pbuilder sessions" msgstr "Debconf innerhalb von Pbuilder-Sitzungen benutzen" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1105 msgid "" "To use debconf inside <command>pbuilder</command>, setting DEBIAN_FRONTEND " "to <quote>readline</quote> in <filename>pbuilderrc</filename> should work. " "Setting it to <quote>dialog</quote> should also work, but make sure whiptail " "or dialog is installed inside the chroot." msgstr "" "Um Debconf innerhalb von <command>pbuilder</command> zu benutzen, sollte " "DEBIAN_FRONTEND in <filename>pbuilderrc</filename> auf <quote>readline</" "quote> zu setzen funktionieren. Es auf <quote>dialog</quote> zu setzen " "sollte ebenfalls funktionieren. Stellen Sie aber sicher, dass Whiptail oder " "Dialog innerhalb der Chroot installiert sind." #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1112 msgid "nodev mount options hinder pbuilder activity" msgstr "»nodev«-Einhängeoptionen behindern Pbuilder-Aktivität" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1114 msgid "" "If you see messages such as this when building a chroot, you are mounting " "the file system with the nodev option." msgstr "" "Falls Sie Nachrichten wie diese beim Erstellen einer Chroot sehen, sind Sie " "dabei, ein Dateisystem mit einer »nodev«-Option einzuhängen." # Fehlermeldung erscheint bei Zugriff auf Ordner ohne ausreichende Rechte #. type: Content of: <book><chapter><sect1><screen> #: pbuilder-doc.xml:1118 #, no-wrap msgid "\t/var/lib/dpkg/info/base-files.postinst: /dev/null: Permission denied" msgstr "\t/var/lib/dpkg/info/base-files.postinst: /dev/null: Keine Berechtigung" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1120 msgid "" "You will also have problems if you mount the file system with the noexec " "option, or nosuid. Make sure you do not have these flags set when mounting " "the file system for <filename>/var/cache/pbuilder</filename> or $BUILDPLACE." msgstr "" "Sie werden außerdem Probleme haben, falls Sie ein Dateisystem mit der Option " "»noexec« oder »nosuid« einhängen. Stellen Sie sicher, dass Sie diese " "Schalter nicht gesetzt haben, wenn Sie das Dateisystem für <filename>/var/" "cache/pbuilder</filename> oder $BUILDPLACE einhängen." #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1126 msgid "This is not a problem when using <command>user-mode-linux</command>." msgstr "" "Dies ist kein Problem, wenn Sie <command>user-mode-linux</command> benutzen." #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1129 msgid "" "See <ulink url=\"http://bugs.debian.org/316135\"> 316135 </ulink> for " "example." msgstr "" "Sehen Sie zum Beispiel <ulink url=\"http://bugs.debian.org/316135\"> 316135 " "</ulink>." #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1135 msgid "pbuilder is slow" msgstr "Pbuilder ist langsam" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1137 msgid "" "<command>pbuilder</command> is often slow. The slowest part of " "<command>pbuilder</command> is extracting the tar.gz every time " "<command>pbuilder</command> is invoked. That can be avoided by using " "<command>pbuilder-user-mode-linux</command>. <command>pbuilder-user-mode-" "linux</command> uses COW file system, and thus does not need to clean up and " "recreate the root file system." msgstr "" "<command>pbuilder</command> ist öfters langsam. Der langsamste Teil von " "<command>pbuilder</command> ist bei jedem Aufruf von <command>pbuilder</" "command> das Extrahieren des tar.gz. Dies kann verhindert werden, indem " "<command>pbuilder-user-mode-linux</command> benutzt wird. <command>pbuilder-" "user-mode-linux</command> benutzt ein COW-Dateisystem und muss daher das " "Wurzeldateisystem nicht aufräumen und neu erstellen." #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1146 msgid "" "<command>pbuilder-user-mode-linux</command> is slower in executing the " "actual build system, due to the usual <command>user-mode-linux</command> " "overhead for system calls. It is more friendly to the hard drive." msgstr "" "<command>pbuilder-user-mode-linux</command> ist langsamer beim Ausführen des " "tatsächlichen Build-Systems, aufgrund des üblichen Mehraufwands von " "<command>user-mode-linux</command> für Systemaufrufe. Es ist freundlicher " "zur Festplatte." #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1152 msgid "" "<command>pbuilder</command> with cowdancer is also an alternative that " "improves speed of pbuilder startup." msgstr "" "<command>pbuilder</command> mit Cowdancer ist ebenfalls eine Alternative, " "die die Geschwindigkeit des Pbuilder-Starts verbessert." #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1157 msgid "Using pdebuild to sponsor package" msgstr "Pdebuild zum Fördern eines Pakets benutzen" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1159 msgid "" "To sign a package marking for sponsorship, it is possible to " "use<command><option> --auto-debsign</option></command> and " "<command><option>--debsign-k</option></command> options of " "<command>pdebuild</command>." msgstr "" "Um ein Paket zu signieren, dass es für die Förderung gekennzeichnet ist, ist " "es möglich, die Optionen<command><option> --auto-debsign</option></command> " "und <command><option>--debsign-k</option></command> von <command>pdebuild</" "command> zu benutzen." #. type: Content of: <book><chapter><sect1><screen> #: pbuilder-doc.xml:1165 #, no-wrap msgid "\t<command>pdebuild <option>--auto-debsign </option> <option>--debsign-k </option><parameter>XXXXXXXX</parameter></command>" msgstr "\t<command>pdebuild <option>--auto-debsign </option> <option>--debsign-k </option><parameter>XXXXXXXX</parameter></command>" #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1168 msgid "Why is there a source.changes file in ../?" msgstr "Warum liegt in ../ eine source.changes-Datei?" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1170 msgid "" "When running <command>pdebuild</command>, <command>pbuilder</command> will " "run dpkg-buildpackage to create a Debian source package to pass it on to " "<command>pbuilder</command>. File named XXXX_YYY_source.changes is what " "remains from that process. It is harmless unless you try to upload it to " "the Debian archive." msgstr "" "Wenn <command>pdebuild</command> ausgeführt wird, wird <command>pbuilder</" "command> Dpkg-buildpackage ausführen, um ein Debian-Quellpaket zu erstellen, " "das an <command>pbuilder</command> weitergereicht wird. Eine Datei mit Namen " "XXXX_YYY_source.changes ist das, was von diesem Prozess übrigbleibt. Das ist " "harmlos, solange Sie nicht versuchen, sie in das Debian-Archiv hochzuladen." #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1176 msgid "" "This behavior is different when running through <option>--use-pdebuild-" "internal</option>" msgstr "" "Dieses Verhalten ist anders, wenn es mittels <option>--use-pdebuild-" "internal</option> ausgeführt wird." #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1180 msgid "amd64 and i386-mode" msgstr "Die Modi »amd64« und »i386«" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1182 msgid "" "amd64 architectures are capable of running binaries in i386 mode. It is " "possible to use <command>pbuilder</command> to run packages, using " "<command>linux32</command> and <command>debootstrap <option>--arch</option></" "command> option. Specifically, a command-line option like the following " "will work." msgstr "" "AMD64-Architekturen sind fähig, Programme im i386-Modus auszuführen. Es ist " "möglich, <command>pbuilder</command> zu benutzen, um Pakete auszuführen, die " "die Optionen <command>linux32</command> und <command>debootstrap <option>--" "arch</option></command> benutzen. Im Besonderen wird eine " "Befehlszeilenoption wie die Folgende funktionieren." #. type: Content of: <book><chapter><sect1><para><screen> #: pbuilder-doc.xml:1191 #, no-wrap msgid "" "<command>pbuilder create --distribution sid --debootstrapopts --arch --debootstrapopts i386 \\\n" " --basetgz /var/cache/pbuilder/base-i386.tgz --mirror http://ftp.jp.debian.org/debian</command>\n" "<command>linux32 pbuilder build --basetgz /var/cache/pbuilder/base-i386.tgz</command>" msgstr "" "<command>pbuilder create --distribution sid --debootstrapopts --arch --debootstrapopts i386 \\\n" " --basetgz /var/cache/pbuilder/base-i386.tgz --mirror http://ftp.jp.debian.org/debian</command>\n" "<command>linux32 pbuilder build --basetgz /var/cache/pbuilder/base-i386.tgz</command>" # Ist eine Option, z.B.: # sudo pbuilder --create --no-targz --debug --buildplace /sid-root #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1197 msgid "Using tmpfs for buildplace" msgstr "Tmpfs für »buildplace« benutzen" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1199 msgid "" "To improve speed of operation, it is possible to use tmpfs for pbuilder " "build location. Mount tmpfs to <filename>/var/cache/pbuilder/build</" "filename>, and set <placeholder type=\"screen\" id=\"0\"/>." msgstr "" "Um die Geschwindigkeit der Operation zu verbessern, ist es möglich, Tmpfs " "für den Build-Ort von Pbuilder zu verwenden. Hängen Sie das Tmpfs in " "<filename>/var/cache/pbuilder/build</filename> ein und setzen Sie " "<placeholder type=\"screen\" id=\"0\"/>." #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1206 msgid "Using svn-buildpackage together with pbuilder" msgstr "Svn-buildpackage zusammen mit Pbuilder benutzen" #. type: Content of: <book><chapter><sect1><para><footnote><para> #: pbuilder-doc.xml:1211 msgid "" "<ulink url=\"http://upsilon.cc/~zack/blog/posts/2007/09/svn-cowbuilder/\"> " "Zack has posted an example on his blog. </ulink>" msgstr "" "<ulink url=\"http://upsilon.cc/~zack/blog/posts/2007/09/svn-cowbuilder/\"> " "Zack hat diesem Blog ein Beispiel gesandt.</ulink>" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1208 msgid "" "pdebuild command can be used with svn-buildpackage --svn-builder command-" "line option. <placeholder type=\"footnote\" id=\"0\"/>" msgstr "" "Der Befehl Pdebuild kann mit der Befehlszeilenoption »svn-buildpackage --svn-" "builder« benutzt werden. <placeholder type=\"footnote\" id=\"0\"/>" #. type: Content of: <book><chapter><sect1><screen> #: pbuilder-doc.xml:1217 #, no-wrap msgid "alias svn-cowbuilder=\"svn-buildpackage --svn-builder='pdebuild --pbuilder cowbuilder\"" msgstr "alias svn-cowbuilder=\"svn-buildpackage --svn-builder='pdebuild --pbuilder cowbuilder\"" #. type: Content of: <book><chapter><title> #: pbuilder-doc.xml:1224 msgid "Troubleshooting and development" msgstr "Fehlerbehebung und Entwicklung" #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1226 msgid "Reporting bugs" msgstr "Fehler berichten" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1228 msgid "" "To report bugs, it would be important to have a log of what's going wrong. " "Most of the time, adding a <command><option>--debug</option></command> " "option and re-running the session should do the trick. Please send the log " "of such session along with your problem to ease the debugging process." msgstr "" "Um Fehler zu berichten, wäre es wichtig, ein Protokoll darüber zu haben, was " "schiefgelaufen ist. Meistens sollte das Hinzufügen einer Option " "<command><option>--debug</option></command> und das erneute Ausführen der " "Sitzung den Zweck erfüllen. Bitte senden Sie das Protokoll einer solchen " "Sitzung zusammen mit Ihrer auf Englisch verfassten Problembeschreibung, um " "den Prozess der Fehlersuche zu erleichtern." #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1237 msgid "Mailing list" msgstr "Mailingliste" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1239 msgid "" "There is a mailing list for <command>pbuilder</command> on alioth (pbuilder-" "maint@lists.alioth.debian.org). You can subscribe through the alioth web " "interface. <ulink url=\"http://alioth.debian.org/mail/?group_id=30778\"> " "http://alioth.debian.org/mail/?group_id=30778</ulink>." msgstr "" "Es gibt auf Alioth eine Maillingliste für Pbuilder (pbuilder-maint@lists." "alioth.debian.org). Sie können sie über die Alioth-Web-Schnittstelle " "abonnieren. <ulink url=\"http://alioth.debian.org/mail/?group_id=30778\"> " "http://alioth.debian.org/mail/?group_id=30778</ulink>." #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1247 msgid "IRC Channel" msgstr "IRC-Kanal" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1249 msgid "" "For coordination and communication, IRC channel #pbuilder on irc.oftc.net is " "used. Please log your intent there when you are going to start doing some " "changes and committing some change." msgstr "" "Zur Koordinierung und Kommunikation wird der IRC-Kanal #pbuilder auf irc." "oftc.net benutzt. Bitte legen Sie dort Ihre Absicht dar, wenn Sie mit " "irgendwelchen Änderungen beginnen oder irgendeine Änderung übertragen." #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1256 msgid "Information for pbuilder developers" msgstr "Informationen für Pbuilder-Entwickler" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1258 msgid "" "This section tries to document current development practices and how things " "generally operate in development." msgstr "" "Dieser Abschnitt versucht, aktuelle Vorgehensweisen bei der Entwicklungs zu " "dokumentieren und wie Dinge allgemein in der Entwicklung funktionieren." #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1262 msgid "" "<command>pbuilder</command> is co-maintained with resources provided by " "Alioth. There is an Alioth project page at <ulink url=\"http://alioth." "debian.org/projects/pbuilder\"> http://alioth.debian.org/projects/pbuilder</" "ulink>. Home page is also available, at <ulink url=\"http://pbuilder.alioth." "debian.org/\"> http://alioth.debian.org/projects/pbuilder</ulink> which " "shows this text. git repository is available through http, git, or (if you " "have an account on alioth, ) ssh." msgstr "" "<command>pbuilder</command> wird mitbetreut mit Ressourcen, die auf Alioth " "bereitgestellt werden. Es gibt eine Alioth-Projektseite unter <ulink url=" "\"http://alioth.debian.org/projects/pbuilder\"> http://alioth.debian.org/" "projects/pbuilder</ulink>. Außerdem ist die Homepage, die diesen Text zeigt, " "unter <ulink url=\"http://pbuilder.alioth.debian.org/\"> http://alioth." "debian.org/projects/pbuilder</ulink> verfügbar. Das Git-Depot ist über HTTP, " "Git oder (falls Sie ein Alioth-Konto haben) SSH verfügbar." #. type: Content of: <book><chapter><sect1><screen> #: pbuilder-doc.xml:1276 #, no-wrap msgid "" "git-clone git://git.debian.org/git/pbuilder/pbuilder.git\n" "git-clone http://git.debian.org/git/pbuilder/pbuilder.git\n" "git-clone ssh://git.debian.org/git/pbuilder/pbuilder.git" msgstr "" "git-clone git://git.debian.org/git/pbuilder/pbuilder.git\n" "git-clone http://git.debian.org/git/pbuilder/pbuilder.git\n" "git-clone ssh://git.debian.org/git/pbuilder/pbuilder.git" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1280 msgid "" "Git commit message should have the first one line describing what the commit " "does, formatted in the way debian/changelog is formatted because it is " "copied verbatim to changelog via git-dch. The second line is empty, and the " "rest should describe the background and extra information related to " "implementation of the commit." msgstr "" "Die Git-Commit-Nachricht sollte zuerst eine Zeile haben, die beschreibt, was " "das Commit tut. Dies sollte auf die Weise wie »debian/changelog« formatiert " "sein, da es mittels Git-dch wortgetreu in das Changelog kopiert wird. Die " "zweite Zeile ist leer und der Rest sollte die Hintergrund- und " "Zusatzinformationen im Zusammenhang mit der Implementierung des Commits " "beschreiben." #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1288 msgid "" "Test-suites are available in <filename>./testsuite/</filename> directory. " "Changes are expected not to break the test-suites. <filename>./run-test.sh</" "filename> is a basic test-suite, which puts a summary in <filename>run-test." "log</filename>, and <filename>run-test-cdebootstrap.log</filename>. " "<filename>./run-test-regression.sh</filename> is a regression test-suite, " "which puts the result in <filename>run-test-regression.log</filename>. " "Currently, run-test.sh is ran automatically daily to ensure that pbuilder is " "working." msgstr "" "Test-Suites sind im Verzeichnis <filename>./testsuite/</filename> verfügbar. " "Von Änderungen wird erwartet, dass sie die Test-Suites nicht unterbrechen. " "<filename>./run-test.sh</filename> ist eine Basistest-Suite, die eine " "Zusammenfassung in <filename>run-test.log</filename> und <filename>run-test-" "cdebootstrap.log</filename> ablegt. <filename>./run-test-regression.sh</" "filename> ist eine Regressionstest-Suite, die das Ergebnis in <filename>run-" "test-regression.log</filename> ablegt. Derzeit wird run-test.sh täglich " "automatisch ausgeführt, um sicherzustellen, dass Pbuilder funktioniert." #. type: Content of: <book><chapter><sect1><table><title> #: pbuilder-doc.xml:1297 msgid "Directory structure of the testsuite" msgstr "Verzeichnisstruktur der Test-Suite" #. type: Content of: <book><chapter><sect1><table><tgroup><thead><row><entry> #: pbuilder-doc.xml:1303 pbuilder-doc.xml:1526 pbuilder-doc.xml:1595 msgid "Directory" msgstr "Verzeichnis" #. type: Content of: <book><chapter><sect1><table><tgroup><thead><row><entry> #: pbuilder-doc.xml:1304 pbuilder-doc.xml:1527 pbuilder-doc.xml:1596 msgid "Meaning" msgstr "Bedeutung" #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1309 msgid "<filename>./testsuite/</filename>" msgstr "<filename>./testsuite/</filename>" #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1310 msgid "Directory for testsuite" msgstr "Verzeichnis für Test-Suite" #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1313 msgid "<filename>./testsuite/run-test.sh</filename>" msgstr "<filename>./testsuite/run-test.sh</filename>" #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1314 msgid "" "Daily regression test to test against Debian Archive changes breaking " "pbuilder." msgstr "" "Täglicher Regressionstest, um zu prüfen, ob Änderungen am Debian-Archiv " "Pbuilder unterbrechen." #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1317 msgid "<filename>./testsuite/run-test.log</filename>" msgstr "<filename>./testsuite/run-test.log</filename>" #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1318 msgid "A summary of testsuite" msgstr "Eine Zusammenfassung der Test-Suite" #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1321 msgid "<filename>./testsuite/normal/</filename>" msgstr "<filename>./testsuite/normal/</filename>" #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1322 msgid "Directory for testsuite results of running pbuilder with debootstrap" msgstr "" "Verzeichnis für Test-Suite-Ergebnisse für die Ausführung von Pbuilder mit " "Debootstrap" #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1325 msgid "<filename>./testsuite/cdebootstrap/</filename>" msgstr "<filename>./testsuite/cdebootstrap/</filename>" #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1326 msgid "Directory for testsuite results of running pbuilder with cdebootstrap" msgstr "" "Verzeichnis für Test-Suite-Ergebnisse für die Ausführung von Pbuilder mit " "Cdebootstrap" #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1329 msgid "<filename>./testsuite/run-regression.sh</filename>" msgstr "<filename>./testsuite/run-regression.sh</filename>" #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1330 msgid "" "Regression testsuite, ran every time change is made to pbuilder to make sure " "there is no regression." msgstr "" "Regressionstest-Suite, wurde jedesmal ausgeführt, wenn etwas an Pbuilder " "geändert wurde, um sicherzustellen, dass es keinen Rückschritt gibt." #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1333 msgid "<filename>./testsuite/run-regression.log</filename>" msgstr "<filename>./testsuite/run-regression.log</filename>" #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1334 msgid "Summary of test result" msgstr "Zusammenfassung des Testergebnisses" #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1337 msgid "<filename>./testsuite/regression/BugID-*.sh</filename>" msgstr "<filename>./testsuite/regression/BugID-*.sh</filename>" #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1338 msgid "Regression tests, exit 0 for success, exit 1 for failure" msgstr "Regressionstests, Rückgabewert 0 bei Erfolg, 1 bei Fehlschlag" #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1341 msgid "<filename>./testsuite/regression/BugID-*</filename>" msgstr "<filename>./testsuite/regression/BugID-*</filename>" #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1342 msgid "Files used for the regression testsuite." msgstr "Dateien, die für die Regressionstest-Suite verwandt werden" #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1345 msgid "<filename>./testsuite/regression/log/BugID-*.sh.log</filename>" msgstr "<filename>./testsuite/regression/log/BugID-*.sh.log</filename>" #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1346 msgid "" "Output of the regression test, output from the script is redirected by run-" "regression.sh" msgstr "" "Ausgabe des Regressionstests, Ausgabe des Skripts, an das durch run-" "regression.sh weitergeleitet wurde" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1352 msgid "" "When making changes, changes should be documented in the Git commit log. " "git-dch will generate debian/changelog from the commit log. Make the first " "line of your commit log meaningful, and add any bug-closing information " "available. debian/changelog should not be edited directly unless when " "releasing a new version." msgstr "" "Wenn Änderungen vorgenommen werden, sollten die Änderungen im Git-Commit-" "Protokoll dokumentiert werden. Git-dch wird aus dem Commit-Protokoll debian/" "changelog generieren. Schreiben Sie eine aussagekräftige erste Zeile in Ihr " "Commit-Protokoll und fügen Sie jede verfügbare Information zum Schließen von " "Fehlern hinzu. debian/changelog sollte nicht direkt bearbeitet werden, außer " "wenn eine neue Version veröffentlicht wird." #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1360 msgid "" "A TODO file is available in <filename>debian/TODO</filename>. It's mostly " "not well-maintained, but hopefully it will be more up-to-date when people " "start using it. emacs todoo-mode is used in editing the file." msgstr "" "Eine TODO-Datei ist in <filename>debian/TODO</filename> verfügbar. Sie wird " "meist nicht gut gepflegt, wird aber hoffentlich aktueller sein, wenn Leute " "beginnen, sie zu benutzen. Zum Bearbeiten der Datei wird der Emacs-Todoo-" "Modus verwandt." #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1366 msgid "" "When releasing a new version of <command>pbuilder</command>, the version is " "tagged with the git tag X.XXX (version number). This is done with " "<command>./git-tag.sh</command> script available in the source tree." msgstr "" "Wenn eine neue Version von <command>pbuilder</command> veröffentlicht wird, " "ist die Version mit der Git-Markierung X.XXX (Versionsnummer) " "gekennzeichnet. Dies wurde mit dem Skript <command>./git-tag.sh</command>, " "das im Quellkode-Verzeichnisbaum verfügbar ist, erledigt." #. type: Content of: <book><chapter><title> #: pbuilder-doc.xml:1374 msgid "Other uses of pbuilder" msgstr "Andere Verwendungen von Pbuilder" #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1376 msgid "Using pbuilder for small experiments" msgstr "Pbuilder für kleine Experimente benutzen" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1378 msgid "" "There are cases when some small experimenting is required, and you do not " "want to damage the main system, like when installing experimental library " "packages, or compiling with experimental compilers. For such cases, the " "<command>pbuilder login</command> command is available." msgstr "" "Es gibt Fälle, in denen es nötig ist, ein wenig zu experimentieren und Sie " "das Hauptsystem nicht beschädigen wollen, wie das Installieren " "experimenteller Bibliothekspakete oder das Kompilieren mit experimentellen " "Kompilern. Für diese Fälle steht der Befehl <command>pbuilder login</" "command> zur Verfügung." #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1385 msgid "" "<command>pbuilder login </command> is a debugging feature for " "<command>pbuilder</command> itself, but it also allows users to have a " "temporary chroot." msgstr "" "<command>pbuilder login </command> ist eine Funktion zur Fehlersuche für " "<command>pbuilder</command> selbst, aber es ermöglicht Benutzern außerdem " "eine temporäre Chroot zu verwenden." #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1389 msgid "" "Note that the chroot is cleaned after logging out of the shell, and mounting " "file systems inside it is considered harmful." msgstr "" "Beachten Sie, dass die Chroot nach dem Abmelden aus der Shell bereinigt wird " "und das Einhängen von Dateisystemen innerhalb der Chroot als schädlich " "angesehen wird." #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1394 msgid "Running little programs inside the chroot" msgstr "Kleine Programme innerhalb der Chroot ausführen" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1396 msgid "" "To facilitate using <command>pbuilder</command> for other uses, " "<command>pbuilder execute</command> is available. <command>pbuilder execute " "</command> will take a script specified in the command-line argument, and " "invoke the script inside the chroot." msgstr "" "Um die Benutzung von <command>pbuilder</command> für andere Zwecke zu " "erleichtern, ist <command>pbuilder execute</command> verfügbar. " "<command>pbuilder execute </command> wird ein im Befehlszeilenargument " "angegebenes Skript nehmen und innerhalb der Chroot aufrufen." #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1403 msgid "" "The script can be useful for sequences of operations such as installing ssh " "and adding a new user inside the chroot." msgstr "" "Das Skript kann nützlich für Abfolgen von Operationen, wie das Installieren " "von SSH oder das Hinzufügen eines neuen Benutzers innerhalb der Chroot, sein." # FIXME wishlist im BTS aneinandergeschrieben #. type: Content of: <book><chapter><title> #: pbuilder-doc.xml:1409 #, fuzzy #| msgid "Experimental or wish-list features of pbuilder" msgid "Experimental or wishlist features of pbuilder" msgstr "Experimentelle oder »wishlist«-Funktionen von Pbuilder" #. type: Content of: <book><chapter><para> #: pbuilder-doc.xml:1411 msgid "" "There are some advanced features, above that of the basic feature of " "<command>pbuilder</command>, for some specific purposes." msgstr "" "Es gibt einige fortgeschrittene Funktionen, die über die Grundfunktionen von " "<command>pbuilder</command> für einige besondere Zwecke hinausgehen." #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1415 msgid "Using LVM" msgstr "LVM benutzen" # FIXME missing full stop #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1417 #, fuzzy #| msgid "" #| "LVM2 has a useful snapshot function that features Copy-on-write images. " #| "That could be used for <command>pbuilder</command> just as it can be used " #| "for the user-mode-linux <command>pbuilder</command> port. lvmpbuilder " #| "script in the examples directory implements such port. The scripts and " #| "documentation can be found under <filename>/usr/share/doc/pbuilder/" #| "examples/lvmpbuilder/</filename>" msgid "" "LVM2 has a useful snapshot function that features Copy-on-write images. " "That could be used for <command>pbuilder</command> just as it can be used " "for the user-mode-linux <command>pbuilder</command> port. lvmpbuilder " "script in the examples directory implements such port. The scripts and " "documentation can be found under <filename>/usr/share/doc/pbuilder/examples/" "lvmpbuilder/</filename>." msgstr "" "LVM2 hat eine nützliche Schnappschussfunktion, die Copy-on-write-Images " "zeigt. Dies kann für <command>pbuilder</command> ebenso wie für die User-" "Mode-Linux-Portierung <command>pbuilder</command> benutzt werden. Das Skript " "»lvmpbuilder« in den Beispielen implementiert solch eine Portierung. Die " "Skripte und Dokumentation finden Sie unter <filename>/usr/share/doc/pbuilder/" "examples/lvmpbuilder/</filename>." #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1426 msgid "Using cowdancer" msgstr "Cowdancer benutzen" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1428 msgid "" "<command>cowdancer</command> allows copy-on-write semantics on file system " "using hard links and hard-link-breaking-on-write tricks. <command>pbuilder</" "command> using <command>cowdancer</command> seems to be much faster and it " "is one ideal point for improvement. <command>cowbuilder</command>, a " "wrapper for <command>pbuilder</command> for using <command>cowdancer</" "command> is available from <command>cowdancer</command> package since 0.14" msgstr "" "<command>cowdancer</command> erlaubt Copy-on-write-Semantiken auf dem " "Dateisystem unter Benutzung von harten Links und Hard-link-breaking-on-write-" "Tricks. <command>pbuilder</command> scheint bei der Benutzung von " "<command>cowdancer</command> viel schneller zu sein und es ist ein idealer " "Punkt für Verbesserungen. <command>cowbuilder</command>, ein Wrapper für " "<command>pbuilder</command>, um <command>cowdancer</command> zu benutzen, " "ist im Paket <command>cowdancer</command> seit Version 0.14 verfügbar." #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1439 msgid "Example command-lines for cowbuilder look like the following." msgstr "Beispielshafte Befehlszeilen für Cowbuilder sehen aus wie folgt." #. type: Content of: <book><chapter><sect1><para><screen> #: pbuilder-doc.xml:1443 #, no-wrap msgid "" "# cowbuilder --create --distribution sid\n" "# cowbuilder --update --distribution sid\n" "# cowbuilder --build XXX.dsc" msgstr "" "# cowbuilder --create --distribution sid\n" "# cowbuilder --update --distribution sid\n" "# cowbuilder --build XXX.dsc" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1448 msgid "" "It is also possible to use cowdancer with pdebuild command. Specify with " "command-line option <option>--pbuilder</option> or set it in " "PDEBUILD_PBUILDER configuration option." msgstr "" "Es ist außerdem möglich, Cowdancer mit dem Befehl »pdebuild« zu benutzen. " "Geben Sie es mit der Befehlszeilenoptionen <option>--pbuilder</option> an " "oder setzen Sie es in der Konfigurationsoption PDEBUILD_PBUILDER." #. type: Content of: <book><chapter><sect1><para><screen> #: pbuilder-doc.xml:1454 #, no-wrap msgid "$ pdebuild --pbuilder cowbuilder" msgstr "$ pdebuild --pbuilder cowbuilder" #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1458 msgid "Using pbuilder without tar.gz" msgstr "Pbuilder ohne tar.gz verwenden" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1460 msgid "" "The <command><option>--no-targz</option></command> option of " "<command>pbuilder</command> will allow usage of <command>pbuilder</command> " "in a different way from conventional usage. It will try to use an existing " "chroot, and will not try to clean up after working on it. It is an " "operation mode more like <command>sbuild</command>." msgstr "" "Die Option <command><option>--no-targz</option></command> von " "<command>pbuilder</command> wird den Gebrauch von <command>pbuilder</" "command> auf eine andere als die übliche Weise ermöglichen. Sie wird " "versuchen eine existierende Chroot zu benutzen und sie nach der Arbeit damit " "nicht zu bereinigen. Es ist ein Betriebsmodus, der eher <command>sbuild</" "command> gleicht." #. type: Content of: <book><chapter><sect1><para><screen> #: pbuilder-doc.xml:1474 #, no-wrap msgid "" "# pbuilder create --distribution lenny --no-targz --basetgz /chroot/lenny\n" "# pbuilder create --distribution squeeze --no-targz --basetgz /chroot/squeeze\n" "# pbuilder create --distribution sid --no-targz --basetgz /chroot/sid" msgstr "" "# pbuilder create --distribution lenny --no-targz --basetgz /chroot/lenny\n" "# pbuilder create --distribution squeeze --no-targz --basetgz /chroot/squeeze\n" "# pbuilder create --distribution sid --no-targz --basetgz /chroot/sid" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1471 msgid "" "It should be possible to create base chroot images for <command>dchroot</" "command> with the following commands: <placeholder type=\"screen\" id=\"0\"/>" msgstr "" "Es sollte möglich sein, Basis-Chroot-Images für <command>dchroot</command> " "mit den folgenden Befehlen zu erstellen: <placeholder type=\"screen\" id=" "\"0\"/>" #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1480 msgid "Using pbuilder in a vserver" msgstr "PBuilder in einem Vserver verwenden" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1482 msgid "" "It is possible to use <command>pbuilder</command> in a vserver environment. " "This requires either vserver-patches in version 2.1.1-rc14 or higher, or a " "Linux kernel version 2.6.16 or higher." msgstr "" "Es ist möglich, <command>pbuilder</command> in einer Vserver-Umgebung zu " "verwenden. Dies erfordert entweder Vserver-patches in Version 2.1.1-rc14 " "oder höher oder eine Linux-Kernel-Version 2.6.16 oder höher." #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1487 msgid "" "To use <command>pbuilder</command> in a vserver, you need to set the " "<command>secure_mount</command> <command>CAPS</command> in the " "<command>ccapabilities</command> of this vserver." msgstr "" "Um <command>pbuilder</command> in einem Vserver zu verwenden, müssen Sie in " "den <command>ccapabilities</command> dieses Servers <command>secure_mount</" "command> <command>CAPS</command> setzen." #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1493 msgid "Usage of ccache" msgstr "Gebrauch von Ccache" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1495 #, fuzzy #| msgid "" #| "By default <command>pbuilder</command> will use the C compiler cache " #| "<command>ccache</command> to speed up repeated builds of the same package " #| "(or packages that compile the same files multiple times for some reason). " #| "Using <command>ccache</command> can speed up repeated building of large " #| "packages dramatically, at the cost of some disk space and bookkeeping." msgid "" "It is possible to use C compiler cache <command>ccache</command> to speed up " "repeated builds of the same package (or packages that compile the same files " "multiple times for some reason). Using <command>ccache</command> can speed " "up repeated building of large packages dramatically, at the cost of some " "disk space and bookkeeping." msgstr "" "Standardmäßig wird <command>pbuilder</command> den Zwischenspeicher des C-" "Kompilers <command>ccache</command> verwenden, um wiederholte Builds für " "einige Pakete zu beschleunigen (oder Pakete, die die aus irgendeinem Grund " "die gleichen Dateien mehrmals kompilieren). Die Verwendung von " "<command>ccache</command> kann das wiederholte Bauen großer Pakete auf " "Kosten von etwas Plattenplatz und Buchführung drastisch beschleunigen." #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1503 #, fuzzy #| msgid "" #| "To disable usage of <command>ccache</command> with <command>pbuilder</" #| "command>, you should unset CCACHEDIR in your pbuilderrc file." msgid "" "To enable usage of <command>ccache</command> with <command>pbuilder</" "command>, you should set CCACHEDIR in your pbuilderrc file." msgstr "" "Um die Benutzung von <command>ccache</command> mit <command>pbuilder</" "command> zu deaktivieren, sollten Sie CCACHEDIR in Ihrer Pbuilderrc nicht " "setzen." #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1508 msgid "" "Current implementation of ccache support has several bugs, that CCACHEDIR " "must be owned by the pbuilder build user, and parallel runs of pbuilder is " "not supported. Therefore it is not enabled by default." msgstr "" #. type: Content of: <book><chapter><title> #: pbuilder-doc.xml:1516 msgid "Reference materials" msgstr "Referenzmaterial" #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1518 msgid "Directory structure outside the chroot" msgstr "Verzeichnisstruktur außerhalb der Chroot" #. type: Content of: <book><chapter><sect1><table><title> #: pbuilder-doc.xml:1520 msgid "Directory Structure outside the chroot" msgstr "Verzeichnisstruktur außerhalb der Chroot" #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1532 msgid "<filename>/etc/pbuilderrc</filename>" msgstr "<filename>/etc/pbuilderrc</filename>" #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1533 msgid "configuration file" msgstr "Konfigurationsdatei" #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1536 msgid "<filename>/usr/share/pbuilder/pbuilderrc</filename>" msgstr "<filename>/usr/share/pbuilder/pbuilderrc</filename>" #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1537 msgid "Default configuration" msgstr "Standardkonfiguration" #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1540 msgid "<filename>/var/cache/pbuilder/base.tgz</filename>" msgstr "<filename>/var/cache/pbuilder/base.tgz</filename>" #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1541 msgid "" "Default location pbuilder uses for base.tgz, the tar-ball containing a basic " "Debian installation with only the build-essential packages." msgstr "" "Standardspeicherort, den Pbuilder für base.tgz benutzt. Dieser Tarball " "enthält eine Basis-Debian-Installation ausschließlich mit Build-essential-" "Paketen." #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1546 msgid "<filename>/var/cache/pbuilder/build/PID/</filename>" msgstr "<filename>/var/cache/pbuilder/build/PID/</filename>" #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1547 msgid "Default location pbuilder uses for chroot" msgstr "Standardspeicherort, den Pbuilder für Chroot benutzt" #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1550 msgid "<filename>/var/cache/pbuilder/aptcache</filename>" msgstr "<filename>/var/cache/pbuilder/aptcache</filename>" #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1551 msgid "" "Default location <command>pbuilder</command> will use as apt cache, to store " "deb packages required during <command>pbuilder</command> build." msgstr "" "Standardspeicherort, den <command>pbuilder</command> als APT-" "Zwischenspeicher benutzen wird, um Deb-Pakete zu speichern, die " "<command>pbuilder</command> während des Bauens benötigt" #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1554 pbuilder-doc.xml:1638 msgid "<filename>/var/cache/pbuilder/ccache</filename>" msgstr "<filename>/var/cache/pbuilder/ccache</filename>" #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1555 msgid "Default location <command>pbuilder</command> will use as cache location" msgstr "" "Standardspeicherort, den <command>pbuilder</command> als Zwischenspeicher " "benutzen wird" #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1559 msgid "<filename>/var/cache/pbuilder/result</filename>" msgstr "<filename>/var/cache/pbuilder/result</filename>" #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1560 msgid "" "Default location <command>pbuilder</command> puts the deb files and other " "files created after build" msgstr "" "Standardspeicherort, in den <command>pbuilder</command> die Deb-Dateien und " "andere Dateien ablegt, die nach dem Build erzeugt werden" #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1563 msgid "<filename>/var/cache/pbuilder/pbuilder-umlresult</filename>" msgstr "<filename>/var/cache/pbuilder/pbuilder-umlresult</filename>" #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1564 msgid "" "Default location <command>pbuilder-user-mode-linux</command> puts the deb " "files and other files created after build" msgstr "" "Standardspeicherort, in den <command>pbuilder-user-mode-linux</command> die " "Deb-Dateien und andere Dateien ablegt, die nach dem Build erzeugt werden" #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1567 msgid "<filename>/var/cache/pbuilder/pbuilder-mnt</filename>" msgstr "<filename>/var/cache/pbuilder/pbuilder-mnt</filename>" #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1568 msgid "" "Default location <command>pbuilder-user-mode-linux</command> uses for " "mounting the COW file system, for chrooting." msgstr "" "Standardspeicherort, den <command>pbuilder-user-mode-linux</command> " "benutzt, um das COW-Dateisystem für die Chroot einzuhängen" #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1571 msgid "<filename>/tmp</filename>" msgstr "<filename>/tmp</filename>" #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1572 msgid "<command>pbuilder-user-mode-linux</command> will mount tmpfs for work." msgstr "" "<command>pbuilder-user-mode-linux</command> wird Tmpfs für die Arbeit " "einhängen." #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1575 msgid "<filename>${HOME}/tmp/PID.cow</filename>" msgstr "<filename>${HOME}/tmp/PID.cow</filename>" #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1576 msgid "" "<command>pbuilder-user-mode-linux</command> use this directory for location " "of COW file system." msgstr "" "<command>pbuilder-user-mode-linux</command> benutzt dieses Verzeichnis als " "Speicherort des COW-Dateisystem." #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1579 msgid "<filename>${HOME}/uml-image</filename>" msgstr "<filename>${HOME}/uml-image</filename>" #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1580 msgid "" "<command>pbuilder-user-mode-linux</command> use this directory for user-mode-" "linux full disk image." msgstr "" "<command>pbuilder-user-mode-linux</command> benutzt dieses Verzeichnis für " "das vollständige User-Mode-Linux-Image." #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1587 msgid "Directory structure inside the chroot" msgstr "Verzeichnisstruktur innerhalb der Chroot" #. type: Content of: <book><chapter><sect1><table><title> #: pbuilder-doc.xml:1589 msgid "Directory Structure inside the chroot" msgstr "Verzeichnisstruktur innerhalb der Chroot" #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1601 msgid "<filename>/etc/mtab</filename>" msgstr "<filename>/etc/mtab</filename>" #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1603 msgid "symlink to <filename>/proc/mounts</filename>." msgstr "symbolischer Link zu <filename>/proc/mounts</filename>" #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1607 msgid "<filename>/tmp/buildd</filename>" msgstr "<filename>/tmp/buildd</filename>" #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1608 msgid "" "Default place used in <command>pbuilder</command> to place the Debian " "package to be processed. <filename>/tmp/buildd/packagename-version/</" "filename> will be the root directory of the package being processed. HOME " "environment variable is set to this value inside chroot by pbuilder-" "buildpackage. <option>--inputfile</option> will place files here." msgstr "" "Standardort, der vom <command>pbuilder</command> benutzt wird, um die zu " "verarbeitenden Debian-Pakete abzulegen. <filename>/tmp/buildd/packagename-" "version/</filename> wird das Wurzelverzeichnis des Pakets sein, das " "verarbeitet wird. Die Umgebungsvariable HOME wird von Pbuilder-buildpackage " "auf diesen Wert gesetzt. <option>--inputfile</option> wird die Dateien hier " "ablegen." #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1618 msgid "<filename>/runscript</filename>" msgstr "<filename>/runscript</filename>" #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1619 msgid "" "The script passed as an argument to <command>pbuilder</command> execute is " "passed on." msgstr "" "Das Skript, das als Argument zur Ausführung an <command>pbuilder</command> " "übergeben wird, wird weitergereicht." #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1625 msgid "<filename>/tmp/hooks</filename>" msgstr "<filename>/tmp/hooks</filename>" #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1627 msgid "The location of hooks." msgstr "Der Speicherort von Hooks" #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1631 msgid "<filename>/var/cache/apt/archives</filename>" msgstr "<filename>/var/cache/apt/archives</filename>" #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1633 msgid "" "<command>pbuilder</command> copies the content of this directory to and from " "the aptcache directory of outside chroot." msgstr "" "<command>pbuilder</command> kopiert den Inhalt dieses Verzeichnisses zu und " "vom Aptcache-Verzeichnis außerhalb der Chroot." #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1640 msgid "" "<command>pbuilder</command> bind-mounts this directory for use by ccache." msgstr "" "<command>pbuilder</command> hängt dieses Verzeichnis per Bind-Mount ein, " "damit es durch Ccache benutzt wird." #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1645 msgid "<filename>/tmp/XXXX</filename>" msgstr "<filename>/tmp/XXXX</filename>" #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1646 msgid "" "<command>pbuilder-user-mode-linux</command> uses a script in <filename>/tmp</" "filename> to bootstrap into user-mode-linux" msgstr "" "<command>pbuilder-user-mode-linux</command> benutzt ein Skript in <filename>/" "tmp</filename> für ein Bootstrap in User Mode Linux." #. type: Content of: <book><chapter><title> #: pbuilder-doc.xml:1656 msgid "Minor archaeological details" msgstr "Nebensächliche archäologische Einzelheiten" #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1658 msgid "Documentation history" msgstr "Dokumentations-Chronik" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1660 msgid "" "This document was started on 28 Dec 2002 by Junichi Uekawa, trying to " "document what is known about <command>pbuilder</command>." msgstr "" "Die Arbeit an diesem Dokument wurde am 28. Dezember 2002 durch Junichi " "Uekawa begonnen, der versuchte zu dokumentieren, was über <command>pbuilder</" "command> bekannt ist." #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1665 msgid "" "This documentation is available from the <command>pbuilder</command> source " "tar-ball, and from the git repository of <command>pbuilder</command> (web-" "based access is possible). A copy of this documentation can be found on the " "<ulink url=\"http://pbuilder.alioth.debian.org/pbuilder-doc.html\">Alioth " "project page for pbuilder</ulink>. <ulink url=\"http://pbuilder.alioth." "debian.org/pbuilder-doc.pdf\">There is also a PDF version</ulink>. The " "homepage for <command>pbuilder</command> is <ulink url=\"http://pbuilder." "alioth.debian.org/\"> http://pbuilder.alioth.debian.org/ </ulink> hosted by " "alioth project." msgstr "" "Diese Dokumentation ist im Quell-Tarball und im Git-Depot (Web-basierter " "Zugriff ist möglich) von <command>pbuilder</command> verfügbar. Eine Kopie " "dieser Dokumentation können Sie auf der <ulink url=\"http://pbuilder.alioth." "debian.org/pbuilder-doc.html\">Alioth-Projektseite für Pbuilder</ulink> " "finden. <ulink url=\"http://pbuilder.alioth.debian.org/pbuilder-doc.pdf\"> " "Dort gibt es auch eine PDF-Version </ulink>. Die Homepage für " "<command>pbuilder</command> wird <ulink url=\"http://pbuilder.alioth.debian." "org/\"> http://pbuilder.alioth.debian.org/ </ulink> vom Alioth-Projekt " "gehostet." #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1676 msgid "" "Documentation is written using DocBook XML, with emacs PSGML mode, and using " "wysidocbookxml for live previewing." msgstr "" "Die Dokumentation wurde unter Verwendung von DocBook-XML mit dem Emacs-PSGML-" "Modus und unter Verwendung von Wysidocbookxml zur Echtzeitvorschau " "geschrieben." #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1682 msgid "Possibly inaccurate Background History of pbuilder" msgstr "Möglicherweise ungenaue Hintergrundgeschichte von Pbuilder" # FIXME s/inaccurate/accurate/ #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1684 msgid "" "The following is a most possibly inaccurate account of how " "<command>pbuilder</command> came to happen, and other attempts to make " "something like <command>pbuilder</command> happen. This part of the " "document was originally in the AUTHORS file, to give credit to those who " "existed before <command>pbuilder</command>." msgstr "" "Das Folgende ist ein möglichst genauer Bericht, wie es zu <command>pbuilder</" "command> kam und andere Versuche, ein Ergebnis wie <command>pbuilder</" "command> zu erzielen. Dieser Teil des Dokuments war ursprünglich in der " "Datei AUTHORS, um dem Anerkennung zu zollen, was vor <command>pbuilder</" "command> existierte." #. type: Content of: <book><chapter><sect1><sect2><title> #: pbuilder-doc.xml:1691 msgid "The Time Before pbuilder" msgstr "Zeit vor Pbuilder" #. type: Content of: <book><chapter><sect1><sect2><para> #: pbuilder-doc.xml:1693 msgid "" "There was once dbuild, which was a shell script to build Debian packages " "from source. Lars Wirzenius wrote that script, and it was good, short, and " "simple (probably). There was nothing like build-depends then (I think), and " "it was simple. It could have been improved, I could only find references " "and no actual source." msgstr "" "Es gab einst Dbuild, das war ein Shell-Skript, um Debian-Pakete aus der " "Quelle zu bauen. Lars Wirzenius schrieb dieses Skript und es war gut, kurz " "und (wahrscheinlich) einfach. Es gab (vermutlich) nichts wie Build-" "Abhängigkeiten und es war simpel. Es konnte verbessert werden, es konnten " "nur Referenzen und keine tatsächliche Quelle gefunden werden." #. type: Content of: <book><chapter><sect1><sect2><para> #: pbuilder-doc.xml:1700 msgid "" "debbuild was probably written by James Troup. I don't know it because I have " "never seen the actual code, I could only find some references to it on the " "net, and mailing list logs." msgstr "" "Debbuild wurde wahrscheinlich von James Troup geschrieben. Genau bekannt ist " "dies nicht, da der tatsächlich Kode nicht vorliegt. Es konnten nur einige " "Referenzen im Netz und in den Maillinglist-Protokollen gefunden werden." #. type: Content of: <book><chapter><sect1><sect2><para> #: pbuilder-doc.xml:1705 msgid "" "sbuild is a perl script to build Debian packages from source. It parses " "Build-Depends, and performs other miscellaneous checks, and has a lot of " "hacks to actually get things building, including a table of what package to " "use when virtual packages are specified (does it do that still?). It " "supports the use of a local database for packages which do not have build-" "dependencies. It was written by Ronan Hodek, and I think it was patched and " "fixed and extended by several people. It is part of wanna-build, and used " "extensively in the Debian buildd system. I think it was maintained mostly by " "Ryan Murray." msgstr "" "Sbuild ist ein Perl-Skript, um Debian-Pakete aus der Quelle zu bauen. Es " "wertet Build-Abhängigkeiten aus, führt verschiedene andere Prüfungen durch " "und hat viele Hacks, um Dinge tatsächlich zu bauen, einschließlich einer " "Tabelle, welches Paket benutzt wird, wenn virtuelle Pakete angegeben wurden " "(tut es dies immer noch?). Es unterstützt den Gebrauch einer lokalen " "Datenbank für Pakete, die keine Build-Abhängigkeiten haben. Es wurde von " "Ronan Hodek geschrieben und es wurde wahrscheinlich von vielen Leuten " "repariert und erweitert. Es ist Teil von Wanna-Build und wird intensiv im " "Debian-Build-System benutzt. Es wird vermutlich überwiegend von Ryan Murray " "betreut." #. type: Content of: <book><chapter><sect1><sect2><title> #: pbuilder-doc.xml:1719 msgid "Birth of pbuilder" msgstr "Geburt von Pbuilder" #. type: Content of: <book><chapter><sect1><sect2><para> #: pbuilder-doc.xml:1721 msgid "" "wanna-build (sbuild) was (at the time of year 2001) quite difficult to set " "up, and it was never a Debian package. dbuild was something that predated " "Build-Depends." msgstr "" "Wanna-Build (Sbuild) war (in der Zeit um das Jahr 2001) ziemlich schwierig " "einzurichten und es war ein nie Debian-Paket. Dbuild war etwas, was Build-" "Abhängigkeiten vorwegnahm." #. type: Content of: <book><chapter><sect1><sect2><para> #: pbuilder-doc.xml:1726 msgid "" "Building packages from source using Build-Depends information within a " "chroot sounded trivial; and <command>pbuilder</command> was born. It was " "initially a shell script with only a few lines, which called debootstrap and " "chroot and dpkg-buildpackage in the same run, but soon, it was decided that " "that's too slow." msgstr "" "Pakete aus den Quellen unter Benutzung von Build-Abhängigkeitsinformationen " "innerhalb einer Chroot zu bauen klang trivial und <command>pbuilder</" "command> war geboren. Es war ursprünglich ein Shell-Skript mit nur wenigen " "Zeilen, das Debootstrap, Chroot und Dpkg-buildpackage im gleichen Durchlauf " "aufrief, aber bald wurde entschieden, dass das zu langsam sei." #. type: Content of: <book><chapter><sect1><sect2><para> #: pbuilder-doc.xml:1734 msgid "" "Yes, and it took almost an year to get things somewhat right, and in the " "middle of the process, Debian 3.0 was released. Yay. Debian 3.0 wasn't " "completely buildable with <command>pbuilder</command>, but the amount of " "packages which are not buildable is steadily decreasing (I hope)." msgstr "" "Ja, und es dauerte fast ein Jahr, um einige Dinge in Ordnung zu bringen und " "mitten in diesem Prozess wurde Debian 3.0 veröffentlicht. Juhu. Debian 3.0 " "konnte nicht vollständig mit <command>pbuilder</command> gebaut werden, aber " "die Anzahl der Pakete, die nicht gebaut werden können, nimmt stetig ab " "(hoffentlich)." #. type: Content of: <book><chapter><sect1><sect2><title> #: pbuilder-doc.xml:1743 msgid "And the second year of its life" msgstr "Und sein zweites Lebensjahr" #. type: Content of: <book><chapter><sect1><sect2><para> #: pbuilder-doc.xml:1745 msgid "" "Someone wanted <command>pbuilder</command> to not run as root, and as User-" "mode-linux has become more useful as time passed, I've started experimenting " "with <command>pbuilder-user-mode-linux</command>. <command>pbuilder-user-" "mode-linux</command> has not stayed functional as much as I would have " "liked, and bootstrapping <command>user-mode-linux</command> environment has " "been pretty hard, due to the quality of user-mode-linux code or packaging at " "that time, which kept on breaking network support in one way or the other." msgstr "" "Jemand wollte, dass <command>pbuilder</command> nicht als Root ausgeführt " "wird und als User Mode Linux im Laufe der Zeit nützlicher wurde, wurde " "begonnen, mit <command>pbuilder-user-mode-linux</command> zu " "experimentieren. <command>pbuilder-user-mode-linux</command> blieb nicht so " "funktional wie gewünscht und Bootstrap der <command>user-mode-linux</" "command>-Umgebung erwies sich als ziemlich hart aufgrund der Qualität des " "Kodes von User Mode Linux oder der Paketierung zu dieser Zeit, die auf die " "eine oder andere Art die Netzwerkunterstützung zerstörte." #. type: Content of: <book><chapter><sect1><sect2><title> #: pbuilder-doc.xml:1758 msgid "Fifth year of pbuilder" msgstr "Das fünfte Jahr von Pbuilder" #. type: Content of: <book><chapter><sect1><sect2><para> #: pbuilder-doc.xml:1760 msgid "" "<command>pbuilder</command> is now widely adopted as a 'almost standard' " "tool for testing packages, and building packages in a pristine environment. " "There are other similar tools that do similar tasks, but they do not share " "the exact same goal. To commemorate this fact, <command>pbuilder</command> " "is now co-maintained with several people." msgstr "" "<command>pbuilder</command> wird nun weitgehend als »Beinahe-" "Standardwerkzeug« zum Testen von Paketen und dem Bauen von Paketen in einer " "unberührten Umgebung angenommen. Es gibt andere ähnliche Werkzeuge, die " "ähnliche Aufgaben erledigen, aber sie verfolgen nicht das gleiche Ziel. Um " "dieser Tatsache zu gedenken, wird <command>pbuilder</command> nun von " "mehreren Leuten mitbetreut." #. type: Content of: <book><chapter><sect1><sect2><para> #: pbuilder-doc.xml:1768 msgid "" "<command>sbuild</command> is now a well-maintained Debian package within " "Debian, and with <command>pbuilder</command> being such a slow monster, some " "people prefer the approach of sbuild. Development to use LVM-snapshots, " "cowloop, or cowdancer is hoped to improve the situation somewhat." msgstr "" "<command>sbuild</command> ist nun ein gut betreutes Debian-Paket innerhalb " "von Debian und mit <command>pbuilder</command> als solch langsamem Monster " "bevorzugen einige Leute das Näherkommen von Sbuild. Es besteht die Hoffnung, " "dass die Entwicklung, um LVM-Schnappschüsse oder Cowdancer zu benutzen, die " "Situation etwas verbessert." ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������pbuilder-0.215ubuntu7/Documentation/pbuilder-doc.html�����������������������������������������������0000664�0000000�0000000�00000303317�12312041170�017617� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>pbuilder User's Manual

pbuilder User's Manual

Usage and operations

Junichi Uekawa

documentation in progress


Table of Contents

1. Introducing pbuilder
1. Aims of pbuilder
2. Using pbuilder
1. Creating a base chroot image tar-ball
2. Updating the base.tgz
3. Building a package using the base.tgz
4. Facilitating Debian Developers' typing, pdebuild
5. Configuration Files
6. Building packages as non-root inside the chroot
7. Using pbuilder for back-porting
8. Mass-building packages
9. Auto-backporting scripts
10. Using pbuilder for automated testing of packages
11. Using pbuilder for testing builds with alternate compilers
3. Using User-mode-linux with pbuilder
1. Configuring user-mode-linux
2. Configuring rootstrap
3. Configuring pbuilder-uml
4. Considerations for running pbuilder-user-mode-linux
5. Parallel running of pbuilder-user-mode-linux
6. Using pbuilder-user-mode-linux as a wrapper script to start up a virtual machine
4. Frequently asked questions
1. pbuilder create fails
2. Directories that cannot be bind-mounted
3. Logging in to pbuilder to investigate build failure
4. Logging in to pbuilder to modify the environment
5. Setting BUILDRESULTUID for sudo sessions
6. Notes on usage of $TMPDIR
7. Creating a shortcut for running pbuilder with a specific distribution
8. Using environmental variables for running pbuilder for specific distribution
9. Using special apt sources lists, and local packages
10. How to get pbuilder to run apt-get update before trying to satisfy build-dependency
11. Different bash prompts inside pbuilder login
12. Creating a chroot reminder
13. Using /var/cache/apt/archives for the package cache
14. pbuilder back ported to stable Debian releases
15. Warning about LOGNAME not being defined
16. Cannot Build-conflict against an essential package
17. Avoiding the "ln: Invalid cross-device link" message
18. Using fakechroot
19. Using debconf inside pbuilder sessions
20. nodev mount options hinder pbuilder activity
21. pbuilder is slow
22. Using pdebuild to sponsor package
23. Why is there a source.changes file in ../?
24. amd64 and i386-mode
25. Using tmpfs for buildplace
26. Using svn-buildpackage together with pbuilder
5. Troubleshooting and development
1. Reporting bugs
2. Mailing list
3. IRC Channel
4. Information for pbuilder developers
6. Other uses of pbuilder
1. Using pbuilder for small experiments
2. Running little programs inside the chroot
7. Experimental or wishlist features of pbuilder
1. Using LVM
2. Using cowdancer
3. Using pbuilder without tar.gz
4. Using pbuilder in a vserver
5. Usage of ccache
8. Reference materials
1. Directory structure outside the chroot
2. Directory structure inside the chroot
9. Minor archaeological details
1. Documentation history
2. Possibly inaccurate Background History of pbuilder
2.1. The Time Before pbuilder
2.2. Birth of pbuilder
2.3. And the second year of its life
2.4. Fifth year of pbuilder

Chapter1.Introducing pbuilder

Table of Contents

1. Aims of pbuilder

1.Aims of pbuilder

pbuilder stands for Personal Builder, and it is an automatic Debian Package Building system for personal development workstation environments. pbuilder aims to be an easy-to-setup system for auto-building Debian packages inside a clean-room environment, so that it is possible to verify that a package can be built on most Debian installations. The clean-room environment is achieved through the use of a base chroot image, so that only minimal packages will be installed inside the chroot.

The Debian distribution consists of free software accompanied with source. The source code within Debian's "main" section must build within Debian "main", with only the explicitly specified build-dependencies installed.

The primary aim of pbuilder is different from other auto-building systems in Debian in that its aim is not to try to build as many packages as possible. It does not try to guess what a package needs, and in most cases it tries the worst choice of all if there is a choice to be made.

In this way, pbuilder tries to ensure that packages tested against pbuilder will build properly in most Debian installations, hopefully resulting in a good overall Debian source-buildability.

The goal of making Debian buildable from source is somewhat accomplished, and has seen good progress. In the past age of Debian 3.0, there were many problems when building from source. More recent versions of Debian is much better.

Chapter2.Using pbuilder

There are several simple commands for operation. pbuilder create, pbuilder update, and pbuilder build commands are the typical commands used. Let us look at the commands one by one.

1.Creating a base chroot image tar-ball

pbuilder create will create a base chroot image tar-ball (base.tgz). All other commands will operate on the resulting base.tgz If the Debian release to be created within chroot is not going to be "sid" (which is the default), the distribution code-name needs to be specified with the --distribution command-line option.

debootstrap [1] is used to create the bare minimum Debian installation, and then build-essential packages are installed on top of the minimum installation using apt-get inside the chroot.

For fuller documentation of command-line options, see the pbuilder.8 manual page. Some configuration will be required for /etc/pbuilderrc for the mirror site [2] to use, and proxy configuration may be required to allow access through HTTP. See the pbuilderrc.5 manual page for details.

2.Updating the base.tgz

pbuilder update will update the base.tgz. It will extract the chroot, invoke apt-get update and apt-get dist-upgrade inside the chroot, and then recreate the base.tgz (the base tar-ball).

It is possible to switch the distribution which the base.tgz is targeted at at this point. Specify --distribution sid --override-config to change the distribution to sid. [3]

For fuller documentation of command-line options, see the pbuilder.8 manual page

3.Building a package using the base.tgz

To build a package inside the chroot, invoke pbuilder build whatever.dsc. pbuilder will extract the base.tgz to a temporary working directory, enter the directory with chroot, satisfy the build-dependencies inside chroot, and build the package. The built packages will be moved to a directory specified with the --buildresult command-line option.

The --basetgz option can be used to specify which base.tgz to use.

pbuilder will extract a fresh base chroot image from base.tgz. (base.tgz is created with pbuilder create, and updated with pbuilder update). The chroot is populated with build-dependencies by parsing debian/control and invoking apt-get.

For fuller documentation of command-line options, see the pbuilder.8 manual page

4.Facilitating Debian Developers' typing, pdebuild

pdebuild is a little wrapper script that does the most frequent of all tasks. A Debian Developer may try to do debuild, and build a package, inside a Debian source directory. pdebuild will allow similar control, and allow package to be built inside the chroot, to check that the current source tree will build happily inside the chroot.

pdebuild calls dpkg-source to build the source packages, and then invokes pbuilder on the resulting source package. However, unlike debuild, the resulting deb files will be found in the --buildresult directory.

See the pdebuild.1 manual page for more details.

There is a slightly different mode of operation available in pdebuild since version 0.97. pdebuild usually runs debian/rules clean outside of the chroot; however, it is possible to change the behavior to run it inside the chroot with the --use-pdebuild-internal. It will try to bind mount the working directory inside chroot, and run dpkg-buildpackage inside. It has the following characteristics, and is not yet the default mode of operation.

  • Satisfies build-dependency inside the chroot before creating source package. (which is a good point that default pdebuild could not do).

  • The working directory is modified from inside the chroot.

  • Building with pdebuild does not guarantee that it works with pbuilder.

  • If making the source package fails, the session using the chroot is wasted (chroot creation takes a bit of time, which should be improved with cowdancer).

  • Does not work in the same manner as it used to; for example, --buildresult does not have any effect.

  • The build inside chroot is ran with the current user outside chroot.

5.Configuration Files

It is possible to specify all settings by command-line options. However, for typing convenience, it is possible to use a configuration file.

/etc/pbuilderrc and ${HOME}/.pbuilderrc are read in when pbuilder is invoked. The possible options are documented in the pbuilderrc.5 manual page.

It is useful to use --configfile option to load up a preset configuration file when switching between configuration files for different distributions.

Please note ${HOME}/.pbuilderrc supersede system settings. Caveats is that if you have some configuration, you may need to tweak the configuration to work with new versions of pbuilder when upgrading.

6.Building packages as non-root inside the chroot

pbuilder requires full root privilege when it is satisfying the build-dependencies, but most packages do not need root privilege to build, or even refused to build when they are built as root. pbuilder can create a user which is only used inside pbuilder and use that user id when building, and use the fakeroot command when root privilege is required.

BUILDUSERID configuration option should be set to a value for a user id that does not already exist on the system, so that it is more difficult for packages that are being built with pbuilder to affect the environment outside the chroot. When BUILDUSERNAME configuration option is also set, pbuilder will use the specified user name and fakeroot for building packages, instead of running as root inside chroot.

Even when using the fakerooting method, pbuilder will run with root privilege when it is required. For example, when installing packages to the chroot, pbuilder will run under root privilege.

To be able to invoke pbuilder without being root, you need to use user-mode-linux, as explained in Chapter3, Using User-mode-linux with pbuilder.

7.Using pbuilder for back-porting

pbuilder can be used for back-porting software from the latest Debian distribution to the older stable distribution, by using a chroot that contains an image of the older distribution, and building packages inside the chroot. There are several points to consider, and due to the following reasons, automatic back-porting is usually not possible, and manual interaction is required:

  • The package from the unstable distribution may depend on packages or versions of packages which are only available in unstable. Thus, it may not be possible to satisfy Build-Depends: on stable (without additional backporting work).

  • The stable distribution may have bugs that have been fixed in unstable which need to be worked around.

  • The package in the unstable distribution may have problems building even on unstable.

8.Mass-building packages

pbuilder can be automated, because its operations are non-interactive. It is possible to run pbuilder through multiple packages non-interactively. Several such scripts are known to exist. Junichi Uekawa has been running such a script since 2001, and has been filing bugs on packages that fail the test of pbuilder. There were several problems with auto-building:

  • Build-Dependencies need to install non-interactively, but some packages are so broken that they cannot install without interaction (like postgresql).

  • When a library package breaks, or gcc/gcj/g++ breaks, or even bison, a large number of build failures are reported. (gcj-3.0 which had no "javac", bison which got more strict, etc.)

  • Some people were quite hostile against build failure reports.

Most of the initial bugs have been resolved in the pbuilder sweep done around 2002, but these transitional problems which affect a large portion of Debian Archive do arise from time to time. Regression tests have their values.

A script that was used by Junichi Uekawa in the initial run is now included in the pbuilder distribution, as pbuildd.sh. It is available in /usr/share/doc/pbuilder/examples/pbuildd/ and its configuration is in /etc/pbuilder/pbuildd-config.sh. It should be easy enough to set up for people who are used to pbuilder. It has been running for quite a while, and it should be possible to set the application up on your system also. This version of the code is not the most tested, but should function as a starter.

To set up pbuildd, there are some points to be aware of.

  • A file ./avoidlist needs to be available with the list of packages to avoid building.

  • It will try building anything, even packages which are not aimed for your architecture.

  • Because you are running random build scripts, it is better to use the fakeroot option of pbuilder, to avoid running the build under root privilege.

  • Because not all builds are guaranteed to finish in a finite time, setting a timeout is probably necessary, or pbuildd may stall with a bad build.

  • Some packages require a lot of disk space, around 2GB seems to be sufficient for the largest packages for the time being. If you find otherwise, please inform the maintainer of this documentation.

9.Auto-backporting scripts

There are some people who use pbuilder to automatically back-port a subset of packages to the stable distribution.

I would like some information on how people are doing it, I would appreciate any feedback or information on how you are doing, or any examples.

10.Using pbuilder for automated testing of packages

pbuilder can be used for automated testing of packages. It has the feature of allowing hooks to be placed, and these hooks can try to install packages inside the chroot, or run them, or whatever else that can be done. Some known tests and ideas:

  • Automatic install-remove-install-purge-upgrade-remove-upgrade-purge test-suite (distributed as an example, B91dpkg-i), or just check that everything installs somewhat (execute_installtest.sh).

  • Automatically running lintian (distributed as an example in /usr/share/doc/pbuilder/examples/B90lintian).

  • Automatic debian-test of the package? The debian-test package has been removed from Debian. A pbuilder implementation can be found as debian/pbuilder-test directory, implemented through B92test-pkg script.

To use B92test-pkg script, first, add it to your hook directory. [4]. The test files are shell scripts placed in debian/pbuilder-test/NN_name (where NN is a number) following run-parts standard[5] for file names. After a successful build, packages are first tested for installation and removal, and then each test is ran inside the chroot. The current directory is the top directory of the source-code. This means you can expect to be able to use ./debian/ directory from inside your scripts.

Example scripts for use with pbuilder-test can be found in /usr/share/doc/pbuilder/examples/pbuilder-test.

11.Using pbuilder for testing builds with alternate compilers

Most packages are compiled with gcc or g++ and using the default compiler version, which was gcc 2.95 for Debian GNU/Linux 3.0 (i386). However, Debian 3.0 was distributed with other compilers, under package names such as gcc-3.2 for gcc compiler version 3.2. It was therefore possible to try compiling packages against different compiler versions. pentium-builder provides an infrastructure for using a different compiler for building packages than the default gcc, by providing a wrapper script called gcc which calls the real gcc. To use pentium-builder in pbuilder, it is possible to set up the following in the configuration:

EXTRAPACKAGES="pentium-builder gcc-3.2 g++-3.2"
export DEBIAN_BUILDARCH=athlon
export DEBIAN_BUILDGCCVER=3.2

It will instruct pbuilder to install the pentium-builder package and also the GCC 3.2 compiler packages inside the chroot, and set the environment variables required for pentium-builder to function.



[1] debootstrap or cdebootstrap can be chosen

[2] The mirror site should preferably be a local mirror or a cache server, so as not to overload the public mirrors with a lot of access. Use of tools such as apt-proxy would be advisable.

[3] Only upgrading is supported. Debian does not generally support downgrading (yet?).

[4] It is possible to specify --hookdir /usr/share/doc/pbuilder/examples command-line option to include all example hooks as well.

[5] See run-parts(8). For example, no '.' in file names!

Chapter3.Using User-mode-linux with pbuilder

It is possible to use user-mode-linux by invoking pbuilder-user-mode-linux instead of pbuilder. pbuilder-user-mode-linux doesn't require root privileges, and it uses the copy-on-write (COW) disk access method of User-mode-linux which typically makes it much faster than the traditional pbuilder.

User-mode-linux is a somewhat less proven platform than the standard Unix tools which pbuilder relies on (chroot, tar, and gzip) but mature enough to support pbuilder-user-mode-linux since its version 0.59. And since then, pbuilder-user-mode-linux has seen a rapid evolution.

The configuration of pbuilder-user-mode-linux goes in three steps:

  • Configuration of user-mode-linux

  • Configuration of rootstrap

  • Configuration of pbuilder-uml

1.Configuring user-mode-linux

user-mode-linux isn't completely trivial to set up. It would probably be useful to acquaint yourself with it a bit before attempting to use rootstrap or pbuilder-user-mode-linux. For details, read /usr/share/doc/uml-utilities/README.Debian and the user-mode-linux documentation. (It's in a separate package, user-mode-linux-doc.)

user-mode-linux requires the user to be in the uml-net group in order to configure the network unless you are using slirp.

If you compile your own kernel, you may want to verify that you enable TUN/TAP support, and you might want to consider the SKAS patch.

2.Configuring rootstrap

rootstrap is a wrapper around debootstrap. It creates a Debian disk image for use with UML. To configure rootstrap, there are several requirements.

  • Install the rootstrap package.

  • TUN/TAP only: add the user to the uml-net group to allow access to the network

    adduser dancer uml-net

  • TUN/TAP only: Check that the kernel supports the TUN/TAP interface, or recompile the kernel if necessary.

  • Set up /etc/rootstrap/rootstrap.conf. For example, if the current host is 192.168.1.2, changing following entries to something like this seems to work.

    transport=tuntap
    interface=eth0
    gateway=192.168.1.1
    mirror=http://192.168.1.2:8081/debian
    host=192.168.1.198
    uml=192.168.1.199
    netmask=255.255.255.0

    Some experimentation with configuration and running rootstrap ~/test.uml to actually test it would be handy.

    Using slirp requires less configuration. The default configuration comes with a working example.

3.Configuring pbuilder-uml

The following needs to happen:

  • Install the pbuilder-uml package.

  • Set up the configuration file /etc/pbuilder/pbuilder-uml.conf in the following manner. It will be different for slirp.

    MY_ETH0=tuntap,,,192.168.1.198
    UML_IP=192.168.1.199
    UML_NETMASK=255.255.255.0
    UML_NETWORK=192.168.1.0
    UML_BROADCAST=255.255.255.255
    UML_GATEWAY=192.168.1.1
    PBUILDER_UML_IMAGE="/home/dancer/uml-image"

    Also, it needs to match the rootstrap configuration.

  • Make sure BUILDPLACE is writable by the user. Change BUILDPLACE in the configuration file to a place where the user has access.

  • Run pbuilder-user-mode-linux create --distribution sid to create the image.

  • Try running pbuilder-user-mode-linux build.

4.Considerations for running pbuilder-user-mode-linux

pbuilder-user-mode-linux emulates most of pbuilder, but there are some differences.

  • pbuilder-user-mode-linux does not support all options of pbuilder properly yet. This is a problem, and will be addressed as specific areas are discovered.

  • /tmp is handled differently inside pbuilder-user-mode-linux. In pbuilder-user-mode-linux, /tmp is mounted as tmpfs inside UML, so accessing files under /tmp from outside user-mode-linux does not work. It affects options like --configfile, and when trying to build packages placed under /tmp.

5.Parallel running of pbuilder-user-mode-linux

To run pbuilder-user-mode-linux in parallel on a system, there are a few things to bear in mind.

  • The create and update methods must not be run when a build is in progress, or the COW file will be invalidated.

  • If you are not using slirp, user-mode-linux processes which are running in parallel need to have different IP addresses. Just trying to run the pbuilder-user-mode-linux several times will result in failure to access the network. But something like the following will work:

    for IP in 102 103 104 105; do
      xterm -e pbuilder-user-mode-linux build --uml-ip 192.168.0.$IP \
        20030107/whizzytex_1.1.1-1.dsc &
    done

    When using slirp, this problem does not exist.

6.Using pbuilder-user-mode-linux as a wrapper script to start up a virtual machine

It is possible to use pbuilder-user-mode-linux for other uses than just building Debian packages. pbuilder-user-mode-linux login will let a user use a shell inside the user-mode-linux pbuilder base image, and pbuilder-user-mode-linux execute will allow the user to execute a script inside the image.

You can use the script to install ssh and add a new user, so that it is possible to access inside the user-mode-linux through ssh.

Note that it is not possible to use a script from /tmp due to the way pbuilder-user-mode-linux mounts a tmpfs at /tmp.

The following example script may be useful in starting a sshd inside user-mode-linux.

#!/bin/bash

apt-get install -y ssh xbase-clients xterm
echo "enter root password"
passwd
cp /etc/ssh/sshd_config{,-}
sed 's/X11Forwarding.*/X11Forwarding yes/' /etc/ssh/sshd_config- > /etc/ssh/sshd_config

/etc/init.d/ssh restart
ifconfig
echo "Hit enter to finish"
read

Chapter4.Frequently asked questions

Here, known problems and frequently asked questions are documented. This portion was initially available in README.Debian file, but moved here.

1.pbuilder create fails

It often happens that pbuilder cannot create the latest chroot. Try upgrading pbuilder and debootstrap. It is currently only possible to create software that handles the past. Future prediction is a feature which may be added later after we have become comfortable with the past.

There are people who occasionally back port debootstrap to stable versions; hunt for them.

When there are errors with the debootstrap phase, the debootstrap script needs to be fixed. pbuilder does not provide a way to work around debootstrap.

2.Directories that cannot be bind-mounted

Because of the way pbuilder works, there are several directories which cannot be bind-mounted when running pbuilder. The directories include /tmp, /var/cache/pbuilder, and system directories such as /etc and /usr. The recommendation is to use directories under the user's home directory for bind-mounts.

3.Logging in to pbuilder to investigate build failure

It is possible to invoke a shell session after a build failure. Example hook scripts are provided as C10shell and C11screen scripts. C10shell script will start bash inside chroot, and C11screen script will start GNU screen inside the chroot.

4.Logging in to pbuilder to modify the environment

It is sometimes necessary to modify the chroot environment. login will remove the contents of the chroot after logout. It is possible to invoke a shell using hook scripts. pbuilder update executes 'E' scripts, and a sample for invoking a shell is provided as C10shell.

$ mkdir ~/loginhooks
$ cp C10shell ~/loginhooks/E10shell
$ sudo pbuilder update --hookdir ~/loginhooks/E10shell

It is also possible to add --save-after-exec and/or --save-after-login options to the pbuilder login session to accomplish the goal. It is possible to add the --uml-login-nocow option to pbuilder-user-mode-linux login session as well.

5.Setting BUILDRESULTUID for sudo sessions

It is possible to set

BUILDRESULTUID=$SUDO_UID

in pbuilderrc to set the proper BUILDRESULTUID when using sudo.

6.Notes on usage of $TMPDIR

If you are setting $TMPDIR to an unusual value, of other than /tmp, you will find that some errors may occur inside the chroot, such as dpkg-source failing.

There are two options, you may install a hook to create that directory, or set

export TMPDIR=/tmp

in pbuilderrc. Take your pick.

An example script is provided as examples/D10tmp with pbuilder.

7.Creating a shortcut for running pbuilder with a specific distribution

When working with multiple chroots, it would be nice to work with scripts that reduce the amount of typing. An example script pbuilder-distribution.sh is provided as an example. Invoking the script as pbuilder-squeeze will invoke pbuilder with a squeeze chroot.

8.Using environmental variables for running pbuilder for specific distribution

This section[6] describes briefly a way to setup and use multiple pbuilder setups by creating a pbuilderrc configuration in your home path ($HOME/.pbuilderrc) and using the variable "DIST" when running pbuilder or pdebuild.

First, setup $HOME/.pbuilderrc to look like:

if [ -n "${DIST}" ]; then
        BASETGZ="`dirname $BASETGZ`/$DIST-base.tgz"
        DISTRIBUTION="$DIST"
        BUILDRESULT="/var/cache/pbuilder/$DIST/result/"
        APTCACHE="/var/cache/pbuilder/$DIST/aptcache/"
fi

Then, whenever you wish to use pbuilder for a particular distro, assign a value to "DIST" that is one of the distros available for Debian or any Debian based distro you happen to be running (i.e. whatever is found under /usr/lib/debootstrap/scripts).

Here's some examples on running pbuilder or pdebuild:

DIST=gutsy sudo pbuilder create

DIST=sid sudo pbuilder create --mirror http://http.us.debian.org/debian

DIST=gutsy sudo pbuilder create \
        --othermirror "deb http://archive.ubuntu.com/ubuntu gutsy universe \
        multiverse"

DIST=gutsy sudo pbuilder update

DIST=sid sudo pbuilder update --override-config --mirror \
http://http.us.debian.org/debian \
--othermirror "deb http://http.us.debian.org/debian sid contrib non-free"

DIST=gutsy pdebuild

9.Using special apt sources lists, and local packages

If you have some very specialized requirements on your apt setup inside pbuilder, it is possible to specify that through the --othermirror option. Try something like: --othermirror "deb http://local/mirror stable main|deb-src http://local/source/repository ./"

To use the local file system instead of HTTP, it is necessary to do bind-mounting. --bindmounts is a command-line option useful for such cases.

It might be convenient to use your built packages from inside the chroot. It is possible to automate the task with the following configuration. First, set up pbuilderrc to bindmount your build results directory.

BINDMOUNTS="/var/cache/pbuilder/result"

Then, add the following hook

# cat /var/cache/pbuilder/hooks/D70results
#!/bin/sh
cd /var/cache/pbuilder/result/
/usr/bin/dpkg-scanpackages . /dev/null > /var/cache/pbuilder/result/Packages
/usr/bin/apt-get update

This way, you can use deb file:/var/cache/pbuilder/result

To add new apt-key inside chroot:

sudo pbuilder --login --save-after-login
# apt-key add - <<EOF
...public key goes here...
EOF
# logout

10.How to get pbuilder to run apt-get update before trying to satisfy build-dependency

You can use hook scripts for this. D scripts are run before satisfying build-dependency.

This snippet comes from Ondrej Sury.

11.Different bash prompts inside pbuilder login

To make distinguishing bash prompts inside pbuilder easier, it is possible to set environment variables such as PS1 inside pbuilderrc

With versions of bash more recent than 2.05b-2-15, the value of the debian_chroot variable, if set, is included in the value of PS1 (the Bash prompt) inside the chroot. In prior versions of bash,[7] setting PS1 in pbuilderrc worked.

example of debian_chroot

	export debian_chroot="pbuild$$"

example of PS1

	export PS1="pbuild chroot 32165 # "

12.Creating a chroot reminder

Bash prompts will help you remember that you are inside a chroot. There are other cases where you may want other signs of being inside a chroot. Check out the examples/F90chrootmemo hook script. It will create a file called /CHROOT inside your chroot.

13.Using /var/cache/apt/archives for the package cache

For the help of low-bandwidth systems, it is possible to use /var/cache/apt/archives as the package cache. Just specify it instead of the default /var/cache/pbuilder/aptcache.

It is however not possible to do so currently with the user-mode-linux version of pbuilder, because /var/cache/apt/archives is usually only writable by root.

Use of dedicated tools such as apt-proxy is recommended, since caching of packages would benefit the system outside the scope of pbuilder.

14.pbuilder back ported to stable Debian releases

Currently stable back port of pbuilder is available at backports.org.

15.Warning about LOGNAME not being defined

You might see a lot of warning messages when running pbuilder.

	dpkg-genchanges: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)

It is currently safe to ignore this warning message. Please report back if you find any problem with having LOGNAME unset. Setting LOGNAME caused a few problems when invoking chroot. For example, dpkg requires getpwnam to succeed inside chroot, which means LOGNAME and the related user information have to be set up inside chroot.

16.Cannot Build-conflict against an essential package

pbuilder does not currently allow Build-Conflicts against essential packages. It should be obvious that essential packages should not be removed from a working Debian system, and a source package should not try to force removal of such packages on people building the package.

17.Avoiding the "ln: Invalid cross-device link" message

By default, pbuilder uses hard links to manage the pbuilder package cache. It is not possible to make hard links across different devices; and thus this error will occur, depending on your set up. If this happens, set

APTCACHEHARDLINK=no

in your pbuilderrc file. Note that packages in APTCACHE will be copied into chroot local cache, so plan for enough space on BUILDPLACE device.

18.Using fakechroot

It is possible to use fakechroot instead of being root to run pbuilder; however, several things make this impractical. fakechroot overrides library loads and tries to override default libc functions when providing the functionality of virtual chroot. However, some binaries do no use libc to function, or override the overriding provided by fakechroot. One example is ldd. Inside fakechroot, ldd will check the library dependency outside of the chroot, which is not the expected behavior.

To work around the problem, debootstrap has a --variant fakechroot option. Use that, so that ldd and ldconfig are overridden.

Make sure you have set your LD_PRELOAD path correctly, as described in the fakechroot manpage.

19.Using debconf inside pbuilder sessions

To use debconf inside pbuilder, setting DEBIAN_FRONTEND to readline in pbuilderrc should work. Setting it to dialog should also work, but make sure whiptail or dialog is installed inside the chroot.

20.nodev mount options hinder pbuilder activity

If you see messages such as this when building a chroot, you are mounting the file system with the nodev option.

	/var/lib/dpkg/info/base-files.postinst: /dev/null: Permission denied

You will also have problems if you mount the file system with the noexec option, or nosuid. Make sure you do not have these flags set when mounting the file system for /var/cache/pbuilder or $BUILDPLACE.

This is not a problem when using user-mode-linux.

See 316135 for example.

21.pbuilder is slow

pbuilder is often slow. The slowest part of pbuilder is extracting the tar.gz every time pbuilder is invoked. That can be avoided by using pbuilder-user-mode-linux. pbuilder-user-mode-linux uses COW file system, and thus does not need to clean up and recreate the root file system.

pbuilder-user-mode-linux is slower in executing the actual build system, due to the usual user-mode-linux overhead for system calls. It is more friendly to the hard drive.

pbuilder with cowdancer is also an alternative that improves speed of pbuilder startup.

22.Using pdebuild to sponsor package

To sign a package marking for sponsorship, it is possible to use --auto-debsign and --debsign-k options of pdebuild.

	pdebuild  --auto-debsign  --debsign-k XXXXXXXX

23.Why is there a source.changes file in ../?

When running pdebuild, pbuilder will run dpkg-buildpackage to create a Debian source package to pass it on to pbuilder. File named XXXX_YYY_source.changes is what remains from that process. It is harmless unless you try to upload it to the Debian archive.

This behavior is different when running through --use-pdebuild-internal

24.amd64 and i386-mode

amd64 architectures are capable of running binaries in i386 mode. It is possible to use pbuilder to run packages, using linux32 and debootstrap --arch option. Specifically, a command-line option like the following will work.

pbuilder create --distribution sid --debootstrapopts --arch --debootstrapopts i386 \
  --basetgz /var/cache/pbuilder/base-i386.tgz --mirror http://ftp.jp.debian.org/debian
linux32 pbuilder build --basetgz /var/cache/pbuilder/base-i386.tgz

25.Using tmpfs for buildplace

To improve speed of operation, it is possible to use tmpfs for pbuilder build location. Mount tmpfs to /var/cache/pbuilder/build, and set

APTCACHEHARDLINK=no

.

26.Using svn-buildpackage together with pbuilder

pdebuild command can be used with svn-buildpackage --svn-builder command-line option. [8]

alias svn-cowbuilder="svn-buildpackage --svn-builder='pdebuild --pbuilder cowbuilder"


[6] This part of the documentation contributed by Andres Mejia

This example was taken from a wiki (https://wiki.ubuntu.com/PbuilderHowto).

[7] Versions of bash from and before Debian 3.0

Chapter5.Troubleshooting and development

1.Reporting bugs

To report bugs, it would be important to have a log of what's going wrong. Most of the time, adding a --debug option and re-running the session should do the trick. Please send the log of such session along with your problem to ease the debugging process.

2.Mailing list

There is a mailing list for pbuilder on alioth (pbuilder-maint@lists.alioth.debian.org). You can subscribe through the alioth web interface. http://alioth.debian.org/mail/?group_id=30778.

3.IRC Channel

For coordination and communication, IRC channel #pbuilder on irc.oftc.net is used. Please log your intent there when you are going to start doing some changes and committing some change.

4.Information for pbuilder developers

This section tries to document current development practices and how things generally operate in development.

pbuilder is co-maintained with resources provided by Alioth. There is an Alioth project page at http://alioth.debian.org/projects/pbuilder. Home page is also available, at http://alioth.debian.org/projects/pbuilder which shows this text. git repository is available through http, git, or (if you have an account on alioth, ) ssh.

git-clone git://git.debian.org/git/pbuilder/pbuilder.git
git-clone http://git.debian.org/git/pbuilder/pbuilder.git
git-clone ssh://git.debian.org/git/pbuilder/pbuilder.git

Git commit message should have the first one line describing what the commit does, formatted in the way debian/changelog is formatted because it is copied verbatim to changelog via git-dch. The second line is empty, and the rest should describe the background and extra information related to implementation of the commit.

Test-suites are available in ./testsuite/ directory. Changes are expected not to break the test-suites. ./run-test.sh is a basic test-suite, which puts a summary in run-test.log, and run-test-cdebootstrap.log. ./run-test-regression.sh is a regression test-suite, which puts the result in run-test-regression.log. Currently, run-test.sh is ran automatically daily to ensure that pbuilder is working.

Table5.1.Directory structure of the testsuite

DirectoryMeaning
./testsuite/Directory for testsuite
./testsuite/run-test.shDaily regression test to test against Debian Archive changes breaking pbuilder.
./testsuite/run-test.logA summary of testsuite
./testsuite/normal/Directory for testsuite results of running pbuilder with debootstrap
./testsuite/cdebootstrap/Directory for testsuite results of running pbuilder with cdebootstrap
./testsuite/run-regression.shRegression testsuite, ran every time change is made to pbuilder to make sure there is no regression.
./testsuite/run-regression.logSummary of test result
./testsuite/regression/BugID-*.shRegression tests, exit 0 for success, exit 1 for failure
./testsuite/regression/BugID-*Files used for the regression testsuite.
./testsuite/regression/log/BugID-*.sh.logOutput of the regression test, output from the script is redirected by run-regression.sh

When making changes, changes should be documented in the Git commit log. git-dch will generate debian/changelog from the commit log. Make the first line of your commit log meaningful, and add any bug-closing information available. debian/changelog should not be edited directly unless when releasing a new version.

A TODO file is available in debian/TODO. It's mostly not well-maintained, but hopefully it will be more up-to-date when people start using it. emacs todoo-mode is used in editing the file.

When releasing a new version of pbuilder, the version is tagged with the git tag X.XXX (version number). This is done with ./git-tag.sh script available in the source tree.

Chapter6.Other uses of pbuilder

1.Using pbuilder for small experiments

There are cases when some small experimenting is required, and you do not want to damage the main system, like when installing experimental library packages, or compiling with experimental compilers. For such cases, the pbuilder login command is available.

pbuilder login is a debugging feature for pbuilder itself, but it also allows users to have a temporary chroot.

Note that the chroot is cleaned after logging out of the shell, and mounting file systems inside it is considered harmful.

2.Running little programs inside the chroot

To facilitate using pbuilder for other uses, pbuilder execute is available. pbuilder execute will take a script specified in the command-line argument, and invoke the script inside the chroot.

The script can be useful for sequences of operations such as installing ssh and adding a new user inside the chroot.

Chapter7.Experimental or wishlist features of pbuilder

There are some advanced features, above that of the basic feature of pbuilder, for some specific purposes.

1.Using LVM

LVM2 has a useful snapshot function that features Copy-on-write images. That could be used for pbuilder just as it can be used for the user-mode-linux pbuilder port. lvmpbuilder script in the examples directory implements such port. The scripts and documentation can be found under /usr/share/doc/pbuilder/examples/lvmpbuilder/.

2.Using cowdancer

cowdancer allows copy-on-write semantics on file system using hard links and hard-link-breaking-on-write tricks. pbuilder using cowdancer seems to be much faster and it is one ideal point for improvement. cowbuilder, a wrapper for pbuilder for using cowdancer is available from cowdancer package since 0.14

Example command-lines for cowbuilder look like the following.

# cowbuilder --create --distribution sid
# cowbuilder --update --distribution sid
# cowbuilder --build XXX.dsc

It is also possible to use cowdancer with pdebuild command. Specify with command-line option --pbuilder or set it in PDEBUILD_PBUILDER configuration option.

$ pdebuild --pbuilder cowbuilder

3.Using pbuilder without tar.gz

The --no-targz option of pbuilder will allow usage of pbuilder in a different way from conventional usage. It will try to use an existing chroot, and will not try to clean up after working on it. It is an operation mode more like sbuild.

It should be possible to create base chroot images for dchroot with the following commands:

# pbuilder create --distribution lenny --no-targz --basetgz /chroot/lenny
# pbuilder create --distribution squeeze --no-targz --basetgz /chroot/squeeze
# pbuilder create --distribution sid --no-targz --basetgz /chroot/sid

4.Using pbuilder in a vserver

It is possible to use pbuilder in a vserver environment. This requires either vserver-patches in version 2.1.1-rc14 or higher, or a Linux kernel version 2.6.16 or higher.

To use pbuilder in a vserver, you need to set the secure_mount CAPS in the ccapabilities of this vserver.

5.Usage of ccache

It is possible to use C compiler cache ccache to speed up repeated builds of the same package (or packages that compile the same files multiple times for some reason). Using ccache can speed up repeated building of large packages dramatically, at the cost of some disk space and bookkeeping.

To enable usage of ccache with pbuilder, you should set CCACHEDIR in your pbuilderrc file.

Current implementation of ccache support has several bugs, that CCACHEDIR must be owned by the pbuilder build user, and parallel runs of pbuilder is not supported. Therefore it is not enabled by default.

Chapter8.Reference materials

1.Directory structure outside the chroot

Table8.1.Directory Structure outside the chroot

DirectoryMeaning
/etc/pbuilderrcconfiguration file
/usr/share/pbuilder/pbuilderrcDefault configuration
/var/cache/pbuilder/base.tgzDefault location pbuilder uses for base.tgz, the tar-ball containing a basic Debian installation with only the build-essential packages.
/var/cache/pbuilder/build/PID/Default location pbuilder uses for chroot
/var/cache/pbuilder/aptcacheDefault location pbuilder will use as apt cache, to store deb packages required during pbuilder build.
/var/cache/pbuilder/ccacheDefault location pbuilder will use as cache location
/var/cache/pbuilder/resultDefault location pbuilder puts the deb files and other files created after build
/var/cache/pbuilder/pbuilder-umlresultDefault location pbuilder-user-mode-linux puts the deb files and other files created after build
/var/cache/pbuilder/pbuilder-mntDefault location pbuilder-user-mode-linux uses for mounting the COW file system, for chrooting.
/tmppbuilder-user-mode-linux will mount tmpfs for work.
${HOME}/tmp/PID.cowpbuilder-user-mode-linux use this directory for location of COW file system.
${HOME}/uml-imagepbuilder-user-mode-linux use this directory for user-mode-linux full disk image.

2.Directory structure inside the chroot

Table8.2.Directory Structure inside the chroot

DirectoryMeaning
/etc/mtab symlink to /proc/mounts.
/tmp/builddDefault place used in pbuilder to place the Debian package to be processed. /tmp/buildd/packagename-version/ will be the root directory of the package being processed. HOME environment variable is set to this value inside chroot by pbuilder-buildpackage. --inputfile will place files here.
/runscriptThe script passed as an argument to pbuilder execute is passed on.
/tmp/hooks The location of hooks.
/var/cache/apt/archives pbuilder copies the content of this directory to and from the aptcache directory of outside chroot.
/var/cache/pbuilder/ccache pbuilder bind-mounts this directory for use by ccache.
/tmp/XXXXpbuilder-user-mode-linux uses a script in /tmp to bootstrap into user-mode-linux

Chapter9.Minor archaeological details

1.Documentation history

This document was started on 28 Dec 2002 by Junichi Uekawa, trying to document what is known about pbuilder.

This documentation is available from the pbuilder source tar-ball, and from the git repository of pbuilder (web-based access is possible). A copy of this documentation can be found on the Alioth project page for pbuilder. There is also a PDF version. The homepage for pbuilder is http://pbuilder.alioth.debian.org/ hosted by alioth project.

Documentation is written using DocBook XML, with emacs PSGML mode, and using wysidocbookxml for live previewing.

2.Possibly inaccurate Background History of pbuilder

The following is a most possibly inaccurate account of how pbuilder came to happen, and other attempts to make something like pbuilder happen. This part of the document was originally in the AUTHORS file, to give credit to those who existed before pbuilder.

2.1.The Time Before pbuilder

There was once dbuild, which was a shell script to build Debian packages from source. Lars Wirzenius wrote that script, and it was good, short, and simple (probably). There was nothing like build-depends then (I think), and it was simple. It could have been improved, I could only find references and no actual source.

debbuild was probably written by James Troup. I don't know it because I have never seen the actual code, I could only find some references to it on the net, and mailing list logs.

sbuild is a perl script to build Debian packages from source. It parses Build-Depends, and performs other miscellaneous checks, and has a lot of hacks to actually get things building, including a table of what package to use when virtual packages are specified (does it do that still?). It supports the use of a local database for packages which do not have build-dependencies. It was written by Ronan Hodek, and I think it was patched and fixed and extended by several people. It is part of wanna-build, and used extensively in the Debian buildd system. I think it was maintained mostly by Ryan Murray.

2.2.Birth of pbuilder

wanna-build (sbuild) was (at the time of year 2001) quite difficult to set up, and it was never a Debian package. dbuild was something that predated Build-Depends.

Building packages from source using Build-Depends information within a chroot sounded trivial; and pbuilder was born. It was initially a shell script with only a few lines, which called debootstrap and chroot and dpkg-buildpackage in the same run, but soon, it was decided that that's too slow.

Yes, and it took almost an year to get things somewhat right, and in the middle of the process, Debian 3.0 was released. Yay. Debian 3.0 wasn't completely buildable with pbuilder, but the amount of packages which are not buildable is steadily decreasing (I hope).

2.3.And the second year of its life

Someone wanted pbuilder to not run as root, and as User-mode-linux has become more useful as time passed, I've started experimenting with pbuilder-user-mode-linux. pbuilder-user-mode-linux has not stayed functional as much as I would have liked, and bootstrapping user-mode-linux environment has been pretty hard, due to the quality of user-mode-linux code or packaging at that time, which kept on breaking network support in one way or the other.

2.4.Fifth year of pbuilder

pbuilder is now widely adopted as a 'almost standard' tool for testing packages, and building packages in a pristine environment. There are other similar tools that do similar tasks, but they do not share the exact same goal. To commemorate this fact, pbuilder is now co-maintained with several people.

sbuild is now a well-maintained Debian package within Debian, and with pbuilder being such a slow monster, some people prefer the approach of sbuild. Development to use LVM-snapshots, cowloop, or cowdancer is hoped to improve the situation somewhat.

pbuilder-0.215ubuntu7/Documentation/pbuilder-doc.css0000664000000000000000000000131212312041170017431 0ustar body { background-color: #fff; color: #000; } div.itemizedlist { } h1.title { color: #000; border-style: ridge; border-color: #ffaaaa; font-size: 200%; } h2.title { border-style: solid; border-color: #232; color: #232; font-size: 140%; } h3.title { border-style: solid; border-color: #ff99ee; background-color: #ff99ee; color: #000000; font-size: 120%; } pre.screen { color: #ffffff; background-color: #000000; } a:link { color: #a3a; } a:active { color: #000; } a:hover { color: #22f; background-color: #aaf; } a:visited { color: #000; } tr { background-color: #025; color: #eee; } td { background-color: #025; color: #eee; }pbuilder-0.215ubuntu7/Documentation/Makefile0000664000000000000000000000244412312041170016015 0ustar # makefile for documentation for pbuilder. #required packages: # docbook-xsl # ldp-docbook-xsl # xsltproc # po4a # dblatex # the main XML file which is source to all documents MASTERXML=pbuilder-doc.xml HTMLDOCS= pbuilder-doc.html pbuilder-doc.ja.html pbuilder-doc.fr.html pbuilder-doc.de.html all: $(HTMLDOCS) %.html: %.xml pbuilder-doc.xsl xsltproc pbuilder-doc.xsl $< > $@.tmp mv $@.tmp $@ pbuilder-doc.%.xml: pbuilder-doc.%.po po4a-translate -f docbook -m $(MASTERXML) -p $< -l $@ -k 1 pbuilder-doc.%.po: $(MASTERXML) po4a-updatepo -f docbook -m $< -p $@ %.pdf: %.xml # requires dblatex package. dblatex $< install: $(HTMLDOCS) pbuilder-doc.pdf install -d -m 755 -o root -g root $(DESTDIR)/usr/share/doc/pbuilder/ install -m 644 -o root -g root $(HTMLDOCS) $(DESTDIR)/usr/share/doc/pbuilder/ install -m 644 -o root -g root pbuilder-doc.pdf $(DESTDIR)/usr/share/doc/pbuilder/ preview: pbuilder-doc.html mozilla-firefox -remote "openfile($(PWD)/$<)" release: pbuilder-doc.html pbuilder-doc.xml pbuilder-doc.css pbuilder-doc.xsl pbuilder-doc.pdf scp $^ wagner.debian.org:/home/groups/pbuilder/htdocs/ clean: rm -f pbuilder-doc.pdf pbuilder-doc.glo pbuilder-doc.idx pbuilder-doc.log pbuilder-doc.out \ pbuilder-doc.aux pbuilder-doc.html.tmp .PHONY: preview release-netfort release clean pbuilder-0.215ubuntu7/Documentation/debconf7/0000775000000000000000000000000012312041256016045 5ustar pbuilder-0.215ubuntu7/Documentation/debconf7/.yatexrc0000664000000000000000000000004412312041170017516 0ustar (setq tmp-env-table '( ("frame") )) pbuilder-0.215ubuntu7/Documentation/debconf7/pbuilder-presentation.toc0000664000000000000000000000005012312041170023061 0ustar \beamer@endinputifotherversion {3.07pt} pbuilder-0.215ubuntu7/Documentation/debconf7/pbuilder-presentation.nav0000664000000000000000000000662112312041170023072 0ustar \beamer@endinputifotherversion {3.07pt} \headcommand {\slideentry {0}{0}{1}{1/1}{}{0}} \headcommand {\beamer@framepages {1}{1}} \headcommand {\slideentry {0}{0}{2}{2/2}{}{0}} \headcommand {\beamer@framepages {2}{2}} \headcommand {\slideentry {0}{0}{3}{3/3}{}{0}} \headcommand {\beamer@framepages {3}{3}} \headcommand {\slideentry {0}{0}{4}{4/4}{}{0}} \headcommand {\beamer@framepages {4}{4}} \headcommand {\slideentry {0}{0}{5}{5/5}{}{0}} \headcommand {\beamer@framepages {5}{5}} \headcommand {\slideentry {0}{0}{6}{6/6}{}{0}} \headcommand {\beamer@framepages {6}{6}} \headcommand {\slideentry {0}{0}{7}{7/7}{}{0}} \headcommand {\beamer@framepages {7}{7}} \headcommand {\slideentry {0}{0}{8}{8/8}{}{0}} \headcommand {\beamer@framepages {8}{8}} \headcommand {\slideentry {0}{0}{9}{9/9}{}{0}} \headcommand {\beamer@framepages {9}{9}} \headcommand {\slideentry {0}{0}{10}{10/10}{}{0}} \headcommand {\beamer@framepages {10}{10}} \headcommand {\slideentry {0}{0}{11}{11/11}{}{0}} \headcommand {\beamer@framepages {11}{11}} \headcommand {\slideentry {0}{0}{12}{12/12}{}{0}} \headcommand {\beamer@framepages {12}{12}} \headcommand {\slideentry {0}{0}{13}{13/13}{}{0}} \headcommand {\beamer@framepages {13}{13}} \headcommand {\slideentry {0}{0}{14}{14/14}{}{0}} \headcommand {\beamer@framepages {14}{14}} \headcommand {\slideentry {0}{0}{15}{15/15}{}{0}} \headcommand {\beamer@framepages {15}{15}} \headcommand {\slideentry {0}{0}{16}{16/16}{}{0}} \headcommand {\beamer@framepages {16}{16}} \headcommand {\slideentry {0}{0}{17}{17/17}{}{0}} \headcommand {\beamer@framepages {17}{17}} \headcommand {\slideentry {0}{0}{18}{18/18}{}{0}} \headcommand {\beamer@framepages {18}{18}} \headcommand {\slideentry {0}{0}{19}{19/19}{}{0}} \headcommand {\beamer@framepages {19}{19}} \headcommand {\slideentry {0}{0}{20}{20/20}{}{0}} \headcommand {\beamer@framepages {20}{20}} \headcommand {\slideentry {0}{0}{21}{21/21}{}{0}} \headcommand {\beamer@framepages {21}{21}} \headcommand {\slideentry {0}{0}{22}{22/22}{}{0}} \headcommand {\beamer@framepages {22}{22}} \headcommand {\slideentry {0}{0}{23}{23/23}{}{0}} \headcommand {\beamer@framepages {23}{23}} \headcommand {\slideentry {0}{0}{24}{24/24}{}{0}} \headcommand {\beamer@framepages {24}{24}} \headcommand {\slideentry {0}{0}{25}{25/25}{}{0}} \headcommand {\beamer@framepages {25}{25}} \headcommand {\slideentry {0}{0}{26}{26/26}{}{0}} \headcommand {\beamer@framepages {26}{26}} \headcommand {\slideentry {0}{0}{27}{27/27}{}{0}} \headcommand {\beamer@framepages {27}{27}} \headcommand {\slideentry {0}{0}{28}{28/28}{}{0}} \headcommand {\beamer@framepages {28}{28}} \headcommand {\slideentry {0}{0}{29}{29/29}{}{0}} \headcommand {\beamer@framepages {29}{29}} \headcommand {\slideentry {0}{0}{30}{30/30}{}{0}} \headcommand {\beamer@framepages {30}{30}} \headcommand {\slideentry {0}{0}{31}{31/31}{}{0}} \headcommand {\beamer@framepages {31}{31}} \headcommand {\slideentry {0}{0}{32}{32/32}{}{0}} \headcommand {\beamer@framepages {32}{32}} \headcommand {\slideentry {0}{0}{33}{33/33}{}{0}} \headcommand {\beamer@framepages {33}{33}} \headcommand {\slideentry {0}{0}{34}{34/34}{}{0}} \headcommand {\beamer@framepages {34}{34}} \headcommand {\slideentry {0}{0}{35}{35/35}{}{0}} \headcommand {\beamer@framepages {35}{35}} \headcommand {\beamer@partpages {1}{35}} \headcommand {\beamer@subsectionpages {1}{35}} \headcommand {\beamer@sectionpages {1}{35}} \headcommand {\beamer@documentpages {35}} \headcommand {\def \inserttotalframenumber {35}} pbuilder-0.215ubuntu7/Documentation/debconf7/pbuildercycle.eps0000664000000000000000000001511412312041170021401 0ustar %!PS-Adobe-2.0 %%Creator: dot version 2.8 (Fri Dec 8 11:26:38 UTC 2006) %%For: (dancer) Junichi Uekawa,,, %%Title: structure %%Pages: (atend) %%BoundingBox: 36 36 176 224 %%EndComments save %%BeginProlog /DotDict 200 dict def DotDict begin /setupLatin1 { mark /EncodingVector 256 array def EncodingVector 0 ISOLatin1Encoding 0 255 getinterval putinterval EncodingVector 45 /hyphen put % Set up ISO Latin 1 character encoding /starnetISO { dup dup findfont dup length dict begin { 1 index /FID ne { def }{ pop pop } ifelse } forall /Encoding EncodingVector def currentdict end definefont } def /Times-Roman starnetISO def /Times-Italic starnetISO def /Times-Bold starnetISO def /Times-BoldItalic starnetISO def /Helvetica starnetISO def /Helvetica-Oblique starnetISO def /Helvetica-Bold starnetISO def /Helvetica-BoldOblique starnetISO def /Courier starnetISO def /Courier-Oblique starnetISO def /Courier-Bold starnetISO def /Courier-BoldOblique starnetISO def cleartomark } bind def %%BeginResource: procset graphviz 0 0 /coord-font-family /Times-Roman def /default-font-family /Times-Roman def /coordfont coord-font-family findfont 8 scalefont def /InvScaleFactor 1.0 def /set_scale { dup 1 exch div /InvScaleFactor exch def dup scale } bind def % styles /solid { [] 0 setdash } bind def /dashed { [9 InvScaleFactor mul dup ] 0 setdash } bind def /dotted { [1 InvScaleFactor mul 6 InvScaleFactor mul] 0 setdash } bind def /invis {/fill {newpath} def /stroke {newpath} def /show {pop newpath} def} bind def /bold { 2 setlinewidth } bind def /filled { } bind def /unfilled { } bind def /rounded { } bind def /diagonals { } bind def % hooks for setting color /nodecolor { sethsbcolor } bind def /edgecolor { sethsbcolor } bind def /graphcolor { sethsbcolor } bind def /nopcolor {pop pop pop} bind def /beginpage { % i j npages /npages exch def /j exch def /i exch def /str 10 string def npages 1 gt { gsave coordfont setfont 0 0 moveto (\() show i str cvs show (,) show j str cvs show (\)) show grestore } if } bind def /set_font { findfont exch scalefont setfont } def % draw aligned label in bounding box aligned to current point /alignedtext { % width adj text /text exch def /adj exch def /width exch def gsave width 0 gt { text stringwidth pop adj mul 0 rmoveto } if [] 0 setdash text show grestore } def /boxprim { % xcorner ycorner xsize ysize 4 2 roll moveto 2 copy exch 0 rlineto 0 exch rlineto pop neg 0 rlineto closepath } bind def /ellipse_path { /ry exch def /rx exch def /y exch def /x exch def matrix currentmatrix newpath x y translate rx ry scale 0 0 1 0 360 arc setmatrix } bind def /endpage { showpage } bind def /showpage { } def /layercolorseq [ % layer color sequence - darkest to lightest [0 0 0] [.2 .8 .8] [.4 .8 .8] [.6 .8 .8] [.8 .8 .8] ] def /layerlen layercolorseq length def /setlayer {/maxlayer exch def /curlayer exch def layercolorseq curlayer 1 sub layerlen mod get aload pop sethsbcolor /nodecolor {nopcolor} def /edgecolor {nopcolor} def /graphcolor {nopcolor} def } bind def /onlayer { curlayer ne {invis} if } def /onlayers { /myupper exch def /mylower exch def curlayer mylower lt curlayer myupper gt or {invis} if } def /curlayer 0 def %%EndResource %%EndProlog %%BeginSetup 14 default-font-family set_font 1 setmiterlimit % /arrowlength 10 def % /arrowwidth 5 def % make sure pdfmark is harmless for PS-interpreters other than Distiller /pdfmark where {pop} {userdict /pdfmark /cleartomark load put} ifelse % make '<<' and '>>' safe on PS Level 1 devices /languagelevel where {pop languagelevel}{1} ifelse 2 lt { userdict (<<) cvn ([) cvn load put userdict (>>) cvn ([) cvn load put } if %%EndSetup %%Page: 1 1 %%PageBoundingBox: 36 36 176 224 %%PageOrientation: Portrait gsave 36 36 140 188 boxprim clip newpath 36 36 translate 0 0 1 beginpage 1.0000 set_scale 4 4 translate 0 rotate 0.000 0.000 1.000 graphcolor 0.000 0.000 1.000 graphcolor newpath -6 -6 moveto -6 186 lineto 138 186 lineto 138 -6 lineto closepath fill 0.000 0.000 1.000 graphcolor newpath -6 -6 moveto -6 186 lineto 138 186 lineto 138 -6 lineto closepath stroke 0.000 0.000 0.000 graphcolor 14.00 /Times-Roman set_font % pbuilder create gsave 10 dict begin 57 162 55 18 ellipse_path stroke gsave 10 dict begin 14 157 moveto (pbuilder create) [6.96 6.96 6.96 3.84 3.84 6.96 6.24 4.56 3.6 6.24 4.56 6.24 6.24 3.84 6.24] xshow end grestore end grestore % pbuilder update gsave 10 dict begin 57 90 57 18 ellipse_path stroke gsave 10 dict begin 12 85 moveto (pbuilder update) [6.96 6.96 6.96 3.84 3.84 6.96 6.24 4.56 3.6 6.96 6.96 6.96 6.24 3.84 6.24] xshow end grestore end grestore % pbuilder create->pbuilder update newpath 57 144 moveto 57 136 57 127 57 118 curveto stroke gsave 10 dict begin solid 1 setlinewidth 0.000 0.000 0.000 edgecolor newpath 61 118 moveto 57 108 lineto 54 118 lineto closepath fill 0.000 0.000 0.000 edgecolor newpath 61 118 moveto 57 108 lineto 54 118 lineto closepath stroke end grestore % pbuilder update->pbuilder update newpath 74 107 moveto 100 125 132 119 132 90 curveto 132 64 107 57 83 68 curveto stroke gsave 10 dict begin solid 1 setlinewidth 0.000 0.000 0.000 edgecolor newpath 81 65 moveto 74 73 lineto 84 71 lineto closepath fill 0.000 0.000 0.000 edgecolor newpath 81 65 moveto 74 73 lineto 84 71 lineto closepath stroke end grestore % pbuilder build gsave 10 dict begin 57 18 53 18 ellipse_path stroke gsave 10 dict begin 17 13 moveto (pbuilder build) [6.96 6.96 6.96 3.84 3.84 6.96 6.24 4.56 3.6 6.96 6.96 3.84 3.84 6.96] xshow end grestore end grestore % pbuilder update->pbuilder build newpath 45 72 moveto 44 64 43 55 44 46 curveto stroke gsave 10 dict begin solid 1 setlinewidth 0.000 0.000 0.000 edgecolor newpath 47 46 moveto 45 36 lineto 41 46 lineto closepath fill 0.000 0.000 0.000 edgecolor newpath 47 46 moveto 45 36 lineto 41 46 lineto closepath stroke end grestore % pbuilder update->pbuilder build newpath 57 72 moveto 57 64 57 55 57 46 curveto stroke gsave 10 dict begin solid 1 setlinewidth 0.000 0.000 0.000 edgecolor newpath 61 46 moveto 57 36 lineto 54 46 lineto closepath fill 0.000 0.000 0.000 edgecolor newpath 61 46 moveto 57 36 lineto 54 46 lineto closepath stroke end grestore % pbuilder update->pbuilder build newpath 69 72 moveto 70 64 71 55 70 46 curveto stroke gsave 10 dict begin solid 1 setlinewidth 0.000 0.000 0.000 edgecolor newpath 73 46 moveto 69 36 lineto 67 46 lineto closepath fill 0.000 0.000 0.000 edgecolor newpath 73 46 moveto 69 36 lineto 67 46 lineto closepath stroke end grestore endpage showpage grestore %%PageTrailer %%EndPage: 1 %%Trailer %%Pages: 1 end restore %%EOF pbuilder-0.215ubuntu7/Documentation/debconf7/chroot.eps0000664000000000000000000010322512312041170020052 0ustar %!PS-Adobe-2.0 EPSF-2.0 %%Title: /home/dancer/DEBIAN/pbuilder/pbuilder/Documentation/debconf7/chroot.dia %%Creator: Dia v0.95 %%CreationDate: Mon Jun 18 18:34:59 2007 %%For: dancer %%Orientation: Portrait %%Magnification: 1.0000 %%BoundingBox: 0 0 478 283 %%BeginSetup %%EndSetup %%EndComments %%BeginProlog [ /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /space /exclam /quotedbl /numbersign /dollar /percent /ampersand /quoteright /parenleft /parenright /asterisk /plus /comma /hyphen /period /slash /zero /one /two /three /four /five /six /seven /eight /nine /colon /semicolon /less /equal /greater /question /at /A /B /C /D /E /F /G /H /I /J /K /L /M /N /O /P /Q /R /S /T /U /V /W /X /Y /Z /bracketleft /backslash /bracketright /asciicircum /underscore /quoteleft /a /b /c /d /e /f /g /h /i /j /k /l /m /n /o /p /q /r /s /t /u /v /w /x /y /z /braceleft /bar /braceright /asciitilde /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /space /exclamdown /cent /sterling /currency /yen /brokenbar /section /dieresis /copyright /ordfeminine /guillemotleft /logicalnot /hyphen /registered /macron /degree /plusminus /twosuperior /threesuperior /acute /mu /paragraph /periodcentered /cedilla /onesuperior /ordmasculine /guillemotright /onequarter /onehalf /threequarters /questiondown /Agrave /Aacute /Acircumflex /Atilde /Adieresis /Aring /AE /Ccedilla /Egrave /Eacute /Ecircumflex /Edieresis /Igrave /Iacute /Icircumflex /Idieresis /Eth /Ntilde /Ograve /Oacute /Ocircumflex /Otilde /Odieresis /multiply /Oslash /Ugrave /Uacute /Ucircumflex /Udieresis /Yacute /Thorn /germandbls /agrave /aacute /acircumflex /atilde /adieresis /aring /ae /ccedilla /egrave /eacute /ecircumflex /edieresis /igrave /iacute /icircumflex /idieresis /eth /ntilde /ograve /oacute /ocircumflex /otilde /odieresis /divide /oslash /ugrave /uacute /ucircumflex /udieresis /yacute /thorn /ydieresis] /isolatin1encoding exch def /cp {closepath} bind def /c {curveto} bind def /f {fill} bind def /a {arc} bind def /ef {eofill} bind def /ex {exch} bind def /gr {grestore} bind def /gs {gsave} bind def /sa {save} bind def /rs {restore} bind def /l {lineto} bind def /m {moveto} bind def /rm {rmoveto} bind def /n {newpath} bind def /s {stroke} bind def /sh {show} bind def /slc {setlinecap} bind def /slj {setlinejoin} bind def /slw {setlinewidth} bind def /srgb {setrgbcolor} bind def /rot {rotate} bind def /sc {scale} bind def /sd {setdash} bind def /ff {findfont} bind def /sf {setfont} bind def /scf {scalefont} bind def /sw {stringwidth pop} bind def /tr {translate} bind def /ellipsedict 8 dict def ellipsedict /mtrx matrix put /ellipse { ellipsedict begin /endangle exch def /startangle exch def /yrad exch def /xrad exch def /y exch def /x exch def /savematrix mtrx currentmatrix def x y tr xrad yrad sc 0 0 1 startangle endangle arc savematrix setmatrix end } def /mergeprocs { dup length 3 -1 roll dup length dup 5 1 roll 3 -1 roll add array cvx dup 3 -1 roll 0 exch putinterval dup 4 2 roll putinterval } bind def /dpi_x 300 def /dpi_y 300 def /conicto { /to_y exch def /to_x exch def /conic_cntrl_y exch def /conic_cntrl_x exch def currentpoint /p0_y exch def /p0_x exch def /p1_x p0_x conic_cntrl_x p0_x sub 2 3 div mul add def /p1_y p0_y conic_cntrl_y p0_y sub 2 3 div mul add def /p2_x p1_x to_x p0_x sub 1 3 div mul add def /p2_y p1_y to_y p0_y sub 1 3 div mul add def p1_x p1_y p2_x p2_y to_x to_y curveto } bind def /start_ol { gsave 1.1 dpi_x div dup scale} bind def /end_ol { closepath fill grestore } bind def 28.346000 -28.346000 scale -12.929289 -12.400000 translate %%EndProlog 0.000000 0.000000 0.000000 srgb gsave 15.000000 7.000000 translate 0.035278 -0.035278 scale start_ol 448 986 moveto 448 2496 lineto 832 2496 lineto 832 1001 lineto 832 629 978 442 conicto 1124 256 1417 256 conicto 1768 256 1972 477 conicto 2176 699 2176 1081 conicto 2176 2496 lineto 2560 2496 lineto 2560 0 lineto 2176 0 lineto 2176 384 lineto 2022 157 1819 46 conicto 1617 -64 1349 -64 conicto 906 -64 677 203 conicto 448 471 448 986 conicto end_ol grestore gsave 15.389467 7.000000 translate 0.035278 -0.035278 scale start_ol 2048 2432 moveto 2048 2048 lineto 1868 2144 1674 2192 conicto 1480 2240 1273 2240 conicto 957 2240 798 2144 conicto 640 2048 640 1856 conicto 640 1709 757 1625 conicto 875 1542 1229 1467 conicto 1380 1435 lineto 1812 1341 1994 1170 conicto 2176 999 2176 692 conicto 2176 343 1899 139 conicto 1622 -64 1137 -64 conicto 936 -64 717 -32 conicto 498 0 256 64 conicto 256 512 lineto 490 385 718 320 conicto 947 256 1170 256 conicto 1470 256 1631 358 conicto 1792 461 1792 647 conicto 1792 820 1670 912 conicto 1549 1004 1141 1089 conicto 988 1123 lineto 600 1203 428 1369 conicto 256 1535 256 1824 conicto 256 2177 510 2368 conicto 765 2560 1233 2560 conicto 1466 2560 1670 2528 conicto 1875 2496 2048 2432 conicto end_ol grestore gsave 15.711200 7.000000 translate 0.035278 -0.035278 scale start_ol 1920 2112 moveto 1848 2178 1764 2209 conicto 1680 2240 1578 2240 conicto 1218 2240 1025 2001 conicto 832 1763 832 1317 conicto 832 0 lineto 448 0 lineto 448 2496 lineto 832 2496 lineto 832 2112 lineto 965 2339 1180 2449 conicto 1396 2560 1702 2560 conicto 1747 2560 1799 2560 conicto 1852 2560 1917 2560 conicto 1920 2112 lineto end_ol grestore gsave 15.000000 8.000000 translate 0.035278 -0.035278 scale start_ol 128 2496 moveto 563 2496 lineto 1344 401 lineto 2125 2496 lineto 2560 2496 lineto 1623 0 lineto 1065 0 lineto 128 2496 lineto end_ol grestore gsave 15.364067 8.000000 translate 0.035278 -0.035278 scale start_ol 1559 1280 moveto 1040 1280 840 1160 conicto 640 1041 640 754 conicto 640 525 790 390 conicto 940 256 1198 256 conicto 1554 256 1769 510 conicto 1984 765 1984 1187 conicto 1984 1280 lineto 1559 1280 lineto 2368 1449 moveto 2368 0 lineto 1984 0 lineto 1984 384 lineto 1842 154 1628 45 conicto 1415 -64 1107 -64 conicto 717 -64 486 154 conicto 256 372 256 739 conicto 256 1166 539 1383 conicto 822 1600 1384 1600 conicto 1984 1600 lineto 1984 1641 lineto 1984 1927 1796 2083 conicto 1608 2240 1266 2240 conicto 1049 2240 843 2192 conicto 638 2144 448 2048 conicto 448 2432 lineto 673 2496 884 2528 conicto 1095 2560 1295 2560 conicto 1835 2560 2101 2284 conicto 2368 2009 2368 1449 conicto end_ol grestore gsave 15.736600 8.000000 translate 0.035278 -0.035278 scale start_ol 1920 2112 moveto 1848 2178 1764 2209 conicto 1680 2240 1578 2240 conicto 1218 2240 1025 2001 conicto 832 1763 832 1317 conicto 832 0 lineto 448 0 lineto 448 2496 lineto 832 2496 lineto 832 2112 lineto 965 2339 1180 2449 conicto 1396 2560 1702 2560 conicto 1747 2560 1799 2560 conicto 1852 2560 1917 2560 conicto 1920 2112 lineto end_ol grestore gsave 15.000000 5.000000 translate 0.035278 -0.035278 scale start_ol 2240 1249 moveto 2240 1713 2052 1976 conicto 1865 2240 1536 2240 conicto 1208 2240 1020 1976 conicto 832 1713 832 1249 conicto 832 784 1020 520 conicto 1208 256 1536 256 conicto 1865 256 2052 520 conicto 2240 784 2240 1249 conicto 832 2112 moveto 963 2340 1164 2450 conicto 1366 2560 1645 2560 conicto 2108 2560 2398 2198 conicto 2688 1837 2688 1248 conicto 2688 659 2398 297 conicto 2108 -64 1645 -64 conicto 1366 -64 1164 46 conicto 963 156 832 384 conicto 832 0 lineto 448 0 lineto 448 3520 lineto 832 3520 lineto 832 2112 lineto end_ol grestore gsave 15.389467 5.000000 translate 0.035278 -0.035278 scale start_ol 448 2496 moveto 832 2496 lineto 832 0 lineto 448 0 lineto 448 2496 lineto 448 3520 moveto 832 3520 lineto 832 3008 lineto 448 3008 lineto 448 3520 lineto end_ol grestore gsave 15.558800 5.000000 translate 0.035278 -0.035278 scale start_ol 2560 1509 moveto 2560 0 lineto 2176 0 lineto 2176 1496 lineto 2176 1869 2029 2054 conicto 1883 2240 1590 2240 conicto 1238 2240 1035 2018 conicto 832 1796 832 1413 conicto 832 0 lineto 448 0 lineto 448 2496 lineto 832 2496 lineto 832 2112 lineto 983 2337 1188 2448 conicto 1394 2560 1662 2560 conicto 2106 2560 2333 2293 conicto 2560 2027 2560 1509 conicto end_ol grestore gsave 15.000000 3.000000 translate 0.035278 -0.035278 scale start_ol 2560 1509 moveto 2560 0 lineto 2176 0 lineto 2176 1496 lineto 2176 1869 2029 2054 conicto 1883 2240 1590 2240 conicto 1238 2240 1035 2018 conicto 832 1796 832 1413 conicto 832 0 lineto 448 0 lineto 448 3520 lineto 832 3520 lineto 832 2112 lineto 983 2337 1188 2448 conicto 1394 2560 1662 2560 conicto 2106 2560 2333 2293 conicto 2560 2027 2560 1509 conicto end_ol grestore gsave 15.389467 3.000000 translate 0.035278 -0.035278 scale start_ol 1409 2240 moveto 1083 2240 893 1974 conicto 704 1709 704 1248 conicto 704 787 892 521 conicto 1081 256 1409 256 conicto 1733 256 1922 522 conicto 2112 789 2112 1248 conicto 2112 1705 1922 1972 conicto 1733 2240 1409 2240 conicto 1408 2560 moveto 1946 2560 2253 2212 conicto 2560 1864 2560 1248 conicto 2560 634 2253 285 conicto 1946 -64 1408 -64 conicto 869 -64 562 285 conicto 256 634 256 1248 conicto 256 1864 562 2212 conicto 869 2560 1408 2560 conicto end_ol grestore gsave 15.762000 3.000000 translate 0.035278 -0.035278 scale start_ol 2431 2020 moveto 2590 2296 2809 2428 conicto 3029 2560 3325 2560 conicto 3726 2560 3943 2287 conicto 4160 2014 4160 1509 conicto 4160 0 lineto 3776 0 lineto 3776 1496 lineto 3776 1874 3641 2057 conicto 3506 2240 3228 2240 conicto 2890 2240 2693 2018 conicto 2496 1796 2496 1413 conicto 2496 0 lineto 2112 0 lineto 2112 1496 lineto 2112 1876 1976 2058 conicto 1841 2240 1560 2240 conicto 1225 2240 1028 2017 conicto 832 1794 832 1413 conicto 832 0 lineto 448 0 lineto 448 2496 lineto 832 2496 lineto 832 2112 lineto 977 2341 1180 2450 conicto 1383 2560 1662 2560 conicto 1942 2560 2139 2422 conicto 2337 2284 2431 2020 conicto end_ol grestore gsave 16.354667 3.000000 translate 0.035278 -0.035278 scale start_ol 2624 1352 moveto 2624 1152 lineto 704 1152 lineto 731 715 960 485 conicto 1189 256 1597 256 conicto 1834 256 2056 320 conicto 2278 384 2496 512 conicto 2496 128 lineto 2273 34 2039 -15 conicto 1805 -64 1565 -64 conicto 961 -64 608 284 conicto 256 632 256 1225 conicto 256 1839 595 2199 conicto 934 2560 1509 2560 conicto 2024 2560 2324 2235 conicto 2624 1910 2624 1352 conicto 2240 1472 moveto 2235 1822 2043 2031 conicto 1852 2240 1537 2240 conicto 1180 2240 965 2038 conicto 750 1836 718 1470 conicto 2240 1472 lineto end_ol grestore gsave 15.000000 4.000000 translate 0.035278 -0.035278 scale start_ol 832 3200 moveto 832 2496 lineto 1664 2496 lineto 1664 2176 lineto 832 2176 lineto 832 804 lineto 832 495 914 407 conicto 997 320 1248 320 conicto 1664 320 lineto 1664 0 lineto 1248 0 lineto 793 0 620 173 conicto 448 347 448 804 conicto 448 2176 lineto 128 2176 lineto 128 2496 lineto 448 2496 lineto 448 3200 lineto 832 3200 lineto end_ol grestore gsave 15.237067 4.000000 translate 0.035278 -0.035278 scale start_ol 2431 2020 moveto 2590 2296 2809 2428 conicto 3029 2560 3325 2560 conicto 3726 2560 3943 2287 conicto 4160 2014 4160 1509 conicto 4160 0 lineto 3776 0 lineto 3776 1496 lineto 3776 1874 3641 2057 conicto 3506 2240 3228 2240 conicto 2890 2240 2693 2018 conicto 2496 1796 2496 1413 conicto 2496 0 lineto 2112 0 lineto 2112 1496 lineto 2112 1876 1976 2058 conicto 1841 2240 1560 2240 conicto 1225 2240 1028 2017 conicto 832 1794 832 1413 conicto 832 0 lineto 448 0 lineto 448 2496 lineto 832 2496 lineto 832 2112 lineto 977 2341 1180 2450 conicto 1383 2560 1662 2560 conicto 1942 2560 2139 2422 conicto 2337 2284 2431 2020 conicto end_ol grestore gsave 15.829733 4.000000 translate 0.035278 -0.035278 scale start_ol 832 384 moveto 832 -960 lineto 448 -960 lineto 448 2496 lineto 832 2496 lineto 832 2112 lineto 963 2340 1164 2450 conicto 1366 2560 1645 2560 conicto 2108 2560 2398 2198 conicto 2688 1837 2688 1248 conicto 2688 659 2398 297 conicto 2108 -64 1645 -64 conicto 1366 -64 1164 46 conicto 963 156 832 384 conicto 2240 1249 moveto 2240 1713 2052 1976 conicto 1865 2240 1536 2240 conicto 1208 2240 1020 1976 conicto 832 1713 832 1249 conicto 832 784 1020 520 conicto 1208 256 1536 256 conicto 1865 256 2052 520 conicto 2240 784 2240 1249 conicto end_ol grestore gsave 15.000000 6.000000 translate 0.035278 -0.035278 scale start_ol 448 3520 moveto 832 3520 lineto 832 0 lineto 448 0 lineto 448 3520 lineto end_ol grestore gsave 15.169333 6.000000 translate 0.035278 -0.035278 scale start_ol 448 2496 moveto 832 2496 lineto 832 0 lineto 448 0 lineto 448 2496 lineto 448 3520 moveto 832 3520 lineto 832 3008 lineto 448 3008 lineto 448 3520 lineto end_ol grestore gsave 15.338667 6.000000 translate 0.035278 -0.035278 scale start_ol 2240 1249 moveto 2240 1713 2052 1976 conicto 1865 2240 1536 2240 conicto 1208 2240 1020 1976 conicto 832 1713 832 1249 conicto 832 784 1020 520 conicto 1208 256 1536 256 conicto 1865 256 2052 520 conicto 2240 784 2240 1249 conicto 832 2112 moveto 963 2340 1164 2450 conicto 1366 2560 1645 2560 conicto 2108 2560 2398 2198 conicto 2688 1837 2688 1248 conicto 2688 659 2398 297 conicto 2108 -64 1645 -64 conicto 1366 -64 1164 46 conicto 963 156 832 384 conicto 832 0 lineto 448 0 lineto 448 3520 lineto 832 3520 lineto 832 2112 lineto end_ol grestore gsave 18.000000 8.000000 translate 0.035278 -0.035278 scale start_ol 2240 2432 moveto 2240 2048 lineto 2066 2144 1892 2192 conicto 1718 2240 1541 2240 conicto 1143 2240 923 1979 conicto 704 1718 704 1248 conicto 704 778 923 517 conicto 1143 256 1541 256 conicto 1718 256 1892 304 conicto 2066 352 2240 448 conicto 2240 64 lineto 2068 0 1883 -32 conicto 1698 -64 1490 -64 conicto 924 -64 590 290 conicto 256 645 256 1248 conicto 256 1859 593 2209 conicto 931 2560 1517 2560 conicto 1707 2560 1888 2528 conicto 2070 2496 2240 2432 conicto end_ol grestore gsave 18.338667 8.000000 translate 0.035278 -0.035278 scale start_ol 1559 1280 moveto 1040 1280 840 1160 conicto 640 1041 640 754 conicto 640 525 790 390 conicto 940 256 1198 256 conicto 1554 256 1769 510 conicto 1984 765 1984 1187 conicto 1984 1280 lineto 1559 1280 lineto 2368 1449 moveto 2368 0 lineto 1984 0 lineto 1984 384 lineto 1842 154 1628 45 conicto 1415 -64 1107 -64 conicto 717 -64 486 154 conicto 256 372 256 739 conicto 256 1166 539 1383 conicto 822 1600 1384 1600 conicto 1984 1600 lineto 1984 1641 lineto 1984 1927 1796 2083 conicto 1608 2240 1266 2240 conicto 1049 2240 843 2192 conicto 638 2144 448 2048 conicto 448 2432 lineto 673 2496 884 2528 conicto 1095 2560 1295 2560 conicto 1835 2560 2101 2284 conicto 2368 2009 2368 1449 conicto end_ol grestore gsave 18.711200 8.000000 translate 0.035278 -0.035278 scale start_ol 2240 2432 moveto 2240 2048 lineto 2066 2144 1892 2192 conicto 1718 2240 1541 2240 conicto 1143 2240 923 1979 conicto 704 1718 704 1248 conicto 704 778 923 517 conicto 1143 256 1541 256 conicto 1718 256 1892 304 conicto 2066 352 2240 448 conicto 2240 64 lineto 2068 0 1883 -32 conicto 1698 -64 1490 -64 conicto 924 -64 590 290 conicto 256 645 256 1248 conicto 256 1859 593 2209 conicto 931 2560 1517 2560 conicto 1707 2560 1888 2528 conicto 2070 2496 2240 2432 conicto end_ol grestore gsave 19.049867 8.000000 translate 0.035278 -0.035278 scale start_ol 2560 1509 moveto 2560 0 lineto 2176 0 lineto 2176 1496 lineto 2176 1869 2029 2054 conicto 1883 2240 1590 2240 conicto 1238 2240 1035 2018 conicto 832 1796 832 1413 conicto 832 0 lineto 448 0 lineto 448 3520 lineto 832 3520 lineto 832 2112 lineto 983 2337 1188 2448 conicto 1394 2560 1662 2560 conicto 2106 2560 2333 2293 conicto 2560 2027 2560 1509 conicto end_ol grestore gsave 19.439333 8.000000 translate 0.035278 -0.035278 scale start_ol 2624 1352 moveto 2624 1152 lineto 704 1152 lineto 731 715 960 485 conicto 1189 256 1597 256 conicto 1834 256 2056 320 conicto 2278 384 2496 512 conicto 2496 128 lineto 2273 34 2039 -15 conicto 1805 -64 1565 -64 conicto 961 -64 608 284 conicto 256 632 256 1225 conicto 256 1839 595 2199 conicto 934 2560 1509 2560 conicto 2024 2560 2324 2235 conicto 2624 1910 2624 1352 conicto 2240 1472 moveto 2235 1822 2043 2031 conicto 1852 2240 1537 2240 conicto 1180 2240 965 2038 conicto 750 1836 718 1470 conicto 2240 1472 lineto end_ol grestore gsave 19.811867 8.000000 translate 0.035278 -0.035278 scale start_ol 1157 3328 moveto 1536 3328 lineto 379 -448 lineto 0 -448 lineto 1157 3328 lineto end_ol grestore gsave 20.015067 8.000000 translate 0.035278 -0.035278 scale start_ol 832 384 moveto 832 -960 lineto 448 -960 lineto 448 2496 lineto 832 2496 lineto 832 2112 lineto 963 2340 1164 2450 conicto 1366 2560 1645 2560 conicto 2108 2560 2398 2198 conicto 2688 1837 2688 1248 conicto 2688 659 2398 297 conicto 2108 -64 1645 -64 conicto 1366 -64 1164 46 conicto 963 156 832 384 conicto 2240 1249 moveto 2240 1713 2052 1976 conicto 1865 2240 1536 2240 conicto 1208 2240 1020 1976 conicto 832 1713 832 1249 conicto 832 784 1020 520 conicto 1208 256 1536 256 conicto 1865 256 2052 520 conicto 2240 784 2240 1249 conicto end_ol grestore gsave 20.404533 8.000000 translate 0.035278 -0.035278 scale start_ol 2240 1249 moveto 2240 1713 2052 1976 conicto 1865 2240 1536 2240 conicto 1208 2240 1020 1976 conicto 832 1713 832 1249 conicto 832 784 1020 520 conicto 1208 256 1536 256 conicto 1865 256 2052 520 conicto 2240 784 2240 1249 conicto 832 2112 moveto 963 2340 1164 2450 conicto 1366 2560 1645 2560 conicto 2108 2560 2398 2198 conicto 2688 1837 2688 1248 conicto 2688 659 2398 297 conicto 2108 -64 1645 -64 conicto 1366 -64 1164 46 conicto 963 156 832 384 conicto 832 0 lineto 448 0 lineto 448 3520 lineto 832 3520 lineto 832 2112 lineto end_ol grestore gsave 20.794000 8.000000 translate 0.035278 -0.035278 scale start_ol 448 986 moveto 448 2496 lineto 832 2496 lineto 832 1001 lineto 832 629 978 442 conicto 1124 256 1417 256 conicto 1768 256 1972 477 conicto 2176 699 2176 1081 conicto 2176 2496 lineto 2560 2496 lineto 2560 0 lineto 2176 0 lineto 2176 384 lineto 2022 157 1819 46 conicto 1617 -64 1349 -64 conicto 906 -64 677 203 conicto 448 471 448 986 conicto end_ol grestore gsave 21.183467 8.000000 translate 0.035278 -0.035278 scale start_ol 448 2496 moveto 832 2496 lineto 832 0 lineto 448 0 lineto 448 2496 lineto 448 3520 moveto 832 3520 lineto 832 3008 lineto 448 3008 lineto 448 3520 lineto end_ol grestore gsave 21.352800 8.000000 translate 0.035278 -0.035278 scale start_ol 448 3520 moveto 832 3520 lineto 832 0 lineto 448 0 lineto 448 3520 lineto end_ol grestore gsave 21.522133 8.000000 translate 0.035278 -0.035278 scale start_ol 2112 2112 moveto 2112 3520 lineto 2496 3520 lineto 2496 0 lineto 2112 0 lineto 2112 384 lineto 1980 156 1779 46 conicto 1578 -64 1297 -64 conicto 835 -64 545 297 conicto 256 659 256 1248 conicto 256 1837 545 2198 conicto 835 2560 1297 2560 conicto 1578 2560 1779 2450 conicto 1980 2340 2112 2112 conicto 704 1249 moveto 704 784 891 520 conicto 1079 256 1407 256 conicto 1735 256 1923 520 conicto 2112 784 2112 1249 conicto 2112 1713 1923 1976 conicto 1735 2240 1407 2240 conicto 1079 2240 891 1976 conicto 704 1713 704 1249 conicto end_ol grestore gsave 21.911600 8.000000 translate 0.035278 -0.035278 scale start_ol 2624 1352 moveto 2624 1152 lineto 704 1152 lineto 731 715 960 485 conicto 1189 256 1597 256 conicto 1834 256 2056 320 conicto 2278 384 2496 512 conicto 2496 128 lineto 2273 34 2039 -15 conicto 1805 -64 1565 -64 conicto 961 -64 608 284 conicto 256 632 256 1225 conicto 256 1839 595 2199 conicto 934 2560 1509 2560 conicto 2024 2560 2324 2235 conicto 2624 1910 2624 1352 conicto 2240 1472 moveto 2235 1822 2043 2031 conicto 1852 2240 1537 2240 conicto 1180 2240 965 2038 conicto 750 1836 718 1470 conicto 2240 1472 lineto end_ol grestore gsave 22.284133 8.000000 translate 0.035278 -0.035278 scale start_ol 1920 2112 moveto 1848 2178 1764 2209 conicto 1680 2240 1578 2240 conicto 1218 2240 1025 2001 conicto 832 1763 832 1317 conicto 832 0 lineto 448 0 lineto 448 2496 lineto 832 2496 lineto 832 2112 lineto 965 2339 1180 2449 conicto 1396 2560 1702 2560 conicto 1747 2560 1799 2560 conicto 1852 2560 1917 2560 conicto 1920 2112 lineto end_ol grestore gsave 22.538133 8.000000 translate 0.035278 -0.035278 scale start_ol 1157 3328 moveto 1536 3328 lineto 379 -448 lineto 0 -448 lineto 1157 3328 lineto end_ol grestore gsave 22.741333 8.000000 translate 0.035278 -0.035278 scale start_ol 2240 1249 moveto 2240 1713 2052 1976 conicto 1865 2240 1536 2240 conicto 1208 2240 1020 1976 conicto 832 1713 832 1249 conicto 832 784 1020 520 conicto 1208 256 1536 256 conicto 1865 256 2052 520 conicto 2240 784 2240 1249 conicto 832 2112 moveto 963 2340 1164 2450 conicto 1366 2560 1645 2560 conicto 2108 2560 2398 2198 conicto 2688 1837 2688 1248 conicto 2688 659 2398 297 conicto 2108 -64 1645 -64 conicto 1366 -64 1164 46 conicto 963 156 832 384 conicto 832 0 lineto 448 0 lineto 448 3520 lineto 832 3520 lineto 832 2112 lineto end_ol grestore gsave 23.130800 8.000000 translate 0.035278 -0.035278 scale start_ol 448 986 moveto 448 2496 lineto 832 2496 lineto 832 1001 lineto 832 629 978 442 conicto 1124 256 1417 256 conicto 1768 256 1972 477 conicto 2176 699 2176 1081 conicto 2176 2496 lineto 2560 2496 lineto 2560 0 lineto 2176 0 lineto 2176 384 lineto 2022 157 1819 46 conicto 1617 -64 1349 -64 conicto 906 -64 677 203 conicto 448 471 448 986 conicto end_ol grestore gsave 23.520267 8.000000 translate 0.035278 -0.035278 scale start_ol 448 2496 moveto 832 2496 lineto 832 0 lineto 448 0 lineto 448 2496 lineto 448 3520 moveto 832 3520 lineto 832 3008 lineto 448 3008 lineto 448 3520 lineto end_ol grestore gsave 23.689600 8.000000 translate 0.035278 -0.035278 scale start_ol 448 3520 moveto 832 3520 lineto 832 0 lineto 448 0 lineto 448 3520 lineto end_ol grestore gsave 23.858933 8.000000 translate 0.035278 -0.035278 scale start_ol 2112 2112 moveto 2112 3520 lineto 2496 3520 lineto 2496 0 lineto 2112 0 lineto 2112 384 lineto 1980 156 1779 46 conicto 1578 -64 1297 -64 conicto 835 -64 545 297 conicto 256 659 256 1248 conicto 256 1837 545 2198 conicto 835 2560 1297 2560 conicto 1578 2560 1779 2450 conicto 1980 2340 2112 2112 conicto 704 1249 moveto 704 784 891 520 conicto 1079 256 1407 256 conicto 1735 256 1923 520 conicto 2112 784 2112 1249 conicto 2112 1713 1923 1976 conicto 1735 2240 1407 2240 conicto 1079 2240 891 1976 conicto 704 1713 704 1249 conicto end_ol grestore gsave 24.248400 8.000000 translate 0.035278 -0.035278 scale start_ol 1157 3328 moveto 1536 3328 lineto 379 -448 lineto 0 -448 lineto 1157 3328 lineto end_ol grestore gsave 24.451600 8.000000 translate 0.035278 -0.035278 scale start_ol 256 3328 moveto 752 3328 lineto 1597 2080 lineto 2449 3328 lineto 2944 3328 lineto 1864 1730 lineto 3008 0 lineto 2519 0 lineto 1573 1429 lineto 620 0 lineto 128 0 lineto 1303 1776 lineto 256 3328 lineto end_ol grestore gsave 24.866467 8.000000 translate 0.035278 -0.035278 scale start_ol 256 3328 moveto 752 3328 lineto 1597 2080 lineto 2449 3328 lineto 2944 3328 lineto 1864 1730 lineto 3008 0 lineto 2519 0 lineto 1573 1429 lineto 620 0 lineto 128 0 lineto 1303 1776 lineto 256 3328 lineto end_ol grestore gsave 25.281333 8.000000 translate 0.035278 -0.035278 scale start_ol 256 3328 moveto 752 3328 lineto 1597 2080 lineto 2449 3328 lineto 2944 3328 lineto 1864 1730 lineto 3008 0 lineto 2519 0 lineto 1573 1429 lineto 620 0 lineto 128 0 lineto 1303 1776 lineto 256 3328 lineto end_ol grestore gsave 25.696200 8.000000 translate 0.035278 -0.035278 scale start_ol 256 3328 moveto 752 3328 lineto 1597 2080 lineto 2449 3328 lineto 2944 3328 lineto 1864 1730 lineto 3008 0 lineto 2519 0 lineto 1573 1429 lineto 620 0 lineto 128 0 lineto 1303 1776 lineto 256 3328 lineto end_ol grestore gsave 28.000000 11.000000 translate 0.035278 -0.035278 scale start_ol 448 986 moveto 448 2496 lineto 832 2496 lineto 832 1001 lineto 832 629 978 442 conicto 1124 256 1417 256 conicto 1768 256 1972 477 conicto 2176 699 2176 1081 conicto 2176 2496 lineto 2560 2496 lineto 2560 0 lineto 2176 0 lineto 2176 384 lineto 2022 157 1819 46 conicto 1617 -64 1349 -64 conicto 906 -64 677 203 conicto 448 471 448 986 conicto end_ol grestore gsave 28.389467 11.000000 translate 0.035278 -0.035278 scale start_ol 2048 2432 moveto 2048 2048 lineto 1868 2144 1674 2192 conicto 1480 2240 1273 2240 conicto 957 2240 798 2144 conicto 640 2048 640 1856 conicto 640 1709 757 1625 conicto 875 1542 1229 1467 conicto 1380 1435 lineto 1812 1341 1994 1170 conicto 2176 999 2176 692 conicto 2176 343 1899 139 conicto 1622 -64 1137 -64 conicto 936 -64 717 -32 conicto 498 0 256 64 conicto 256 512 lineto 490 385 718 320 conicto 947 256 1170 256 conicto 1470 256 1631 358 conicto 1792 461 1792 647 conicto 1792 820 1670 912 conicto 1549 1004 1141 1089 conicto 988 1123 lineto 600 1203 428 1369 conicto 256 1535 256 1824 conicto 256 2177 510 2368 conicto 765 2560 1233 2560 conicto 1466 2560 1670 2528 conicto 1875 2496 2048 2432 conicto end_ol grestore gsave 28.711200 11.000000 translate 0.035278 -0.035278 scale start_ol 1920 2112 moveto 1848 2178 1764 2209 conicto 1680 2240 1578 2240 conicto 1218 2240 1025 2001 conicto 832 1763 832 1317 conicto 832 0 lineto 448 0 lineto 448 2496 lineto 832 2496 lineto 832 2112 lineto 965 2339 1180 2449 conicto 1396 2560 1702 2560 conicto 1747 2560 1799 2560 conicto 1852 2560 1917 2560 conicto 1920 2112 lineto end_ol grestore gsave 28.000000 12.000000 translate 0.035278 -0.035278 scale start_ol 128 2496 moveto 563 2496 lineto 1344 401 lineto 2125 2496 lineto 2560 2496 lineto 1623 0 lineto 1065 0 lineto 128 2496 lineto end_ol grestore gsave 28.364067 12.000000 translate 0.035278 -0.035278 scale start_ol 1559 1280 moveto 1040 1280 840 1160 conicto 640 1041 640 754 conicto 640 525 790 390 conicto 940 256 1198 256 conicto 1554 256 1769 510 conicto 1984 765 1984 1187 conicto 1984 1280 lineto 1559 1280 lineto 2368 1449 moveto 2368 0 lineto 1984 0 lineto 1984 384 lineto 1842 154 1628 45 conicto 1415 -64 1107 -64 conicto 717 -64 486 154 conicto 256 372 256 739 conicto 256 1166 539 1383 conicto 822 1600 1384 1600 conicto 1984 1600 lineto 1984 1641 lineto 1984 1927 1796 2083 conicto 1608 2240 1266 2240 conicto 1049 2240 843 2192 conicto 638 2144 448 2048 conicto 448 2432 lineto 673 2496 884 2528 conicto 1095 2560 1295 2560 conicto 1835 2560 2101 2284 conicto 2368 2009 2368 1449 conicto end_ol grestore gsave 28.736600 12.000000 translate 0.035278 -0.035278 scale start_ol 1920 2112 moveto 1848 2178 1764 2209 conicto 1680 2240 1578 2240 conicto 1218 2240 1025 2001 conicto 832 1763 832 1317 conicto 832 0 lineto 448 0 lineto 448 2496 lineto 832 2496 lineto 832 2112 lineto 965 2339 1180 2449 conicto 1396 2560 1702 2560 conicto 1747 2560 1799 2560 conicto 1852 2560 1917 2560 conicto 1920 2112 lineto end_ol grestore gsave 28.000000 9.000000 translate 0.035278 -0.035278 scale start_ol 2240 1249 moveto 2240 1713 2052 1976 conicto 1865 2240 1536 2240 conicto 1208 2240 1020 1976 conicto 832 1713 832 1249 conicto 832 784 1020 520 conicto 1208 256 1536 256 conicto 1865 256 2052 520 conicto 2240 784 2240 1249 conicto 832 2112 moveto 963 2340 1164 2450 conicto 1366 2560 1645 2560 conicto 2108 2560 2398 2198 conicto 2688 1837 2688 1248 conicto 2688 659 2398 297 conicto 2108 -64 1645 -64 conicto 1366 -64 1164 46 conicto 963 156 832 384 conicto 832 0 lineto 448 0 lineto 448 3520 lineto 832 3520 lineto 832 2112 lineto end_ol grestore gsave 28.389467 9.000000 translate 0.035278 -0.035278 scale start_ol 448 2496 moveto 832 2496 lineto 832 0 lineto 448 0 lineto 448 2496 lineto 448 3520 moveto 832 3520 lineto 832 3008 lineto 448 3008 lineto 448 3520 lineto end_ol grestore gsave 28.558800 9.000000 translate 0.035278 -0.035278 scale start_ol 2560 1509 moveto 2560 0 lineto 2176 0 lineto 2176 1496 lineto 2176 1869 2029 2054 conicto 1883 2240 1590 2240 conicto 1238 2240 1035 2018 conicto 832 1796 832 1413 conicto 832 0 lineto 448 0 lineto 448 2496 lineto 832 2496 lineto 832 2112 lineto 983 2337 1188 2448 conicto 1394 2560 1662 2560 conicto 2106 2560 2333 2293 conicto 2560 2027 2560 1509 conicto end_ol grestore gsave 28.000000 7.000000 translate 0.035278 -0.035278 scale start_ol 2560 1509 moveto 2560 0 lineto 2176 0 lineto 2176 1496 lineto 2176 1869 2029 2054 conicto 1883 2240 1590 2240 conicto 1238 2240 1035 2018 conicto 832 1796 832 1413 conicto 832 0 lineto 448 0 lineto 448 3520 lineto 832 3520 lineto 832 2112 lineto 983 2337 1188 2448 conicto 1394 2560 1662 2560 conicto 2106 2560 2333 2293 conicto 2560 2027 2560 1509 conicto end_ol grestore gsave 28.389467 7.000000 translate 0.035278 -0.035278 scale start_ol 1409 2240 moveto 1083 2240 893 1974 conicto 704 1709 704 1248 conicto 704 787 892 521 conicto 1081 256 1409 256 conicto 1733 256 1922 522 conicto 2112 789 2112 1248 conicto 2112 1705 1922 1972 conicto 1733 2240 1409 2240 conicto 1408 2560 moveto 1946 2560 2253 2212 conicto 2560 1864 2560 1248 conicto 2560 634 2253 285 conicto 1946 -64 1408 -64 conicto 869 -64 562 285 conicto 256 634 256 1248 conicto 256 1864 562 2212 conicto 869 2560 1408 2560 conicto end_ol grestore gsave 28.762000 7.000000 translate 0.035278 -0.035278 scale start_ol 2431 2020 moveto 2590 2296 2809 2428 conicto 3029 2560 3325 2560 conicto 3726 2560 3943 2287 conicto 4160 2014 4160 1509 conicto 4160 0 lineto 3776 0 lineto 3776 1496 lineto 3776 1874 3641 2057 conicto 3506 2240 3228 2240 conicto 2890 2240 2693 2018 conicto 2496 1796 2496 1413 conicto 2496 0 lineto 2112 0 lineto 2112 1496 lineto 2112 1876 1976 2058 conicto 1841 2240 1560 2240 conicto 1225 2240 1028 2017 conicto 832 1794 832 1413 conicto 832 0 lineto 448 0 lineto 448 2496 lineto 832 2496 lineto 832 2112 lineto 977 2341 1180 2450 conicto 1383 2560 1662 2560 conicto 1942 2560 2139 2422 conicto 2337 2284 2431 2020 conicto end_ol grestore gsave 29.354667 7.000000 translate 0.035278 -0.035278 scale start_ol 2624 1352 moveto 2624 1152 lineto 704 1152 lineto 731 715 960 485 conicto 1189 256 1597 256 conicto 1834 256 2056 320 conicto 2278 384 2496 512 conicto 2496 128 lineto 2273 34 2039 -15 conicto 1805 -64 1565 -64 conicto 961 -64 608 284 conicto 256 632 256 1225 conicto 256 1839 595 2199 conicto 934 2560 1509 2560 conicto 2024 2560 2324 2235 conicto 2624 1910 2624 1352 conicto 2240 1472 moveto 2235 1822 2043 2031 conicto 1852 2240 1537 2240 conicto 1180 2240 965 2038 conicto 750 1836 718 1470 conicto 2240 1472 lineto end_ol grestore gsave 28.000000 8.000000 translate 0.035278 -0.035278 scale start_ol 832 3200 moveto 832 2496 lineto 1664 2496 lineto 1664 2176 lineto 832 2176 lineto 832 804 lineto 832 495 914 407 conicto 997 320 1248 320 conicto 1664 320 lineto 1664 0 lineto 1248 0 lineto 793 0 620 173 conicto 448 347 448 804 conicto 448 2176 lineto 128 2176 lineto 128 2496 lineto 448 2496 lineto 448 3200 lineto 832 3200 lineto end_ol grestore gsave 28.237067 8.000000 translate 0.035278 -0.035278 scale start_ol 2431 2020 moveto 2590 2296 2809 2428 conicto 3029 2560 3325 2560 conicto 3726 2560 3943 2287 conicto 4160 2014 4160 1509 conicto 4160 0 lineto 3776 0 lineto 3776 1496 lineto 3776 1874 3641 2057 conicto 3506 2240 3228 2240 conicto 2890 2240 2693 2018 conicto 2496 1796 2496 1413 conicto 2496 0 lineto 2112 0 lineto 2112 1496 lineto 2112 1876 1976 2058 conicto 1841 2240 1560 2240 conicto 1225 2240 1028 2017 conicto 832 1794 832 1413 conicto 832 0 lineto 448 0 lineto 448 2496 lineto 832 2496 lineto 832 2112 lineto 977 2341 1180 2450 conicto 1383 2560 1662 2560 conicto 1942 2560 2139 2422 conicto 2337 2284 2431 2020 conicto end_ol grestore gsave 28.829733 8.000000 translate 0.035278 -0.035278 scale start_ol 832 384 moveto 832 -960 lineto 448 -960 lineto 448 2496 lineto 832 2496 lineto 832 2112 lineto 963 2340 1164 2450 conicto 1366 2560 1645 2560 conicto 2108 2560 2398 2198 conicto 2688 1837 2688 1248 conicto 2688 659 2398 297 conicto 2108 -64 1645 -64 conicto 1366 -64 1164 46 conicto 963 156 832 384 conicto 2240 1249 moveto 2240 1713 2052 1976 conicto 1865 2240 1536 2240 conicto 1208 2240 1020 1976 conicto 832 1713 832 1249 conicto 832 784 1020 520 conicto 1208 256 1536 256 conicto 1865 256 2052 520 conicto 2240 784 2240 1249 conicto end_ol grestore gsave 28.000000 10.000000 translate 0.035278 -0.035278 scale start_ol 448 3520 moveto 832 3520 lineto 832 0 lineto 448 0 lineto 448 3520 lineto end_ol grestore gsave 28.169333 10.000000 translate 0.035278 -0.035278 scale start_ol 448 2496 moveto 832 2496 lineto 832 0 lineto 448 0 lineto 448 2496 lineto 448 3520 moveto 832 3520 lineto 832 3008 lineto 448 3008 lineto 448 3520 lineto end_ol grestore gsave 28.338667 10.000000 translate 0.035278 -0.035278 scale start_ol 2240 1249 moveto 2240 1713 2052 1976 conicto 1865 2240 1536 2240 conicto 1208 2240 1020 1976 conicto 832 1713 832 1249 conicto 832 784 1020 520 conicto 1208 256 1536 256 conicto 1865 256 2052 520 conicto 2240 784 2240 1249 conicto 832 2112 moveto 963 2340 1164 2450 conicto 1366 2560 1645 2560 conicto 2108 2560 2398 2198 conicto 2688 1837 2688 1248 conicto 2688 659 2398 297 conicto 2108 -64 1645 -64 conicto 1366 -64 1164 46 conicto 963 156 832 384 conicto 832 0 lineto 448 0 lineto 448 3520 lineto 832 3520 lineto 832 2112 lineto end_ol grestore 0.100000 slw [] 0 sd [] 0 sd 0 slc n 13.000000 4.000000 m 15.000000 4.000000 l s 0.100000 slw [] 0 sd [] 0 sd 0 slc n 13.000000 4.000000 m 15.000000 3.000000 l s 0.100000 slw [] 0 sd [] 0 sd 0 slc n 13.000000 4.000000 m 15.000000 5.000000 l s 0.100000 slw [] 0 sd [] 0 sd 0 slc n 15.000000 6.000000 m 13.000000 4.000000 l s 0.100000 slw [] 0 sd [] 0 sd 0 slc n 13.000000 4.000000 m 15.000000 7.000000 l s 0.100000 slw [] 0 sd [] 0 sd 0 slc n 13.000000 4.000000 m 15.000000 8.000000 l s 0.100000 slw [] 0 sd [] 0 sd 0 slc n 16.000000 8.000000 m 18.000000 8.000000 l s 0.100000 slw [] 0 sd [] 0 sd 0 slc n 26.000000 8.000000 m 28.000000 8.000000 l s 0.100000 slw [] 0 sd [] 0 sd 0 slc n 26.000000 8.000000 m 28.000000 7.000000 l s 0.100000 slw [] 0 sd [] 0 sd 0 slc n 26.000000 8.000000 m 28.000000 9.000000 l s 0.100000 slw [] 0 sd [] 0 sd 0 slc n 28.000000 10.000000 m 26.000000 8.000000 l s 0.100000 slw [] 0 sd [] 0 sd 0 slc n 26.000000 8.000000 m 28.000000 11.000000 l s 0.100000 slw [] 0 sd [] 0 sd 0 slc n 26.000000 8.000000 m 28.000000 12.000000 l s showpage pbuilder-0.215ubuntu7/Documentation/debconf7/develcycle.eps0000664000000000000000000002701312312041170020673 0ustar %!PS-Adobe-2.0 %%Creator: dot version 2.8 (Fri Dec 8 12:52:02 UTC 2006) %%For: (dancer) Junichi Uekawa,,, %%Title: structure %%Pages: (atend) %%BoundingBox: 36 36 577 1028 %%EndComments save %%BeginProlog /DotDict 200 dict def DotDict begin /setupLatin1 { mark /EncodingVector 256 array def EncodingVector 0 ISOLatin1Encoding 0 255 getinterval putinterval EncodingVector 45 /hyphen put % Set up ISO Latin 1 character encoding /starnetISO { dup dup findfont dup length dict begin { 1 index /FID ne { def }{ pop pop } ifelse } forall /Encoding EncodingVector def currentdict end definefont } def /Times-Roman starnetISO def /Times-Italic starnetISO def /Times-Bold starnetISO def /Times-BoldItalic starnetISO def /Helvetica starnetISO def /Helvetica-Oblique starnetISO def /Helvetica-Bold starnetISO def /Helvetica-BoldOblique starnetISO def /Courier starnetISO def /Courier-Oblique starnetISO def /Courier-Bold starnetISO def /Courier-BoldOblique starnetISO def cleartomark } bind def %%BeginResource: procset graphviz 0 0 /coord-font-family /Times-Roman def /default-font-family /Times-Roman def /coordfont coord-font-family findfont 8 scalefont def /InvScaleFactor 1.0 def /set_scale { dup 1 exch div /InvScaleFactor exch def dup scale } bind def % styles /solid { [] 0 setdash } bind def /dashed { [9 InvScaleFactor mul dup ] 0 setdash } bind def /dotted { [1 InvScaleFactor mul 6 InvScaleFactor mul] 0 setdash } bind def /invis {/fill {newpath} def /stroke {newpath} def /show {pop newpath} def} bind def /bold { 2 setlinewidth } bind def /filled { } bind def /unfilled { } bind def /rounded { } bind def /diagonals { } bind def % hooks for setting color /nodecolor { sethsbcolor } bind def /edgecolor { sethsbcolor } bind def /graphcolor { sethsbcolor } bind def /nopcolor {pop pop pop} bind def /beginpage { % i j npages /npages exch def /j exch def /i exch def /str 10 string def npages 1 gt { gsave coordfont setfont 0 0 moveto (\() show i str cvs show (,) show j str cvs show (\)) show grestore } if } bind def /set_font { findfont exch scalefont setfont } def % draw aligned label in bounding box aligned to current point /alignedtext { % width adj text /text exch def /adj exch def /width exch def gsave width 0 gt { text stringwidth pop adj mul 0 rmoveto } if [] 0 setdash text show grestore } def /boxprim { % xcorner ycorner xsize ysize 4 2 roll moveto 2 copy exch 0 rlineto 0 exch rlineto pop neg 0 rlineto closepath } bind def /ellipse_path { /ry exch def /rx exch def /y exch def /x exch def matrix currentmatrix newpath x y translate rx ry scale 0 0 1 0 360 arc setmatrix } bind def /endpage { showpage } bind def /showpage { } def /layercolorseq [ % layer color sequence - darkest to lightest [0 0 0] [.2 .8 .8] [.4 .8 .8] [.6 .8 .8] [.8 .8 .8] ] def /layerlen layercolorseq length def /setlayer {/maxlayer exch def /curlayer exch def layercolorseq curlayer 1 sub layerlen mod get aload pop sethsbcolor /nodecolor {nopcolor} def /edgecolor {nopcolor} def /graphcolor {nopcolor} def } bind def /onlayer { curlayer ne {invis} if } def /onlayers { /myupper exch def /mylower exch def curlayer mylower lt curlayer myupper gt or {invis} if } def /curlayer 0 def %%EndResource %%EndProlog %%BeginSetup 14 default-font-family set_font 1 setmiterlimit % /arrowlength 10 def % /arrowwidth 5 def % make sure pdfmark is harmless for PS-interpreters other than Distiller /pdfmark where {pop} {userdict /pdfmark /cleartomark load put} ifelse % make '<<' and '>>' safe on PS Level 1 devices /languagelevel where {pop languagelevel}{1} ifelse 2 lt { userdict (<<) cvn ([) cvn load put userdict (>>) cvn ([) cvn load put } if %%EndSetup %%Page: 1 1 %%PageBoundingBox: 36 36 577 1028 %%PageOrientation: Portrait gsave 36 36 541 992 boxprim clip newpath 36 36 translate 0 0 1 beginpage 1.0000 set_scale 4 4 translate 0 rotate 0.000 0.000 1.000 graphcolor 0.000 0.000 1.000 graphcolor newpath -6 -6 moveto -6 990 lineto 539 990 lineto 539 -6 lineto closepath fill 0.000 0.000 1.000 graphcolor newpath -6 -6 moveto -6 990 lineto 539 990 lineto 539 -6 lineto closepath stroke 0.000 0.000 0.000 graphcolor 30.00 /Times-Roman set_font % edit source gsave 10 dict begin 255 827 96 56 ellipse_path stroke gsave 10 dict begin 190 835 moveto (maintainer) [23.28 13.44 8.4 15.12 8.4 13.44 8.4 15.12 13.44 10.08] xshow 183 799 moveto (edits source) [13.44 15.12 8.4 8.4 11.76 7.44 11.76 15.12 15.12 10.08 13.44 13.44] xshow end grestore end grestore % build package gsave 10 dict begin 102 701 102 31 ellipse_path stroke gsave 10 dict begin 17 691 moveto (build package) [15.12 15.12 8.4 8.4 15.12 7.44 15.12 13.44 13.44 15.12 13.44 15.12 13.44] xshow end grestore end grestore % edit source->build package newpath 199 781 moveto 181 766 162 750 146 737 curveto stroke gsave 10 dict begin solid 1 setlinewidth 0.000 0.000 0.000 edgecolor newpath 148 734 moveto 138 730 lineto 143 739 lineto closepath fill 0.000 0.000 0.000 edgecolor newpath 148 734 moveto 138 730 lineto 143 739 lineto closepath stroke end grestore % bugreport gsave 10 dict begin 131 953 76 31 ellipse_path stroke gsave 10 dict begin 71 943 moveto (bugreport) [15.12 15.12 15.12 10.08 13.44 15.12 15.12 10.08 8.4] xshow end grestore end grestore % bugreport->edit source newpath 159 924 moveto 171 912 186 897 200 883 curveto stroke gsave 10 dict begin solid 1 setlinewidth 0.000 0.000 0.000 edgecolor newpath 202 886 moveto 207 876 lineto 197 881 lineto closepath fill 0.000 0.000 0.000 edgecolor newpath 202 886 moveto 207 876 lineto 197 881 lineto closepath stroke end grestore % new upstream package gsave 10 dict begin 379 953 154 31 ellipse_path stroke gsave 10 dict begin 241 943 moveto (new upstream package) [15.12 13.44 21.6 7.44 15.12 15.12 11.76 8.4 10.08 13.44 13.44 23.28 7.44 15.12 13.44 13.44 15.12 13.44 15.12 13.44] xshow end grestore end grestore % new upstream package->edit source newpath 349 922 moveto 337 910 324 897 310 883 curveto stroke gsave 10 dict begin solid 1 setlinewidth 0.000 0.000 0.000 edgecolor newpath 313 881 moveto 303 876 lineto 308 886 lineto closepath fill 0.000 0.000 0.000 edgecolor newpath 313 881 moveto 303 876 lineto 308 886 lineto closepath stroke end grestore % install locally gsave 10 dict begin 104 587 99 31 ellipse_path stroke gsave 10 dict begin 22 577 moveto (install locally) [8.4 15.12 11.76 8.4 13.44 8.4 8.4 7.44 8.4 15.12 13.44 13.44 8.4 8.4 15.12] xshow end grestore end grestore % build package->install locally newpath 103 670 moveto 103 657 103 642 103 628 curveto stroke gsave 10 dict begin solid 1 setlinewidth 0.000 0.000 0.000 edgecolor newpath 107 628 moveto 103 618 lineto 100 628 lineto closepath fill 0.000 0.000 0.000 edgecolor newpath 107 628 moveto 103 618 lineto 100 628 lineto closepath stroke end grestore % test package gsave 10 dict begin 159 473 91 31 ellipse_path stroke gsave 10 dict begin 84 463 moveto (test package) [8.4 13.44 11.76 8.4 7.44 15.12 13.44 13.44 15.12 13.44 15.12 13.44] xshow end grestore end grestore % install locally->test package newpath 119 556 moveto 125 543 133 527 139 513 curveto stroke gsave 10 dict begin solid 1 setlinewidth 0.000 0.000 0.000 edgecolor newpath 142 514 moveto 144 504 lineto 136 511 lineto closepath fill 0.000 0.000 0.000 edgecolor newpath 142 514 moveto 144 504 lineto 136 511 lineto closepath stroke end grestore % test package->edit source newpath 183 503 moveto 193 518 205 537 212 556 curveto 237 623 248 704 252 760 curveto stroke gsave 10 dict begin solid 1 setlinewidth 0.000 0.000 0.000 edgecolor newpath 249 760 moveto 253 770 lineto 255 760 lineto closepath fill 0.000 0.000 0.000 edgecolor newpath 249 760 moveto 253 770 lineto 255 760 lineto closepath stroke end grestore gsave 10 dict begin 14.00 /Times-Roman set_font 240 639 moveto (fail) [4.56 6.24 3.84 3.84] xshow end grestore % pbuilder build gsave 10 dict begin 194 359 103 31 ellipse_path stroke gsave 10 dict begin 108 349 moveto (pbuilder build) [15.12 15.12 15.12 8.4 8.4 15.12 13.44 10.08 7.44 15.12 15.12 8.4 8.4 15.12] xshow end grestore end grestore % test package->pbuilder build newpath 168 442 moveto 172 429 177 414 181 400 curveto stroke gsave 10 dict begin solid 1 setlinewidth 0.000 0.000 0.000 edgecolor newpath 184 401 moveto 184 390 lineto 178 399 lineto closepath fill 0.000 0.000 0.000 edgecolor newpath 184 401 moveto 184 390 lineto 178 399 lineto closepath stroke end grestore gsave 10 dict begin 14.00 /Times-Roman set_font 180 411 moveto (success) [5.52 6.96 6.24 6.24 6.24 5.52 5.52] xshow end grestore % pbuilder build->edit source newpath 232 388 moveto 254 409 278 439 278 473 curveto 278 701 278 701 278 701 curveto 278 721 275 742 272 761 curveto stroke gsave 10 dict begin solid 1 setlinewidth 0.000 0.000 0.000 edgecolor newpath 269 761 moveto 270 771 lineto 275 762 lineto closepath fill 0.000 0.000 0.000 edgecolor newpath 269 761 moveto 270 771 lineto 275 762 lineto closepath stroke end grestore gsave 10 dict begin 14.00 /Times-Roman set_font 278 582 moveto (fail) [4.56 6.24 3.84 3.84] xshow end grestore % test pbuilder-generated package gsave 10 dict begin 278 245 209 31 ellipse_path stroke gsave 10 dict begin 85 235 moveto (test pbuilder-generated package) [8.4 13.44 11.76 8.4 7.44 15.12 15.12 15.12 8.4 8.4 15.12 13.44 10.08 10.08 15.12 13.44 15.12 13.44 10.08 13.44 8.4 13.44 15.12 7.44 15.12 13.44 13.44 15.12 13.44 15.12 13.44] xshow end grestore end grestore % pbuilder build->test pbuilder-generated package newpath 217 328 moveto 227 315 238 298 249 284 curveto stroke gsave 10 dict begin solid 1 setlinewidth 0.000 0.000 0.000 edgecolor newpath 252 286 moveto 255 276 lineto 246 282 lineto closepath fill 0.000 0.000 0.000 edgecolor newpath 252 286 moveto 255 276 lineto 246 282 lineto closepath stroke end grestore gsave 10 dict begin 14.00 /Times-Roman set_font 242 297 moveto (success) [5.52 6.96 6.24 6.24 6.24 5.52 5.52] xshow end grestore % test pbuilder-generated package->edit source newpath 299 276 moveto 312 298 326 329 325 359 curveto 325 701 325 701 325 701 curveto 325 724 316 748 304 767 curveto stroke gsave 10 dict begin solid 1 setlinewidth 0.000 0.000 0.000 edgecolor newpath 301 766 moveto 299 776 lineto 307 769 lineto closepath fill 0.000 0.000 0.000 edgecolor newpath 301 766 moveto 299 776 lineto 307 769 lineto closepath stroke end grestore gsave 10 dict begin 14.00 /Times-Roman set_font 325 525 moveto (fail) [4.56 6.24 3.84 3.84] xshow end grestore % debsign gsave 10 dict begin 278 131 64 31 ellipse_path stroke gsave 10 dict begin 230 121 moveto (debsign) [15.12 13.44 15.12 11.76 8.4 15.12 15.12] xshow end grestore end grestore % test pbuilder-generated package->debsign newpath 278 214 moveto 278 201 278 186 278 172 curveto stroke gsave 10 dict begin solid 1 setlinewidth 0.000 0.000 0.000 edgecolor newpath 282 172 moveto 278 162 lineto 275 172 lineto closepath fill 0.000 0.000 0.000 edgecolor newpath 282 172 moveto 278 162 lineto 275 172 lineto closepath stroke end grestore gsave 10 dict begin 14.00 /Times-Roman set_font 278 183 moveto (success) [5.52 6.96 6.24 6.24 6.24 5.52 5.52] xshow end grestore % dput gsave 10 dict begin 278 31 44 31 ellipse_path stroke gsave 10 dict begin 251 21 moveto (dput) [15.12 15.12 15.12 8.4] xshow end grestore end grestore % debsign->dput newpath 278 100 moveto 278 91 278 82 278 72 curveto stroke gsave 10 dict begin solid 1 setlinewidth 0.000 0.000 0.000 edgecolor newpath 282 72 moveto 278 62 lineto 275 72 lineto closepath fill 0.000 0.000 0.000 edgecolor newpath 282 72 moveto 278 62 lineto 275 72 lineto closepath stroke end grestore endpage showpage grestore %%PageTrailer %%EndPage: 1 %%Trailer %%Pages: 1 end restore %%EOF pbuilder-0.215ubuntu7/Documentation/debconf7/pbuilder-presentation.log0000664000000000000000000010465312312041170023073 0ustar This is pdfTeXk, Version 3.141592-1.40.3 (Web2C 7.5.6) (format=latex 2007.6.10) 23 JUN 2007 21:55 entering extended mode %&-line parsing enabled. **pbuilder-presentation.tex (./pbuilder-presentation.tex LaTeX2e <2005/12/01> Babel and hyphenation patterns for english, usenglishmax, dumylang, noh yphenation, croatian, bulgarian, russian, ukrainian, czech, slovak, danish, dut ch, finnish, finnish, french, basque, french, german, ngerman, german, ngerman, greek, monogreek, ancientgreek, ibycus, hungarian, hungarian, italian, italian , latin, latin, mongolian, mongolian, norsk, norsk, coptic, esperanto, estonian , icelandic, indonesian, interlingua, romanian, serbian, slovenian, turkish, up persorbian, welsh, portuguese, portuguese, spanish, catalan, galician, spanish, catalan, galician, swedish, swedish, loaded. (/usr/share/texmf/tex/latex/beamer/base/beamer.cls (/usr/share/texmf/tex/latex/beamer/base/beamerbasercs.sty Package: beamerbasercs 2007/01/28 (rcs-revision 1.4) ) Document Class: beamer 2007/03/11 cvs version 3.07 A class for typesetting pres entations (rcs-revision 1.70) (/usr/share/texmf/tex/latex/beamer/base/beamerbasemodes.sty Package: beamerbasemodes 2007/01/28 (rcs-revision 1.22) \beamer@tempbox=\box26 \beamer@tempcount=\count79 \c@beamerpauses=\count80 (/usr/share/texmf/tex/latex/beamer/base/beamerbasedecode.sty Package: beamerbasedecode 2007/01/28 (rcs-revision 1.20) \beamer@slideinframe=\count81 \beamer@minimum=\count82 ) \beamer@commentbox=\box27 \beamer@modecount=\count83 ) \headheight=\dimen102 \headdp=\dimen103 \footheight=\dimen104 \sidebarheight=\dimen105 \beamer@tempdim=\dimen106 \beamer@finalheight=\dimen107 \beamer@animht=\dimen108 \beamer@animdp=\dimen109 \beamer@animwd=\dimen110 \beamer@leftmargin=\dimen111 \beamer@rightmargin=\dimen112 \beamer@leftsidebar=\dimen113 \beamer@rightsidebar=\dimen114 \beamer@boxsize=\dimen115 \beamer@vboxoffset=\dimen116 \beamer@descdefault=\dimen117 \beamer@descriptionwidth=\dimen118 \beamer@lastskip=\skip41 \beamer@areabox=\box28 \beamer@animcurrent=\box29 \beamer@animshowbox=\box30 \beamer@sectionbox=\box31 \beamer@logobox=\box32 \beamer@linebox=\box33 \beamer@sectioncount=\count84 \beamer@subsubsectionmax=\count85 \beamer@subsectionmax=\count86 \beamer@sectionmax=\count87 \beamer@totalheads=\count88 \beamer@headcounter=\count89 \beamer@partstartpage=\count90 \beamer@sectionstartpage=\count91 \beamer@subsectionstartpage=\count92 \beamer@animationtempa=\count93 \beamer@animationtempb=\count94 \beamer@xpos=\count95 \beamer@ypos=\count96 \beamer@showpartnumber=\count97 \beamer@currentsubsection=\count98 \beamer@coveringdepth=\count99 \beamer@sectionadjust=\count100 \beamer@tocsectionnumber=\count101 (/usr/share/texmf/tex/latex/beamer/base/beamerbaseoptions.sty Package: beamerbaseoptions 2007/01/28 (rcs-revision 1.8) (/usr/share/texmf-texlive/tex/latex/graphics/keyval.sty Package: keyval 1999/03/16 v1.13 key=value parser (DPC) \KV@toks@=\toks14 )) (/usr/share/texmf/tex/latex/pgf/basiclayer/pgfcore.sty (/usr/share/texmf-texlive/tex/latex/graphics/graphicx.sty Package: graphicx 1999/02/16 v1.0f Enhanced LaTeX Graphics (DPC,SPQR) (/usr/share/texmf-texlive/tex/latex/graphics/graphics.sty Package: graphics 2006/02/20 v1.0o Standard LaTeX Graphics (DPC,SPQR) (/usr/share/texmf-texlive/tex/latex/graphics/trig.sty Package: trig 1999/03/16 v1.09 sin cos tan (DPC) ) (/etc/texmf/tex/latex/config/graphics.cfg File: graphics.cfg 2007/01/18 v1.5 graphics configuration of teTeX/TeXLive ) Package graphics Info: Driver file: dvipdfm.def on input line 90. (/usr/share/texmf-texlive/tex/latex/dvipdfm/dvipdfm.def File: dvipdfm.def 1999/9/6 vx.x Driver-dependant file )) \Gin@req@height=\dimen119 \Gin@req@width=\dimen120 ) (/usr/share/texmf/tex/latex/pgf/systemlayer/pgfsys.sty (/usr/share/texmf/tex/latex/pgf/utilities/pgfrcs.sty (/usr/share/texmf/tex/generic/pgf/utilities/pgfrcs.code.tex Package: pgfrcs 2006/10/11 v1.09 (rcs-revision 1.12) )) (/usr/share/texmf/tex/generic/pgf/systemlayer/pgfsys.code.tex Package: pgfsys 2006/10/11 v1.09 (rcs-revision 1.18) \pgf@x=\dimen121 \pgf@y=\dimen122 \pgf@xa=\dimen123 \pgf@ya=\dimen124 \pgf@xb=\dimen125 \pgf@yb=\dimen126 \pgf@xc=\dimen127 \pgf@yc=\dimen128 (/usr/share/texmf/tex/generic/pgf/systemlayer/pgf.cfg File: pgf.cfg 2006/10/11 (rcs-revision 1.2) ) Package pgfsys Info: Driver file for pgf: pgfsys-dvipdfm.def on input line 889. (/usr/share/texmf/tex/generic/pgf/systemlayer/pgfsys-dvipdfm.def File: pgfsys-dvipdfm.def 2006/10/11 (rcs-revision 1.10) (/usr/share/texmf/tex/generic/pgf/systemlayer/pgfsys-common-pdf.def File: pgfsys-common-pdf.def 2006/10/11 (rcs-revision 1.6) ))) (/usr/share/texmf/tex/generic/pgf/systemlayer/pgfsyssoftpath.code.tex File: pgfsyssoftpath.code.tex 2006/10/11 (rcs-revision 1.3) ) (/usr/share/texmf/tex/generic/pgf/systemlayer/pgfsysprotocol.code.tex File: pgfsysprotocol.code.tex 2006/10/11 (rcs-revision 1.3) )) (/usr/share/texmf/tex/latex/xcolor/xcolor.sty Package: xcolor 2005/12/21 v2.09 LaTeX color extensions (UK) (/etc/texmf/tex/latex/config/color.cfg File: color.cfg 2007/01/18 v1.5 color configuration of teTeX/TeXLive ) Package xcolor Info: Driver file: dvipdfm.def on input line 220. Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1328. Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1332. Package xcolor Info: Model `RGB' extended on input line 1344. Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1346. Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1347. Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1348. Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1349. Package xcolor Info: Model `Gray' substituted by `gray' on input line 1350. Package xcolor Info: Model `wave' substituted by `hsb' on input line 1351. ) (/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcore.code.tex Package: pgfcore 2006/10/11 v1.09 (rcs-revision 1.4) (/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcoremath.code.tex File: pgfcoremath.code.tex 2006/10/11 (rcs-revision 1.2) \c@pgf@counta=\count102 \c@pgf@countb=\count103 \c@pgf@countc=\count104 \c@pgf@countd=\count105 ) (/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcorepoints.code.tex File: pgfcorepoints.code.tex 2006/10/11 (rcs-revision 1.5) \pgf@picminx=\dimen129 \pgf@picmaxx=\dimen130 \pgf@picminy=\dimen131 \pgf@picmaxy=\dimen132 \pgf@pathminx=\dimen133 \pgf@pathmaxx=\dimen134 \pgf@pathminy=\dimen135 \pgf@pathmaxy=\dimen136 \pgf@tempdim=\dimen137 \c@pgf@tempcount=\count106 \pgf@xx=\dimen138 \pgf@xy=\dimen139 \pgf@yx=\dimen140 \pgf@yy=\dimen141 \pgf@zx=\dimen142 \pgf@zy=\dimen143 ) (/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcorepathconstruct.code.tex File: pgfcorepathconstruct.code.tex 2006/10/11 (rcs-revision 1.5) \pgf@path@lastx=\dimen144 \pgf@path@lasty=\dimen145 ) (/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcorepathusage.code.tex File: pgfcorepathusage.code.tex 2006/10/11 (rcs-revision 1.6) \pgf@shorten@end@additional=\dimen146 \pgf@shorten@start@additional=\dimen147 ) (/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcorescopes.code.tex File: pgfcorescopes.code.tex 2006/10/11 (rcs-revision 1.18) \pgfpic=\box34 \pgf@hbox=\box35 \pgf@layerbox@main=\box36 \pgf@picture@serial@count=\count107 ) (/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcoregraphicstate.code.tex File: pgfcoregraphicstate.code.tex 2006/10/11 (rcs-revision 1.5) \pgflinewidth=\dimen148 ) (/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcoretransformations.code.tex File: pgfcoretransformations.code.tex 2006/10/11 (rcs-revision 1.4) \pgf@pt@x=\dimen149 \pgf@pt@y=\dimen150 \pgf@pt@temp=\dimen151 ) (/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcorequick.code.tex File: pgfcorequick.code.tex 2006/10/11 (rcs-revision 1.2) ) (/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcoreobjects.code.tex File: pgfcoreobjects.code.tex 2006/10/11 (rcs-revision 1.2) ) (/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcorepathprocessing.code.tex File: pgfcorepathprocessing.code.tex 2006/10/11 (rcs-revision 1.4) ) (/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcorearrows.code.tex File: pgfcorearrows.code.tex 2006/10/11 (rcs-revision 1.5) ) (/usr/share/texmf/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex File: pgfcoreshade.code.tex 2006/10/11 (rcs-revision 1.6) \pgf@max=\dimen152 \pgf@sys@shading@range@num=\count108 ))) (/usr/share/texmf/tex/latex/pgf/basiclayer/pgfbaseimage.sty (/usr/share/texmf/tex/generic/pgf/basiclayer/pgfbaseimage.code.tex Package: pgfbaseimage 2006/10/11 v1.09 (rcs-revision 1.4) )) (/usr/share/texmf/tex/latex/pgf/utilities/xxcolor.sty Package: xxcolor 2003/10/24 ver 0.1 \XC@nummixins=\count109 \XC@countmixins=\count110 ) (/usr/share/texmf-texlive/tex/latex/amsfonts/amssymb.sty Package: amssymb 2002/01/22 v2.2d (/usr/share/texmf-texlive/tex/latex/amsfonts/amsfonts.sty Package: amsfonts 2001/10/25 v2.2f \@emptytoks=\toks15 \symAMSa=\mathgroup4 \symAMSb=\mathgroup5 LaTeX Font Info: Overwriting math alphabet `\mathfrak' in version `bold' (Font) U/euf/m/n --> U/euf/b/n on input line 132. )) (/usr/share/texmf-texlive/tex/latex/geometry/geometry.sty Package: geometry 2002/07/08 v3.2 Page Geometry \Gm@cnth=\count111 \Gm@cntv=\count112 \c@Gm@tempcnt=\count113 \Gm@bindingoffset=\dimen153 \Gm@wd@mp=\dimen154 \Gm@odd@mp=\dimen155 \Gm@even@mp=\dimen156 \Gm@dimlist=\toks16 ) (/usr/share/texmf-texlive/tex/latex/hyperref/hyperref.sty Package: hyperref 2007/02/07 v6.75r Hypertext links for LaTeX \@linkdim=\dimen157 \Hy@linkcounter=\count114 \Hy@pagecounter=\count115 (/usr/share/texmf-texlive/tex/latex/hyperref/pd1enc.def File: pd1enc.def 2007/02/07 v6.75r Hyperref: PDFDocEncoding definition (HO) ) (/etc/texmf/tex/latex/config/hyperref.cfg File: hyperref.cfg 2002/06/06 v1.2 hyperref configuration of TeXLive ) (/usr/share/texmf-texlive/tex/latex/oberdiek/kvoptions.sty Package: kvoptions 2006/08/22 v2.4 Connects package keyval with LaTeX options ( HO) ) Package hyperref Info: Option `bookmarks' set `true' on input line 2238. Package hyperref Info: Option `bookmarksopen' set `true' on input line 2238. Package hyperref Info: Option `implicit' set `false' on input line 2238. Package hyperref Info: Hyper figures OFF on input line 2288. Package hyperref Info: Link nesting OFF on input line 2293. Package hyperref Info: Hyper index ON on input line 2296. Package hyperref Info: Plain pages OFF on input line 2303. Package hyperref Info: Backreferencing OFF on input line 2308. Implicit mode OFF; no redefinition of LaTeX internals Package hyperref Info: Bookmarks ON on input line 2444. (/usr/share/texmf-texlive/tex/latex/ltxmisc/url.sty \Urlmuskip=\muskip10 Package: url 2005/06/27 ver 3.2 Verb mode for urls, etc. ) LaTeX Info: Redefining \url on input line 2599. \Fld@menulength=\count116 \Field@Width=\dimen158 \Fld@charsize=\dimen159 \Choice@toks=\toks17 \Field@toks=\toks18 Package hyperref Info: Hyper figures OFF on input line 3102. Package hyperref Info: Link nesting OFF on input line 3107. Package hyperref Info: Hyper index ON on input line 3110. Package hyperref Info: backreferencing OFF on input line 3117. Package hyperref Info: Link coloring OFF on input line 3122. Package hyperref Warning: Option `pdfpagelabels' is turned off (hyperref) because \thepage is undefined. Hyperref stopped early ) *hyperref using driver hdvipdfm* (/usr/share/texmf-texlive/tex/latex/hyperref/hdvipdfm.def File: hdvipdfm.def 2007/02/07 v6.75r Hyperref driver for dvipdfm \pdfm@box=\box37 \Fld@listcount=\count117 ) (/usr/share/texmf-texlive/tex/latex/extsizes/size17.clo File: size17.clo 1999/11/11 NON-Standard LaTeX file (size option) ) (/usr/share/texmf/tex/latex/beamer/base/beamerbasecompatibility.sty Package: beamerbasecompatibility 2007/01/28 (rcs-revision 1.63) ) (/usr/share/texmf/tex/latex/beamer/base/beamerbasefont.sty Package: beamerbasefont 2007/01/28 (rcs-revision 1.16) ) (/usr/share/texmf/tex/latex/beamer/base/beamerbasemisc.sty Package: beamerbasemisc 2007/01/28 (rcs-revision 1.24) ) (/usr/share/texmf/tex/latex/beamer/base/beamerbasetwoscreens.sty Package: beamerbasetwoscreens 2007/01/28 (rcs-revision 1.7) ) (/usr/share/texmf/tex/latex/beamer/base/beamerbaseoverlay.sty Package: beamerbaseoverlay 2007/01/28 (rcs-revision 1.50) \beamer@argscount=\count118 \beamer@lastskipcover=\skip42 \beamer@trivlistdepth=\count119 ) (/usr/share/texmf/tex/latex/beamer/base/beamerbasetitle.sty Package: beamerbasetitle 2007/01/28 (rcs-revision 1.25) ) (/usr/share/texmf/tex/latex/beamer/base/beamerbasesection.sty Package: beamerbasesection 2007/01/28 (rcs-revision 1.21) \c@lecture=\count120 \c@part=\count121 \c@section=\count122 \c@subsection=\count123 \c@subsubsection=\count124 ) (/usr/share/texmf/tex/latex/beamer/base/beamerbaseframe.sty Package: beamerbaseframe 2007/01/28 (rcs-revision 1.60) \beamer@framebox=\box38 \beamer@frametitlebox=\box39 \beamer@zoombox=\box40 \beamer@zoomcount=\count125 \beamer@zoomframecount=\count126 \beamer@frametextheight=\dimen160 \c@subsectionslide=\count127 \beamer@frametopskip=\skip43 \beamer@framebottomskip=\skip44 \beamer@frametopskipautobreak=\skip45 \beamer@framebottomskipautobreak=\skip46 \beamer@envbody=\toks19 \c@framenumber=\count128 ) (/usr/share/texmf/tex/latex/beamer/base/beamerbaseverbatim.sty Package: beamerbaseverbatim 2007/01/28 (rcs-revision 1.8) \beamer@verbatimfileout=\write3 ) (/usr/share/texmf/tex/latex/beamer/base/beamerbaseframesize.sty Package: beamerbaseframesize 2007/01/28 (rcs-revision 1.18) \beamer@splitbox=\box41 \beamer@autobreakcount=\count129 \beamer@autobreaklastheight=\dimen161 \beamer@frametitletoks=\toks20 \beamer@framesubtitletoks=\toks21 ) (/usr/share/texmf/tex/latex/beamer/base/beamerbaseframecomponents.sty Package: beamerbaseframecomponents 2007/01/28 (rcs-revision 1.41) \beamer@footins=\box42 ) (/usr/share/texmf/tex/latex/beamer/base/beamerbasecolor.sty Package: beamerbasecolor 2007/01/28 (rcs-revision 1.42) ) (/usr/share/texmf/tex/latex/beamer/base/beamerbasenotes.sty Package: beamerbasenotes 2007/01/28 (rcs-revision 1.23) \beamer@frameboxcopy=\box43 ) (/usr/share/texmf/tex/latex/beamer/base/beamerbasetoc.sty Package: beamerbasetoc 2007/01/28 (rcs-revision 1.21) ) (/usr/share/texmf/tex/latex/beamer/base/beamerbasetemplates.sty Package: beamerbasetemplates 2007/01/28 (rcs-revision 1.51) \beamer@sbttoks=\toks22 (/usr/share/texmf/tex/latex/beamer/base/beamerbaseauxtemplates.sty Package: beamerbaseauxtemplates 2007/01/28 (rcs-revision 1.28) (/usr/share/texmf/tex/latex/beamer/base/beamerbaseboxes.sty Package: beamerbaseboxes 2007/03/11 (rcs-revision 1.32) \bmb@box=\box44 \bmb@colorbox=\box45 \bmb@boxshadow=\box46 \bmb@boxshadowball=\box47 \bmb@boxshadowballlarge=\box48 \bmb@temp=\dimen162 \bmb@dima=\dimen163 \bmb@dimb=\dimen164 \bmb@prevheight=\dimen165 ) \beamer@blockheadheight=\dimen166 )) (/usr/share/texmf/tex/latex/beamer/base/beamerbaselocalstructure.sty Package: beamerbaselocalstructure 2007/01/28 (rcs-revision 1.53) (/usr/share/texmf-texlive/tex/latex/tools/enumerate.sty Package: enumerate 1999/03/05 v3.00 enumerate extensions (DPC) \@enLab=\toks23 ) \c@figure=\count130 \c@table=\count131 \abovecaptionskip=\skip47 \belowcaptionskip=\skip48 ) (/usr/share/texmf/tex/latex/beamer/base/beamerbasenavigation.sty Package: beamerbasenavigation 2007/01/28 (rcs-revision 1.36) ) (/usr/share/texmf/tex/latex/beamer/base/beamerbasetheorems.sty Package: beamerbasetheorems 2007/01/28 (rcs-revision 1.10) (/usr/share/texmf-texlive/tex/latex/amsmath/amsmath.sty Package: amsmath 2000/07/18 v2.13 AMS math features \@mathmargin=\skip49 For additional information on amsmath, use the `?' option. (/usr/share/texmf-texlive/tex/latex/amsmath/amstext.sty Package: amstext 2000/06/29 v2.01 (/usr/share/texmf-texlive/tex/latex/amsmath/amsgen.sty File: amsgen.sty 1999/11/30 v2.0 \@emptytoks=\toks24 \ex@=\dimen167 )) (/usr/share/texmf-texlive/tex/latex/amsmath/amsbsy.sty Package: amsbsy 1999/11/29 v1.2d \pmbraise@=\dimen168 ) (/usr/share/texmf-texlive/tex/latex/amsmath/amsopn.sty Package: amsopn 1999/12/14 v2.01 operator names ) \inf@bad=\count132 LaTeX Info: Redefining \frac on input line 211. \uproot@=\count133 \leftroot@=\count134 LaTeX Info: Redefining \overline on input line 307. \classnum@=\count135 \DOTSCASE@=\count136 LaTeX Info: Redefining \ldots on input line 379. LaTeX Info: Redefining \dots on input line 382. LaTeX Info: Redefining \cdots on input line 467. \Mathstrutbox@=\box49 \strutbox@=\box50 \big@size=\dimen169 LaTeX Font Info: Redeclaring font encoding OML on input line 567. LaTeX Font Info: Redeclaring font encoding OMS on input line 568. \macc@depth=\count137 \c@MaxMatrixCols=\count138 \dotsspace@=\muskip11 \c@parentequation=\count139 \dspbrk@lvl=\count140 \tag@help=\toks25 \row@=\count141 \column@=\count142 \maxfields@=\count143 \andhelp@=\toks26 \eqnshift@=\dimen170 \alignsep@=\dimen171 \tagshift@=\dimen172 \tagwidth@=\dimen173 \totwidth@=\dimen174 \lineht@=\dimen175 \@envbody=\toks27 \multlinegap=\skip50 \multlinetaggap=\skip51 \mathdisplay@stack=\toks28 LaTeX Info: Redefining \[ on input line 2666. LaTeX Info: Redefining \] on input line 2667. ) (/usr/share/texmf-texlive/tex/latex/amscls/amsthm.sty Package: amsthm 2004/08/06 v2.20 \thm@style=\toks29 \thm@bodyfont=\toks30 \thm@headfont=\toks31 \thm@notefont=\toks32 \thm@headpunct=\toks33 \thm@preskip=\skip52 \thm@postskip=\skip53 \thm@headsep=\skip54 \dth@everypar=\toks34 ) \c@theorem=\count144 ) (/usr/share/texmf/tex/latex/beamer/base/beamerbasethemes.sty Package: beamerbasethemes 2007/01/28 (rcs-revision 1.10) ) (/usr/share/texmf/tex/latex/beamer/themes/theme/beamerthemedefault.sty Package: beamerthemedefault 2007/01/28 (rcs-revision 1.7) (/usr/share/texmf/tex/latex/beamer/themes/font/beamerfontthemedefault.sty Package: beamerfontthemedefault 2007/01/28 (rcs-revision 1.13) ) (/usr/share/texmf/tex/latex/beamer/themes/color/beamercolorthemedefault.sty Package: beamercolorthemedefault 2007/01/28 (rcs-revision 1.28) ) (/usr/share/texmf/tex/latex/beamer/themes/inner/beamerinnerthemedefault.sty Package: beamerinnerthemedefault 2007/01/28 (rcs-revision 1.20) \beamer@dima=\dimen176 \beamer@dimb=\dimen177 ) (/usr/share/texmf/tex/latex/beamer/themes/outer/beamerouterthemedefault.sty Package: beamerouterthemedefault 2007/01/28 (rcs-revision 1.14) ))) (./pbuilder-presentation.aux) \openout1 = `pbuilder-presentation.aux'. LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 42. LaTeX Font Info: ... okay on input line 42. LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 42. LaTeX Font Info: ... okay on input line 42. LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 42. LaTeX Font Info: ... okay on input line 42. LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 42. LaTeX Font Info: ... okay on input line 42. LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 42. LaTeX Font Info: ... okay on input line 42. LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 42. LaTeX Font Info: ... okay on input line 42. LaTeX Font Info: Checking defaults for PD1/pdf/m/n on input line 42. LaTeX Font Info: ... okay on input line 42. -------------------- Geometry parameters paper: user defined landscape: -- twocolumn: -- twoside: -- asymmetric: -- h-parts: 28.45274pt, 307.28987pt, 28.45274pt v-parts: 0.0pt, 273.14662pt, 0.0pt hmarginratio: -- vmarginratio: -- lines: -- heightrounded: -- bindingoffset: 0.0pt truedimen: -- includehead: true includefoot: true includemp: -- driver: dvipdfm -------------------- Page layout dimensions and switches \paperwidth 364.19536pt \paperheight 273.14662pt \textwidth 307.28987pt \textheight 244.6939pt \oddsidemargin -43.81725pt \evensidemargin -43.81725pt \topmargin -72.26999pt \headheight 14.22636pt \headsep 0.0pt \footskip 14.22636pt \marginparwidth 2.0pt \marginparsep 12.0pt \columnsep 10.0pt \skip\footins 14.0pt plus 5.0pt minus 3.0pt \hoffset 0.0pt \voffset 0.0pt \mag 1000 (1in=72.27pt, 1cm=28.45pt) ----------------------- Package hyperref Info: Link coloring OFF on input line 42. (/usr/share/texmf-texlive/tex/latex/hyperref/nameref.sty Package: nameref 2006/12/27 v2.28 Cross-referencing by name of section (/usr/share/texmf-texlive/tex/latex/oberdiek/refcount.sty Package: refcount 2006/02/20 v3.0 Data extraction from references (HO) ) \c@section@level=\count145 ) LaTeX Info: Redefining \ref on input line 42. LaTeX Info: Redefining \pageref on input line 42. (./pbuilder-presentation.out) (./pbuilder-presentation.out) \@outlinefile=\write4 \openout4 = `pbuilder-presentation.out'. LaTeX Font Info: Overwriting symbol font `operators' in version `normal' (Font) OT1/cmr/m/n --> OT1/cmss/m/n on input line 42. LaTeX Font Info: Overwriting symbol font `operators' in version `bold' (Font) OT1/cmr/bx/n --> OT1/cmss/bx/n on input line 42. \symnumbers=\mathgroup6 \sympureletters=\mathgroup7 LaTeX Font Info: Overwriting math alphabet `\mathrm' in version `normal' (Font) OT1/cmss/m/n --> OT1/cmr/m/n on input line 42. LaTeX Font Info: Redeclaring math alphabet \mathbf on input line 42. LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `normal' (Font) OT1/cmr/bx/n --> OT1/cmss/bx/n on input line 42. LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `bold' (Font) OT1/cmr/bx/n --> OT1/cmss/bx/n on input line 42. LaTeX Font Info: Redeclaring math alphabet \mathsf on input line 42. LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `normal' (Font) OT1/cmss/m/n --> OT1/cmss/m/n on input line 42. LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold' (Font) OT1/cmss/bx/n --> OT1/cmss/m/n on input line 42. LaTeX Font Info: Redeclaring math alphabet \mathit on input line 42. LaTeX Font Info: Overwriting math alphabet `\mathit' in version `normal' (Font) OT1/cmr/m/it --> OT1/cmss/m/it on input line 42. LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold' (Font) OT1/cmr/bx/it --> OT1/cmss/m/it on input line 42. LaTeX Font Info: Redeclaring math alphabet \mathtt on input line 42. LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `normal' (Font) OT1/cmtt/m/n --> OT1/cmtt/m/n on input line 42. LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold' (Font) OT1/cmtt/m/n --> OT1/cmtt/m/n on input line 42. LaTeX Font Info: Overwriting symbol font `numbers' in version `bold' (Font) OT1/cmss/m/n --> OT1/cmss/bx/n on input line 42. LaTeX Font Info: Overwriting symbol font `pureletters' in version `bold' (Font) OT1/cmss/m/it --> OT1/cmss/bx/it on input line 42. LaTeX Font Info: Overwriting math alphabet `\mathrm' in version `bold' (Font) OT1/cmss/bx/n --> OT1/cmr/bx/n on input line 42. LaTeX Font Info: Overwriting math alphabet `\mathbf' in version `bold' (Font) OT1/cmss/bx/n --> OT1/cmss/bx/n on input line 42. LaTeX Font Info: Overwriting math alphabet `\mathsf' in version `bold' (Font) OT1/cmss/m/n --> OT1/cmss/bx/n on input line 42. LaTeX Font Info: Overwriting math alphabet `\mathit' in version `bold' (Font) OT1/cmss/m/it --> OT1/cmss/bx/it on input line 42. LaTeX Font Info: Overwriting math alphabet `\mathtt' in version `bold' (Font) OT1/cmtt/m/n --> OT1/cmtt/bx/n on input line 42. (./pbuilder-presentation.nav) LaTeX Font Warning: Font shape `OT1/cmss/m/n' in size <4> not available (Font) size <5> substituted on input line 43. File: openlogo-light.eps Graphic file (type eps) Overfull \vbox (19.70001pt too high) has occurred while \output is active [] [1 ] LaTeX Font Info: Try loading font information for U+msa on input line 55. (/usr/share/texmf-texlive/tex/latex/amsfonts/umsa.fd File: umsa.fd 2002/01/19 v2.2g AMS font definitions ) LaTeX Font Info: Try loading font information for U+msb on input line 55. (/usr/share/texmf-texlive/tex/latex/amsfonts/umsb.fd File: umsb.fd 2002/01/19 v2.2g AMS font definitions ) File: openlogo-light.eps Graphic file (type eps) Overfull \vbox (19.70001pt too high) has occurred while \output is active [] [2 ] File: openlogo-light.eps Graphic file (type eps) Overfull \vbox (19.70001pt too high) has occurred while \output is active [] [3 ] File: openlogo-light.eps Graphic file (type eps) Overfull \vbox (19.70001pt too high) has occurred while \output is active [] [4 ] File: openlogo-light.eps Graphic file (type eps) Overfull \vbox (19.70001pt too high) has occurred while \output is active [] [5 ] File: chroot.eps Graphic file (type eps) File: openlogo-light.eps Graphic file (type eps) Overfull \vbox (19.70001pt too high) has occurred while \output is active [] [6 ] File: chroot-pbuilder.eps Graphic file (type eps) File: openlogo-light.eps Graphic file (type eps) Overfull \vbox (19.70001pt too high) has occurred while \output is active [] [7 ] File: openlogo-light.eps Graphic file (type eps) Overfull \vbox (19.70001pt too high) has occurred while \output is active [] [8 ] File: openlogo-light.eps Graphic file (type eps) Overfull \vbox (19.70001pt too high) has occurred while \output is active [] [9 ] File: pbuildercycle.eps Graphic file (type eps) Overfull \hbox (17.38577pt too wide) in paragraph at lines 104--104 [][] [] File: openlogo-light.eps Graphic file (type eps) Overfull \vbox (19.70001pt too high) has occurred while \output is active [] [10 ] Overfull \vbox (2.91585pt too high) detected at line 119 [] File: openlogo-light.eps Graphic file (type eps) Overfull \vbox (19.70001pt too high) has occurred while \output is active [] [11 ] Overfull \hbox (66.17406pt too wide) in paragraph at lines 129--129 []\OT1/cmtt/m/n/17.28 W: /home/dancer/.pbuilderrc does not exist[] [] Overfull \hbox (208.44603pt too wide) in paragraph at lines 129--129 [] \OT1/cmtt/m/n/17.28 -> extracting base tarball [/var/cache/pbuilder/base.tgz ][] [] File: openlogo-light.eps Graphic file (type eps) Overfull \vbox (19.70001pt too high) has occurred while \output is active [] [12 ] Overfull \hbox (66.17406pt too wide) in paragraph at lines 143--143 []\OT1/cmtt/m/n/17.28 Current time: Sat Jan 20 12:03:34 JST 2007[] [] Overfull \hbox (599.69395pt too wide) in paragraph at lines 143--143 [] \OT1/cmtt/m/n/17.28 -> extracting base tarball [/home/dancer/DEBIAN/pbuilder /pbuilder/testsuite/tmp.FeeAX18779/testimage][] [] File: openlogo-light.eps Graphic file (type eps) Overfull \vbox (19.70001pt too high) has occurred while \output is active [] [13 ] Overfull \hbox (30.60606pt too wide) in paragraph at lines 158--158 []\OT1/cmtt/m/n/17.28 # pbuilder --login --bindmount ${HOME}[] [] Overfull \hbox (66.17406pt too wide) in paragraph at lines 158--158 []\OT1/cmtt/m/n/17.28 Current time: Sat Jan 20 12:03:34 JST 2007[] [] Overfull \hbox (599.69395pt too wide) in paragraph at lines 158--158 [] \OT1/cmtt/m/n/17.28 -> extracting base tarball [/home/dancer/DEBIAN/pbuilder /pbuilder/testsuite/tmp.FeeAX18779/testimage][] [] File: openlogo-light.eps Graphic file (type eps) Overfull \vbox (19.70001pt too high) has occurred while \output is active [] [14 ] File: openlogo-light.eps Graphic file (type eps) Overfull \vbox (19.70001pt too high) has occurred while \output is active [] [15 ] Overfull \hbox (66.17406pt too wide) in paragraph at lines 188--188 []\OT1/cmtt/m/n/17.28 W: /home/dancer/.pbuilderrc does not exist[] [] Overfull \hbox (101.74205pt too wide) in paragraph at lines 188--188 []\OT1/cmtt/m/n/17.28 dpkg-buildpackage: source package is cowdancer[] [] Overfull \hbox (57.28206pt too wide) in paragraph at lines 188--188 []\OT1/cmtt/m/n/17.28 dpkg-buildpackage: source version is 0.26[] [] Overfull \hbox (324.042pt too wide) in paragraph at lines 188--188 []\OT1/cmtt/m/n/17.28 dpkg-buildpackage: source changed by Junichi Uekawa [] [] Overfull \hbox (155.09404pt too wide) in paragraph at lines 188--188 []\OT1/cmtt/m/n/17.28 dpkg-buildpackage: source version without epoch 0.26[] [] Overfull \hbox (306.25801pt too wide) in paragraph at lines 188--188 []\OT1/cmtt/m/n/17.28 make[1]: Entering directory `/home/dancer/DEBIAN/cowdance r/cowdancer'[] [] Overfull \hbox (172.87804pt too wide) in paragraph at lines 188--188 []\OT1/cmtt/m/n/17.28 rm -f *~ *.o *.lo libcowdancer.so cow-shell cowbuilder[] [] Overfull \hbox (297.36601pt too wide) in paragraph at lines 188--188 []\OT1/cmtt/m/n/17.28 make[1]: Leaving directory `/home/dancer/DEBIAN/cowdancer /cowdancer'[] [] Overfull \hbox (670.82994pt too wide) in paragraph at lines 188--188 []\OT1/cmtt/m/n/17.28 dpkg-source: warning: source directory `./cowdancer' is n ot - `cowdancer-0.26'[] [] Overfull \hbox (190.66203pt too wide) in paragraph at lines 188--188 []\OT1/cmtt/m/n/17.28 dpkg-source: building cowdancer in cowdancer_0.26.tar.gz[ ] [] Overfull \vbox (288.91585pt too high) detected at line 189 [] File: openlogo-light.eps Graphic file (type eps) Overfull \vbox (19.70001pt too high) has occurred while \output is active [] [16 ] File: develcycle.eps Graphic file (type eps) File: openlogo-light.eps Graphic file (type eps) Overfull \vbox (19.70001pt too high) has occurred while \output is active [] [17 ] Overfull \hbox (16.83325pt too wide) in paragraph at lines 222--222 [][][][][][][] [] File: openlogo-light.eps Graphic file (type eps) Overfull \vbox (19.70001pt too high) has occurred while \output is active [] [18 ] File: openlogo-light.eps Graphic file (type eps) Overfull \vbox (19.70001pt too high) has occurred while \output is active [] [19 ] File: openlogo-light.eps Graphic file (type eps) Overfull \vbox (19.70001pt too high) has occurred while \output is active [] [20 ] File: openlogo-light.eps Graphic file (type eps) Overfull \vbox (19.70001pt too high) has occurred while \output is active [] [21 ] File: openlogo-light.eps Graphic file (type eps) Overfull \vbox (19.70001pt too high) has occurred while \output is active [] [22 ] Overfull \hbox (21.71407pt too wide) in paragraph at lines 273--273 []\OT1/cmtt/m/n/17.28 KERNEL_IMAGE=2.6.18-4-mips-di-vmlinux[] [] Overfull \hbox (12.82207pt too wide) in paragraph at lines 273--273 [] \OT1/cmtt/m/n/17.28 /var/cache/pbuilder/base-mips.qemu[] [] File: openlogo-light.eps Graphic file (type eps) Overfull \vbox (19.70001pt too high) has occurred while \output is active [] [23 ] File: qemubuilder-create.eps Graphic file (type eps) File: openlogo-light.eps Graphic file (type eps) Overfull \vbox (19.70001pt too high) has occurred while \output is active [] [24 ] File: qemubuilder-build.eps Graphic file (type eps) File: openlogo-light.eps Graphic file (type eps) Overfull \vbox (19.70001pt too high) has occurred while \output is active [] [25 ] File: openlogo-light.eps Graphic file (type eps) Overfull \vbox (19.70001pt too high) has occurred while \output is active [] [26 ] File: openlogo-light.eps Graphic file (type eps) Overfull \vbox (19.70001pt too high) has occurred while \output is active [] [27 ] File: openlogo-light.eps Graphic file (type eps) Overfull \vbox (19.70001pt too high) has occurred while \output is active [] [28 ] Overfull \hbox (235.12202pt too wide) in paragraph at lines 303--303 []\OT1/cmtt/m/n/17.28 $ sudo qemubuilder --login --config pbuilder-qemu-mips.co nfig[] [] Overfull \hbox (137.31004pt too wide) in paragraph at lines 303--303 []\OT1/cmtt/m/n/17.28 bash: /root/.pbuilderrc: No such file or directory[] [] Overfull \hbox (395.178pt too wide) in paragraph at lines 303--303 []\OT1/cmtt/m/n/17.28 /home/dancer/tmp/base-mips.qemu: clean, 11585/393984 file s, 88319/786432 blocks[] [] Overfull \hbox (217.33803pt too wide) in paragraph at lines 303--303 []\OT1/cmtt/m/n/17.28 1048576 bytes (1.0 MB) copied, 0.0229856 seconds, 45.6 MB /s[] [] Overfull \vbox (46.91585pt too high) detected at line 303 [] File: openlogo-light.eps Graphic file (type eps) Overfull \vbox (19.70001pt too high) has occurred while \output is active [] [29 ] Overfull \hbox (75.06606pt too wide) in paragraph at lines 314--314 []\OT1/cmtt/m/n/17.28 hostname: the specified hostname is invalid[] [] Overfull \hbox (110.63405pt too wide) in paragraph at lines 314--314 []\OT1/cmtt/m/n/17.28 bound to 10.0.2.15 -- renewal in 35272 seconds.[] [] File: openlogo-light.eps Graphic file (type eps) Overfull \vbox (19.70001pt too high) has occurred while \output is active [] [30 ] File: openlogo-light.eps Graphic file (type eps) Overfull \vbox (19.70001pt too high) has occurred while \output is active [] [31 ] File: openlogo-light.eps Graphic file (type eps) Overfull \vbox (19.70001pt too high) has occurred while \output is active [] [32 ] File: openlogo-light.eps Graphic file (type eps) Overfull \vbox (19.70001pt too high) has occurred while \output is active [] [33 ] File: openlogo-light.eps Graphic file (type eps) Overfull \vbox (19.70001pt too high) has occurred while \output is active [] [34 ] File: openlogo-light.eps Graphic file (type eps) Overfull \vbox (19.70001pt too high) has occurred while \output is active [] [35 ] \tf@nav=\write5 \openout5 = `pbuilder-presentation.nav'. \tf@toc=\write6 \openout6 = `pbuilder-presentation.toc'. \tf@snm=\write7 \openout7 = `pbuilder-presentation.snm'. (./pbuilder-presentation.aux) LaTeX Font Warning: Size substitutions with differences (Font) up to 1.0pt have occurred. ) Here is how much of TeX's memory you used: 7780 strings out of 93997 138717 string characters out of 1162875 223462 words of memory out of 1500000 10827 multiletter control sequences out of 10000+50000 12674 words of font info for 48 fonts, out of 1200000 for 2000 703 hyphenation exceptions out of 8191 41i,14n,51p,329b,505s stack positions out of 5000i,500n,6000p,200000b,5000s Output written on pbuilder-presentation.dvi (35 pages, 299304 bytes). pbuilder-0.215ubuntu7/Documentation/debconf7/chroot-pbuilder.eps0000664000000000000000000011421612312041170021660 0ustar %!PS-Adobe-2.0 EPSF-2.0 %%Title: /home/dancer/DEBIAN/pbuilder/pbuilder/Documentation/debconf7/chroot-pbuilder.dia %%Creator: Dia v0.95 %%CreationDate: Mon Jun 18 18:46:45 2007 %%For: dancer %%Orientation: Portrait %%Magnification: 1.0000 %%BoundingBox: 0 0 571 330 %%BeginSetup %%EndSetup %%EndComments %%BeginProlog [ /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /space /exclam /quotedbl /numbersign /dollar /percent /ampersand /quoteright /parenleft /parenright /asterisk /plus /comma /hyphen /period /slash /zero /one /two /three /four /five /six /seven /eight /nine /colon /semicolon /less /equal /greater /question /at /A /B /C /D /E /F /G /H /I /J /K /L /M /N /O /P /Q /R /S /T /U /V /W /X /Y /Z /bracketleft /backslash /bracketright /asciicircum /underscore /quoteleft /a /b /c /d /e /f /g /h /i /j /k /l /m /n /o /p /q /r /s /t /u /v /w /x /y /z /braceleft /bar /braceright /asciitilde /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /space /exclamdown /cent /sterling /currency /yen /brokenbar /section /dieresis /copyright /ordfeminine /guillemotleft /logicalnot /hyphen /registered /macron /degree /plusminus /twosuperior /threesuperior /acute /mu /paragraph /periodcentered /cedilla /onesuperior /ordmasculine /guillemotright /onequarter /onehalf /threequarters /questiondown /Agrave /Aacute /Acircumflex /Atilde /Adieresis /Aring /AE /Ccedilla /Egrave /Eacute /Ecircumflex /Edieresis /Igrave /Iacute /Icircumflex /Idieresis /Eth /Ntilde /Ograve /Oacute /Ocircumflex /Otilde /Odieresis /multiply /Oslash /Ugrave /Uacute /Ucircumflex /Udieresis /Yacute /Thorn /germandbls /agrave /aacute /acircumflex /atilde /adieresis /aring /ae /ccedilla /egrave /eacute /ecircumflex /edieresis /igrave /iacute /icircumflex /idieresis /eth /ntilde /ograve /oacute /ocircumflex /otilde /odieresis /divide /oslash /ugrave /uacute /ucircumflex /udieresis /yacute /thorn /ydieresis] /isolatin1encoding exch def /cp {closepath} bind def /c {curveto} bind def /f {fill} bind def /a {arc} bind def /ef {eofill} bind def /ex {exch} bind def /gr {grestore} bind def /gs {gsave} bind def /sa {save} bind def /rs {restore} bind def /l {lineto} bind def /m {moveto} bind def /rm {rmoveto} bind def /n {newpath} bind def /s {stroke} bind def /sh {show} bind def /slc {setlinecap} bind def /slj {setlinejoin} bind def /slw {setlinewidth} bind def /srgb {setrgbcolor} bind def /rot {rotate} bind def /sc {scale} bind def /sd {setdash} bind def /ff {findfont} bind def /sf {setfont} bind def /scf {scalefont} bind def /sw {stringwidth pop} bind def /tr {translate} bind def /ellipsedict 8 dict def ellipsedict /mtrx matrix put /ellipse { ellipsedict begin /endangle exch def /startangle exch def /yrad exch def /xrad exch def /y exch def /x exch def /savematrix mtrx currentmatrix def x y tr xrad yrad sc 0 0 1 startangle endangle arc savematrix setmatrix end } def /mergeprocs { dup length 3 -1 roll dup length dup 5 1 roll 3 -1 roll add array cvx dup 3 -1 roll 0 exch putinterval dup 4 2 roll putinterval } bind def /dpi_x 300 def /dpi_y 300 def /conicto { /to_y exch def /to_x exch def /conic_cntrl_y exch def /conic_cntrl_x exch def currentpoint /p0_y exch def /p0_x exch def /p1_x p0_x conic_cntrl_x p0_x sub 2 3 div mul add def /p1_y p0_y conic_cntrl_y p0_y sub 2 3 div mul add def /p2_x p1_x to_x p0_x sub 1 3 div mul add def /p2_y p1_y to_y p0_y sub 1 3 div mul add def p1_x p1_y p2_x p2_y to_x to_y curveto } bind def /start_ol { gsave 1.1 dpi_x div dup scale} bind def /end_ol { closepath fill grestore } bind def 28.346000 -28.346000 scale -12.929289 -14.050000 translate %%EndProlog 0.000000 0.000000 0.000000 srgb gsave 15.000000 7.000000 translate 0.035278 -0.035278 scale start_ol 448 986 moveto 448 2496 lineto 832 2496 lineto 832 1001 lineto 832 629 978 442 conicto 1124 256 1417 256 conicto 1768 256 1972 477 conicto 2176 699 2176 1081 conicto 2176 2496 lineto 2560 2496 lineto 2560 0 lineto 2176 0 lineto 2176 384 lineto 2022 157 1819 46 conicto 1617 -64 1349 -64 conicto 906 -64 677 203 conicto 448 471 448 986 conicto end_ol grestore gsave 15.389467 7.000000 translate 0.035278 -0.035278 scale start_ol 2048 2432 moveto 2048 2048 lineto 1868 2144 1674 2192 conicto 1480 2240 1273 2240 conicto 957 2240 798 2144 conicto 640 2048 640 1856 conicto 640 1709 757 1625 conicto 875 1542 1229 1467 conicto 1380 1435 lineto 1812 1341 1994 1170 conicto 2176 999 2176 692 conicto 2176 343 1899 139 conicto 1622 -64 1137 -64 conicto 936 -64 717 -32 conicto 498 0 256 64 conicto 256 512 lineto 490 385 718 320 conicto 947 256 1170 256 conicto 1470 256 1631 358 conicto 1792 461 1792 647 conicto 1792 820 1670 912 conicto 1549 1004 1141 1089 conicto 988 1123 lineto 600 1203 428 1369 conicto 256 1535 256 1824 conicto 256 2177 510 2368 conicto 765 2560 1233 2560 conicto 1466 2560 1670 2528 conicto 1875 2496 2048 2432 conicto end_ol grestore gsave 15.711200 7.000000 translate 0.035278 -0.035278 scale start_ol 1920 2112 moveto 1848 2178 1764 2209 conicto 1680 2240 1578 2240 conicto 1218 2240 1025 2001 conicto 832 1763 832 1317 conicto 832 0 lineto 448 0 lineto 448 2496 lineto 832 2496 lineto 832 2112 lineto 965 2339 1180 2449 conicto 1396 2560 1702 2560 conicto 1747 2560 1799 2560 conicto 1852 2560 1917 2560 conicto 1920 2112 lineto end_ol grestore gsave 15.000000 8.000000 translate 0.035278 -0.035278 scale start_ol 128 2496 moveto 563 2496 lineto 1344 401 lineto 2125 2496 lineto 2560 2496 lineto 1623 0 lineto 1065 0 lineto 128 2496 lineto end_ol grestore gsave 15.364067 8.000000 translate 0.035278 -0.035278 scale start_ol 1559 1280 moveto 1040 1280 840 1160 conicto 640 1041 640 754 conicto 640 525 790 390 conicto 940 256 1198 256 conicto 1554 256 1769 510 conicto 1984 765 1984 1187 conicto 1984 1280 lineto 1559 1280 lineto 2368 1449 moveto 2368 0 lineto 1984 0 lineto 1984 384 lineto 1842 154 1628 45 conicto 1415 -64 1107 -64 conicto 717 -64 486 154 conicto 256 372 256 739 conicto 256 1166 539 1383 conicto 822 1600 1384 1600 conicto 1984 1600 lineto 1984 1641 lineto 1984 1927 1796 2083 conicto 1608 2240 1266 2240 conicto 1049 2240 843 2192 conicto 638 2144 448 2048 conicto 448 2432 lineto 673 2496 884 2528 conicto 1095 2560 1295 2560 conicto 1835 2560 2101 2284 conicto 2368 2009 2368 1449 conicto end_ol grestore gsave 15.736600 8.000000 translate 0.035278 -0.035278 scale start_ol 1920 2112 moveto 1848 2178 1764 2209 conicto 1680 2240 1578 2240 conicto 1218 2240 1025 2001 conicto 832 1763 832 1317 conicto 832 0 lineto 448 0 lineto 448 2496 lineto 832 2496 lineto 832 2112 lineto 965 2339 1180 2449 conicto 1396 2560 1702 2560 conicto 1747 2560 1799 2560 conicto 1852 2560 1917 2560 conicto 1920 2112 lineto end_ol grestore gsave 15.000000 5.000000 translate 0.035278 -0.035278 scale start_ol 2240 1249 moveto 2240 1713 2052 1976 conicto 1865 2240 1536 2240 conicto 1208 2240 1020 1976 conicto 832 1713 832 1249 conicto 832 784 1020 520 conicto 1208 256 1536 256 conicto 1865 256 2052 520 conicto 2240 784 2240 1249 conicto 832 2112 moveto 963 2340 1164 2450 conicto 1366 2560 1645 2560 conicto 2108 2560 2398 2198 conicto 2688 1837 2688 1248 conicto 2688 659 2398 297 conicto 2108 -64 1645 -64 conicto 1366 -64 1164 46 conicto 963 156 832 384 conicto 832 0 lineto 448 0 lineto 448 3520 lineto 832 3520 lineto 832 2112 lineto end_ol grestore gsave 15.389467 5.000000 translate 0.035278 -0.035278 scale start_ol 448 2496 moveto 832 2496 lineto 832 0 lineto 448 0 lineto 448 2496 lineto 448 3520 moveto 832 3520 lineto 832 3008 lineto 448 3008 lineto 448 3520 lineto end_ol grestore gsave 15.558800 5.000000 translate 0.035278 -0.035278 scale start_ol 2560 1509 moveto 2560 0 lineto 2176 0 lineto 2176 1496 lineto 2176 1869 2029 2054 conicto 1883 2240 1590 2240 conicto 1238 2240 1035 2018 conicto 832 1796 832 1413 conicto 832 0 lineto 448 0 lineto 448 2496 lineto 832 2496 lineto 832 2112 lineto 983 2337 1188 2448 conicto 1394 2560 1662 2560 conicto 2106 2560 2333 2293 conicto 2560 2027 2560 1509 conicto end_ol grestore gsave 15.000000 3.000000 translate 0.035278 -0.035278 scale start_ol 2560 1509 moveto 2560 0 lineto 2176 0 lineto 2176 1496 lineto 2176 1869 2029 2054 conicto 1883 2240 1590 2240 conicto 1238 2240 1035 2018 conicto 832 1796 832 1413 conicto 832 0 lineto 448 0 lineto 448 3520 lineto 832 3520 lineto 832 2112 lineto 983 2337 1188 2448 conicto 1394 2560 1662 2560 conicto 2106 2560 2333 2293 conicto 2560 2027 2560 1509 conicto end_ol grestore gsave 15.389467 3.000000 translate 0.035278 -0.035278 scale start_ol 1409 2240 moveto 1083 2240 893 1974 conicto 704 1709 704 1248 conicto 704 787 892 521 conicto 1081 256 1409 256 conicto 1733 256 1922 522 conicto 2112 789 2112 1248 conicto 2112 1705 1922 1972 conicto 1733 2240 1409 2240 conicto 1408 2560 moveto 1946 2560 2253 2212 conicto 2560 1864 2560 1248 conicto 2560 634 2253 285 conicto 1946 -64 1408 -64 conicto 869 -64 562 285 conicto 256 634 256 1248 conicto 256 1864 562 2212 conicto 869 2560 1408 2560 conicto end_ol grestore gsave 15.762000 3.000000 translate 0.035278 -0.035278 scale start_ol 2431 2020 moveto 2590 2296 2809 2428 conicto 3029 2560 3325 2560 conicto 3726 2560 3943 2287 conicto 4160 2014 4160 1509 conicto 4160 0 lineto 3776 0 lineto 3776 1496 lineto 3776 1874 3641 2057 conicto 3506 2240 3228 2240 conicto 2890 2240 2693 2018 conicto 2496 1796 2496 1413 conicto 2496 0 lineto 2112 0 lineto 2112 1496 lineto 2112 1876 1976 2058 conicto 1841 2240 1560 2240 conicto 1225 2240 1028 2017 conicto 832 1794 832 1413 conicto 832 0 lineto 448 0 lineto 448 2496 lineto 832 2496 lineto 832 2112 lineto 977 2341 1180 2450 conicto 1383 2560 1662 2560 conicto 1942 2560 2139 2422 conicto 2337 2284 2431 2020 conicto end_ol grestore gsave 16.354667 3.000000 translate 0.035278 -0.035278 scale start_ol 2624 1352 moveto 2624 1152 lineto 704 1152 lineto 731 715 960 485 conicto 1189 256 1597 256 conicto 1834 256 2056 320 conicto 2278 384 2496 512 conicto 2496 128 lineto 2273 34 2039 -15 conicto 1805 -64 1565 -64 conicto 961 -64 608 284 conicto 256 632 256 1225 conicto 256 1839 595 2199 conicto 934 2560 1509 2560 conicto 2024 2560 2324 2235 conicto 2624 1910 2624 1352 conicto 2240 1472 moveto 2235 1822 2043 2031 conicto 1852 2240 1537 2240 conicto 1180 2240 965 2038 conicto 750 1836 718 1470 conicto 2240 1472 lineto end_ol grestore gsave 15.000000 4.000000 translate 0.035278 -0.035278 scale start_ol 832 3200 moveto 832 2496 lineto 1664 2496 lineto 1664 2176 lineto 832 2176 lineto 832 804 lineto 832 495 914 407 conicto 997 320 1248 320 conicto 1664 320 lineto 1664 0 lineto 1248 0 lineto 793 0 620 173 conicto 448 347 448 804 conicto 448 2176 lineto 128 2176 lineto 128 2496 lineto 448 2496 lineto 448 3200 lineto 832 3200 lineto end_ol grestore gsave 15.237067 4.000000 translate 0.035278 -0.035278 scale start_ol 2431 2020 moveto 2590 2296 2809 2428 conicto 3029 2560 3325 2560 conicto 3726 2560 3943 2287 conicto 4160 2014 4160 1509 conicto 4160 0 lineto 3776 0 lineto 3776 1496 lineto 3776 1874 3641 2057 conicto 3506 2240 3228 2240 conicto 2890 2240 2693 2018 conicto 2496 1796 2496 1413 conicto 2496 0 lineto 2112 0 lineto 2112 1496 lineto 2112 1876 1976 2058 conicto 1841 2240 1560 2240 conicto 1225 2240 1028 2017 conicto 832 1794 832 1413 conicto 832 0 lineto 448 0 lineto 448 2496 lineto 832 2496 lineto 832 2112 lineto 977 2341 1180 2450 conicto 1383 2560 1662 2560 conicto 1942 2560 2139 2422 conicto 2337 2284 2431 2020 conicto end_ol grestore gsave 15.829733 4.000000 translate 0.035278 -0.035278 scale start_ol 832 384 moveto 832 -960 lineto 448 -960 lineto 448 2496 lineto 832 2496 lineto 832 2112 lineto 963 2340 1164 2450 conicto 1366 2560 1645 2560 conicto 2108 2560 2398 2198 conicto 2688 1837 2688 1248 conicto 2688 659 2398 297 conicto 2108 -64 1645 -64 conicto 1366 -64 1164 46 conicto 963 156 832 384 conicto 2240 1249 moveto 2240 1713 2052 1976 conicto 1865 2240 1536 2240 conicto 1208 2240 1020 1976 conicto 832 1713 832 1249 conicto 832 784 1020 520 conicto 1208 256 1536 256 conicto 1865 256 2052 520 conicto 2240 784 2240 1249 conicto end_ol grestore gsave 15.000000 6.000000 translate 0.035278 -0.035278 scale start_ol 448 3520 moveto 832 3520 lineto 832 0 lineto 448 0 lineto 448 3520 lineto end_ol grestore gsave 15.169333 6.000000 translate 0.035278 -0.035278 scale start_ol 448 2496 moveto 832 2496 lineto 832 0 lineto 448 0 lineto 448 2496 lineto 448 3520 moveto 832 3520 lineto 832 3008 lineto 448 3008 lineto 448 3520 lineto end_ol grestore gsave 15.338667 6.000000 translate 0.035278 -0.035278 scale start_ol 2240 1249 moveto 2240 1713 2052 1976 conicto 1865 2240 1536 2240 conicto 1208 2240 1020 1976 conicto 832 1713 832 1249 conicto 832 784 1020 520 conicto 1208 256 1536 256 conicto 1865 256 2052 520 conicto 2240 784 2240 1249 conicto 832 2112 moveto 963 2340 1164 2450 conicto 1366 2560 1645 2560 conicto 2108 2560 2398 2198 conicto 2688 1837 2688 1248 conicto 2688 659 2398 297 conicto 2108 -64 1645 -64 conicto 1366 -64 1164 46 conicto 963 156 832 384 conicto 832 0 lineto 448 0 lineto 448 3520 lineto 832 3520 lineto 832 2112 lineto end_ol grestore gsave 18.000000 8.000000 translate 0.035278 -0.035278 scale start_ol 2240 2432 moveto 2240 2048 lineto 2066 2144 1892 2192 conicto 1718 2240 1541 2240 conicto 1143 2240 923 1979 conicto 704 1718 704 1248 conicto 704 778 923 517 conicto 1143 256 1541 256 conicto 1718 256 1892 304 conicto 2066 352 2240 448 conicto 2240 64 lineto 2068 0 1883 -32 conicto 1698 -64 1490 -64 conicto 924 -64 590 290 conicto 256 645 256 1248 conicto 256 1859 593 2209 conicto 931 2560 1517 2560 conicto 1707 2560 1888 2528 conicto 2070 2496 2240 2432 conicto end_ol grestore gsave 18.338667 8.000000 translate 0.035278 -0.035278 scale start_ol 1559 1280 moveto 1040 1280 840 1160 conicto 640 1041 640 754 conicto 640 525 790 390 conicto 940 256 1198 256 conicto 1554 256 1769 510 conicto 1984 765 1984 1187 conicto 1984 1280 lineto 1559 1280 lineto 2368 1449 moveto 2368 0 lineto 1984 0 lineto 1984 384 lineto 1842 154 1628 45 conicto 1415 -64 1107 -64 conicto 717 -64 486 154 conicto 256 372 256 739 conicto 256 1166 539 1383 conicto 822 1600 1384 1600 conicto 1984 1600 lineto 1984 1641 lineto 1984 1927 1796 2083 conicto 1608 2240 1266 2240 conicto 1049 2240 843 2192 conicto 638 2144 448 2048 conicto 448 2432 lineto 673 2496 884 2528 conicto 1095 2560 1295 2560 conicto 1835 2560 2101 2284 conicto 2368 2009 2368 1449 conicto end_ol grestore gsave 18.711200 8.000000 translate 0.035278 -0.035278 scale start_ol 2240 2432 moveto 2240 2048 lineto 2066 2144 1892 2192 conicto 1718 2240 1541 2240 conicto 1143 2240 923 1979 conicto 704 1718 704 1248 conicto 704 778 923 517 conicto 1143 256 1541 256 conicto 1718 256 1892 304 conicto 2066 352 2240 448 conicto 2240 64 lineto 2068 0 1883 -32 conicto 1698 -64 1490 -64 conicto 924 -64 590 290 conicto 256 645 256 1248 conicto 256 1859 593 2209 conicto 931 2560 1517 2560 conicto 1707 2560 1888 2528 conicto 2070 2496 2240 2432 conicto end_ol grestore gsave 19.049867 8.000000 translate 0.035278 -0.035278 scale start_ol 2560 1509 moveto 2560 0 lineto 2176 0 lineto 2176 1496 lineto 2176 1869 2029 2054 conicto 1883 2240 1590 2240 conicto 1238 2240 1035 2018 conicto 832 1796 832 1413 conicto 832 0 lineto 448 0 lineto 448 3520 lineto 832 3520 lineto 832 2112 lineto 983 2337 1188 2448 conicto 1394 2560 1662 2560 conicto 2106 2560 2333 2293 conicto 2560 2027 2560 1509 conicto end_ol grestore gsave 19.439333 8.000000 translate 0.035278 -0.035278 scale start_ol 2624 1352 moveto 2624 1152 lineto 704 1152 lineto 731 715 960 485 conicto 1189 256 1597 256 conicto 1834 256 2056 320 conicto 2278 384 2496 512 conicto 2496 128 lineto 2273 34 2039 -15 conicto 1805 -64 1565 -64 conicto 961 -64 608 284 conicto 256 632 256 1225 conicto 256 1839 595 2199 conicto 934 2560 1509 2560 conicto 2024 2560 2324 2235 conicto 2624 1910 2624 1352 conicto 2240 1472 moveto 2235 1822 2043 2031 conicto 1852 2240 1537 2240 conicto 1180 2240 965 2038 conicto 750 1836 718 1470 conicto 2240 1472 lineto end_ol grestore gsave 19.811867 8.000000 translate 0.035278 -0.035278 scale start_ol 1157 3328 moveto 1536 3328 lineto 379 -448 lineto 0 -448 lineto 1157 3328 lineto end_ol grestore gsave 20.015067 8.000000 translate 0.035278 -0.035278 scale start_ol 832 384 moveto 832 -960 lineto 448 -960 lineto 448 2496 lineto 832 2496 lineto 832 2112 lineto 963 2340 1164 2450 conicto 1366 2560 1645 2560 conicto 2108 2560 2398 2198 conicto 2688 1837 2688 1248 conicto 2688 659 2398 297 conicto 2108 -64 1645 -64 conicto 1366 -64 1164 46 conicto 963 156 832 384 conicto 2240 1249 moveto 2240 1713 2052 1976 conicto 1865 2240 1536 2240 conicto 1208 2240 1020 1976 conicto 832 1713 832 1249 conicto 832 784 1020 520 conicto 1208 256 1536 256 conicto 1865 256 2052 520 conicto 2240 784 2240 1249 conicto end_ol grestore gsave 20.404533 8.000000 translate 0.035278 -0.035278 scale start_ol 2240 1249 moveto 2240 1713 2052 1976 conicto 1865 2240 1536 2240 conicto 1208 2240 1020 1976 conicto 832 1713 832 1249 conicto 832 784 1020 520 conicto 1208 256 1536 256 conicto 1865 256 2052 520 conicto 2240 784 2240 1249 conicto 832 2112 moveto 963 2340 1164 2450 conicto 1366 2560 1645 2560 conicto 2108 2560 2398 2198 conicto 2688 1837 2688 1248 conicto 2688 659 2398 297 conicto 2108 -64 1645 -64 conicto 1366 -64 1164 46 conicto 963 156 832 384 conicto 832 0 lineto 448 0 lineto 448 3520 lineto 832 3520 lineto 832 2112 lineto end_ol grestore gsave 20.794000 8.000000 translate 0.035278 -0.035278 scale start_ol 448 986 moveto 448 2496 lineto 832 2496 lineto 832 1001 lineto 832 629 978 442 conicto 1124 256 1417 256 conicto 1768 256 1972 477 conicto 2176 699 2176 1081 conicto 2176 2496 lineto 2560 2496 lineto 2560 0 lineto 2176 0 lineto 2176 384 lineto 2022 157 1819 46 conicto 1617 -64 1349 -64 conicto 906 -64 677 203 conicto 448 471 448 986 conicto end_ol grestore gsave 21.183467 8.000000 translate 0.035278 -0.035278 scale start_ol 448 2496 moveto 832 2496 lineto 832 0 lineto 448 0 lineto 448 2496 lineto 448 3520 moveto 832 3520 lineto 832 3008 lineto 448 3008 lineto 448 3520 lineto end_ol grestore gsave 21.352800 8.000000 translate 0.035278 -0.035278 scale start_ol 448 3520 moveto 832 3520 lineto 832 0 lineto 448 0 lineto 448 3520 lineto end_ol grestore gsave 21.522133 8.000000 translate 0.035278 -0.035278 scale start_ol 2112 2112 moveto 2112 3520 lineto 2496 3520 lineto 2496 0 lineto 2112 0 lineto 2112 384 lineto 1980 156 1779 46 conicto 1578 -64 1297 -64 conicto 835 -64 545 297 conicto 256 659 256 1248 conicto 256 1837 545 2198 conicto 835 2560 1297 2560 conicto 1578 2560 1779 2450 conicto 1980 2340 2112 2112 conicto 704 1249 moveto 704 784 891 520 conicto 1079 256 1407 256 conicto 1735 256 1923 520 conicto 2112 784 2112 1249 conicto 2112 1713 1923 1976 conicto 1735 2240 1407 2240 conicto 1079 2240 891 1976 conicto 704 1713 704 1249 conicto end_ol grestore gsave 21.911600 8.000000 translate 0.035278 -0.035278 scale start_ol 2624 1352 moveto 2624 1152 lineto 704 1152 lineto 731 715 960 485 conicto 1189 256 1597 256 conicto 1834 256 2056 320 conicto 2278 384 2496 512 conicto 2496 128 lineto 2273 34 2039 -15 conicto 1805 -64 1565 -64 conicto 961 -64 608 284 conicto 256 632 256 1225 conicto 256 1839 595 2199 conicto 934 2560 1509 2560 conicto 2024 2560 2324 2235 conicto 2624 1910 2624 1352 conicto 2240 1472 moveto 2235 1822 2043 2031 conicto 1852 2240 1537 2240 conicto 1180 2240 965 2038 conicto 750 1836 718 1470 conicto 2240 1472 lineto end_ol grestore gsave 22.284133 8.000000 translate 0.035278 -0.035278 scale start_ol 1920 2112 moveto 1848 2178 1764 2209 conicto 1680 2240 1578 2240 conicto 1218 2240 1025 2001 conicto 832 1763 832 1317 conicto 832 0 lineto 448 0 lineto 448 2496 lineto 832 2496 lineto 832 2112 lineto 965 2339 1180 2449 conicto 1396 2560 1702 2560 conicto 1747 2560 1799 2560 conicto 1852 2560 1917 2560 conicto 1920 2112 lineto end_ol grestore gsave 29.000000 11.000000 translate 0.035278 -0.035278 scale start_ol 448 986 moveto 448 2496 lineto 832 2496 lineto 832 1001 lineto 832 629 978 442 conicto 1124 256 1417 256 conicto 1768 256 1972 477 conicto 2176 699 2176 1081 conicto 2176 2496 lineto 2560 2496 lineto 2560 0 lineto 2176 0 lineto 2176 384 lineto 2022 157 1819 46 conicto 1617 -64 1349 -64 conicto 906 -64 677 203 conicto 448 471 448 986 conicto end_ol grestore gsave 29.389467 11.000000 translate 0.035278 -0.035278 scale start_ol 2048 2432 moveto 2048 2048 lineto 1868 2144 1674 2192 conicto 1480 2240 1273 2240 conicto 957 2240 798 2144 conicto 640 2048 640 1856 conicto 640 1709 757 1625 conicto 875 1542 1229 1467 conicto 1380 1435 lineto 1812 1341 1994 1170 conicto 2176 999 2176 692 conicto 2176 343 1899 139 conicto 1622 -64 1137 -64 conicto 936 -64 717 -32 conicto 498 0 256 64 conicto 256 512 lineto 490 385 718 320 conicto 947 256 1170 256 conicto 1470 256 1631 358 conicto 1792 461 1792 647 conicto 1792 820 1670 912 conicto 1549 1004 1141 1089 conicto 988 1123 lineto 600 1203 428 1369 conicto 256 1535 256 1824 conicto 256 2177 510 2368 conicto 765 2560 1233 2560 conicto 1466 2560 1670 2528 conicto 1875 2496 2048 2432 conicto end_ol grestore gsave 29.711200 11.000000 translate 0.035278 -0.035278 scale start_ol 1920 2112 moveto 1848 2178 1764 2209 conicto 1680 2240 1578 2240 conicto 1218 2240 1025 2001 conicto 832 1763 832 1317 conicto 832 0 lineto 448 0 lineto 448 2496 lineto 832 2496 lineto 832 2112 lineto 965 2339 1180 2449 conicto 1396 2560 1702 2560 conicto 1747 2560 1799 2560 conicto 1852 2560 1917 2560 conicto 1920 2112 lineto end_ol grestore gsave 29.000000 12.000000 translate 0.035278 -0.035278 scale start_ol 128 2496 moveto 563 2496 lineto 1344 401 lineto 2125 2496 lineto 2560 2496 lineto 1623 0 lineto 1065 0 lineto 128 2496 lineto end_ol grestore gsave 29.364067 12.000000 translate 0.035278 -0.035278 scale start_ol 1559 1280 moveto 1040 1280 840 1160 conicto 640 1041 640 754 conicto 640 525 790 390 conicto 940 256 1198 256 conicto 1554 256 1769 510 conicto 1984 765 1984 1187 conicto 1984 1280 lineto 1559 1280 lineto 2368 1449 moveto 2368 0 lineto 1984 0 lineto 1984 384 lineto 1842 154 1628 45 conicto 1415 -64 1107 -64 conicto 717 -64 486 154 conicto 256 372 256 739 conicto 256 1166 539 1383 conicto 822 1600 1384 1600 conicto 1984 1600 lineto 1984 1641 lineto 1984 1927 1796 2083 conicto 1608 2240 1266 2240 conicto 1049 2240 843 2192 conicto 638 2144 448 2048 conicto 448 2432 lineto 673 2496 884 2528 conicto 1095 2560 1295 2560 conicto 1835 2560 2101 2284 conicto 2368 2009 2368 1449 conicto end_ol grestore gsave 29.736600 12.000000 translate 0.035278 -0.035278 scale start_ol 1920 2112 moveto 1848 2178 1764 2209 conicto 1680 2240 1578 2240 conicto 1218 2240 1025 2001 conicto 832 1763 832 1317 conicto 832 0 lineto 448 0 lineto 448 2496 lineto 832 2496 lineto 832 2112 lineto 965 2339 1180 2449 conicto 1396 2560 1702 2560 conicto 1747 2560 1799 2560 conicto 1852 2560 1917 2560 conicto 1920 2112 lineto end_ol grestore gsave 29.000000 9.000000 translate 0.035278 -0.035278 scale start_ol 2240 1249 moveto 2240 1713 2052 1976 conicto 1865 2240 1536 2240 conicto 1208 2240 1020 1976 conicto 832 1713 832 1249 conicto 832 784 1020 520 conicto 1208 256 1536 256 conicto 1865 256 2052 520 conicto 2240 784 2240 1249 conicto 832 2112 moveto 963 2340 1164 2450 conicto 1366 2560 1645 2560 conicto 2108 2560 2398 2198 conicto 2688 1837 2688 1248 conicto 2688 659 2398 297 conicto 2108 -64 1645 -64 conicto 1366 -64 1164 46 conicto 963 156 832 384 conicto 832 0 lineto 448 0 lineto 448 3520 lineto 832 3520 lineto 832 2112 lineto end_ol grestore gsave 29.389467 9.000000 translate 0.035278 -0.035278 scale start_ol 448 2496 moveto 832 2496 lineto 832 0 lineto 448 0 lineto 448 2496 lineto 448 3520 moveto 832 3520 lineto 832 3008 lineto 448 3008 lineto 448 3520 lineto end_ol grestore gsave 29.558800 9.000000 translate 0.035278 -0.035278 scale start_ol 2560 1509 moveto 2560 0 lineto 2176 0 lineto 2176 1496 lineto 2176 1869 2029 2054 conicto 1883 2240 1590 2240 conicto 1238 2240 1035 2018 conicto 832 1796 832 1413 conicto 832 0 lineto 448 0 lineto 448 2496 lineto 832 2496 lineto 832 2112 lineto 983 2337 1188 2448 conicto 1394 2560 1662 2560 conicto 2106 2560 2333 2293 conicto 2560 2027 2560 1509 conicto end_ol grestore gsave 29.000000 7.000000 translate 0.035278 -0.035278 scale start_ol 2560 1509 moveto 2560 0 lineto 2176 0 lineto 2176 1496 lineto 2176 1869 2029 2054 conicto 1883 2240 1590 2240 conicto 1238 2240 1035 2018 conicto 832 1796 832 1413 conicto 832 0 lineto 448 0 lineto 448 3520 lineto 832 3520 lineto 832 2112 lineto 983 2337 1188 2448 conicto 1394 2560 1662 2560 conicto 2106 2560 2333 2293 conicto 2560 2027 2560 1509 conicto end_ol grestore gsave 29.389467 7.000000 translate 0.035278 -0.035278 scale start_ol 1409 2240 moveto 1083 2240 893 1974 conicto 704 1709 704 1248 conicto 704 787 892 521 conicto 1081 256 1409 256 conicto 1733 256 1922 522 conicto 2112 789 2112 1248 conicto 2112 1705 1922 1972 conicto 1733 2240 1409 2240 conicto 1408 2560 moveto 1946 2560 2253 2212 conicto 2560 1864 2560 1248 conicto 2560 634 2253 285 conicto 1946 -64 1408 -64 conicto 869 -64 562 285 conicto 256 634 256 1248 conicto 256 1864 562 2212 conicto 869 2560 1408 2560 conicto end_ol grestore gsave 29.762000 7.000000 translate 0.035278 -0.035278 scale start_ol 2431 2020 moveto 2590 2296 2809 2428 conicto 3029 2560 3325 2560 conicto 3726 2560 3943 2287 conicto 4160 2014 4160 1509 conicto 4160 0 lineto 3776 0 lineto 3776 1496 lineto 3776 1874 3641 2057 conicto 3506 2240 3228 2240 conicto 2890 2240 2693 2018 conicto 2496 1796 2496 1413 conicto 2496 0 lineto 2112 0 lineto 2112 1496 lineto 2112 1876 1976 2058 conicto 1841 2240 1560 2240 conicto 1225 2240 1028 2017 conicto 832 1794 832 1413 conicto 832 0 lineto 448 0 lineto 448 2496 lineto 832 2496 lineto 832 2112 lineto 977 2341 1180 2450 conicto 1383 2560 1662 2560 conicto 1942 2560 2139 2422 conicto 2337 2284 2431 2020 conicto end_ol grestore gsave 30.354667 7.000000 translate 0.035278 -0.035278 scale start_ol 2624 1352 moveto 2624 1152 lineto 704 1152 lineto 731 715 960 485 conicto 1189 256 1597 256 conicto 1834 256 2056 320 conicto 2278 384 2496 512 conicto 2496 128 lineto 2273 34 2039 -15 conicto 1805 -64 1565 -64 conicto 961 -64 608 284 conicto 256 632 256 1225 conicto 256 1839 595 2199 conicto 934 2560 1509 2560 conicto 2024 2560 2324 2235 conicto 2624 1910 2624 1352 conicto 2240 1472 moveto 2235 1822 2043 2031 conicto 1852 2240 1537 2240 conicto 1180 2240 965 2038 conicto 750 1836 718 1470 conicto 2240 1472 lineto end_ol grestore gsave 29.000000 8.000000 translate 0.035278 -0.035278 scale start_ol 832 3200 moveto 832 2496 lineto 1664 2496 lineto 1664 2176 lineto 832 2176 lineto 832 804 lineto 832 495 914 407 conicto 997 320 1248 320 conicto 1664 320 lineto 1664 0 lineto 1248 0 lineto 793 0 620 173 conicto 448 347 448 804 conicto 448 2176 lineto 128 2176 lineto 128 2496 lineto 448 2496 lineto 448 3200 lineto 832 3200 lineto end_ol grestore gsave 29.237067 8.000000 translate 0.035278 -0.035278 scale start_ol 2431 2020 moveto 2590 2296 2809 2428 conicto 3029 2560 3325 2560 conicto 3726 2560 3943 2287 conicto 4160 2014 4160 1509 conicto 4160 0 lineto 3776 0 lineto 3776 1496 lineto 3776 1874 3641 2057 conicto 3506 2240 3228 2240 conicto 2890 2240 2693 2018 conicto 2496 1796 2496 1413 conicto 2496 0 lineto 2112 0 lineto 2112 1496 lineto 2112 1876 1976 2058 conicto 1841 2240 1560 2240 conicto 1225 2240 1028 2017 conicto 832 1794 832 1413 conicto 832 0 lineto 448 0 lineto 448 2496 lineto 832 2496 lineto 832 2112 lineto 977 2341 1180 2450 conicto 1383 2560 1662 2560 conicto 1942 2560 2139 2422 conicto 2337 2284 2431 2020 conicto end_ol grestore gsave 29.829733 8.000000 translate 0.035278 -0.035278 scale start_ol 832 384 moveto 832 -960 lineto 448 -960 lineto 448 2496 lineto 832 2496 lineto 832 2112 lineto 963 2340 1164 2450 conicto 1366 2560 1645 2560 conicto 2108 2560 2398 2198 conicto 2688 1837 2688 1248 conicto 2688 659 2398 297 conicto 2108 -64 1645 -64 conicto 1366 -64 1164 46 conicto 963 156 832 384 conicto 2240 1249 moveto 2240 1713 2052 1976 conicto 1865 2240 1536 2240 conicto 1208 2240 1020 1976 conicto 832 1713 832 1249 conicto 832 784 1020 520 conicto 1208 256 1536 256 conicto 1865 256 2052 520 conicto 2240 784 2240 1249 conicto end_ol grestore gsave 29.000000 10.000000 translate 0.035278 -0.035278 scale start_ol 448 3520 moveto 832 3520 lineto 832 0 lineto 448 0 lineto 448 3520 lineto end_ol grestore gsave 29.169333 10.000000 translate 0.035278 -0.035278 scale start_ol 448 2496 moveto 832 2496 lineto 832 0 lineto 448 0 lineto 448 2496 lineto 448 3520 moveto 832 3520 lineto 832 3008 lineto 448 3008 lineto 448 3520 lineto end_ol grestore gsave 29.338667 10.000000 translate 0.035278 -0.035278 scale start_ol 2240 1249 moveto 2240 1713 2052 1976 conicto 1865 2240 1536 2240 conicto 1208 2240 1020 1976 conicto 832 1713 832 1249 conicto 832 784 1020 520 conicto 1208 256 1536 256 conicto 1865 256 2052 520 conicto 2240 784 2240 1249 conicto 832 2112 moveto 963 2340 1164 2450 conicto 1366 2560 1645 2560 conicto 2108 2560 2398 2198 conicto 2688 1837 2688 1248 conicto 2688 659 2398 297 conicto 2108 -64 1645 -64 conicto 1366 -64 1164 46 conicto 963 156 832 384 conicto 832 0 lineto 448 0 lineto 448 3520 lineto 832 3520 lineto 832 2112 lineto end_ol grestore 0.100000 slw [] 0 sd [] 0 sd 0 slc n 13.000000 4.000000 m 15.000000 4.000000 l s 0.100000 slw [] 0 sd [] 0 sd 0 slc n 13.000000 4.000000 m 15.000000 3.000000 l s 0.100000 slw [] 0 sd [] 0 sd 0 slc n 13.000000 4.000000 m 15.000000 5.000000 l s 0.100000 slw [] 0 sd [] 0 sd 0 slc n 15.000000 6.000000 m 13.000000 4.000000 l s 0.100000 slw [] 0 sd [] 0 sd 0 slc n 13.000000 4.000000 m 15.000000 7.000000 l s 0.100000 slw [] 0 sd [] 0 sd 0 slc n 13.000000 4.000000 m 15.000000 8.000000 l s 0.100000 slw [] 0 sd [] 0 sd 0 slc n 16.000000 8.000000 m 18.000000 8.000000 l s 0.100000 slw [] 0 sd [] 0 sd 0 slc n 27.000000 8.000000 m 29.000000 8.000000 l s 0.100000 slw [] 0 sd [] 0 sd 0 slc n 27.000000 8.000000 m 29.000000 7.000000 l s 0.100000 slw [] 0 sd [] 0 sd 0 slc n 27.000000 8.000000 m 29.000000 9.000000 l s 0.100000 slw [] 0 sd [] 0 sd 0 slc n 29.000000 10.000000 m 27.000000 8.000000 l s 0.100000 slw [] 0 sd [] 0 sd 0 slc n 27.000000 8.000000 m 29.000000 11.000000 l s 0.100000 slw [] 0 sd [] 0 sd 0 slc n 27.000000 8.000000 m 29.000000 12.000000 l s gsave 24.000000 8.000000 translate 0.035278 -0.035278 scale start_ol 2240 1249 moveto 2240 1713 2052 1976 conicto 1865 2240 1536 2240 conicto 1208 2240 1020 1976 conicto 832 1713 832 1249 conicto 832 784 1020 520 conicto 1208 256 1536 256 conicto 1865 256 2052 520 conicto 2240 784 2240 1249 conicto 832 2112 moveto 963 2340 1164 2450 conicto 1366 2560 1645 2560 conicto 2108 2560 2398 2198 conicto 2688 1837 2688 1248 conicto 2688 659 2398 297 conicto 2108 -64 1645 -64 conicto 1366 -64 1164 46 conicto 963 156 832 384 conicto 832 0 lineto 448 0 lineto 448 3520 lineto 832 3520 lineto 832 2112 lineto end_ol grestore gsave 24.389467 8.000000 translate 0.035278 -0.035278 scale start_ol 448 986 moveto 448 2496 lineto 832 2496 lineto 832 1001 lineto 832 629 978 442 conicto 1124 256 1417 256 conicto 1768 256 1972 477 conicto 2176 699 2176 1081 conicto 2176 2496 lineto 2560 2496 lineto 2560 0 lineto 2176 0 lineto 2176 384 lineto 2022 157 1819 46 conicto 1617 -64 1349 -64 conicto 906 -64 677 203 conicto 448 471 448 986 conicto end_ol grestore gsave 24.778933 8.000000 translate 0.035278 -0.035278 scale start_ol 448 2496 moveto 832 2496 lineto 832 0 lineto 448 0 lineto 448 2496 lineto 448 3520 moveto 832 3520 lineto 832 3008 lineto 448 3008 lineto 448 3520 lineto end_ol grestore gsave 24.948267 8.000000 translate 0.035278 -0.035278 scale start_ol 448 3520 moveto 832 3520 lineto 832 0 lineto 448 0 lineto 448 3520 lineto end_ol grestore gsave 25.117600 8.000000 translate 0.035278 -0.035278 scale start_ol 2112 2112 moveto 2112 3520 lineto 2496 3520 lineto 2496 0 lineto 2112 0 lineto 2112 384 lineto 1980 156 1779 46 conicto 1578 -64 1297 -64 conicto 835 -64 545 297 conicto 256 659 256 1248 conicto 256 1837 545 2198 conicto 835 2560 1297 2560 conicto 1578 2560 1779 2450 conicto 1980 2340 2112 2112 conicto 704 1249 moveto 704 784 891 520 conicto 1079 256 1407 256 conicto 1735 256 1923 520 conicto 2112 784 2112 1249 conicto 2112 1713 1923 1976 conicto 1735 2240 1407 2240 conicto 1079 2240 891 1976 conicto 704 1713 704 1249 conicto end_ol grestore gsave 25.507067 8.000000 translate 0.035278 -0.035278 scale start_ol 1157 3328 moveto 1536 3328 lineto 379 -448 lineto 0 -448 lineto 1157 3328 lineto end_ol grestore gsave 25.710267 8.000000 translate 0.035278 -0.035278 scale start_ol 256 3328 moveto 752 3328 lineto 1597 2080 lineto 2449 3328 lineto 2944 3328 lineto 1864 1730 lineto 3008 0 lineto 2519 0 lineto 1573 1429 lineto 620 0 lineto 128 0 lineto 1303 1776 lineto 256 3328 lineto end_ol grestore gsave 26.125133 8.000000 translate 0.035278 -0.035278 scale start_ol 256 3328 moveto 752 3328 lineto 1597 2080 lineto 2449 3328 lineto 2944 3328 lineto 1864 1730 lineto 3008 0 lineto 2519 0 lineto 1573 1429 lineto 620 0 lineto 128 0 lineto 1303 1776 lineto 256 3328 lineto end_ol grestore gsave 26.540000 8.000000 translate 0.035278 -0.035278 scale start_ol 256 3328 moveto 752 3328 lineto 1597 2080 lineto 2449 3328 lineto 2944 3328 lineto 1864 1730 lineto 3008 0 lineto 2519 0 lineto 1573 1429 lineto 620 0 lineto 128 0 lineto 1303 1776 lineto 256 3328 lineto end_ol grestore gsave 24.000000 6.000000 translate 0.035278 -0.035278 scale start_ol 2240 1249 moveto 2240 1713 2052 1976 conicto 1865 2240 1536 2240 conicto 1208 2240 1020 1976 conicto 832 1713 832 1249 conicto 832 784 1020 520 conicto 1208 256 1536 256 conicto 1865 256 2052 520 conicto 2240 784 2240 1249 conicto 832 2112 moveto 963 2340 1164 2450 conicto 1366 2560 1645 2560 conicto 2108 2560 2398 2198 conicto 2688 1837 2688 1248 conicto 2688 659 2398 297 conicto 2108 -64 1645 -64 conicto 1366 -64 1164 46 conicto 963 156 832 384 conicto 832 0 lineto 448 0 lineto 448 3520 lineto 832 3520 lineto 832 2112 lineto end_ol grestore gsave 24.389467 6.000000 translate 0.035278 -0.035278 scale start_ol 1559 1280 moveto 1040 1280 840 1160 conicto 640 1041 640 754 conicto 640 525 790 390 conicto 940 256 1198 256 conicto 1554 256 1769 510 conicto 1984 765 1984 1187 conicto 1984 1280 lineto 1559 1280 lineto 2368 1449 moveto 2368 0 lineto 1984 0 lineto 1984 384 lineto 1842 154 1628 45 conicto 1415 -64 1107 -64 conicto 717 -64 486 154 conicto 256 372 256 739 conicto 256 1166 539 1383 conicto 822 1600 1384 1600 conicto 1984 1600 lineto 1984 1641 lineto 1984 1927 1796 2083 conicto 1608 2240 1266 2240 conicto 1049 2240 843 2192 conicto 638 2144 448 2048 conicto 448 2432 lineto 673 2496 884 2528 conicto 1095 2560 1295 2560 conicto 1835 2560 2101 2284 conicto 2368 2009 2368 1449 conicto end_ol grestore gsave 24.762000 6.000000 translate 0.035278 -0.035278 scale start_ol 2048 2432 moveto 2048 2048 lineto 1868 2144 1674 2192 conicto 1480 2240 1273 2240 conicto 957 2240 798 2144 conicto 640 2048 640 1856 conicto 640 1709 757 1625 conicto 875 1542 1229 1467 conicto 1380 1435 lineto 1812 1341 1994 1170 conicto 2176 999 2176 692 conicto 2176 343 1899 139 conicto 1622 -64 1137 -64 conicto 936 -64 717 -32 conicto 498 0 256 64 conicto 256 512 lineto 490 385 718 320 conicto 947 256 1170 256 conicto 1470 256 1631 358 conicto 1792 461 1792 647 conicto 1792 820 1670 912 conicto 1549 1004 1141 1089 conicto 988 1123 lineto 600 1203 428 1369 conicto 256 1535 256 1824 conicto 256 2177 510 2368 conicto 765 2560 1233 2560 conicto 1466 2560 1670 2528 conicto 1875 2496 2048 2432 conicto end_ol grestore gsave 25.083733 6.000000 translate 0.035278 -0.035278 scale start_ol 2624 1352 moveto 2624 1152 lineto 704 1152 lineto 731 715 960 485 conicto 1189 256 1597 256 conicto 1834 256 2056 320 conicto 2278 384 2496 512 conicto 2496 128 lineto 2273 34 2039 -15 conicto 1805 -64 1565 -64 conicto 961 -64 608 284 conicto 256 632 256 1225 conicto 256 1839 595 2199 conicto 934 2560 1509 2560 conicto 2024 2560 2324 2235 conicto 2624 1910 2624 1352 conicto 2240 1472 moveto 2235 1822 2043 2031 conicto 1852 2240 1537 2240 conicto 1180 2240 965 2038 conicto 750 1836 718 1470 conicto 2240 1472 lineto end_ol grestore gsave 25.456267 6.000000 translate 0.035278 -0.035278 scale start_ol 512 576 moveto 960 576 lineto 960 0 lineto 512 0 lineto 512 576 lineto end_ol grestore gsave 25.651000 6.000000 translate 0.035278 -0.035278 scale start_ol 832 3200 moveto 832 2496 lineto 1664 2496 lineto 1664 2176 lineto 832 2176 lineto 832 804 lineto 832 495 914 407 conicto 997 320 1248 320 conicto 1664 320 lineto 1664 0 lineto 1248 0 lineto 793 0 620 173 conicto 448 347 448 804 conicto 448 2176 lineto 128 2176 lineto 128 2496 lineto 448 2496 lineto 448 3200 lineto 832 3200 lineto end_ol grestore gsave 25.888067 6.000000 translate 0.035278 -0.035278 scale start_ol 2112 1278 moveto 2112 1736 1926 1988 conicto 1741 2240 1407 2240 conicto 1074 2240 889 1988 conicto 704 1736 704 1278 conicto 704 824 889 572 conicto 1074 320 1407 320 conicto 1741 320 1926 572 conicto 2112 824 2112 1278 conicto 2496 289 moveto 2496 -343 2214 -651 conicto 1933 -960 1352 -960 conicto 1137 -960 946 -928 conicto 755 -896 576 -832 conicto 576 -448 lineto 758 -546 936 -593 conicto 1114 -640 1298 -640 conicto 1707 -640 1909 -426 conicto 2112 -212 2112 220 conicto 2112 448 lineto 1982 223 1780 111 conicto 1578 0 1297 0 conicto 828 0 542 350 conicto 256 701 256 1279 conicto 256 1859 542 2209 conicto 828 2560 1297 2560 conicto 1578 2560 1780 2448 conicto 1982 2337 2112 2112 conicto 2112 2496 lineto 2496 2496 lineto 2496 289 lineto end_ol grestore gsave 26.277533 6.000000 translate 0.035278 -0.035278 scale start_ol 256 2496 moveto 2240 2496 lineto 2240 2120 lineto 670 320 lineto 2240 320 lineto 2240 0 lineto 192 0 lineto 192 376 lineto 1770 2176 lineto 256 2176 lineto 256 2496 lineto end_ol grestore 0.100000 slw [] 0 sd [] 0 sd 0 slc n 23.000000 8.000000 m 24.000000 8.000000 l s 0.100000 slw [] 0 sd [] 0 sd 0 slc n 23.000000 8.000000 m 24.000000 6.000000 l s 0.100000 slw [] 0 sd [] 0 sd 1.000000 0.000000 0.000000 srgb n 30.500000 9.500000 2.500000 4.500000 0 360 ellipse cp s 0.100000 slw [] 0 sd [] 0 sd 0 slc n 28.247596 6.762019 2.855941 2.855941 227.768191 344.524937 ellipse s [] 0 sd 0 slj 0 slc n 26.068979 4.912012 m 26.180715 4.364276 l 26.300341 4.616891 l 26.574209 4.672759 l ef n 26.068979 4.912012 m 26.180715 4.364276 l 26.300341 4.616891 l 26.574209 4.672759 l cp s showpage pbuilder-0.215ubuntu7/Documentation/debconf7/develcycle.dot0000664000000000000000000000146412312041170020674 0ustar // (let* ((dot buffer-file-name) (eps (replace-regexp-in-string "dot$" "eps" dot)) (svg (replace-regexp-in-string "dot$" "svg" dot))) (shell-command (concat "dot "dot" -T ps > "eps"; gv "eps))) digraph structure { mindist=1 node [fontsize=30] "edit source" [label="maintainer\nedits source"] "bugreport"->"edit source" "new upstream package"->"edit source" "edit source"->"build package" "build package"->"install locally" "install locally"->"test package" "test package"->"edit source" [label="fail"] "test package"->"pbuilder build" [label="success"] "pbuilder build"->"edit source" [label="fail"] "pbuilder build"->"test pbuilder-generated package" [label="success"] "test pbuilder-generated package"->"debsign" [label="success"] "test pbuilder-generated package"->"edit source" [label="fail"] "debsign"->"dput" } pbuilder-0.215ubuntu7/Documentation/debconf7/pbuilder-presentation.out0000664000000000000000000000000012312041170023076 0ustar pbuilder-0.215ubuntu7/Documentation/debconf7/Makefile0000664000000000000000000000036012312041170017477 0ustar SOURCE:=$(wildcard pb*.tex) DVIFILES:=$(SOURCE:%.tex=%.dvi) PDFFILES:=$(SOURCE:%.tex=%.pdf) all: $(PDFFILES) %.pdf: %.dvi dvipdfmx $< %.dvi: %.tex latex $< latex $< latex $< clean: -rm *~ *.log *.aux *.snm *.toc *.out *.nav *.dvi pbuilder-0.215ubuntu7/Documentation/debconf7/pbuilder-presentation.tex0000664000000000000000000002211612312041170023103 0ustar %; whizzy document % latex beamer presentation. % Copyright (C) 2007 Junichi Uekawa % This program is free software; you can redistribute it and/or modify % it under the terms of the GNU General Public License as published by % the Free Software Foundation; either version 2 of the License, or % (at your option) any later version. % This program is distributed in the hope that it will be useful, % but WITHOUT ANY WARRANTY; without even the implied warranty of % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the % GNU General Public License for more details. % You should have received a copy of the GNU General Public License % along with this program; if not, write to the Free Software % Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA \documentclass[dvipdfm,17pt,times]{beamer} % preview (shell-command (concat "xpdf " (replace-regexp-in-string "tex$" "pdf"(buffer-file-name)) "&")) % presentation (shell-command (concat "xpdf -fullscreen " (replace-regexp-in-string "tex$" "pdf"(buffer-file-name)) "&")) % presentation-evince (shell-command (concat "evince " (replace-regexp-in-string "tex$" "pdf"(buffer-file-name)) "&")) % presentation-real (shell-command (concat "DISPLAY=:0.1 evince " (replace-regexp-in-string "tex$" "pdf"(buffer-file-name)) "&")) \newcommand{\emtext}[1]{ \begin{frame}{} {\Huge #1 } \end{frame} } \title{what's happening with pbuilder?} \subtitle{Debian Conference 2007} \author{dancer@debian.org} \date{June 2007} \logo{\includegraphics[width=8cm]{openlogo-light.eps}} \begin{document} \frame{\titlepage{}} \begin{frame}{Who is this guy?} \begin{itemize} \item Junichi Uekawa, dancer@debian.org \item Lives in Japan, Leading Debian JP for 2007 \item Debian Developer since 2000 \item Interests: Audio-processing related tools, and Debian quality maintenance related tools, Japanese localization, shared library packaging, and more recently, Debian/MacBook related. \end{itemize} \end{frame} \begin{frame}{Agenda?} \begin{itemize} \item pbuilder \item pbuilder-uml \item cowbuilder \item qemubuilder \end{itemize} \end{frame} \emtext{pbuilder, what is the concept?} \emtext{What is a chroot?} \begin{frame}{concept of a chroot} \includegraphics[width=0.8\hsize]{chroot.eps}\\ \texttt{\# chroot /var/cache/pbuilder/build/XXX bin/bash} \end{frame} \begin{frame}{concept of pbuilder} \includegraphics[width=1\hsize]{chroot-pbuilder.eps}\\ \texttt{\# pbuilder --XXXX} \end{frame} \emtext{How do I use pbuilder?} \begin{frame}[containsverbatim]{installing pbuilder} \begin{verbatim} # apt-get install pbuilder # vi /etc/pbuilderrc # evince /usr/share/doc/pbuilder/ pbuilder-doc.pdf \end{verbatim} \end{frame} \begin{frame}{pbuilder basics} \begin{minipage}{0.4\hsize} \includegraphics[height=0.7\vsize]{pbuildercycle.eps} \end{minipage} \begin{minipage}{0.55\hsize} \begin{itemize} \item done once to create base filesystem. \item twice a day to follow unstable updates, to revise base filesystem. \item for each package build to build Debian package inside chroot. \end{itemize} \end{minipage} \end{frame} \begin{frame}[containsverbatim]{pbuilder --create} \begin{verbatim} # pbuilder --create Distribution is sid. Building the build environment -> running debootstrap /usr/sbin/debootstrap I: Retrieving Release I: Retrieving Packages I: Validating Packages . . \end{verbatim} \end{frame} \begin{frame}[containsverbatim]{pbuilder --update} \begin{verbatim} # pbuilder --update W: /home/dancer/.pbuilderrc does not exist Building the build Environment -> extracting base tarball [/var/cache/pbuilder/base.tgz] . . \end{verbatim} \end{frame} \begin{frame}[containsverbatim]{pbuilder --build} \begin{verbatim} # pbuilder --build dsh_*.dsc I: using fakeroot in build. Current time: Sat Jan 20 12:03:34 JST 2007 pbuilder-time-stamp: 1169262214 Building the build Environment -> extracting base tarball [/home/dancer/DEBIAN/pbuilder/pbuilder/testsuite/tmp.FeeAX18779/testimage] -> creating local configuration . . \end{verbatim} \end{frame} \begin{frame}[containsverbatim]{pbuilder --login} \begin{verbatim} # pbuilder --login --bindmount ${HOME} I: using fakeroot in build. Current time: Sat Jan 20 12:03:34 JST 2007 pbuilder-time-stamp: 1169262214 Building the build Environment -> extracting base tarball [/home/dancer/DEBIAN/pbuilder/pbuilder/testsuite/tmp.FeeAX18779/testimage] -> creating local configuration . . \end{verbatim} \end{frame} \emtext{pdebuild} \begin{frame}[containsverbatim]{pdebuild} \begin{verbatim} $ ls debian/rules debian/rules $ pdebuild W: /home/dancer/.pbuilderrc does not exist dpkg-buildpackage: source package is cowdancer dpkg-buildpackage: source version is 0.26 dpkg-buildpackage: source changed by Junichi Uekawa dpkg-buildpackage: source version without epoch 0.26 fakeroot debian/rules clean dh_testdir dh_testroot rm -f build-stamp configure-stamp /usr/bin/make clean make[1]: Entering directory `/home/dancer/DEBIAN/cowdancer/cowdancer' rm -f *~ *.o *.lo libcowdancer.so cow-shell cowbuilder make[1]: Leaving directory `/home/dancer/DEBIAN/cowdancer/cowdancer' dh_clean dpkg-source -b cowdancer dpkg-source: warning: source directory `./cowdancer' is not - `cowdancer-0.26' dpkg-source: building cowdancer in cowdancer_0.26.tar.gz . . . \end{verbatim} \end{frame} \begin{frame}{} \begin{minipage}{0.4\hsize} How do you maintain your package today? \end{minipage} \begin{minipage}{0.5\hsize} \includegraphics[height=0.95\vsize]{develcycle.eps} \end{minipage} \end{frame} \begin{frame}{pbuilder backend variations} \definecolor{titleback}{gray}{0.9} \begin{minipage}{0.35\hsize} \begin{itemize} \item LVM \item UML \item cowdancer \item qemu \end{itemize} \end{minipage} \begin{minipage}{0.6\hsize} \colorbox{titleback}{ \begin{minipage}{1\hsize} Motivation \begin{itemize} \item limitation in chroot segregation (process space, filesystem) \item COW filesystem optimization (tarball extraction slow.) \end{itemize} \end{minipage} } \end{minipage} \end{frame} \begin{frame}{uml} different method of segregation COW block device support \end{frame} \begin{frame}[containsverbatim]{cowbuilder} Speed up through use of copy-on-write filesystem. Just a matter of: \begin{verbatim} # cp -al /var/cache/pbuilder/base.cow /var/cache/pbuilder/build/XXX # chroot /var/cache/pbuilder/build/XXX cow-shell \end{verbatim} \end{frame} \begin{frame}{Concepts of cowdancer} \begin{itemize} \item Usage: hardlink files, \texttt{LD\_PRELOAD} libcowdancer.so; trap libc calls likely to cause file writes (open, etc) and break the hardlink. \item light-weight compared to other solutions (no extra partition, no LVM, no extra kernel modules/patches ) \item cow-shell into it. \end{itemize} \end{frame} \begin{frame}{qemubuilder} Try running other architectures at your fingertips? \end{frame} \begin{frame}[containsverbatim]{qemubuilder example config} \begin{verbatim} KERNEL_IMAGE=2.6.18-4-mips-di-vmlinux INITRD=2.6.18-4-mips-di-initrd.gz ARCH=mips BASEPATH= /var/cache/pbuilder/base-mips.qemu \end{verbatim} \end{frame} \begin{frame}{qemubuilder details... create} \includegraphics[width=1\hsize]{qemubuilder-create.eps} \end{frame} \begin{frame}{qemubuilder details... build} \includegraphics[width=1\hsize]{qemubuilder-build.eps} \end{frame} \emtext{qemubuilder --create --config mips.config} \emtext{qemubuilder --update --config mips.config} \emtext{qemubuilder --build --config mips.config XXX.dsc} \begin{frame}[containsverbatim]{qemubuilder --login} \begin{verbatim} $ sudo qemubuilder --login --config pbuilder-qemu-mips.config bash: /root/.pbuilderrc: No such file or directory fsck 1.40-WIP (14-Nov-2006) e2fsck 1.40-WIP (14-Nov-2006) /home/dancer/tmp/base-mips.qemu: clean, 11585/393984 files, 88319/786432 blocks 1+0 records in 1+0 records out 1048576 bytes (1.0 MB) copied, 0.0229856 seconds, 45.6 MB/s mke2fs 1.40-WIP (14-Nov-2006) . . . \end{verbatim}\end{frame} \begin{frame}[containsverbatim]{qemubuilder --login} \begin{verbatim} . . . hostname: the specified hostname is invalid bound to 10.0.2.15 -- renewal in 35272 seconds. bash: no job control in this shell root@pbuilder-coreduo:/# \end{verbatim} \end{frame} \begin{frame}{further ideas} \begin{itemize} \item install testing \item package testing \end{itemize} \end{frame} \begin{frame}{related tools} \begin{itemize} \item schroot \item piuparts \item autopkgtest \end{itemize} \end{frame} \begin{frame}{thanks to} \begin{itemize} \item Lo\"ic Minier \item Mattia Dongili \item Matt Kraai \item ... others as in AUTHORS / THANKS file. \end{itemize} \end{frame} \begin{frame}[containsverbatim]{References} \begin{itemize} \item Information:\\ \url{/usr/share/doc/pbuilder/pbuilder-doc.pdf}, \url{http://pbuilder.alioth.debian.org/} \item alioth project:\\ {\scriptsize \url{http://alioth.debian.org/projects/pbuilder}} \item git repository:\\ {\scriptsize \texttt{git-clone git://git.debian.org/git/pbuilder/pbuilder.git} } \end{itemize} \end{frame} \emtext{Questions?} \end{document} pbuilder-0.215ubuntu7/Documentation/debconf7/pbuilder-presentation.dvi0000664000000000000000000111045012312041170023065 0ustar ; TeX output 2007.06.23:2155!papersize=364.19536pt,273.14662pt!papersize=364.19536pt,273.14662ptkw.color push gray 0%color push gray 0color push gray 0color push gray 1%l2 color pop color pop color popcolor push gray 0color push gray 0 color pop color popcolor push gray 0% color popcolor push gray 0color push gray 0 color pop color popOcolor push gray 0O% color popOcolor push gray 0color push gray 0XScolor push rgb 0.15 0.15 0.525EPSfile="openlogo-light.eps" llx=272 lly=333 urx=361 ury=443 rwi=2267 > color pop |Lcolor push gray 0color push rgb 0.68 0.68 0.88%pdf: content Q 1 0 0 1 2000 2000 cm qs6cmss8.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q q6pdf: content Q 8.26909 0.79701 3.38733 2.39105 re S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l f 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n Qjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eanncpdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoToPage >> /Border[0 0 0]/C [1 0 0] >>pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation2) >> >> pdf:eannW%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 6.97394 0.0 3.38733 2.39105 re 7.80008 2.40001 m 7.80008 3.20003 l 11.20012 3.20003 l 11.20012 0.8 l 10.4001 0.8 l 8.6001 3.20003 m 8.6001 4.00005 l 12.00015 4.00005 l 12.00015 1.60002 l 11.20012 1.60002 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n QWjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation2) >> >> pdf:eann+%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qBpdf: content Q 0.59776 w 9.00009 3.00003 m 12.00015 3.00003 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 2.00002 m 12.00015 2.00002 l 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n Q+jpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannAP%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 3.00003 m 12.00015 3.00003 l 9.00009 2.00002 m 12.00015 2.00002 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f 0.59776 w 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n QAPjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannW\%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 3.00003 m 12.00015 3.00003 l 9.00009 2.00002 m 12.00015 2.00002 l 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q qpdf: content Q n qpdf: content Q Q qpdf: content n QW\jpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannlڳ%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 10.4001 1.60002 m 12.00015 0.0 l S 0.3985 w 10.66016 2.49069 m 10.66016 3.15419 10.12813 3.68622 9.46463 3.68622 c 8.80112 3.68622 8.26909 3.15419 8.26909 2.49069 c 8.26909 1.82718 8.80112 1.29515 9.46463 1.29515 c 10.12813 1.29515 10.66016 1.82718 10.66016 2.49069 c h 9.46463 2.49069 m S 1 J 4.00005 0.0 m 5.08101 0.0 6.00006 0.9 6.00006 2.00002 c 6.00006 3.10002 5.10005 4.00005 4.00005 4.00005 c 2.90001 4.00005 2.00002 3.10002 2.00002 2.00002 c 3.20003 2.60002 m 2.00002 1.60002 l 0.8 2.60002 l 16.0002 0.0 m 14.90016 0.0 14.00017 0.9 14.00017 2.00002 c 14.00017 3.10002 14.90016 4.00005 16.0002 4.00005 c 17.1002 4.00005 18.00021 3.10002 18.00021 2.00002 c 19.20023 2.60002 m 18.00021 1.60002 l 16.8002 2.60002 l S qpdf: content Q Q qpdf: content Q n qpdf: content Q Q qpdf: content n Qlڳapdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoBack >> /Border[0 0 0]/C [1 0 0] >>pdf:eann_pdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /Find >> /Border[0 0 0]/C [1 0 0] >>pdf:eanndpdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoForward >> /Border[0 0 0]/C [1 0 0] >>pdf:eannڳ color pop color pop color pop color popcolor push gray 0color push gray 0 color pop color pop3J5 color pop %.ɠwcolor push gray 0.pdf:obj @OBJpdfdocencoding << /Type /Encoding /Differences [24 /breve /caron /circumflex /dotaccent /hungarumlaut /ogonek /ring /tilde 39 /quotesingle 96 /grave 128 /bullet /dagger /daggerdbl /ellipsis /emdash /endash /florin /fraction /guilsinglleft /guilsinglright /minus /perthousand /quotedblbase /quotedblleft /quotedblright /quoteleft /quoteright /quotesinglbase /trademark /fi /fl /Lslash /OE /Scaron /Ydieresis /Zcaron /dotlessi /lslash /oe /scaron /zcaron 164 /currency 166 /brokenbar 168 /dieresis /copyright /ordfeminine 172 /logicalnot /.notdef /registered /macron /degree /plusminus /twosuperior /threesuperior /acute /mu 183 /periodcentered /cedilla /onesuperior /ordmasculine 188 /onequarter /onehalf /threequarters 192 /Agrave /Aacute /Acircumflex /Atilde /Adieresis /Aring /AE /Ccedilla /Egrave /Eacute /Ecircumflex /Edieresis /Igrave /Iacute /Icircumflex /Idieresis /Eth /Ntilde /Ograve /Oacute /Ocircumflex /Otilde /Odieresis /multiply /Oslash /Ugrave /Uacute /Ucircumflex /Udieresis /Yacute /Thorn /germandbls /agrave /aacute /acircumflex /atilde /adieresis /aring /ae /ccedilla /egrave /eacute /ecircumflex /edieresis /igrave /iacute /icircumflex /idieresis /eth /ntilde /ograve /oacute /ocircumflex /otilde /odieresis /divide /oslash /ugrave /uacute /ucircumflex /udieresis /yacute /thorn /ydieresis] >> Wpdf:obj @OBJZaDb << /Type /Font /Subtype /Type1 /Name /ZaDb /BaseFont /ZapfDingbats >> qpdf:obj @OBJHelv << /Type /Font /Subtype /Type1 /Name /Helv /BaseFont /Helvetica /Encoding @OBJpdfdocencoding >> >pdf:docview <>6pdf:dest (Doc-Start) [@thispage /XYZ @xpos @ypos null]pdf:docinfo << /Title (what's happening with pbuilder? - Debian Conference 2007) /Subject () /Creator (LaTeX with beamer class version 3.07) /Author (dancer@debian.org) /Producer (dvipdfm) /Keywords () >>color push gray 0color push gray 0color push gray 0color push gray 0\bcolor push gray 0|m~color push rgb 0.2 0.2 0.7G+uHGcmss17what'ṡhappaeningwithmR*pbuilder? Fcolor push rgb 0.2 0.2 0.7)GIGGcmss17DebianjConference2007 color pop3J5 color pop0i࣏color push gray 0[ dancer@debian.oqrg3J5 color popcolor push gray 03J5 color popcolor push gray 0vhJunej20073J5 color popcolor push gray 0 color pop color pop.color push gray 0color push gray 0color push gray 0 color pop color pop28pdf:dest (Navigation1) [@thispage /XYZ @xpos @ypos null]3pdf:dest (page.1) [@thispage /XYZ @xpos @ypos null]3J5 color pop*kw.color push gray 0%color push gray 0color push gray 0color push gray 1%l2 color pop color pop color popcolor push gray 0color push gray 0 color pop color popcolor push gray 0% color popcolor push gray 0color push gray 0 color pop color popOcolor push gray 0O% color popOcolor push gray 0color push gray 0XScolor push rgb 0.15 0.15 0.525EPSfile="openlogo-light.eps" llx=272 lly=333 urx=361 ury=443 rwi=2267 > color pop |Lcolor push gray 0color push rgb 0.68 0.68 0.88%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q q6pdf: content Q 8.26909 0.79701 3.38733 2.39105 re S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l f 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n Qjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eanncpdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoToPage >> /Border[0 0 0]/C [1 0 0] >>pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation3) >> >> pdf:eannW%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 6.97394 0.0 3.38733 2.39105 re 7.80008 2.40001 m 7.80008 3.20003 l 11.20012 3.20003 l 11.20012 0.8 l 10.4001 0.8 l 8.6001 3.20003 m 8.6001 4.00005 l 12.00015 4.00005 l 12.00015 1.60002 l 11.20012 1.60002 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n QWjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation2) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation2) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation3) >> >> pdf:eann+%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qBpdf: content Q 0.59776 w 9.00009 3.00003 m 12.00015 3.00003 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 2.00002 m 12.00015 2.00002 l 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n Q+jpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannAP%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 3.00003 m 12.00015 3.00003 l 9.00009 2.00002 m 12.00015 2.00002 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f 0.59776 w 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n QAPjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannW\%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 3.00003 m 12.00015 3.00003 l 9.00009 2.00002 m 12.00015 2.00002 l 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q qpdf: content Q n qpdf: content Q Q qpdf: content n QW\jpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannlڳ%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 10.4001 1.60002 m 12.00015 0.0 l S 0.3985 w 10.66016 2.49069 m 10.66016 3.15419 10.12813 3.68622 9.46463 3.68622 c 8.80112 3.68622 8.26909 3.15419 8.26909 2.49069 c 8.26909 1.82718 8.80112 1.29515 9.46463 1.29515 c 10.12813 1.29515 10.66016 1.82718 10.66016 2.49069 c h 9.46463 2.49069 m S 1 J 4.00005 0.0 m 5.08101 0.0 6.00006 0.9 6.00006 2.00002 c 6.00006 3.10002 5.10005 4.00005 4.00005 4.00005 c 2.90001 4.00005 2.00002 3.10002 2.00002 2.00002 c 3.20003 2.60002 m 2.00002 1.60002 l 0.8 2.60002 l 16.0002 0.0 m 14.90016 0.0 14.00017 0.9 14.00017 2.00002 c 14.00017 3.10002 14.90016 4.00005 16.0002 4.00005 c 17.1002 4.00005 18.00021 3.10002 18.00021 2.00002 c 19.20023 2.60002 m 18.00021 1.60002 l 16.8002 2.60002 l S qpdf: content Q Q qpdf: content Q n qpdf: content Q Q qpdf: content n Qlڳapdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoBack >> /Border[0 0 0]/C [1 0 0] >>pdf:eann_pdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /Find >> /Border[0 0 0]/C [1 0 0] >>pdf:eanndpdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoForward >> /Border[0 0 0]/C [1 0 0] >>pdf:eannڳ color pop color pop color pop color popcolor push gray 0color push gray 0 color pop color pop3J5 color pop %.ɠwcolor push gray 0color push rgb 0.2 0.2 0.7color push rgb 0.2 0.2 0.71J1Whȯisthisguy?O color pop color pop color pop,color push gray 0color push gray 0color push rgb 0.2 0.2 0.7 msam10I color pop_ color pop JunichijUekqawa,dancer@debian.orgcolor push gray 0color push rgb 0.2 0.2 0.7I color pop_ color pop LivesjinJapan,LeadingDebianJPfoqr 2007color push gray 0color push rgb 0.2 0.2 0.7I color pop_ color pop DebianjDevelopsersince2000color push gray 0color push rgb 0.2 0.2 0.7I color pop_ color pop Interests:8Audio-pqroscessingjrelated tosols,jandDebianqualitqymaintenance relatedjtosols,Japaneselocalization, shaqredjlibrarypackaging,andmore recentlyV,jDebian/MacBosokrelated.N8 color pop.color push gray 0color push gray 0color push gray 0 color pop color pop28pdf:dest (Navigation2) [@thispage /XYZ @xpos @ypos null]3pdf:dest (page.2) [@thispage /XYZ @xpos @ypos null]3J5 color pop)kw.color push gray 0%color push gray 0color push gray 0color push gray 1%l2 color pop color pop color popcolor push gray 0color push gray 0 color pop color popcolor push gray 0% color popcolor push gray 0color push gray 0 color pop color popOcolor push gray 0O% color popOcolor push gray 0color push gray 0XScolor push rgb 0.15 0.15 0.525EPSfile="openlogo-light.eps" llx=272 lly=333 urx=361 ury=443 rwi=2267 > color pop |Lcolor push gray 0color push rgb 0.68 0.68 0.88%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q q6pdf: content Q 8.26909 0.79701 3.38733 2.39105 re S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l f 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n Qjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation2) >> >> pdf:eanncpdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoToPage >> /Border[0 0 0]/C [1 0 0] >>pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation4) >> >> pdf:eannW%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 6.97394 0.0 3.38733 2.39105 re 7.80008 2.40001 m 7.80008 3.20003 l 11.20012 3.20003 l 11.20012 0.8 l 10.4001 0.8 l 8.6001 3.20003 m 8.6001 4.00005 l 12.00015 4.00005 l 12.00015 1.60002 l 11.20012 1.60002 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n QWjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation2) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation3) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation3) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation4) >> >> pdf:eann+%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qBpdf: content Q 0.59776 w 9.00009 3.00003 m 12.00015 3.00003 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 2.00002 m 12.00015 2.00002 l 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n Q+jpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannAP%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 3.00003 m 12.00015 3.00003 l 9.00009 2.00002 m 12.00015 2.00002 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f 0.59776 w 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n QAPjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannW\%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 3.00003 m 12.00015 3.00003 l 9.00009 2.00002 m 12.00015 2.00002 l 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q qpdf: content Q n qpdf: content Q Q qpdf: content n QW\jpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannlڳ%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 10.4001 1.60002 m 12.00015 0.0 l S 0.3985 w 10.66016 2.49069 m 10.66016 3.15419 10.12813 3.68622 9.46463 3.68622 c 8.80112 3.68622 8.26909 3.15419 8.26909 2.49069 c 8.26909 1.82718 8.80112 1.29515 9.46463 1.29515 c 10.12813 1.29515 10.66016 1.82718 10.66016 2.49069 c h 9.46463 2.49069 m S 1 J 4.00005 0.0 m 5.08101 0.0 6.00006 0.9 6.00006 2.00002 c 6.00006 3.10002 5.10005 4.00005 4.00005 4.00005 c 2.90001 4.00005 2.00002 3.10002 2.00002 2.00002 c 3.20003 2.60002 m 2.00002 1.60002 l 0.8 2.60002 l 16.0002 0.0 m 14.90016 0.0 14.00017 0.9 14.00017 2.00002 c 14.00017 3.10002 14.90016 4.00005 16.0002 4.00005 c 17.1002 4.00005 18.00021 3.10002 18.00021 2.00002 c 19.20023 2.60002 m 18.00021 1.60002 l 16.8002 2.60002 l S qpdf: content Q Q qpdf: content Q n qpdf: content Q Q qpdf: content n Qlڳapdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoBack >> /Border[0 0 0]/C [1 0 0] >>pdf:eann_pdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /Find >> /Border[0 0 0]/C [1 0 0] >>pdf:eanndpdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoForward >> /Border[0 0 0]/C [1 0 0] >>pdf:eannڳ color pop color pop color pop color popcolor push gray 0color push gray 0 color pop color pop3J5 color pop %.ɠwcolor push gray 0color push rgb 0.2 0.2 0.7color push rgb 0.2 0.2 0.71J1Agenda?O color pop color pop color pop3<color push gray 0color push gray 0color push rgb 0.2 0.2 0.7I color pop_ color pop pbuildercolor push gray 0color push rgb 0.2 0.2 0.7I color pop_ color pop pbuilder-umlcolor push gray 0color push rgb 0.2 0.2 0.7I color pop_ color pop coqwbuildercolor push gray 0color push rgb 0.2 0.2 0.7I color pop_ color pop qemubuilder\q color pop.color push gray 0color push gray 0color push gray 0 color pop color pop28pdf:dest (Navigation3) [@thispage /XYZ @xpos @ypos null]3pdf:dest (page.3) [@thispage /XYZ @xpos @ypos null]3J5 color popLkw.color push gray 0%color push gray 0color push gray 0color push gray 1%l2 color pop color pop color popcolor push gray 0color push gray 0 color pop color popcolor push gray 0% color popcolor push gray 0color push gray 0 color pop color popOcolor push gray 0O% color popOcolor push gray 0color push gray 0XScolor push rgb 0.15 0.15 0.525EPSfile="openlogo-light.eps" llx=272 lly=333 urx=361 ury=443 rwi=2267 > color pop |Lcolor push gray 0color push rgb 0.68 0.68 0.88%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q q6pdf: content Q 8.26909 0.79701 3.38733 2.39105 re S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l f 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n Qjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation3) >> >> pdf:eanncpdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoToPage >> /Border[0 0 0]/C [1 0 0] >>pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation5) >> >> pdf:eannW%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 6.97394 0.0 3.38733 2.39105 re 7.80008 2.40001 m 7.80008 3.20003 l 11.20012 3.20003 l 11.20012 0.8 l 10.4001 0.8 l 8.6001 3.20003 m 8.6001 4.00005 l 12.00015 4.00005 l 12.00015 1.60002 l 11.20012 1.60002 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n QWjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation3) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation4) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation4) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation5) >> >> pdf:eann+%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qBpdf: content Q 0.59776 w 9.00009 3.00003 m 12.00015 3.00003 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 2.00002 m 12.00015 2.00002 l 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n Q+jpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannAP%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 3.00003 m 12.00015 3.00003 l 9.00009 2.00002 m 12.00015 2.00002 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f 0.59776 w 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n QAPjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannW\%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 3.00003 m 12.00015 3.00003 l 9.00009 2.00002 m 12.00015 2.00002 l 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q qpdf: content Q n qpdf: content Q Q qpdf: content n QW\jpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannlڳ%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 10.4001 1.60002 m 12.00015 0.0 l S 0.3985 w 10.66016 2.49069 m 10.66016 3.15419 10.12813 3.68622 9.46463 3.68622 c 8.80112 3.68622 8.26909 3.15419 8.26909 2.49069 c 8.26909 1.82718 8.80112 1.29515 9.46463 1.29515 c 10.12813 1.29515 10.66016 1.82718 10.66016 2.49069 c h 9.46463 2.49069 m S 1 J 4.00005 0.0 m 5.08101 0.0 6.00006 0.9 6.00006 2.00002 c 6.00006 3.10002 5.10005 4.00005 4.00005 4.00005 c 2.90001 4.00005 2.00002 3.10002 2.00002 2.00002 c 3.20003 2.60002 m 2.00002 1.60002 l 0.8 2.60002 l 16.0002 0.0 m 14.90016 0.0 14.00017 0.9 14.00017 2.00002 c 14.00017 3.10002 14.90016 4.00005 16.0002 4.00005 c 17.1002 4.00005 18.00021 3.10002 18.00021 2.00002 c 19.20023 2.60002 m 18.00021 1.60002 l 16.8002 2.60002 l S qpdf: content Q Q qpdf: content Q n qpdf: content Q Q qpdf: content n Qlڳapdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoBack >> /Border[0 0 0]/C [1 0 0] >>pdf:eann_pdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /Find >> /Border[0 0 0]/C [1 0 0] >>pdf:eanndpdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoForward >> /Border[0 0 0]/C [1 0 0] >>pdf:eannڳ color pop color pop color pop color popcolor push gray 0color push gray 0 color pop color pop3J5 color pop %]J. *qGcmss17pbuilder, ywhatis'7R.the yconcept?.color push gray 0color push gray 0color push gray 0 color pop color pop28pdf:dest (Navigation4) [@thispage /XYZ @xpos @ypos null]3pdf:dest (page.4) [@thispage /XYZ @xpos @ypos null]3J5 color popnݠkw.color push gray 0%color push gray 0color push gray 0color push gray 1%l2 color pop color pop color popcolor push gray 0color push gray 0 color pop color popcolor push gray 0% color popcolor push gray 0color push gray 0 color pop color popOcolor push gray 0O% color popOcolor push gray 0color push gray 0XScolor push rgb 0.15 0.15 0.525EPSfile="openlogo-light.eps" llx=272 lly=333 urx=361 ury=443 rwi=2267 > color pop |Lcolor push gray 0color push rgb 0.68 0.68 0.88%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q q6pdf: content Q 8.26909 0.79701 3.38733 2.39105 re S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l f 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n Qjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation4) >> >> pdf:eanncpdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoToPage >> /Border[0 0 0]/C [1 0 0] >>pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation6) >> >> pdf:eannW%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 6.97394 0.0 3.38733 2.39105 re 7.80008 2.40001 m 7.80008 3.20003 l 11.20012 3.20003 l 11.20012 0.8 l 10.4001 0.8 l 8.6001 3.20003 m 8.6001 4.00005 l 12.00015 4.00005 l 12.00015 1.60002 l 11.20012 1.60002 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n QWjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation4) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation5) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation5) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation6) >> >> pdf:eann+%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qBpdf: content Q 0.59776 w 9.00009 3.00003 m 12.00015 3.00003 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 2.00002 m 12.00015 2.00002 l 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n Q+jpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannAP%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 3.00003 m 12.00015 3.00003 l 9.00009 2.00002 m 12.00015 2.00002 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f 0.59776 w 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n QAPjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannW\%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 3.00003 m 12.00015 3.00003 l 9.00009 2.00002 m 12.00015 2.00002 l 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q qpdf: content Q n qpdf: content Q Q qpdf: content n QW\jpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannlڳ%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 10.4001 1.60002 m 12.00015 0.0 l S 0.3985 w 10.66016 2.49069 m 10.66016 3.15419 10.12813 3.68622 9.46463 3.68622 c 8.80112 3.68622 8.26909 3.15419 8.26909 2.49069 c 8.26909 1.82718 8.80112 1.29515 9.46463 1.29515 c 10.12813 1.29515 10.66016 1.82718 10.66016 2.49069 c h 9.46463 2.49069 m S 1 J 4.00005 0.0 m 5.08101 0.0 6.00006 0.9 6.00006 2.00002 c 6.00006 3.10002 5.10005 4.00005 4.00005 4.00005 c 2.90001 4.00005 2.00002 3.10002 2.00002 2.00002 c 3.20003 2.60002 m 2.00002 1.60002 l 0.8 2.60002 l 16.0002 0.0 m 14.90016 0.0 14.00017 0.9 14.00017 2.00002 c 14.00017 3.10002 14.90016 4.00005 16.0002 4.00005 c 17.1002 4.00005 18.00021 3.10002 18.00021 2.00002 c 19.20023 2.60002 m 18.00021 1.60002 l 16.8002 2.60002 l S qpdf: content Q Q qpdf: content Q n qpdf: content Q Q qpdf: content n Qlڳapdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoBack >> /Border[0 0 0]/C [1 0 0] >>pdf:eann_pdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /Find >> /Border[0 0 0]/C [1 0 0] >>pdf:eanndpdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoForward >> /Border[0 0 0]/C [1 0 0] >>pdf:eannڳ color pop color pop color pop color popcolor push gray 0color push gray 0 color pop color pop3J5 color pop %h9{.What yisachro|ot?.color push gray 0color push gray 0color push gray 0 color pop color pop28pdf:dest (Navigation5) [@thispage /XYZ @xpos @ypos null]3pdf:dest (page.5) [@thispage /XYZ @xpos @ypos null]3J5 color popkw.color push gray 0%color push gray 0color push gray 0color push gray 1%l2 color pop color pop color popcolor push gray 0color push gray 0 color pop color popcolor push gray 0% color popcolor push gray 0color push gray 0 color pop color popOcolor push gray 0O% color popOcolor push gray 0color push gray 0XScolor push rgb 0.15 0.15 0.525EPSfile="openlogo-light.eps" llx=272 lly=333 urx=361 ury=443 rwi=2267 > color pop |Lcolor push gray 0color push rgb 0.68 0.68 0.88%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q q6pdf: content Q 8.26909 0.79701 3.38733 2.39105 re S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l f 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n Qjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation5) >> >> pdf:eanncpdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoToPage >> /Border[0 0 0]/C [1 0 0] >>pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation7) >> >> pdf:eannW%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 6.97394 0.0 3.38733 2.39105 re 7.80008 2.40001 m 7.80008 3.20003 l 11.20012 3.20003 l 11.20012 0.8 l 10.4001 0.8 l 8.6001 3.20003 m 8.6001 4.00005 l 12.00015 4.00005 l 12.00015 1.60002 l 11.20012 1.60002 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n QWjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation5) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation6) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation6) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation7) >> >> pdf:eann+%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qBpdf: content Q 0.59776 w 9.00009 3.00003 m 12.00015 3.00003 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 2.00002 m 12.00015 2.00002 l 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n Q+jpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannAP%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 3.00003 m 12.00015 3.00003 l 9.00009 2.00002 m 12.00015 2.00002 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f 0.59776 w 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n QAPjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannW\%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 3.00003 m 12.00015 3.00003 l 9.00009 2.00002 m 12.00015 2.00002 l 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q qpdf: content Q n qpdf: content Q Q qpdf: content n QW\jpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannlڳ%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 10.4001 1.60002 m 12.00015 0.0 l S 0.3985 w 10.66016 2.49069 m 10.66016 3.15419 10.12813 3.68622 9.46463 3.68622 c 8.80112 3.68622 8.26909 3.15419 8.26909 2.49069 c 8.26909 1.82718 8.80112 1.29515 9.46463 1.29515 c 10.12813 1.29515 10.66016 1.82718 10.66016 2.49069 c h 9.46463 2.49069 m S 1 J 4.00005 0.0 m 5.08101 0.0 6.00006 0.9 6.00006 2.00002 c 6.00006 3.10002 5.10005 4.00005 4.00005 4.00005 c 2.90001 4.00005 2.00002 3.10002 2.00002 2.00002 c 3.20003 2.60002 m 2.00002 1.60002 l 0.8 2.60002 l 16.0002 0.0 m 14.90016 0.0 14.00017 0.9 14.00017 2.00002 c 14.00017 3.10002 14.90016 4.00005 16.0002 4.00005 c 17.1002 4.00005 18.00021 3.10002 18.00021 2.00002 c 19.20023 2.60002 m 18.00021 1.60002 l 16.8002 2.60002 l S qpdf: content Q Q qpdf: content Q n qpdf: content Q Q qpdf: content n Qlڳapdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoBack >> /Border[0 0 0]/C [1 0 0] >>pdf:eann_pdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /Find >> /Border[0 0 0]/C [1 0 0] >>pdf:eanndpdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoForward >> /Border[0 0 0]/C [1 0 0] >>pdf:eannڳ color pop color pop color pop color popcolor push gray 0color push gray 0 color pop color pop3J5 color pop %.ɠwcolor push gray 0color push rgb 0.2 0.2 0.7color push rgb 0.2 0.2 0.71J1concepṫofachroaotO color pop color pop color pop 39PSfile="chroot.eps" llx=0 lly=0 urx=478 ury=283 rwi=2449 !߆TG cmtt12#Zchroot/var/cache/pbuilder/build/XXXbin/bash.color push gray 0color push gray 0color push gray 0 color pop color pop28pdf:dest (Navigation6) [@thispage /XYZ @xpos @ypos null]3pdf:dest (page.6) [@thispage /XYZ @xpos @ypos null]3J5 color popkw.color push gray 0%color push gray 0color push gray 0color push gray 1%l2 color pop color pop color popcolor push gray 0color push gray 0 color pop color popcolor push gray 0% color popcolor push gray 0color push gray 0 color pop color popOcolor push gray 0O% color popOcolor push gray 0color push gray 0XScolor push rgb 0.15 0.15 0.525EPSfile="openlogo-light.eps" llx=272 lly=333 urx=361 ury=443 rwi=2267 > color pop |Lcolor push gray 0color push rgb 0.68 0.68 0.88%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q q6pdf: content Q 8.26909 0.79701 3.38733 2.39105 re S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l f 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n Qjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation6) >> >> pdf:eanncpdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoToPage >> /Border[0 0 0]/C [1 0 0] >>pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation8) >> >> pdf:eannW%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 6.97394 0.0 3.38733 2.39105 re 7.80008 2.40001 m 7.80008 3.20003 l 11.20012 3.20003 l 11.20012 0.8 l 10.4001 0.8 l 8.6001 3.20003 m 8.6001 4.00005 l 12.00015 4.00005 l 12.00015 1.60002 l 11.20012 1.60002 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n QWjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation6) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation7) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation7) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation8) >> >> pdf:eann+%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qBpdf: content Q 0.59776 w 9.00009 3.00003 m 12.00015 3.00003 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 2.00002 m 12.00015 2.00002 l 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n Q+jpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannAP%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 3.00003 m 12.00015 3.00003 l 9.00009 2.00002 m 12.00015 2.00002 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f 0.59776 w 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n QAPjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannW\%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 3.00003 m 12.00015 3.00003 l 9.00009 2.00002 m 12.00015 2.00002 l 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q qpdf: content Q n qpdf: content Q Q qpdf: content n QW\jpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannlڳ%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 10.4001 1.60002 m 12.00015 0.0 l S 0.3985 w 10.66016 2.49069 m 10.66016 3.15419 10.12813 3.68622 9.46463 3.68622 c 8.80112 3.68622 8.26909 3.15419 8.26909 2.49069 c 8.26909 1.82718 8.80112 1.29515 9.46463 1.29515 c 10.12813 1.29515 10.66016 1.82718 10.66016 2.49069 c h 9.46463 2.49069 m S 1 J 4.00005 0.0 m 5.08101 0.0 6.00006 0.9 6.00006 2.00002 c 6.00006 3.10002 5.10005 4.00005 4.00005 4.00005 c 2.90001 4.00005 2.00002 3.10002 2.00002 2.00002 c 3.20003 2.60002 m 2.00002 1.60002 l 0.8 2.60002 l 16.0002 0.0 m 14.90016 0.0 14.00017 0.9 14.00017 2.00002 c 14.00017 3.10002 14.90016 4.00005 16.0002 4.00005 c 17.1002 4.00005 18.00021 3.10002 18.00021 2.00002 c 19.20023 2.60002 m 18.00021 1.60002 l 16.8002 2.60002 l S qpdf: content Q Q qpdf: content Q n qpdf: content Q Q qpdf: content n Qlڳapdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoBack >> /Border[0 0 0]/C [1 0 0] >>pdf:eann_pdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /Find >> /Border[0 0 0]/C [1 0 0] >>pdf:eanndpdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoForward >> /Border[0 0 0]/C [1 0 0] >>pdf:eannڳ color pop color pop color pop color popcolor push gray 0color push gray 0 color pop color pop3J5 color pop %.ɠwcolor push gray 0color push rgb 0.2 0.2 0.7color push rgb 0.2 0.2 0.71J1concepṫofpbuilderO color pop color pop color pop'BPSfile="chroot-pbuilder.eps" llx=0 lly=0 urx=571 ury=330 rwi=3061 #Zpbuilder--XXXX.color push gray 0color push gray 0color push gray 0 color pop color pop28pdf:dest (Navigation7) [@thispage /XYZ @xpos @ypos null]3pdf:dest (page.7) [@thispage /XYZ @xpos @ypos null]3J5 color popηkw.color push gray 0%color push gray 0color push gray 0color push gray 1%l2 color pop color pop color popcolor push gray 0color push gray 0 color pop color popcolor push gray 0% color popcolor push gray 0color push gray 0 color pop color popOcolor push gray 0O% color popOcolor push gray 0color push gray 0XScolor push rgb 0.15 0.15 0.525EPSfile="openlogo-light.eps" llx=272 lly=333 urx=361 ury=443 rwi=2267 > color pop |Lcolor push gray 0color push rgb 0.68 0.68 0.88%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q q6pdf: content Q 8.26909 0.79701 3.38733 2.39105 re S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l f 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n Qjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation7) >> >> pdf:eanncpdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoToPage >> /Border[0 0 0]/C [1 0 0] >>pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation9) >> >> pdf:eannW%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 6.97394 0.0 3.38733 2.39105 re 7.80008 2.40001 m 7.80008 3.20003 l 11.20012 3.20003 l 11.20012 0.8 l 10.4001 0.8 l 8.6001 3.20003 m 8.6001 4.00005 l 12.00015 4.00005 l 12.00015 1.60002 l 11.20012 1.60002 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n QWjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation7) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation8) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation8) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation9) >> >> pdf:eann+%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qBpdf: content Q 0.59776 w 9.00009 3.00003 m 12.00015 3.00003 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 2.00002 m 12.00015 2.00002 l 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n Q+jpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannAP%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 3.00003 m 12.00015 3.00003 l 9.00009 2.00002 m 12.00015 2.00002 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f 0.59776 w 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n QAPjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannW\%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 3.00003 m 12.00015 3.00003 l 9.00009 2.00002 m 12.00015 2.00002 l 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q qpdf: content Q n qpdf: content Q Q qpdf: content n QW\jpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannlڳ%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 10.4001 1.60002 m 12.00015 0.0 l S 0.3985 w 10.66016 2.49069 m 10.66016 3.15419 10.12813 3.68622 9.46463 3.68622 c 8.80112 3.68622 8.26909 3.15419 8.26909 2.49069 c 8.26909 1.82718 8.80112 1.29515 9.46463 1.29515 c 10.12813 1.29515 10.66016 1.82718 10.66016 2.49069 c h 9.46463 2.49069 m S 1 J 4.00005 0.0 m 5.08101 0.0 6.00006 0.9 6.00006 2.00002 c 6.00006 3.10002 5.10005 4.00005 4.00005 4.00005 c 2.90001 4.00005 2.00002 3.10002 2.00002 2.00002 c 3.20003 2.60002 m 2.00002 1.60002 l 0.8 2.60002 l 16.0002 0.0 m 14.90016 0.0 14.00017 0.9 14.00017 2.00002 c 14.00017 3.10002 14.90016 4.00005 16.0002 4.00005 c 17.1002 4.00005 18.00021 3.10002 18.00021 2.00002 c 19.20023 2.60002 m 18.00021 1.60002 l 16.8002 2.60002 l S qpdf: content Q Q qpdf: content Q n qpdf: content Q Q qpdf: content n Qlڳapdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoBack >> /Border[0 0 0]/C [1 0 0] >>pdf:eann_pdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /Find >> /Border[0 0 0]/C [1 0 0] >>pdf:eanndpdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoForward >> /Border[0 0 0]/C [1 0 0] >>pdf:eannڳ color pop color pop color pop color popcolor push gray 0color push gray 0 color pop color pop3J5 color pop %aV.How ydoIuseګ.pbuilder?.color push gray 0color push gray 0color push gray 0 color pop color pop28pdf:dest (Navigation8) [@thispage /XYZ @xpos @ypos null]3pdf:dest (page.8) [@thispage /XYZ @xpos @ypos null]3J5 color pop -kw.color push gray 0%color push gray 0color push gray 0color push gray 1%l2 color pop color pop color popcolor push gray 0color push gray 0 color pop color popcolor push gray 0% color popcolor push gray 0color push gray 0 color pop color popOcolor push gray 0O% color popOcolor push gray 0color push gray 0XScolor push rgb 0.15 0.15 0.525EPSfile="openlogo-light.eps" llx=272 lly=333 urx=361 ury=443 rwi=2267 > color pop |Lcolor push gray 0color push rgb 0.68 0.68 0.88%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q q6pdf: content Q 8.26909 0.79701 3.38733 2.39105 re S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l f 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n Qjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation8) >> >> pdf:eanncpdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoToPage >> /Border[0 0 0]/C [1 0 0] >>pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation10) >> >> pdf:eannW%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 6.97394 0.0 3.38733 2.39105 re 7.80008 2.40001 m 7.80008 3.20003 l 11.20012 3.20003 l 11.20012 0.8 l 10.4001 0.8 l 8.6001 3.20003 m 8.6001 4.00005 l 12.00015 4.00005 l 12.00015 1.60002 l 11.20012 1.60002 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n QWjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation8) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation9) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation9) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation10) >> >> pdf:eann+%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qBpdf: content Q 0.59776 w 9.00009 3.00003 m 12.00015 3.00003 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 2.00002 m 12.00015 2.00002 l 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n Q+jpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannAP%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 3.00003 m 12.00015 3.00003 l 9.00009 2.00002 m 12.00015 2.00002 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f 0.59776 w 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n QAPjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannW\%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 3.00003 m 12.00015 3.00003 l 9.00009 2.00002 m 12.00015 2.00002 l 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q qpdf: content Q n qpdf: content Q Q qpdf: content n QW\jpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannlڳ%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 10.4001 1.60002 m 12.00015 0.0 l S 0.3985 w 10.66016 2.49069 m 10.66016 3.15419 10.12813 3.68622 9.46463 3.68622 c 8.80112 3.68622 8.26909 3.15419 8.26909 2.49069 c 8.26909 1.82718 8.80112 1.29515 9.46463 1.29515 c 10.12813 1.29515 10.66016 1.82718 10.66016 2.49069 c h 9.46463 2.49069 m S 1 J 4.00005 0.0 m 5.08101 0.0 6.00006 0.9 6.00006 2.00002 c 6.00006 3.10002 5.10005 4.00005 4.00005 4.00005 c 2.90001 4.00005 2.00002 3.10002 2.00002 2.00002 c 3.20003 2.60002 m 2.00002 1.60002 l 0.8 2.60002 l 16.0002 0.0 m 14.90016 0.0 14.00017 0.9 14.00017 2.00002 c 14.00017 3.10002 14.90016 4.00005 16.0002 4.00005 c 17.1002 4.00005 18.00021 3.10002 18.00021 2.00002 c 19.20023 2.60002 m 18.00021 1.60002 l 16.8002 2.60002 l S qpdf: content Q Q qpdf: content Q n qpdf: content Q Q qpdf: content n Qlڳapdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoBack >> /Border[0 0 0]/C [1 0 0] >>pdf:eann_pdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /Find >> /Border[0 0 0]/C [1 0 0] >>pdf:eanndpdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoForward >> /Border[0 0 0]/C [1 0 0] >>pdf:eannڳ color pop color pop color pop color popcolor push gray 0color push gray 0 color pop color pop3J5 color pop %.ɠwcolor push gray 0color push rgb 0.2 0.2 0.7color push rgb 0.2 0.2 0.71J1installinġpbuilderO color pop color pop color popN\2color push gray 0 color pop#Zapt-getinstallpbuilder#Zvi/etc/pbuilderrc#Zevinceȴ/usr/share/doc/pbuilder/,upbuilder-doc.pdf.color push gray 0color push gray 0color push gray 0 color pop color pop28pdf:dest (Navigation9) [@thispage /XYZ @xpos @ypos null]3pdf:dest (page.9) [@thispage /XYZ @xpos @ypos null]3J5 color pop kw.color push gray 0%color push gray 0color push gray 0color push gray 1%l2 color pop color pop color popcolor push gray 0color push gray 0 color pop color popcolor push gray 0% color popcolor push gray 0color push gray 0 color pop color popOcolor push gray 0O% color popOcolor push gray 0color push gray 0XScolor push rgb 0.15 0.15 0.525EPSfile="openlogo-light.eps" llx=272 lly=333 urx=361 ury=443 rwi=2267 > color pop |Lcolor push gray 0color push rgb 0.68 0.68 0.88%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q q6pdf: content Q 8.26909 0.79701 3.38733 2.39105 re S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l f 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n Qjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation9) >> >> pdf:eanncpdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoToPage >> /Border[0 0 0]/C [1 0 0] >>pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation11) >> >> pdf:eannW%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 6.97394 0.0 3.38733 2.39105 re 7.80008 2.40001 m 7.80008 3.20003 l 11.20012 3.20003 l 11.20012 0.8 l 10.4001 0.8 l 8.6001 3.20003 m 8.6001 4.00005 l 12.00015 4.00005 l 12.00015 1.60002 l 11.20012 1.60002 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n QWjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation9) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation10) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation10) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation11) >> >> pdf:eann+%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qBpdf: content Q 0.59776 w 9.00009 3.00003 m 12.00015 3.00003 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 2.00002 m 12.00015 2.00002 l 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n Q+jpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannAP%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 3.00003 m 12.00015 3.00003 l 9.00009 2.00002 m 12.00015 2.00002 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f 0.59776 w 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n QAPjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannW\%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 3.00003 m 12.00015 3.00003 l 9.00009 2.00002 m 12.00015 2.00002 l 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q qpdf: content Q n qpdf: content Q Q qpdf: content n QW\jpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannlڳ%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 10.4001 1.60002 m 12.00015 0.0 l S 0.3985 w 10.66016 2.49069 m 10.66016 3.15419 10.12813 3.68622 9.46463 3.68622 c 8.80112 3.68622 8.26909 3.15419 8.26909 2.49069 c 8.26909 1.82718 8.80112 1.29515 9.46463 1.29515 c 10.12813 1.29515 10.66016 1.82718 10.66016 2.49069 c h 9.46463 2.49069 m S 1 J 4.00005 0.0 m 5.08101 0.0 6.00006 0.9 6.00006 2.00002 c 6.00006 3.10002 5.10005 4.00005 4.00005 4.00005 c 2.90001 4.00005 2.00002 3.10002 2.00002 2.00002 c 3.20003 2.60002 m 2.00002 1.60002 l 0.8 2.60002 l 16.0002 0.0 m 14.90016 0.0 14.00017 0.9 14.00017 2.00002 c 14.00017 3.10002 14.90016 4.00005 16.0002 4.00005 c 17.1002 4.00005 18.00021 3.10002 18.00021 2.00002 c 19.20023 2.60002 m 18.00021 1.60002 l 16.8002 2.60002 l S qpdf: content Q Q qpdf: content Q n qpdf: content Q Q qpdf: content n Qlڳapdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoBack >> /Border[0 0 0]/C [1 0 0] >>pdf:eann_pdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /Find >> /Border[0 0 0]/C [1 0 0] >>pdf:eanndpdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoForward >> /Border[0 0 0]/C [1 0 0] >>pdf:eannڳ color pop color pop color pop color popcolor push gray 0color push gray 0 color pop color pop3J5 color pop %.ɠwcolor push gray 0color push rgb 0.2 0.2 0.7color push rgb 0.2 0.2 0.71J1pbuildeṙbasicsO color pop color pop color pop|YჍBPSfile="pbuildercycle.eps" llx=36 lly=36 urx=176 ury=224 rhi=1877 Tcolor push gray 0 color push gray 0color push rgb 0.2 0.2 0.7I color pop_ color pop donejoncetocreate basej lesystem.color push gray 0color push rgb 0.2 0.2 0.7I color pop_ color pop tqwicejadayto folloqwjunstable upsdates,jtorevise basej lesystem.color push gray 0color push rgb 0.2 0.2 0.7I color pop_ color pop foqrjeachpackage buildjtobuild Debianjpackqage insidejchrosot. color pop.color push gray 0color push gray 0color push gray 0 color pop color pop29pdf:dest (Navigation10) [@thispage /XYZ @xpos @ypos null]4pdf:dest (page.10) [@thispage /XYZ @xpos @ypos null]3J5 color pop /wkw.color push gray 0%color push gray 0color push gray 0color push gray 1%l2 color pop color pop color popcolor push gray 0color push gray 0 color pop color popcolor push gray 0% color popcolor push gray 0color push gray 0 color pop color popOcolor push gray 0O% color popOcolor push gray 0color push gray 0XScolor push rgb 0.15 0.15 0.525EPSfile="openlogo-light.eps" llx=272 lly=333 urx=361 ury=443 rwi=2267 > color pop |Lcolor push gray 0color push rgb 0.68 0.68 0.88%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q q6pdf: content Q 8.26909 0.79701 3.38733 2.39105 re S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l f 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n Qkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation10) >> >> pdf:eanncpdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoToPage >> /Border[0 0 0]/C [1 0 0] >>pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation12) >> >> pdf:eannW%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 6.97394 0.0 3.38733 2.39105 re 7.80008 2.40001 m 7.80008 3.20003 l 11.20012 3.20003 l 11.20012 0.8 l 10.4001 0.8 l 8.6001 3.20003 m 8.6001 4.00005 l 12.00015 4.00005 l 12.00015 1.60002 l 11.20012 1.60002 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n QWkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation10) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation11) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation11) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation12) >> >> pdf:eann+%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qBpdf: content Q 0.59776 w 9.00009 3.00003 m 12.00015 3.00003 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 2.00002 m 12.00015 2.00002 l 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n Q+jpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannAP%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 3.00003 m 12.00015 3.00003 l 9.00009 2.00002 m 12.00015 2.00002 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f 0.59776 w 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n QAPjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannW\%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 3.00003 m 12.00015 3.00003 l 9.00009 2.00002 m 12.00015 2.00002 l 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q qpdf: content Q n qpdf: content Q Q qpdf: content n QW\jpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannlڳ%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 10.4001 1.60002 m 12.00015 0.0 l S 0.3985 w 10.66016 2.49069 m 10.66016 3.15419 10.12813 3.68622 9.46463 3.68622 c 8.80112 3.68622 8.26909 3.15419 8.26909 2.49069 c 8.26909 1.82718 8.80112 1.29515 9.46463 1.29515 c 10.12813 1.29515 10.66016 1.82718 10.66016 2.49069 c h 9.46463 2.49069 m S 1 J 4.00005 0.0 m 5.08101 0.0 6.00006 0.9 6.00006 2.00002 c 6.00006 3.10002 5.10005 4.00005 4.00005 4.00005 c 2.90001 4.00005 2.00002 3.10002 2.00002 2.00002 c 3.20003 2.60002 m 2.00002 1.60002 l 0.8 2.60002 l 16.0002 0.0 m 14.90016 0.0 14.00017 0.9 14.00017 2.00002 c 14.00017 3.10002 14.90016 4.00005 16.0002 4.00005 c 17.1002 4.00005 18.00021 3.10002 18.00021 2.00002 c 19.20023 2.60002 m 18.00021 1.60002 l 16.8002 2.60002 l S qpdf: content Q Q qpdf: content Q n qpdf: content Q Q qpdf: content n Qlڳapdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoBack >> /Border[0 0 0]/C [1 0 0] >>pdf:eann_pdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /Find >> /Border[0 0 0]/C [1 0 0] >>pdf:eanndpdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoForward >> /Border[0 0 0]/C [1 0 0] >>pdf:eannڳ color pop color pop color pop color popcolor push gray 0color push gray 0 color pop color pop3J5 color pop %.ɠwcolor push gray 0color push rgb 0.2 0.2 0.7color push rgb 0.2 0.2 0.71J1pbuildeṙ{createO color pop color pop color pop#color push gray 0 color pop#Zpbuilder--createDistributionZissid.BuildingZthebuildenvironmentZ->runningdebootstrap/usr/sbin/debootstrapI:ZRetrievingReleaseI:ZRetrievingPackagesI:ZValidatingPackages...color push gray 0color push gray 0color push gray 0 color pop color pop29pdf:dest (Navigation11) [@thispage /XYZ @xpos @ypos null]4pdf:dest (page.11) [@thispage /XYZ @xpos @ypos null]3J5 color pop R?kw.color push gray 0%color push gray 0color push gray 0color push gray 1%l2 color pop color pop color popcolor push gray 0color push gray 0 color pop color popcolor push gray 0% color popcolor push gray 0color push gray 0 color pop color popOcolor push gray 0O% color popOcolor push gray 0color push gray 0XScolor push rgb 0.15 0.15 0.525EPSfile="openlogo-light.eps" llx=272 lly=333 urx=361 ury=443 rwi=2267 > color pop |Lcolor push gray 0color push rgb 0.68 0.68 0.88%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q q6pdf: content Q 8.26909 0.79701 3.38733 2.39105 re S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l f 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n Qkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation11) >> >> pdf:eanncpdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoToPage >> /Border[0 0 0]/C [1 0 0] >>pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation13) >> >> pdf:eannW%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 6.97394 0.0 3.38733 2.39105 re 7.80008 2.40001 m 7.80008 3.20003 l 11.20012 3.20003 l 11.20012 0.8 l 10.4001 0.8 l 8.6001 3.20003 m 8.6001 4.00005 l 12.00015 4.00005 l 12.00015 1.60002 l 11.20012 1.60002 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n QWkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation11) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation12) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation12) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation13) >> >> pdf:eann+%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qBpdf: content Q 0.59776 w 9.00009 3.00003 m 12.00015 3.00003 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 2.00002 m 12.00015 2.00002 l 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n Q+jpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannAP%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 3.00003 m 12.00015 3.00003 l 9.00009 2.00002 m 12.00015 2.00002 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f 0.59776 w 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n QAPjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannW\%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 3.00003 m 12.00015 3.00003 l 9.00009 2.00002 m 12.00015 2.00002 l 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q qpdf: content Q n qpdf: content Q Q qpdf: content n QW\jpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannlڳ%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 10.4001 1.60002 m 12.00015 0.0 l S 0.3985 w 10.66016 2.49069 m 10.66016 3.15419 10.12813 3.68622 9.46463 3.68622 c 8.80112 3.68622 8.26909 3.15419 8.26909 2.49069 c 8.26909 1.82718 8.80112 1.29515 9.46463 1.29515 c 10.12813 1.29515 10.66016 1.82718 10.66016 2.49069 c h 9.46463 2.49069 m S 1 J 4.00005 0.0 m 5.08101 0.0 6.00006 0.9 6.00006 2.00002 c 6.00006 3.10002 5.10005 4.00005 4.00005 4.00005 c 2.90001 4.00005 2.00002 3.10002 2.00002 2.00002 c 3.20003 2.60002 m 2.00002 1.60002 l 0.8 2.60002 l 16.0002 0.0 m 14.90016 0.0 14.00017 0.9 14.00017 2.00002 c 14.00017 3.10002 14.90016 4.00005 16.0002 4.00005 c 17.1002 4.00005 18.00021 3.10002 18.00021 2.00002 c 19.20023 2.60002 m 18.00021 1.60002 l 16.8002 2.60002 l S qpdf: content Q Q qpdf: content Q n qpdf: content Q Q qpdf: content n Qlڳapdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoBack >> /Border[0 0 0]/C [1 0 0] >>pdf:eann_pdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /Find >> /Border[0 0 0]/C [1 0 0] >>pdf:eanndpdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoForward >> /Border[0 0 0]/C [1 0 0] >>pdf:eannڳ color pop color pop color pop color popcolor push gray 0color push gray 0 color pop color pop3J5 color pop %.ɠwcolor push gray 0color push rgb 0.2 0.2 0.7color push rgb 0.2 0.2 0.71J1pbuildeṙ{upadateO color pop color pop color popGcolor push gray 0 color pop#Zpbuilder--updateW:Z/home/dancer/.pbuilderrcdoesnotexistBuildingZthebuildEnvironmentZ->extractingbasetarball[/var/cache/pbuilder/base.tgz]...color push gray 0color push gray 0color push gray 0 color pop color pop29pdf:dest (Navigation12) [@thispage /XYZ @xpos @ypos null]4pdf:dest (page.12) [@thispage /XYZ @xpos @ypos null]3J5 color pop sfkw.color push gray 0%color push gray 0color push gray 0color push gray 1%l2 color pop color pop color popcolor push gray 0color push gray 0 color pop color popcolor push gray 0% color popcolor push gray 0color push gray 0 color pop color popOcolor push gray 0O% color popOcolor push gray 0color push gray 0XScolor push rgb 0.15 0.15 0.525EPSfile="openlogo-light.eps" llx=272 lly=333 urx=361 ury=443 rwi=2267 > color pop |Lcolor push gray 0color push rgb 0.68 0.68 0.88%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q q6pdf: content Q 8.26909 0.79701 3.38733 2.39105 re S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l f 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n Qkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation12) >> >> pdf:eanncpdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoToPage >> /Border[0 0 0]/C [1 0 0] >>pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation14) >> >> pdf:eannW%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 6.97394 0.0 3.38733 2.39105 re 7.80008 2.40001 m 7.80008 3.20003 l 11.20012 3.20003 l 11.20012 0.8 l 10.4001 0.8 l 8.6001 3.20003 m 8.6001 4.00005 l 12.00015 4.00005 l 12.00015 1.60002 l 11.20012 1.60002 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n QWkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation12) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation13) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation13) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation14) >> >> pdf:eann+%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qBpdf: content Q 0.59776 w 9.00009 3.00003 m 12.00015 3.00003 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 2.00002 m 12.00015 2.00002 l 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n Q+jpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannAP%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 3.00003 m 12.00015 3.00003 l 9.00009 2.00002 m 12.00015 2.00002 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f 0.59776 w 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n QAPjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannW\%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 3.00003 m 12.00015 3.00003 l 9.00009 2.00002 m 12.00015 2.00002 l 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q qpdf: content Q n qpdf: content Q Q qpdf: content n QW\jpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannlڳ%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 10.4001 1.60002 m 12.00015 0.0 l S 0.3985 w 10.66016 2.49069 m 10.66016 3.15419 10.12813 3.68622 9.46463 3.68622 c 8.80112 3.68622 8.26909 3.15419 8.26909 2.49069 c 8.26909 1.82718 8.80112 1.29515 9.46463 1.29515 c 10.12813 1.29515 10.66016 1.82718 10.66016 2.49069 c h 9.46463 2.49069 m S 1 J 4.00005 0.0 m 5.08101 0.0 6.00006 0.9 6.00006 2.00002 c 6.00006 3.10002 5.10005 4.00005 4.00005 4.00005 c 2.90001 4.00005 2.00002 3.10002 2.00002 2.00002 c 3.20003 2.60002 m 2.00002 1.60002 l 0.8 2.60002 l 16.0002 0.0 m 14.90016 0.0 14.00017 0.9 14.00017 2.00002 c 14.00017 3.10002 14.90016 4.00005 16.0002 4.00005 c 17.1002 4.00005 18.00021 3.10002 18.00021 2.00002 c 19.20023 2.60002 m 18.00021 1.60002 l 16.8002 2.60002 l S qpdf: content Q Q qpdf: content Q n qpdf: content Q Q qpdf: content n Qlڳapdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoBack >> /Border[0 0 0]/C [1 0 0] >>pdf:eann_pdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /Find >> /Border[0 0 0]/C [1 0 0] >>pdf:eanndpdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoForward >> /Border[0 0 0]/C [1 0 0] >>pdf:eannڳ color pop color pop color pop color popcolor push gray 0color push gray 0 color pop color pop3J5 color pop %.ɠwcolor push gray 0color push rgb 0.2 0.2 0.7color push rgb 0.2 0.2 0.71J1pbuildeṙ{buildO color pop color pop color pop,Ícolor push gray 0 color pop#Zpbuilder--builddsh_*.dscI:Zusingfakerootinbuild.CurrentZtime:SatJan2012:03:34JST2007pbuilder-time-stamp:Z1169262214BuildingZthebuildEnvironmentZ->extractingbasetarball[/home/dancer/DEBIAN/pbuilder/pbuilder/testsuite/tmp.FeeAX18779/testimage]Z->creatinglocalconfiguration...color push gray 0color push gray 0color push gray 0 color pop color pop29pdf:dest (Navigation13) [@thispage /XYZ @xpos @ypos null]4pdf:dest (page.13) [@thispage /XYZ @xpos @ypos null]3J5 color pop_kw.color push gray 0%color push gray 0color push gray 0color push gray 1%l2 color pop color pop color popcolor push gray 0color push gray 0 color pop color popcolor push gray 0% color popcolor push gray 0color push gray 0 color pop color popOcolor push gray 0O% color popOcolor push gray 0color push gray 0XScolor push rgb 0.15 0.15 0.525EPSfile="openlogo-light.eps" llx=272 lly=333 urx=361 ury=443 rwi=2267 > color pop |Lcolor push gray 0color push rgb 0.68 0.68 0.88%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q q6pdf: content Q 8.26909 0.79701 3.38733 2.39105 re S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l f 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n Qkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation13) >> >> pdf:eanncpdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoToPage >> /Border[0 0 0]/C [1 0 0] >>pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation15) >> >> pdf:eannW%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 6.97394 0.0 3.38733 2.39105 re 7.80008 2.40001 m 7.80008 3.20003 l 11.20012 3.20003 l 11.20012 0.8 l 10.4001 0.8 l 8.6001 3.20003 m 8.6001 4.00005 l 12.00015 4.00005 l 12.00015 1.60002 l 11.20012 1.60002 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n QWkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation13) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation14) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation14) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation15) >> >> pdf:eann+%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qBpdf: content Q 0.59776 w 9.00009 3.00003 m 12.00015 3.00003 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 2.00002 m 12.00015 2.00002 l 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n Q+jpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannAP%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 3.00003 m 12.00015 3.00003 l 9.00009 2.00002 m 12.00015 2.00002 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f 0.59776 w 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n QAPjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannW\%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 3.00003 m 12.00015 3.00003 l 9.00009 2.00002 m 12.00015 2.00002 l 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q qpdf: content Q n qpdf: content Q Q qpdf: content n QW\jpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannlڳ%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 10.4001 1.60002 m 12.00015 0.0 l S 0.3985 w 10.66016 2.49069 m 10.66016 3.15419 10.12813 3.68622 9.46463 3.68622 c 8.80112 3.68622 8.26909 3.15419 8.26909 2.49069 c 8.26909 1.82718 8.80112 1.29515 9.46463 1.29515 c 10.12813 1.29515 10.66016 1.82718 10.66016 2.49069 c h 9.46463 2.49069 m S 1 J 4.00005 0.0 m 5.08101 0.0 6.00006 0.9 6.00006 2.00002 c 6.00006 3.10002 5.10005 4.00005 4.00005 4.00005 c 2.90001 4.00005 2.00002 3.10002 2.00002 2.00002 c 3.20003 2.60002 m 2.00002 1.60002 l 0.8 2.60002 l 16.0002 0.0 m 14.90016 0.0 14.00017 0.9 14.00017 2.00002 c 14.00017 3.10002 14.90016 4.00005 16.0002 4.00005 c 17.1002 4.00005 18.00021 3.10002 18.00021 2.00002 c 19.20023 2.60002 m 18.00021 1.60002 l 16.8002 2.60002 l S qpdf: content Q Q qpdf: content Q n qpdf: content Q Q qpdf: content n Qlڳapdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoBack >> /Border[0 0 0]/C [1 0 0] >>pdf:eann_pdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /Find >> /Border[0 0 0]/C [1 0 0] >>pdf:eanndpdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoForward >> /Border[0 0 0]/C [1 0 0] >>pdf:eannڳ color pop color pop color pop color popcolor push gray 0color push gray 0 color pop color pop3J5 color pop %.ɠwcolor push gray 0color push rgb 0.2 0.2 0.7color push rgb 0.2 0.2 0.71J1pbuildeṙ{loginO color pop color pop color pop,Ícolor push gray 0 color pop#Zpbuilder--login--bindmount${HOME}I:Zusingfakerootinbuild.CurrentZtime:SatJan2012:03:34JST2007pbuilder-time-stamp:Z1169262214BuildingZthebuildEnvironmentZ->extractingbasetarball[/home/dancer/DEBIAN/pbuilder/pbuilder/testsuite/tmp.FeeAX18779/testimage]Z->creatinglocalconfiguration...color push gray 0color push gray 0color push gray 0 color pop color pop29pdf:dest (Navigation14) [@thispage /XYZ @xpos @ypos null]4pdf:dest (page.14) [@thispage /XYZ @xpos @ypos null]3J5 color popkw.color push gray 0%color push gray 0color push gray 0color push gray 1%l2 color pop color pop color popcolor push gray 0color push gray 0 color pop color popcolor push gray 0% color popcolor push gray 0color push gray 0 color pop color popOcolor push gray 0O% color popOcolor push gray 0color push gray 0XScolor push rgb 0.15 0.15 0.525EPSfile="openlogo-light.eps" llx=272 lly=333 urx=361 ury=443 rwi=2267 > color pop |Lcolor push gray 0color push rgb 0.68 0.68 0.88%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q q6pdf: content Q 8.26909 0.79701 3.38733 2.39105 re S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l f 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n Qkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation14) >> >> pdf:eanncpdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoToPage >> /Border[0 0 0]/C [1 0 0] >>pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation16) >> >> pdf:eannW%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 6.97394 0.0 3.38733 2.39105 re 7.80008 2.40001 m 7.80008 3.20003 l 11.20012 3.20003 l 11.20012 0.8 l 10.4001 0.8 l 8.6001 3.20003 m 8.6001 4.00005 l 12.00015 4.00005 l 12.00015 1.60002 l 11.20012 1.60002 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n QWkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation14) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation15) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation15) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation16) >> >> pdf:eann+%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qBpdf: content Q 0.59776 w 9.00009 3.00003 m 12.00015 3.00003 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 2.00002 m 12.00015 2.00002 l 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n Q+jpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannAP%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 3.00003 m 12.00015 3.00003 l 9.00009 2.00002 m 12.00015 2.00002 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f 0.59776 w 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n QAPjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannW\%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 3.00003 m 12.00015 3.00003 l 9.00009 2.00002 m 12.00015 2.00002 l 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q qpdf: content Q n qpdf: content Q Q qpdf: content n QW\jpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannlڳ%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 10.4001 1.60002 m 12.00015 0.0 l S 0.3985 w 10.66016 2.49069 m 10.66016 3.15419 10.12813 3.68622 9.46463 3.68622 c 8.80112 3.68622 8.26909 3.15419 8.26909 2.49069 c 8.26909 1.82718 8.80112 1.29515 9.46463 1.29515 c 10.12813 1.29515 10.66016 1.82718 10.66016 2.49069 c h 9.46463 2.49069 m S 1 J 4.00005 0.0 m 5.08101 0.0 6.00006 0.9 6.00006 2.00002 c 6.00006 3.10002 5.10005 4.00005 4.00005 4.00005 c 2.90001 4.00005 2.00002 3.10002 2.00002 2.00002 c 3.20003 2.60002 m 2.00002 1.60002 l 0.8 2.60002 l 16.0002 0.0 m 14.90016 0.0 14.00017 0.9 14.00017 2.00002 c 14.00017 3.10002 14.90016 4.00005 16.0002 4.00005 c 17.1002 4.00005 18.00021 3.10002 18.00021 2.00002 c 19.20023 2.60002 m 18.00021 1.60002 l 16.8002 2.60002 l S qpdf: content Q Q qpdf: content Q n qpdf: content Q Q qpdf: content n Qlڳapdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoBack >> /Border[0 0 0]/C [1 0 0] >>pdf:eann_pdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /Find >> /Border[0 0 0]/C [1 0 0] >>pdf:eanndpdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoForward >> /Border[0 0 0]/C [1 0 0] >>pdf:eannڳ color pop color pop color pop color popcolor push gray 0color push gray 0 color pop color pop3J5 color pop %m.p|debuild.color push gray 0color push gray 0color push gray 0 color pop color pop29pdf:dest (Navigation15) [@thispage /XYZ @xpos @ypos null]4pdf:dest (page.15) [@thispage /XYZ @xpos @ypos null]3J5 color popדkw.color push gray 0%color push gray 0color push gray 0color push gray 1%l2 color pop color pop color popcolor push gray 0color push gray 0 color pop color popcolor push gray 0% color popcolor push gray 0color push gray 0 color pop color popOcolor push gray 0O% color popOcolor push gray 0color push gray 0XScolor push rgb 0.15 0.15 0.525EPSfile="openlogo-light.eps" llx=272 lly=333 urx=361 ury=443 rwi=2267 > color pop |Lcolor push gray 0color push rgb 0.68 0.68 0.88%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q q6pdf: content Q 8.26909 0.79701 3.38733 2.39105 re S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l f 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n Qkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation15) >> >> pdf:eanncpdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoToPage >> /Border[0 0 0]/C [1 0 0] >>pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation17) >> >> pdf:eannW%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 6.97394 0.0 3.38733 2.39105 re 7.80008 2.40001 m 7.80008 3.20003 l 11.20012 3.20003 l 11.20012 0.8 l 10.4001 0.8 l 8.6001 3.20003 m 8.6001 4.00005 l 12.00015 4.00005 l 12.00015 1.60002 l 11.20012 1.60002 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n QWkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation15) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation16) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation16) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation17) >> >> pdf:eann+%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qBpdf: content Q 0.59776 w 9.00009 3.00003 m 12.00015 3.00003 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 2.00002 m 12.00015 2.00002 l 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n Q+jpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannAP%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 3.00003 m 12.00015 3.00003 l 9.00009 2.00002 m 12.00015 2.00002 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f 0.59776 w 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n QAPjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannW\%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 3.00003 m 12.00015 3.00003 l 9.00009 2.00002 m 12.00015 2.00002 l 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q qpdf: content Q n qpdf: content Q Q qpdf: content n QW\jpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannlڳ%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 10.4001 1.60002 m 12.00015 0.0 l S 0.3985 w 10.66016 2.49069 m 10.66016 3.15419 10.12813 3.68622 9.46463 3.68622 c 8.80112 3.68622 8.26909 3.15419 8.26909 2.49069 c 8.26909 1.82718 8.80112 1.29515 9.46463 1.29515 c 10.12813 1.29515 10.66016 1.82718 10.66016 2.49069 c h 9.46463 2.49069 m S 1 J 4.00005 0.0 m 5.08101 0.0 6.00006 0.9 6.00006 2.00002 c 6.00006 3.10002 5.10005 4.00005 4.00005 4.00005 c 2.90001 4.00005 2.00002 3.10002 2.00002 2.00002 c 3.20003 2.60002 m 2.00002 1.60002 l 0.8 2.60002 l 16.0002 0.0 m 14.90016 0.0 14.00017 0.9 14.00017 2.00002 c 14.00017 3.10002 14.90016 4.00005 16.0002 4.00005 c 17.1002 4.00005 18.00021 3.10002 18.00021 2.00002 c 19.20023 2.60002 m 18.00021 1.60002 l 16.8002 2.60002 l S qpdf: content Q Q qpdf: content Q n qpdf: content Q Q qpdf: content n Qlڳapdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoBack >> /Border[0 0 0]/C [1 0 0] >>pdf:eann_pdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /Find >> /Border[0 0 0]/C [1 0 0] >>pdf:eanndpdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoForward >> /Border[0 0 0]/C [1 0 0] >>pdf:eannڳ color pop color pop color pop color popcolor push gray 0color push gray 0 color pop color pop3J5 color pop %.ɠwcolor push gray 0color push rgb 0.2 0.2 0.7color push rgb 0.2 0.2 0.71J1padebuildO color pop color pop color pop#color push gray 0 color pop$Zlsdebian/rulesdebian/rules$ZpdebuildW:Z/home/dancer/.pbuilderrcdoesnotexistdpkg-buildpackage:Zsourcepackageiscowdancerdpkg-buildpackage:Zsourceversionis0.26dpkg-buildpackage:ZsourcechangedbyJunichiUekawadpkg-buildpackage:Zsourceversionwithoutepoch0.26Zfakerootdebian/rulescleandh_testdirdh_testrootrmZ-fbuild-stampconfigure-stamp/usr/bin/makeZcleanmake[1]:ZEnteringdirectory`/home/dancer/DEBIAN/cowdancer/cowdancer'rmZ-f*~*.o*.lolibcowdancer.socow-shellcowbuildermake[1]:ZLeavingdirectory`/home/dancer/DEBIAN/cowdancer/cowdancer'dh_cleanZdpkg-source-bcowdancerdpkg-source:Zwarning:sourcedirectory`./cowdancer'isnot-`cowdancer-0.26'dpkg-source:Zbuildingcowdancerincowdancer_0.26.tar.gz....color push gray 0color push gray 0color push gray 0 color pop color pop29pdf:dest (Navigation16) [@thispage /XYZ @xpos @ypos null]4pdf:dest (page.16) [@thispage /XYZ @xpos @ypos null]3J5 color popkw.color push gray 0%color push gray 0color push gray 0color push gray 1%l2 color pop color pop color popcolor push gray 0color push gray 0 color pop color popcolor push gray 0% color popcolor push gray 0color push gray 0 color pop color popOcolor push gray 0O% color popOcolor push gray 0color push gray 0XScolor push rgb 0.15 0.15 0.525EPSfile="openlogo-light.eps" llx=272 lly=333 urx=361 ury=443 rwi=2267 > color pop |Lcolor push gray 0color push rgb 0.68 0.68 0.88%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q q6pdf: content Q 8.26909 0.79701 3.38733 2.39105 re S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l f 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n Qkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation16) >> >> pdf:eanncpdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoToPage >> /Border[0 0 0]/C [1 0 0] >>pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation18) >> >> pdf:eannW%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 6.97394 0.0 3.38733 2.39105 re 7.80008 2.40001 m 7.80008 3.20003 l 11.20012 3.20003 l 11.20012 0.8 l 10.4001 0.8 l 8.6001 3.20003 m 8.6001 4.00005 l 12.00015 4.00005 l 12.00015 1.60002 l 11.20012 1.60002 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n QWkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation16) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation17) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation17) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation18) >> >> pdf:eann+%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qBpdf: content Q 0.59776 w 9.00009 3.00003 m 12.00015 3.00003 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 2.00002 m 12.00015 2.00002 l 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n Q+jpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannAP%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 3.00003 m 12.00015 3.00003 l 9.00009 2.00002 m 12.00015 2.00002 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f 0.59776 w 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n QAPjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannW\%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 3.00003 m 12.00015 3.00003 l 9.00009 2.00002 m 12.00015 2.00002 l 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q qpdf: content Q n qpdf: content Q Q qpdf: content n QW\jpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannlڳ%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 10.4001 1.60002 m 12.00015 0.0 l S 0.3985 w 10.66016 2.49069 m 10.66016 3.15419 10.12813 3.68622 9.46463 3.68622 c 8.80112 3.68622 8.26909 3.15419 8.26909 2.49069 c 8.26909 1.82718 8.80112 1.29515 9.46463 1.29515 c 10.12813 1.29515 10.66016 1.82718 10.66016 2.49069 c h 9.46463 2.49069 m S 1 J 4.00005 0.0 m 5.08101 0.0 6.00006 0.9 6.00006 2.00002 c 6.00006 3.10002 5.10005 4.00005 4.00005 4.00005 c 2.90001 4.00005 2.00002 3.10002 2.00002 2.00002 c 3.20003 2.60002 m 2.00002 1.60002 l 0.8 2.60002 l 16.0002 0.0 m 14.90016 0.0 14.00017 0.9 14.00017 2.00002 c 14.00017 3.10002 14.90016 4.00005 16.0002 4.00005 c 17.1002 4.00005 18.00021 3.10002 18.00021 2.00002 c 19.20023 2.60002 m 18.00021 1.60002 l 16.8002 2.60002 l S qpdf: content Q Q qpdf: content Q n qpdf: content Q Q qpdf: content n Qlڳapdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoBack >> /Border[0 0 0]/C [1 0 0] >>pdf:eann_pdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /Find >> /Border[0 0 0]/C [1 0 0] >>pdf:eanndpdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoForward >> /Border[0 0 0]/C [1 0 0] >>pdf:eannڳ color pop color pop color pop color popcolor push gray 0color push gray 0 color pop color pop3J5 color pop %}9܍.ɺHoqwsdoryoumain-.tainyqourpackage.tosdaqy?{4Tq?PSfile="develcycle.eps" llx=36 lly=36 urx=554 ury=896 rhi=2547 .color push gray 0color push gray 0color push gray 0 color pop color pop29pdf:dest (Navigation17) [@thispage /XYZ @xpos @ypos null]4pdf:dest (page.17) [@thispage /XYZ @xpos @ypos null]3J5 color popϠkw.color push gray 0%color push gray 0color push gray 0color push gray 1%l2 color pop color pop color popcolor push gray 0color push gray 0 color pop color popcolor push gray 0% color popcolor push gray 0color push gray 0 color pop color popOcolor push gray 0O% color popOcolor push gray 0color push gray 0XScolor push rgb 0.15 0.15 0.525EPSfile="openlogo-light.eps" llx=272 lly=333 urx=361 ury=443 rwi=2267 > color pop |Lcolor push gray 0color push rgb 0.68 0.68 0.88%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q q6pdf: content Q 8.26909 0.79701 3.38733 2.39105 re S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l f 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n Qkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation17) >> >> pdf:eanncpdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoToPage >> /Border[0 0 0]/C [1 0 0] >>pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation19) >> >> pdf:eannW%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 6.97394 0.0 3.38733 2.39105 re 7.80008 2.40001 m 7.80008 3.20003 l 11.20012 3.20003 l 11.20012 0.8 l 10.4001 0.8 l 8.6001 3.20003 m 8.6001 4.00005 l 12.00015 4.00005 l 12.00015 1.60002 l 11.20012 1.60002 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n QWkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation17) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation18) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation18) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation19) >> >> pdf:eann+%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qBpdf: content Q 0.59776 w 9.00009 3.00003 m 12.00015 3.00003 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 2.00002 m 12.00015 2.00002 l 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n Q+jpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannAP%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 3.00003 m 12.00015 3.00003 l 9.00009 2.00002 m 12.00015 2.00002 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f 0.59776 w 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n QAPjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannW\%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 3.00003 m 12.00015 3.00003 l 9.00009 2.00002 m 12.00015 2.00002 l 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q qpdf: content Q n qpdf: content Q Q qpdf: content n QW\jpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannlڳ%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 10.4001 1.60002 m 12.00015 0.0 l S 0.3985 w 10.66016 2.49069 m 10.66016 3.15419 10.12813 3.68622 9.46463 3.68622 c 8.80112 3.68622 8.26909 3.15419 8.26909 2.49069 c 8.26909 1.82718 8.80112 1.29515 9.46463 1.29515 c 10.12813 1.29515 10.66016 1.82718 10.66016 2.49069 c h 9.46463 2.49069 m S 1 J 4.00005 0.0 m 5.08101 0.0 6.00006 0.9 6.00006 2.00002 c 6.00006 3.10002 5.10005 4.00005 4.00005 4.00005 c 2.90001 4.00005 2.00002 3.10002 2.00002 2.00002 c 3.20003 2.60002 m 2.00002 1.60002 l 0.8 2.60002 l 16.0002 0.0 m 14.90016 0.0 14.00017 0.9 14.00017 2.00002 c 14.00017 3.10002 14.90016 4.00005 16.0002 4.00005 c 17.1002 4.00005 18.00021 3.10002 18.00021 2.00002 c 19.20023 2.60002 m 18.00021 1.60002 l 16.8002 2.60002 l S qpdf: content Q Q qpdf: content Q n qpdf: content Q Q qpdf: content n Qlڳapdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoBack >> /Border[0 0 0]/C [1 0 0] >>pdf:eann_pdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /Find >> /Border[0 0 0]/C [1 0 0] >>pdf:eanndpdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoForward >> /Border[0 0 0]/C [1 0 0] >>pdf:eannڳ color pop color pop color pop color popcolor push gray 0color push gray 0 color pop color pop3J5 color pop %.ɠwcolor push gray 0color push rgb 0.2 0.2 0.7color push rgb 0.2 0.2 0.71J1pbuildeṙbackYendvariationsO color pop color pop color popw 󍍟color push gray 0 color push gray 0color push rgb 0.2 0.2 0.7I color pop_ color pop L1VMcolor push gray 0color push rgb 0.2 0.2 0.7I color pop_ color pop UMLcolor push gray 0color push rgb 0.2 0.2 0.7I color pop_ color pop coqwdancercolor push gray 0color push rgb 0.2 0.2 0.7I color pop_ color pop qemu\q color poppOcolor push gray 0.9color push gray 0.9K1N85 color popcolor push gray 0jMotivationcolor push gray 0jcolor push gray 0color push rgb 0.2 0.2 0.7I color pop_ color pop%꘺limitationjinchrosot%segregationj(pqroscess%space,j lesystem)jcolor push gray 0color push rgb 0.2 0.2 0.7I color pop_ color pop%꘺COqWj lesystem%optimizationj(taqrball%extractionjsloqw.)jN8 color pop color pop5 color pop.color push gray 0color push gray 0color push gray 0 color pop color pop29pdf:dest (Navigation18) [@thispage /XYZ @xpos @ypos null]4pdf:dest (page.18) [@thispage /XYZ @xpos @ypos null]3J5 color pop:kw.color push gray 0%color push gray 0color push gray 0color push gray 1%l2 color pop color pop color popcolor push gray 0color push gray 0 color pop color popcolor push gray 0% color popcolor push gray 0color push gray 0 color pop color popOcolor push gray 0O% color popOcolor push gray 0color push gray 0XScolor push rgb 0.15 0.15 0.525EPSfile="openlogo-light.eps" llx=272 lly=333 urx=361 ury=443 rwi=2267 > color pop |Lcolor push gray 0color push rgb 0.68 0.68 0.88%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q q6pdf: content Q 8.26909 0.79701 3.38733 2.39105 re S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l f 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n Qkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation18) >> >> pdf:eanncpdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoToPage >> /Border[0 0 0]/C [1 0 0] >>pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation20) >> >> pdf:eannW%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 6.97394 0.0 3.38733 2.39105 re 7.80008 2.40001 m 7.80008 3.20003 l 11.20012 3.20003 l 11.20012 0.8 l 10.4001 0.8 l 8.6001 3.20003 m 8.6001 4.00005 l 12.00015 4.00005 l 12.00015 1.60002 l 11.20012 1.60002 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n QWkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation18) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation19) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation19) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation20) >> >> pdf:eann+%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qBpdf: content Q 0.59776 w 9.00009 3.00003 m 12.00015 3.00003 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 2.00002 m 12.00015 2.00002 l 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n Q+jpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannAP%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 3.00003 m 12.00015 3.00003 l 9.00009 2.00002 m 12.00015 2.00002 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f 0.59776 w 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n QAPjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannW\%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 3.00003 m 12.00015 3.00003 l 9.00009 2.00002 m 12.00015 2.00002 l 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q qpdf: content Q n qpdf: content Q Q qpdf: content n QW\jpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannlڳ%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 10.4001 1.60002 m 12.00015 0.0 l S 0.3985 w 10.66016 2.49069 m 10.66016 3.15419 10.12813 3.68622 9.46463 3.68622 c 8.80112 3.68622 8.26909 3.15419 8.26909 2.49069 c 8.26909 1.82718 8.80112 1.29515 9.46463 1.29515 c 10.12813 1.29515 10.66016 1.82718 10.66016 2.49069 c h 9.46463 2.49069 m S 1 J 4.00005 0.0 m 5.08101 0.0 6.00006 0.9 6.00006 2.00002 c 6.00006 3.10002 5.10005 4.00005 4.00005 4.00005 c 2.90001 4.00005 2.00002 3.10002 2.00002 2.00002 c 3.20003 2.60002 m 2.00002 1.60002 l 0.8 2.60002 l 16.0002 0.0 m 14.90016 0.0 14.00017 0.9 14.00017 2.00002 c 14.00017 3.10002 14.90016 4.00005 16.0002 4.00005 c 17.1002 4.00005 18.00021 3.10002 18.00021 2.00002 c 19.20023 2.60002 m 18.00021 1.60002 l 16.8002 2.60002 l S qpdf: content Q Q qpdf: content Q n qpdf: content Q Q qpdf: content n Qlڳapdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoBack >> /Border[0 0 0]/C [1 0 0] >>pdf:eann_pdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /Find >> /Border[0 0 0]/C [1 0 0] >>pdf:eanndpdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoForward >> /Border[0 0 0]/C [1 0 0] >>pdf:eannڳ color pop color pop color pop color popcolor push gray 0color push gray 0 color pop color pop3J5 color pop %.ɠwcolor push gray 0color push rgb 0.2 0.2 0.7color push rgb 0.2 0.2 0.71J1umlO color pop color pop color pope&Սdi erentjmethosdofsegregationCOqWjblosckdevicesuppoqrt.color push gray 0color push gray 0color push gray 0 color pop color pop29pdf:dest (Navigation19) [@thispage /XYZ @xpos @ypos null]4pdf:dest (page.19) [@thispage /XYZ @xpos @ypos null]3J5 color pop_=kw.color push gray 0%color push gray 0color push gray 0color push gray 1%l2 color pop color pop color popcolor push gray 0color push gray 0 color pop color popcolor push gray 0% color popcolor push gray 0color push gray 0 color pop color popOcolor push gray 0O% color popOcolor push gray 0color push gray 0XScolor push rgb 0.15 0.15 0.525EPSfile="openlogo-light.eps" llx=272 lly=333 urx=361 ury=443 rwi=2267 > color pop |Lcolor push gray 0color push rgb 0.68 0.68 0.88%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q q6pdf: content Q 8.26909 0.79701 3.38733 2.39105 re S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l f 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n Qkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation19) >> >> pdf:eanncpdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoToPage >> /Border[0 0 0]/C [1 0 0] >>pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation21) >> >> pdf:eannW%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 6.97394 0.0 3.38733 2.39105 re 7.80008 2.40001 m 7.80008 3.20003 l 11.20012 3.20003 l 11.20012 0.8 l 10.4001 0.8 l 8.6001 3.20003 m 8.6001 4.00005 l 12.00015 4.00005 l 12.00015 1.60002 l 11.20012 1.60002 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n QWkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation19) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation20) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation20) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation21) >> >> pdf:eann+%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qBpdf: content Q 0.59776 w 9.00009 3.00003 m 12.00015 3.00003 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 2.00002 m 12.00015 2.00002 l 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n Q+jpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannAP%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 3.00003 m 12.00015 3.00003 l 9.00009 2.00002 m 12.00015 2.00002 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f 0.59776 w 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n QAPjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannW\%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 3.00003 m 12.00015 3.00003 l 9.00009 2.00002 m 12.00015 2.00002 l 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q qpdf: content Q n qpdf: content Q Q qpdf: content n QW\jpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannlڳ%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 10.4001 1.60002 m 12.00015 0.0 l S 0.3985 w 10.66016 2.49069 m 10.66016 3.15419 10.12813 3.68622 9.46463 3.68622 c 8.80112 3.68622 8.26909 3.15419 8.26909 2.49069 c 8.26909 1.82718 8.80112 1.29515 9.46463 1.29515 c 10.12813 1.29515 10.66016 1.82718 10.66016 2.49069 c h 9.46463 2.49069 m S 1 J 4.00005 0.0 m 5.08101 0.0 6.00006 0.9 6.00006 2.00002 c 6.00006 3.10002 5.10005 4.00005 4.00005 4.00005 c 2.90001 4.00005 2.00002 3.10002 2.00002 2.00002 c 3.20003 2.60002 m 2.00002 1.60002 l 0.8 2.60002 l 16.0002 0.0 m 14.90016 0.0 14.00017 0.9 14.00017 2.00002 c 14.00017 3.10002 14.90016 4.00005 16.0002 4.00005 c 17.1002 4.00005 18.00021 3.10002 18.00021 2.00002 c 19.20023 2.60002 m 18.00021 1.60002 l 16.8002 2.60002 l S qpdf: content Q Q qpdf: content Q n qpdf: content Q Q qpdf: content n Qlڳapdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoBack >> /Border[0 0 0]/C [1 0 0] >>pdf:eann_pdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /Find >> /Border[0 0 0]/C [1 0 0] >>pdf:eanndpdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoForward >> /Border[0 0 0]/C [1 0 0] >>pdf:eannڳ color pop color pop color pop color popcolor push gray 0color push gray 0 color pop color pop3J5 color pop %.ɠwcolor push gray 0color push rgb 0.2 0.2 0.7color push rgb 0.2 0.2 0.71J1coYwbuilderO color pop color pop color popSpseedjupthroughuseofcopqy-on-write lesystem.Justjamatterof:(ōcolor push gray 0 color pop#Zcp-al#h/var/cache/pbuilder/base.cow#h/var/cache/pbuilder/build/XXX#Zchroot/var/cache/pbuilder/build/XXXcow-shell.color push gray 0color push gray 0color push gray 0 color pop color pop29pdf:dest (Navigation20) [@thispage /XYZ @xpos @ypos null]4pdf:dest (page.20) [@thispage /XYZ @xpos @ypos null]3J5 color popkw.color push gray 0%color push gray 0color push gray 0color push gray 1%l2 color pop color pop color popcolor push gray 0color push gray 0 color pop color popcolor push gray 0% color popcolor push gray 0color push gray 0 color pop color popOcolor push gray 0O% color popOcolor push gray 0color push gray 0XScolor push rgb 0.15 0.15 0.525EPSfile="openlogo-light.eps" llx=272 lly=333 urx=361 ury=443 rwi=2267 > color pop |Lcolor push gray 0color push rgb 0.68 0.68 0.88%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q q6pdf: content Q 8.26909 0.79701 3.38733 2.39105 re S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l f 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n Qkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation20) >> >> pdf:eanncpdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoToPage >> /Border[0 0 0]/C [1 0 0] >>pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation22) >> >> pdf:eannW%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 6.97394 0.0 3.38733 2.39105 re 7.80008 2.40001 m 7.80008 3.20003 l 11.20012 3.20003 l 11.20012 0.8 l 10.4001 0.8 l 8.6001 3.20003 m 8.6001 4.00005 l 12.00015 4.00005 l 12.00015 1.60002 l 11.20012 1.60002 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n QWkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation20) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation21) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation21) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation22) >> >> pdf:eann+%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qBpdf: content Q 0.59776 w 9.00009 3.00003 m 12.00015 3.00003 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 2.00002 m 12.00015 2.00002 l 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n Q+jpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannAP%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 3.00003 m 12.00015 3.00003 l 9.00009 2.00002 m 12.00015 2.00002 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f 0.59776 w 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n QAPjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannW\%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 3.00003 m 12.00015 3.00003 l 9.00009 2.00002 m 12.00015 2.00002 l 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q qpdf: content Q n qpdf: content Q Q qpdf: content n QW\jpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannlڳ%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 10.4001 1.60002 m 12.00015 0.0 l S 0.3985 w 10.66016 2.49069 m 10.66016 3.15419 10.12813 3.68622 9.46463 3.68622 c 8.80112 3.68622 8.26909 3.15419 8.26909 2.49069 c 8.26909 1.82718 8.80112 1.29515 9.46463 1.29515 c 10.12813 1.29515 10.66016 1.82718 10.66016 2.49069 c h 9.46463 2.49069 m S 1 J 4.00005 0.0 m 5.08101 0.0 6.00006 0.9 6.00006 2.00002 c 6.00006 3.10002 5.10005 4.00005 4.00005 4.00005 c 2.90001 4.00005 2.00002 3.10002 2.00002 2.00002 c 3.20003 2.60002 m 2.00002 1.60002 l 0.8 2.60002 l 16.0002 0.0 m 14.90016 0.0 14.00017 0.9 14.00017 2.00002 c 14.00017 3.10002 14.90016 4.00005 16.0002 4.00005 c 17.1002 4.00005 18.00021 3.10002 18.00021 2.00002 c 19.20023 2.60002 m 18.00021 1.60002 l 16.8002 2.60002 l S qpdf: content Q Q qpdf: content Q n qpdf: content Q Q qpdf: content n Qlڳapdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoBack >> /Border[0 0 0]/C [1 0 0] >>pdf:eann_pdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /Find >> /Border[0 0 0]/C [1 0 0] >>pdf:eanndpdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoForward >> /Border[0 0 0]/C [1 0 0] >>pdf:eannڳ color pop color pop color pop color popcolor push gray 0color push gray 0 color pop color pop3J5 color pop %.ɠwcolor push gray 0color push rgb 0.2 0.2 0.7color push rgb 0.2 0.2 0.71J1ConceptṡofcoYwdancerO color pop color pop color popicolor push gray 0color push gray 0color push rgb 0.2 0.2 0.7I color pop_ color pop Usage:8haqrdlinkj les,LD&ffUӎfPRELOAD libscoqwdancer.so;jtraplibccallslikqelyto causej lewrites(opsen,etc)andbqreak thejhaqrdlink.color push gray 0color push rgb 0.2 0.2 0.7I color pop_ color pop light-wqeightjcomparedtoothersolutions (nojextrapaqrtition,noL1VM,noextra kqerneljmosdules/patches)color push gray 0color push rgb 0.2 0.2 0.7I color pop_ color pop coqw-shelljintoit. color pop.color push gray 0color push gray 0color push gray 0 color pop color pop29pdf:dest (Navigation21) [@thispage /XYZ @xpos @ypos null]4pdf:dest (page.21) [@thispage /XYZ @xpos @ypos null]3J5 color popkw.color push gray 0%color push gray 0color push gray 0color push gray 1%l2 color pop color pop color popcolor push gray 0color push gray 0 color pop color popcolor push gray 0% color popcolor push gray 0color push gray 0 color pop color popOcolor push gray 0O% color popOcolor push gray 0color push gray 0XScolor push rgb 0.15 0.15 0.525EPSfile="openlogo-light.eps" llx=272 lly=333 urx=361 ury=443 rwi=2267 > color pop |Lcolor push gray 0color push rgb 0.68 0.68 0.88%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q q6pdf: content Q 8.26909 0.79701 3.38733 2.39105 re S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l f 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n Qkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation21) >> >> pdf:eanncpdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoToPage >> /Border[0 0 0]/C [1 0 0] >>pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation23) >> >> pdf:eannW%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 6.97394 0.0 3.38733 2.39105 re 7.80008 2.40001 m 7.80008 3.20003 l 11.20012 3.20003 l 11.20012 0.8 l 10.4001 0.8 l 8.6001 3.20003 m 8.6001 4.00005 l 12.00015 4.00005 l 12.00015 1.60002 l 11.20012 1.60002 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n QWkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation21) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation22) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation22) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation23) >> >> pdf:eann+%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qBpdf: content Q 0.59776 w 9.00009 3.00003 m 12.00015 3.00003 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 2.00002 m 12.00015 2.00002 l 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n Q+jpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannAP%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 3.00003 m 12.00015 3.00003 l 9.00009 2.00002 m 12.00015 2.00002 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f 0.59776 w 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n QAPjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannW\%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 3.00003 m 12.00015 3.00003 l 9.00009 2.00002 m 12.00015 2.00002 l 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q qpdf: content Q n qpdf: content Q Q qpdf: content n QW\jpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannlڳ%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 10.4001 1.60002 m 12.00015 0.0 l S 0.3985 w 10.66016 2.49069 m 10.66016 3.15419 10.12813 3.68622 9.46463 3.68622 c 8.80112 3.68622 8.26909 3.15419 8.26909 2.49069 c 8.26909 1.82718 8.80112 1.29515 9.46463 1.29515 c 10.12813 1.29515 10.66016 1.82718 10.66016 2.49069 c h 9.46463 2.49069 m S 1 J 4.00005 0.0 m 5.08101 0.0 6.00006 0.9 6.00006 2.00002 c 6.00006 3.10002 5.10005 4.00005 4.00005 4.00005 c 2.90001 4.00005 2.00002 3.10002 2.00002 2.00002 c 3.20003 2.60002 m 2.00002 1.60002 l 0.8 2.60002 l 16.0002 0.0 m 14.90016 0.0 14.00017 0.9 14.00017 2.00002 c 14.00017 3.10002 14.90016 4.00005 16.0002 4.00005 c 17.1002 4.00005 18.00021 3.10002 18.00021 2.00002 c 19.20023 2.60002 m 18.00021 1.60002 l 16.8002 2.60002 l S qpdf: content Q Q qpdf: content Q n qpdf: content Q Q qpdf: content n Qlڳapdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoBack >> /Border[0 0 0]/C [1 0 0] >>pdf:eann_pdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /Find >> /Border[0 0 0]/C [1 0 0] >>pdf:eanndpdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoForward >> /Border[0 0 0]/C [1 0 0] >>pdf:eannڳ color pop color pop color pop color popcolor push gray 0color push gray 0 color pop color pop3J5 color pop %.ɠwcolor push gray 0color push rgb 0.2 0.2 0.7color push rgb 0.2 0.2 0.71J1qemubuilderO color pop color pop color pope&ՍTVryjrunningotheraqrchitecturesatyour ngertips?.color push gray 0color push gray 0color push gray 0 color pop color pop29pdf:dest (Navigation22) [@thispage /XYZ @xpos @ypos null]4pdf:dest (page.22) [@thispage /XYZ @xpos @ypos null]3J5 color popêkw.color push gray 0%color push gray 0color push gray 0color push gray 1%l2 color pop color pop color popcolor push gray 0color push gray 0 color pop color popcolor push gray 0% color popcolor push gray 0color push gray 0 color pop color popOcolor push gray 0O% color popOcolor push gray 0color push gray 0XScolor push rgb 0.15 0.15 0.525EPSfile="openlogo-light.eps" llx=272 lly=333 urx=361 ury=443 rwi=2267 > color pop |Lcolor push gray 0color push rgb 0.68 0.68 0.88%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q q6pdf: content Q 8.26909 0.79701 3.38733 2.39105 re S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l f 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n Qkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation22) >> >> pdf:eanncpdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoToPage >> /Border[0 0 0]/C [1 0 0] >>pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation24) >> >> pdf:eannW%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 6.97394 0.0 3.38733 2.39105 re 7.80008 2.40001 m 7.80008 3.20003 l 11.20012 3.20003 l 11.20012 0.8 l 10.4001 0.8 l 8.6001 3.20003 m 8.6001 4.00005 l 12.00015 4.00005 l 12.00015 1.60002 l 11.20012 1.60002 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n QWkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation22) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation23) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation23) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation24) >> >> pdf:eann+%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qBpdf: content Q 0.59776 w 9.00009 3.00003 m 12.00015 3.00003 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 2.00002 m 12.00015 2.00002 l 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n Q+jpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannAP%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 3.00003 m 12.00015 3.00003 l 9.00009 2.00002 m 12.00015 2.00002 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f 0.59776 w 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n QAPjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannW\%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 3.00003 m 12.00015 3.00003 l 9.00009 2.00002 m 12.00015 2.00002 l 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q qpdf: content Q n qpdf: content Q Q qpdf: content n QW\jpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannlڳ%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 10.4001 1.60002 m 12.00015 0.0 l S 0.3985 w 10.66016 2.49069 m 10.66016 3.15419 10.12813 3.68622 9.46463 3.68622 c 8.80112 3.68622 8.26909 3.15419 8.26909 2.49069 c 8.26909 1.82718 8.80112 1.29515 9.46463 1.29515 c 10.12813 1.29515 10.66016 1.82718 10.66016 2.49069 c h 9.46463 2.49069 m S 1 J 4.00005 0.0 m 5.08101 0.0 6.00006 0.9 6.00006 2.00002 c 6.00006 3.10002 5.10005 4.00005 4.00005 4.00005 c 2.90001 4.00005 2.00002 3.10002 2.00002 2.00002 c 3.20003 2.60002 m 2.00002 1.60002 l 0.8 2.60002 l 16.0002 0.0 m 14.90016 0.0 14.00017 0.9 14.00017 2.00002 c 14.00017 3.10002 14.90016 4.00005 16.0002 4.00005 c 17.1002 4.00005 18.00021 3.10002 18.00021 2.00002 c 19.20023 2.60002 m 18.00021 1.60002 l 16.8002 2.60002 l S qpdf: content Q Q qpdf: content Q n qpdf: content Q Q qpdf: content n Qlڳapdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoBack >> /Border[0 0 0]/C [1 0 0] >>pdf:eann_pdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /Find >> /Border[0 0 0]/C [1 0 0] >>pdf:eanndpdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoForward >> /Border[0 0 0]/C [1 0 0] >>pdf:eannڳ color pop color pop color pop color popcolor push gray 0color push gray 0 color pop color pop3J5 color pop %.ɠwcolor push gray 0color push rgb 0.2 0.2 0.7color push rgb 0.2 0.2 0.71J1qemubuildeṙexamplecon gO color pop color pop color popN\2color push gray 0 color popKERNEL_IMAGE=2.6.18-4-mips-di-vmlinuxINITRD=2.6.18-4-mips-di-initrd.gzARCH=mipsBASEPATH=ȴ/var/cache/pbuilder/base-mips.qemu.color push gray 0color push gray 0color push gray 0 color pop color pop29pdf:dest (Navigation23) [@thispage /XYZ @xpos @ypos null]4pdf:dest (page.23) [@thispage /XYZ @xpos @ypos null]3J5 color popkw.color push gray 0%color push gray 0color push gray 0color push gray 1%l2 color pop color pop color popcolor push gray 0color push gray 0 color pop color popcolor push gray 0% color popcolor push gray 0color push gray 0 color pop color popOcolor push gray 0O% color popOcolor push gray 0color push gray 0XScolor push rgb 0.15 0.15 0.525EPSfile="openlogo-light.eps" llx=272 lly=333 urx=361 ury=443 rwi=2267 > color pop |Lcolor push gray 0color push rgb 0.68 0.68 0.88%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q q6pdf: content Q 8.26909 0.79701 3.38733 2.39105 re S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l f 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n Qkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation23) >> >> pdf:eanncpdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoToPage >> /Border[0 0 0]/C [1 0 0] >>pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation25) >> >> pdf:eannW%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 6.97394 0.0 3.38733 2.39105 re 7.80008 2.40001 m 7.80008 3.20003 l 11.20012 3.20003 l 11.20012 0.8 l 10.4001 0.8 l 8.6001 3.20003 m 8.6001 4.00005 l 12.00015 4.00005 l 12.00015 1.60002 l 11.20012 1.60002 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n QWkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation23) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation24) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation24) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation25) >> >> pdf:eann+%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qBpdf: content Q 0.59776 w 9.00009 3.00003 m 12.00015 3.00003 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 2.00002 m 12.00015 2.00002 l 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n Q+jpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannAP%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 3.00003 m 12.00015 3.00003 l 9.00009 2.00002 m 12.00015 2.00002 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f 0.59776 w 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n QAPjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannW\%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 3.00003 m 12.00015 3.00003 l 9.00009 2.00002 m 12.00015 2.00002 l 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q qpdf: content Q n qpdf: content Q Q qpdf: content n QW\jpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannlڳ%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 10.4001 1.60002 m 12.00015 0.0 l S 0.3985 w 10.66016 2.49069 m 10.66016 3.15419 10.12813 3.68622 9.46463 3.68622 c 8.80112 3.68622 8.26909 3.15419 8.26909 2.49069 c 8.26909 1.82718 8.80112 1.29515 9.46463 1.29515 c 10.12813 1.29515 10.66016 1.82718 10.66016 2.49069 c h 9.46463 2.49069 m S 1 J 4.00005 0.0 m 5.08101 0.0 6.00006 0.9 6.00006 2.00002 c 6.00006 3.10002 5.10005 4.00005 4.00005 4.00005 c 2.90001 4.00005 2.00002 3.10002 2.00002 2.00002 c 3.20003 2.60002 m 2.00002 1.60002 l 0.8 2.60002 l 16.0002 0.0 m 14.90016 0.0 14.00017 0.9 14.00017 2.00002 c 14.00017 3.10002 14.90016 4.00005 16.0002 4.00005 c 17.1002 4.00005 18.00021 3.10002 18.00021 2.00002 c 19.20023 2.60002 m 18.00021 1.60002 l 16.8002 2.60002 l S qpdf: content Q Q qpdf: content Q n qpdf: content Q Q qpdf: content n Qlڳapdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoBack >> /Border[0 0 0]/C [1 0 0] >>pdf:eann_pdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /Find >> /Border[0 0 0]/C [1 0 0] >>pdf:eanndpdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoForward >> /Border[0 0 0]/C [1 0 0] >>pdf:eannڳ color pop color pop color pop color popcolor push gray 0color push gray 0 color pop color pop3J5 color pop %.ɠwcolor push gray 0color push rgb 0.2 0.2 0.7color push rgb 0.2 0.2 0.71J1qemubuildeṙdetails... f createO color pop color pop color pop捍EPSfile="qemubuilder-create.eps" llx=0 lly=0 urx=584 ury=237 rwi=3061 .color push gray 0color push gray 0color push gray 0 color pop color pop29pdf:dest (Navigation24) [@thispage /XYZ @xpos @ypos null]4pdf:dest (page.24) [@thispage /XYZ @xpos @ypos null]3J5 color popԠkw.color push gray 0%color push gray 0color push gray 0color push gray 1%l2 color pop color pop color popcolor push gray 0color push gray 0 color pop color popcolor push gray 0% color popcolor push gray 0color push gray 0 color pop color popOcolor push gray 0O% color popOcolor push gray 0color push gray 0XScolor push rgb 0.15 0.15 0.525EPSfile="openlogo-light.eps" llx=272 lly=333 urx=361 ury=443 rwi=2267 > color pop |Lcolor push gray 0color push rgb 0.68 0.68 0.88%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q q6pdf: content Q 8.26909 0.79701 3.38733 2.39105 re S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l f 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n Qkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation24) >> >> pdf:eanncpdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoToPage >> /Border[0 0 0]/C [1 0 0] >>pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation26) >> >> pdf:eannW%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 6.97394 0.0 3.38733 2.39105 re 7.80008 2.40001 m 7.80008 3.20003 l 11.20012 3.20003 l 11.20012 0.8 l 10.4001 0.8 l 8.6001 3.20003 m 8.6001 4.00005 l 12.00015 4.00005 l 12.00015 1.60002 l 11.20012 1.60002 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n QWkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation24) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation25) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation25) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation26) >> >> pdf:eann+%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qBpdf: content Q 0.59776 w 9.00009 3.00003 m 12.00015 3.00003 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 2.00002 m 12.00015 2.00002 l 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n Q+jpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannAP%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 3.00003 m 12.00015 3.00003 l 9.00009 2.00002 m 12.00015 2.00002 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f 0.59776 w 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n QAPjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannW\%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 3.00003 m 12.00015 3.00003 l 9.00009 2.00002 m 12.00015 2.00002 l 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q qpdf: content Q n qpdf: content Q Q qpdf: content n QW\jpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannlڳ%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 10.4001 1.60002 m 12.00015 0.0 l S 0.3985 w 10.66016 2.49069 m 10.66016 3.15419 10.12813 3.68622 9.46463 3.68622 c 8.80112 3.68622 8.26909 3.15419 8.26909 2.49069 c 8.26909 1.82718 8.80112 1.29515 9.46463 1.29515 c 10.12813 1.29515 10.66016 1.82718 10.66016 2.49069 c h 9.46463 2.49069 m S 1 J 4.00005 0.0 m 5.08101 0.0 6.00006 0.9 6.00006 2.00002 c 6.00006 3.10002 5.10005 4.00005 4.00005 4.00005 c 2.90001 4.00005 2.00002 3.10002 2.00002 2.00002 c 3.20003 2.60002 m 2.00002 1.60002 l 0.8 2.60002 l 16.0002 0.0 m 14.90016 0.0 14.00017 0.9 14.00017 2.00002 c 14.00017 3.10002 14.90016 4.00005 16.0002 4.00005 c 17.1002 4.00005 18.00021 3.10002 18.00021 2.00002 c 19.20023 2.60002 m 18.00021 1.60002 l 16.8002 2.60002 l S qpdf: content Q Q qpdf: content Q n qpdf: content Q Q qpdf: content n Qlڳapdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoBack >> /Border[0 0 0]/C [1 0 0] >>pdf:eann_pdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /Find >> /Border[0 0 0]/C [1 0 0] >>pdf:eanndpdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoForward >> /Border[0 0 0]/C [1 0 0] >>pdf:eannڳ color pop color pop color pop color popcolor push gray 0color push gray 0 color pop color pop3J5 color pop %.ɠwcolor push gray 0color push rgb 0.2 0.2 0.7color push rgb 0.2 0.2 0.71J1qemubuildeṙdetails... f buildO color pop color pop color pop)ōDPSfile="qemubuilder-build.eps" llx=0 lly=0 urx=664 ury=315 rwi=3061 .color push gray 0color push gray 0color push gray 0 color pop color pop29pdf:dest (Navigation25) [@thispage /XYZ @xpos @ypos null]4pdf:dest (page.25) [@thispage /XYZ @xpos @ypos null]3J5 color pop%Gkw.color push gray 0%color push gray 0color push gray 0color push gray 1%l2 color pop color pop color popcolor push gray 0color push gray 0 color pop color popcolor push gray 0% color popcolor push gray 0color push gray 0 color pop color popOcolor push gray 0O% color popOcolor push gray 0color push gray 0XScolor push rgb 0.15 0.15 0.525EPSfile="openlogo-light.eps" llx=272 lly=333 urx=361 ury=443 rwi=2267 > color pop |Lcolor push gray 0color push rgb 0.68 0.68 0.88%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q q6pdf: content Q 8.26909 0.79701 3.38733 2.39105 re S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l f 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n Qkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation25) >> >> pdf:eanncpdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoToPage >> /Border[0 0 0]/C [1 0 0] >>pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation27) >> >> pdf:eannW%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 6.97394 0.0 3.38733 2.39105 re 7.80008 2.40001 m 7.80008 3.20003 l 11.20012 3.20003 l 11.20012 0.8 l 10.4001 0.8 l 8.6001 3.20003 m 8.6001 4.00005 l 12.00015 4.00005 l 12.00015 1.60002 l 11.20012 1.60002 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n QWkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation25) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation26) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation26) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation27) >> >> pdf:eann+%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qBpdf: content Q 0.59776 w 9.00009 3.00003 m 12.00015 3.00003 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 2.00002 m 12.00015 2.00002 l 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n Q+jpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannAP%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 3.00003 m 12.00015 3.00003 l 9.00009 2.00002 m 12.00015 2.00002 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f 0.59776 w 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n QAPjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannW\%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 3.00003 m 12.00015 3.00003 l 9.00009 2.00002 m 12.00015 2.00002 l 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q qpdf: content Q n qpdf: content Q Q qpdf: content n QW\jpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannlڳ%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 10.4001 1.60002 m 12.00015 0.0 l S 0.3985 w 10.66016 2.49069 m 10.66016 3.15419 10.12813 3.68622 9.46463 3.68622 c 8.80112 3.68622 8.26909 3.15419 8.26909 2.49069 c 8.26909 1.82718 8.80112 1.29515 9.46463 1.29515 c 10.12813 1.29515 10.66016 1.82718 10.66016 2.49069 c h 9.46463 2.49069 m S 1 J 4.00005 0.0 m 5.08101 0.0 6.00006 0.9 6.00006 2.00002 c 6.00006 3.10002 5.10005 4.00005 4.00005 4.00005 c 2.90001 4.00005 2.00002 3.10002 2.00002 2.00002 c 3.20003 2.60002 m 2.00002 1.60002 l 0.8 2.60002 l 16.0002 0.0 m 14.90016 0.0 14.00017 0.9 14.00017 2.00002 c 14.00017 3.10002 14.90016 4.00005 16.0002 4.00005 c 17.1002 4.00005 18.00021 3.10002 18.00021 2.00002 c 19.20023 2.60002 m 18.00021 1.60002 l 16.8002 2.60002 l S qpdf: content Q Q qpdf: content Q n qpdf: content Q Q qpdf: content n Qlڳapdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoBack >> /Border[0 0 0]/C [1 0 0] >>pdf:eann_pdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /Find >> /Border[0 0 0]/C [1 0 0] >>pdf:eanndpdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoForward >> /Border[0 0 0]/C [1 0 0] >>pdf:eannڳ color pop color pop color pop color popcolor push gray 0color push gray 0 color pop color pop3J5 color pop %NN.qemubuilder'7R.{create y{con g.mips.con g.color push gray 0color push gray 0color push gray 0 color pop color pop29pdf:dest (Navigation26) [@thispage /XYZ @xpos @ypos null]4pdf:dest (page.26) [@thispage /XYZ @xpos @ypos null]3J5 color popEkw.color push gray 0%color push gray 0color push gray 0color push gray 1%l2 color pop color pop color popcolor push gray 0color push gray 0 color pop color popcolor push gray 0% color popcolor push gray 0color push gray 0 color pop color popOcolor push gray 0O% color popOcolor push gray 0color push gray 0XScolor push rgb 0.15 0.15 0.525EPSfile="openlogo-light.eps" llx=272 lly=333 urx=361 ury=443 rwi=2267 > color pop |Lcolor push gray 0color push rgb 0.68 0.68 0.88%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q q6pdf: content Q 8.26909 0.79701 3.38733 2.39105 re S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l f 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n Qkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation26) >> >> pdf:eanncpdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoToPage >> /Border[0 0 0]/C [1 0 0] >>pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation28) >> >> pdf:eannW%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 6.97394 0.0 3.38733 2.39105 re 7.80008 2.40001 m 7.80008 3.20003 l 11.20012 3.20003 l 11.20012 0.8 l 10.4001 0.8 l 8.6001 3.20003 m 8.6001 4.00005 l 12.00015 4.00005 l 12.00015 1.60002 l 11.20012 1.60002 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n QWkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation26) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation27) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation27) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation28) >> >> pdf:eann+%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qBpdf: content Q 0.59776 w 9.00009 3.00003 m 12.00015 3.00003 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 2.00002 m 12.00015 2.00002 l 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n Q+jpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannAP%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 3.00003 m 12.00015 3.00003 l 9.00009 2.00002 m 12.00015 2.00002 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f 0.59776 w 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n QAPjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannW\%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 3.00003 m 12.00015 3.00003 l 9.00009 2.00002 m 12.00015 2.00002 l 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q qpdf: content Q n qpdf: content Q Q qpdf: content n QW\jpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannlڳ%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 10.4001 1.60002 m 12.00015 0.0 l S 0.3985 w 10.66016 2.49069 m 10.66016 3.15419 10.12813 3.68622 9.46463 3.68622 c 8.80112 3.68622 8.26909 3.15419 8.26909 2.49069 c 8.26909 1.82718 8.80112 1.29515 9.46463 1.29515 c 10.12813 1.29515 10.66016 1.82718 10.66016 2.49069 c h 9.46463 2.49069 m S 1 J 4.00005 0.0 m 5.08101 0.0 6.00006 0.9 6.00006 2.00002 c 6.00006 3.10002 5.10005 4.00005 4.00005 4.00005 c 2.90001 4.00005 2.00002 3.10002 2.00002 2.00002 c 3.20003 2.60002 m 2.00002 1.60002 l 0.8 2.60002 l 16.0002 0.0 m 14.90016 0.0 14.00017 0.9 14.00017 2.00002 c 14.00017 3.10002 14.90016 4.00005 16.0002 4.00005 c 17.1002 4.00005 18.00021 3.10002 18.00021 2.00002 c 19.20023 2.60002 m 18.00021 1.60002 l 16.8002 2.60002 l S qpdf: content Q Q qpdf: content Q n qpdf: content Q Q qpdf: content n Qlڳapdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoBack >> /Border[0 0 0]/C [1 0 0] >>pdf:eann_pdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /Find >> /Border[0 0 0]/C [1 0 0] >>pdf:eanndpdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoForward >> /Border[0 0 0]/C [1 0 0] >>pdf:eannڳ color pop color pop color pop color popcolor push gray 0color push gray 0 color pop color pop3J5 color pop %NN.qemubuilder'7R.{up|date y{con g.mips.con g.color push gray 0color push gray 0color push gray 0 color pop color pop29pdf:dest (Navigation27) [@thispage /XYZ @xpos @ypos null]4pdf:dest (page.27) [@thispage /XYZ @xpos @ypos null]3J5 color pope`kw.color push gray 0%color push gray 0color push gray 0color push gray 1%l2 color pop color pop color popcolor push gray 0color push gray 0 color pop color popcolor push gray 0% color popcolor push gray 0color push gray 0 color pop color popOcolor push gray 0O% color popOcolor push gray 0color push gray 0XScolor push rgb 0.15 0.15 0.525EPSfile="openlogo-light.eps" llx=272 lly=333 urx=361 ury=443 rwi=2267 > color pop |Lcolor push gray 0color push rgb 0.68 0.68 0.88%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q q6pdf: content Q 8.26909 0.79701 3.38733 2.39105 re S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l f 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n Qkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation27) >> >> pdf:eanncpdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoToPage >> /Border[0 0 0]/C [1 0 0] >>pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation29) >> >> pdf:eannW%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 6.97394 0.0 3.38733 2.39105 re 7.80008 2.40001 m 7.80008 3.20003 l 11.20012 3.20003 l 11.20012 0.8 l 10.4001 0.8 l 8.6001 3.20003 m 8.6001 4.00005 l 12.00015 4.00005 l 12.00015 1.60002 l 11.20012 1.60002 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n QWkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation27) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation28) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation28) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation29) >> >> pdf:eann+%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qBpdf: content Q 0.59776 w 9.00009 3.00003 m 12.00015 3.00003 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 2.00002 m 12.00015 2.00002 l 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n Q+jpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannAP%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 3.00003 m 12.00015 3.00003 l 9.00009 2.00002 m 12.00015 2.00002 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f 0.59776 w 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n QAPjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannW\%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 3.00003 m 12.00015 3.00003 l 9.00009 2.00002 m 12.00015 2.00002 l 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q qpdf: content Q n qpdf: content Q Q qpdf: content n QW\jpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannlڳ%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 10.4001 1.60002 m 12.00015 0.0 l S 0.3985 w 10.66016 2.49069 m 10.66016 3.15419 10.12813 3.68622 9.46463 3.68622 c 8.80112 3.68622 8.26909 3.15419 8.26909 2.49069 c 8.26909 1.82718 8.80112 1.29515 9.46463 1.29515 c 10.12813 1.29515 10.66016 1.82718 10.66016 2.49069 c h 9.46463 2.49069 m S 1 J 4.00005 0.0 m 5.08101 0.0 6.00006 0.9 6.00006 2.00002 c 6.00006 3.10002 5.10005 4.00005 4.00005 4.00005 c 2.90001 4.00005 2.00002 3.10002 2.00002 2.00002 c 3.20003 2.60002 m 2.00002 1.60002 l 0.8 2.60002 l 16.0002 0.0 m 14.90016 0.0 14.00017 0.9 14.00017 2.00002 c 14.00017 3.10002 14.90016 4.00005 16.0002 4.00005 c 17.1002 4.00005 18.00021 3.10002 18.00021 2.00002 c 19.20023 2.60002 m 18.00021 1.60002 l 16.8002 2.60002 l S qpdf: content Q Q qpdf: content Q n qpdf: content Q Q qpdf: content n Qlڳapdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoBack >> /Border[0 0 0]/C [1 0 0] >>pdf:eann_pdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /Find >> /Border[0 0 0]/C [1 0 0] >>pdf:eanndpdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoForward >> /Border[0 0 0]/C [1 0 0] >>pdf:eannڳ color pop color pop color pop color popcolor push gray 0color push gray 0 color pop color pop3J5 color pop %A.qemubuilder'7R.{build y{con g.mips.con g.XXX.dsc.color push gray 0color push gray 0color push gray 0 color pop color pop29pdf:dest (Navigation28) [@thispage /XYZ @xpos @ypos null]4pdf:dest (page.28) [@thispage /XYZ @xpos @ypos null]3J5 color pop kw.color push gray 0%color push gray 0color push gray 0color push gray 1%l2 color pop color pop color popcolor push gray 0color push gray 0 color pop color popcolor push gray 0% color popcolor push gray 0color push gray 0 color pop color popOcolor push gray 0O% color popOcolor push gray 0color push gray 0XScolor push rgb 0.15 0.15 0.525EPSfile="openlogo-light.eps" llx=272 lly=333 urx=361 ury=443 rwi=2267 > color pop |Lcolor push gray 0color push rgb 0.68 0.68 0.88%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q q6pdf: content Q 8.26909 0.79701 3.38733 2.39105 re S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l f 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n Qkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation28) >> >> pdf:eanncpdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoToPage >> /Border[0 0 0]/C [1 0 0] >>pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation30) >> >> pdf:eannW%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 6.97394 0.0 3.38733 2.39105 re 7.80008 2.40001 m 7.80008 3.20003 l 11.20012 3.20003 l 11.20012 0.8 l 10.4001 0.8 l 8.6001 3.20003 m 8.6001 4.00005 l 12.00015 4.00005 l 12.00015 1.60002 l 11.20012 1.60002 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n QWkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation28) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation29) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation29) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation30) >> >> pdf:eann+%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qBpdf: content Q 0.59776 w 9.00009 3.00003 m 12.00015 3.00003 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 2.00002 m 12.00015 2.00002 l 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n Q+jpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannAP%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 3.00003 m 12.00015 3.00003 l 9.00009 2.00002 m 12.00015 2.00002 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f 0.59776 w 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n QAPjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannW\%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 3.00003 m 12.00015 3.00003 l 9.00009 2.00002 m 12.00015 2.00002 l 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q qpdf: content Q n qpdf: content Q Q qpdf: content n QW\jpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannlڳ%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 10.4001 1.60002 m 12.00015 0.0 l S 0.3985 w 10.66016 2.49069 m 10.66016 3.15419 10.12813 3.68622 9.46463 3.68622 c 8.80112 3.68622 8.26909 3.15419 8.26909 2.49069 c 8.26909 1.82718 8.80112 1.29515 9.46463 1.29515 c 10.12813 1.29515 10.66016 1.82718 10.66016 2.49069 c h 9.46463 2.49069 m S 1 J 4.00005 0.0 m 5.08101 0.0 6.00006 0.9 6.00006 2.00002 c 6.00006 3.10002 5.10005 4.00005 4.00005 4.00005 c 2.90001 4.00005 2.00002 3.10002 2.00002 2.00002 c 3.20003 2.60002 m 2.00002 1.60002 l 0.8 2.60002 l 16.0002 0.0 m 14.90016 0.0 14.00017 0.9 14.00017 2.00002 c 14.00017 3.10002 14.90016 4.00005 16.0002 4.00005 c 17.1002 4.00005 18.00021 3.10002 18.00021 2.00002 c 19.20023 2.60002 m 18.00021 1.60002 l 16.8002 2.60002 l S qpdf: content Q Q qpdf: content Q n qpdf: content Q Q qpdf: content n Qlڳapdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoBack >> /Border[0 0 0]/C [1 0 0] >>pdf:eann_pdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /Find >> /Border[0 0 0]/C [1 0 0] >>pdf:eanndpdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoForward >> /Border[0 0 0]/C [1 0 0] >>pdf:eannڳ color pop color pop color pop color popcolor push gray 0color push gray 0 color pop color pop3J5 color pop %.ɠwcolor push gray 0color push rgb 0.2 0.2 0.7color push rgb 0.2 0.2 0.71J1qemubuildeṙ{loginO color pop color pop color pop#color push gray 0 color pop$Zsudoqemubuilder--login--configpbuilder-qemu-mips.configbash:Z/root/.pbuilderrc:NosuchfileordirectoryfsckZ1.40-WIP(14-Nov-2006)e2fsckZ1.40-WIP(14-Nov-2006)/home/dancer/tmp/base-mips.qemu:Zclean,11585/393984files,88319/786432blocks1+0Zrecordsin1+0Zrecordsout1048576Zbytes(1.0MB)copied,0.0229856seconds,45.6MB/smke2fsZ1.40-WIP(14-Nov-2006)....color push gray 0color push gray 0color push gray 0 color pop color pop29pdf:dest (Navigation29) [@thispage /XYZ @xpos @ypos null]4pdf:dest (page.29) [@thispage /XYZ @xpos @ypos null]3J5 color popkw.color push gray 0%color push gray 0color push gray 0color push gray 1%l2 color pop color pop color popcolor push gray 0color push gray 0 color pop color popcolor push gray 0% color popcolor push gray 0color push gray 0 color pop color popOcolor push gray 0O% color popOcolor push gray 0color push gray 0XScolor push rgb 0.15 0.15 0.525EPSfile="openlogo-light.eps" llx=272 lly=333 urx=361 ury=443 rwi=2267 > color pop |Lcolor push gray 0color push rgb 0.68 0.68 0.88%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q q6pdf: content Q 8.26909 0.79701 3.38733 2.39105 re S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l f 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n Qkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation29) >> >> pdf:eanncpdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoToPage >> /Border[0 0 0]/C [1 0 0] >>pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation31) >> >> pdf:eannW%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 6.97394 0.0 3.38733 2.39105 re 7.80008 2.40001 m 7.80008 3.20003 l 11.20012 3.20003 l 11.20012 0.8 l 10.4001 0.8 l 8.6001 3.20003 m 8.6001 4.00005 l 12.00015 4.00005 l 12.00015 1.60002 l 11.20012 1.60002 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n QWkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation29) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation30) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation30) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation31) >> >> pdf:eann+%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qBpdf: content Q 0.59776 w 9.00009 3.00003 m 12.00015 3.00003 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 2.00002 m 12.00015 2.00002 l 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n Q+jpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannAP%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 3.00003 m 12.00015 3.00003 l 9.00009 2.00002 m 12.00015 2.00002 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f 0.59776 w 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n QAPjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannW\%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 3.00003 m 12.00015 3.00003 l 9.00009 2.00002 m 12.00015 2.00002 l 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q qpdf: content Q n qpdf: content Q Q qpdf: content n QW\jpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannlڳ%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 10.4001 1.60002 m 12.00015 0.0 l S 0.3985 w 10.66016 2.49069 m 10.66016 3.15419 10.12813 3.68622 9.46463 3.68622 c 8.80112 3.68622 8.26909 3.15419 8.26909 2.49069 c 8.26909 1.82718 8.80112 1.29515 9.46463 1.29515 c 10.12813 1.29515 10.66016 1.82718 10.66016 2.49069 c h 9.46463 2.49069 m S 1 J 4.00005 0.0 m 5.08101 0.0 6.00006 0.9 6.00006 2.00002 c 6.00006 3.10002 5.10005 4.00005 4.00005 4.00005 c 2.90001 4.00005 2.00002 3.10002 2.00002 2.00002 c 3.20003 2.60002 m 2.00002 1.60002 l 0.8 2.60002 l 16.0002 0.0 m 14.90016 0.0 14.00017 0.9 14.00017 2.00002 c 14.00017 3.10002 14.90016 4.00005 16.0002 4.00005 c 17.1002 4.00005 18.00021 3.10002 18.00021 2.00002 c 19.20023 2.60002 m 18.00021 1.60002 l 16.8002 2.60002 l S qpdf: content Q Q qpdf: content Q n qpdf: content Q Q qpdf: content n Qlڳapdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoBack >> /Border[0 0 0]/C [1 0 0] >>pdf:eann_pdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /Find >> /Border[0 0 0]/C [1 0 0] >>pdf:eanndpdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoForward >> /Border[0 0 0]/C [1 0 0] >>pdf:eannڳ color pop color pop color pop color popcolor push gray 0color push gray 0 color pop color pop3J5 color pop %.ɠwcolor push gray 0color push rgb 0.2 0.2 0.7color push rgb 0.2 0.2 0.71J1qemubuildeṙ{loginO color pop color pop color pop<˜color push gray 0 color pop...hostname:ZthespecifiedhostnameisinvalidboundZto10.0.2.15--renewalin35272seconds.bash:Znojobcontrolinthisshellroot@pbuilder-coreduo:/#.color push gray 0color push gray 0color push gray 0 color pop color pop29pdf:dest (Navigation30) [@thispage /XYZ @xpos @ypos null]4pdf:dest (page.30) [@thispage /XYZ @xpos @ypos null]3J5 color popưkw.color push gray 0%color push gray 0color push gray 0color push gray 1%l2 color pop color pop color popcolor push gray 0color push gray 0 color pop color popcolor push gray 0% color popcolor push gray 0color push gray 0 color pop color popOcolor push gray 0O% color popOcolor push gray 0color push gray 0XScolor push rgb 0.15 0.15 0.525EPSfile="openlogo-light.eps" llx=272 lly=333 urx=361 ury=443 rwi=2267 > color pop |Lcolor push gray 0color push rgb 0.68 0.68 0.88%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q q6pdf: content Q 8.26909 0.79701 3.38733 2.39105 re S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l f 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n Qkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation30) >> >> pdf:eanncpdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoToPage >> /Border[0 0 0]/C [1 0 0] >>pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation32) >> >> pdf:eannW%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 6.97394 0.0 3.38733 2.39105 re 7.80008 2.40001 m 7.80008 3.20003 l 11.20012 3.20003 l 11.20012 0.8 l 10.4001 0.8 l 8.6001 3.20003 m 8.6001 4.00005 l 12.00015 4.00005 l 12.00015 1.60002 l 11.20012 1.60002 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n QWkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation30) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation31) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation31) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation32) >> >> pdf:eann+%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qBpdf: content Q 0.59776 w 9.00009 3.00003 m 12.00015 3.00003 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 2.00002 m 12.00015 2.00002 l 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n Q+jpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannAP%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 3.00003 m 12.00015 3.00003 l 9.00009 2.00002 m 12.00015 2.00002 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f 0.59776 w 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n QAPjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannW\%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 3.00003 m 12.00015 3.00003 l 9.00009 2.00002 m 12.00015 2.00002 l 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q qpdf: content Q n qpdf: content Q Q qpdf: content n QW\jpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannlڳ%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 10.4001 1.60002 m 12.00015 0.0 l S 0.3985 w 10.66016 2.49069 m 10.66016 3.15419 10.12813 3.68622 9.46463 3.68622 c 8.80112 3.68622 8.26909 3.15419 8.26909 2.49069 c 8.26909 1.82718 8.80112 1.29515 9.46463 1.29515 c 10.12813 1.29515 10.66016 1.82718 10.66016 2.49069 c h 9.46463 2.49069 m S 1 J 4.00005 0.0 m 5.08101 0.0 6.00006 0.9 6.00006 2.00002 c 6.00006 3.10002 5.10005 4.00005 4.00005 4.00005 c 2.90001 4.00005 2.00002 3.10002 2.00002 2.00002 c 3.20003 2.60002 m 2.00002 1.60002 l 0.8 2.60002 l 16.0002 0.0 m 14.90016 0.0 14.00017 0.9 14.00017 2.00002 c 14.00017 3.10002 14.90016 4.00005 16.0002 4.00005 c 17.1002 4.00005 18.00021 3.10002 18.00021 2.00002 c 19.20023 2.60002 m 18.00021 1.60002 l 16.8002 2.60002 l S qpdf: content Q Q qpdf: content Q n qpdf: content Q Q qpdf: content n Qlڳapdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoBack >> /Border[0 0 0]/C [1 0 0] >>pdf:eann_pdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /Find >> /Border[0 0 0]/C [1 0 0] >>pdf:eanndpdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoForward >> /Border[0 0 0]/C [1 0 0] >>pdf:eannڳ color pop color pop color pop color popcolor push gray 0color push gray 0 color pop color pop3J5 color pop %.ɠwcolor push gray 0color push rgb 0.2 0.2 0.7color push rgb 0.2 0.2 0.71J1furtheṙideasO color pop color pop color popG<color push gray 0color push gray 0color push rgb 0.2 0.2 0.7I color pop_ color pop installjtestingcolor push gray 0color push rgb 0.2 0.2 0.7I color pop_ color pop packqagejtesting\q color pop.color push gray 0color push gray 0color push gray 0 color pop color pop29pdf:dest (Navigation31) [@thispage /XYZ @xpos @ypos null]4pdf:dest (page.31) [@thispage /XYZ @xpos @ypos null]3J5 color pop 秠kw.color push gray 0%color push gray 0color push gray 0color push gray 1%l2 color pop color pop color popcolor push gray 0color push gray 0 color pop color popcolor push gray 0% color popcolor push gray 0color push gray 0 color pop color popOcolor push gray 0O% color popOcolor push gray 0color push gray 0XScolor push rgb 0.15 0.15 0.525EPSfile="openlogo-light.eps" llx=272 lly=333 urx=361 ury=443 rwi=2267 > color pop |Lcolor push gray 0color push rgb 0.68 0.68 0.88%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q q6pdf: content Q 8.26909 0.79701 3.38733 2.39105 re S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l f 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n Qkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation31) >> >> pdf:eanncpdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoToPage >> /Border[0 0 0]/C [1 0 0] >>pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation33) >> >> pdf:eannW%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 6.97394 0.0 3.38733 2.39105 re 7.80008 2.40001 m 7.80008 3.20003 l 11.20012 3.20003 l 11.20012 0.8 l 10.4001 0.8 l 8.6001 3.20003 m 8.6001 4.00005 l 12.00015 4.00005 l 12.00015 1.60002 l 11.20012 1.60002 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n QWkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation31) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation32) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation32) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation33) >> >> pdf:eann+%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qBpdf: content Q 0.59776 w 9.00009 3.00003 m 12.00015 3.00003 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 2.00002 m 12.00015 2.00002 l 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n Q+jpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannAP%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 3.00003 m 12.00015 3.00003 l 9.00009 2.00002 m 12.00015 2.00002 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f 0.59776 w 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n QAPjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannW\%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 3.00003 m 12.00015 3.00003 l 9.00009 2.00002 m 12.00015 2.00002 l 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q qpdf: content Q n qpdf: content Q Q qpdf: content n QW\jpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannlڳ%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 10.4001 1.60002 m 12.00015 0.0 l S 0.3985 w 10.66016 2.49069 m 10.66016 3.15419 10.12813 3.68622 9.46463 3.68622 c 8.80112 3.68622 8.26909 3.15419 8.26909 2.49069 c 8.26909 1.82718 8.80112 1.29515 9.46463 1.29515 c 10.12813 1.29515 10.66016 1.82718 10.66016 2.49069 c h 9.46463 2.49069 m S 1 J 4.00005 0.0 m 5.08101 0.0 6.00006 0.9 6.00006 2.00002 c 6.00006 3.10002 5.10005 4.00005 4.00005 4.00005 c 2.90001 4.00005 2.00002 3.10002 2.00002 2.00002 c 3.20003 2.60002 m 2.00002 1.60002 l 0.8 2.60002 l 16.0002 0.0 m 14.90016 0.0 14.00017 0.9 14.00017 2.00002 c 14.00017 3.10002 14.90016 4.00005 16.0002 4.00005 c 17.1002 4.00005 18.00021 3.10002 18.00021 2.00002 c 19.20023 2.60002 m 18.00021 1.60002 l 16.8002 2.60002 l S qpdf: content Q Q qpdf: content Q n qpdf: content Q Q qpdf: content n Qlڳapdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoBack >> /Border[0 0 0]/C [1 0 0] >>pdf:eann_pdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /Find >> /Border[0 0 0]/C [1 0 0] >>pdf:eanndpdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoForward >> /Border[0 0 0]/C [1 0 0] >>pdf:eannڳ color pop color pop color pop color popcolor push gray 0color push gray 0 color pop color pop3J5 color pop %.ɠwcolor push gray 0color push rgb 0.2 0.2 0.7color push rgb 0.2 0.2 0.71J1relateḋtoaolsO color pop color pop color pop=<color push gray 0color push gray 0color push rgb 0.2 0.2 0.7I color pop_ color pop schrosotcolor push gray 0color push rgb 0.2 0.2 0.7I color pop_ color pop piupaqrtscolor push gray 0color push rgb 0.2 0.2 0.7I color pop_ color pop autopkgtest\q color pop.color push gray 0color push gray 0color push gray 0 color pop color pop29pdf:dest (Navigation32) [@thispage /XYZ @xpos @ypos null]4pdf:dest (page.32) [@thispage /XYZ @xpos @ypos null]3J5 color pop!ՠkw.color push gray 0%color push gray 0color push gray 0color push gray 1%l2 color pop color pop color popcolor push gray 0color push gray 0 color pop color popcolor push gray 0% color popcolor push gray 0color push gray 0 color pop color popOcolor push gray 0O% color popOcolor push gray 0color push gray 0XScolor push rgb 0.15 0.15 0.525EPSfile="openlogo-light.eps" llx=272 lly=333 urx=361 ury=443 rwi=2267 > color pop |Lcolor push gray 0color push rgb 0.68 0.68 0.88%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q q6pdf: content Q 8.26909 0.79701 3.38733 2.39105 re S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l f 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n Qkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation32) >> >> pdf:eanncpdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoToPage >> /Border[0 0 0]/C [1 0 0] >>pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation34) >> >> pdf:eannW%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 6.97394 0.0 3.38733 2.39105 re 7.80008 2.40001 m 7.80008 3.20003 l 11.20012 3.20003 l 11.20012 0.8 l 10.4001 0.8 l 8.6001 3.20003 m 8.6001 4.00005 l 12.00015 4.00005 l 12.00015 1.60002 l 11.20012 1.60002 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n QWkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation32) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation33) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation33) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation34) >> >> pdf:eann+%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qBpdf: content Q 0.59776 w 9.00009 3.00003 m 12.00015 3.00003 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 2.00002 m 12.00015 2.00002 l 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n Q+jpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannAP%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 3.00003 m 12.00015 3.00003 l 9.00009 2.00002 m 12.00015 2.00002 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f 0.59776 w 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n QAPjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannW\%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 3.00003 m 12.00015 3.00003 l 9.00009 2.00002 m 12.00015 2.00002 l 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q qpdf: content Q n qpdf: content Q Q qpdf: content n QW\jpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannlڳ%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 10.4001 1.60002 m 12.00015 0.0 l S 0.3985 w 10.66016 2.49069 m 10.66016 3.15419 10.12813 3.68622 9.46463 3.68622 c 8.80112 3.68622 8.26909 3.15419 8.26909 2.49069 c 8.26909 1.82718 8.80112 1.29515 9.46463 1.29515 c 10.12813 1.29515 10.66016 1.82718 10.66016 2.49069 c h 9.46463 2.49069 m S 1 J 4.00005 0.0 m 5.08101 0.0 6.00006 0.9 6.00006 2.00002 c 6.00006 3.10002 5.10005 4.00005 4.00005 4.00005 c 2.90001 4.00005 2.00002 3.10002 2.00002 2.00002 c 3.20003 2.60002 m 2.00002 1.60002 l 0.8 2.60002 l 16.0002 0.0 m 14.90016 0.0 14.00017 0.9 14.00017 2.00002 c 14.00017 3.10002 14.90016 4.00005 16.0002 4.00005 c 17.1002 4.00005 18.00021 3.10002 18.00021 2.00002 c 19.20023 2.60002 m 18.00021 1.60002 l 16.8002 2.60002 l S qpdf: content Q Q qpdf: content Q n qpdf: content Q Q qpdf: content n Qlڳapdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoBack >> /Border[0 0 0]/C [1 0 0] >>pdf:eann_pdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /Find >> /Border[0 0 0]/C [1 0 0] >>pdf:eanndpdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoForward >> /Border[0 0 0]/C [1 0 0] >>pdf:eannڳ color pop color pop color pop color popcolor push gray 0color push gray 0 color pop color pop3J5 color pop %.ɠwcolor push gray 0color push rgb 0.2 0.2 0.7color push rgb 0.2 0.2 0.71J1thankṡtoO color pop color pop color pop,color push gray 0color push gray 0color push rgb 0.2 0.2 0.7I color pop_ color pop LoscjMiniercolor push gray 0color push rgb 0.2 0.2 0.7I color pop_ color pop MattiajDongilicolor push gray 0color push rgb 0.2 0.2 0.7I color pop_ color pop MattjKraaicolor push gray 0color push rgb 0.2 0.2 0.7I color pop_ color pop ...8othersjasinAqUTHORS/THANKS  le. color pop.color push gray 0color push gray 0color push gray 0 color pop color pop29pdf:dest (Navigation33) [@thispage /XYZ @xpos @ypos null]4pdf:dest (page.33) [@thispage /XYZ @xpos @ypos null]3J5 color pop"*gkw.color push gray 0%color push gray 0color push gray 0color push gray 1%l2 color pop color pop color popcolor push gray 0color push gray 0 color pop color popcolor push gray 0% color popcolor push gray 0color push gray 0 color pop color popOcolor push gray 0O% color popOcolor push gray 0color push gray 0XScolor push rgb 0.15 0.15 0.525EPSfile="openlogo-light.eps" llx=272 lly=333 urx=361 ury=443 rwi=2267 > color pop |Lcolor push gray 0color push rgb 0.68 0.68 0.88%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q q6pdf: content Q 8.26909 0.79701 3.38733 2.39105 re S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l f 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n Qkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation33) >> >> pdf:eanncpdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoToPage >> /Border[0 0 0]/C [1 0 0] >>pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannW%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 6.97394 0.0 3.38733 2.39105 re 7.80008 2.40001 m 7.80008 3.20003 l 11.20012 3.20003 l 11.20012 0.8 l 10.4001 0.8 l 8.6001 3.20003 m 8.6001 4.00005 l 12.00015 4.00005 l 12.00015 1.60002 l 11.20012 1.60002 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n QWkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation33) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation34) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation34) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eann+%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qBpdf: content Q 0.59776 w 9.00009 3.00003 m 12.00015 3.00003 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 2.00002 m 12.00015 2.00002 l 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n Q+jpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannAP%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 3.00003 m 12.00015 3.00003 l 9.00009 2.00002 m 12.00015 2.00002 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f 0.59776 w 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n QAPjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannW\%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 3.00003 m 12.00015 3.00003 l 9.00009 2.00002 m 12.00015 2.00002 l 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q qpdf: content Q n qpdf: content Q Q qpdf: content n QW\jpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannlڳ%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 10.4001 1.60002 m 12.00015 0.0 l S 0.3985 w 10.66016 2.49069 m 10.66016 3.15419 10.12813 3.68622 9.46463 3.68622 c 8.80112 3.68622 8.26909 3.15419 8.26909 2.49069 c 8.26909 1.82718 8.80112 1.29515 9.46463 1.29515 c 10.12813 1.29515 10.66016 1.82718 10.66016 2.49069 c h 9.46463 2.49069 m S 1 J 4.00005 0.0 m 5.08101 0.0 6.00006 0.9 6.00006 2.00002 c 6.00006 3.10002 5.10005 4.00005 4.00005 4.00005 c 2.90001 4.00005 2.00002 3.10002 2.00002 2.00002 c 3.20003 2.60002 m 2.00002 1.60002 l 0.8 2.60002 l 16.0002 0.0 m 14.90016 0.0 14.00017 0.9 14.00017 2.00002 c 14.00017 3.10002 14.90016 4.00005 16.0002 4.00005 c 17.1002 4.00005 18.00021 3.10002 18.00021 2.00002 c 19.20023 2.60002 m 18.00021 1.60002 l 16.8002 2.60002 l S qpdf: content Q Q qpdf: content Q n qpdf: content Q Q qpdf: content n Qlڳapdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoBack >> /Border[0 0 0]/C [1 0 0] >>pdf:eann_pdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /Find >> /Border[0 0 0]/C [1 0 0] >>pdf:eanndpdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoForward >> /Border[0 0 0]/C [1 0 0] >>pdf:eannڳ color pop color pop color pop color popcolor push gray 0color push gray 0 color pop color pop3J5 color pop %.ɠwcolor push gray 0color push rgb 0.2 0.2 0.7color push rgb 0.2 0.2 0.71J1ReferencesO color pop color pop color pop 5color push gray 0color push gray 0color push rgb 0.2 0.2 0.7I color pop_ color pop Infoqrmation: pdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [0 1 1] /A << /S /URI /URI (/usr/share/doc/pbuilder/pbuilder-doc.pdf) >> >>/usr/share/doc/pbuilder/ pbuilder-doc.pdfpdf:eann,j~pdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [0 1 1] /A << /S /URI /URI (http://pbuilder.alioth.debian.org/) >> >>http: //pbuilder.alioth.debian.org/pdf:eanncolor push gray 0color push rgb 0.2 0.2 0.7I color pop_ color pop aliothjpqroject: pdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [0 1 1] /A << /S /URI /URI (http://alioth.debian.org/projects/pbuilder) >> >>/ color pop |Lcolor push gray 0color push rgb 0.68 0.68 0.88%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q q6pdf: content Q 8.26909 0.79701 3.38733 2.39105 re S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l f 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n Qkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation34) >> >> pdf:eanncpdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoToPage >> /Border[0 0 0]/C [1 0 0] >>pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannW%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 6.97394 0.0 3.38733 2.39105 re 7.80008 2.40001 m 7.80008 3.20003 l 11.20012 3.20003 l 11.20012 0.8 l 10.4001 0.8 l 8.6001 3.20003 m 8.6001 4.00005 l 12.00015 4.00005 l 12.00015 1.60002 l 11.20012 1.60002 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n QWkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation34) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eann+%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qBpdf: content Q 0.59776 w 9.00009 3.00003 m 12.00015 3.00003 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 2.00002 m 12.00015 2.00002 l 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n Q+jpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannAP%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 3.00003 m 12.00015 3.00003 l 9.00009 2.00002 m 12.00015 2.00002 l S qpdf: content Q Q qcolor push rgb 0.84 0.84 0.94pdf: content Q q qpdf: content Q 4.00005 0.49998 m 2.00002 2.00002 l 4.00005 3.50003 l 16.0002 0.49998 m 18.00021 2.00002 l 16.0002 3.50003 l f 0.59776 w 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q q color poppdf: content Q n qpdf: content Q Q qpdf: content n QAPjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannjpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannW\%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 8.00009 4.00005 m 11.00012 4.00005 l 9.00009 3.00003 m 12.00015 3.00003 l 9.00009 2.00002 m 12.00015 2.00002 l 8.00009 1.0 m 11.00012 1.0 l 9.00009 0.0 m 12.00015 0.0 l S qpdf: content Q Q qpdf: content Q n qpdf: content Q Q qpdf: content n QW\jpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation1) >> >> pdf:eannkpdf:bann << /Type /Annot /Subtype /Link /Border[0 0 0]/C [.5 .5 .5] /A << /S /GoTo /D (Navigation35) >> >> pdf:eannlڳ%pdf: content Q 1 0 0 1 2000 2000 cm q.'pdf: content Q 1 0 0 1 -2000 -2000 cm qpdf: content qpdf: content Q q q#pdf: content Q 0.68 0.68 0.88 RG q#pdf: content Q 0.68 0.68 0.88 rg qpdf: content Q 0.3985 w qpdf: content Q q qpdf: content Q 0.59776 w 10.4001 1.60002 m 12.00015 0.0 l S 0.3985 w 10.66016 2.49069 m 10.66016 3.15419 10.12813 3.68622 9.46463 3.68622 c 8.80112 3.68622 8.26909 3.15419 8.26909 2.49069 c 8.26909 1.82718 8.80112 1.29515 9.46463 1.29515 c 10.12813 1.29515 10.66016 1.82718 10.66016 2.49069 c h 9.46463 2.49069 m S 1 J 4.00005 0.0 m 5.08101 0.0 6.00006 0.9 6.00006 2.00002 c 6.00006 3.10002 5.10005 4.00005 4.00005 4.00005 c 2.90001 4.00005 2.00002 3.10002 2.00002 2.00002 c 3.20003 2.60002 m 2.00002 1.60002 l 0.8 2.60002 l 16.0002 0.0 m 14.90016 0.0 14.00017 0.9 14.00017 2.00002 c 14.00017 3.10002 14.90016 4.00005 16.0002 4.00005 c 17.1002 4.00005 18.00021 3.10002 18.00021 2.00002 c 19.20023 2.60002 m 18.00021 1.60002 l 16.8002 2.60002 l S qpdf: content Q Q qpdf: content Q n qpdf: content Q Q qpdf: content n Qlڳapdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoBack >> /Border[0 0 0]/C [1 0 0] >>pdf:eann_pdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /Find >> /Border[0 0 0]/C [1 0 0] >>pdf:eanndpdf:bann << /Type /Annot /Subtype /Link /A << /S /Named /N /GoForward >> /Border[0 0 0]/C [1 0 0] >>pdf:eannڳ color pop color pop color pop color popcolor push gray 0color push gray 0 color pop color pop3J5 color pop %nO.Questions?.color push gray 0color push gray 0color push gray 0 color pop color pop29pdf:dest (Navigation35) [@thispage /XYZ @xpos @ypos null]4pdf:dest (page.35) [@thispage /XYZ @xpos @ypos null]3J5 color popp;kx#/> endobj 5 0 obj << /Type/ExtGState /OPM 1 >> endobj 6 0 obj << /Length 2445 /Filter/FlateDecode /Type/XObject /Subtype/Form /FormType 1 /BBox[0 0 2384 3370] /Matrix[1 0 0 1 0 0] /Resources<< /ProcSet[/PDF] /ExtGState 4 0 R >> >> stream xeX[] U N"E-#4A;$RvuHJdHq.>~z\O?>?On|i_6֝'&.AP6LU-^IU?|p^u^7X IL%P|-юM7 ]HlxRWiYeϋ:Yx5IX#B7VC%:USty@I^fTIYs$X<]WH}nD Kp!CiW w<~" T*̗uu[q9 X_QB~/ t[88,S0YlؤPԬtf G?fWj*yT%d\&}~W:u]S8_ e˹ ז V*@\Yw.ȅ}Tp#ttDh 55pS~AIOB`yfzюfq7j%9 .c0M6.dJ#U .@%oo`R1vkPVr/J x2iqKuڃ#M$:@xN! FS P@]7j* zypCY%n6ngԅ;&siY[,+Lca.l"="~;2w 31ގ_OD;Ƴ]fZ9Xǥi2D`OaLlxJquh{Q xl;„Jq^ Fv^rD>e1Vk-?x)ml1M KD?*Ĺ.tj;= LL̙Tm-_0=b~ xFwN P4{6U3ܝ bl\?@l5ٌ#däKաŒ )ߑd}@ Q:B.@7Z]qf OA%;HJC 驵%fŌQN35DMKx !q?6؁JN4^0SO, 9]qwh9Ki:3f_ G2?߹p0ulvYfl`z3?~qȋC/._\[n_k#;IF.<7#*.zCZݱT,zj~\(Aqr)ݪ<2G"USDYx4A?;WJI쮿IBina6 _PeSM>\ endstream endobj 12 0 obj << /Filter[/FlateDecode] /Length 1173 >> stream xYKo8W .8mnC8Qbo)EJTA`7/|'@Qp(R?3GW+@!9Ղp#wd5ۮ*V PrjH\4u*1SyXHٖХ<1&=,( -DrTJHʕp+cq)@wC zp拾)`nPKUFW䕜+t#iA(DPBG*;QslZ%ffʶYN$fuI fgKc&vX뷠#hWl0In$z>pI~u\ަ@_;ќp1=p=R~4h&A#6tI KKQTDP~l\xJ%p84̑@~P ."y'zNXdmױ8d*E0,64eCr1!1p=ꓔRCfbI WF)MɎ֋CjHWg𛇴+>u޷bnz4s˾%2,6/Z'1w0C>wܲN.[0#d6U?'zFp8g]!ޜq%\Df #J$Nc,1b&">{h #>%S`K+xջ(qE&M<|3_ $vgkXޖ0̃ougwȦ.A%8\>a9 "O@.%PVb͊ ZOD=IufRs&K-U?r_L11heYkZ~}Bxyy,5}+{}ZVTCqȗ?z"qV={UIeɧǛss;z׮Q<7DnKEf ctspK^]L# ԀIeq.O) ^ endstream endobj 13 0 obj << /XObject<< /Fm0 6 0 R >> /Font<< /F1 7 0 R /F2 11 0 R /F3 11 0 R >> /ProcSet[/PDF /Text /ImageC /ImageB /ImageI] >> endobj 16 0 obj << /Filter[/FlateDecode] /Length 1410 >> stream xY[o6~߯c T,IImEbAK= {Pe%j%-_CRdX1Z1s%fQDE CLCm@zG #q *Ð3,Bfݣ娫o6bۏ8DJbpAjz j#H`F6]oUMq~alN$'EXbDeȈAEX w⿻v  Jo8("F_ХR>HpȄPP$! Q+DN4JDg!#,'fuဉHJ)z\:!a A Ʊ^m2Jmsvp)ψ6Tj8dsyj́t wQ渑^hMcR``[)@H$Ĭj\J#e>Dj&0' ,@_^UB6H#R<Xb2TYqTmH!Й1ᐡFswħ4!\92I8x7%t$]֊< |c6& 7ՈfZ]mXO`b5ы9sTmH! d.gQFav[Q[lzbnڳ:O&vBr8gF|wƹO lY4)q8"sIԸ%B ӄcm48SykSNlqIxZNQ*/f)O@0bn4wՙoҧ|0k]EMM:X%)Ƕ/scmN:ORFv(̣ˤ.F $171EQqOz㷺,?c#9PnZܓ=⨜&- Ru3Э}]WɂB#><bp[\uZ*43x{lLGzs~Y$Mٻ*O'mP[ endstream endobj 17 0 obj << /XObject<< /Fm0 6 0 R >> /Font<< /F1 7 0 R /F2 11 0 R /F4 15 0 R /F3 11 0 R >> /ProcSet[/PDF /Text /ImageC /ImageB /ImageI] >> endobj 19 0 obj << /Filter[/FlateDecode] /Length 1150 >> stream xYK6WrHS"47w}+zhډXw2)٤Dk$Xi5IYπ f$BpPpD<;c5gҒ[Ť4{z`خhꇍ)kvCo]kf۲ƶK _{^lNs!H:5eKC^21|Dž?; l#{_曩%`iVW([ wvб g0ŕ5  訣 JڡX.$bYu 9g5 Id %X`K` JSxi6x[R:ydmk^Zsrk&{Z)rkÂfZ6t͝QFp[iQXA<.}aj4r-< Ov)-5)ױHױ8d)M1tmICP\@%\g8d"{R'9"9wM)ν62MYդ&7̞7,? j#] F': >BтZmc i 6x[RJHCrv2,35/ŝlS"&9 YԆ]U|=VW9u0D1`#IDCcw'wVjώ A0_n{C`j^q<ubzpl wC< IxlZr OYx":)!Q/ 8JNZ0M1{XӍ, Tyh OB7 l!n4>ֱx𔘨~ Ic!5ۄe 7aY]籇eM k @q;?8&j endstream endobj 20 0 obj << /XObject<< /Fm0 6 0 R >> /Font<< /F1 7 0 R /F2 11 0 R /F4 15 0 R /F3 11 0 R >> /ProcSet[/PDF /Text /ImageC /ImageB /ImageI] >> endobj 22 0 obj << /Filter[/FlateDecode] /Length 1066 >> stream xYM8$uىcHzo=Abzߧt9c'BzTt ;2`%BpPlx@85kN@%7^{vESlѥS7G.Kp!w-fOm.)`?W8[% ]1g$\,@sٻwa /(>«=ۿo}ƟگtxIXZw+-]\Rt;VXG { `++l(tsunT w_^n ,J|) endstream endobj 23 0 obj << /XObject<< /Fm0 6 0 R >> /Font<< /F1 7 0 R /F5 11 0 R >> /ProcSet[/PDF /Text /ImageC /ImageB /ImageI] >> endobj 25 0 obj << /Filter[/FlateDecode] /Length 1047 >> stream xYM,Wp=2`c8R[zzXJݬԿg04j ⦓1.Zmc i 6x)E![rv2w,lS"&)YԆ]UY>Yw+㜺s l&Dj,Z8/DE&"{\h 2SA H>lD^5J+Y@cvOsRd\ ǕP*7Ah$h C&hzM_Z m2 ;X٭n4j?J$LМ AL/H͇) @F);'kώ A0\=w!H05/8A\b\-pD™ w֦3 wH"Cd:_}>a29 "')`2>ӝ$Eq{1e%Y-'bX(ϝ6 ~Fꛧnel1w endstream endobj 26 0 obj << /XObject<< /Fm0 6 0 R >> /Font<< /F1 7 0 R /F5 11 0 R >> /ProcSet[/PDF /Text /ImageC /ImageB /ImageI] >> endobj 28 0 obj << /R7 29 0 R >> endobj 29 0 obj << /Type/ExtGState /OPM 1 >> endobj 30 0 obj << /Length 13174 /Filter/FlateDecode /Type/XObject /Subtype/Form /FormType 1 /BBox[0 0 2384 3370] /Matrix[1 0 0 1 0 0] /Resources<< /ProcSet[/PDF] /ExtGState 28 0 R >> >> stream x}IdnݼV+HoV౤%TX G7,>쏿ʔnfH~LiI9=[\zbʃ-U<{5kc9d2-iSF'}Eyga =d d `|6 k=G*{cJ,2VS!st?sY&iaʗeh-|9ÚyKYzanRc[lj Z>K_Bujq؛#fL|*)sPІI=YJ泖L@EƸyzv~{vEʃ^e9d*kr[f *B7v}涤ܟCp[o!k_dPd(2X"'f-ٷB=y˺ZJZ)!tj!ke6ݦ7O|8c%xBpH}`"ӷ jV[vzȨvյ-"%2}e f%R.3Ȳ3(+D{WZ %LvC: =le)Q2|eZZj)`Zm@}bp'F($[{Ϧvz6,Li+}AYwM:`upvfe=uvVo xY2>"Fⱏ!xdԽ(1nuL>WY vM쿼Vt/tfj2]vl+ ,;Li{t/E~"8S @ fW#zr|*_B dYfCK(_vqMB+*p=N\bt|+3v [V}s8XOmP~tmrf|'9VI;? @ЁCN*IKP*CC͞)ŦL)Ǯg!uKl*-ʫƼ?ʒV“$m {\T?>noLs q[jro}cȅUC}Y16:j/|OB.Z {, C墖*t"{jFR_tO_j(_v FXsF=6Pk (5l xYyIpld"f "SObq{9 L2%j\rjUdsHoa/dQbp)4XcBm\6$0(BfU6VLzϸڵ&@m#ʝ:]O*OnSB#cJRSEaW@ lDfmOXzF-fY*"ĉ/1Zч(m჌b7Jnh %Ӆl=R dsv3hX[pR>> m6.QTs` XD ^qT;Tz"DzfNP/ @`Ll ~SOSp p>r9>!݊K!_?):S% hpե,l;@96!OK B2K~RkVJJ)_([[aO=YP/ % =×rCN\exV8 q/KD]֦(i.Ü"$ I"F}&yl[Yg#LȫI E= c Q)IN szwR\lWl? %̑@DbJ{o8My2w]i}8Ą/u_c>'!<8sD F\TK ٜLq-{5~c֒x<MMzܛ e?e %W::EShm6@ѧIAF[ |HEң  8JʫEI,uvT}턈!gP`# @ѸE yP H|4F))o]"++!90SeԐ٣e$f>jԳZC7<0q4l$V[;aˏkу1yQŁ 8`cbTD{"5>ܦM3#JJ/O8YF][f4| eָO8{@c|A4WӂǘM9~oҁ@s@I+]dIC¡K <.Rp'+=cR5 jD9En2ʛT!7DžRyCWp.rH6Uz}8i;@c6HQ΃ZCI%:R:+T Q0џ,esPO_uDYU`{;D?1DF;mXYYAwgY1tj:uBdRs&m݈'M89Yu4;`(Aq_3C L#,CUBӼTx{+ SH%E8|o d S&?PǑܾPOb.%s͛xC:W?ߥ; vHIOa$q9ԦAtzna.q=gz Tj U eқYtrS=qvi,Ky> pBJ?!NS ĈXDS QiD!YɇhAۺi&ztUEY(D"HIB 3(8 &)xN|0Ay x,}GY8Z}dEk. xe9E{jVj'/c7pKw0"ݼymwAckĻ)~fq!1FY{:m?N  @(~A6 q,w"X wtfabUPy/@f7KqDoAܾ 7>!w-ha-䴼Wk}Bbp+_A[QXX* E)_"?C`.D92NCCql/rgX[o1lF iTS.&dIvgBdm'e,8hxY NhHuĴAmoqaQ*2@;#⋩Aɉd0K M4`4[*JIDj8N8 WOf+J2w Rb OMF9ab?[ %]GZV)/ ii:`SgQrl1JiL/|.0KCb" qlbN?!6ؙâ<@, [Y4vb+-gǺa'!V܀KS)tx[EWt+Bu5cZb yrjjڲ[=qXq:@Zle|l=d}'\yǶCۢO 'Ѣ[9V"~E^ b1< w B?{e%}r,px[qKa^zz ݊{Zc@#05#r"zC[C[bײKemŝ$řki״CBZ>' 4(yT #p}+5 يJ/m0K`rBa3|͈JYeKPN`LU#a-5Eo ;%|I^䙲"y17m NY8u8 U=%1W>IY%Χ).giݪ]ly`ݻpy#0q3 Q q y:3WHxpkGi<_LUr|!nj D{>UEmn5U@h#DSK,R!=mZL;6dmڟv=aaT W7*Or" :ȆCbF.t(μ<.؜_4@̕($%$Fqcu+i\>R}Uyuo|{%3yvX_S +}lK1yr0sE(auSk8&߰xZAza/Γ !ڡѹ,^Jke˯h/įk vM9ZF}}ğ|NYSޱ8shFotpB >ȷЈ;πή^˜?DԖ?J|-U1޸> mTSY`hQghނ140434q49Z!9DS7N==|B{]^JHHM khFR BiKjLT86vl WI{9!& S.Ζjfq@4 M >ln% ծ'X{3r#e],̵J({e}{͠'.X"}Iqj{p` Vp1-ҫXhߵ>!^ cϝ'b: {/ ݾAbVpqq)rZ%  W|.d#B .1#t u*.4"Ҩ #5F-NDF?­=1GRb1У{ B^ ϸL7e¤nufv ,DY+w-ઓ_ݳvF~\f?>nW!W_ / UPFErs] ,fu >WuA՛E t(DY1N 8'.A831:w$8p, % '7NFw8]`M0Ph qa0ϼ`uNTru%o00f6^~0QZ-}MGẐT%G#T)72Du#Ձ2!NY a;/4~8&{܀fKӈxlƂ1αpUEm`U\Zm/K-Lb rΗ:E#3(~>pR<O#_ݸ̙z󦜾 | ؑ4TC8ͅR~|ʼnxv:b9] ,WB }v gz*/xXJSWA 5UJŀn͑] uW66^\Y^Є<_|Ehyi߀ZDPjMf>iC4SʼEY,/ REp}ye$d~y!>w  ~ǵz >A/#APEr}@7ݚ,X"[CgrD B+_h &TSlE]+3EﰢQv>)e2C:fDo"KָAw]8ZAQgm&sKIPW0QKYTP'Dr;?1wZB@sDa3ҧ"k^AY.r/j~wę} k:!mJ-"MBpD-X*0EӉj5D+4U Bb l!k&2r#ºYS]Qta M8VPj:3aJ. W;(ḫI R}E ?'3 H 9̢tW{^h0s13q TW>WO}Wc r~m$;4G=9ap,|ʕY M5KpiV`j A>`^!SӴ-MfadSõ!]# 5pUm.I}fdQl rI5%L31 ܛ6fkb+$PմpJ#6=]_E¨r2$qvJxGY*."2n`P烚?*1 RW=k^Oе襪½\r9 3G72be^A0EAF4/tp"q+Nʝ\D鹛)9A . z鍚x{=]v޿ٔLJ^>CL2ӱo2:b_p6J}Abіx딫D;Xn!jkvOfI2O3qk=ef}l OV2==۫|w{}(oqFieaU4Pwyj :G $^ + E40BD F#fo| ˃A+JHWsk2)9rTѱ”ACY+6bs2%Rlvj9iM&ƴU l9PXOP!C̦4;V&ڊBɐ٩ ą"9)3JB5銯= "i~|L%q}$KWǯɑ9yOU CQwOH¨]HŠ{ ׈" ,#!-Zۆ 7 9-A~ \F/p1BdA pmsDuxQm4zokz/̫/CAȨ1 LԼJ-λ0f('ܿ9&@+73q|ìZtl BԾBd%=ҝ8Lv4T0A'Kƒs~2A!|Rs 79/zP-yY|adzZe4 p$vSK I.$m|= G0ºYe}3gRXGoz22&yw7;=k.(W@Z0#=_j+BWIeu2,`АlR5K-UT\a'tCIg9kTװםD>D S >YU:it^Fw$Ĵ~F`Z[PTϯb01G-uԧ|0h郯T7>6ȠTrVįrkEX\aj0 ;oy{{7F"v |cI#-`r~\aD F LokڵJg^0,f+GPBNx Xz 81 sB&25q%b.;e7Pɗ*.Su^t=[Z ⭱N0Tɰ 3E Mę|^$#4L{zvng-~R IZ+h6W?q"bәo)s41>\FoSL <h</ڂ乙nAV_;^%Aś@ ch*:4Vܿc%Vx>(\Ìt<3ѲFEUݳZ \O@rn3mqh 碌}.ZOMI{VWOފQ@ev2 %5-3-Yp'Tj~ [~=qCu\n ttce/ ]+GĬmfEm7Vqxkb#(x"^8TY,+tmlWnPm<9rn AQ\8d4Xz %.A@~ĵ;T.x+wo\F(HO.S.!$ b] 6C C\0g_ su'q"} \~/"&$0m"7<v4~y8x 4uш!z9n189x ~87%|~w-sь/ тH0R(_'\997x6h_Yq7u>!w%8]Dx :U1aX@"H@_kxB~wԭP=thVw?  ) Y&X;٫ox7BcOZִcx#Foe^_тHcp_'hD2djpT֕㱰cn|̂}VeMޜR"wsvDSYilf]k6º'fn'^Ӣܚ.9es"wBluaaFV]-R ښ[ NF>6z[> \Qez% ?}A?aUoJC?nK][|*~QUxZ*/p*V,+GܖN endstream endobj 32 0 obj << /Filter[/FlateDecode] /Length 1167 >> stream xYMo6W>!%m䶵lŎĻmP")QR /yA;;+gŅw / M7|$Tn cX+ޖ07C+3 :$!G;)%h7jO΂>`oO j%"?o RVrUЂa"݌ÚT(d@#}ܪ_4|15p񱎕ط9/_o Ҏм7ǯ3"(*V*/ix>ܸ{xx{z5E9?p endstream endobj 33 0 obj << /XObject<< /Fm0 6 0 R /Fm1 30 0 R >> /Font<< /F1 7 0 R /F2 11 0 R /F6 31 0 R >> /ProcSet[/PDF /Text /ImageC /ImageB /ImageI] >> endobj 35 0 obj << /R7 36 0 R >> endobj 36 0 obj << /Type/ExtGState /OPM 1 >> endobj 37 0 obj << /Length 15298 /Filter/FlateDecode /Type/XObject /Subtype/Form /FormType 1 /BBox[0 0 2384 3370] /Matrix[1 0 0 1 0 0] /Resources<< /ProcSet[/PDF] /ExtGState 35 0 R >> >> stream x}=e1o]>A\cKKdWuo_8$' |FN?ǿ?O_rϟ>{߁X~|b~~ࣹ &}R?r_ Վz#}&sOȆke+>g~Lmؾg[Ĭ3VV?XnZ'Z|]L1PW,#6e~~p:?Ϟ{;b dUgϟňZ 9Jn5ƅR6NZmôϚG֝Eir ,͡Nh,/SJJgysٴ-_ƪ5Ljam(X՗0lF\ha϶ɟ Po$ D)島ac54!l*5 41eڰkJ95cs'cƻ@04p_طE3ۖ-8>JN#kbmI֔ZY3H'iTv)ٴu "*0"w«"F2")< ˾{!Yj`Abk7TKJ NHX%&6Ȗli"sE۶ <%'E`C'NqȪV aX5X."f y3i ?WҮ}8:VM(kr&Iyuu3j傍ϔ`J*&AA=.Z0j~1*"ߒXV20m` ;(6'Jtf pQ + K0ϛt3igĤ:%l OL(Iv$X3[~bC`D$C l3 kڐfZoTDBiݦ {1{%f+ 0ycЦbgg,FuS+ɹ kXDd郔ۜ5a^DHW#yy(ROvó/^eS!F m%@xcz ~)E+2nA\3m0Mp|Q7SuKm+ܴ%>lK{Z7XulP͸tֿH ƽ6`I\1!M/5XuXڅy0Vfa .:G4{ EШP`*Q띘_T[nbdWcRGR/, -F ѱgv r6N EX>%CV mDpn4cJ,P7 (%l@SZ(mB.;Wi֨*91lb?=S͂d_q fwISb`2r3ؔƣ0:>iVS% 5jZ-XC[[i2KblE(抑Sܘ6*ɕ244ڞ$݄vk@ʙR98e8E:]=L?X 9؆>h՘q@׵!M9p94%&G#ZsPX3DŌE7OInfIz tm Q%4P60`0A`዇Fb-U ̱|V1M阳[(y F1g FŤU.Lr^3[.ڸ^3$=6lFJz)ԺA}wJma<4p0{.mcR|` [)vLaP`3l?y|A]b.]H6Fp?5.)qj ]ml+>NMuA0FAUɤ7Cwwi܁3CV6+GYh0{-1-  ]50: kk.`;]º %:nVa$|5`` L5a5@_Md:a;qF!qzMBaIZoJ|,(IËL܁O b_7?11MEiifXuaO*0j9zt0&׽d4s5|_#i_1U{:ل~Ifʵ })ii˖bcPk^ =Y᎙\gJ{|C-2l~)BY%Lp0p:i0ب`P~#@Q4NE5ĎCB¤_mOÓr9g@ P˪&p`:ŕ/ g Aw.mr.!%LxFg tW#`#*ʳb=£X_S`/ eDMMnSܚ>t0m<بp$cl&~eXu)—FMP+s ~1&g /t1@Ti峊yo2U aZKl{ WjYܫ^Kur{q St} 21ӻ` E2I6hBlbF`20'La-ꣽ.WD djZ{Pqi@8ը`)8B+i{v=yO~ѷŰF-5(xBQ`*Ѷ8p(qbBif%OLfm cٌ^964*b`PeC7U:O%26煇|Z"=#5sӵp/_ĄFBS9Og5ƲW8&(*+ ^8d(z/OZW`uY؄|Ois0.m|JEua88FۜKIU!KOda,N 5Y}l_9<f6M,jfpm!?j& ̮K<.:fI)٦Q%MB9$S&%8][ TzaIWj<]¥n@&q8C5ϢIap\5 JW ScI6^ī,qnĬfӾHAl]IfI-LNq)*&6uS$5Mp)f.qGԅqG iSNsiQ9 tCt@#ȕ]O #4y)ǯ Ѯ1b D #}J 4ybpnY91WB\ݬ_?;"w/@#0&>ւPе\ɛ j&Pŏ~qGqt`W-Gs°&ȃ4pV&y)neKej' 'fjw4 ;aCa 22=Sn)ɑwփѓԈ:҂*:L@Ĩ%.JrX viXиKӰdlMh"6OLP| i4ӹ%A3Ckdxɦ٤.&·.«2Wh]>$[մ.ҕ?NljN' zZ*{#W熾WQp0c{?Cژ&®t~@<8qQԮd  l:z6ogÚ-q3:MOA,3|mLT YUu#%O>B@nkzw7f-YaX'`?ācQʼ`1sאJцIaǨq{y`9 ǩAăweڢ"U'mȋbKߗ 5lR6617Qe@Ea" 1.WSr1FX@MsJd7ȏSm[zpU>"4˺yNv#ᑗ; !˃.r,!rb0TBP j#:P_50pPC aeFxןޖBY5m1E'¨Jc9b.ٮv:<==^%)0q1fLt38[itæ+Fc |[?#A{`ÛJaߦaK%Hxf_tvS#1 ΍U&F8W}a [`!u'ru"'Jh v-#:BIPK vx%0@sAA01u.JG|E`+ h0hLW٧`-usNtkG}u#:Y'ÂGtnVԀnE:}:=}BD*y=qi%#/z\kk=`ĵLx;#v=?1;h%=]yǶrh]vl5X rc]%A6)m@!8c[;b<ۺw?}xm9ČǭvTO`&l1 l=v K|c6f3]9t5t:(?R3-rx7RJ6VQL[46z8QCx[G7z2mK=(pei+Ma?[oY9hs-Jײ$|FJ4`?@4?|d|$um~͗6gynu&f;`gG%x hga H`_$2h2`W}p -y$!2q}0[ ,0Hm}0shJdS(*>,¸ v / i=0efUTDjDIo&tEF%2U;8mip0t4<*Z}1Y6,8v 1Yw9 hH\VN3 /a^3bI=#, Zl.@c3ڃ mB̔]%&f8YcL͊eY7L3/t`.QMfw]3=s Δm\6aCn96*#8@W,vhrIYwLVN0c\dՖHTB)p@2إ-hGo# +RAoq3a1ZmeHc5 zx,uua^a͐ilU}0O31?1;f &ı[X7K=1^=r2+ =s=ϴcZo (VPI5Lrٶ?4Ni;y<3khJm!N{QFfJVY1XAkߔf %{HMwJc77.cn̹.~д;m "ٽhͻPb[:fSkR&އMyuж0'06v4߫ 0ZfJt1 _%On>x'Js;أ MqhF/1ÞipBDAD2:|5]L<#lRBCaKAr Ǭ?%\eQlpy$r4-#6%[-8-z-z-ƱE.pѶiEۦD[%őlBN`_ܹ /fg?0<zDf30wIic^TFA[ z8"z8`i^9<h-6d/ eu0{Ih7&'f;2 S>/3x'"<3 82,y 3 /Vg>#ܘ,r V]~B_$u+ M#~Cű^䘋O01SOgW[|^+-h6Tsu؆D{h^O5j7 . cGc]|t̓Н| ti#Ծ.ag`ġ+e@j`Kݾt+:zKĄWv(q-nC`e\#*OdWzKxq%0uj9륍uwpqCEkvn-?-ǸK8 v N yw1)vL`RJ:w}`wz71+cȁ1? Df&xwp0?-<[J}ex zn]pyeN}p2J])u9e''E ^KT$:mni2t)Zd92˟~9f 4p?Zjw̰4w0}10=6mq ÔSBkmL\p3$54;f,s<H>"s w!{pfLH#ױ ÏxcfxRɗkm`Ti2X҆dQFT8 Z18)a]*ʲ' p?quJJ82-qՊ߯ZjecvN8aq_ 30KGjbky2s]/DK'뺀xoM mv99Sa|CヘCðT >!ӔGemal fb-W \tY$NmJtN *Ϭ%dxO0g`xMeF!L*,Sg,_u! FySr7Ȋy鳌" , C cфSN/4<}b0 L(7x1鉩IIg ~HHgP{L tA``a0f5rrqc2c)W 7~O25LςOӄFD,c'=n<ѵ ȋ6l3#Y<O̿-SCTzcڣ(teq) S'7@<#d 򔙆{Ux˰qxl_8Fݬ!ɵhUWU"  %nyuҼV o }8"0(hA!O5*-jRPcΧ%!@v) !TUb pƩMP$Tl"3xuM;}S1?PRkD}N߱|H"c!(}H0c1}KšǤ!s6J`t%ND"p$6 p6w(Ѕ5ĕ(8|:ZiGpms#:9§DCR^CW3N)\ 9 D70 0Sgʜkd.ӕ-dK[\RpS6:\LNe25Kyقp[ z`D/u +tI4'9J⮂N0vļK)u_m짗HJe`^C e4]Ҫ[::jeU/#Kl/IύyoQXp%~Kp]i'c[K11jhWfw FTu{k]n#ĩ3uRc؏ v:~(56QہW==l͢a~pmYtʲڃC3e<`,} )u0h~p!/Bθ du{݆KنpeDv҅i]pWGs-r/oKW?1ϗ٩,TvxfK!ݗX3o]B4_(.Qڨ0^/ݔ'3t}a^bny0EMMp1`: YP&^}-a.^\]Qvܙ` Ϸ# Zq_rj/}aY»k;Ѧ>]l{YpF{+e /5R9OeN4 ~̒q qK7 ֹgHQ d0d$I.Ί̃(= ܘ3]s9m BnHdkG0aFʀo:>Oa7B_ f!jm>o}cf7r~ռs06'&&bɿ< `L>B4ip_ik kM~}#L`˴q{p(/t(WrΔ.ƹdz>}⬲ qTb$&QbYs\BISҡ{dC6Fنڱ)d16zMCD<]+]fzŵRow LM-(]eYi])827 g!+~bHyDK؍Y92o՛50X(~GR.eo< _]F%|tff6῵L'x"JV .?N.0'\ sZMfnARj"QӢwhcc4{u>E;xtOLholӝA[3ǬT$EwA&+/܃w͈o2#o1:cى["ENB)<=qW`A*QqʍG up?C7~. *Pw RqwA 6 M#uPQ]Sƕ)!ZnWxޘq9eE]T8zI*-hPo6f0&.$~ŲQ.EWwm%Rk%x)rh\@k)":bc҅{`t=a=UNݒMq-m=z"$׷XM32|`rww0F{|r.pjq= ɞ0{t_"ezB$z釾#m,`pYȎ)duѢz9n|_Zp1t>݇>̌HAai>ya\ʇ#aM+G1XE!~"]Ϸ2ޤw3%ֺ^j4 "#4q*Z[(ݤQ!YO֘%#GCsׯAP @(W^Ex\ͼeDU/IhM]1Q6rߜRmp6I#2g~xI>oY}hW>iNZΊv\K OꙚׁy8?WGG A3]~ ugG13+\<W'>>,qFZ-&1]Gcy/X5{tGjavTƙ=?Ku`#t4߈|9:6.iK;xqW_0,E +ŚM9h|&덹ɇ2 ~H$/ZW.jh =#?kHdQWƽ]$3@ +_8}'A Tw\#s0A¼#k0+B8xCNQ561]J2qi[݌ FLvcR/G̼M恽% 9] :;Y8CU@\[7)w E(~ȩ9/dvpyȼs7fg$ӏ\$~l1aFN k&)siIrh_˕ 4Dֳ#'p/7N9|ޙ'ܔ]6vv^z#%ʷis65i=|fgWxbD1wi 3!_/1gjxR,{oD/5xnc'^x'Yq4=])kpZ]m85w/7~b+?Εp!aȭxlW?1/_ sjnU׌__E&b\Cu;/O'S?rV  nQLx+Q795$Q{=89y^ᨷ /b/V%îgJ8%v N E?zʏkP}uz:˵w/掜" .@iNo@]?Oc>ɭ|*ađYFcPĎ)agz(7 |"ݫ+B/chHu&i2 XT~}Ix_TY*-nLKKtmw.ƶEy DdK򵳓L֮lKf\~|MĆ{'+ 45j@Syi_H!} n'F mEdF/#2q23cDv R&чwN6"vqD/!Yʅ4f>v|5$B+W Q֟x)ӈ s<'ro'{G mtԻ?81])N{P֑.?WVy'u5O=a7̾ccv҈1 \#UAvT}SvUcT=vpݎק1/1>chlC'\s;ZI/H3S!EsT{X%ŹƧE7c\7cF~5_>+a0"~5F-\rA\~bz501*B^1Z\şcج~1Т3==% kTlh^-t\&h|y-.i#57j`BF !#!ݣ!cG?pw 'Dh AA˸)#hJީtߧv0*60%j[~.d`9ӎ ki@q~D >MYNz`l¬6;SV1SBt}r4ܝpZNrRu<; yƾ1+ɴ/k= MuO]Fpɞ5\K}W㾗t>-ʌ֍A*-}A|-Nb4D#69$^Gőv>yyoK>q`WLDG:|m~cekiĆ>۸4V\&_ƺta=֑0񯘇aX㷑 ~cpZ:_ׂ_F65qIѐ?Oۀx2ȷ MGīCψWb'r-)̩A N'd>_9> t*ЋAxS(:E'Uy(z !N NDPtV_p , ?,-@YfQl#͢fēD9oVeLr<5 w \;k]wɌ(^z9KE`HWRrż脀* s+ #k|3_כW|ʺMN.pK~=Y-cǼ'0گ)}]萀`yBC9'BsR%Anw8b#tYؽ/ mjbX&GY&_E>d&IQ.c/ue>Xq\%piT.kjOg Z3/ C_ .m$bu)hN>- Hj/r6Kp0*kFtrQADBh$I"i,fy_\k.iu:Jh~.;߁ӝp$燼s;C\ #u0ZMDSwJDץZ2xw].Y[IM&3JM'M+o Ӹ.0I~!o`"WR3I}jݔ$/[5GKԛlt]q8oC};CUBʉZ/q5 ^ɡ&ݏ9YF]Ԃw%5\!aW/M c0c]&(Q]Cpn{n-uDr# W > wK^5P釖B=8;&^|N WL'a 0Hj̜NUO@~NiM8^V: "хP*ck{uTz('* (W;<0G(7̡r|#n}v2w :fr&3Lj2%bFy%qLrQ]bOjB)4qٝHv s1,5ҫq*J&щutb}ϟ c0_p/Ղ@p.I v ϭ F+0!~A}P*tꏬZ\#*t^V%{T ύC% B)<__%߁5vJۤ^KpD AԱ) AjkӵoٳŤ/Xr:E),Cܵ6&"yk/f\گ1)ß!jއ݊*]Wwcac+ o)pL櫩#$, 3ῺfG`Sٻ 1W珨!^˨}O ^9:u)']B\WPGfӚ3/XE3i_P5eI/I;G?aý)~ksRSE> stream xYM6W%{!)m^&xCC"%J$XΛjIٙX'b ߇pϬA\s*#ULv^#;TMCKbJ^|:T>1ÆHj/^6a5V[.+Iߟ}+ɒ0>0W$u,pq />P|ƅߎ?0͝v|y=eWhfd X[+-]\Rζ?vб wWSPD;~à$|y^>JR-UQkX9|x稣xB a5 4nفmoKJ6Ұۚ\pܚ\=R5BkA37t]Qjˎ[J"#`-Dqy)\dIp,7"D%}B$פEn>,忉C N-)M9D  xC\,rHA(Ȓh(%x;vtgra!=xN=G $mtlg2^AZKgDCxdK0a /t!8I΢h I/bJZ0N1{XSӍ, Tyh7 ll 1X42O×wqbJx5e xm ˣOD\Hʒ>¯wM :fM7 l,_ endstream endobj 39 0 obj << /XObject<< /Fm0 6 0 R /Fm2 37 0 R >> /Font<< /F1 7 0 R /F2 11 0 R /F6 31 0 R >> /ProcSet[/PDF /Text /ImageC /ImageB /ImageI] >> endobj 41 0 obj << /Filter[/FlateDecode] /Length 1056 >> stream xYK Wp=2`c8U[Kۇ6[Up;MV07<9fفL A= ^8 9(&{fw3MCGN%. \*~C$Z-6b-kLkս`/\ -҉І. IY]]L prkm?;rE7S'9`iݭ.Ph=wqHYӱRci+,m/)Lu;AI<^l;ˉX,n9`jId;J4#HJSvٯS{dmkZ3"ߚP=R5ˠDk&A3YWHe nAQ#`-Dqy,\dJpp8 “}O%}Bd,IEj7E.!WqH~9HJ9pHECb{T')",9/Blkh}mZHqз$J4ifUVgt0s02~XMxVvNvuC>⦣1,Zuc i Wx)E![r v2w(lS"&) YԆ]UY>Y7 㜺s l*Dj,Z8ϱDE&"{\h 2SA Hf>lD^%J Y@cvOS\d\ ǕP*7Ah$h C&hzM_Z m2 ;X٭n8a#~I9y p#{0#%4ߍa(J6dvk04&x;nduqa=柋BxN= LK:?gVL.Y8™ w3 wH"Cd:_}>a2: "')`2>%Eq{1e%Y-&b͘=IUfB?f> /Font<< /F1 7 0 R /F5 11 0 R >> /ProcSet[/PDF /Text /ImageC /ImageB /ImageI] >> endobj 44 0 obj << /Filter[/FlateDecode] /Length 1166 >> stream xYKo8 CJ|\{*Nj Qc'R"%(F9o'!G g >it#)Wt@!9Ղp'd5F ӥd!ramUg! f[BrJ?_&=,( -LrTJHʕp G\c)@v7gq7EC'Sܺ]or,0"ku$ 3hXŀ*PXe;nmlyv_lL-YQ/05[c4b%_lD^9J͕,EM 1wsXLnxWRB)yP &Xow }s7LEBUڞocsR{o%$ϛs+ #>%S/PնgEw/2io:H05'؟A\5b \x[g<\A֟aCr;#ҺrI,|<@Y^/ f`n7c&U9J͕,Ty'~zʭ:M,HL}y-'OН{ic_Z%2AE QQ#]7tA,50~?f^onS0T|{;m޾ܟVz ԥa^f~*P~ endstream endobj 45 0 obj << /XObject<< /Fm0 6 0 R >> /Font<< /F1 7 0 R /F2 11 0 R /F6 31 0 R >> /ProcSet[/PDF /Text /ImageC /ImageB /ImageI] >> endobj 47 0 obj << /R7 49 0 R >> endobj 48 0 obj << /R8 50 0 R >> endobj 49 0 obj << /Type/ExtGState /OPM 1 >> endobj 50 0 obj << /BaseFont/Times-Roman /Type/Font /Subtype/Type1 >> endobj 51 0 obj << /Length 760 /Filter/FlateDecode /Type/XObject /Subtype/Form /FormType 1 /BBox[0 0 2384 3370] /Matrix[1 0 0 1 0 0] /Resources<< /ProcSet[/PDF /Text] /ExtGState 47 0 R /Font 48 0 R >> >> stream xUM1W8sؘTrD<:A<'L}NU鮗˫~8ul'hB.C Bʊio Ƚh(S =zkBdYbq5%[);ndn3K_\)X(&r6m]67yءFWcb (B_w4{oD *yWx U}C~1ݭYRl&ZeZK||Bt.\7_7uÖysX2ouf{ekn F)~Y\I?ޙ7;si {G Jv)l9iF2kv1_N.ĕAl9\%f+ ˉ {>pGi =讘˿O2\+WI<-Ij[Yp2J $׃I=7s{޶~zgzϐZxY.-… }ֶY5TӱjD?U)U=P=:{t>Ĩ?d endstream endobj 52 0 obj << /Filter[/FlateDecode] /Length 1314 >> stream xYKo6W!%.4=81#])ۤV,pyi,-H g >p\$C\T Knv5y"w>lPB??Kv&_ 9fj6Lj6'`~Ogt$J9̉$ (4& &»oqHNt~XuCoyB~{"c'C};A). $Ъ ȵB>i4\TR@#`)v3~5ˉdY&ESlV 𰮃%`J蕎T\mHjG sG7.G3nGc;%4>h&A=97tIu)˒*,BQ+`/{m\s<%)3ph̒~?Koo e7BI'<[y,r5"Ij.6t! `&{8d hQF9d(4(!e)Ѣ#Y;an(1)tv<]T[0oŰq7zTΏc+洳ܦG3y4R )EsZle;fsv,ecq$"!aA>49 <1P‹h"L5qD.)%\ D܎7ZBi)A Hzb~?-9$(5W f)O}C0bx"v4JC0J A3CCFﻉ QWJ|sLjEB6ʼ%ٹew^ (7yބ?^ x *X/H^uaxQۈs0%xrtg5YPz`47pg LJ v 𶼅;zyp^ü$KpǷd )XP|I,|<ƻ4$<^&+~UЂD+F˚TMQjdQ鞄خ_,>بp&`m^ֻLy\W0d9{A2(lFi3a& (.7"Fz،snm 3ɐLZ0-̍*Bb(ЮXMSBm=:lZš %m5EFAI*%弬2|[.o|F ,F=deY7tޚa>m x?mWtEul%\]Lԋ.k*13o5pjբ`rW˶Z@RFfs endstream endobj 53 0 obj << /XObject<< /Fm0 6 0 R /Fm3 51 0 R >> /Font<< /F1 7 0 R /F2 11 0 R /F4 15 0 R /F3 11 0 R >> /ProcSet[/PDF /Text /ImageC /ImageB /ImageI] >> endobj 55 0 obj << /Filter[/FlateDecode] /Length 1240 >> stream xYK6W%{CICAڠ9ջF.E^Y]cC|I%ʊ`aS7z%;8; .9SL /+,H!w_yJ_J:(Oub 40SxLl3LRZ #: &}Ii1g$ WT,@P^~ 2fPÅKHFt ^zC^~ -'Hd [׫[t=wq(U2'[u$ShPT)6:zbga.ӗlI2)tfJ)Ith Iic,0Aji$:.vi6yj+%o8(КA@k ]PUJ eA%nDQ#`-;IJp%SSpI*!qKooheBI+z<Xf2U0\mLC8K)r1$ >AasU-*S +z4dsV;7iaaF3rUgg ]+zZ`vѡY4B+)Hgg!v0],~ut" aϪQ>963-xbd fGdy.IXb8MhB (ř" PE4CAlq& 䵘R f7NyjM+)o8(A@5{vﻁQWB+&VvBRocsLdywLRz P #u>ܼlp"K$6G;nϜ2 s_dBK05#؞A\%b\8[gn=Ї$=w|C6v L'3/rx oSBxm\>o Fx7+D݌ÚP/(57dOa>j7 ld 8XG2d0~YW$Z+ϑoKcSj@ND]C Aϒ&zwḯ^zMoٺy:ϕ0e|fS5GGւݜWmoh]=mG eŀe޿T= _ zK:TVա3K^Gs3t5\YNc endstream endobj 56 0 obj << /XObject<< /Fm0 6 0 R >> /Font<< /F1 7 0 R /F2 11 0 R /F6 31 0 R >> /ProcSet[/PDF /Text /ImageC /ImageB /ImageI] >> endobj 58 0 obj << /Filter[/FlateDecode] /Length 1231 >> stream xYK6We CICAk .^oZCҤdzH%盗g>  )8QHIEG{^{ .9SL /^*,M+})q@y{xMQ &mp Z@NK=[RmZh9k4{\fvJDix4Aь:Fsn肪"UznXl, *E^{IRO oD^2 JR XYB}3'@+rNݘcqH_8$bOC8K)r>}SC8|G* MN։"C9kHgg)<jVcsUuF[Um8Ko[c i )3Z3let;gK~(eCaD" a^>5w#9 Pg#H$PVSɪ3L9z`<qfLHrsm .%bk\8[gn9Ї$9O|C6v ,3/rx oRB6zm\o Fx;+D-FaMc+YTy᧿¾ 5Ю_,Bp"d`ySnқ^n.n6chy@&d2&iM&9dH*I^|*;xmf]aAPͮzwho^m{5~J{C鰫UmHIQsp<ˣu~=;g>,uX-\ K~1K4nNC` endstream endobj 59 0 obj << /XObject<< /Fm0 6 0 R >> /Font<< /F1 7 0 R /F2 11 0 R /F6 31 0 R >> /ProcSet[/PDF /Text /ImageC /ImageB /ImageI] >> endobj 61 0 obj << /Filter[/FlateDecode] /Length 1340 >> stream xYo6_A`/1軟$l @N8cBQ?#8nISp=+s@nGM}BlXRtn<ԉIj68Lb}F$5#6: &8Ii0$ VT,@Po5X-.\/1~ U^|Y~"7ˉ.c>: J] ɿ\c NT€4I źSVJLgX$2)tFJ)Ith oF'1!J5-@hSv[ۥ8ېRa:h!5\ ܎VGi5AzZsn肪$To-*q+%"kJBЗ}"LMOC=T0C l/]xDNZbJXdcqP'qPq!c, frC\ r ܎ԉOiC&\ *IZT6V${[+4&wnvdaZ3rUkk ]+zZ`բE3xq i 'xRrHG4>w0ǸXnɺ:t1CsÞU|2=9639xb` O N1׀rK>p1Lp;[hqy 8gx򺝢Tɒ}<5&pJ(78^PO6}ﻞk ~sWL(lE!8>XّD;ϰ$j_II5aKHJl,˺1Rγ6 +j6d2j\~Yu{ƔI0G"&\۞ f$31Cb݃ kZ8g͙o~A֞aCr4w|C6v LLZgӠmx$Z4 (fhA7YmFao(gTQAOR= rl/n>Dp D`u|A㑰k+cOj@E"!ꄠgAP`&~̄ixUVcu;j4h7~{-˼u^\SZ[_*.5o `O/8!D.ZOy'gUn]ÑEw__+}f].}~&/6>-|ws6b>ܯ_<'$QfaN/n266MγMz|-quS|Ц;O<+ǹ5 endstream endobj 62 0 obj << /XObject<< /Fm0 6 0 R >> /Font<< /F1 7 0 R /F2 11 0 R /F6 31 0 R >> /ProcSet[/PDF /Text /ImageC /ImageB /ImageI] >> endobj 64 0 obj << /Filter[/FlateDecode] /Length 1352 >> stream xYo6_A`{hD("0YӮ"}P%1f˱bo;R$[ԇUE`S<>軟$l @"N8c|Q?#8n8Sq=S@nM}BhB||w,u:v7P$5i`zl@RZivțNzQ:$_RA**t (tdB?* dp ^zE/>/nb ϘNCzuR{N.J_rбb G*b@|džBGBQ1vn %˳RAQ,bu@ff$YWi,0Aji$Z&vN֧yjncoWCi5At:Zsj肪Wo-#*q+%kJ|З]"LMOC9T0C l/]8DNj|LXdOcqH_'qPv>ç &rC\rHU'.Ajso=TQ$Т2"YUZI]6'5 s& ך՘aZ]XKoZ+-~SHe(;[R4x@qnq.ٶ0] blt԰'U~/jqδs“hm'GrJ.qO-v0v9b '+MvRv&K&;! z\7A ]I&9 h&}Q|wo ȧۘ+; 6d`^ =ɳ&zI* P#|YW!Fj}yRaEUF+֑ >헫4|_}]m%aBWǞԮdBA<-f /_&B}<_ eX\>fS"I6 pc}nNKĥΊ%/\/2m6s@(AuAUBCqy7ZH/ޯ^eɮuvq~ViNgql.}ٽ엻t[?ӷi/Qr?P<@V$.'aquSW -zb_:g9y endstream endobj 65 0 obj << /XObject<< /Fm0 6 0 R >> /Font<< /F1 7 0 R /F2 11 0 R /F6 31 0 R >> /ProcSet[/PDF /Text /ImageC /ImageB /ImageI] >> endobj 67 0 obj << /Filter[/FlateDecode] /Length 1029 >> stream xYMo0 W-Ka[޲6체4\`%ɒ-X|U3`uI!8lG ~~̎#س qX+ud'=MԫZ5rs.yn(ಶi6DLk f۰J7KJ?&" 9$fFkxpAq ? lx߶vʙNRܺ]]nz"PmtKu0h3VZw56:ڎ[bg3( [Njib9deQ ,l6lXשyc,0$0f^.RJ6kYښLHf쳱Qʷfi(h5KCWt}#bmq[QX$<. 2&TX8g+H`ޓz ]""<9EwKR.c .cqH*U1tX-t!R\@!g8$"!!IL)! @!AqyA:M)D&,j ^I #{j±}dt;-a-kH#f[J) 3Ns1 >wXN.[03dQvQ'dQ{-s6{Xh> /Font<< /F1 7 0 R /F5 11 0 R >> /ProcSet[/PDF /Text /ImageC /ImageB /ImageI] >> endobj 70 0 obj << /Filter[/FlateDecode] /Length 1517 >> stream xY[F~RJg6JZ5*mw>DQbFklۇfX0g}&! C1Fs-~UH`$0\%1"ϡ!*sQU_lD$?9l0HEE7#D gZΛ=$N,?Q$eZV$Qh=1keXy (sp.||py{7ф+ԻM#Cc|uS7E A' yq8Oε\:b1Aq8ЃCn蹑L}Y,-hLG׬qfjƍP(0j-G"A! A$.ֆ l 怉G}Vi5Dž,ii͹3^2D2#ZQUGBm$O1'j!H&^~'p\XH3Fj픐CaPaEQq!s CĐ3 21!]:1b.؅q2ڌ"mӷdiRYM:;/ܤu"0|Q TOgU+md5xS \X,^MQq!hPs1%\n?wd Ņ֥5詹fZ}/Ih}aN|6>7Ia"3Hk:$rޚb^/ yT"@"[La*IBP jlU/$ ^l @ oG,+l2^ J#6}9IN /[pі-|Py{[*/V*ڼcYUo޾g}Q6iMPBvl1SLc%W糳(S?%U[<tկ\^Jy(ܗ`lUR"7ų^o)6äS:R?rThoW;fqcƒsT~?G endstream endobj 71 0 obj << /XObject<< /Fm0 6 0 R >> /Font<< /F1 7 0 R /F2 11 0 R /F6 31 0 R >> /ProcSet[/PDF /Text /ImageC /ImageB /ImageI] >> endobj 73 0 obj << /R7 75 0 R >> endobj 74 0 obj << /R8 76 0 R >> endobj 75 0 obj << /Type/ExtGState /OPM 1 >> endobj 76 0 obj << /BaseFont/Times-Roman /Type/Font /Subtype/Type1 >> endobj 77 0 obj << /Length 1868 /Filter/FlateDecode /Type/XObject /Subtype/Form /FormType 1 /BBox[0 0 2384 3370] /Matrix[1 0 0 1 0 0] /Resources<< /ProcSet[/PDF /Text] /ExtGState 73 0 R /Font 74 0 R >> >> stream xXn\7 ߯^X@Q@I tQtL''AD]OEa$#r$J"yo%jqNo>e[7QfR̓jBsΆni^m7[!O鏛:$*dklmrRıTB؜5ZRҬ1M5dL rt)y 1O9,\㤗pOb?>R!srq\5Sbg5׫5]~}^_ɣ &vvSMl o_ 60y*W`)ӴFݞlޥb gUx=S+ؗWCQS T; SZ!i lC>mzG/1P%TM&;Zz/?t;Hīx7'75Ԃ-]ӣfK%pCj)5ؔXfɥJ#Kk>[U}i] R!j~4/-{%  s@SOM%h3MEHcʧ-f Sth/ ӂcij2`ѼQ _ĸ21O14zaR >Ƚ昤8? J[xV@>fB*~.`ʸQ W> CF$G! N13 IVplÁBmࠚLrf}`k\=ET0#jZQn,<1PT=Bs  Q9+K)Ge%"Pwsu ' ܡ endstream endobj 78 0 obj << /Filter[/FlateDecode] /Length 1114 >> stream xYKo8Wr("On[o=J]vA~g( %3F 9o''BZ R4ϣ#8DVKW ]k=}n/%T|JKûaAs2lLiXXQ8RzěGJzE:IŹs&9K*/-eV"5T{A ^1~FzbF /tQpnV([TzWZcY<}@tu @UQwKZ%E]iL2[,6`E5kNPDk)ec,0+j$0f.ަAm@zkkZstk&lid[si,h5nKO}rmYK[PdpeRw @ADM9iU V%}Hm!vҋEn6L忊C2+M)]rVTC.#2bCRi6NrJrHg^hчXط,4i&ݜ/n~\al@ǻFaKZioAVaq4r+M)%rv2L3%4wZ<]b2lÌְ7U$,jmm<1h"s\kB'c9x%&\LD<ƞZFi)AȂFb{迉-$vKW46)cM0b i62JM04A4C&h~_*̢RBemjmFp £}+<6sD Hkp> #eq;"'9`6ާ5"ڸOYaVQ v3Fkrտ[t*b&pgI[< mToq[<> /Font<< /F1 7 0 R /F3 11 0 R >> /ProcSet[/PDF /Text /ImageC /ImageB /ImageI] >> endobj 81 0 obj << /Filter[/FlateDecode] /Length 1393 >> stream xYY6 ~=S%xi&;nۇ^HDI6ZO2;+>v ?`Z2)kpwlY L&aRK5Fd չdOl(2 w .!u)!Sr 2fsܮdC~D"i!nN>w9<ё‹h"VNrK6X&"JLPE]Jlq&u;Dis%KA(nNy nk% z}+)HDA-M0u5ڿFZu eIًY  ocJJTF{/$$ϛsJ^ITef_ /6`r2Tx|Y=3. ܾ(mgy%М$sc}q>戵ypmy ;z^y3 :$!G;IiIPn n].jR/V?;!&ZR=^T6Ο7c)*ٌ҂f HFaMo(md@#]< }]ǿ4|1x𱎥rOg $yTbX>i_Ώǣ> /Font<< /F1 7 0 R /F2 11 0 R /F4 15 0 R /F3 11 0 R >> /ProcSet[/PDF /Text /ImageC /ImageB /ImageI] >> endobj 84 0 obj << /Filter[/FlateDecode] /Length 1143 >> stream xYKo6WrH"}-Zm~g(EJ.pyP3$0jɤk(xpO@\q*-QL֒f{b/6rW/3wC3mUg-f[”K o ÑlN6˘s%J*5e˚"܄5dB bJn }}~tQ8E0N3-Z]RT?vб ׶WVPDE0ΦUT/[r%ˬKXP͖ZèYH"tpT(ܭv80N=Wa)SiJmkXkNnxWJB)ߚyP5\VFڲҠDqy)\ 2%h*Z8h^{ ]"!Rn[;DsR^"k7x܌C_! Cަ"Vr#ֵFզŊ}E&M\դ3Mml7'V:v-!o.zpˮH:,6,y3c1`1S.dc<]d1 HaFbmث*OfÌqκs E495qDג5x%&\LDY=+. }Qh߾ Ԝrcw1Z?𶼅 g2\A֝a!9ߑMI.A)8P|¤sD>{]JPn' y11f֤3Gp#K-U4'nzέ:MSXL}?_=f r]p-GKlfs_~ޝwB> [=w."xV:3|_[Ϳ^[qKX[<[%{c endstream endobj 85 0 obj << /XObject<< /Fm0 6 0 R >> /Font<< /F1 7 0 R /F2 11 0 R /F3 11 0 R >> /ProcSet[/PDF /Text /ImageC /ImageB /ImageI] >> endobj 87 0 obj << /Filter[/FlateDecode] /Length 1251 >> stream xYKo8 CIǢr:=#~dR"%(F"9o^$dO03F!%k { .iT\y&RG?]J:[ :1IMA83T6_0ی$2VaN'=(/ !퇔5Lr  %cxQ%<<_ɟ#]$|u2J~aGR%sNn:PLB HJSY8PX'j9΢Vb=r&6˨3͔RaֵIikl0Aii$Z. l65j 4SG7.GPf g4.*R熅ƲK)Q VR4. <$i84;I3$Pko9E@Z!-ǤhfאF oCJiS9 G(&!LYL {RɨXnL+/g[@ v#2<$},1b&<>h8SAzbz迈-n9$c7 &)}C0bx<>IA!z`zvh{7|; @_ (g1G9vv&2K%M5aK$@%/@: c]ae@ /8CmK}Ϊ3Ly/2oI05#ھ\K*}qamY wҽ ڳ~Iۗo&.A-P|ܦuD6[mJPhV/ (f崠&1JYAÛ~jة_,>Bp"d`طx~:X*8I8}InCuz%)wozz9޾4cU=k{qq=m÷SeTqc3ϋuu~>`#ZNF  ̞ CK/zW o endstream endobj 88 0 obj << /XObject<< /Fm0 6 0 R >> /Font<< /F1 7 0 R /F2 11 0 R /F3 11 0 R /F6 31 0 R >> /ProcSet[/PDF /Text /ImageC /ImageB /ImageI] >> endobj 90 0 obj << /Filter[/FlateDecode] /Length 1441 >> stream xYKs6W(̈́0 О:4NAhKc )|$H.v?H (ci'|++E*`1bSOݣ^Sij?}x,٪tl58,V p@jlD`FŇ'.*xIpa?0A4,(,S^52b>@_n!~,E?<z;EGM']u:@/ P,E^ѹB>H0ɌPXd1 8$Uu3εQ"=f96ˠ LT&RJ԰( sוӉq $`G*5TRKj AqƎ!m4;\twJ@4A ZFsl,jnHh,3,D \)ĘUK,$#QpZ= ̉&dv@_ UfZt3$q,2XlҕI0TKC1#9!].:9nzc$!@>AayC2M IvskE! 53CZLTƟj5٪Z~%71Miq i 'xRH%86hwǸM_~:tы EBc|2h)mC{<7vJC A2CC`F߻sAsB. JيbLӄJ%Lې#g :; sAio$M5aI(,Y2HaX  ~jj4I*Lͥ򔨞MQ̃;0h5L`~~ϗ2}l@kaɴjeA;wL9j'gή<*l¬kt^vE2uY{(wFR󻩹ssE=6}/* F6 GSN ukD\]@J[s[^uk{7)++엹, TӪ]M)I&~$6hw[+ֻ4xyM9 UCh(VUvm^=>/f endstream endobj 91 0 obj << /XObject<< /Fm0 6 0 R >> /Font<< /F1 7 0 R /F2 11 0 R /F4 15 0 R /F3 11 0 R /F6 31 0 R >> /ProcSet[/PDF /Text /ImageC /ImageB /ImageI] >> endobj 93 0 obj << /Filter[/FlateDecode] /Length 1141 >> stream xYM6W8sq`S(J{Lߒwfm&݊ߧlv5v\>L~>u|O~=tY0nVW([ $*^cI4.uɀ*T)t;Ntˍ$Y,)^`fj6Z+bH?yA J$-;RoT[*ּϵ悋 M2R"JL"ʹ%եЦoX-Kp+rkI}c"LLC?ST2K \/]DD`rNӚ "w㐥7qHPےҔC8Ng8d"&{P'1$9+B/tYJmmjH['4i&ݝ7naTaٰ6pUgtg c+f:X`ݢC3zl!z%4xN˽qyˌ15Ò utD"!aE>YO+963=xba 7Dh^kA'\b9%[K,X$c -f4(BQ W;=$aR}'KAHn< . 6J( 4A4CwM^nwԕ4oImHP(rF\mQr\ A1ĝ9nT^T/H70lT||?,(S`E&Mv=_y f%3X!V,L? -%H;J μ.`g|H J;Hㅷ1}@6YqV^ Ɖn3fkbXTRG ?e$4LԪ_4|Q!Lcɑ os:_~pj'M[xȱ  8> _nvyAߏ\>T]s/tv4TskO^󩽼'=<3 endstream endobj 94 0 obj << /XObject<< /Fm0 6 0 R >> /Font<< /F1 7 0 R /F2 11 0 R /F3 11 0 R >> /ProcSet[/PDF /Text /ImageC /ImageB /ImageI] >> endobj 96 0 obj << /Filter[/FlateDecode] /Length 1208 >> stream xYMs6WaA>88m3[8hb,N3]H A2d2ž#[\} xݑq NeJxj&"j])#Oթdӱ@y`l_PK4UJ\c .T4EzC,j%𡲺Y$fuF3ݳRJ=,Z4kl0Ani$Z6pLw\*Ґ@S>u4]4=.)hA :Fsj肪"UznXh, *E^{JR 05dV`g ͜" \u҈CR"S S, &r C\rEc$ C 0|G* M֊C9iH'g)<jVcUF[UmXKo[7-qc i U#)y3ZL#let;gS.߲N.[0d15I'c9 i3?q=%Ej#2<$],㢟&<.h8SA:bz?-9$C3Y@`v!q?p豈R|AC0=t;gh>u` /wńVR3PZ\mQpL4A20?k=ɳ&z)Hg#>l°"%SP+dS&=0bL臸ngtLHrsm N%bk\X[tgAלaCr'!La`Baqƙxl7)Au{p6N7tVӂv".FaMC3YAE&,]ÿX4|&Dkɐ n}zy[')_ozQ~yqo):J$=qJu0BN4Jp~߼˫j 2ɒsrIl6W~UuoW7/}n 7z֋ի ޞ}zx(JuA]Fiw~y: endstream endobj 97 0 obj << /XObject<< /Fm0 6 0 R >> /Font<< /F1 7 0 R /F2 11 0 R /F6 31 0 R >> /ProcSet[/PDF /Text /ImageC /ImageB /ImageI] >> endobj 99 0 obj << /R7 100 0 R >> endobj 100 0 obj << /Type/ExtGState /OPM 1 >> endobj 101 0 obj << /Length 18254 /Filter/FlateDecode /Type/XObject /Subtype/Form /FormType 1 /BBox[0 0 2384 3370] /Matrix[1 0 0 1 0 0] /Resources<< /ProcSet[/PDF] /ExtGState 99 0 R >> >> stream x}Kf;" 㷽4K̀:0*~[m,Z>ͅ?_Y)>?Ê9e|??s>jms~>壖Q>w3)ۀ?xyiVڳy>{([矿|TOs~V>^H>Z1Zc"^t pjHĔ~%R XxayRr ]ϧ孬S!R~>(rYR}E)H5T63[\,r~:ɜ<}iq`+} q=m,p[ ']*S&]4$!0EԘ{Tn`J%q 'baa}io]?tŖGq[guJ 5L ?=հ)@ ) Xr/Dle@R\BJ{ڬ;s&:/,Oer!,aKg}6S1:٠($ bgpY]dY+iyp9բaEʝ3dK@P-{hn=cتR.\ճG&sLB)k('eH>)h>؂c2t\jQCW+\#Q(-d[USЅ!nCu lh_b`: c!ˋEi 6O8kzUH]WTv9)mR>G'lF6pyMܦSRXkxH^Ȥ;A 2IeJؘ@ҀnN EX(2_AVrƭS.}O.+/7S^0BSmܴK^ؕMEgf'^4u&n}3W\ R(~1eZPLK;\ . p:7P7Ғ & VN!-SlTP\!I-(.#ՐYlag1ѻKK Y:0?ZOJÁ_D5)-`Oٟ>:g7 l7||Ϧӳ<֜>;Ybov?yJ1h`A#irji T8l*(پX).Z/'&=r24%*d w[Λ,lX0PD~%Ý#,u^^ yGGyȒP W W0櫮,,T߅]u/P>bg,/"2䩱Ad&J>1%Rbd),r`٩9tD#+< T5]d[8gxLu2G֏ +/ VɁ21U*/E=fq6/RŻ8KyYB.-@$- 璻\؈ev>S?/DU R̈́C.^wp3t؇"R%\f[ia#{QE4SSgOK[nakD{(W-O/h.|J KJ62`u%wa~W@ۀ _fIx[5P5J56 -C9! 8U²ciew\25`ΐ"%9Tɘ5FWh0BD Fԇ3p;H0#K)a.Ȫas΁nVke czY,#ȅN̗g̗b?B.믈rx4.V}4`"|&:U`6PlA:A)"1R(T4;&uH ޿0ec.d!x)`ܙ5Y_pڦ3DOJU_,*Vb2+bU PNW%))o--Jp4[^}8Nǩ8:;A\ü5 P뺄0R da8mb2=7CT陦7uwRVkZ ؓ}v2JVeЁiz7I?u.ʃ -1FNJ4XfKvBhKfa8+ט^J)R :b])%UJm*]N?{oyN ;*S}G/`T36o@6N [GLpLGV6`^V  W\6EڪrU?/a82 ZRp%IC1?693]fnec&C&zT`Ex yNF߷ Ͷclޝ:9'~40+`^sF54oYADC/5ӑgq+Ziʞ m@j=0oVsSBN&cD}Cu>t>PH`h\ $ ,6x †1_ u2O-+$#D(֓h&&NmQ~$t;XvtxV 8F $>Kz0$hh]l`%|U5<0 HWWQHy_pGǂɎ&%8Y0`Rf t^Cd ߀d:/Lj 1G%`Yy>t-='F+˘!Ui{DgbˆY|[ʨlKehq)zQh= >C̀HYxe1;ӭ#i*v|IY?CO͈0ЖױyڨczXmD\p˯;(\1C_"+byZ?a0|CU^GFȌ/R.>s\Y<P, 8l^k(%Bb֋QzH #lLVM =ͥqzW4qDbrıS]/sn^/7\QD >BGrԲO=? 쪓]Dh!I!^Jm{FABT%HgCdT%eS+ADBN ʤթ!w ,juZAD'FS40hQUUʜ/~ MFA {&Q SMF^!”Fo$Ms)M{!"s}v } B/Z\Jc1W@joZYf3Qg4wx `G 5* 0i1 +F580Ip s3oj!'tl vDXGi`fE3nZT̘0,!P8йo>*J2:3E8Vq. ;D%Sǎ,`I"6˘:1ͽ:,+4IJ:2^շΉP+yL6Hjɾ y}є&oI`.G? p }$)m0|咔|xQm`LnGw=QQtOhgi5Y5ӐU78[;4:ʕ;j2jd|&ւȬE}cR@bO8OQ$k5 `8qBT0#倳 H*OƄMDC{#CD,>JiG{];r^yu3TC:-Pԣg6@ .HAk9ϏBd>6\5stAtYd\<K+1WBpb'6mjpRSCN, ]C?+^Bo-PBfhmCfmm:Ch&kLǡ4te:ŚW0HR\@c\u-j' v'!WT6-?$ v_- tN SN F%'j|IT >zUqjB!돕M !*8 ]!@ AKO ڟ4o.r,S>@4 }Ff6)a9p/C~=x4#BڣBſzWEG_p% b "mu-Hs^aPe ( W~|n.-687GIb{5Wh tg?Mƹ:'0T8YA[?)zPrMN!ny)Ѕ4,wJ-AAH^Y72F8Ȭ,_Xz QY">5i0:.yI"ʍ:?pb d .AP]iv~ 7GO1Xr.N;a]7c#\Hy0D æsT4B#Nz@̢rRt<8y a@}G, KkK5rWj=٤}GQ0.^yNhk!V]->,n+0 &OLR kQ!캇VaTD-7Rfv| e |Vlov"E~ul"RGm`)k,7'EbePB9YԠO@P:8î &˿Wݗ64i˦ PX1#W5*bqn94HQ0QpVqgD}si6nTAV1<&)ٹrH܍#~@.~B> P,أXoeK'- -C 0v:M)ʔrevTBcZ.SΦ4pcD]؏F /f\ 5Blwp ]:@3> U]h5Fř YCGz_'fBӀŒE>S/ RE hm}Yr,:PEҤi"m3jD8 JAX'P6܄Fjy1U)tz ۬dO BP'GC_ h "T (v](ߎKvTłAu2Y7IHQ!D[3a vPs D-3aᮻ 11纛 M5\c֓T ו26ɕ,{l1j& 29H@s9Va\j䅨pz$ezX>G)(7jTuv8g3'=rۃ9kz=(y!5~@`~Ȁv~9p si$чl$z$/pMr -XUMKhOad$$j7Pi&9ܱfhd@Lp"9pI&9(Oc?};)H PeleW$GEU5x?u<=;`Gei(S@(DzE2QqM2 Ibh=Gh#Ի<U6\aUUr\iJ3LtUrLG&̾$!SN]P)4*t NX5u0q֮PyUoE 0zBO .YO ).KbR>Z0)},LbcQ(ab>hb>ib>mtHy~CʣaFt9KR8QW)?6(;W.DOR~+;71?qMQNScl]9?^rH@LjN|&AL I*,gԠ-}p3ÅsWx g?o # . Ts#L0Z6ĉD#5s͹t1E DU$Ub6u8J92;RY |F&W?!a~ry[N""0KNt%:୯W~x%.jέKƋn/jđ E6m]`@lBCWTYH66 WycAJ~$WUá=:Oءe@5T*o7FxbN0lL%d Yp;n[u󃟑юuC() FOǤ'I5?`苜kTNgiOeC! @iܹ.vE*/0W8U"nzQ8uW\_]C'C&c}VM.@|DMJ`\ `jsS-fh$F1r=Wƀ!n .Gos1ۨXPᄀ>甂IiY!MߦH!Ml ٴ0#ã/:~wn"T5Eb-l>"FbX޲]xUuh<>M祁tf$剏Ji0JX A#iX Ywbs16G۲ ̘ynbR;ǛIJa\ѲeY@|ނs,߇Ìߍ tҎ㷹H#Kk .6Oep)vo¿1ZMo0nv;y/s7owq#a-4FcoA`oAb`b*.{ +j_ W?!B?(oCCBm4,-+:E4MR#0M033F( g <21n Ba"ߪ F pn83T ~Wseӵx (y!=! FpW[c.|ٵ Z:6:4R];hb/J+LfKy H?Vjj6n@>oN4aBvyD@J/ {$7 W±žّR4$IӅ,>,=:tf; h< ؎qnQтqYw a]f #k&_T.PL:]}f 5/ &(6]&HqunZ $\Vpsv)ܛ wі\g->*O0Cır Q%Z0&'0(4)U4j:c~r CCCzKX}4G}񱇍pZJuNJ>O' Q:)Oͻ _-C4\{%Rm<=47ۘ+;Ă$MM'D8۳H, OSp*طH4T/<&dKʲ];" …gNN ]p W?!I/:8K,ŗ8\v1B 3OxA^\*(o)__I|uq>_> f ezWJcz {Ȇ€TTy14T S khv\y5!!^vт#$q`a:t!bG5рQ*ua $ց{60fE$u({ApzM;V(WRV )쬞qL\+?j?W?,}X ˡatPhSI=Xf35dNJoqf?X'WS91fV%hV z2]7$&1C{BnxR3hSPsAe1B,Jũ-? |\ED5nЬ t;)wr9/_c* yBh pאBH5.;1Y/Wn  WLϑ\8[ΈCh1aMHHQuXg-^t˜O1+]~oIV_RdJ3A6&'I1h􍀫(]SO*ky;TSFig4疏{sb44/ Pf Ok"5"^e)E]Rdrڇ , >q[ ob\Tj]A֚IOQĜk* Ե*I:ʸ4?<0hB.C)N(oLf3Eo^31Ŧ4h uJ!GWN4 8B=O{gOYܓHHB{YT ̛W> =-H r\ ċƁ^ÃGQ#Wku;(I?m}P+}^:F^=g3'%~TSDAӳ$O R Dk$i4f3kgg}.)dkY ܞx pgM5IB=L^؏69p- 7aY곕r,X GVJ~Xhf2Hԑ2;* ,ldLى-.̢&_5q4Qd+ N&gz1&Yr^H.t8ȅM7:fsMILA45{2cSǁuS$k=iڭh;w@]e5 e XІm{Fg7b%97GzኃĶę0[e$[SbX%if&j&`(ks})E/ݷ(pQQu4IbA㸍x<\ΨB\*n_&ƻG/"&C8BǑY4 %scJzHA!_UuB~fe"_:uNB"o-+ [a‰wf{2pvl+- L٦XTR*aqG[}ɶG.:pcśOYkR"Afa*Kl($KL'h3d =>5&ߗ̸z(OsIAzd47L3hS> AuxuH&7[ޡ>r5R(Iy JJPA=DNZmy](]' i0#4˃I%nR OPIȯpzjK$@n1 f,["-jc¯9ۤt5krCnDvpoV_B.%k&Ma8ۼ\%lnMYPAr/qiwc ]93Ez~8w ބI$maV50dʭ j1 >F@TtT /}5(ɾt܅hQyD(Zx6>{~{`C'gʘ7Cmp!p)/NyP8UJv!n)UyQ (|~jiԐJT֭>0& "KJ;?h Nćˍ5 |hܱ7MuWʃB*3nN\4 ߇al} >.40^u@E"E(2 $QD@F3F f^ٴX8 YzcRB(Ƅ-5ǣ 1$cst'FFZ/|GG.K9TɱગӸ RmKo#kdtku+#Oڨ"ݚ{|n"٣>2Ht/TlCrd;|u\CJA}hNr{42>kG]eOgDd4wbFKo_QW uo6lŢnxlWr}hX;) y8!Go+ XXߓǦ简/m&WWZz5z!GzfzWuLQu]A\}$z [.BWS70ir åt4W [\/tݯ ۅբ,va-3.k%nVDdQWWR6aEެať +"QI[Uw_ ~#@|7/Rv]y򦃩Mig/ taEq0~[X< gY7Ļ,Sj݊<68A|,uo7վOJ`L\)_yE>W#Ah%5ц7nETOPvH*o쫟+xNSd9j])O|bs ׸+F. ړXC+e=6&߭xd1|r%4\_r+7zQ'N)_@c|GSh" g+BZ?b&XjSRʿ$z;b{]!RVo Q>3yKL<@򣊄>tˮ; $پ c4aH%RdŲ( (pQS_ 蓳an59j٣y&pPL">s&T2R5E f/s4ߙ [e;".F {ًVK4v˱8XŎe#M5H )X>h׃Qj}.\ 0yM2«W,.HR JʼVPQ0f%:%Q%`Lm>Z.τ "p ]vͽzjSG_ Rc'G y 0''Fh(0ZF{G5P ܽ#8~6 O WUVb(gj9/c4HNk!XבpH: .ƯFHt7zNc,\5ЫwEܡj"pCނOBcIӯw1s +Rs}8-BS9SIPZ 5p,8U}It/#fhgFl6LKt@> $iffY7r$nQo](taKH/q8dhj,045cqi2?6A56 '赑o8@᠗MYu n yXqGiɋtS3;wG Aĝj:2΄^d. "y) *y^I-G7Gcg qpF83tީ^?{]׾wH,|;^oqc{DZtR^6N}dwkazZ0YJ]QQNRJ>bY Ż-ty1Q&?6ΞbN7ny}ż>]c]cĮQ yO$jNf@Z?$_k߾rCAQ҃i+bb9_AIXI}eצ*8 )#^EtJ>7lC_L d֯~t1%nu2E\|宀H82`]ankk얊g^Mej`^uІ0TꬩXtru+S% wP@AP"u-݇Rfl#ڈZOjUM|%#~X eΏ`iFy ]\R/#x R4 [jN]̓Rd/$rЭĸ@a `A +z[@ء+ۊI:}2ؚ4])nuuL!;-87 NKu]ɡS#jr ±3LΫrmqZs"Z@"R_ W@@ 4Dk= sR !:m]`Յ276X_ŽlfK@,z[f[iٽ,AiR\So7FDzpma_ $A]Q,yj26dkL)s-]͑a! jhe:s4WGµUMvcn BK[@z TӹiE5Rc򺾙uI:i8ǥF9OB = Gc 2nP=XI[ۋA2Wv6l a { V7%5!zҳ2jڂ.k;w,<" u='#psE  6>f :A}r9ttARu s9՗ iꋟ#'c5Z9>Rad0~3G 6lN )gNi?6Ɇ;աOXqO^=i}I[)Q_gعca# ,O)oϯ8r$̑t)ørzkM]-u ݘ`KM*h]`_fQRaV1tw8c`c舜"N1^S_{8 .\ڴIh_cc:d7>d+ iXrw}gBFTɽ`1w>+r;DkDZc^7'z39׸~T5 k'ĺ,"{4+oc&5WXo:@(ɤמc3h$)AyrPiDӲ֤k4YjǜAZp?T mv,q8͑6C28 #jʣhQoѸ`yi-D'bm{6"!ԕR2WS[UJ,t30: 9=C,gL 7qL4> stream xYK6W{!)>E[CukrwH,R5,4̓$Ѥ%@ќp(ҜQG%(F]O39MB>jAz7\]:a7P.\b ᴖ[VbTF)ȟ_]+IP&|an$7I@mrY\q />PG9~?qʛNuB)ݢ U aMM# HYfѰT-u;N?FR,UQKZC\8 KQ LQ:x Ai ܲmoKJ60@ۚ\pܚ -ƞVJFܚeP5V RS[iP$q  ω057eP< t OvSZ(8DOkR"{7x܍C!C ޖ™ vr> /Font<< /F1 7 0 R /F2 11 0 R >> /ProcSet[/PDF /Text /ImageC /ImageB /ImageI] >> endobj 105 0 obj << /R7 106 0 R >> endobj 106 0 obj << /Type/ExtGState /OPM 1 >> endobj 107 0 obj << /Length 28755 /Filter/FlateDecode /Type/XObject /Subtype/Form /FormType 1 /BBox[0 0 2384 3370] /Matrix[1 0 0 1 0 0] /Resources<< /ProcSet[/PDF] /ExtGState 105 0 R >> >> stream xܽm%OQG8÷1n~}3{IG=NPm`B?_?}OI;ZRzw_oH+]~Wz+D'(=Wߵ('U[9H޾oi>X7H/JeVlkע߳-( (9yx ZVz1z7q`6%nF`Ǐ;gO{AbBh7Y[A<%%G`t`K钠Zt"Y%gD<-M1l2S[*M+{yz!q5][C|yS: 5~MmYZlltp-6mL=vCjB5U b7K_VC K{\l_A{ l#}up|NP`{D+o7m[cNZPr+eSQnnPyX33}!LYA+hI*asR ]wJsT'ylҜ3[彘,ֽ5LLrty85gq`mCδ_a[Xtv]+`fbbV("e*6͘;59+ԽGc! O b?nk93GV`vqk,LQG`"sCI=xqEqj ,{Qq%0qY:>JrS+ O;y6*ri@Nz<γ[DH@ 2u;Q{ ~>!ۂmȆws77Ŷi :ؖR/Ul DN  5w=u l!>ƣPi8nTKh cApv{2م.6T k5Cq΅YA.Ln67 dlfNBa |;Mpi-eVTNj,|J 6[E_(Ti<2>=Z`mU2b}8me.n`M8D^_[7=56 yevPYH %a|o 񜭲CRltDcʼn}:+Ȕ?W>~}< ´Vxۂjiv2ɮ湔*,9 88$x48bQAUdiͫlg A.luqGwt4 k  fㄮqDCjPs!OGjηg>bZR8Q\#PIE92-GXʑ#yoV#Q9r1^b!gy7#FPV#^H.ln!E@vF"'^ӥ;e\`4eRY4b A|DtKP"#E@-EmG$H@L?,S-ǹA_Z!b㾋Y<]bebe1DPw41%;-FbJ=b$r{9½ڎU8#@sI#H0ToA<$z$ +߇Ice/y'l5uF;Lgp~Sses$frxxjrgdb-Y2g<](8Is!ACIm6I8cc#~$9Fјc;aZ弗/1a4Yp Pd jZZg}>()!~@g_8'<}p8lk9p>7kfueCt6`l>^aN!+SFeBj/8+k`͘.4zPm+}/$vq*\[D9I+x,1=yy/f*+~hkV |"ɬL/-KL)J:'76Zdsml~`4n0ޯOp yhr౉NRe/5t h le[c_AJg[m2:y?Qaڹ/ 6"{&J5db.p*1TL.?g5.m}9{]P+0>U3*5Qt7/I{//s,zVRN7r5d4rD+ yR ͆VUv }4V7[X{ ^Ɲ1Ԗtx{NLk>|p)n9FAƀSgic+h gՃRV&_ ZjCv/XutG/0#ӝyٌS3.Z}~lmU{Wqv2 #>ۨnH*_$,[D"6}ciQa-t(!E娜b}܌3Qew2坸ZzOsuP7]2? !\2@8B'h q u+8)=7emK7(p8h!GM:"}yd~ùu2*G7a$&}UƑsuKיywqR /z | #1| ۣ:lϫ),e~!@5ס |_T&V[ڃ0aYrivK{f#Ŷ11_::ۆa y5-~}ZSCsSo~ j7S1Gī U86HSF Wp`YQ6Cn5tXѾw  6OûdqQÇ=M5іI7!6k^]+E <:}!&&KR9=xM~[:+#yy[uau9b5~߶ǟ0>7g\͜?a.: .aNݐ.(SvyCG [2kZ)vaf@0|dxvec뛡zFos} aPC|%™!kڐ-=ݘ@~GKڝz49^䙻WW̙2/. PHЦ='|-l!<a=@ǚ|Z{k1έͱb^TV+}8!tWƆ^P qew8u7d@V"~IK=h#YQk@pJDWv[_lg{Xst[^. @~o؀f"xa vl[BɍeikxJkTL"^s(V TDh@%*,ssU1!l/QGcEcL};b޴s%S +.% X{YpXW #.KtڮӋa'ʱ)0piuݞw,9JSItO(d.MA.tΩ>*3_Hp$s+QqPH-f6~׸k* RqT7mrJc h!`cf+/{mvyH:B+.͎t_w>E:5:iޥ-vdiGihT7lu~%M Gj3 A;`w1V `dy..>B9b5W>ᯐ8 KY /'0=KRt,\.1 虃 |L^%Dsn]n p%|kٽ1ħض޼1?*gZ솔j \n E%F7+I|z)Lxǹ5AL]Ქ]jP6i#Krbes Ss$P~5jI+ d:d <aPTdQkUN (´Ƌ=îC=r o55(gz OHe*Gr;!mFjA1hr3 Ka{z@LrFx Tu6R~xL/ l.dV7:qy8ɝ4 mgg|p9Qni)]|hΛT78σ0{An TF7{)~y`-Zx`HZruR>F+ԶlUsXl)̾F;lBtôDsa{KLbef 3j䛁^RaɱJٱQ+T ߄N>]5W(hzh|Ep[60F}"ik\ \P,`w.PuEP!b)m#A"…n}םx3|akl@] xs=4H^ph2-DBў('Aac/LtyylIC9Ţ3{I⇾ N+iPpq Jw"D* |a;pE|n8A:l>ͨ`h Q' 1G$W0{ ՘>Eɼ$;5u}.&Q]\h׹ cnG"l yi٬y'u~pxno624.Nbjc1$Q_vX 'd!'$ż uN0uN([瘀 y We \9$Ÿv᝕uֹC~B%Η4RMq͙˱2j@|dc$mCly2 MOpHD#.HD}a֝kw$7}PNz|wX^'Pʭ~㨟u=۶EgI:^SbŖb,KF$,ѧLD 0 Kr}vi=Nlti]G{ DhZ8!kkM-r]c˲R>Z/F9~> $6BG)qz,_$p؇ 9s=*u 3+&ۋTdx/Oý?4[~`1"|.$0 6W*h۔672PEnBLI!/>#/D_lu5jbhaL]M^wnަ K.Er-:7\R[Jޛn-`߼?'܎Aݢ=N_ij!/04}C50]Uds!ƌ<~?_!tJɴ>#U3j 6ݳ%A6.p5gwxM-^:g,sU"ҌHT)yQŲ%>сlOB}Q~N@{e~scݚ`Int0iE mA^(\$lRxvtj]i]%Nh8Ƹe@*`^ex1 3cOHh cc%$ݲrA&[_TUd{ ،!;Bo )$ ]='6I&|ޗE8{PwaޏW+ށЩtPu>,D{ ,f[WGC 5d0+UQz%3ʨt qga!6k`E,f{+Y8o>7RJk,#:"{ j픻8HMn%TUV@yF2{Fh(*fi5ց#(1mo4\^AopأrAn-41w ˂&,W#XW9-"u+7 4#6oaD!H N".n\iDգG]ŷ O =^⸤7 ̋G ¡K]k`c\z$ajbG: m|BGܫ 10#Ey#Oe\ʔ Lbj$8jSѫ7Ғ'9ՙ²J𑮆yT |>(/-8;-8븾Q4(rP3#aW>Sa Q IcF 1/8,]B^ߤO{tn]5WHXԃgvr1;tABĹˊXtiCc /Fďx9P('T(0n ENꍮp T,y2.DN^&Xh5t-y-okޓ4xxoW@XK>ʅ5Ix5AnUE^\haآ:.f SAaM}6{Y3F8Q VxP|MP|C;4Q큉ڊ3(BJAͮx4~tuF(^ +&ztg`bTP@PxC>upP#|®:T)=my>7;8a6+GkN4g`Ŵ63\3RLuotU"%,+s]c.o@09I$HLt7g!I.I 3CRgƜ.^^j :)$gD5qFj5CRIy?O%q.v!yxL(+hBM?\Dl^ֺ!mHw KTUYWpCOOyIx _Sr5B*LҨWN~'ddh%ar K՗V ̴i V}ŮoSݟ6ڼy;\1ӷiÁXOÙ<i rNhێ' HճA$Z9 Ĉ|+ο@hN~#@.so@fKA|Wmxis9oOGZ3x ByS34CQ.\ H< 6Oȡa?-#8j 8r -ޜSy(Ln;UP/p-5"ˠ餲c17%8qMc~/kCsM5V9wz zVCbGϱ^Ϸ|M~> *z/8ޚ=B \Ӗ~ eoW<`Mni?>.@ 7E@KCǷAm&Ǫ*B =0?7~>GY&DK-TP b]s; 6QV6Erx·#شȐdIb0|ł7dN`A<' .W8 z°S9C>+\~~@μ/gA:hB Jk1A]b!kqAMg0 ?nĠKw[1\e, 3P!i\z @Qyrp;F)X n80X"2"ewxic`hfo 66`lN2 Y-"|x so`(>I(e(uևcɢrE"#%]؜5!lۚE4WBcl+VL%Tð@CzqSp=}K 66蝾x">ȉ[Sc9l,Dߗ6?g 伇HnH5j !>`S6<I>S,]M8ẄOغ 9猫O8!'Ug" /4 d_p3R+X^,'xXj4^ ] ˆtMiNp>?l4E=<<WM8 yb n'Igos@/q h߾V/Vlwl^`ۃhAG{ːkK5UHQ:?.1D|/ee[ =.e],Q)Ք =u$XNK'B@cq?)v7vqj ?_ m?Uy E0ƍaZ•ַӓظO<ٙ[ =}rSnh~^xަXpʕE@& C\L{r {s5jkW|M A~^ `Ry,+dsȐ%WmК)n~\̱5 3Y]CNf)GspK:V eIGNlab뢀:c.?ੈ mPIC,%slYHL\0׼C3A <$-$#a![@?c n㘴'{ mpl0j pó3`윇d rn^a03~<82 砋.&IEޘxFv W/lQ!PE&z-}To,5p Jo{a >ͨah kXOd- ]|xJ_ 쐡U!lب+Wg4@] "~qݮ2_R?5JPyF3QFYsVBE LKCzM,Ã+4TEWUߩRU%* &֋u_Rŀ1j աO#d+?`!<_Ԁ0-݋r=DZuJi>W|Ε|o!|.M%ROIW_NjY&9 q` g4 fxf" _2a 7!BՔ&d0@hI!DUf \n]5&a2Uc,JљFWJ H*O $<w0j !"'oH=vLf8+$f&Ucb<C9U¸+i6vXA-^I.?|8= /6䲑p8u$9^W ъ$Xb f:=ү'&A0ҬpAv}*Ap,qʹr,~gc,W" ̗}z"K|} :tT⏈¢ }.hں&iARpL#լ|feжb-~}VE !T;#AeHN '7/x!x-0,!$>@G+v<n1wj͠ k^McZ} վoT.ƾ%Pm8GINk=8}㌩eg=o \㏑Aܨy_a$hoV5嘖C|U},k/|o :x=4ўtS]G@lރ!?x18"}WRp7'wx%C؝?wH!ʖ܋K镳q|{6\+|e,/ħȊ(K^l)FKZC 2|*ĚDd^0mpצ FxK;$7zL EMu]a"]ά1-g'- Y6Qeڭe 0qgYd\8BɰS?b!JޛxM3L6x+,5m&%'|`F Hc: :~B|"1Xs6Cye1\8fi[u.wyܐEq5h-+86o_RiɊ%6]jI7Y➚ {5d.w\lI(.tv176HfSWe)bh.?|ws2{̲5/% FLf=9(ҠO_N[d5\]SQ~7#2|}0 œ p4م!9 \ldd"qPEqAP$Z"I)KAԺ!9ͤ}+|,&ekk0["ec]Ռ=*Wsf.j`ң̍V}\5qJٿS\EZA$cawV-*it ѵ8}Hz7Gm2}=pǯt{ηyzҜ;9rc2_6nr3N۶sO[C)!V1M O˵C^&Rpǽ2;08 W3E $_L!u螒Ga u…>{X31ߓh05!,FC6 ^Y.-3#kQv>D@QKo1m1@2~dwׁM|@^GQHmoQt .-$JpOG1F%_#Rw)9+.̫wIRHdGpDL_[$rH$ByI˴؇$bq$2׶I"㩷$L$v. P>T-'֑D ҏ$:eD1Iu$9-0Gt93yڎBK,0ةP!9nA7A@?@1{с J&)OI_B! yE##Ny%1(i8R)G E9ЁH 2☷bufI;`jqKځȒ4%OGW7U}K/7ef3^g>y8e B2/e=_ǎ!hN-ir0;$U=vJn6 Zw Ff舯0m@_enow gȋoƂv$s֟[A@ܰdMemV Ԭ)ּ8-!5=L9 C}j=W6Nm1hm0x)]ȶ tz[NFm:Gnݺ(u,;Y7ޖ!a /4º\+$-9@nP_ ju^تظxl1T7a.BO%deYĴ ) 3EqPA]^&1/y;c~a3o'5FBj3^ɠ>3Qm.R:8 >0Hp;^!#/X8[bY#ɰaDb*Ҽjd\i цpX:^[!!Fi #{1>0cAV_ìy:Lh7峺njh֐coCoC}h>؉*3x_ rRlhSn|x~C _r瞪mĈ&֯ bU~3t$y+r` Xaӽ#,[!^3(.&Ua(\z8Vr/:r\DO NMf_Hb ,̅\}l^9+ܚlҒP`9kXY K9nT*S_K|*=y>!CbG?Ϸ|A~> l1}W(o'd2Ľ0@L*3g-)/j0ISj\#p: 5(%-.̷Ӯ9A+[}BD 8aǜ  "˻gA!:_x+kѲŨ濸P)jIx2h*!YjoG.DFd̶(] =.+x oNS`\(vO(MxU~tŎ #)  ;[kY 0SZ^镆^62y̫a rCgWs?}ë_ 2s.pw !Y96*oΤ]=m8 #Qn6h!6I1zj#9m>C4M2h)@ͭk4*Gp?{G8|scÑ|{?ٙ{7Q~su10(wUmWO'N}@G6nBwh|DAo8ڄΣ{OmeQ` A༉K'(gF a XU98JDW kV&*:5qf2DQ (+2hdl{a@T$l|`b1F^ W,4DX6Wce.+ݥ*o]҇Sf@D*v}A#0wmRpc5DYF$̻uZD՘)cYF0]lT4O/)qmݵgقB`,Knz| /X^1 09a&$qp0cmp2jWcp]9B~s8`gk+pC s8_pB!:_pHf KIIgg/x}uȺ EN˂N  p~ e~@.z7/ *~ 6}2Hz7"A"Ai\&5 у|pc0\_q2dѓ!T[mBH[4xRFb UJkcBg{p8G3_a>SPu CfHCvH_S1}.9T]1CnyV k:.=d2QLkDB;jԤKQgDuj(jI EB< lQA4`vgI \ywp\g_~.aDő"^wsVs<NCU䨹nW990 9ƣ QQW7Z=1fK rA+i'v4t@ Ef\ tGp2&H{deC(LIt`CLV44lqK8tE8 ~KEhA^˙\[ mCwaaa%Iof3|ďNcQ1'DGT|f#+wf Ai6{ rk 9̆Q6sUV%`gBa zqp=N:5&CJGNPҌ|̐zaTJ,thBP8,)gB!!%]n1y_ Wk),\6\J'ӂ]­m:;bL/WrcufyCeZa?ق6Ӳ$X@6dy8AHR3,/ +!CcnV/E 1]G-q,9y/s^3oc*3Z^ ^/5_CYyE?蕇Kv#m! rL-He*T Ie0mӗY¬zH5UƎ2"l')Tfd"_f Dyâ\- i;m8#CKy9 ¼?b ^O`YZ McZ-v,gV}A3XS^?opO-=b w:/PiyV|J+o.6{A.~;:n)p.7yw ֲeBfϵ2Lu/T`=sC||.8={W74Bei0r/[fpm"!e[ݰb7CM B0i[8ijFSw+8L_nrUhM):cw:ya E$] Bz9K'^Y\dJ뇫_}$͗߅tmUu0ih:z 2u>e|$eOO ϧ n53FPq<ũah[0R׮afu:݀3N ŝitPWM9 FOH( JN95[y\TNLS¦ϼ*rI㫁TS#~k-^./=[< 'nEq*\W?_rAJ@HQ/k,]~wyAY@{D{qRC4L̦]5B/Q>ku tl3e\iPU˲Aʽ77c‹º" \EQ|OA||Vi9ˮK/ (YQ@/H40u}pp _!9NOoGt:3AtOn>!mڕwS#u٣<鋀72ǮSBx -?+p~i$eky Ȏ`$j;12T֡Fv8.P5a8Q@x^ ;O-raZ}BZ?/Dל/ 2okD94uӴ^4I4`LC7Mm\M rQZݐvv3*MkCTQD5F/_ '"+ͣTag sXA3!uKdvF9vƌ3rYFCs2ۥ9vFh?13*rj6rS=BS=\*% ' qɲ{3\epPuB<ƍv3ƹo+RU2LIZ]A*M<vȕ]q$lVs,ðC-t$bՑn7M*|,D"s\v. ( :_EU4J(f hVęU !XF[Gҙj"-"Ѻ,d/J?"_BoT;&qH]_Ύ _?6SY@-`(N#l$˔BJ|1xԪXnH(Ҕ~V8&?ZcзT>#w!mR9ӡއ}.~;uܓEӻ! 9#씎v9;*Z>!E.yN*S:[9hr: .SlqzmBv-fzvE2ɲw9fr09pˁ }hF7ȇÁ 8Łp80Á>4)80F\ ZY0r](uoI& ]xsoZ_z_EZEO/(h}) FGѷw`x}a9~[zz8p}p`$W'ÁAS.TJyɼ52 R^fD]?,Âw濯5R?er"K)d/.l-=p VV8|B%EaUނ7|@~rd>!w+/=*r'$ZK#i^7s=4`ny.[O`SK5H stTjO4hp:lAx@>]Vpzv򬖤*L5h *[9 Ngmc&u(/V3d]So Rm Q<5]5zn,uKQ(Y#&ma oU\t`A'ҼиKl!VjctFix>D#^Y׻\lvl2(!%_q؂x.WɃWCtF P,`'!d#f(r65=ي2SS䣇f C1Ƭ`bFZUusry)Í< fwT_~t/@ށ"F:]'Y {0U?99< QZPƭg8ʌV#!<;i*ǐ`t(z,O jAհN2t P>3WgyFΦź2Ux;m/?d rs)ȥk6gliL,3Q .LC2af({%63=,jHV x)v>7Ł^ٜ\&H /NdU2/cl b %7Ix1]~%phi,~T!ZC.~Uo{>/Nd22M6hhZ!~m!) d烀~ ..n>$Yrk1߈]W|UTr*E0\S!:MuAHU"MM"U~sLxoLhP{IQy<)x`.//,-|a=5 PP6ȃZ1ؠNb İFFJ/>yN!3XC cygΡZ/(MFD#*^"՜/гr1S>+ 6hG~O;}ܔ:ͮrjPLӃ[ig楄g[WB^ f4(npjաbe(x >H-c9\,R:Sa|6 ɇTMuq.wDP] z)}KaF D+<' 3cX ^*[ƝԥWK:fQOj!/2qc探` ՌǔA/Ų@L ThBA֪afҊN@[W :اf A oGn0P' %v$/ jphn6oAI~f!cv09yYAN:dJǿ!kWDI %wNEyYr SNc%>7~ѡVA=됰 GOȭ%l%mq7s/kjr-dvH\1Sz@! { pH53dii{ǘbpL:?aۧk`m<{NHGDRgEimH݊H@L4"w&:[)[2H=>Uu WfD7b6C;UUQv|(]]ygzjуa3Fa؎QÜxx&yA7Z}BV9{6AgVs5bEW']nn{)n,b!5l*mR֨ct}U:joNFhHit1rvZ2O9-CIr#ehj>,ó|9ZZ ]()#! },,{]B&!^(ϻ/9w/#9ψ䱮3No?{yцCރ@~ ˚[;Ӿ,0z7Zd&9mfvy>fzjсa2aAR-M0Wڐ RimN˺@8 E+ _ZOW+%Ỉ1ө2&w([|su*Cߛm{[AVV75+ <^S< x®KӲHey_?X4t݌hkS4@ÉMџuZI : Y~dQQt_CL,ȼF^oN:ܜ]ID f ΅G a嶫>!~l`HaDe<:pE'0s%=+:FI83=agy)\ =|")m &JXdPz@/2-x!5ȧ8=>3#7! iAXrƦn1E՝Ea󰲅TA0Q3ub92jY^0d7"sLzyU9$Tjz4<<SG4l=4R0eh-WP~@72sQh"1Hmbe/Zá^#*Nm鲏Lj9Xs,a!z0<]0L(6WR(ڍ"I0 ƥ,KV9DT),>̏衏mL^GLFW(1X,=6 ?I0$+'OGR 3nyJf%YI1 h_WcQBsA`@!_(e,K+i%<^.U!Ч9 #&D3ɫ w䟊SUT5Ē5vq)* Md0ZAңTl2祈@=cK3-9 `JGgKKDU  g.Hi*gZ-f!}_֢!L^˙؅: 8yr-ՓrGIExArc)ontj֬BA"X]bk㳦v."[1C2!0Jb(Xy%pz9" ƹht:6x]>)4 &X<Ђw~"Ã_3z՛&];caKa.eVtA -@bv(0Z`dHJf.U][yo"䳉kϥ9(Ɵp/ih [`r5<*3B'c([60J zٌnheX_d9K>/NYe>CkjN\@4ij=2RxMӜ\yKBl@c25# 4⏑f9MpEAc<9'00 T6nkbaT01ɛ}Q u0 ЁFd9 <̙)v0Gs^*Aع+3 D}”!pic \R4s>IJa,iN|NQ޿.,ivγ&:؞lAb{?GACL8m]grԁqƏt R%s} 9?ֹM؝"W8CO)9jI̡z0 4MX wx!efT=8`'42T1~ ru5[}Bտ(7o{fXJd=뙚lۇJ= O@oO<y r \ b'3@⭃ ^ 01]-(c|P&ةo4YaFI8e㺿O6 { G2~NO4-ٿ:(l; nf25# f> pY9WqRVu0! ɧ9{{Jg\|@(A;:H| g|A#0w }<;UlU, ER=JCJڋGd,Lb LIezz>u>Rjc`9ߘ z+#xEe |GQbn>GK:e*wQ&8nbLL)WI!:4Bz2æW0(:DnH.q o2. e?Cٌv4y3$ iH(ɹH^ig27Wq`y\j UDۗ/4BXzsp;iMe񜪘esRbX o^,[Q`n==<} 2~ EсqA+iLL#th0DD Ce Pmc|60 9.RRԮOA/=wn|u-Wr0*qu!פk INĕ=[DLA灀n q@7CP"ƑЍ;tےqTxJw&rÏS oK8(cx1  8S6m97v9۞@n|C+ rc#x U߁O7kߓ=4eǑOt?'.Rj't#ݘZb,'vK[[68x6؇W3k08xˁJC-[NF vCp7_N@/oq($hLPV (R"bÍWuA"Yo/$!!CǴaxĺ+H+$=%& f7iiLP᫲kz162:%U&wĻC1`WX$'k>$8QO=%QH CO+gJY .JjJ;n:Rva}撣JS  sٹ@6pښAMg-c|LGSr?|~̠fd4si&YjђOʤ 4^ (:咥3<5{5L[rWγD 1-Yps.BsxAe߰jh勺2DOdL IpWVLV!tJ.RytL&AN-ɋ $D K"VwҶZwi+< Yq 5L)wJ 1[$yF|( 󓀎bd 0ɨ0;8L*:5=˶ @dVj8%*ǝd F endstream endobj 108 0 obj << /Filter[/FlateDecode] /Length 1093 >> stream xYK6W{!)>A9[Cݴmп!%HHX7jDaDs 錂8i @85p|!6RhG+SɋK'ʅKP!3uFYVHC9883KzU:Yʄcz̕* h-U. Pk!%c;\xsHj );txVW([ $iVc),V3 6:ֺzXc+1WÇ}\IŲ*jI3WZkk'q|:8 `)W-;vltj# Ty k˭jyYZiͽ+joX-55EGZAP+SsS0 U̓@}Ko8待$zX>ٻXf&)l4eC&Yr!9ƞII!+@9AeyEZEkbEcQIK6w5 ~r 3Ægj̳Z⾰hW` c+n,~1_v=Fe%4z/g\a(c2cLq]-ds:]T1(afboػ*OVÊqξs XM4۹qTX{I< .i"vB+(ՙ*PE4CElq&)uXt fNy kMjy%MPi&}P|;*@7w˔uA$(7|sTceK%U jKI^0)JD n[4S #bF̉ p?=[ F})wCϟS֏ b:k" wS< tIx:w|O6ҹIrE!)%N7IE1}@uYqVQ Ɖ~3fkJXt*o u$/UϿi`c#Fcٷ{:}#@=>F󋁢+LO[H$4P4~5})R/Eܵo?Þ endstream endobj 109 0 obj << /XObject<< /Fm0 6 0 R /Fm6 107 0 R >> /Font<< /F1 7 0 R /F2 11 0 R >> /ProcSet[/PDF /Text /ImageC /ImageB /ImageI] >> endobj 111 0 obj << /Filter[/FlateDecode] /Length 1068 >> stream xYϳ&DY\;M2|k{h'LT '7foO ?`dR gpG (&{I{ES_mKϯ%ϔ \*Jp!w-fJׯm.~xuOgt$c&̍& ,הh.{~=Β"ظKYeVA i3VkRآty*ǝX/y6-Q0ǝ>==;EbT^4 N>]~]>;o~d7(_ endstream endobj 112 0 obj << /XObject<< /Fm0 6 0 R >> /Font<< /F1 7 0 R /F5 11 0 R >> /ProcSet[/PDF /Text /ImageC /ImageB /ImageI] >> endobj 114 0 obj << /Filter[/FlateDecode] /Length 1075 >> stream xYM(Wp9 !n%ܜm7D3MUD;t#dD\IMY_'a=&X+boivǞUN@%7V=]/94(ͥ񻡁KE6DLiYej%?JIpJ'JB1fIΒrMY沥wa o.(q=?^~ʙNuZ]ov*akuh2†BG ꨻5vv<]l=˙$[,9`A5[[k f! 㗠xB nuāqe~]-)DW5sb5#`=R5Dk&A3YUFڲҠDqy*\ 2%h*Z8^{ ]"!RZ;EwkR.c .cqR8$aے%HBpȒE}6NRJYY9$ JsOضhѺڴXۡo(Ѥ)EMZ/nqiüp6rUoto S+4-aѣ[v?Fq%4dR8QƼeƸ㒍ut$"!Ұ*OV݊8l#~;\'pMv}-DQk,R8ϱĂe}6JyȃTpEy迉-$vkW5슟&XpWRB)yP &(7ﻉ QWkܭЖHqhj$i|sRbe׺F0ܫ 'yބ{/]7,˺m0Rϻ1 / zQ2'|;yR{6\pG}wA9I rk.]8 Ixljr M& StGIyl\@4D̰5߭Q:^@njNUl<ۨan'ǢHRPm%n+{lO22ֈ_* endstream endobj 115 0 obj << /XObject<< /Fm0 6 0 R >> /Font<< /F1 7 0 R /F5 11 0 R >> /ProcSet[/PDF /Text /ImageC /ImageB /ImageI] >> endobj 117 0 obj << /Filter[/FlateDecode] /Length 1070 >> stream xYK0+|CNxHp!<$Z"ā?8iĉ@|̗ `dRuO+ B\u*-QL]=ܳl5V }4yu)ypP54p\bHԘ<}lkVp N˃`ϿW8[% }3`$gI@cvYu21|Ǎg{Xͭx ߽}̟߿f/+]T|5uJq@ʚb H[apk[LqeZ@4nn JµCIͲ* gkkanXDkQULs;x L4nߎq%WhJ9xn4\,f쳱ǝPʏf$hf4KCܶʺlRո2Ip_AD+õ$0hH@~NqSF5)HiXj&I:nt!R(.C.3bCb`=ꓔRCVbI7m5Z7-v8v[%4ehH3C:̜ FՄgdtRYBԊ-aon[H#eےRDm)ga(c2c\\q:ybl̐EiE'fEpeSV8nq#j\J9XpL7ZB)yP*(?5$nJ!И]<7 . NJ( J A43k4&/xG]hnNDCSuƝocZJZzpj?H$L5y-`_m0H%Q2 `_On<. sQhi ԼxqvbzpA g2A0!9ߓM\B  x&cJ:Q6.@uYiVA 5߭Q:^@njN]lyV5Q*~~'QEe]LnyR)Pwߎd~_۷GG5V͋ endstream endobj 118 0 obj << /XObject<< /Fm0 6 0 R >> /Font<< /F1 7 0 R /F5 11 0 R >> /ProcSet[/PDF /Text /ImageC /ImageB /ImageI] >> endobj 120 0 obj << /Filter[/FlateDecode] /Length 1354 >> stream xYKo6WЃV\%QdA۠Եll/+ywA|(icE+q8߼4%@q|{<$B\Tc ϸ^ rOFM}#1dq@y4Lf} &$ #V: &xI~A**t (tW^2fPō77?* |pA/?ݼ#LtQpl_NPKt:8 +ȹB>)4i, KD]OsenG%Y$2)fg$zX7u1J5-@蔺S*RmH4j 4sG7.GnGc;%4>hA=97tAU+=7,4XJ$1uS!Lá^I*!q7Koohe;BI+<[y,r6$ *O6t!ŔL9pȐAؽ> )r!aPC"Te@Ždl7sD! ٜ53CLs7՘a\UNU[?»VC3y84B )yle;fcv,ne}q"!aA>49 <1P“h·SN5qD"!%\ ӄ܎7Z@i)Azb~߉-9$(g f)}C0bxj}.MXޖy[lfa KR'2] I>i׻RƠI̭n]O{3Ĭ֣-vQůD=~)Mhm7XU*uf}UtY%)yҗ`'08;GXr endstream endobj 121 0 obj << /XObject<< /Fm0 6 0 R >> /Font<< /F1 7 0 R /F2 11 0 R /F6 31 0 R >> /ProcSet[/PDF /Text /ImageC /ImageB /ImageI] >> endobj 123 0 obj << /Filter[/FlateDecode] /Length 1224 >> stream xYK6We CIS =؁-ŏmR"%3F`Mq8#x$ NeLxTW5F Ic[IcwCNLR! fH(6!L$堕y`J'=$/ !폔5Jr 3ʭ-caI@֯c=EdG]'Cu:Aߢ IXɔ|# H(p2$bl(t,4ΪVb<r%-IQ'o05($͢%܍{%X`HJ]v)gxR*ZGCּ怋J (8(КAPOk. ]PJ eF%nDQ#`-[ILySxH)phf fH>X%7}rBI+z2YXn2, *gxRb`!܀{8d h^F9d0(!zLEejSaE]ZQIC65 ~p& ՘aZ]mXKZ-yci 3 )y-+le;f[q,nd}q"!a/A>O[963=xb` gфok@D`9/%kpK  x/8STp[ܳIy(w5?)}M0b k=ɳ&zɝHg?UZvaX j|yL)`1E&C]۞ϝS3Ԍ#Ve->swk>$!{IKf /d&7i9ǡmxdZ g}1JgŻY9-&"= UjRy'K5U?hxoB4j7 _ld 8ZGd0{,o/o8=F1ϻrȍwc[j AJ" ﰿ&tj|[/x<\E}qZ]VXm|G/[ /U="y`W4Tŷ罵Wq3QU9yy>oǗ꥾@TXlmmOUuks:_]Yq^ ?Ǔ endstream endobj 124 0 obj << /XObject<< /Fm0 6 0 R >> /Font<< /F1 7 0 R /F2 11 0 R /F6 31 0 R >> /ProcSet[/PDF /Text /ImageC /ImageB /ImageI] >> endobj 126 0 obj << /Filter[/FlateDecode] /Length 1137 >> stream xYMs6WhbZNFv%' vC8mj,VRc5T(/IzU:AR̅" h4& &_ß (>o{HM??+]T|5u ppWV N:֑LV B kLGݭ)󇮇bdeU5֊f1g#h@ vuāe.o)ުM4PK[Ԛ  laDEZ3 Zh%խЦoX-[p+jkI0_D2LQ, /Nz mqQZ9EwkR.c .cqH*M1oRsg2(xCR.؃:)e9d(8(!m+Ѣ"ٹ}:QIc68ܤㆩ9/՘eܮ:]8KZ1m҈7xK)kږrv2c;K6Eaf,J.$jqNFtƹO$pMv:G˹$.K,pxZD)yP*('5$nR%KAḪ/5AE 1{XI|A&i Sz{˛C:ƍcPz' endstream endobj 127 0 obj << /XObject<< /Fm0 6 0 R >> /Font<< /F1 7 0 R /F2 11 0 R /F4 15 0 R /F3 11 0 R >> /ProcSet[/PDF /Text /ImageC /ImageB /ImageI] >> endobj 129 0 obj << /Filter[/FlateDecode] /Length 1155 >> stream xYKs6Whbkm&֭ӃGqS[de %kHHlǀ f$BpPl295k@%I#i`٪h꧍)sɞ KEY7DLimYc[%= 3%"$ m×=Drtk4"\5dBޭ1~`-w9x~#sE7c's:.PJr"rc?صB:N84lW(l(t[bg+ *kb9eQ- ,f[e,$q|:w8*`iWX/0([e{9WiXJֶ)x5g\̷fcO+%Tn2(ӚYDkֆ3Q߈\[nq+-Zk9H s"LpY'^)B/]dD@} 'nIu,Ru,r5"^mNCP\@%'8d,]1NrJEYJ9$sB1-:_+R{;me4gI3M:l=nX0D&< v5'XB M _ h/FosJ iȖZ8NQƴy8Jq%颈ɰE3AaWU,,jqNFrƹOlE4.5pDkI<3.i"Q*3E,h+CElq&Z 4fW}<O5&Hbi%eMPe hC)u H9Gη1G-%Vv[=7V%$/e%4`|YwF|f#bF̆}p?Ԟу`(4(Լpq>n" x! k#=ٴ '( Dt8RC$>^Dqg`7c&W%J+YǏ韄龴7 l!n4>ֱ<n|H}8MZC]HI,ɚp C ̰*6NX:̳uuuX H,Zi=[ MePro_)+KǤA endstream endobj 130 0 obj << /XObject<< /Fm0 6 0 R >> /Font<< /F1 7 0 R /F2 11 0 R /F4 15 0 R /F3 11 0 R >> /ProcSet[/PDF /Text /ImageC /ImageB /ImageI] >> endobj 132 0 obj << /Filter[/FlateDecode] /Length 1236 >> stream xYK6WhpH")&MSdʰ@~H&0Hi5I#H g 'Ϸp@\T knf{&M}B*A>L:~7$P.Lb *1S,lKRRQF/O9g8%!Ra$gI@4Y6^2P|ą7?jdׂ.| o73]|w2Z73-8 $VcI4ù*T-tzSb֑,>?l]x!~Dıf8)$mL0. [0EƱ ֜)]>Nr)JR\z 3$.OE|?obS^x hCx.FCb̍ p .pj+xێƍ\.ܼ ^aֽyUxO;F* endstream endobj 133 0 obj << /XObject<< /Fm0 6 0 R >> /Font<< /F1 7 0 R /F2 11 0 R /F4 15 0 R /F3 11 0 R >> /ProcSet[/PDF /Text /ImageC /ImageB /ImageI] >> endobj 135 0 obj << /Type/Annot /Subtype/Link /Border[0 0 0] /C[0 1 1] /A<< /S/URI /URI(/usr/share/doc/pbuilder/pbuilder-doc.pdf) >> /Rect[59.72 176.43 274.34 194.21] >> endobj 136 0 obj << /Type/Annot /Subtype/Link /Border[0 0 0] /C[0 1 1] /A<< /S/URI /URI(/usr/share/doc/pbuilder/pbuilder-doc.pdf) >> /Rect[59.72 154.52 203.96 170.86] >> endobj 137 0 obj << /Type/Annot /Subtype/Link /Border[0 0 0] /C[0 1 1] /A<< /S/URI /URI(http://pbuilder.alioth.debian.org/) >> /Rect[211.86 154.52 258.15 170.86] >> endobj 138 0 obj << /Type/Annot /Subtype/Link /Border[0 0 0] /C[0 1 1] /A<< /S/URI /URI(http://pbuilder.alioth.debian.org/) >> /Rect[59.72 132.6 318.63 150.38] >> endobj 140 0 obj << /Type/Annot /Subtype/Link /Border[0 0 0] /C[0 1 1] /A<< /S/URI /URI(http://alioth.debian.org/projects/pbuilder) >> /Rect[59.72 87.39 281.4 98.52] >> endobj 141 0 obj << /Filter[/FlateDecode] /Length 1334 >> stream xYKo6W!%h޲ɭ!(D~ċCҤ$zX1v K3d ?@JN8cP WdN@!9Uա&OvwR(G!ȗO璃IWC$-EӟԘmN2+(xc䷭IzY:QR'%dDx1=nzɩV@3]d|u273]* /VGR3K]2 U (t0u7έSb=O:wғL6ˬs7͵֊a1AG%`JJ]%4xSjZGC|hC9b|4#~2SJӣ9 Jf40KCTBa,R*xe/ <%̒8VJfIiy%Էs!Iy,-2$ 5xS:eC2bCb~2ORJ2sH^貔hQؑ4an(1)tqyHۂS7j̲Z}ho ]+fZ`nӣݼ~\B)CƔ"9-rF;D;nXg.&1 Habi؋:Of݌qβBpƹO"4}DKl$ĈqFK(M34(AIW,5$J!'e<4#.Ƈ 'c;)4=Ӡ$AC '8x&bE` 1Y8a|93c;ھo[[\Y"6^Mn)pmh @s?os endstream endobj 142 0 obj << /XObject<< /Fm0 6 0 R >> /Font<< /F1 7 0 R /F2 11 0 R /F4 15 0 R /F3 11 0 R /F6 31 0 R /F7 139 0 R >> /ProcSet[/PDF /Text /ImageC /ImageB /ImageI] >> endobj 144 0 obj << /Filter[/FlateDecode] /Length 1028 >> stream xYM0+|CI8]@Yegtv[jոϛgL b# ncvǞm9+%l=ܲ;͚zCCb_n.%6 \V61݆HԘ]<}(lk%X}I/pH'HBih=`$gI@cYⲵn21\P=F]߿o?.6f$̭J..UF7VXG[ `t[aC#;AI<]L=˙$[,9`ak6hfJ{78V(Sܭ8N )MkvҭRDCdikZ3"ݚVJD)ߚyP5, ]qVe5nFQ#`-T+ȘSSapi#AH%w}Bd햤\"\"WT8$b[-t!RT\@!\g8$"!!IL)! @!AqyBi[M)ND&,j I ӧ #Gj±}dt;-a-kH#f[-y[g9ʘwfK\;,P'OYL-b( |=v +㜲xqƹO$pMv:G ˹$s,pgc -g<(BQ WBlq&]]R +~R "VRD)yP &(^}7R|;*%@7w#$845+6樤ʮUA pNKkقe4)a D>P$s`?1ɓնgÅw {. e;K05'i8A\1= [d~gAZ0!9ߑMm]rSp~ű(Vw f`6c&V%Jݕ, Ty8zXƒ6jئ4;ou?'LqV endstream endobj 145 0 obj << /XObject<< /Fm0 6 0 R >> /Font<< /F1 7 0 R /F5 11 0 R >> /ProcSet[/PDF /Text /ImageC /ImageB /ImageI] >> endobj 9 0 obj << /Type/Font /Subtype/Type1 /Name/ZaDb /BaseFont/ZapfDingbats >> endobj 8 0 obj << /Type/Encoding /Differences[24 /breve /caron /circumflex /dotaccent /hungarumlaut /ogonek /ring /tilde 39 /quotesingle 96 /grave 128 /bullet /dagger /daggerdbl /ellipsis /emdash /endash /florin /fraction /guilsinglleft /guilsinglright /minus /perthousand /quotedblbase /quotedblleft /quotedblright /quoteleft /quoteright /quotesinglbase /trademark /fi /fl /Lslash /OE /Scaron /Ydieresis /Zcaron /dotlessi /lslash /oe /scaron /zcaron 164 /currency 166 /brokenbar 168 /dieresis /copyright /ordfeminine 172 /logicalnot /.notdef /registered /macron /degree /plusminus /twosuperior /threesuperior /acute /mu 183 /periodcentered /cedilla /onesuperior /ordmasculine 188 /onequarter /onehalf /threequarters 192 /Agrave /Aacute /Acircumflex /Atilde /Adieresis /Aring /AE /Ccedilla /Egrave /Eacute /Ecircumflex /Edieresis /Igrave /Iacute /Icircumflex /Idieresis /Eth /Ntilde /Ograve /Oacute /Ocircumflex /Otilde /Odieresis /multiply /Oslash /Ugrave /Uacute /Ucircumflex /Udieresis /Yacute /Thorn /germandbls /agrave /aacute /acircumflex /atilde /adieresis /aring /ae /ccedilla /egrave /eacute /ecircumflex /edieresis /igrave /iacute /icircumflex /idieresis /eth /ntilde /ograve /oacute /ocircumflex /otilde /odieresis /divide /oslash /ugrave /uacute /ucircumflex /udieresis /yacute /thorn /ydieresis] >> endobj 10 0 obj << /Type/Font /Subtype/Type1 /Name/Helv /BaseFont/Helvetica /Encoding 8 0 R >> endobj 150 0 obj << /Limits[(Doc-Start) (Navigation11)] /Names[(Doc-Start) 146 0 R (Navigation1) 147 0 R (Navigation10) 148 0 R (Navigation11) 149 0 R] >> endobj 155 0 obj << /Limits[(Navigation12) (Navigation15)] /Names[(Navigation12) 151 0 R (Navigation13) 152 0 R (Navigation14) 153 0 R (Navigation15) 154 0 R] >> endobj 160 0 obj << /Limits[(Navigation16) (Navigation19)] /Names[(Navigation16) 156 0 R (Navigation17) 157 0 R (Navigation18) 158 0 R (Navigation19) 159 0 R] >> endobj 166 0 obj << /Limits[(Navigation2) (Navigation23)] /Names[(Navigation2) 161 0 R (Navigation20) 162 0 R (Navigation21) 163 0 R (Navigation22) 164 0 R (Navigation23) 165 0 R] >> endobj 167 0 obj << /Limits[(Doc-Start) (Navigation23)] /Kids[150 0 R 155 0 R 160 0 R 166 0 R] >> endobj 172 0 obj << /Limits[(Navigation24) (Navigation27)] /Names[(Navigation24) 168 0 R (Navigation25) 169 0 R (Navigation26) 170 0 R (Navigation27) 171 0 R] >> endobj 178 0 obj << /Limits[(Navigation28) (Navigation31)] /Names[(Navigation28) 173 0 R (Navigation29) 174 0 R (Navigation3) 175 0 R (Navigation30) 176 0 R (Navigation31) 177 0 R] >> endobj 183 0 obj << /Limits[(Navigation32) (Navigation35)] /Names[(Navigation32) 179 0 R (Navigation33) 180 0 R (Navigation34) 181 0 R (Navigation35) 182 0 R] >> endobj 189 0 obj << /Limits[(Navigation4) (Navigation8)] /Names[(Navigation4) 184 0 R (Navigation5) 185 0 R (Navigation6) 186 0 R (Navigation7) 187 0 R (Navigation8) 188 0 R] >> endobj 190 0 obj << /Limits[(Navigation24) (Navigation8)] /Kids[172 0 R 178 0 R 183 0 R 189 0 R] >> endobj 195 0 obj << /Limits[(Navigation9) (page.11)] /Names[(Navigation9) 191 0 R (page.1) 192 0 R (page.10) 193 0 R (page.11) 194 0 R] >> endobj 201 0 obj << /Limits[(page.12) (page.16)] /Names[(page.12) 196 0 R (page.13) 197 0 R (page.14) 198 0 R (page.15) 199 0 R (page.16) 200 0 R] >> endobj 206 0 obj << /Limits[(page.17) (page.2)] /Names[(page.17) 202 0 R (page.18) 203 0 R (page.19) 204 0 R (page.2) 205 0 R] >> endobj 212 0 obj << /Limits[(page.20) (page.24)] /Names[(page.20) 207 0 R (page.21) 208 0 R (page.22) 209 0 R (page.23) 210 0 R (page.24) 211 0 R] >> endobj 213 0 obj << /Limits[(Navigation9) (page.24)] /Kids[195 0 R 201 0 R 206 0 R 212 0 R] >> endobj 218 0 obj << /Limits[(page.25) (page.28)] /Names[(page.25) 214 0 R (page.26) 215 0 R (page.27) 216 0 R (page.28) 217 0 R] >> endobj 224 0 obj << /Limits[(page.29) (page.32)] /Names[(page.29) 219 0 R (page.3) 220 0 R (page.30) 221 0 R (page.31) 222 0 R (page.32) 223 0 R] >> endobj 229 0 obj << /Limits[(page.33) (page.4)] /Names[(page.33) 225 0 R (page.34) 226 0 R (page.35) 227 0 R (page.4) 228 0 R] >> endobj 235 0 obj << /Limits[(page.5) (page.9)] /Names[(page.5) 230 0 R (page.6) 231 0 R (page.7) 232 0 R (page.8) 233 0 R (page.9) 234 0 R] >> endobj 236 0 obj << /Limits[(page.25) (page.9)] /Kids[218 0 R 224 0 R 229 0 R 235 0 R] >> endobj 237 0 obj << /Kids[167 0 R 190 0 R 213 0 R 236 0 R] >> endobj 147 0 obj [3 0 R /XYZ -28.35 0 null] endobj 161 0 obj [14 0 R /XYZ -28.35 0 null] endobj 175 0 obj [18 0 R /XYZ -28.35 0 null] endobj 184 0 obj [21 0 R /XYZ -28.35 0 null] endobj 185 0 obj [24 0 R /XYZ -28.35 0 null] endobj 186 0 obj [27 0 R /XYZ -28.35 0 null] endobj 187 0 obj [34 0 R /XYZ -28.35 0 null] endobj 188 0 obj [40 0 R /XYZ -28.35 0 null] endobj 191 0 obj [43 0 R /XYZ -28.35 0 null] endobj 193 0 obj [46 0 R /XYZ -28.35 0 null] endobj 194 0 obj [54 0 R /XYZ -28.35 0 null] endobj 196 0 obj [57 0 R /XYZ -28.35 0 null] endobj 197 0 obj [60 0 R /XYZ -28.35 0 null] endobj 198 0 obj [63 0 R /XYZ -28.35 0 null] endobj 146 0 obj [3 0 R /XYZ 28.35 272.13 null] endobj 199 0 obj [66 0 R /XYZ -28.35 0 null] endobj 200 0 obj [69 0 R /XYZ -28.35 0 null] endobj 202 0 obj [72 0 R /XYZ -28.35 0 null] endobj 203 0 obj [80 0 R /XYZ -28.35 0 null] endobj 204 0 obj [83 0 R /XYZ -28.35 0 null] endobj 207 0 obj [86 0 R /XYZ -28.35 0 null] endobj 208 0 obj [89 0 R /XYZ -28.35 0 null] endobj 209 0 obj [92 0 R /XYZ -28.35 0 null] endobj 210 0 obj [95 0 R /XYZ -28.35 0 null] endobj 211 0 obj [98 0 R /XYZ -28.35 0 null] endobj 214 0 obj [104 0 R /XYZ -28.35 0 null] endobj 215 0 obj [110 0 R /XYZ -28.35 0 null] endobj 216 0 obj [113 0 R /XYZ -28.35 0 null] endobj 217 0 obj [116 0 R /XYZ -28.35 0 null] endobj 219 0 obj [119 0 R /XYZ -28.35 0 null] endobj 192 0 obj [3 0 R /XYZ -28.35 0 null] endobj 205 0 obj [14 0 R /XYZ -28.35 0 null] endobj 220 0 obj [18 0 R /XYZ -28.35 0 null] endobj 228 0 obj [21 0 R /XYZ -28.35 0 null] endobj 230 0 obj [24 0 R /XYZ -28.35 0 null] endobj 231 0 obj [27 0 R /XYZ -28.35 0 null] endobj 232 0 obj [34 0 R /XYZ -28.35 0 null] endobj 233 0 obj [40 0 R /XYZ -28.35 0 null] endobj 234 0 obj [43 0 R /XYZ -28.35 0 null] endobj 221 0 obj [122 0 R /XYZ -28.35 0 null] endobj 222 0 obj [125 0 R /XYZ -28.35 0 null] endobj 223 0 obj [128 0 R /XYZ -28.35 0 null] endobj 225 0 obj [131 0 R /XYZ -28.35 0 null] endobj 226 0 obj [134 0 R /XYZ -28.35 0 null] endobj 227 0 obj [143 0 R /XYZ -28.35 0 null] endobj 148 0 obj [46 0 R /XYZ -28.35 0 null] endobj 149 0 obj [54 0 R /XYZ -28.35 0 null] endobj 151 0 obj [57 0 R /XYZ -28.35 0 null] endobj 152 0 obj [60 0 R /XYZ -28.35 0 null] endobj 153 0 obj [63 0 R /XYZ -28.35 0 null] endobj 154 0 obj [66 0 R /XYZ -28.35 0 null] endobj 156 0 obj [69 0 R /XYZ -28.35 0 null] endobj 157 0 obj [72 0 R /XYZ -28.35 0 null] endobj 158 0 obj [80 0 R /XYZ -28.35 0 null] endobj 159 0 obj [83 0 R /XYZ -28.35 0 null] endobj 162 0 obj [86 0 R /XYZ -28.35 0 null] endobj 163 0 obj [89 0 R /XYZ -28.35 0 null] endobj 164 0 obj [92 0 R /XYZ -28.35 0 null] endobj 165 0 obj [95 0 R /XYZ -28.35 0 null] endobj 168 0 obj [98 0 R /XYZ -28.35 0 null] endobj 169 0 obj [104 0 R /XYZ -28.35 0 null] endobj 170 0 obj [110 0 R /XYZ -28.35 0 null] endobj 171 0 obj [113 0 R /XYZ -28.35 0 null] endobj 173 0 obj [116 0 R /XYZ -28.35 0 null] endobj 174 0 obj [119 0 R /XYZ -28.35 0 null] endobj 176 0 obj [122 0 R /XYZ -28.35 0 null] endobj 177 0 obj [125 0 R /XYZ -28.35 0 null] endobj 179 0 obj [128 0 R /XYZ -28.35 0 null] endobj 180 0 obj [131 0 R /XYZ -28.35 0 null] endobj 181 0 obj [134 0 R /XYZ -28.35 0 null] endobj 182 0 obj [143 0 R /XYZ -28.35 0 null] endobj 238 0 obj << /Dests 237 0 R >> endobj 3 0 obj << /Resources 13 0 R /Type/Page /Parent 241 0 R /Contents[12 0 R] >> endobj 14 0 obj << /Resources 17 0 R /Type/Page /Parent 241 0 R /Contents[16 0 R] >> endobj 241 0 obj << /Type/Pages /Count 2 /Parent 240 0 R /Kids[3 0 R 14 0 R] >> endobj 18 0 obj << /Resources 20 0 R /Type/Page /Parent 242 0 R /Contents[19 0 R] >> endobj 21 0 obj << /Resources 23 0 R /Type/Page /Parent 242 0 R /Contents[22 0 R] >> endobj 242 0 obj << /Type/Pages /Count 2 /Parent 240 0 R /Kids[18 0 R 21 0 R] >> endobj 24 0 obj << /Resources 26 0 R /Type/Page /Parent 243 0 R /Contents[25 0 R] >> endobj 27 0 obj << /Resources 33 0 R /Type/Page /Parent 243 0 R /Contents[32 0 R] >> endobj 243 0 obj << /Type/Pages /Count 2 /Parent 240 0 R /Kids[24 0 R 27 0 R] >> endobj 34 0 obj << /Resources 39 0 R /Type/Page /Parent 244 0 R /Contents[38 0 R] >> endobj 40 0 obj << /Resources 42 0 R /Type/Page /Parent 244 0 R /Contents[41 0 R] >> endobj 244 0 obj << /Type/Pages /Count 2 /Parent 240 0 R /Kids[34 0 R 40 0 R] >> endobj 240 0 obj << /Type/Pages /Count 8 /Parent 239 0 R /Kids[241 0 R 242 0 R 243 0 R 244 0 R] >> endobj 43 0 obj << /Resources 45 0 R /Type/Page /Parent 246 0 R /Contents[44 0 R] >> endobj 46 0 obj << /Resources 53 0 R /Type/Page /Parent 246 0 R /Contents[52 0 R] >> endobj 246 0 obj << /Type/Pages /Count 2 /Parent 245 0 R /Kids[43 0 R 46 0 R] >> endobj 54 0 obj << /Resources 56 0 R /Type/Page /Parent 247 0 R /Contents[55 0 R] >> endobj 57 0 obj << /Resources 59 0 R /Type/Page /Parent 247 0 R /Contents[58 0 R] >> endobj 247 0 obj << /Type/Pages /Count 2 /Parent 245 0 R /Kids[54 0 R 57 0 R] >> endobj 60 0 obj << /Resources 62 0 R /Type/Page /Parent 248 0 R /Contents[61 0 R] >> endobj 63 0 obj << /Resources 65 0 R /Type/Page /Parent 248 0 R /Contents[64 0 R] >> endobj 248 0 obj << /Type/Pages /Count 2 /Parent 245 0 R /Kids[60 0 R 63 0 R] >> endobj 66 0 obj << /Resources 68 0 R /Type/Page /Parent 249 0 R /Contents[67 0 R] >> endobj 69 0 obj << /Resources 71 0 R /Type/Page /Parent 249 0 R /Contents[70 0 R] >> endobj 72 0 obj << /Resources 79 0 R /Type/Page /Parent 249 0 R /Contents[78 0 R] >> endobj 249 0 obj << /Type/Pages /Count 3 /Parent 245 0 R /Kids[66 0 R 69 0 R 72 0 R] >> endobj 245 0 obj << /Type/Pages /Count 9 /Parent 239 0 R /Kids[246 0 R 247 0 R 248 0 R 249 0 R] >> endobj 80 0 obj << /Resources 82 0 R /Type/Page /Parent 251 0 R /Contents[81 0 R] >> endobj 83 0 obj << /Resources 85 0 R /Type/Page /Parent 251 0 R /Contents[84 0 R] >> endobj 251 0 obj << /Type/Pages /Count 2 /Parent 250 0 R /Kids[80 0 R 83 0 R] >> endobj 86 0 obj << /Resources 88 0 R /Type/Page /Parent 252 0 R /Contents[87 0 R] >> endobj 89 0 obj << /Resources 91 0 R /Type/Page /Parent 252 0 R /Contents[90 0 R] >> endobj 252 0 obj << /Type/Pages /Count 2 /Parent 250 0 R /Kids[86 0 R 89 0 R] >> endobj 92 0 obj << /Resources 94 0 R /Type/Page /Parent 253 0 R /Contents[93 0 R] >> endobj 95 0 obj << /Resources 97 0 R /Type/Page /Parent 253 0 R /Contents[96 0 R] >> endobj 253 0 obj << /Type/Pages /Count 2 /Parent 250 0 R /Kids[92 0 R 95 0 R] >> endobj 98 0 obj << /Resources 103 0 R /Type/Page /Parent 254 0 R /Contents[102 0 R] >> endobj 104 0 obj << /Resources 109 0 R /Type/Page /Parent 254 0 R /Contents[108 0 R] >> endobj 110 0 obj << /Resources 112 0 R /Type/Page /Parent 254 0 R /Contents[111 0 R] >> endobj 254 0 obj << /Type/Pages /Count 3 /Parent 250 0 R /Kids[98 0 R 104 0 R 110 0 R] >> endobj 250 0 obj << /Type/Pages /Count 9 /Parent 239 0 R /Kids[251 0 R 252 0 R 253 0 R 254 0 R] >> endobj 113 0 obj << /Resources 115 0 R /Type/Page /Parent 256 0 R /Contents[114 0 R] >> endobj 116 0 obj << /Resources 118 0 R /Type/Page /Parent 256 0 R /Contents[117 0 R] >> endobj 256 0 obj << /Type/Pages /Count 2 /Parent 255 0 R /Kids[113 0 R 116 0 R] >> endobj 119 0 obj << /Resources 121 0 R /Type/Page /Parent 257 0 R /Contents[120 0 R] >> endobj 122 0 obj << /Resources 124 0 R /Type/Page /Parent 257 0 R /Contents[123 0 R] >> endobj 257 0 obj << /Type/Pages /Count 2 /Parent 255 0 R /Kids[119 0 R 122 0 R] >> endobj 125 0 obj << /Resources 127 0 R /Type/Page /Parent 258 0 R /Contents[126 0 R] >> endobj 128 0 obj << /Resources 130 0 R /Type/Page /Parent 258 0 R /Contents[129 0 R] >> endobj 258 0 obj << /Type/Pages /Count 2 /Parent 255 0 R /Kids[125 0 R 128 0 R] >> endobj 131 0 obj << /Resources 133 0 R /Type/Page /Parent 259 0 R /Contents[132 0 R] >> endobj 260 0 obj [135 0 R 136 0 R 137 0 R 138 0 R 140 0 R] endobj 134 0 obj << /Resources 142 0 R /Type/Page /Parent 259 0 R /Contents[141 0 R] /Annots 260 0 R >> endobj 143 0 obj << /Resources 145 0 R /Type/Page /Parent 259 0 R /Contents[144 0 R] >> endobj 259 0 obj << /Type/Pages /Count 3 /Parent 255 0 R /Kids[131 0 R 134 0 R 143 0 R] >> endobj 255 0 obj << /Type/Pages /Count 9 /Parent 239 0 R /Kids[256 0 R 257 0 R 258 0 R 259 0 R] >> endobj 239 0 obj << /Type/Pages /Count 35 /Kids[240 0 R 245 0 R 250 0 R 255 0 R] /MediaBox[0 0 362.83 272.13] >> endobj 2 0 obj << /Title(what's happening with pbuilder? - Debian Conference 2007) /Creator(LaTeX with beamer class version 3.07) /Author(dancer@debian.org) /Producer(dvipdfmx \(20061211\)) /CreationDate(D:20070623215543+09'00') >> endobj 1 0 obj << /OpenAction[3 0 R /Fit] /PageMode/UseOutlines /Names 238 0 R /Pages 239 0 R /Type/Catalog >> endobj 261 0 obj << /Filter[/FlateDecode] /Length 233 >> stream x]Pn07* CBj H I,݌}PKbe{w.ں5:@`Fy%B6$/@i,E9 G"ULsۭk#(nuŞ5_Sk {k8C_"zmF8*8w MJ2+IpvBfD(-5MIШ]WxŠƤt"wG*{t(grEUzs> stream xcd`aa`dduus v  8f!Cq9n0׮ A~y@DꁈGB ,,~zE% Κ Eɉy %%@NBp~rfjIcNBHGBPjqjQYj e%E )Ey @mg`bddϨ"S!OE -Y#N~I<> endobj 264 0 obj << /Type/FontDescriptor /CapHeight 694 /Ascent 694 /Descent -194 /ItalicAngle 0 /StemV 87 /Flags 6 /FontBBox[-65 -250 1062 761] /FontFile3 263 0 R /FontName/EBZNDT+CMSS8 >> endobj 265 0 obj << /Filter[/FlateDecode] /Length 338 >> stream x]Mo0 9n&J P9t_vtH#Dg' O:WTJ3(ky׫4^~sxyٷͼbf}vb_"~<J-t.pe_m4PnI8>Pq͕ex{LX6R_}VN8OrlaҍӨ3Se@a/ư$15&E^#>.˸ ǎcqF;Αi3YrX !勐lmgџϥw #E%r=DJ $wrt04> stream xڍW TfFQib!" +l"" .q!.( $I4ۤW=t{}45)z8ظwvj"b/i~/C4e_#^%N8T0鑕j*]aG}}J58:iUpHTMFcM3"7kW& p%973P'.eҏ8#ytRwq.X ܀p#AYu#pA|l@8o@8U`A#օAլ:ؠ/Fag_lZzѥ 8Ї C9 'Iʙ >< GW𴈟ҽۗQ:?A?VҤXRظl7so6+E%$*ErvG-KW'.&~2yV-9pg_>]J9j!:^_Zp5B#n9^z z޴ 6qN_9wܩQ# ﰾl Zn2P̑Ñk!hBk7e˜Y;C<_R;:/. 4 QvZ6bAlވp0 0 TC3T6XYk/SU0W\}:d 7+wW`]TnPuMs5߻5a rP`/-z%VTƚњmČB{ Z[͈ao h# ]I +Iv,Jڶn/fH`h/' E`#a.;ke74KAʡ(%(*tJ b=NFr8M8t*`g"HKbfc,c.n}oA:~&_CCe\W{']} .Hu_䱐BtT/Mut #8t`M^^l/yXPyRO(W[G%~WD "~aV:#vrm%o@.J/8vDnߒXWRBЙOX`Zo} ̡MDc jH<ڛRֻ ;d3$) rBj`~,G:hQ'p:?~X2ɘ\"`^ 22s5dM޽`5&u]җD xRG?QB˸ ?̔{ Ǩk=b?}bbfYlgoKԊ -}k瑆3 F_AGʾeqRbs(E&쎈EK.q/cI i ~zPיN.1`;jZM#HZō`('n٩5AD鬰Qr4 4"$^ yKPdyuMOnэmG2I_u*mmemTdm-E4/$Y endstream endobj 11 0 obj << /Type/Font /Subtype/Type1 /ToUnicode 265 0 R /Widths 266 0 R /FirstChar 39 /LastChar 196 /BaseFont/YQHHVT+CMSS17 /FontDescriptor 268 0 R >> endobj 268 0 obj << /Type/FontDescriptor /CapHeight 694 /Ascent 694 /Descent -195 /ItalicAngle 0 /StemV 76 /Flags 6 /FontBBox[-58 -250 939 758] /FontFile3 267 0 R /FontName/YQHHVT+CMSS17 >> endobj 269 0 obj [778] endobj 270 0 obj << /Subtype/Type1C /Filter[/FlateDecode] /Length 304 >> stream xcd`aa`dds v548a!C<q9n0>O zVY ?<%"+#Hd|JIQfb^zNjQfzFIqNs~A%ᬩ`hii TXX('gT)8( PJ-N-*KM8ֵh2BFO L3rٓ'uO1jgHM(뮬3r\_woI| m=wt\b^9/9> endobj 271 0 obj << /Type/FontDescriptor /CapHeight 0 /Ascent 0 /Descent 0 /ItalicAngle 0 /StemV 40 /Flags 6 /FontBBox[8 -463 1331 1003] /FontFile3 270 0 R /FontName/FSNITJ+MSAM10 >> endobj 272 0 obj << /Filter[/FlateDecode] /Length 326 >> stream x]Mo0 9v&BA+!ġ4e7L4B~Nz؁ym M<*am p fMO׆6u<(޲S*/*7$8A_vq8>8;_O.v N_✖>RތK_.$Ojh`4[+Xy0Ϳ;ʸ껶,KT x8B"!_}/8scx#HEH9Mt >x/sٮܢh2uJEfʕ_ @d@:!rDNwCpzlKݬ1Yvk7qYfe endstream endobj 273 0 obj [515 515 0 0 515 515 515 515 515 515 515 515 515 515 515 515 515 515 515 515 515 515 515 515 0 515 515 515 0 515 515 515 515 515 515 515 515 515 515 515 515 515 515 515 515 515 0 515 515 515 515 515 515 515 0 0 515 0 515 0 515 515 515 515 515 515 515 515 515 515 515 515 515 515 515 515 515 515 515 515 515 515 515 515 515 515 515 515 515 0 515 515] endobj 274 0 obj << /Subtype/Type1C /Filter[/FlateDecode] /Length 6686 >> stream xڥYt巟e١-$3HT:HGj%Ni$!u7=lMϦFK""*}z{vUT6n3wf0 tgz0=^LoFa2/0g^d2v=3yyy e12ÙHƑyżΌf778f<3Lb&3SLf3üe1Bf,f\%RfqeV0nJfYìe1 Yэ1ݘ2oYnP>S%/l#{^S{]轠7\3ϙbpߠ~>՟ ? `@րkZ؋^yこfgwAԗr_6 1qxD(L8ʄV_86AS?Ĉ2e{r-^Yj!ugZlgG^o#WY5er0Ezi=B&ڌg.sE|fTr{r7wBFQJqѐUƔeh`O,Șnj (FR&vL:b8XT' /򸺰"u 0cmb]0nT-8&O r+H. arE+:@䇜,;|snળK.yM&9>A#U?ys|֕j#EM.Cd[x+ CG&j!K̉jcq^w5|hQɥ χb373r9C>ZMdrߋRR)ԸҸby%ٻ8eQ*1Np?V\2i#Dɒ -FY [{#:^k##(Ro|J# E&D6QjUJtzx" *Vh9 :sHlQQDzfYFٙϰ "7}{Ss*(OI*:{|/>Y7Ni˖@ TJ|V@EAQU4!Ѳ4w =a.՘_^pDZ:]VnfsXqQxX37x@{.L|Y5 %&hApZF)pWOo BjҐmiQi) 1\J:v3J}h0` i SL#ݖ1;ijQ{-QI}b9b|P6TևŖ0{|ЈLFo'柽L Y?_$+h{]n|)sOWê\(B"N|v?>] θ&C^$ En_] b4@BW7pQF[k?T#U8grwt v6̺hczWMr|_zkE@(PSH߶v}X68%6! "I|ny>Т%~A LLdPݦ a;ټP#uK.nOJyľϫ]oغdHQ8Psxu^.ctȄʥ_SR5uj>ށd>qn%?{Uc8M D%Ej Ó"s@: G=@\TFfXf(hoa KMK]9MaŸY&(b/۶Ӽy@,5%Q’'҈[MhgNYb<юUsT ;[p؂i,.+>OYkYΤlsn~YPΔj`=5` mlqAwm6E m3:=;#4,c-o+)%AC&7e:Mkt;I8U8"3 :*MgX?;߆-ei{ '/E)&=. 6<S4L2%ēxgew;\٦ Hw Y &QaV5c;!1MRO-"=mӼjJSi{> QQ!uVVNv-vmk3v6ty0 UG:_g &=hc5ѸڶSD8lPxf( {T "ɶQ)dL1Ey*&YܦB6Ӂ{dEDw˩?$ZYqX_WuZM)ӎPNQ)r3o M~`=myye`3qmaQ*v+h4;Nþi jRc>nO`$%ekбmާ*kgJ3Bp*MݕX>5Ɵ7aF4Ay5B\hNQzM?{n:Yt܁U 0 L_&, ޡYLc_~hׄ?xJ[rX0Z| wNGt?|S98}>>! dÖA#4VF B@OF.W\WX#-$1)u:^*$ևTskgcMۣK׭۸6t$vpHm^K+3faޭ9#KS#Ҕ`VnZ:Us'^^J7kJ"Q.cy#7]K: ko:*kxuh|Mg^8Ɲ=} R8!SϭքLhI>hRh|ŅgwN6zt c)BG=N0"[r*NBﰷL4H2)X.-it+ N!ƮOg$~ˮS0T'u,ڷUo7+ES.)^.mr;ߛe1Dn%&{Q76HsY"CbxJYLz]ZQ50;)r UdFd} *#]:E,wIdVbA큌̲.xGl,b;cP L4lKzVbo"VeEqS6V*'phzj&%vV$pq;M5ۉ?^;Vߎ|v+x8C\N_g%_>=̿wkΜic{]Kb_]@h,VDHKOIdNgߌVLO+O]6ʣ+hlΐuhFB ,K[6y;`# .etફ;"2brEyJ5* ܲMM/{fCkg,3sJW:mB51BuV~{c? gtj8Q3sύ!R41an!Msљz bst鐜٘\eyqݵᰑp#]cM&8 88i^G<:4~^̣mBp{Y28//9֦rl=?ƞd_z6AY4:뒌JMCV痬SmEO.Vf >QA۴aփhӛA ܎>( N;=;{@4g Nh˟$j4d&Q_xG͑~};߿ d=q/_BQ.3Jl1]&9ރVVPggX9;5d?U UŶC,sMW#Q&ބ-JxX}n o_n3\n>۟Lqo/lȁSs*)l\V\;Wp;>ȧ [?+7XlKu64]RN#&YGդO{0n,q|g\QrQιzXX|(>|T: `~%} s/-#\]cwcؙQdRXOsߘ`U?U 'XZ:}ѹ… M՝A[PtEŒJ.«kmٔڨք&)U ~vSj4ڞRkӵWG9%U`.FϬӳ.6;0bAF(}~ {1<> endobj 275 0 obj << /Type/FontDescriptor /CapHeight 611 /Ascent 611 /Descent -222 /ItalicAngle 0 /StemV 65 /Flags 6 /FontBBox[-1 -234 524 695] /FontFile3 274 0 R /FontName/SZGDOT+CMTT12 >> endobj 276 0 obj << /Filter[/FlateDecode] /Length 286 >> stream x]Qn ︛mV/dkcۦskR>`03#ȫRD i5A09e,N ;ލH׷.mC|m0F*m^pT?A2lp8G}fPw8\1ͪ,\\$&NݑgeP{wzI9-,si]qQAtJ 'o -X&B8ីD4o/l[X'fw _'m]nq endstream endobj 277 0 obj [525 525 525 0 0 0 0 0 0 0 0 0 0 525 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 525 525 525 525 525 0 525 525 525 525 0 525 0 525 525 525 0 525 525 525 525] endobj 278 0 obj << /Subtype/Type1C /Filter[/FlateDecode] /Length 1898 >> stream xڍT}TS7 7AzRڢso[\ 8ݔj$h $/@D2~L:gF[{f:iks]sgK@ ڝ}IDI>/JcII!/LE/ xVȿ(bg- qKA]xv'v IRW Vnժ23עhہY2U@iZ.JWE`rCLPJ+S6 ښʍ2U6AyD(C *!A4b&ED1D,GKG )@O$$"XMAKj%M4[ uZC ׊@yP' r(UTry/4s>H '/kJԝc;la}MF?Wȧ/1f@afVAvVH!gJZDetl X}[7{?Rp8v] t܅}h8CbPCFmFa T-?CAgBveD"xqO՞L6ҩ@ ܉'=F +O?Vn ?%h34^+rϟ;}7cc*5Y}l']N;"7!fCmՕU%u@}+#Pŝ@wں\?g B;x#Nſa]Tes).j68 n5 hL<}GXhE#NL '&+\LL]b0n'\CWȘ:Q<%x>_E qsgEN ;*5yk˕Ch0cp?sNC 탵(a~ؿƉGέ&W*F1Lrg?VJM9*gumB~~}{nܵOӓ̕/jg끞im[4e<AXˠ^h?r>К% Pc ("RCP_kC)3'qm6\@ /X6}O_L/Ee9}R25g ʰ{TRQ,O ,.(:ਗ਼7tuo@x0rG2%yWyf2/O4Yf;=0^?E߂Y<`OQPV}PZ[Tss@[mBY Iq 3O{\78)I'|> Z6<AA9*&ӓ?Dg  hkKE$s8/d"ťKW]/|ʎx̞nŨ.U^WA߷8YhUr&h*m+m60 rmh~*R X+Sģ&Ham{*U,~7O/"qE endstream endobj 139 0 obj << /Type/Font /Subtype/Type1 /ToUnicode 276 0 R /Widths 277 0 R /FirstChar 45 /LastChar 117 /BaseFont/PGJMMD+CMTT10 /FontDescriptor 279 0 R >> endobj 279 0 obj << /Type/FontDescriptor /CapHeight 611 /Ascent 611 /Descent -222 /ItalicAngle 0 /StemV 69 /Flags 6 /FontBBox[-4 -235 731 800] /FontFile3 278 0 R /FontName/PGJMMD+CMTT10 >> endobj xref 0 280 0000000000 65535 f 0000145853 00000 n 0000145621 00000 n 0000140701 00000 n 0000000015 00000 n 0000000046 00000 n 0000000090 00000 n 0000146646 00000 n 0000133122 00000 n 0000133041 00000 n 0000134434 00000 n 0000152293 00000 n 0000002737 00000 n 0000003985 00000 n 0000140785 00000 n 0000153060 00000 n 0000004120 00000 n 0000005605 00000 n 0000140950 00000 n 0000005751 00000 n 0000006976 00000 n 0000141035 00000 n 0000007122 00000 n 0000008263 00000 n 0000141201 00000 n 0000008387 00000 n 0000009509 00000 n 0000141286 00000 n 0000009633 00000 n 0000009666 00000 n 0000009711 00000 n 0000160928 00000 n 0000023090 00000 n 0000024332 00000 n 0000141452 00000 n 0000024479 00000 n 0000024512 00000 n 0000024557 00000 n 0000040060 00000 n 0000041254 00000 n 0000141537 00000 n 0000041401 00000 n 0000042532 00000 n 0000141802 00000 n 0000042656 00000 n 0000043897 00000 n 0000141887 00000 n 0000044032 00000 n 0000044065 00000 n 0000044098 00000 n 0000044143 00000 n 0000044213 00000 n 0000045195 00000 n 0000046584 00000 n 0000142053 00000 n 0000046742 00000 n 0000048057 00000 n 0000142138 00000 n 0000048192 00000 n 0000049498 00000 n 0000142304 00000 n 0000049633 00000 n 0000051048 00000 n 0000142389 00000 n 0000051183 00000 n 0000052610 00000 n 0000142555 00000 n 0000052745 00000 n 0000053849 00000 n 0000142640 00000 n 0000053973 00000 n 0000055565 00000 n 0000142725 00000 n 0000055700 00000 n 0000055733 00000 n 0000055766 00000 n 0000055811 00000 n 0000055881 00000 n 0000057972 00000 n 0000059161 00000 n 0000142997 00000 n 0000059297 00000 n 0000060765 00000 n 0000143082 00000 n 0000060911 00000 n 0000062129 00000 n 0000143248 00000 n 0000062264 00000 n 0000063590 00000 n 0000143333 00000 n 0000063736 00000 n 0000065252 00000 n 0000143499 00000 n 0000065409 00000 n 0000066625 00000 n 0000143584 00000 n 0000066760 00000 n 0000068043 00000 n 0000143750 00000 n 0000068178 00000 n 0000068212 00000 n 0000068258 00000 n 0000086718 00000 n 0000087892 00000 n 0000143837 00000 n 0000088030 00000 n 0000088065 00000 n 0000088111 00000 n 0000117073 00000 n 0000118242 00000 n 0000143925 00000 n 0000118380 00000 n 0000119524 00000 n 0000144202 00000 n 0000119649 00000 n 0000120800 00000 n 0000144290 00000 n 0000120925 00000 n 0000122071 00000 n 0000144461 00000 n 0000122196 00000 n 0000123626 00000 n 0000144549 00000 n 0000123762 00000 n 0000125062 00000 n 0000144720 00000 n 0000125198 00000 n 0000126411 00000 n 0000144808 00000 n 0000126558 00000 n 0000127789 00000 n 0000144979 00000 n 0000127936 00000 n 0000129248 00000 n 0000145126 00000 n 0000129395 00000 n 0000129565 00000 n 0000129735 00000 n 0000129900 00000 n 0000163834 00000 n 0000130063 00000 n 0000130232 00000 n 0000131642 00000 n 0000145230 00000 n 0000131812 00000 n 0000132916 00000 n 0000138074 00000 n 0000137445 00000 n 0000139482 00000 n 0000139527 00000 n 0000134529 00000 n 0000139572 00000 n 0000139617 00000 n 0000139662 00000 n 0000139707 00000 n 0000134684 00000 n 0000139752 00000 n 0000139797 00000 n 0000139842 00000 n 0000139887 00000 n 0000134846 00000 n 0000137489 00000 n 0000139932 00000 n 0000139977 00000 n 0000140022 00000 n 0000140067 00000 n 0000135008 00000 n 0000135191 00000 n 0000140112 00000 n 0000140157 00000 n 0000140203 00000 n 0000140249 00000 n 0000135289 00000 n 0000140295 00000 n 0000140341 00000 n 0000137534 00000 n 0000140387 00000 n 0000140433 00000 n 0000135451 00000 n 0000140479 00000 n 0000140525 00000 n 0000140571 00000 n 0000140617 00000 n 0000135635 00000 n 0000137579 00000 n 0000137624 00000 n 0000137669 00000 n 0000137714 00000 n 0000137759 00000 n 0000135797 00000 n 0000135975 00000 n 0000137804 00000 n 0000138802 00000 n 0000137849 00000 n 0000137894 00000 n 0000136075 00000 n 0000137939 00000 n 0000137984 00000 n 0000138029 00000 n 0000138122 00000 n 0000138167 00000 n 0000136214 00000 n 0000138212 00000 n 0000138257 00000 n 0000138302 00000 n 0000138846 00000 n 0000136364 00000 n 0000138347 00000 n 0000138392 00000 n 0000138437 00000 n 0000138482 00000 n 0000138527 00000 n 0000136494 00000 n 0000136644 00000 n 0000138572 00000 n 0000138618 00000 n 0000138664 00000 n 0000138710 00000 n 0000136739 00000 n 0000138756 00000 n 0000138891 00000 n 0000139206 00000 n 0000139252 00000 n 0000139298 00000 n 0000136871 00000 n 0000139344 00000 n 0000139390 00000 n 0000139436 00000 n 0000138936 00000 n 0000137020 00000 n 0000138981 00000 n 0000139026 00000 n 0000139071 00000 n 0000139116 00000 n 0000139161 00000 n 0000137150 00000 n 0000137293 00000 n 0000137383 00000 n 0000140663 00000 n 0000145508 00000 n 0000141703 00000 n 0000140870 00000 n 0000141120 00000 n 0000141371 00000 n 0000141622 00000 n 0000142898 00000 n 0000141972 00000 n 0000142223 00000 n 0000142474 00000 n 0000142810 00000 n 0000144103 00000 n 0000143167 00000 n 0000143418 00000 n 0000143669 00000 n 0000144013 00000 n 0000145409 00000 n 0000144378 00000 n 0000144637 00000 n 0000144896 00000 n 0000145318 00000 n 0000145067 00000 n 0000145964 00000 n 0000146272 00000 n 0000146295 00000 n 0000146802 00000 n 0000146992 00000 n 0000147405 00000 n 0000147872 00000 n 0000152452 00000 n 0000152642 00000 n 0000152665 00000 n 0000153199 00000 n 0000153382 00000 n 0000153783 00000 n 0000154150 00000 n 0000161087 00000 n 0000161276 00000 n 0000161637 00000 n 0000161844 00000 n 0000163994 00000 n trailer << /Size 280 /Root 1 0 R /Info 2 0 R >> startxref 164183 %%EOF pbuilder-0.215ubuntu7/Documentation/debconf7/pbuildercycle.dot0000664000000000000000000000063112312041170021376 0ustar // (let* ((dot buffer-file-name) (eps (replace-regexp-in-string "dot$" "eps" dot)) (svg (replace-regexp-in-string "dot$" "svg" dot))) (shell-command (concat "dot "dot" -T ps > "eps"; gv "eps))) digraph structure { mindist=1 "pbuilder create"->"pbuilder update" "pbuilder update"->"pbuilder update" "pbuilder update"->"pbuilder build" "pbuilder update"->"pbuilder build" "pbuilder update"->"pbuilder build" } pbuilder-0.215ubuntu7/Documentation/debconf7/pbuilder.tex0000664000000000000000000001521412312041170020373 0ustar % % preview (shell-command (concat "xpdf " (replace-regexp-in-string "tex$" "pdf"(buffer-file-name)) "&")) \documentclass[a4paper]{article} \usepackage{graphicx} \usepackage{url} \usepackage{wrapfig} \begin{document} \section{What's up with pbuilder?} This is a document to explain what is pbuilder, what has been happening recently with pbuilder, and what will probably happen in the near future. \subsection{Concepts of using pbuilder} \begin{wrapfigure}{rt}{0.25\hsize}\includegraphics[width=1\hsize]{pbuildercycle.eps}\end{wrapfigure} pbuilder facilitates clean-room environment testing of package building through using a chroot image and extracting a fresh chroot image for every build. There are several simple commands for operation. \texttt{pbuilder create}, \texttt{pbuilder update}, and \texttt{pbuilder build}\footnote{pdebuild command is often more convenient} commands are the typical commands used. If you need more details, see pbuilder manual, \url{/usr/share/doc/pbuilder/pbuilder-doc.html} When everything is set, \texttt{pbuilder build} will accept \texttt{.dsc} file (the Debian source-package) and build the package inside the chroot. \begin{table}[h] \begin{tabular}{|l|l|l|} \hline operation & operation frequency & context \\ \hline create & once per base.tgz & create the base filesystem \\ update & once per day (unstable update) & update the base filesystem \\ build & once per package & build the Debian package inside chroot \\ \hline \end{tabular} \end{table} Let me examine a typical sequence of events in a day of a Debian Developer. %\begin{wrapfigure}{rt}{0.4\hsize}\includegraphics[width=1\hsize]{develcycle.eps}\end{wrapfigure} \begin{center} \includegraphics[width=0.6\hsize]{develcycle.eps} \end{center} pbuilder is built in to the process as a checking system to ensure package quality. \footnote{This is an example. Some people do not build package locally and entirely work inside chroots.} This is useful for initial testing of Build-Dependency, and as basic regression testing framework. \subsection{pbuilder Development structure} Let me mention a little bit about how pbuilder itself is developed. Currently pbuilder is co-maintained using resources provided by Alioth. Development is done mostly by Lo\"ic Minier and Junichi Uekawa, and occasional commits from Matt Kraai, and Mattia Dongili. Project page is available at \url{http://alioth.debian.org/projects/pbuilder} and home page is available at, \url{http://pbuilder.alioth.debian.org/} which provides the pbuilder manual. git is used for source code management, and the repository can be checked out by any of the following commands\footnote{ssh access requires account on alioth}. \begin{verbatim} git-clone git://git.debian.org/git/pbuilder/pbuilder.git git-clone http://git.debian.org/git/pbuilder/pbuilder.git git-clone ssh://git.debian.org/git/pbuilder/pbuilder.git \end{verbatim} \subsection{Derivatives and their status} There are several derivatives of pbuilder supporting different 'backends'. They use different methods for providing a clean-room environment. Let me explain some of them. \subsubsection{LVM port} Someone did a port to using LVM snapshot for base.tgz-management. There was some e-mailing, but not quite gone into pbuilder. LVM method still uses chroot as the method for segregation. The advantage is that LVM snapshot process is much faster than extracting a tar archive for base image. \subsubsection{user-mode-linux port} pbuilder-uml port exists. Apparently, it is working for most people. Mattia Dongili and others have been actively working on this port. base.tgz extraction is replaced with UML cow device support, and thus is faster. chroot is replaced with user-mode-linux session, which makes system calls a bit slower. \subsubsection{cowdancer port} Junichi Uekawa has been working on the port to cowdancer since 2005, and it is somewhat stable. This replaces base.tgz extraction with \texttt{cp -la }, which is much faster. Because of the way cowdancer hooks libc calls like open/close, it may interfere with package building. \footnote{etch release unfortunately was faced with Bug 413912} \subsubsection{qemu port} Junichi Uekawa has been working on the port to qemu/kqemu/kvm since early 2007. QEMU has COW block device support, so it eliminates the need to extract base.tgz. qemu port has an interesting advantage in that it adds cross-architecture-building support for pbuilder. I can potentially build and test ARM packages on my i386 box. \subsection{Further development ideas} \subsubsection{Installation testing} There are other projects such as piuparts which can be leveraged by pbuilder. pbuilder does provide example script for testing installation: \url{/usr/share/doc/pbuilder/examples/execute_installtest.sh}. \begin{verbatim} pbuilder execute \ /usr/share/doc/pbuilder/examples/execute_installtest.sh \ pbuilder \end{verbatim} This command will try to install the package using apt-get into the chroot. \subsubsection{Package testing} Package testing is a feature that is usually useful, especially since developer time is limited, and repeated manual testing is no fun. pbuilder includes an example hook script \url{/usr/share/doc/pbuilder/examples/B92test-pkg} which will test package after a successful build. The test files are shell scripts placed in \verb!debian/pbuilder-test/NN_name! (where NN is number) following run-parts standard for file names \footnote{no '.' in file names!}. \subsubsection{aptitude} pbuilder exclusively depends on apt-get. It might be time to look at what is missing to get aptitude working. \subsubsection{apt-key support} pbuilder currently lacks apt-key support. Since apt-key support is definitely available in the current stable releases, it is about time to start considering supporting apt-key. \subsubsection{build-dependency parser} Build-dependency parser has been somewhat old and suboptimal. Lo\"ic Minier has been working on refreshing it. \subsubsection{buildd.net-like support} pbuilder creates a bunch of useful build logs, but it lacks the notion of history. It does not have an infrastructure to aggregate and put them to use. \footnote{Some projects to create \texttt{pbuildd} did exist, but I am not sure if it still exists today. } Collecting past build logs even locally and comparing them between builds may alert problems, used in conjunction with tools like debdiff. \subsection{References} \begin{itemize} \item \url{http://pbuilder.alioth.debian.org/} or \url{/usr/share/doc/pbuilder/pbuilder-doc.html}: pbuilder manual \item cowdancer package \item piuparts package \item autodebtest: Ubuntu automatic testing system \item schroot / dchroot \item buildd \end{itemize} \end{document} pbuilder-0.215ubuntu7/Documentation/debconf7/pbuilder-presentation.snm0000664000000000000000000000000012312041170023064 0ustar pbuilder-0.215ubuntu7/Documentation/debconf7/chroot.dia0000664000000000000000000000256112312041170020021 0ustar ώ6nfKCz!l.S>Fm`7 !3X2 r~?ߟ?>|̌ )+Z3ӵ Hh_?o>$iF^O3sm?==Yٶ¬(,6/d7o kUXI5#Fdfx9-uMܼȊlf>ևif;^%OvE^kv**ʋ ;^T mSV_EO:aK\4?&k:X;#P@_qe+uGUQSv2.5O5uE+)cř?zIFkGnZ{Pℕ'IXJ3W{o1UWFCc!A$ o&:feNXZs-Ҏi.unֵ oIٚϿhmiE;i0'Lw'{SӠ9nk5Y `Ǩ8e;K^{f>;7#&~&;eNUyb:"g}u/iUyeۊ`?lCx}} :X9<!n:u<͗_Hm'K/L^76uaW k.6;ArkV= =HGiECOzbk􌀞@GixǓ`- {hQ,&4&?| iÖ+Mk(M`r.(Oƚ<#'Q @ lX@_\ԟqУ7G7Ώ#=Q9;M)'=8_s}γ'7ɇsk^ɓ/oҐi\2%]s!t!tۋ),~^G`* f'G<\OB|ba3y0ȇ )}4#u׿*>1LJ9>a a< ɯ&Wr%98#9P[raxD W9?/9/;/N' eA̛>@lIHfV+1tG!I1h~m܈pĭHthYO'rW}5NOP[qO~u~h(uEO(1̪2u}S4ՒuA R?Rܒm6<@_PKӾG|Iًt'}E%Z;u{>A| $m LkdMnF~߯gGb#K{CSLñF@S:4ͺdv94m['6/hʻtdv١)@^X6ԋEM;D= "夥],쫔x>+Ӡu,G#5dܔZ)ty#,hQo_]CƼ >k %SYsf귈,t=h&ft)9g=DiM dJM &Hr@>Fl() (rY(jO4( з`d XLs>2Cܬ{CX}JT74U"RwEbEP˚FMARFXS,A?ڑx üy"ARGnb0#nqS4t).p$dj)RI5 k Gf]a3n*}9|t+ ]8 Y'!{X#HH)y%3}%^۽ Hv]潭uL+I,κs7t/ym#nco_@Yzw]6 1۱g9^`:fgbau,ԓ^㿟s@¥>;]O42N8uL=UO;P쉐41żK~EZ։g|aI5Y}x`MuȆlJ0uwA@3֤#܍=:d\ȧ'Hwwize?U㕑*#퇛i5pbuilder-0.215ubuntu7/Documentation/debconf7/pbuilder.pdf0000664000000000000000000022751512312041170020355 0ustar %PDF-1.4 % 6 0 obj << /R7 8 0 R >> endobj 7 0 obj << /R8 9 0 R >> endobj 8 0 obj << /Type/ExtGState /OPM 1 >> endobj 9 0 obj << /BaseFont/Times-Roman /Type/Font /Subtype/Type1 >> endobj 10 0 obj << /Length 760 /Filter/FlateDecode /Type/XObject /Subtype/Form /FormType 1 /BBox[0 0 2384 3370] /Matrix[1 0 0 1 0 0] /Resources<< /ProcSet[/PDF /Text] /ExtGState 6 0 R /Font 7 0 R >> >> stream xUM1W8sؘTrD<:A<'L}NU鮗˫~8ul'hB.C Bʊio Ƚh(S =zkBdYbq5%[);ndn3K_\)X(&r6m]67yءFWcb (B_w4{oD *yWx U}C~1ݭYRl&ZeZK||Bt.\7_7uÖysX2ouf{ekn F)~Y\I?ޙ7;si {G Jv)l9iF2kv1_N.ĕAl9\%f+ ˉ {>pGi =讘˿O2\+WI<-Ij[Yp2J $׃I=7s{޶~zgzϐZxY.-… }ֶY5TӱjD?U)U=P=:{t>Ĩ?d endstream endobj 15 0 obj << /Filter[/FlateDecode] /Length 1385 >> stream xڥXKo6 WVklɖS6ݢE/EaӃb+Q?fȣ(9-P(")~E?S')IR' 8?>8Oyxv"J0Ϳ  1|ߟ<x .OcYo:)I9S }ǣIPJG\; Z6' d-RVb4 B'^/4eNz{p8{pfܩ>@1{d SFk٪2]$qdf D#E8$&QEk(OmˠDZci*~paO!=JDΟj߹o?Z"0$NOxrAQ^۸Lv'\N.Rx~m&/&$^I鄄|j&҈!ʏ&60q \D~׈.v0cO5ш$Ɍn>F zhn:xYkŚߠ P[ak^mo|4[A8Wȸ~0z&+Tmz軵QlDH/4|zY`hm{}hX(8>]T#73!4Ȑ*$L}v2! gчSڜBDr0σ%!>ԳJƓcp݇w<" endstream endobj 16 0 obj << /Font<< /F1 4 0 R /F2 5 0 R /F3 4 0 R /F4 11 0 R /F5 12 0 R /F6 13 0 R /F7 14 0 R >> /XObject<< /Fm0 10 0 R >> /ProcSet[/PDF /Text /ImageC /ImageB /ImageI] >> endobj 18 0 obj << /R7 19 0 R >> endobj 19 0 obj << /Type/ExtGState /OPM 1 >> endobj 20 0 obj << /Length 34261 /Filter/FlateDecode /Type/XObject /Subtype/Form /FormType 1 /BBox[0 0 2384 3370] /Matrix[1 0 0 1 0 0] /Resources<< /ProcSet[/PDF] /ExtGState 18 0 R >> >> stream xKd$Q'G~!ՓdPTuص^Hz=?9w_UJ+)__OmW#v?i9U}ݞ?)h/ n8h91i?/ן )?dj 4~7N0lB[6U w4Tq}{mmD'0Y[^ޜ8úqPׁ:1__Xw1H)ڲ1}R3YvXW?Kin's]?vulܾ׫-{Ϡi.jK& h`hO˜g]'ǡKb"1R7\t߃O؈݃=IŶO]F܄n/_ س}[g3t3{WiشamI06֝ݧjg B:.ξsq\a']g}ܙVl>=gR9kMy}Λ俥39N9~tu>,#=q D՟/ln&pk߀;—g'HB fIF0W/0zާ={GHާ;]͡>+8fmk"`SgCAеoEJy Ѯ&CYbbe.4{7ީ2E71oJq+[B(oNu䀜_do>wς!x~9oұrN쫲BŽ ٗ~`ߐ/n*\;pYx;xol۬COjq@ JmA'v_ش ~_ [)ixa8/1T=7v (\WHp~7`O}lPS}sN B~ =,I~CoWr2xG-Czw@VwBO&)?9MFKS@j%%@$B]V)Oী~ .O$)lY3)/"?{8!Z0Qj$86e.(PP8T/T~JSץ?. ޚaoε|C9Ĺt T!x,$!K]R}+x퍜/]m/U"Mʧz!@:XKu<{ `ΑKH,t,muտ Ka.D /uJ|+Rҥ蛚W<;ݼT_MreRRb>uK} QKGTy9=Ŏ-> z6zlz*nզ꟱)B<c?&nC2W|%Y Bzl(Jnޮ*@ l*Ul&'v?56Qo۾B!- @ P" [$I״ǃ7øy5'O DI3?dcکRm"2c2*@R^' ~@" PHBU-)ōɫhTmХbcBm035v=#iFO,Otm#V!l @- }}DyogvhLk7`fHPR^~~wņY+uQidmEY /,v,4gr*-",Z*M(Va0}Қ> ٧ 8_snoYI@hL:@/͜՘هkt~a|;4Id)7%=wMA~/q QBo?s øƈC!IUe|! gW5PyM>0Ѯ˿iaԲސ=Iԉ^$r~\b*b87a"f4(^;@ݏ>XM}gZ&4кu>1ˍ24;L~6Mc ELf!rgF[_Cz|o!Btr{A4Yt ? 'w#2V3[;VӶiJ#lxajF}L{WI~b )PJ6#b0X2MyhDS+z29ٿ”.n&Uz.*$(21vQƧ`$ԶXBޤ5hFܙVcTU n\_U5 KDNnlsC[[>R6. 8C;]_]*W>fx`vśx] c7ci6-)f;r:bFڻj7Z^=Ƽv۬v#,L{i_X{S$zpK1}|6[װ]3/H& fN ;U7X0&Ja\_Kȉ,!!}`@,>}a"T{;/ske$7w?S96KZnwS:M?XޚIqqG8$iK~V*z~}9*;v8;'}z(qf$}c4A:rN`*5)ʷ~Ao7bJfﴝH4郖ޔoUcPEV7(|0Pv(>ά |Gu\$}=DN_DkEÉv;Ed;3EԠ)odn~-v{toNgzNUrvvm^ܺi?ACHNۉ!;Xñ)^@NCN 2a'|Z\M Cr=to7gtﴝ'#9{{H{{zMfs[$5=.9r!f:s V=.hnIH 5gKyЬ$g>2>.0܌I")%Ts5] TNI4|=1]*-˥CxC)b%t^XB%?<$>kXOeeIֻ^'Cۏ10{.#fQLcgY@@8]Y 4i:|߰͢Ln~]ț!zxh:ccRYN1B GB@AՎ~-U3 {EF4e="b@U4d ˜:"Slݡ~ޛK }m .:^ZPzӎ٧,f= ,аq{|fsȞ+Mʍ&d?VZLWi*evڙwd 35kD޾ͺFG`)c6I|6IHq  bqL|x`4~LۭI k d˱q|l#ɰvrdP_7 ߴnV"'/emfm +,b S b~%eEdo鹾ܻL?:^}0Zŧeܣ0*:5^#:thE*8/{0 ye\\?xx`ucF{l1)4 W 0[y,Y!C_Lɣɔ"3}}o_,\Y#tm(-]ثZQZVcE!.ڜnRyͯC "F| n \"iio&0#:j(.ʼntHh-b>\ʄgw3Eۄ+pT蓢Iv\^AM5'U:qiaŦ^?>w hpAjBE+҃jޣW\@d$ 4c2L{C gc4HϷ6֝d1ʰn>^TyT11!2cPXcTv1&lL~um"0XxK47$7Qf"\Mrb:`no|TL|a_ HPc#ƴ0À,/wkg_L\ˈ{DVR\} BZULiڃ/цI{ĭO{X3 "#xR>ū]wA@w_a>b#SV2>ZP" 88|FMB3g*Q9$& (71(2AOзQC6P˥͛CąR¦-Tg yǡ^m0-S۶\k8H*&1IUXJvѰ OO1ƁN`z>` .f8 /C&ivX'=`Jж@ xkG"m"pB ܦVUDd2 ~Z6oS|jv #Rp25~O< {OQ_Ab '$pAcDEn #ҲSbBPOsW!=882qGMtO}"jWviB.rm p21w?2 A9_}CίzC=g]$,(d ș?ga7DL]4y 3, }$%Y)6:uziZjr;T/m2xVDt󴝲^ӃhÈwL¨{LҨ"Xf|`X%/ިha[IIqX ·[65;z2ouȋrs@^O:-7zL a_ ,oHPмA1+]' V`,,1s. s!~hzģI"&GbF.6.A >&a!&i#%_"DQA&EI>7YSP7Eg XZ:lœQ!N+_y*ĤH^1zq:ls ]3_3 3IR ,gwǂ<"m њVVBa #rRB'(v;KTBl2;UnRGy,}N{H wA#B.+NYFůۏX`!Dir 8C2;ģfxſwkc!(Ia~""7d_b{IN!#+# ݯɋX1~h4* U\c[RR]DŽFSv9ѕ,&Odg>Q@:=&|t~*VuJ?N uέ &Rн WB(:C)*0oe1Зφ ~aQ ^Ԓ]L'/xY9 z]0ZwyHA;#h{_,G"|jcR1K;.\6A$lb·ba!/۠yQIT-sTD!:u!1#KI͍OE+\/ Ө?JH}Ňf)yV7_?&=st'<;4; ].ymaʀ疆(:EYNG>KׇW)!08]"o@p+ޜR!t8RqAoDxM{Џ9cߐ TO;ηԂ?[ !u-Ō[ηm+m|߂xJ0.rRs)L`U0e~\Ȉbs..Ċq"R˦d[\ D\vx/_gZ0/qY S,XV[BYқ>]p` ޣ`/Xr b͋c)?H$rc9q,@dH'#s,,@α,0pbXnrƮ@O&Zô!Y)(1+@|&%?v@zE h4 isD]] bW]Oinc¤~j`V !8/.qF@Jp+QnV"RƤSs+;˒_ 8FYuQ闖}p8νW*z"7a=j1#HX|eGn2@v&\zT͠ ў&]Ő#]7SwcFG>1ͻ~N)#IK8:vtWusUEuEaԢiPii18XQ UOC\*2LbޙV!~AFBds@A6Jpdw\}B sƺ ,z{H9ͧjRLj_& RMV0A.|+UN$Y,]Vdwr T 3cNm* TO4ϡ Ȓۅw !3.E#>Ԓۇ9OY=iK$]XZl\g[rryً0 0egΤmÁP+C{~ q顦}d C.K>eFBRLlm kK`ncޚr?&|IrUCrs<(ˤdZ8?!?ׯ!`p njucRjEgȯxA2gB&00Zj3-yo2҆7t +-)gLn09r.J7ŅoH8~ VܻAjeWߤA0% e9ouubP#LzӘ_+Ji5> C1BIk|5>M2I/qQ9(e4>t= [{ɐCEWp4ie^m %/e@T!hPZqtz0]$B]2ܭƲ$A)'vbq<З0+W{1{P`kPө2VKRIqWJC`YN3=Vvb\Ifඨ|,us1HVb:L ;%0ȐOd,+ 5UU젋Z \P-GY]KnJUQ0HhY@܀ 2mdQAQrZf߳fB,WvT +l|$klCV,6AuDh?HVGi {l])%} XIv%3=VKw<i:H(_^{~ͭ(]_ U H@Ώ锿!7բHWL2p59TQ"_Ł|@br}%AreAѫm2H1zzb3 F,mcgcBу+WlJ5z-NkV3B# ʰ&$ׅ). pQz(׍ 87p=ǥ= IoЁPxzn3 7,aE<|?Ў:1daYL8jM}VeD#j+u$r} ^(͏o2 ͵&hmvLvͤ«vqpabM/w&,ʙ-l\\['|wAXUXKIvXțuO#Tý c]-J@hVY[}-99 !mfnӆз Svv){9˳jաtRj(KrUi#ތVo&:xl@J$u 3DPysf q7t: of/~Ms,bPm4gfT,M@KG2.{ًOd=S'e)]m<Q3{C߁Wp~lDU’1od@[IAt~%NK,.{-cnҿ("[s٧M5" a:Siʨ$ٙ O=ٌ"7TH,~Or/Gs|Ry4?*7|i!X  ,ڂ"C̥dϜM쏥KƐv˜=X`f.t_7Y"2;s&Ni ( #AKn @ԦNXvν~nwꖞ}*{wdf/B=Ѧ.n24&/$rE.sqvgQ3o.[V09MZ6.t\۹*YJ,J:5p_G[lE}\6!0]mVws:ւ!7\0 ˝:/D7C=ᴻi\YRbxȡ ''/1Xئ a8xGx-c0Sd$nto qvBݞ"/֏q,Zʶ=<>#WXWos(pa3b5oXn}Dv<72$FMf`/j,{LG|݂Z y@#} gQ:ڰ/$ ~Z$0t}aC|gtNT mC F<@I'z A9ʏ8En?ͱM޺wb( P1"@9fa1K ?uDr40LXr*ض叝Y+{C9d9] ݎҼ-xI]~}_40]eccYX|~c+/ރYmi`CDeԩ'i`NKHKm$Nۥ Bi=x>> [6*& pR!ǣF>F'( 4JO̾uI{  xOT Z4p |C\=/@SWn7?΍q}Ϻ?(?C|T#I.l~v{ZލL"?'=@6$*ywmx9L^PL*6Ă brO'͎fܸSi԰d@6xUZHjU&uɀGzݒWџ](pƓdxc  ق>uW=vl6ݛr@4,CcJ,DNaD9(϶tHW8XLK'u7R$ ^'$PXo#Aκ1_{qP@oһsL@_X1 yr7ϭL(3 \ γ+vp%"$ѩ\ -sWZ)]:JN=m|}nI۠/Ęp&DerbLɁ8KVRيØ #n/%"h 윛2:`_˕k)3݆p$rp$ ƙ3 8gƒeMoG?PNmG39Lber;q&DQm-L3eYXRhLݜgvov$UӞfCœ`O=s_nù#XT?1t~'c,&i1%K+~$/w{C0tsVt"gB4Mt6&|OCҽ,3hV'r` s%:xʡ3%%:S'Yy:Ey`)<5ŏ/S=4JLEF)[,4!-'y0⢞;цH?rP iWN#bviDk 6T*r$r,;S9 ӈ;%]4Nv*׍4JH5L4BVFitF9Ns]igR5Itce.,C,iQGnhHbˆ4"'2'}F)Zd6Ӿ.Ct`c cL¸ǘS0_ơqk_̠_x mf`R:i4:{9$ؾHߐ(!R7\5ߺ!\09輑PylR. Ąr^> ׉q/x/j$f3(rL`$ މ:P]4C}Cq,QFBi.etqo|.S'x/pK3)aٯQaT$ <(+]֡lWtǏX|9zt Wi:T 9doȅ9!E68{ JY$f>EScDr$JNt+η|CG (l 1*2Rs$ѰB )0]EO>m_(X5薘Z~EMfM=ԵcnH,Q7$H; Mlb q{<5!Fޤl1H#E[ش% 0qͳP۫YX-͒8KvAI4ya}ԛ"XFAU){؍"GO?> R9ۢCX$ySz6P !X6r (@e*WX;ThFK"iJ;zS "s\ buL"EyInoC:JRUuʈe7Jj"Nڋs ,䧥,ȋxAsЄb 6qG'hI J &4: &VNV*ŘQ>do_m(" 15*Ɓ@S蜸C,J:4d! 52jYRBxU*ǗRtGa/$Fdd\~uՄpV|?s9_TI;:NlID E/?(h8䬾'[EA_}Bь :WQDs1+džW䗩rCkѩ 31!ǏT  rE|4Ii^ dROe^CO)=9?Eq½`E07ݜ(`  !H\OVv5ߝ zîZ%jD](G@R25YxAp_"tE犞W|*icdpeB_Bξ謱N:gQT`j `L",Œ,Y(ա6nV3y耶W*bh I.d4lhf@!.<, J>YxTr9.]b 5j̾]1dck1CX>Lot03J* =63͂]6JP|}$KfAFF aUWwJU57OͲٗʵV 7|Vi5 _9nd"7q,8\Q4q_M/987 zWW5/9U|৑q_[bdw Qb̟X)^U{L܎;a8On,7K; -Ӧ{U(,1Eilw%ύIqFe~= yFQtc`[OqH.aI,B۵ ͛O|QSdGeJLy5H(Q;*db_N݆ZPL'-.j(6%` ɂE,>fqX:.}pQ|*JWJffMgb^䇄"F4@8'fd::$۞;9;cљdge0yAz;Yw uq2&8?6G {fz4/l O*v7~Ds|Q6`Atm]cA*TUu σ2D O1Cs 9 u Vt9X_$/`70SHd[iaN.| :o%ڿ rOӟӈ_1AC4zPI'vtX,w"\poRG{X o#bk 꼘3 fF. B%f=%\ [O^u*r{P,IU #_,N'< Q.m$~i&6āZ/Q{$kwU~.MkLрǭ ''ah*6MW}pޑ}(P^|sOV?Eh*qѣ̪ 5%/b{- ődI& V$WMpQIz;MBg[VETiʽ:Ms09jHafQ MUδKFcºwEu٣bz05Ӯƃu<7kLkAwh;G2L*(Q#CLm0u4Lə b+LApLAИGh ff#45J:x<H Lw OHDz4Y9Z7:_27G:QDd,`FN@)N'5ڹ /T3˘"T3f\ > 2U !~-BvW#ih3?gP5N`g$vɌ]Lje GQ@׌r0, %hy(6Êjzm$()˰)F;@0@c!r\$u& /wS-\^gO5-` :䟤`%RrWp&zSlxyD' 1s,A~Oe&i,zXJY[xag<(|%PKW'paSuA7%CХlZR$0 nwA?_(ܐ|b'89?2dkx cMay߷\W"H^C8c/~ pMy̍f[D(4t6&7ٟɂIV 耞z2X48J=T5F|YJsڟR1{zpՙp{"t)G/ EM .)m1VL0rMn'e:4B &#?HO4}_0_M'ov GHcB. o]%x+_Gjl[]V-D'>  yZO]] uȟI R g^oiFlr !t7$Ϳ!OS C *Ii!+J@BfWϪijP0HN~jrAȯRݠ i @vK^pbXPv4&JLo(jcX2,m0+io?HjNx/U0/m9YN1tf.5ƪbF PjuY(XTw!9e=wެJk)m gvV傐UAsڱKJXcUx$$(lvW=:sNQ9;82VSMnGC*y*H*H|Js`TTE/i-`4uΧ)R9 TF gSX6ủ'K]-ʉ`.L2ھX"ҠLhol ,U"~7~[AM|,)=}4>Xˮ ̦@idc&2|jvĆUm2oUX׺6_<tSk-y(N%,,I\KKH1<y<);pbwVj_&FŘ9v=Ju$9l3%j1#&s ;pmڒu|n9^[K-"8| =ݑp p4'O{(~ɼ(x`P=B譹}ټb *Z-C)E,%0KLt`~p5ԃ|,rdTEDO(SC d_ ^o?R2}daж_3F _y *.Ϥ9Q|]dAyJE(N˸;)5ɖ1 ˿q *8N͟__p<"I_rP{j/ '~&)f7tz x| {L~3-=Jhc\:awB["9;m |6D Dt4@˜j.dP_FsAp"vU U!DXoZ]աo{ҕYx!{N7MQDح⡈|TC#2IH0ˌWi7o4PHZSfkw/Lu1bPyW,ɸʟ(DȰ`a3ڃV53F {~CX*#c>۲bm GPbC dƮn0$[ &`P+GE[ᗀq4 P 1q=5- 2u*1ӗә/gmߜ$f,PEFUY1AN|-Xz"NB5!3fȶY>v/(G Hy6zO.GcqoRthlSEAT{8~CFoQd\S(g@t'".p,P&r/p?`q>KPw2` q01ص`xӺ]~!Jᎅz_G\wx.1mU O-51HYw9ڇ[U "ϵG"[v Zr ćl)  .x;a\r֫8g,į8oـ _DW, r3D%nn< 7^t ږlwi:vD8 Q|NԖ/T<b~Mo:]U;:(HO [ٖϊ<"J: 2AfupAa-A#XD{Ď@om @z$9%-B qsp8,dQ:+5}/Z#Fi;MNB4W<})dY\z7I9#/uFS*ˊt& (Tpu/lSq4@iNɺpTrG=PJDZ9I /.#08A^v e[.0|p`.6ĆejTwXwKw{' 5_FN*P]z߿F*< Ȗ/@~s/[mCVh5~ffeq9ށ>y}N$ez"C5!3fḶImYaW,A͆DXī4aV"a(rԊC8X`&N%Tx3Hř >P=nثU_DgQ8SCO_1_y| Z;v4:ohv=NSH 27HߐKZRg5u4b? GZIS"JZPBJrp/12 ַ6`Ձ+\V?mrS4޽oHH\RNh$rʧHy>F;g ~#ݧ79ȦU>c בqL\<`A {ur}6ra~ ף8g,O?_K\'yS\(ome@g}CW>Ϫ>N&g\4cW݅[=+4L8],ոwQb y]to"զ{7epi9(iiu^iqOȻш!_cYQtG?Od>7R,A#73d'tpi~ O9Y6<t3:Ksqm~| p<> |3*Sˌ с!PT$҈BgJB%Lanw=[Mʛߌ@تk!+7fj ^|a NR,5= V9 +Q5UYL$B֔|d)xdVE7)]皙\mx b/Ȉ ]2bJ#k]hJXU&uxC*}41`Dji 1dl.y7dP1;]! =,DI ޾lJI65/go0|xD}QC9ԁ0 sڋ;ybSB~u@YO~ZL5y %@.7( 0^!#cCÌXkvȢDj@GN+-VL% |zMv'\{Dgb)>mF%y-z`TTxMLԩ^7 noͮ8Ti|9`jE9~ރ-&6tJ:xc)_ Of ht.Գ[TY=hv@ tyJkC|>_i(B7%+.ΠV*>tYa!F\ȳ MT>ChkXИ Z(UX!T'#)U'FZNNU'" ڨD"KQ`NT'T"ȺGu K9r$ל ]9E 긣:͌rT'0wB檓h@:]2 ȲsNYH65}=c DŽ.B"x*m-4' 0U'X|嚓?ޘℱP^ *М q%'*>ZFIH9]sӜMu?М`TQsENJ`bySqs[ո[Ls64'횓{Ō9MUꄷ; Gu$e^_ԣJa/ĉkNH '#&}9LE߬~h8q7CbIwU>y!}͔NZ[#Iro)F 1F2WYyuA]}]o>ʯRf7_/vJ5ݹ/%x׷봠S0\گlGFO4xKRL/$C ?Vs?4V=q%R!8hڣ&_SnכX#4_\F(C EO7g`-eUץb߷"'F4r`SJYg 8֫{?Y_)~?Z.Z`~mWn7qQt`HЖ)6D\3 xK{LWIPJ˚D$1%$EqDYGVQ*퐘է$1zI._Z:ib?%zs4L1!6{8y+ZlZ:<@_?0IrPDgms\* )As.Ҟd}B3;Q6;!!@߈A 31%${=(BJ쟨AU0Q!0^ A]]']x=ʦMI~7'7zД/+6᧭aםum?WuAsj>.ctAY]+B_'XIzMzHHp &o.(BmpZRHfՄnܠxMB!((EJqqPYjzp_KKTE4wrEܠX A07 gArs7o7(դQ/5($3(jL23rrPOtX759(brcߗd|-yPJid/OUJr7(C{:c|?|v[Snn(igKeEފ7D9\gS(ò".Iol/Ќ)`X$0?%Qbw臠5M[.wwqhD!8xCڗ#6Xn-!<pSzUx`"^ZDtyK)@maekΧD|CO|P0rnՂ(9(h2]-9C6A:ìU07Ѫ[?FTn͝wo74L2<Yy\eEYq!S'&|/1\EȄ@V_+_;c#7W6EE w?~gzcKV9!)y׈Ufq@^Gnܥ+nL{ǐ@ ,9k ʰQ\a?{ |aK >w\ÁQ~{WZ#+:c\j00jηp~j D%.:)<58'ڊO~q4a9GGʞr9oCᲹhT(X-IZ@TLz (hPɀ*$( u]5X(¦C}Bs0E}S{Qƕ$NjFKHeDsꪡpmx -7|]Uֿ)9~[ _7~!šJIxM^X?dvQ>!{c&acz8szQTs/@YU޻Mqބ.kY sYA30 da%*U;D# (4z5r [?cU\Pь۠²) pbJwY B)zZ_4ddJom"J)x\\ֶj)@G<QD1(Un|BT<&&YH`acsT 9Z 95r#6BwCy<ĦXV!Ϩ{SGO{S!/;wq@3Ts|OW0\PLhϩ}&wJ`1Z712\7߿ِ}X|^̛p0͌|2 spj$>Zq:PdܝtR"61ƜL(+odIBu[u T=蓊xDU%!rOwh 0E%؍NWj8c"wBg^i~ۑz;/g *d+Uۼ""QI\\gq٥ț M q91؆NAX/П!e9L&6 '*/Oi'S,gUbIH`tLArI9/ɤ9F3dRA5Tr :DLo긃NG"C3ɓ["ǧ d4awxDK[#r <"uQzcȅ?aixT?:[9QVF |"d95+Mi>3|dt=Q/G0ĴӇH"RW§7:ZDL4y3)o[V+g3C|& 倴*9M=8n݅ rޔrVlu9JdL8L#=&|*QcO(u(&ep0e0avI=(dK̹n Ov d1I  e'W띦.Ar,jr8Lt3IIar,^GtH k؎XCR/CU'zzP]4TFPYt|7S[Y5dёMƃӟSJ|o79J/˩R"\Rb TzcQc7NlCf?hln0lV|8q2B"P{ݼ2[9^O;ZV=@Cᄉ^#^K*=SE*_rk9T^Wt_k6Vu~B1"(tԕuTz aFoGq 2On"q Sp \+{)ם~VHW" w&iW0jI(xP:J9Rd:zX"x/? ;taA\mu+CP+ ot8{8ܲD:FT$RVN"Lܘi.!xᄀItC+_Ye%4^6rX'yT"tJ⟞߈(V!yW~vD 7l˨D+9zj)EsD?IB\fPN6h4B&bh%ʄbWfN՗nULLNrŜ;\ W}. O%=Ģ7Ěo䢏JVJֈfl 'UrgvsgCA{E$2nc*wS6rgpnɼ MR$Yor%܆dXko5o޵HZp;͢L/pOp_f%!*1N3;amGiEI)5ͫD#_4 [SX ,IN$?9*^/ƹ+@ܑ/Qo)@dh8k0 n LjJ}J3+ 9J$Fl'(,@5n䒼u;)"Ea>uɳ Ysܸ1h %-%Bk>~)!7rUmì4b.W3TV@SG_ԣ`W5*r+n}IqlqR$Yv[u}"ñd~H<>?F݋+.qyF" jw]> stream xmTn0 +tY$˶v۰b+QJmY~$.:H&IgH?F*NRZfwțqFeA2 ZއV޼p00k`DQU ?\RY};o͔fE^$.ƀF< \&*io4)XS7v cq^5R)}2*ț1Ly}"AREM I;/!${uٟ|de6ǥN8vQ|ixǀHi3Ϗ[36>P"wzPi(BA9MpgBp`HVv endstream endobj 22 0 obj << /XObject<< /Fm1 20 0 R >> /Font<< /F2 5 0 R /F5 12 0 R /F3 4 0 R /F6 13 0 R /F7 14 0 R >> /ProcSet[/PDF /Text /ImageC /ImageB /ImageI] >> endobj 25 0 obj << /Filter[/FlateDecode] /Length 2021 >> stream xڥXKWfjI_{Sqfx>xs( Ih j)j){`%H%AeuPwCu O* Ep-ܺ,"u~h^,2-$ ?UPU~N Uҭݖe'P# WE޺N7̬]ww?;EI/CauھcZ*Z]IH$=: 0Mw)y$Ml7,D.?d'#'I'%芲pvԍu>ޚ];ح5tʀ+n>*Dovp݈x@Qp{ 4l_5 Yv;fa^\E.3rI T\$tZ>%0Q jţ9N+;L'po~M`+~T@hOQxr7}\0Br" px+}7=98<zʇŐcqAYǃ1(~Nc3󛍞AM@^.Qׄakęg"}PP7FwQA'&} %TxcdѶDyOi>suUxH_ni8,~ǡ?ùlv2yxd$o ;NDbD6* pETh 0 pC :'ėd[,x6Eߺ.p!iDKq6Ao RGJHEovA4*!?ߍ-Ov帙#P Dx)jVƖjDNc:zr-C Xs[x?T&`J;>GGǶAcUg(y~*pcڀeؿnDpuG0Ļu;4FKw%_uߘ^db)F܄.F $};b`2׫ (d itm<{ÞO7Ldkmm4tRHA Aԕ$x` 3Q3+N8p?*dQ25ꇱХ0tXiN\Q St()ib+BT܃| k0=G0,pO,ƈx LJ jK-Ui(ƻ*Mz`xHXdT u$^ 8焉n3-XUrE*"t~O 3 M}3L8t8"?zBU(w9c"K:I|38g|!| endstream endobj 26 0 obj << /Font<< /F2 5 0 R /F4 11 0 R /F5 12 0 R /F3 4 0 R /F8 24 0 R /F6 13 0 R /F7 14 0 R >> /ProcSet[/PDF /Text /ImageC /ImageB /ImageI] >> endobj 29 0 obj << /Filter[/FlateDecode] /Length 1743 >> stream xڥXo6 _=Ċms֡hޖplY?,HzaQMQ$y!D^{yV{}]^2M۽ƢL fiR<kZ]-ܣ^q2 @..oqfj:0XFaO%]0l w ~3f?0^$OL~4D8wىx'`r`G"H4zԂd kg52eVy34@Leb(ĥ5 1l7Iݑ?Cd[n̵;p{Ն%")޶McW'ã:f914 l9M$,1z u Wi%N8:p3!$b8>F Ě8AwXѰWռ'V2-'7Q*#' WͺF(T'3emtg\K lXI5+fAQ?G U0Ҹ_(7(FL`k#W q-G\.ej~2.cI6EMn ֵ_rϮ`Wk4AߨI.I"8;t)N콀*Ĝ%XU5iՅ"2S7^W78TSg 2q8nnn|P>suVx\ Y`skAM4N]J``S/eظPN#O*Zl!N(+Kϐߩ 'p$a0pLaD!qh&`π#WHYۙ>XtqbKQ# YV%:JOөNt/-yylt6[OT~h;r^Qt}XcX:ؽKN{Yѻ9tx~WqŚ8@/XٮUI Cbsb@Fu{ XkXQDžH2Ë8LЄw).i 7#| p1 lrcF 5@>=׉{{KqNc(q6v tŽdﲨwQw2Lv(dЃfֺ{k9.FM mڈAA ?>R~mhRp xoO#u+ND[ٍN)K=OQˍQ~>{!u=3?R{A ཧ d*/l7)b6Er(^B'Dj~S1+MN] ж+Um HY&,Eٍch?zv#U*8rGo.1: S &8񖆪̟P@=neӸ:C.KPb%Pd$ Jy*q~ endstream endobj 30 0 obj << /Font<< /F3 4 0 R /F8 24 0 R /F2 5 0 R /F4 11 0 R /F5 12 0 R /F6 13 0 R /F7 14 0 R /F9 28 0 R >> /ProcSet[/PDF /Text /ImageC /ImageB /ImageI] >> endobj 33 0 obj << /Filter[/FlateDecode] /Length 380 >> stream xڭSKO0+zC>z4Qo<.ԅ,%oKq56fCHi{7y'HVB1 rEܺ{C pJJR '4吥"SD&j+w+@P8B1f3Kق?0|=L~=5 Mgk̺;M/qC}dROqHZ&rod)*%CoP@maå Ɣsz,ȠR3;:rv_,z]XHoQ/0lf`8DOSu/ٚ.{\O=ն)#&lњ,y9`=: T?% A!@8%d.uA^|" endstream endobj 34 0 obj << /Font<< /F3 4 0 R /F10 32 0 R /F4 11 0 R /F2 5 0 R >> /ProcSet[/PDF /Text /ImageC /ImageB /ImageI] >> endobj 3 0 obj << /Resources 16 0 R /Type/Page /Parent 35 0 R /Contents[15 0 R] >> endobj 17 0 obj << /Resources 22 0 R /Type/Page /Parent 35 0 R /Contents[21 0 R] >> endobj 23 0 obj << /Resources 26 0 R /Type/Page /Parent 35 0 R /Contents[25 0 R] >> endobj 27 0 obj << /Resources 30 0 R /Type/Page /Parent 36 0 R /Contents[29 0 R] >> endobj 31 0 obj << /Resources 34 0 R /Type/Page /Parent 36 0 R /Contents[33 0 R] >> endobj 36 0 obj << /Type/Pages /Count 2 /Parent 35 0 R /Kids[27 0 R 31 0 R] >> endobj 35 0 obj << /Type/Pages /Count 5 /Kids[3 0 R 17 0 R 23 0 R 36 0 R] /MediaBox[0 0 595.28 841.89] >> endobj 2 0 obj << /Producer(dvipdfmx \(20061211\)) /CreationDate(D:20070615182700+09'00') >> endobj 1 0 obj << /Pages 35 0 R /Type/Catalog >> endobj 37 0 obj << /Filter[/FlateDecode] /Length 316 >> stream x]MO0=1& Kjd7zvXI4=wnWeR O9\4hW20T);NՃ[ڛ`zucQ;>k2]$F nFpr2'wc2̌XɑwȌa <.c <c@N<'S):r99)]KUҍR'BBf=27=Dgc s գU:Ac endstream endobj 38 0 obj [313 0 0 0 0 0 0 313 0 0 563 563 563 563 563 0 0 0 0 0 0 0 0 0 531 0 0 0 813 862 0 707 0 0 0 0 0 0 0 0 0 0 0 839 0 0 0 0 1162 0 0 0 0 0 0 0 0 0 547 625 500 625 513 344 563 625 313 0 0 313 938 625 563 625 0 459 444 438 625 594 813] endobj 39 0 obj << /Subtype/Type1C /Filter[/FlateDecode] /Length 3390 >> stream xڍW Tgf`yjVh$7ѳjn OE" YY#?}pQ(.ݟ<. o&Sj^3;'$F *y~ROZfv2H̗7e(^G;ę0g9p^hCtQ"Wx*`OĐΙY>UZpFYqܙA]exJE+ h1V4i3֨Vƪ?َcpg_?b7d~㗍>|Jz;2SKõ1+?E El<y;Q׺1,fOʮE-F{E%TE0d+hY_aO x mϚѮ z3?xHVA8{tM?TTy|, pԠ%˅ਨ樎 lɌ~ހj3uU* e-pӷgmJLZEy /M)!AlRZ6I+o&98(_& #݇m~Fu@ i~"vxҒ2oE3. -P]r}.Z9ܷ%A.<{dq!8A.9xx.Ôd6Yvt&V-x2mx6P[OiŸHMb7;9nH>ҏ7R=-_.LW$6G3:)6@GsrnZb+U l."E-2 ٟٛ_j~x3S5 \pHd7:5R7fyfB4: C3ċ>Yy ! @c O-̩uPXDI匞*5pƒi_0&T7"ۂ2T[xKC/[jNiMbIO!'C5AF/jh+ 8YjΚx?6f;*$6&p*?p :i:;d$rn+-Df=IOIιf8=H\ ?7}uITM/(ֺ΂֚3uf JCNl̆͘`be# t\O?4e5iY7k ZB /T&?{)zxp(=dw3N3M0 'zg ?֌cʆ*]~^HN$:uАҬNJJQ7ӨmoV@1uWdjrJ%>p0!;>ōwDr1~*T(h9^j7R`,Z(^Q_$V+C1)0^!yߵ6Cr4|k2=]hfd0$ٝёM#YEz2R7F4} TӵxK_* -G=I_k/y4lO6 a%bM޵`/Tl@e/T?蟂g^Vٿ pĿL'xGDO=wi05b9jR#A41q'M'ɤsD#[2kZ:U.Ժ*6 _BvdieOi$zK/q!ڊҭVmJ=yTN&DzRQ@er䷀lOCi:.B tK:8'/?2LO` dMyy"HaceܣZmA*I ]s*bAmsB5R9mгtZ~lC2?xe_/H/,G(I-g~.˟f Uɵ3f%M[n}*?n]LlfŀnZ~?^('n._WcXX[ oKg3+eKNBqEQUˢN 5`n,uy9ECIl1g"`MYYMba bW9\5<4YW+DWZˏn&B$G=XM:mjDEH1q$s9L8ll'h|N*u+>^U{,@_N8k,҉5T:  fDTRdahNJja3RYrivռSFG9).ŠZ9]̙퐵o)up@Q\jmd?o:X" endstream endobj 4 0 obj << /Type/Font /Subtype/Type1 /ToUnicode 37 0 R /Widths 38 0 R /FirstChar 39 /LastChar 119 /BaseFont/ELKIWJ+CMBX12 /FontDescriptor 40 0 R >> endobj 40 0 obj << /Type/FontDescriptor /CapHeight 686 /Ascent 694 /Descent -194 /ItalicAngle 0 /StemV 109 /Flags 262150 /FontBBox[-53 -251 1139 750] /FontFile3 39 0 R /FontName/ELKIWJ+CMBX12 >> endobj 41 0 obj << /Filter[/FlateDecode] /Length 319 >> stream x]n0w?TU !H UHv#"c2{iƟw^*40h`]i^Qًy9ZM^uY_ϼ>|*نJt@\4PnYF( h8NW/dcFՕμq f> stream xڭy xi3 YDTcҕ.} h.i'I}I6]hY ]8RA8 S~; ;]j:>s?}?SHDw]qe+'O>"e/:rg^8Uey !WA`:\F"gQ$,Y9y¤Is憅En 1f#&Ϙ1mk_V_˼B/#Vn058xJቨ+"munnXH"/rIJ-~ă>ru\4ۥI:I`>T_j5D PΔJ ԋrQPRרש8j<&5HM&SoQS;4j:5Kͣ>S "j1ZJ->ܨ j%ZMRj#Iԗ 4j%ȭ;EEEt1P4թT2NE:,gNa7߰~F1<9X t~fz^j9],9aҳY]_9+[#6]e?%F_t`/CsZM@sv9hRT029jK cz쐌0 fDZi<|`39:%ېJ4`5rrC~JVAڊǜS9*S>FP5cG# urXJӁ7k}.9FP DnD\{ э'b([UZUWWUU 5Oc:(wYEjLAjKu&̑e$ q1ʼ2 yXaYDPnBX270`Nτ3=9uw/cy 糮5KX^4܁t@.UC#tU_`)̆%;Ư 6>Ũ{([hnْ)L0m"G2=%t&y2,i2ބ=&4i[=YS"?&:y~'נ9l$#$3eGz"PJ_o8^!o]BVA8L7/. tmZGAb>ENVHprG9#y:uo)"yFCN;K5viX,.Wq|ܜx8WI*Z4\T0?\\nnθŅ2|C$ڜF9 筛1*loD'7geԠ&U߼82T<{a_>B~DrCN\ ҥWG"`>wtyFDpk nHM10`4 vFul"Mݳ*Y4bqƠh%&Yr@IqX V !A!Y~JQ4z¢B*b7ԁ Q_.#ޫz2?`x4'p6/EhCfÈ״uWBX ~U\-^ |KW $J%#nҗsWW3N'35ZzX<Զd18rؙz,xz^*Ɗ B6ӽ:]zrJYHO[Ӧs;/}q&>Oʘa4.fe=朮YF(qrNCzQzCNƣn,>)l3ȵE\ro\(g=HDb%hf5(!!nW8_A+?$Z<ʾ+PS{C Tꃒmx*!s&̹2o5ZC@㑈pnM{tnB6i-6QE&q}'s$X뫋Xan?3GQiUxIv^Tńz .u'Z0O#JnSd,'6KSe`*&;ɀ5[kבlɽ B MgҤc{|dm>I͆,S`5/I0CaC⩼h0/CfF?rS)E@",B3,z'SA"+-6d}ve4jin|+UHrziTZP|E!xkmhŒCd9tr[r҈5KCfo\̻"rp`OE;szli:.4#i)-J?ʂۜt.!4 4t /oܭvF$m #bX" ^ qȇ&y>q< CsDǸ-c{߶5UQ-f0m(CըNKhgZwG0Q@QSk56kxD2uR꟟JjZUMEӮY]ShmKoJEt?8F li9C^5d} I$sgu̎؛8*C6y(Q"Z5'Z mҶQOѸ19QmJ/.|=WcG4C!J8j2n 9l6z<ö/& ;_ZDȱM1ϏbĆ F8#@Iz:. "ҘSUY;C xحo7h=o "Jו*k\Fs.7"lmxP)}CIunae`nhmiaewj*{9$DV6l*'# ::C L|Qri~ENeYr.ލFB@I;A #"?[[|2sFQߟ;rДرvm " AmPYfbƾ>jgd>@0uͼ oDp#r8΋(` nN,fZ-!ѡ$줲g@6;X-r*a-xق5+9o\G?bܧy*Rg4H6Y-b"apK {[JzsN_8~pg#ż2{1 кRQ0GJJ wfGmoC-?|rC;ʢ [_Ob! 3ﰔW64yqs `a#h,IM!t-;΍QHo-h-kQ_O@ߙ48HLR= qb~>hH}rᶆ-޹ĭU dm!Țl֧p O}"tRF@XVhU=Çh &Kb*6*Z)Q|huNN6Q!)ߵPZ. ]x$H ղ?g]${n6>\pun1+swM+k lz+6m czQh3ےܽ!WY@`JM.ן0Xح3D=x׼k1?o=ۡ/)wBަ+'8EH~dX,|m&AS~P,#)q*I:l@l-354:Fp; 'N>P%CT/W )J8_(T4g?h! 7 H7ᒘCA]2)I}{bFvε, QȿM1ZEچ{`?́;Wq/Cڲ*+Y)93GWȸAxD߻X41Q#kRI%kK3!V0{;D}F]$9I>r\Wb;&huZHFEwܿSL>ZU$0۬Ins"*`>HOB|ѣw'[c S(,zCk^UXBb"LK-7Pae5e(@} i[,y7-V6)_M~- endstream endobj 5 0 obj << /Type/Font /Subtype/Type1 /ToUnicode 41 0 R /Widths 42 0 R /FirstChar 39 /LastChar 196 /BaseFont/YMFAMZ+CMR10 /FontDescriptor 44 0 R >> endobj 44 0 obj << /Type/FontDescriptor /CapHeight 683 /Ascent 694 /Descent -194 /ItalicAngle 0 /StemV 69 /Flags 6 /FontBBox[-251 -250 1009 969] /FontFile3 43 0 R /FontName/YMFAMZ+CMR10 >> endobj 45 0 obj << /Filter[/FlateDecode] /Length 313 >> stream x]n0EY* %!RDDU!U$"cwl,9y rWn NIp1N0ىi>͂צG^>c~?"\[Fs}ҔTq[9joFǼrJu{Tpe\gQ7MR3H"cݷ81,}9-q={{eqz1Gvd|1KW!jb{!uw⾜OB)6{]fm{ݍ endstream endobj 46 0 obj [525 525 525 0 0 525 0 0 0 0 0 0 525 525 0 0 0 0 0 0 0 525 0 0 0 0 0 0 0 0 0 0 0 525 0 0 0 0 0 0 0 0 0 0 0 0 0 525 0 0 525 0 525 525 525 525 525 0 525 525 525 525 525 525 525 525 525 525 0 525 525 525 525 0 0 525] endobj 47 0 obj << /Subtype/Type1C /Filter[/FlateDecode] /Length 2626 >> stream xڍV Pg9iAۘtD"j54 4 " 0\3 *QFxbt=Qэ%1cud_Tm`wj{^{^K(H$NA 0[xKפ'^sçt$Ik%yyxR7mAuB%zƎ3C>Qu=/<=u F ] /jWͪıj"1b´D ӺiVi׉)8zPj> BZYL +ԫԛ8=ʋfP3Ylj.Kͣ>7PQ )* SK(^JI()5R4NIb$7K҇2|Nf#DWUa^j?qH;aeiaL*h/ݫT\SUR" p`hej"ôj} Ӕ'L~1x.63Sȷ19 I,ILPPq"9ю%VٗgM``P|b"TH:}pEAQ׉0ssZY23Ev9p [_/YK `,يM֏10k d{ Ҽ[󡌩J'EE!8 q0.IdVw"5 $mr'Dfc.ڏWN_94fmQdBVvlMyɐ.Ĺ} !% Y0rNJz'V,7]9m~ he"2hC4D0k; c=uT MbA:1<)2[g?-?4<ƖN%,.oUq0E_ECΧO;x՜9`z#0(ypuNP3dMq Lt;=c Hڬ.֠5L.6dmLIX 3_QPLUeY]ۛL_F {UWdq6 6Z2 |O?W -kVH܉ yHLg.~[~X$+2a yPq&NG!ÎTm+O-5^Ǔ`s.8#I_xQH/ۮP^d,i_{v`vNh`i]ˁ3k2+֖$0JB%A0ҘIE=MǃjS BMEg@ dE=I-N+ή)Πu免եL;oƷKdt<>:8#'t3wqZⴆ,ѵ}_,,HjEUjL?+r =mUV+ yFx#d`o$~. ZXȒLM\Fc3M&3D,cy ܣۙMMph ,Z>L-:HsE sl.6.iЌ#?CNjR~x]ERQ6V }}D;ASŖNҾɥ7ogߛ>jG1*—բNt#@\}SD0ͪD`";R Uth$_ m4٤=(XYߣ)_ ec&Sעadճ_<pth+Vjqd0QsG)JGIw.]r~^޼Zpmzu&N29&/Vn僺gZ:c8GaԊsq g)TQZ[>%|({9I}4IZ#eq?Rnh\Z0բ("cs[)LMc=[(ʍ6&$5*+xlR 53qI?ݖoR`1f2ߡ|h`TV$+RcQSK,Gxa+#v+˯\h)h?娋<'*mv*̓PZKm}8QݳZ{7J(bg!rpii#WVRHYcڸfhd!VIEGk{`ޣ?H4 2nUSFCgtn'v^}vJ!_Hehu&9 !4f endstream endobj 11 0 obj << /Type/Font /Subtype/Type1 /ToUnicode 45 0 R /Widths 46 0 R /FirstChar 45 /LastChar 120 /BaseFont/XJVYSU+CMTT10 /FontDescriptor 48 0 R >> endobj 48 0 obj << /Type/FontDescriptor /CapHeight 611 /Ascent 611 /Descent -222 /ItalicAngle 0 /StemV 69 /Flags 6 /FontBBox[-4 -235 731 800] /FontFile3 47 0 R /FontName/XJVYSU+CMTT10 >> endobj 49 0 obj << /Filter[/FlateDecode] /Length 234 >> stream x]PMk0 WQKnM[ 6sȿf= $=Ѳ>Zy_Έ=JK@pPd;J5K^Z^#\߷v[^ Eحy}jX@z&-nNSzM[6#Eeϋ8Y.q= + z+W> !8BH"_\X>׳ؑn endstream endobj 50 0 obj [569 569 569 569 569 569] endobj 51 0 obj << /Subtype/Type1C /Filter[/FlateDecode] /Length 985 >> stream x5}L[e-w THd]bGD\Ən(T Z 峌qy(0 |lB44a q1AFFދ/*ssIHIr^NJt> endobj 52 0 obj << /Type/FontDescriptor /CapHeight 683 /Ascent 694 /Descent -194 /ItalicAngle 0 /StemV 79 /Flags 6 /FontBBox[-27 -250 1122 750] /FontFile3 51 0 R /FontName/JJGQOU+CMR7 >> endobj 53 0 obj << /Filter[/FlateDecode] /Length 233 >> stream x]PMk0 W1r Hiivwl%8!~>ޓDh~:#Z0(-fqQiA*,y1qKhu'z꾯rߺ{ qxEoysl@Qz fVؽKK}8Nv]զJXje=.Fl@`KZm~ؠ,@yp82zE>5Ź>}" 7(gYc#+/n endstream endobj 54 0 obj [611 611 611 611 611 611] endobj 55 0 obj << /Subtype/Type1C /Filter[/FlateDecode] /Length 996 >> stream x=}LSgۖD p%0 `t@.XJ =|Ƈ`XxgF4@3ltSɢ^v;'%C!Q%y罂3r:߆h𬐏ѻtF\!1 g‚dB•$(QVΑW2tzV<)--EG2KEmJ <_WV'h4`Q2 &2,Cժ ReFI!Eh (D!E T1uQP* JkܤBLä.+h٬qPvucwЕp"-Qv-L ᪕JX8.;Fw!eK[vA0xܸ;z?r.L '!7sDCΜpeS 痀y4.}$}~b!(f ;tnXԣ+j/܈B| ߒޚ͋#2=vq]0xJ" f` 7 \?:~Xan'jAZ0Q74}zSef-6}[3XlM68Θa}z[vGB~J91H>.Rb6J~$LVnҩ RO77\$ zL=k`9i鴲`&kyCaC6|Ń.kh24Yw*([+?Ԩ% s_ws0F4͊O%1 cqDf!Si{yހrǪ]]YKK :鉅q$ ۈXqruWn79^?w}ԗ {\.cɒ<-]4L#UcJ(٦VUl4 &ϰOL4wD:(yNL[˂aN7/ endstream endobj 13 0 obj << /Type/Font /Subtype/Type1 /ToUnicode 53 0 R /Widths 54 0 R /FirstChar 49 /LastChar 54 /BaseFont/LQUVNJ+CMR6 /FontDescriptor 56 0 R >> endobj 56 0 obj << /Type/FontDescriptor /CapHeight 683 /Ascent 694 /Descent -194 /ItalicAngle 0 /StemV 83 /Flags 6 /FontBBox[-20 -250 1193 750] /FontFile3 55 0 R /FontName/LQUVNJ+CMR6 >> endobj 57 0 obj << /Filter[/FlateDecode] /Length 307 >> stream x]Mo0 >v&`*!.-nSӮ41QzcGܖ 4pS8\@8S ;17$F7=Bv#^u U#Vq¾TYF7N N#t #R]oǂ#1Hu#4$4(rJh(91$M+1ek<.r4l堧NN<`9 Z+e 'PjUhd<; +?z7N}zЮ<_< endstream endobj 58 0 obj [295 0 0 0 0 0 295 0 0 0 0 295 0 295 0 0 531 531 531 531 0 0 0 0 531 0 0 0 0 0 0 0 0 752 0 0 0 0 0 0 383 0 0 0 0 0 0 0 0 0 590 767 0 0 0 0 0 0 0 0 0 0 0 0 531 590 472 590 472 325 531 590 295 325 561 295 885 590 531 590 561 414 419 413 590 561 767 561 561 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 590] endobj 59 0 obj << /Subtype/Type1C /Filter[/FlateDecode] /Length 4029 >> stream xڕW TSW~!T\>k_ժjKK `& dK'!P5B  Z.X:ֺtZcs:7@iOәq^NN]5d%Vo۾u 6lg' gxNȏMt{9X3쟡(G>e{m{ c!5|fϘ,"21zwpH˴e]fϟ˒0I@p !0XE[8eL6#e$F/eKlYDXd\$eC.It8Y~$j*F͠f SK5Žb(j 5zb s+25ZF-VP+Uj2c-ZOm6R7ʃJm<)/j;&MQ( QR? vKʄS5Ÿُ/%xڏ~:qhЮaqGa0qpT)9&yz/'^ Ղ;H(D;z]٦PDȱ>y͉|fA)!kMD.QŃ6ܖ@![&Yu6zC`{26i&/"{chm7dU/㬱V耓pZ_} .Cm[:$0 wͱ*RjŽ^wVZC_դTAJRZw!߾zc)^0^8/(nX}6-"1۬2I.Xb a .d)w(p5r VG iѦKlH #h9^('sK8j+:&MYL9Wv S P*2B<|,[[nO13m_;aw{<('؛E:"TVVyRA@sD*j!V~J| P-4$@mt)~1t1mQxwYC'n'f[&Lh4UUs`[uB>0g/ћ+_$m)3Qr]~NbSx3V:`or|-Ov4wp+hߦt/6!I Pm!Z߻3O1.v\g4=@O13)ѮcI}1};C갊X <''U oA`]!yE[,hB !$6b_N,șȪQ_xqUX"xO4 +.N *Ezf|©lӁɟvv 44'}B\tF(@@&+%`2~@Nٝ3EZj`˪+jMD81eGML^֣ڶEӦԗ>Ъ~n-YKIKʨ]DɯXj۠Z V:9ѵ.\Ŀ9%,<ՆlndamGņ4 F⍄dVSg J]h\;$)x?n{$p lEl^RK [Ytd+K祈Km?qdrzIF_NT޼]B(R !ECCN*7 >!)# OƌI)Pն2}J!{JQIڣN$ c mzBے[r/¸ }cD_[CHE9,fOTW]ɨo/GiLO.~[+n9NFvN1ED7؟ GVv㚣( [-ڐz6_@0ϱ@욙^cb-RO~2c?r|{'M. /#"sK oZõa9]MU̮(ߙyN1o@JtcJmں>CGGxxMƣ0d>z84ִ|ǡ!Pg+|#ɸGX> endobj 60 0 obj << /Type/FontDescriptor /CapHeight 683 /Ascent 694 /Descent -194 /ItalicAngle 0 /StemV 76 /Flags 6 /FontBBox[-36 -250 1070 750] /FontFile3 59 0 R /FontName/HUXTCV+CMR8 >> endobj 61 0 obj << /Filter[/FlateDecode] /Length 313 >> stream x]n0 y ;MJ@+4ZmWi(C~Nz!*+MA8A)ipF )F ;1;}YPA}~~>+O>AbS7o}Ҕ8N`7#tSQ;j= 82g qԍ@Ө >c俳81,JxqL\X+)Ǟc8qLP̷z]TexK';oNͽg;pz57B7tm[ endstream endobj 62 0 obj [383 319 0 0 575 575 575 575 575 575 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 436 0 0 692 1092 0 0 786 0 0 0 0 0 869 0 0 0 0 0 0 0 0 0 0 559 639 511 639 527 0 575 0 319 0 607 319 958 639 575 639 607 474 454 447 639 0 831 607 607] endobj 63 0 obj << /Subtype/Type1C /Filter[/FlateDecode] /Length 3638 >> stream xڝWyTgTDm*Tܣb41E⮀(",}AYDUdkYԨx2fD8>-51Μuts{w݋13cd2k֮pr<{/+q4^&M$ri?``I7o|&'pyiO?X1f2b&ysWGDN_9vޢE mWExخ _n 􋊟cb^ͦ""b|_[a./"B:[6Ol#x3LАA c g%3Q11Lf63,d*Ɖqf>a0.:f=lb63[6ɝ`&bd #&AYty٬|yb"Uɜ;3epʐIC<0-2l6K7W-/&:3Ydeߠ<=<=xKRxTqH8ZH9l.UCR _D5{6tp"eMp$FQ֋v4ER+4)kJJ[#b:T5pN H^7ocOy8U?1ܽp[x/ăZ,/0YMjht '46Yul2 q$ ė/n=jiҵ=k۫jpq[~\GD39[եudHIG8V2ᮆ)ppy. Z^an@<#SjLJ6$ T(K^T)-Rc@;Ojl!2bf36h@wUx|q<V8 ')qP!·Fġ5{*=_[Nͫr )csk'8kIx^JN$H;|!rr:/84bGa^n)?!ϾGK~"0vGxe?U (k9Z)v?PO`."DxrWK8_EޠǢd [ˁ{I )x_-܆{iSaTD˸:ZENIrlSP!*53>3;S!QٖgAgbsA55oeQ7O2OuN Iqح!2a*T2T%nPf+cW)ZEI' lHeDtHBP+3{ Z}! 9IԳX,/ =lJ!hVJZ?`[a|-y F; ʈ$$H,[}A5D+x2H;L[GN ]-Xc3Zm4VYK]*2pgU0&O!N_UمYy+~07qc󾆃dhu5 "S1,_XTGgb(JϠgҌ"n8V8xec!wT{NEiTV$B^O/Vp>\_dfb1wCɚڲVNNe Ad* I2# bKy+Tﱳ&F4|LQ4z^!C9Jq2HSTTs5{%|"[\rxq lM,~L=$2&49YɆ*a djN۝|6>m poGMd <~):|<.;) :>*i 5o%&SQA]e 3Q4 ?JXe&=TI)U[N>ʚ*nkZ|"lbV*h 8}U&Q.{rTK7h^~˩ 0 )ϥw$5R=u4;Bpa62X|(UEM4+jFehpNkq:Vt]uֿj?KyxЮ[".xa7я.٥E^^u^ycAå9īӆ`z]XOd%o\ DP`!JO25da-yZRtjh0fm#C9FQs:Z4خC[-mo@oeWR /iO.]Wc!Ppom{G죹~6 r Òo[ %IGl֗8'/5MgpwNyI((_]KMpd!~ !#LŸsΓ\"JʓhsKδuA׺<,Nn(מW'%YO;$%*(닊[gwĊLtr[#;P}A/ٶtUNX{9哮5'5+w4#cKắ%8I=)u. Nx%t(ެsӀ-7}" tA{QG3Gݸnq1Mj!N:0L^%FhqdoTONB8ڲ ۪x'EYG-4 LKp8(jlA-sΚ|+CoקW +%ge7.0 `2|JJi_&Fn\'BmEpHH|(]sf:C)p58pm |_5Dt(e1Dc4QSE2i;Opߒ_/AZf_nHij)N";0Ɣ-o]LSwr& wM2OF4BU% ¬Kl6XIyLm6X^.I&MDu柉 6˰J]b˶ӀD喐֓0$y^mCr {֯H;qiYtYG8(;;ht &EP-8ڌg k,*u. ]=T&K' C%N%g8O .jK)qڢܧ(AdZqBj][GV(]K4~9E9LvbL 5RѥFgMXa-*httebX?1jgΠիhyYEEVޗ;p^2)1d2a!ڜcaS5 ͵?Noz-;C endstream endobj 24 0 obj << /Type/Font /Subtype/Type1 /ToUnicode 61 0 R /Widths 62 0 R /FirstChar 45 /LastChar 121 /BaseFont/DAJKAW+CMBX10 /FontDescriptor 64 0 R >> endobj 64 0 obj << /Type/FontDescriptor /CapHeight 686 /Ascent 694 /Descent -194 /ItalicAngle 0 /StemV 114 /Flags 262150 /FontBBox[-301 -250 1164 946] /FontFile3 63 0 R /FontName/DAJKAW+CMBX10 >> endobj 65 0 obj << /Filter[/FlateDecode] /Length 260 >> stream x];o0wSU%R*dAm3G~wΕ D_Z j8 'flhݩnFrzu۾\2ɀ*M!:7bp ! @m.Fo;q}jz#쮴fUgbR~\Nb:#< ˲ (,t4ɳVƱui`j5lCs6:iʰUk{ϫ>$VR. x endstream endobj 66 0 obj [531 0 531 0 0 0 0 531 0 0 531 0 0 0 531 0 0 0 0 531] endobj 67 0 obj << /Subtype/Type1C /Filter[/FlateDecode] /Length 650 >> stream x}_HSQngtw$A Z!ͫniNA:Fb7l %,JTtCC=GgJ}~lWkcjiٟzph;VB|/8-Tx)]ܖ"]%!w@?*;K}C\_> endobj 68 0 obj << /Type/FontDescriptor /CapHeight 611 /Ascent 611 /Descent -222 /ItalicAngle 0 /StemV 76 /Flags 6 /FontBBox[-5 -232 545 699] /FontFile3 67 0 R /FontName/MZHHAB+CMTT8 >> endobj 69 0 obj << /Filter[/FlateDecode] /Length 234 >> stream x]Pn WUUC'SԴ*wCGN"d7p l~.Y N 0n XR2FŽYMғ9K.'~}{Y|zig8(#Nb#NpNm v=>$#h Ǝp6"#b'(<ݤKA ޶AvE?dѤJ¶7?!;JˍIm/ endstream endobj 70 0 obj [500] endobj 71 0 obj << /Subtype/Type1C /Filter[/FlateDecode] /Length 268 >> stream xcd`aa`ddsprv 44xf!CqKyd컻{޿_~fe``("S RDb`add33p/,L(QpT04WpM-LNSM,HM,rr3SK*sr@:RSRS Nt-(-I-ROI-c:yк&FF&u|?qD?RhfwO.i\72 CWx endstream endobj 32 0 obj << /Type/Font /Subtype/Type1 /ToUnicode 69 0 R /Widths 70 0 R /FirstChar 178 /LastChar 178 /BaseFont/BJKHBA+CMSY10 /FontDescriptor 72 0 R >> endobj 72 0 obj << /Type/FontDescriptor /CapHeight 683 /Ascent 0 /Descent 0 /ItalicAngle -14.035 /StemV 85 /Flags 70 /FontBBox[-29 -960 1116 775] /FontFile3 71 0 R /FontName/BJKHBA+CMSY10 >> endobj xref 0 73 0000000000 65535 f 0000043787 00000 n 0000043694 00000 n 0000043090 00000 n 0000047954 00000 n 0000056092 00000 n 0000000015 00000 n 0000000046 00000 n 0000000077 00000 n 0000000121 00000 n 0000000190 00000 n 0000059769 00000 n 0000061537 00000 n 0000063312 00000 n 0000068535 00000 n 0000001170 00000 n 0000002630 00000 n 0000043173 00000 n 0000002808 00000 n 0000002841 00000 n 0000002886 00000 n 0000037352 00000 n 0000038127 00000 n 0000043257 00000 n 0000073233 00000 n 0000038284 00000 n 0000040380 00000 n 0000043341 00000 n 0000074729 00000 n 0000040533 00000 n 0000042351 00000 n 0000043425 00000 n 0000075758 00000 n 0000042515 00000 n 0000042969 00000 n 0000043588 00000 n 0000043509 00000 n 0000043836 00000 n 0000044226 00000 n 0000044473 00000 n 0000048109 00000 n 0000048304 00000 n 0000048697 00000 n 0000049166 00000 n 0000056246 00000 n 0000056435 00000 n 0000056822 00000 n 0000057052 00000 n 0000059925 00000 n 0000060112 00000 n 0000060420 00000 n 0000060462 00000 n 0000061690 00000 n 0000061877 00000 n 0000062184 00000 n 0000062226 00000 n 0000063465 00000 n 0000063652 00000 n 0000064033 00000 n 0000064415 00000 n 0000068689 00000 n 0000068876 00000 n 0000069263 00000 n 0000069504 00000 n 0000073389 00000 n 0000073585 00000 n 0000073919 00000 n 0000073989 00000 n 0000074884 00000 n 0000075070 00000 n 0000075378 00000 n 0000075400 00000 n 0000075915 00000 n trailer << /Size 73 /Root 1 0 R /Info 2 0 R >> startxref 76106 %%EOF pbuilder-0.215ubuntu7/Documentation/debconf7/pbuilder-presentation.aux0000664000000000000000000001225212312041170023100 0ustar \relax \ifx\hyper@anchor\@undefined \global \let \oldcontentsline\contentsline \gdef \contentsline#1#2#3#4{\oldcontentsline{#1}{#2}{#3}} \global \let \oldnewlabel\newlabel \gdef \newlabel#1#2{\newlabelxx{#1}#2} \gdef \newlabelxx#1#2#3#4#5#6{\oldnewlabel{#1}{{#2}{#3}}} \AtEndDocument{\let \contentsline\oldcontentsline \let \newlabel\oldnewlabel} \else \global \let \hyper@last\relax \fi \@writefile{toc}{\beamer@endinputifotherversion {3.07pt}} \@writefile{nav}{\beamer@endinputifotherversion {3.07pt}} \@writefile{nav}{\headcommand {\slideentry {0}{0}{1}{1/1}{}{0}}} \@writefile{nav}{\headcommand {\beamer@framepages {1}{1}}} \@writefile{nav}{\headcommand {\slideentry {0}{0}{2}{2/2}{}{0}}} \@writefile{nav}{\headcommand {\beamer@framepages {2}{2}}} \@writefile{nav}{\headcommand {\slideentry {0}{0}{3}{3/3}{}{0}}} \@writefile{nav}{\headcommand {\beamer@framepages {3}{3}}} \@writefile{nav}{\headcommand {\slideentry {0}{0}{4}{4/4}{}{0}}} \@writefile{nav}{\headcommand {\beamer@framepages {4}{4}}} \@writefile{nav}{\headcommand {\slideentry {0}{0}{5}{5/5}{}{0}}} \@writefile{nav}{\headcommand {\beamer@framepages {5}{5}}} \@writefile{nav}{\headcommand {\slideentry {0}{0}{6}{6/6}{}{0}}} \@writefile{nav}{\headcommand {\beamer@framepages {6}{6}}} \@writefile{nav}{\headcommand {\slideentry {0}{0}{7}{7/7}{}{0}}} \@writefile{nav}{\headcommand {\beamer@framepages {7}{7}}} \@writefile{nav}{\headcommand {\slideentry {0}{0}{8}{8/8}{}{0}}} \@writefile{nav}{\headcommand {\beamer@framepages {8}{8}}} \@writefile{nav}{\headcommand {\slideentry {0}{0}{9}{9/9}{}{0}}} \@writefile{nav}{\headcommand {\beamer@framepages {9}{9}}} \@writefile{nav}{\headcommand {\slideentry {0}{0}{10}{10/10}{}{0}}} \@writefile{nav}{\headcommand {\beamer@framepages {10}{10}}} \@writefile{nav}{\headcommand {\slideentry {0}{0}{11}{11/11}{}{0}}} \@writefile{nav}{\headcommand {\beamer@framepages {11}{11}}} \@writefile{nav}{\headcommand {\slideentry {0}{0}{12}{12/12}{}{0}}} \@writefile{nav}{\headcommand {\beamer@framepages {12}{12}}} \@writefile{nav}{\headcommand {\slideentry {0}{0}{13}{13/13}{}{0}}} \@writefile{nav}{\headcommand {\beamer@framepages {13}{13}}} \@writefile{nav}{\headcommand {\slideentry {0}{0}{14}{14/14}{}{0}}} \@writefile{nav}{\headcommand {\beamer@framepages {14}{14}}} \@writefile{nav}{\headcommand {\slideentry {0}{0}{15}{15/15}{}{0}}} \@writefile{nav}{\headcommand {\beamer@framepages {15}{15}}} \@writefile{nav}{\headcommand {\slideentry {0}{0}{16}{16/16}{}{0}}} \@writefile{nav}{\headcommand {\beamer@framepages {16}{16}}} \@writefile{nav}{\headcommand {\slideentry {0}{0}{17}{17/17}{}{0}}} \@writefile{nav}{\headcommand {\beamer@framepages {17}{17}}} \@writefile{nav}{\headcommand {\slideentry {0}{0}{18}{18/18}{}{0}}} \@writefile{nav}{\headcommand {\beamer@framepages {18}{18}}} \@writefile{nav}{\headcommand {\slideentry {0}{0}{19}{19/19}{}{0}}} \@writefile{nav}{\headcommand {\beamer@framepages {19}{19}}} \@writefile{nav}{\headcommand {\slideentry {0}{0}{20}{20/20}{}{0}}} \@writefile{nav}{\headcommand {\beamer@framepages {20}{20}}} \@writefile{nav}{\headcommand {\slideentry {0}{0}{21}{21/21}{}{0}}} \@writefile{nav}{\headcommand {\beamer@framepages {21}{21}}} \@writefile{nav}{\headcommand {\slideentry {0}{0}{22}{22/22}{}{0}}} \@writefile{nav}{\headcommand {\beamer@framepages {22}{22}}} \@writefile{nav}{\headcommand {\slideentry {0}{0}{23}{23/23}{}{0}}} \@writefile{nav}{\headcommand {\beamer@framepages {23}{23}}} \@writefile{nav}{\headcommand {\slideentry {0}{0}{24}{24/24}{}{0}}} \@writefile{nav}{\headcommand {\beamer@framepages {24}{24}}} \@writefile{nav}{\headcommand {\slideentry {0}{0}{25}{25/25}{}{0}}} \@writefile{nav}{\headcommand {\beamer@framepages {25}{25}}} \@writefile{nav}{\headcommand {\slideentry {0}{0}{26}{26/26}{}{0}}} \@writefile{nav}{\headcommand {\beamer@framepages {26}{26}}} \@writefile{nav}{\headcommand {\slideentry {0}{0}{27}{27/27}{}{0}}} \@writefile{nav}{\headcommand {\beamer@framepages {27}{27}}} \@writefile{nav}{\headcommand {\slideentry {0}{0}{28}{28/28}{}{0}}} \@writefile{nav}{\headcommand {\beamer@framepages {28}{28}}} \@writefile{nav}{\headcommand {\slideentry {0}{0}{29}{29/29}{}{0}}} \@writefile{nav}{\headcommand {\beamer@framepages {29}{29}}} \@writefile{nav}{\headcommand {\slideentry {0}{0}{30}{30/30}{}{0}}} \@writefile{nav}{\headcommand {\beamer@framepages {30}{30}}} \@writefile{nav}{\headcommand {\slideentry {0}{0}{31}{31/31}{}{0}}} \@writefile{nav}{\headcommand {\beamer@framepages {31}{31}}} \@writefile{nav}{\headcommand {\slideentry {0}{0}{32}{32/32}{}{0}}} \@writefile{nav}{\headcommand {\beamer@framepages {32}{32}}} \@writefile{nav}{\headcommand {\slideentry {0}{0}{33}{33/33}{}{0}}} \@writefile{nav}{\headcommand {\beamer@framepages {33}{33}}} \@writefile{nav}{\headcommand {\slideentry {0}{0}{34}{34/34}{}{0}}} \@writefile{nav}{\headcommand {\beamer@framepages {34}{34}}} \@writefile{nav}{\headcommand {\slideentry {0}{0}{35}{35/35}{}{0}}} \@writefile{nav}{\headcommand {\beamer@framepages {35}{35}}} \@writefile{nav}{\headcommand {\beamer@partpages {1}{35}}} \@writefile{nav}{\headcommand {\beamer@subsectionpages {1}{35}}} \@writefile{nav}{\headcommand {\beamer@sectionpages {1}{35}}} \@writefile{nav}{\headcommand {\beamer@documentpages {35}}} \@writefile{nav}{\headcommand {\def \inserttotalframenumber {35}}} pbuilder-0.215ubuntu7/Documentation/debconf7/chroot-pbuilder.dia0000664000000000000000000000327312312041170021626 0ustar M6){0ofwgV{hCw D@2z_ߪǨ d 0yXr<ϯ_ױYNN54]Up!I;O?|7Cҿ(Ck"ٷ;uUsT(т&Z7@ gQQdXIߩ> DYMBJU 8͔7G]f ;ޠF_MyטmvIsBQ;4u&J77%'.IFYDc?l 0lzkS\Ο]sD(Yn!q]ׅxN\ pDU'+\c@qKؚG==PGhcEu@-z|HL[Gh#Y&`-u\~Uƒ@Ȕ@Ȭ{4AGOHL@KGh#Kvly䉉/3yI &5.(w@%8tBǭz6Ř P‹%q,+^ben #}uL:|$zd`xlrOW͓q><xrOG=qǩL>AݵO"HD"ȭ&~4 mr4葓΂cGz#s\$}LH_G&ߍ΀q{+G^A$Kş1vSuMsS&xJn IR@LyX|G͖\ķߝr*>L&>+wu͜ ⷶ0Wg!>!,uǩ"V]> r8?DݲYNw3gm+×\γHfƜŸ@r)B<}:ğ!;0mE|O`ٯ 8ոέuL}63[Uۭve`lB}GP;@} }<,[ϷOOϟ:2udKnbYp9|9d?sC(Z.14lEiô5մy l<5u$gicM:yZ|Gc;>hXț& yl8efFPi|qZ!Z+'a4 ql7k6 Irv~|>.;/xƈY_Lo֠]wA Gűf:bѹ6Q6eHrZJCOۖ Bs,}%02ItO{he|{Mf7N]"upbuilder-0.215ubuntu7/Documentation/debconf7/qemubuilder-build.dia0000664000000000000000000000277012312041170022140 0ustar [˒6uˈ73=,H%T%#d=lfWRH 0N{ ncI{߼}A@T4$Iݽ}TބC3U|"ImpZ@N dR<1FCQQ!H+"/8V4O$VEƔK?hwІEa)Ξs19.?'jٜD4yICզhFIxuw8 |XD:8xaɰ}]˅_tu±‘t43DxrLiQrEVQL@'(N@~[Z#-h"!;2hz-HiVniZ4jc'&?U "Fk̊~l5t;x1%!bz~\۲JW<7шhj323a! a<01D11Ńkvet]iՙ(Oxh{ꭉiwH}BI)_2O8^bN`I4ه !ˇ9HeTu(ݗ'Y1G줘ӊbuZj-?O'AFŒE H/#hZt5poM@1ʒ "cg.>K6}õouK`` 0 Vff8bB 4tJWk*f2k.j~.͙% p]k;tKr|gGSgP(['QR¸0;6Tupݱ0t=ө˞=E)nSQzGqG;b&zC{? a'̶v@H~Bxw /azkh]7]SױL<&'a6Ʒ-u=;ϔkڋ];'$!Yi eQhɰB1G"k.RKZS¯SQ1R@rmu󮘰fH%eҺ@]ʜt+CTmC|iX;enYaCmBsBWUli[/Et7Z m+p0bΥk.! /Jo.\n ++4 t% gt?d`'?*$!\\/υV5=3df>qvFyf!t{N7G1Pp3~yLm^z"Ka_j[LF,tr+z o _g?`|TJp|T*Apbuilder-0.215ubuntu7/Documentation/debconf7/qemubuilder-create.eps0000664000000000000000000013206212312041170022334 0ustar %!PS-Adobe-2.0 EPSF-2.0 %%Title: /home/dancer/DEBIAN/pbuilder/pbuilder/Documentation/debconf7/qemubuilder-create.dia %%Creator: Dia v0.95 %%CreationDate: Wed Jun 20 00:20:14 2007 %%For: dancer %%Orientation: Portrait %%Magnification: 1.0000 %%BoundingBox: 0 0 584 237 %%BeginSetup %%EndSetup %%EndComments %%BeginProlog [ /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /space /exclam /quotedbl /numbersign /dollar /percent /ampersand /quoteright /parenleft /parenright /asterisk /plus /comma /hyphen /period /slash /zero /one /two /three /four /five /six /seven /eight /nine /colon /semicolon /less /equal /greater /question /at /A /B /C /D /E /F /G /H /I /J /K /L /M /N /O /P /Q /R /S /T /U /V /W /X /Y /Z /bracketleft /backslash /bracketright /asciicircum /underscore /quoteleft /a /b /c /d /e /f /g /h /i /j /k /l /m /n /o /p /q /r /s /t /u /v /w /x /y /z /braceleft /bar /braceright /asciitilde /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /space /exclamdown /cent /sterling /currency /yen /brokenbar /section /dieresis /copyright /ordfeminine /guillemotleft /logicalnot /hyphen /registered /macron /degree /plusminus /twosuperior /threesuperior /acute /mu /paragraph /periodcentered /cedilla /onesuperior /ordmasculine /guillemotright /onequarter /onehalf /threequarters /questiondown /Agrave /Aacute /Acircumflex /Atilde /Adieresis /Aring /AE /Ccedilla /Egrave /Eacute /Ecircumflex /Edieresis /Igrave /Iacute /Icircumflex /Idieresis /Eth /Ntilde /Ograve /Oacute /Ocircumflex /Otilde /Odieresis /multiply /Oslash /Ugrave /Uacute /Ucircumflex /Udieresis /Yacute /Thorn /germandbls /agrave /aacute /acircumflex /atilde /adieresis /aring /ae /ccedilla /egrave /eacute /ecircumflex /edieresis /igrave /iacute /icircumflex /idieresis /eth /ntilde /ograve /oacute /ocircumflex /otilde /odieresis /divide /oslash /ugrave /uacute /ucircumflex /udieresis /yacute /thorn /ydieresis] /isolatin1encoding exch def /cp {closepath} bind def /c {curveto} bind def /f {fill} bind def /a {arc} bind def /ef {eofill} bind def /ex {exch} bind def /gr {grestore} bind def /gs {gsave} bind def /sa {save} bind def /rs {restore} bind def /l {lineto} bind def /m {moveto} bind def /rm {rmoveto} bind def /n {newpath} bind def /s {stroke} bind def /sh {show} bind def /slc {setlinecap} bind def /slj {setlinejoin} bind def /slw {setlinewidth} bind def /srgb {setrgbcolor} bind def /rot {rotate} bind def /sc {scale} bind def /sd {setdash} bind def /ff {findfont} bind def /sf {setfont} bind def /scf {scalefont} bind def /sw {stringwidth pop} bind def /tr {translate} bind def /ellipsedict 8 dict def ellipsedict /mtrx matrix put /ellipse { ellipsedict begin /endangle exch def /startangle exch def /yrad exch def /xrad exch def /y exch def /x exch def /savematrix mtrx currentmatrix def x y tr xrad yrad sc 0 0 1 startangle endangle arc savematrix setmatrix end } def /mergeprocs { dup length 3 -1 roll dup length dup 5 1 roll 3 -1 roll add array cvx dup 3 -1 roll 0 exch putinterval dup 4 2 roll putinterval } bind def /dpi_x 300 def /dpi_y 300 def /conicto { /to_y exch def /to_x exch def /conic_cntrl_y exch def /conic_cntrl_x exch def currentpoint /p0_y exch def /p0_x exch def /p1_x p0_x conic_cntrl_x p0_x sub 2 3 div mul add def /p1_y p0_y conic_cntrl_y p0_y sub 2 3 div mul add def /p2_x p1_x to_x p0_x sub 1 3 div mul add def /p2_y p1_y to_y p0_y sub 1 3 div mul add def p1_x p1_y p2_x p2_y to_x to_y curveto } bind def /start_ol { gsave 1.1 dpi_x div dup scale} bind def /end_ol { closepath fill grestore } bind def 28.346000 -28.346000 scale -10.981250 -10.785000 translate %%EndProlog 0.100000 slw [] 0 sd [] 0 sd 0 slc 0 slj 0 slc 0 slj [] 0 sd 1.000000 1.000000 1.000000 srgb n 27.145000 6.375000 m 27.145000 8.625000 l 29.695000 8.625000 l 29.695000 6.375000 l f 0 slc 0 slj [] 0 sd n 28.420000 8.625000 1.275000 0.375000 0 360 ellipse f 0 slc 0 slj [] 0 sd n 28.420000 6.375000 1.275000 0.375000 0 360 ellipse f 0.000000 0.000000 0.000000 srgb n 28.420000 6.375000 1.275000 0.375000 0 360 ellipse cp s 0 slc 0 slj [] 0 sd n 29.695000 6.375000 m 29.695000 8.625000 l 29.695000 8.832107 29.124163 9.000000 28.420000 9.000000 c 27.715837 9.000000 27.145000 8.832107 27.145000 8.625000 c 27.145000 6.375000 l s gsave 26.836733 9.550000 translate 0.035278 -0.035278 scale start_ol 2240 1249 moveto 2240 1713 2052 1976 conicto 1865 2240 1536 2240 conicto 1208 2240 1020 1976 conicto 832 1713 832 1249 conicto 832 784 1020 520 conicto 1208 256 1536 256 conicto 1865 256 2052 520 conicto 2240 784 2240 1249 conicto 832 2112 moveto 963 2340 1164 2450 conicto 1366 2560 1645 2560 conicto 2108 2560 2398 2198 conicto 2688 1837 2688 1248 conicto 2688 659 2398 297 conicto 2108 -64 1645 -64 conicto 1366 -64 1164 46 conicto 963 156 832 384 conicto 832 0 lineto 448 0 lineto 448 3520 lineto 832 3520 lineto 832 2112 lineto end_ol grestore gsave 27.226200 9.550000 translate 0.035278 -0.035278 scale start_ol 1559 1280 moveto 1040 1280 840 1160 conicto 640 1041 640 754 conicto 640 525 790 390 conicto 940 256 1198 256 conicto 1554 256 1769 510 conicto 1984 765 1984 1187 conicto 1984 1280 lineto 1559 1280 lineto 2368 1449 moveto 2368 0 lineto 1984 0 lineto 1984 384 lineto 1842 154 1628 45 conicto 1415 -64 1107 -64 conicto 717 -64 486 154 conicto 256 372 256 739 conicto 256 1166 539 1383 conicto 822 1600 1384 1600 conicto 1984 1600 lineto 1984 1641 lineto 1984 1927 1796 2083 conicto 1608 2240 1266 2240 conicto 1049 2240 843 2192 conicto 638 2144 448 2048 conicto 448 2432 lineto 673 2496 884 2528 conicto 1095 2560 1295 2560 conicto 1835 2560 2101 2284 conicto 2368 2009 2368 1449 conicto end_ol grestore gsave 27.598733 9.550000 translate 0.035278 -0.035278 scale start_ol 2048 2432 moveto 2048 2048 lineto 1868 2144 1674 2192 conicto 1480 2240 1273 2240 conicto 957 2240 798 2144 conicto 640 2048 640 1856 conicto 640 1709 757 1625 conicto 875 1542 1229 1467 conicto 1380 1435 lineto 1812 1341 1994 1170 conicto 2176 999 2176 692 conicto 2176 343 1899 139 conicto 1622 -64 1137 -64 conicto 936 -64 717 -32 conicto 498 0 256 64 conicto 256 512 lineto 490 385 718 320 conicto 947 256 1170 256 conicto 1470 256 1631 358 conicto 1792 461 1792 647 conicto 1792 820 1670 912 conicto 1549 1004 1141 1089 conicto 988 1123 lineto 600 1203 428 1369 conicto 256 1535 256 1824 conicto 256 2177 510 2368 conicto 765 2560 1233 2560 conicto 1466 2560 1670 2528 conicto 1875 2496 2048 2432 conicto end_ol grestore gsave 27.920467 9.550000 translate 0.035278 -0.035278 scale start_ol 2624 1352 moveto 2624 1152 lineto 704 1152 lineto 731 715 960 485 conicto 1189 256 1597 256 conicto 1834 256 2056 320 conicto 2278 384 2496 512 conicto 2496 128 lineto 2273 34 2039 -15 conicto 1805 -64 1565 -64 conicto 961 -64 608 284 conicto 256 632 256 1225 conicto 256 1839 595 2199 conicto 934 2560 1509 2560 conicto 2024 2560 2324 2235 conicto 2624 1910 2624 1352 conicto 2240 1472 moveto 2235 1822 2043 2031 conicto 1852 2240 1537 2240 conicto 1180 2240 965 2038 conicto 750 1836 718 1470 conicto 2240 1472 lineto end_ol grestore gsave 28.293000 9.550000 translate 0.035278 -0.035278 scale start_ol 512 576 moveto 960 576 lineto 960 0 lineto 512 0 lineto 512 576 lineto end_ol grestore gsave 28.487733 9.550000 translate 0.035278 -0.035278 scale start_ol 704 1249 moveto 704 784 891 520 conicto 1079 256 1407 256 conicto 1735 256 1923 520 conicto 2112 784 2112 1249 conicto 2112 1713 1923 1976 conicto 1735 2240 1407 2240 conicto 1079 2240 891 1976 conicto 704 1713 704 1249 conicto 2112 384 moveto 1980 156 1779 46 conicto 1578 -64 1297 -64 conicto 835 -64 545 297 conicto 256 659 256 1248 conicto 256 1837 545 2198 conicto 835 2560 1297 2560 conicto 1578 2560 1779 2450 conicto 1980 2340 2112 2112 conicto 2112 2496 lineto 2496 2496 lineto 2496 -960 lineto 2112 -960 lineto 2112 384 lineto end_ol grestore gsave 28.877200 9.550000 translate 0.035278 -0.035278 scale start_ol 2240 2432 moveto 2240 2048 lineto 2066 2144 1892 2192 conicto 1718 2240 1541 2240 conicto 1143 2240 923 1979 conicto 704 1718 704 1248 conicto 704 778 923 517 conicto 1143 256 1541 256 conicto 1718 256 1892 304 conicto 2066 352 2240 448 conicto 2240 64 lineto 2068 0 1883 -32 conicto 1698 -64 1490 -64 conicto 924 -64 590 290 conicto 256 645 256 1248 conicto 256 1859 593 2209 conicto 931 2560 1517 2560 conicto 1707 2560 1888 2528 conicto 2070 2496 2240 2432 conicto end_ol grestore gsave 29.215867 9.550000 translate 0.035278 -0.035278 scale start_ol 1409 2240 moveto 1083 2240 893 1974 conicto 704 1709 704 1248 conicto 704 787 892 521 conicto 1081 256 1409 256 conicto 1733 256 1922 522 conicto 2112 789 2112 1248 conicto 2112 1705 1922 1972 conicto 1733 2240 1409 2240 conicto 1408 2560 moveto 1946 2560 2253 2212 conicto 2560 1864 2560 1248 conicto 2560 634 2253 285 conicto 1946 -64 1408 -64 conicto 869 -64 562 285 conicto 256 634 256 1248 conicto 256 1864 562 2212 conicto 869 2560 1408 2560 conicto end_ol grestore gsave 29.588400 9.550000 translate 0.035278 -0.035278 scale start_ol 192 2496 moveto 607 2496 lineto 1126 549 lineto 1643 2496 lineto 2133 2496 lineto 2652 549 lineto 3169 2496 lineto 3584 2496 lineto 2923 0 lineto 2433 0 lineto 1890 2046 lineto 1343 0 lineto 853 0 lineto 192 2496 lineto end_ol grestore gsave 26.392233 10.350000 translate 0.035278 -0.035278 scale start_ol 832 3328 moveto 832 2048 lineto 448 2048 lineto 448 3328 lineto 832 3328 lineto 1664 3328 moveto 1664 2048 lineto 1280 2048 lineto 1280 3328 lineto 1664 3328 lineto end_ol grestore gsave 26.671633 10.350000 translate 0.035278 -0.035278 scale start_ol 2075 1568 moveto 2215 1519 2346 1356 conicto 2478 1194 2612 910 conicto 3072 0 lineto 2587 0 lineto 2184 855 lineto 2012 1189 1850 1298 conicto 1688 1408 1409 1408 conicto 896 1408 lineto 896 0 lineto 448 0 lineto 448 3328 lineto 1488 3328 lineto 2060 3328 2342 3090 conicto 2624 2853 2624 2374 conicto 2624 2061 2484 1854 conicto 2344 1648 2075 1568 conicto 896 2944 moveto 896 1792 lineto 1488 1792 lineto 1829 1792 2002 1939 conicto 2176 2086 2176 2370 conicto 2176 2655 2002 2799 conicto 1829 2944 1488 2944 conicto 896 2944 lineto end_ol grestore gsave 27.069567 10.350000 translate 0.035278 -0.035278 scale start_ol 1600 2882 moveto 985 1216 lineto 2218 1216 lineto 1600 2882 lineto 1344 3328 moveto 1858 3328 lineto 3136 0 lineto 2665 0 lineto 2360 832 lineto 847 832 lineto 542 0 lineto 64 0 lineto 1344 3328 lineto end_ol grestore gsave 27.450567 10.350000 translate 0.035278 -0.035278 scale start_ol 128 3328 moveto 584 3328 lineto 1286 515 lineto 1985 3328 lineto 2493 3328 lineto 3194 515 lineto 3893 3328 lineto 4352 3328 lineto 3514 0 lineto 2946 0 lineto 2242 2889 lineto 1531 0 lineto 964 0 lineto 128 3328 lineto end_ol grestore gsave 28.051700 10.350000 translate 0.035278 -0.035278 scale start_ol 832 3328 moveto 832 2048 lineto 448 2048 lineto 448 3328 lineto 832 3328 lineto 1664 3328 moveto 1664 2048 lineto 1280 2048 lineto 1280 3328 lineto 1664 3328 lineto end_ol grestore gsave 28.331100 10.350000 translate 0.035278 -0.035278 scale start_ol end_ol grestore gsave 28.525833 10.350000 translate 0.035278 -0.035278 scale start_ol 2112 2112 moveto 2112 3520 lineto 2496 3520 lineto 2496 0 lineto 2112 0 lineto 2112 384 lineto 1980 156 1779 46 conicto 1578 -64 1297 -64 conicto 835 -64 545 297 conicto 256 659 256 1248 conicto 256 1837 545 2198 conicto 835 2560 1297 2560 conicto 1578 2560 1779 2450 conicto 1980 2340 2112 2112 conicto 704 1249 moveto 704 784 891 520 conicto 1079 256 1407 256 conicto 1735 256 1923 520 conicto 2112 784 2112 1249 conicto 2112 1713 1923 1976 conicto 1735 2240 1407 2240 conicto 1079 2240 891 1976 conicto 704 1713 704 1249 conicto end_ol grestore gsave 28.915300 10.350000 translate 0.035278 -0.035278 scale start_ol 2624 1352 moveto 2624 1152 lineto 704 1152 lineto 731 715 960 485 conicto 1189 256 1597 256 conicto 1834 256 2056 320 conicto 2278 384 2496 512 conicto 2496 128 lineto 2273 34 2039 -15 conicto 1805 -64 1565 -64 conicto 961 -64 608 284 conicto 256 632 256 1225 conicto 256 1839 595 2199 conicto 934 2560 1509 2560 conicto 2024 2560 2324 2235 conicto 2624 1910 2624 1352 conicto 2240 1472 moveto 2235 1822 2043 2031 conicto 1852 2240 1537 2240 conicto 1180 2240 965 2038 conicto 750 1836 718 1470 conicto 2240 1472 lineto end_ol grestore gsave 29.287833 10.350000 translate 0.035278 -0.035278 scale start_ol 128 2496 moveto 563 2496 lineto 1344 401 lineto 2125 2496 lineto 2560 2496 lineto 1623 0 lineto 1065 0 lineto 128 2496 lineto end_ol grestore gsave 29.651900 10.350000 translate 0.035278 -0.035278 scale start_ol 448 2496 moveto 832 2496 lineto 832 0 lineto 448 0 lineto 448 2496 lineto 448 3520 moveto 832 3520 lineto 832 3008 lineto 448 3008 lineto 448 3520 lineto end_ol grestore gsave 29.821233 10.350000 translate 0.035278 -0.035278 scale start_ol 2240 2432 moveto 2240 2048 lineto 2066 2144 1892 2192 conicto 1718 2240 1541 2240 conicto 1143 2240 923 1979 conicto 704 1718 704 1248 conicto 704 778 923 517 conicto 1143 256 1541 256 conicto 1718 256 1892 304 conicto 2066 352 2240 448 conicto 2240 64 lineto 2068 0 1883 -32 conicto 1698 -64 1490 -64 conicto 924 -64 590 290 conicto 256 645 256 1248 conicto 256 1859 593 2209 conicto 931 2560 1517 2560 conicto 1707 2560 1888 2528 conicto 2070 2496 2240 2432 conicto end_ol grestore gsave 30.159900 10.350000 translate 0.035278 -0.035278 scale start_ol 2624 1352 moveto 2624 1152 lineto 704 1152 lineto 731 715 960 485 conicto 1189 256 1597 256 conicto 1834 256 2056 320 conicto 2278 384 2496 512 conicto 2496 128 lineto 2273 34 2039 -15 conicto 1805 -64 1565 -64 conicto 961 -64 608 284 conicto 256 632 256 1225 conicto 256 1839 595 2199 conicto 934 2560 1509 2560 conicto 2024 2560 2324 2235 conicto 2624 1910 2624 1352 conicto 2240 1472 moveto 2235 1822 2043 2031 conicto 1852 2240 1537 2240 conicto 1180 2240 965 2038 conicto 750 1836 718 1470 conicto 2240 1472 lineto end_ol grestore gsave 11.000000 5.000000 translate 0.035278 -0.035278 scale start_ol 2083 3447 moveto 553 -101 lineto 221 -101 lineto 1751 3447 lineto 2083 3447 lineto end_ol grestore 0.100000 slw [] 0 sd [] 0 sd 0 slc n 12.000000 5.000000 m 14.000000 5.000000 l s gsave 14.000000 5.000000 translate 0.035278 -0.035278 scale start_ol 128 2496 moveto 563 2496 lineto 1344 401 lineto 2125 2496 lineto 2560 2496 lineto 1623 0 lineto 1065 0 lineto 128 2496 lineto end_ol grestore gsave 14.364067 5.000000 translate 0.035278 -0.035278 scale start_ol 1559 1280 moveto 1040 1280 840 1160 conicto 640 1041 640 754 conicto 640 525 790 390 conicto 940 256 1198 256 conicto 1554 256 1769 510 conicto 1984 765 1984 1187 conicto 1984 1280 lineto 1559 1280 lineto 2368 1449 moveto 2368 0 lineto 1984 0 lineto 1984 384 lineto 1842 154 1628 45 conicto 1415 -64 1107 -64 conicto 717 -64 486 154 conicto 256 372 256 739 conicto 256 1166 539 1383 conicto 822 1600 1384 1600 conicto 1984 1600 lineto 1984 1641 lineto 1984 1927 1796 2083 conicto 1608 2240 1266 2240 conicto 1049 2240 843 2192 conicto 638 2144 448 2048 conicto 448 2432 lineto 673 2496 884 2528 conicto 1095 2560 1295 2560 conicto 1835 2560 2101 2284 conicto 2368 2009 2368 1449 conicto end_ol grestore gsave 14.736600 5.000000 translate 0.035278 -0.035278 scale start_ol 1920 2112 moveto 1848 2178 1764 2209 conicto 1680 2240 1578 2240 conicto 1218 2240 1025 2001 conicto 832 1763 832 1317 conicto 832 0 lineto 448 0 lineto 448 2496 lineto 832 2496 lineto 832 2112 lineto 965 2339 1180 2449 conicto 1396 2560 1702 2560 conicto 1747 2560 1799 2560 conicto 1852 2560 1917 2560 conicto 1920 2112 lineto end_ol grestore gsave 14.990600 5.000000 translate 0.035278 -0.035278 scale start_ol 1157 3328 moveto 1536 3328 lineto 379 -448 lineto 0 -448 lineto 1157 3328 lineto end_ol grestore gsave 15.193800 5.000000 translate 0.035278 -0.035278 scale start_ol 2240 2432 moveto 2240 2048 lineto 2066 2144 1892 2192 conicto 1718 2240 1541 2240 conicto 1143 2240 923 1979 conicto 704 1718 704 1248 conicto 704 778 923 517 conicto 1143 256 1541 256 conicto 1718 256 1892 304 conicto 2066 352 2240 448 conicto 2240 64 lineto 2068 0 1883 -32 conicto 1698 -64 1490 -64 conicto 924 -64 590 290 conicto 256 645 256 1248 conicto 256 1859 593 2209 conicto 931 2560 1517 2560 conicto 1707 2560 1888 2528 conicto 2070 2496 2240 2432 conicto end_ol grestore gsave 15.532467 5.000000 translate 0.035278 -0.035278 scale start_ol 1559 1280 moveto 1040 1280 840 1160 conicto 640 1041 640 754 conicto 640 525 790 390 conicto 940 256 1198 256 conicto 1554 256 1769 510 conicto 1984 765 1984 1187 conicto 1984 1280 lineto 1559 1280 lineto 2368 1449 moveto 2368 0 lineto 1984 0 lineto 1984 384 lineto 1842 154 1628 45 conicto 1415 -64 1107 -64 conicto 717 -64 486 154 conicto 256 372 256 739 conicto 256 1166 539 1383 conicto 822 1600 1384 1600 conicto 1984 1600 lineto 1984 1641 lineto 1984 1927 1796 2083 conicto 1608 2240 1266 2240 conicto 1049 2240 843 2192 conicto 638 2144 448 2048 conicto 448 2432 lineto 673 2496 884 2528 conicto 1095 2560 1295 2560 conicto 1835 2560 2101 2284 conicto 2368 2009 2368 1449 conicto end_ol grestore gsave 15.905000 5.000000 translate 0.035278 -0.035278 scale start_ol 2240 2432 moveto 2240 2048 lineto 2066 2144 1892 2192 conicto 1718 2240 1541 2240 conicto 1143 2240 923 1979 conicto 704 1718 704 1248 conicto 704 778 923 517 conicto 1143 256 1541 256 conicto 1718 256 1892 304 conicto 2066 352 2240 448 conicto 2240 64 lineto 2068 0 1883 -32 conicto 1698 -64 1490 -64 conicto 924 -64 590 290 conicto 256 645 256 1248 conicto 256 1859 593 2209 conicto 931 2560 1517 2560 conicto 1707 2560 1888 2528 conicto 2070 2496 2240 2432 conicto end_ol grestore gsave 16.243667 5.000000 translate 0.035278 -0.035278 scale start_ol 2560 1509 moveto 2560 0 lineto 2176 0 lineto 2176 1496 lineto 2176 1869 2029 2054 conicto 1883 2240 1590 2240 conicto 1238 2240 1035 2018 conicto 832 1796 832 1413 conicto 832 0 lineto 448 0 lineto 448 3520 lineto 832 3520 lineto 832 2112 lineto 983 2337 1188 2448 conicto 1394 2560 1662 2560 conicto 2106 2560 2333 2293 conicto 2560 2027 2560 1509 conicto end_ol grestore gsave 16.633133 5.000000 translate 0.035278 -0.035278 scale start_ol 2624 1352 moveto 2624 1152 lineto 704 1152 lineto 731 715 960 485 conicto 1189 256 1597 256 conicto 1834 256 2056 320 conicto 2278 384 2496 512 conicto 2496 128 lineto 2273 34 2039 -15 conicto 1805 -64 1565 -64 conicto 961 -64 608 284 conicto 256 632 256 1225 conicto 256 1839 595 2199 conicto 934 2560 1509 2560 conicto 2024 2560 2324 2235 conicto 2624 1910 2624 1352 conicto 2240 1472 moveto 2235 1822 2043 2031 conicto 1852 2240 1537 2240 conicto 1180 2240 965 2038 conicto 750 1836 718 1470 conicto 2240 1472 lineto end_ol grestore gsave 17.005667 5.000000 translate 0.035278 -0.035278 scale start_ol 1157 3328 moveto 1536 3328 lineto 379 -448 lineto 0 -448 lineto 1157 3328 lineto end_ol grestore gsave 17.208867 5.000000 translate 0.035278 -0.035278 scale start_ol 832 384 moveto 832 -960 lineto 448 -960 lineto 448 2496 lineto 832 2496 lineto 832 2112 lineto 963 2340 1164 2450 conicto 1366 2560 1645 2560 conicto 2108 2560 2398 2198 conicto 2688 1837 2688 1248 conicto 2688 659 2398 297 conicto 2108 -64 1645 -64 conicto 1366 -64 1164 46 conicto 963 156 832 384 conicto 2240 1249 moveto 2240 1713 2052 1976 conicto 1865 2240 1536 2240 conicto 1208 2240 1020 1976 conicto 832 1713 832 1249 conicto 832 784 1020 520 conicto 1208 256 1536 256 conicto 1865 256 2052 520 conicto 2240 784 2240 1249 conicto end_ol grestore gsave 17.598333 5.000000 translate 0.035278 -0.035278 scale start_ol 2240 1249 moveto 2240 1713 2052 1976 conicto 1865 2240 1536 2240 conicto 1208 2240 1020 1976 conicto 832 1713 832 1249 conicto 832 784 1020 520 conicto 1208 256 1536 256 conicto 1865 256 2052 520 conicto 2240 784 2240 1249 conicto 832 2112 moveto 963 2340 1164 2450 conicto 1366 2560 1645 2560 conicto 2108 2560 2398 2198 conicto 2688 1837 2688 1248 conicto 2688 659 2398 297 conicto 2108 -64 1645 -64 conicto 1366 -64 1164 46 conicto 963 156 832 384 conicto 832 0 lineto 448 0 lineto 448 3520 lineto 832 3520 lineto 832 2112 lineto end_ol grestore gsave 17.987800 5.000000 translate 0.035278 -0.035278 scale start_ol 448 986 moveto 448 2496 lineto 832 2496 lineto 832 1001 lineto 832 629 978 442 conicto 1124 256 1417 256 conicto 1768 256 1972 477 conicto 2176 699 2176 1081 conicto 2176 2496 lineto 2560 2496 lineto 2560 0 lineto 2176 0 lineto 2176 384 lineto 2022 157 1819 46 conicto 1617 -64 1349 -64 conicto 906 -64 677 203 conicto 448 471 448 986 conicto end_ol grestore gsave 18.377267 5.000000 translate 0.035278 -0.035278 scale start_ol 448 2496 moveto 832 2496 lineto 832 0 lineto 448 0 lineto 448 2496 lineto 448 3520 moveto 832 3520 lineto 832 3008 lineto 448 3008 lineto 448 3520 lineto end_ol grestore gsave 18.546600 5.000000 translate 0.035278 -0.035278 scale start_ol 448 3520 moveto 832 3520 lineto 832 0 lineto 448 0 lineto 448 3520 lineto end_ol grestore gsave 18.715933 5.000000 translate 0.035278 -0.035278 scale start_ol 2112 2112 moveto 2112 3520 lineto 2496 3520 lineto 2496 0 lineto 2112 0 lineto 2112 384 lineto 1980 156 1779 46 conicto 1578 -64 1297 -64 conicto 835 -64 545 297 conicto 256 659 256 1248 conicto 256 1837 545 2198 conicto 835 2560 1297 2560 conicto 1578 2560 1779 2450 conicto 1980 2340 2112 2112 conicto 704 1249 moveto 704 784 891 520 conicto 1079 256 1407 256 conicto 1735 256 1923 520 conicto 2112 784 2112 1249 conicto 2112 1713 1923 1976 conicto 1735 2240 1407 2240 conicto 1079 2240 891 1976 conicto 704 1713 704 1249 conicto end_ol grestore gsave 19.105400 5.000000 translate 0.035278 -0.035278 scale start_ol 2624 1352 moveto 2624 1152 lineto 704 1152 lineto 731 715 960 485 conicto 1189 256 1597 256 conicto 1834 256 2056 320 conicto 2278 384 2496 512 conicto 2496 128 lineto 2273 34 2039 -15 conicto 1805 -64 1565 -64 conicto 961 -64 608 284 conicto 256 632 256 1225 conicto 256 1839 595 2199 conicto 934 2560 1509 2560 conicto 2024 2560 2324 2235 conicto 2624 1910 2624 1352 conicto 2240 1472 moveto 2235 1822 2043 2031 conicto 1852 2240 1537 2240 conicto 1180 2240 965 2038 conicto 750 1836 718 1470 conicto 2240 1472 lineto end_ol grestore gsave 19.477933 5.000000 translate 0.035278 -0.035278 scale start_ol 1920 2112 moveto 1848 2178 1764 2209 conicto 1680 2240 1578 2240 conicto 1218 2240 1025 2001 conicto 832 1763 832 1317 conicto 832 0 lineto 448 0 lineto 448 2496 lineto 832 2496 lineto 832 2112 lineto 965 2339 1180 2449 conicto 1396 2560 1702 2560 conicto 1747 2560 1799 2560 conicto 1852 2560 1917 2560 conicto 1920 2112 lineto end_ol grestore gsave 22.000000 5.000000 translate 0.035278 -0.035278 scale start_ol 2240 1249 moveto 2240 1713 2052 1976 conicto 1865 2240 1536 2240 conicto 1208 2240 1020 1976 conicto 832 1713 832 1249 conicto 832 784 1020 520 conicto 1208 256 1536 256 conicto 1865 256 2052 520 conicto 2240 784 2240 1249 conicto 832 2112 moveto 963 2340 1164 2450 conicto 1366 2560 1645 2560 conicto 2108 2560 2398 2198 conicto 2688 1837 2688 1248 conicto 2688 659 2398 297 conicto 2108 -64 1645 -64 conicto 1366 -64 1164 46 conicto 963 156 832 384 conicto 832 0 lineto 448 0 lineto 448 3520 lineto 832 3520 lineto 832 2112 lineto end_ol grestore gsave 22.389467 5.000000 translate 0.035278 -0.035278 scale start_ol 448 986 moveto 448 2496 lineto 832 2496 lineto 832 1001 lineto 832 629 978 442 conicto 1124 256 1417 256 conicto 1768 256 1972 477 conicto 2176 699 2176 1081 conicto 2176 2496 lineto 2560 2496 lineto 2560 0 lineto 2176 0 lineto 2176 384 lineto 2022 157 1819 46 conicto 1617 -64 1349 -64 conicto 906 -64 677 203 conicto 448 471 448 986 conicto end_ol grestore gsave 22.778933 5.000000 translate 0.035278 -0.035278 scale start_ol 448 2496 moveto 832 2496 lineto 832 0 lineto 448 0 lineto 448 2496 lineto 448 3520 moveto 832 3520 lineto 832 3008 lineto 448 3008 lineto 448 3520 lineto end_ol grestore gsave 22.948267 5.000000 translate 0.035278 -0.035278 scale start_ol 448 3520 moveto 832 3520 lineto 832 0 lineto 448 0 lineto 448 3520 lineto end_ol grestore gsave 23.117600 5.000000 translate 0.035278 -0.035278 scale start_ol 2112 2112 moveto 2112 3520 lineto 2496 3520 lineto 2496 0 lineto 2112 0 lineto 2112 384 lineto 1980 156 1779 46 conicto 1578 -64 1297 -64 conicto 835 -64 545 297 conicto 256 659 256 1248 conicto 256 1837 545 2198 conicto 835 2560 1297 2560 conicto 1578 2560 1779 2450 conicto 1980 2340 2112 2112 conicto 704 1249 moveto 704 784 891 520 conicto 1079 256 1407 256 conicto 1735 256 1923 520 conicto 2112 784 2112 1249 conicto 2112 1713 1923 1976 conicto 1735 2240 1407 2240 conicto 1079 2240 891 1976 conicto 704 1713 704 1249 conicto end_ol grestore gsave 23.507067 5.000000 translate 0.035278 -0.035278 scale start_ol 1157 3328 moveto 1536 3328 lineto 379 -448 lineto 0 -448 lineto 1157 3328 lineto end_ol grestore gsave 23.710267 5.000000 translate 0.035278 -0.035278 scale start_ol 256 3328 moveto 752 3328 lineto 1597 2080 lineto 2449 3328 lineto 2944 3328 lineto 1864 1730 lineto 3008 0 lineto 2519 0 lineto 1573 1429 lineto 620 0 lineto 128 0 lineto 1303 1776 lineto 256 3328 lineto end_ol grestore gsave 24.125133 5.000000 translate 0.035278 -0.035278 scale start_ol 256 3328 moveto 752 3328 lineto 1597 2080 lineto 2449 3328 lineto 2944 3328 lineto 1864 1730 lineto 3008 0 lineto 2519 0 lineto 1573 1429 lineto 620 0 lineto 128 0 lineto 1303 1776 lineto 256 3328 lineto end_ol grestore gsave 24.540000 5.000000 translate 0.035278 -0.035278 scale start_ol 256 3328 moveto 752 3328 lineto 1597 2080 lineto 2449 3328 lineto 2944 3328 lineto 1864 1730 lineto 3008 0 lineto 2519 0 lineto 1573 1429 lineto 620 0 lineto 128 0 lineto 1303 1776 lineto 256 3328 lineto end_ol grestore gsave 22.000000 6.000000 translate 0.035278 -0.035278 scale start_ol 2240 1249 moveto 2240 1713 2052 1976 conicto 1865 2240 1536 2240 conicto 1208 2240 1020 1976 conicto 832 1713 832 1249 conicto 832 784 1020 520 conicto 1208 256 1536 256 conicto 1865 256 2052 520 conicto 2240 784 2240 1249 conicto 832 2112 moveto 963 2340 1164 2450 conicto 1366 2560 1645 2560 conicto 2108 2560 2398 2198 conicto 2688 1837 2688 1248 conicto 2688 659 2398 297 conicto 2108 -64 1645 -64 conicto 1366 -64 1164 46 conicto 963 156 832 384 conicto 832 0 lineto 448 0 lineto 448 3520 lineto 832 3520 lineto 832 2112 lineto end_ol grestore gsave 22.389467 6.000000 translate 0.035278 -0.035278 scale start_ol 1559 1280 moveto 1040 1280 840 1160 conicto 640 1041 640 754 conicto 640 525 790 390 conicto 940 256 1198 256 conicto 1554 256 1769 510 conicto 1984 765 1984 1187 conicto 1984 1280 lineto 1559 1280 lineto 2368 1449 moveto 2368 0 lineto 1984 0 lineto 1984 384 lineto 1842 154 1628 45 conicto 1415 -64 1107 -64 conicto 717 -64 486 154 conicto 256 372 256 739 conicto 256 1166 539 1383 conicto 822 1600 1384 1600 conicto 1984 1600 lineto 1984 1641 lineto 1984 1927 1796 2083 conicto 1608 2240 1266 2240 conicto 1049 2240 843 2192 conicto 638 2144 448 2048 conicto 448 2432 lineto 673 2496 884 2528 conicto 1095 2560 1295 2560 conicto 1835 2560 2101 2284 conicto 2368 2009 2368 1449 conicto end_ol grestore gsave 22.762000 6.000000 translate 0.035278 -0.035278 scale start_ol 2048 2432 moveto 2048 2048 lineto 1868 2144 1674 2192 conicto 1480 2240 1273 2240 conicto 957 2240 798 2144 conicto 640 2048 640 1856 conicto 640 1709 757 1625 conicto 875 1542 1229 1467 conicto 1380 1435 lineto 1812 1341 1994 1170 conicto 2176 999 2176 692 conicto 2176 343 1899 139 conicto 1622 -64 1137 -64 conicto 936 -64 717 -32 conicto 498 0 256 64 conicto 256 512 lineto 490 385 718 320 conicto 947 256 1170 256 conicto 1470 256 1631 358 conicto 1792 461 1792 647 conicto 1792 820 1670 912 conicto 1549 1004 1141 1089 conicto 988 1123 lineto 600 1203 428 1369 conicto 256 1535 256 1824 conicto 256 2177 510 2368 conicto 765 2560 1233 2560 conicto 1466 2560 1670 2528 conicto 1875 2496 2048 2432 conicto end_ol grestore gsave 23.083733 6.000000 translate 0.035278 -0.035278 scale start_ol 2624 1352 moveto 2624 1152 lineto 704 1152 lineto 731 715 960 485 conicto 1189 256 1597 256 conicto 1834 256 2056 320 conicto 2278 384 2496 512 conicto 2496 128 lineto 2273 34 2039 -15 conicto 1805 -64 1565 -64 conicto 961 -64 608 284 conicto 256 632 256 1225 conicto 256 1839 595 2199 conicto 934 2560 1509 2560 conicto 2024 2560 2324 2235 conicto 2624 1910 2624 1352 conicto 2240 1472 moveto 2235 1822 2043 2031 conicto 1852 2240 1537 2240 conicto 1180 2240 965 2038 conicto 750 1836 718 1470 conicto 2240 1472 lineto end_ol grestore gsave 23.456267 6.000000 translate 0.035278 -0.035278 scale start_ol 512 576 moveto 960 576 lineto 960 0 lineto 512 0 lineto 512 576 lineto end_ol grestore gsave 23.651000 6.000000 translate 0.035278 -0.035278 scale start_ol 704 1249 moveto 704 784 891 520 conicto 1079 256 1407 256 conicto 1735 256 1923 520 conicto 2112 784 2112 1249 conicto 2112 1713 1923 1976 conicto 1735 2240 1407 2240 conicto 1079 2240 891 1976 conicto 704 1713 704 1249 conicto 2112 384 moveto 1980 156 1779 46 conicto 1578 -64 1297 -64 conicto 835 -64 545 297 conicto 256 659 256 1248 conicto 256 1837 545 2198 conicto 835 2560 1297 2560 conicto 1578 2560 1779 2450 conicto 1980 2340 2112 2112 conicto 2112 2496 lineto 2496 2496 lineto 2496 -960 lineto 2112 -960 lineto 2112 384 lineto end_ol grestore gsave 24.040467 6.000000 translate 0.035278 -0.035278 scale start_ol 2240 2432 moveto 2240 2048 lineto 2066 2144 1892 2192 conicto 1718 2240 1541 2240 conicto 1143 2240 923 1979 conicto 704 1718 704 1248 conicto 704 778 923 517 conicto 1143 256 1541 256 conicto 1718 256 1892 304 conicto 2066 352 2240 448 conicto 2240 64 lineto 2068 0 1883 -32 conicto 1698 -64 1490 -64 conicto 924 -64 590 290 conicto 256 645 256 1248 conicto 256 1859 593 2209 conicto 931 2560 1517 2560 conicto 1707 2560 1888 2528 conicto 2070 2496 2240 2432 conicto end_ol grestore gsave 24.379133 6.000000 translate 0.035278 -0.035278 scale start_ol 1409 2240 moveto 1083 2240 893 1974 conicto 704 1709 704 1248 conicto 704 787 892 521 conicto 1081 256 1409 256 conicto 1733 256 1922 522 conicto 2112 789 2112 1248 conicto 2112 1705 1922 1972 conicto 1733 2240 1409 2240 conicto 1408 2560 moveto 1946 2560 2253 2212 conicto 2560 1864 2560 1248 conicto 2560 634 2253 285 conicto 1946 -64 1408 -64 conicto 869 -64 562 285 conicto 256 634 256 1248 conicto 256 1864 562 2212 conicto 869 2560 1408 2560 conicto end_ol grestore gsave 24.751667 6.000000 translate 0.035278 -0.035278 scale start_ol 192 2496 moveto 607 2496 lineto 1126 549 lineto 1643 2496 lineto 2133 2496 lineto 2652 549 lineto 3169 2496 lineto 3584 2496 lineto 2923 0 lineto 2433 0 lineto 1890 2046 lineto 1343 0 lineto 853 0 lineto 192 2496 lineto end_ol grestore 0.100000 slw [] 0 sd [] 0 sd 0 slc n 20.000000 5.000000 m 22.000000 5.000000 l s 0.100000 slw [] 0 sd [] 0 sd 0 slc n 20.000000 5.000000 m 22.000000 6.000000 l s 0.100000 slw [] 0 sd [] 0 sd 0 slc 1.000000 0.000000 0.000000 srgb n 26.385837 6.886655 2.340942 2.340942 245.448310 336.483761 ellipse s [] 0 sd 0 slj 0 slc n 25.090107 4.933812 m 25.345076 4.436328 l 25.392333 4.711813 l 25.641076 4.839297 l ef n 25.090107 4.933812 m 25.345076 4.436328 l 25.392333 4.711813 l 25.641076 4.839297 l cp s 0.000000 0.000000 0.000000 srgb gsave 28.000000 5.000000 translate 0.035278 -0.035278 scale start_ol 448 3520 moveto 832 3520 lineto 832 0 lineto 448 0 lineto 448 3520 lineto end_ol grestore gsave 28.169333 5.000000 translate 0.035278 -0.035278 scale start_ol 1409 2240 moveto 1083 2240 893 1974 conicto 704 1709 704 1248 conicto 704 787 892 521 conicto 1081 256 1409 256 conicto 1733 256 1922 522 conicto 2112 789 2112 1248 conicto 2112 1705 1922 1972 conicto 1733 2240 1409 2240 conicto 1408 2560 moveto 1946 2560 2253 2212 conicto 2560 1864 2560 1248 conicto 2560 634 2253 285 conicto 1946 -64 1408 -64 conicto 869 -64 562 285 conicto 256 634 256 1248 conicto 256 1864 562 2212 conicto 869 2560 1408 2560 conicto end_ol grestore gsave 28.541867 5.000000 translate 0.035278 -0.035278 scale start_ol 1409 2240 moveto 1083 2240 893 1974 conicto 704 1709 704 1248 conicto 704 787 892 521 conicto 1081 256 1409 256 conicto 1733 256 1922 522 conicto 2112 789 2112 1248 conicto 2112 1705 1922 1972 conicto 1733 2240 1409 2240 conicto 1408 2560 moveto 1946 2560 2253 2212 conicto 2560 1864 2560 1248 conicto 2560 634 2253 285 conicto 1946 -64 1408 -64 conicto 869 -64 562 285 conicto 256 634 256 1248 conicto 256 1864 562 2212 conicto 869 2560 1408 2560 conicto end_ol grestore gsave 28.914400 5.000000 translate 0.035278 -0.035278 scale start_ol 832 384 moveto 832 -960 lineto 448 -960 lineto 448 2496 lineto 832 2496 lineto 832 2112 lineto 963 2340 1164 2450 conicto 1366 2560 1645 2560 conicto 2108 2560 2398 2198 conicto 2688 1837 2688 1248 conicto 2688 659 2398 297 conicto 2108 -64 1645 -64 conicto 1366 -64 1164 46 conicto 963 156 832 384 conicto 2240 1249 moveto 2240 1713 2052 1976 conicto 1865 2240 1536 2240 conicto 1208 2240 1020 1976 conicto 832 1713 832 1249 conicto 832 784 1020 520 conicto 1208 256 1536 256 conicto 1865 256 2052 520 conicto 2240 784 2240 1249 conicto end_ol grestore gsave 29.303867 5.000000 translate 0.035278 -0.035278 scale start_ol 256 1472 moveto 1472 1472 lineto 1472 1088 lineto 256 1088 lineto 256 1472 lineto end_ol grestore gsave 29.524000 5.000000 translate 0.035278 -0.035278 scale start_ol 2431 2020 moveto 2590 2296 2809 2428 conicto 3029 2560 3325 2560 conicto 3726 2560 3943 2287 conicto 4160 2014 4160 1509 conicto 4160 0 lineto 3776 0 lineto 3776 1496 lineto 3776 1874 3641 2057 conicto 3506 2240 3228 2240 conicto 2890 2240 2693 2018 conicto 2496 1796 2496 1413 conicto 2496 0 lineto 2112 0 lineto 2112 1496 lineto 2112 1876 1976 2058 conicto 1841 2240 1560 2240 conicto 1225 2240 1028 2017 conicto 832 1794 832 1413 conicto 832 0 lineto 448 0 lineto 448 2496 lineto 832 2496 lineto 832 2112 lineto 977 2341 1180 2450 conicto 1383 2560 1662 2560 conicto 1942 2560 2139 2422 conicto 2337 2284 2431 2020 conicto end_ol grestore gsave 30.116667 5.000000 translate 0.035278 -0.035278 scale start_ol 1409 2240 moveto 1083 2240 893 1974 conicto 704 1709 704 1248 conicto 704 787 892 521 conicto 1081 256 1409 256 conicto 1733 256 1922 522 conicto 2112 789 2112 1248 conicto 2112 1705 1922 1972 conicto 1733 2240 1409 2240 conicto 1408 2560 moveto 1946 2560 2253 2212 conicto 2560 1864 2560 1248 conicto 2560 634 2253 285 conicto 1946 -64 1408 -64 conicto 869 -64 562 285 conicto 256 634 256 1248 conicto 256 1864 562 2212 conicto 869 2560 1408 2560 conicto end_ol grestore gsave 30.489200 5.000000 translate 0.035278 -0.035278 scale start_ol 448 986 moveto 448 2496 lineto 832 2496 lineto 832 1001 lineto 832 629 978 442 conicto 1124 256 1417 256 conicto 1768 256 1972 477 conicto 2176 699 2176 1081 conicto 2176 2496 lineto 2560 2496 lineto 2560 0 lineto 2176 0 lineto 2176 384 lineto 2022 157 1819 46 conicto 1617 -64 1349 -64 conicto 906 -64 677 203 conicto 448 471 448 986 conicto end_ol grestore gsave 30.878667 5.000000 translate 0.035278 -0.035278 scale start_ol 2560 1509 moveto 2560 0 lineto 2176 0 lineto 2176 1496 lineto 2176 1869 2029 2054 conicto 1883 2240 1590 2240 conicto 1238 2240 1035 2018 conicto 832 1796 832 1413 conicto 832 0 lineto 448 0 lineto 448 2496 lineto 832 2496 lineto 832 2112 lineto 983 2337 1188 2448 conicto 1394 2560 1662 2560 conicto 2106 2560 2333 2293 conicto 2560 2027 2560 1509 conicto end_ol grestore gsave 31.268133 5.000000 translate 0.035278 -0.035278 scale start_ol 832 3200 moveto 832 2496 lineto 1664 2496 lineto 1664 2176 lineto 832 2176 lineto 832 804 lineto 832 495 914 407 conicto 997 320 1248 320 conicto 1664 320 lineto 1664 0 lineto 1248 0 lineto 793 0 620 173 conicto 448 347 448 804 conicto 448 2176 lineto 128 2176 lineto 128 2496 lineto 448 2496 lineto 448 3200 lineto 832 3200 lineto end_ol grestore gsave 19.000000 3.000000 translate 0.035278 -0.035278 scale start_ol 2112 2112 moveto 2112 3520 lineto 2496 3520 lineto 2496 0 lineto 2112 0 lineto 2112 384 lineto 1980 156 1779 46 conicto 1578 -64 1297 -64 conicto 835 -64 545 297 conicto 256 659 256 1248 conicto 256 1837 545 2198 conicto 835 2560 1297 2560 conicto 1578 2560 1779 2450 conicto 1980 2340 2112 2112 conicto 704 1249 moveto 704 784 891 520 conicto 1079 256 1407 256 conicto 1735 256 1923 520 conicto 2112 784 2112 1249 conicto 2112 1713 1923 1976 conicto 1735 2240 1407 2240 conicto 1079 2240 891 1976 conicto 704 1713 704 1249 conicto end_ol grestore gsave 19.389467 3.000000 translate 0.035278 -0.035278 scale start_ol 2624 1352 moveto 2624 1152 lineto 704 1152 lineto 731 715 960 485 conicto 1189 256 1597 256 conicto 1834 256 2056 320 conicto 2278 384 2496 512 conicto 2496 128 lineto 2273 34 2039 -15 conicto 1805 -64 1565 -64 conicto 961 -64 608 284 conicto 256 632 256 1225 conicto 256 1839 595 2199 conicto 934 2560 1509 2560 conicto 2024 2560 2324 2235 conicto 2624 1910 2624 1352 conicto 2240 1472 moveto 2235 1822 2043 2031 conicto 1852 2240 1537 2240 conicto 1180 2240 965 2038 conicto 750 1836 718 1470 conicto 2240 1472 lineto end_ol grestore gsave 19.762000 3.000000 translate 0.035278 -0.035278 scale start_ol 2240 1249 moveto 2240 1713 2052 1976 conicto 1865 2240 1536 2240 conicto 1208 2240 1020 1976 conicto 832 1713 832 1249 conicto 832 784 1020 520 conicto 1208 256 1536 256 conicto 1865 256 2052 520 conicto 2240 784 2240 1249 conicto 832 2112 moveto 963 2340 1164 2450 conicto 1366 2560 1645 2560 conicto 2108 2560 2398 2198 conicto 2688 1837 2688 1248 conicto 2688 659 2398 297 conicto 2108 -64 1645 -64 conicto 1366 -64 1164 46 conicto 963 156 832 384 conicto 832 0 lineto 448 0 lineto 448 3520 lineto 832 3520 lineto 832 2112 lineto end_ol grestore gsave 20.151467 3.000000 translate 0.035278 -0.035278 scale start_ol 1409 2240 moveto 1083 2240 893 1974 conicto 704 1709 704 1248 conicto 704 787 892 521 conicto 1081 256 1409 256 conicto 1733 256 1922 522 conicto 2112 789 2112 1248 conicto 2112 1705 1922 1972 conicto 1733 2240 1409 2240 conicto 1408 2560 moveto 1946 2560 2253 2212 conicto 2560 1864 2560 1248 conicto 2560 634 2253 285 conicto 1946 -64 1408 -64 conicto 869 -64 562 285 conicto 256 634 256 1248 conicto 256 1864 562 2212 conicto 869 2560 1408 2560 conicto end_ol grestore gsave 20.524000 3.000000 translate 0.035278 -0.035278 scale start_ol 1409 2240 moveto 1083 2240 893 1974 conicto 704 1709 704 1248 conicto 704 787 892 521 conicto 1081 256 1409 256 conicto 1733 256 1922 522 conicto 2112 789 2112 1248 conicto 2112 1705 1922 1972 conicto 1733 2240 1409 2240 conicto 1408 2560 moveto 1946 2560 2253 2212 conicto 2560 1864 2560 1248 conicto 2560 634 2253 285 conicto 1946 -64 1408 -64 conicto 869 -64 562 285 conicto 256 634 256 1248 conicto 256 1864 562 2212 conicto 869 2560 1408 2560 conicto end_ol grestore gsave 20.896533 3.000000 translate 0.035278 -0.035278 scale start_ol 832 3200 moveto 832 2496 lineto 1664 2496 lineto 1664 2176 lineto 832 2176 lineto 832 804 lineto 832 495 914 407 conicto 997 320 1248 320 conicto 1664 320 lineto 1664 0 lineto 1248 0 lineto 793 0 620 173 conicto 448 347 448 804 conicto 448 2176 lineto 128 2176 lineto 128 2496 lineto 448 2496 lineto 448 3200 lineto 832 3200 lineto end_ol grestore gsave 21.133600 3.000000 translate 0.035278 -0.035278 scale start_ol 2048 2432 moveto 2048 2048 lineto 1868 2144 1674 2192 conicto 1480 2240 1273 2240 conicto 957 2240 798 2144 conicto 640 2048 640 1856 conicto 640 1709 757 1625 conicto 875 1542 1229 1467 conicto 1380 1435 lineto 1812 1341 1994 1170 conicto 2176 999 2176 692 conicto 2176 343 1899 139 conicto 1622 -64 1137 -64 conicto 936 -64 717 -32 conicto 498 0 256 64 conicto 256 512 lineto 490 385 718 320 conicto 947 256 1170 256 conicto 1470 256 1631 358 conicto 1792 461 1792 647 conicto 1792 820 1670 912 conicto 1549 1004 1141 1089 conicto 988 1123 lineto 600 1203 428 1369 conicto 256 1535 256 1824 conicto 256 2177 510 2368 conicto 765 2560 1233 2560 conicto 1466 2560 1670 2528 conicto 1875 2496 2048 2432 conicto end_ol grestore gsave 21.455333 3.000000 translate 0.035278 -0.035278 scale start_ol 832 3200 moveto 832 2496 lineto 1664 2496 lineto 1664 2176 lineto 832 2176 lineto 832 804 lineto 832 495 914 407 conicto 997 320 1248 320 conicto 1664 320 lineto 1664 0 lineto 1248 0 lineto 793 0 620 173 conicto 448 347 448 804 conicto 448 2176 lineto 128 2176 lineto 128 2496 lineto 448 2496 lineto 448 3200 lineto 832 3200 lineto end_ol grestore gsave 21.692400 3.000000 translate 0.035278 -0.035278 scale start_ol 1920 2112 moveto 1848 2178 1764 2209 conicto 1680 2240 1578 2240 conicto 1218 2240 1025 2001 conicto 832 1763 832 1317 conicto 832 0 lineto 448 0 lineto 448 2496 lineto 832 2496 lineto 832 2112 lineto 965 2339 1180 2449 conicto 1396 2560 1702 2560 conicto 1747 2560 1799 2560 conicto 1852 2560 1917 2560 conicto 1920 2112 lineto end_ol grestore gsave 21.946400 3.000000 translate 0.035278 -0.035278 scale start_ol 1559 1280 moveto 1040 1280 840 1160 conicto 640 1041 640 754 conicto 640 525 790 390 conicto 940 256 1198 256 conicto 1554 256 1769 510 conicto 1984 765 1984 1187 conicto 1984 1280 lineto 1559 1280 lineto 2368 1449 moveto 2368 0 lineto 1984 0 lineto 1984 384 lineto 1842 154 1628 45 conicto 1415 -64 1107 -64 conicto 717 -64 486 154 conicto 256 372 256 739 conicto 256 1166 539 1383 conicto 822 1600 1384 1600 conicto 1984 1600 lineto 1984 1641 lineto 1984 1927 1796 2083 conicto 1608 2240 1266 2240 conicto 1049 2240 843 2192 conicto 638 2144 448 2048 conicto 448 2432 lineto 673 2496 884 2528 conicto 1095 2560 1295 2560 conicto 1835 2560 2101 2284 conicto 2368 2009 2368 1449 conicto end_ol grestore gsave 22.318933 3.000000 translate 0.035278 -0.035278 scale start_ol 832 384 moveto 832 -960 lineto 448 -960 lineto 448 2496 lineto 832 2496 lineto 832 2112 lineto 963 2340 1164 2450 conicto 1366 2560 1645 2560 conicto 2108 2560 2398 2198 conicto 2688 1837 2688 1248 conicto 2688 659 2398 297 conicto 2108 -64 1645 -64 conicto 1366 -64 1164 46 conicto 963 156 832 384 conicto 2240 1249 moveto 2240 1713 2052 1976 conicto 1865 2240 1536 2240 conicto 1208 2240 1020 1976 conicto 832 1713 832 1249 conicto 832 784 1020 520 conicto 1208 256 1536 256 conicto 1865 256 2052 520 conicto 2240 784 2240 1249 conicto end_ol grestore gsave 22.708400 3.000000 translate 0.035278 -0.035278 scale start_ol end_ol grestore gsave 22.903133 3.000000 translate 0.035278 -0.035278 scale start_ol 256 1472 moveto 1472 1472 lineto 1472 1088 lineto 256 1088 lineto 256 1472 lineto end_ol grestore gsave 23.123267 3.000000 translate 0.035278 -0.035278 scale start_ol 256 1472 moveto 1472 1472 lineto 1472 1088 lineto 256 1088 lineto 256 1472 lineto end_ol grestore gsave 23.343400 3.000000 translate 0.035278 -0.035278 scale start_ol 2240 2432 moveto 2240 2048 lineto 2066 2144 1892 2192 conicto 1718 2240 1541 2240 conicto 1143 2240 923 1979 conicto 704 1718 704 1248 conicto 704 778 923 517 conicto 1143 256 1541 256 conicto 1718 256 1892 304 conicto 2066 352 2240 448 conicto 2240 64 lineto 2068 0 1883 -32 conicto 1698 -64 1490 -64 conicto 924 -64 590 290 conicto 256 645 256 1248 conicto 256 1859 593 2209 conicto 931 2560 1517 2560 conicto 1707 2560 1888 2528 conicto 2070 2496 2240 2432 conicto end_ol grestore gsave 23.682067 3.000000 translate 0.035278 -0.035278 scale start_ol 1920 2112 moveto 1848 2178 1764 2209 conicto 1680 2240 1578 2240 conicto 1218 2240 1025 2001 conicto 832 1763 832 1317 conicto 832 0 lineto 448 0 lineto 448 2496 lineto 832 2496 lineto 832 2112 lineto 965 2339 1180 2449 conicto 1396 2560 1702 2560 conicto 1747 2560 1799 2560 conicto 1852 2560 1917 2560 conicto 1920 2112 lineto end_ol grestore gsave 23.919133 3.000000 translate 0.035278 -0.035278 scale start_ol 1409 2240 moveto 1083 2240 893 1974 conicto 704 1709 704 1248 conicto 704 787 892 521 conicto 1081 256 1409 256 conicto 1733 256 1922 522 conicto 2112 789 2112 1248 conicto 2112 1705 1922 1972 conicto 1733 2240 1409 2240 conicto 1408 2560 moveto 1946 2560 2253 2212 conicto 2560 1864 2560 1248 conicto 2560 634 2253 285 conicto 1946 -64 1408 -64 conicto 869 -64 562 285 conicto 256 634 256 1248 conicto 256 1864 562 2212 conicto 869 2560 1408 2560 conicto end_ol grestore gsave 24.291667 3.000000 translate 0.035278 -0.035278 scale start_ol 2048 2432 moveto 2048 2048 lineto 1868 2144 1674 2192 conicto 1480 2240 1273 2240 conicto 957 2240 798 2144 conicto 640 2048 640 1856 conicto 640 1709 757 1625 conicto 875 1542 1229 1467 conicto 1380 1435 lineto 1812 1341 1994 1170 conicto 2176 999 2176 692 conicto 2176 343 1899 139 conicto 1622 -64 1137 -64 conicto 936 -64 717 -32 conicto 498 0 256 64 conicto 256 512 lineto 490 385 718 320 conicto 947 256 1170 256 conicto 1470 256 1631 358 conicto 1792 461 1792 647 conicto 1792 820 1670 912 conicto 1549 1004 1141 1089 conicto 988 1123 lineto 600 1203 428 1369 conicto 256 1535 256 1824 conicto 256 2177 510 2368 conicto 765 2560 1233 2560 conicto 1466 2560 1670 2528 conicto 1875 2496 2048 2432 conicto end_ol grestore gsave 24.613400 3.000000 translate 0.035278 -0.035278 scale start_ol 2048 2432 moveto 2048 2048 lineto 1868 2144 1674 2192 conicto 1480 2240 1273 2240 conicto 957 2240 798 2144 conicto 640 2048 640 1856 conicto 640 1709 757 1625 conicto 875 1542 1229 1467 conicto 1380 1435 lineto 1812 1341 1994 1170 conicto 2176 999 2176 692 conicto 2176 343 1899 139 conicto 1622 -64 1137 -64 conicto 936 -64 717 -32 conicto 498 0 256 64 conicto 256 512 lineto 490 385 718 320 conicto 947 256 1170 256 conicto 1470 256 1631 358 conicto 1792 461 1792 647 conicto 1792 820 1670 912 conicto 1549 1004 1141 1089 conicto 988 1123 lineto 600 1203 428 1369 conicto 256 1535 256 1824 conicto 256 2177 510 2368 conicto 765 2560 1233 2560 conicto 1466 2560 1670 2528 conicto 1875 2496 2048 2432 conicto end_ol grestore showpage pbuilder-0.215ubuntu7/Documentation/pbuilder-doc.ja.po0000664000000000000000000044302112312041170017657 0ustar # pbuilder-doc documentation # Copyright (C) 2007 Junichi Uekawa # Junichi Uekawa , 2007 # # #, fuzzy msgid "" msgstr "" "Project-Id-Version: xxx\n" "POT-Creation-Date: 2013-03-02 16:37+0900\n" "PO-Revision-Date: 2008-06-27 15:35+0900\n" "Last-Translator: Junichi Uekawa \n" "Language-Team: Junichi Uekawa \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: utf-8\n" # type: Attribute 'xml:lang' of: #. type: Attribute 'xml:lang' of: #: pbuilder-doc.xml:5 msgid "en" msgstr "ja" #. type: Content of: #: pbuilder-doc.xml:7 msgid "2007-5-27" msgstr "" # type: Content of: #. type: Content of: <book><bookinfo><title> #: pbuilder-doc.xml:8 msgid "pbuilder User's Manual" msgstr "pbuilder 利用マニュアル" #. type: Content of: <book><bookinfo> #: pbuilder-doc.xml:9 msgid "<abbrev>pbuilder-doc</abbrev>" msgstr "" # type: Content of: <book><bookinfo><subtitle> #. type: Content of: <book><bookinfo><subtitle> #: pbuilder-doc.xml:10 msgid "Usage and operations" msgstr "利用と操作方法について" # type: Content of: <book><bookinfo><releaseinfo> #. type: Content of: <book><bookinfo><releaseinfo> #: pbuilder-doc.xml:11 msgid "documentation in progress" msgstr "草稿" #. type: Content of: <book><bookinfo><authorgroup><author><firstname> #: pbuilder-doc.xml:14 msgid "Junichi" msgstr "" #. type: Content of: <book><bookinfo><authorgroup><author><surname> #: pbuilder-doc.xml:15 msgid "Uekawa" msgstr "" # type: Content of: <book><chapter><title> #. type: Content of: <book><chapter><title> #: pbuilder-doc.xml:22 msgid "Introducing pbuilder" msgstr "pbuilder の紹介" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:24 msgid "Aims of pbuilder" msgstr "pbuilder の目的" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:26 msgid "" "<command>pbuilder</command> stands for Personal Builder, and it is an " "automatic Debian Package Building system for personal development " "workstation environments. <command>pbuilder</command> aims to be an easy-to-" "setup system for auto-building Debian packages inside a clean-room " "environment, so that it is possible to verify that a package can be built on " "most Debian installations. The clean-room environment is achieved through " "the use of a base chroot image, so that only minimal packages will be " "installed inside the chroot." msgstr "" "<command>pbuilder</command> は Personal Builder の略です。個人的なワークス" "テーションなどの開発環境で、Debianパッケージをビルドするためのシステムです。" "<command>pbuilder</command> はパッケージが Debian のインストール環境のほとん" "どでビルドできることを確認するため、Debianパッケージをクリーンルーム内部で自" "動にビルドするシステムとして簡単に利用できるようになることを目指しています。" "クリーンルーム環境は最小限のパッケージを chroot にインストールすることで実現" "しています。" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:40 msgid "" "The Debian distribution consists of free software accompanied with source. " "The source code within Debian's \"main\" section must build within Debian " "\"main\", with only the explicitly specified build-dependencies installed." msgstr "" "Debian ディストリビューションはソースコードつきのフリーソフトウェアにより構成" "されています。Debianの「main」セクションにあるソフトウェアは、Build-depend " "(ビルド時依存関係)として指定されたDebianの「main」セクションにあるパッケー" "ジのみがインストールされている状態でビルドできなければなりません。" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:48 msgid "" "The primary aim of <command>pbuilder</command> is different from other auto-" "building systems in Debian in that its aim is not to try to build as many " "packages as possible. It does not try to guess what a package needs, and in " "most cases it tries the worst choice of all if there is a choice to be made." msgstr "" "主なる <command>pbuilder</command> の目的は、他の自動ビルドシステムとは違いま" "す。それは、パッケージをできるだけビルドできるようなことを目的としていないと" "ころです。パッケージが何を必要としているのかを想像しようとはしません。また選" "択が可能であれば、最悪な選択をする場合もあります。" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:56 msgid "" "In this way, <command>pbuilder</command> tries to ensure that packages " "tested against <command>pbuilder</command> will build properly in most " "Debian installations, hopefully resulting in a good overall Debian source-" "buildability." msgstr "" "この方針を採用することで、 <command>pbuilder</command> は、 " "<command>pbuilder</command> で試験したパッケージはほとんどのDebianがインス" "トールされた環境でビルドできるように確認することができます。これによって" "Debian全体としてのソースコードのビルドしやすさの向上を目指しています。" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:63 msgid "" "The goal of making Debian buildable from source is somewhat accomplished, " "and has seen good progress. In the past age of Debian 3.0, there were many " "problems when building from source. More recent versions of Debian is much " "better." msgstr "" "Debian をソースからビルドできるようにするという目標はほぼ完了し、よく進捗して" "います。Debian 3.0の時代ではソースからビルドするのに問題が多数ありましたが、" "最近のリリースではましになってきています。" # type: Content of: <book><chapter><title> #. type: Content of: <book><chapter><title> #: pbuilder-doc.xml:71 msgid "Using pbuilder" msgstr "pbuilder を利用する" # type: Content of: <book><chapter><para> #. type: Content of: <book><chapter><para> #: pbuilder-doc.xml:73 msgid "" "There are several simple commands for operation. <command>pbuilder create</" "command>, <command>pbuilder update</command>, and <command>pbuilder build</" "command> commands are the typical commands used. Let us look at the " "commands one by one." msgstr "" "操作には、いくつかの簡単なコマンドがあります。<command>pbuilder create</" "command>、 <command>pbuilder update</command>、そして <command>pbuilder " "build</command> コマンドがよく使われます。ひとつづつ見ていきましょう。" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:80 msgid "Creating a base chroot image tar-ball" msgstr "base chroot イメージの tar 玉の作成" # type: Content of: <book><chapter><sect1><para><command> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:82 #, fuzzy msgid "" "<command>pbuilder create</command> will create a base chroot image tar-ball " "(base.tgz). All other commands will operate on the resulting base.tgz If " "the Debian release to be created within chroot is not going to be \"sid" "\" (which is the default), the distribution code-name needs to be specified " "with the <command><option>--distribution</option></command> command-line " "option." msgstr "" "<command>pbuilder create</command> はベース chroot イメージの tar 玉を作成し" "ます。その他のコマンドはこのコマンドで作成されたベース chroot イメージにたい" "しての操作になります。chrootで利用するDebianリリースをsid(デフォルト)以外に" "するのであればディストリビューションのコード名は <command>" # type: Content of: <book><chapter><sect1><para><footnote><para> #. type: Content of: <book><chapter><sect1><para><footnote><para> #: pbuilder-doc.xml:94 msgid "debootstrap or cdebootstrap can be chosen" msgstr "debootstrap か cdebootstrap か選択することができます" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:93 #, fuzzy msgid "" "<command>debootstrap</command> <placeholder type=\"footnote\" id=\"0\"/> is " "used to create the bare minimum Debian installation, and then build-" "essential packages are installed on top of the minimum installation using " "<command>apt-get</command> inside the chroot." msgstr "" "</footnote> はDebianの最小インストールを作成するために利用されます。その上に " "<command>apt-get</command> コマンドを利用して Build-Essential パッケージが " "chroot 内部にインストールされます。" # type: Content of: <book><chapter><sect1><para><footnote><para> #. type: Content of: <book><chapter><sect1><para><footnote><para> #: pbuilder-doc.xml:109 msgid "" "The mirror site should preferably be a local mirror or a cache server, so as " "not to overload the public mirrors with a lot of access. Use of tools such " "as apt-proxy would be advisable." msgstr "" "公開ミラーに多数のアクセス負荷をかけないため、ミラーはローカルミラーであるこ" "とが望ましいです。apt-proxy などのツールの活用を推奨します。" # type: Content of: <book><chapter><sect1><para><footnote> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:103 #, fuzzy msgid "" "For fuller documentation of command-line options, see the pbuilder.8 manual " "page. Some configuration will be required for <filename>/etc/pbuilderrc</" "filename> for the mirror site <placeholder type=\"footnote\" id=\"0\"/> to " "use, and proxy configuration may be required to allow access through HTTP. " "See the pbuilderrc.5 manual page for details." msgstr "" "さらに詳しいドキュメントは、pbuilder.8 マニュアルページを参照してください。利" "用するミラーサイトの設定をするために <filename>/etc/pbuilderrc</filename> で" "いくつか設定が必要になります<footnote>" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:122 msgid "Updating the base.tgz" msgstr "base.tgz の更新" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:123 #, fuzzy #| msgid "" #| "<command>pbuilder update</command> will update the base.tgz. It will " #| "extract the chroot, invoke <command>apt-get update</command> and " #| "<command>apt-get dist-upgrade</command> inside the chroot, and then " #| "recreate the base.tgz (the base tar-ball.)" msgid "" "<command>pbuilder update</command> will update the base.tgz. It will " "extract the chroot, invoke <command>apt-get update</command> and " "<command>apt-get dist-upgrade</command> inside the chroot, and then recreate " "the base.tgz (the base tar-ball)." msgstr "" "<command>pbuilder update</command> コマンドが base.tgz を更新します。 chroot " "を展開し、 <command>apt-get update</command> と <command>apt-get dist-" "upgrade</command> を chroot 内部で実行し、base.tgz (ベースの tar 玉) を作成" "します。" # type: Content of: <book><chapter><sect1><para><footnote><para> #. type: Content of: <book><chapter><sect1><para><footnote><para> #: pbuilder-doc.xml:135 msgid "" "Only upgrading is supported. Debian does not generally support downgrading " "(yet?)." msgstr "" "アップグレードしかサポートされていません。Debianはダウングレードをサポートし" "ていません(現時点では?)。" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:130 msgid "" "It is possible to switch the distribution which the base.tgz is targeted at " "at this point. Specify <command><option>--distribution <parameter>sid</" "parameter></option> <option>--override-config</option></command> to change " "the distribution to sid. <placeholder type=\"footnote\" id=\"0\"/>" msgstr "" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:140 pbuilder-doc.xml:172 msgid "" "For fuller documentation of command-line options, see the pbuilder.8 manual " "page" msgstr "" "コマンドラインオプションの詳細なドキュメントについては、pbuilder.8 マニュアル" "を参照" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:145 msgid "Building a package using the base.tgz" msgstr "base.tgz を利用してパッケージをビルドする" # type: Content of: <book><chapter><sect1><para><command> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:147 #, fuzzy msgid "" "To build a package inside the chroot, invoke <command>pbuilder build " "<option>whatever.dsc</option></command>. <command>pbuilder</command> will " "extract the base.tgz to a temporary working directory, enter the directory " "with chroot, satisfy the build-dependencies inside chroot, and build the " "package. The built packages will be moved to a directory specified with the " "<command><option>--buildresult</option></command> command-line option." msgstr "" "</command>. <command>pbuilder</command> は base.tgz を一時作業用のディレクト" "リに展開し、そこに chroot 内部でビルド時の依存関係(Build-Depends) を満たし、" "パッケージをビルドします。ビルドされてできたパッケージは次のコマンドで指定し" "たディレクトリに移動されます: <command>" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:160 #, fuzzy msgid "" "The <command><option>--basetgz</option></command> option can be used to " "specify which base.tgz to use." msgstr "" "</command> オプションでどの base.tgz を利用するべきかを指定することができま" "す。" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:164 msgid "" "<command>pbuilder</command> will extract a fresh base chroot image from base." "tgz. (base.tgz is created with <command>pbuilder create</command>, and " "updated with <command>pbuilder update</command>). The chroot is populated " "with build-dependencies by parsing debian/control and invoking <command>apt-" "get</command>." msgstr "" "<command>pbuilder</command> は base.tgz から新しい\n" "chroot イメージを展開します。(base.tgz は <command>pbuilder create</" "command> で作成され、 <command>pbuilder update</command> で更新されます)。 " "chroot には Build-Depend関係のパッケージが debian/control を解析して " "<command>apt-get</command> を実行することで追加されます。" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:177 msgid "Facilitating Debian Developers' typing, pdebuild" msgstr "Debian Developer のタイピングを省略する、pdebuild" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:179 msgid "" "<command>pdebuild</command> is a little wrapper script that does the most " "frequent of all tasks. A Debian Developer may try to do <command>debuild</" "command>, and build a package, inside a Debian source directory. " "<command>pdebuild</command> will allow similar control, and allow package to " "be built inside the chroot, to check that the current source tree will build " "happily inside the chroot." msgstr "" "<command>pdebuild</command> は、あらゆる操作の中でももっとも頻繁に行われるだ" "ろう作業を簡略化するためのラッパースクリプトです。Debian Developerは Debian " "パッケージのソースディレクトリで <command>debuild</command> コマンドをうつこ" "とでパッケージをビルドします。\n" "<command>pdebuild</command> は同様の操作をすることで、パッケージを chroot 内" "部でビルドし、\n" "現在のツリーが chroot 内部でもビルドすることを確認します。" # type: Content of: <book><chapter><sect1><para><command> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:189 #, fuzzy msgid "" "<command>pdebuild</command> calls <command>dpkg-source</command> to build " "the source packages, and then invokes <command>pbuilder</command> on the " "resulting source package. However, unlike debuild, the resulting deb files " "will be found in the <command><option>--buildresult</option></command> " "directory." msgstr "" "<command>pdebuild</command> はまず <command>dpkg-source</command> コマンドを" "起動し、ソースパッケージを作成し、<command>pbuilder</command> をそのソース" "パッケージに対して実行します。 debuild とは違い、生成されたdeb ファイルは " "<command>" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:197 msgid "See the pdebuild.1 manual page for more details." msgstr "詳細は pdebuild.1 マニュアルページを参照してください。" # type: Content of: <book><chapter><sect1><para><command> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:200 #, fuzzy msgid "" "There is a slightly different mode of operation available in " "<command>pdebuild</command> since version 0.97. <command>pdebuild</command> " "usually runs <command>debian/rules clean</command> outside of the chroot; " "however, it is possible to change the behavior to run it inside the chroot " "with the <command><option>--use-pdebuild-internal</option></command>. It " "will try to bind mount the working directory inside chroot, and run " "<command>dpkg-buildpackage</command> inside. It has the following " "characteristics, and is not yet the default mode of operation." msgstr "" " <command>pdebuild</command> 0.97 から一つ違う実行モードが追加されていま" "す。 \n" "<command>pdebuild</command> は <command>debian/rules clean</command> chroot " "外部で実行するのですが、chroot内部で実行するように <command>" # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:214 msgid "" "Satisfies build-dependency inside the chroot before creating source " "package. (which is a good point that default <command>pdebuild</command> " "could not do)." msgstr "" "ソースパッケージを作成する際に、Build-Depend を chroot 内部で満たします。\n" "(以前の <command>pdebuild</command> でできなかったよい点です)。" # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:219 msgid "The working directory is modified from inside the chroot." msgstr "作業ディレクトリに chroot 内部から変更を加えられます。" # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:223 msgid "" "Building with <command>pdebuild</command> does not guarantee that it works " "with <command>pbuilder</command>." msgstr "" "<command>pdebuild</command> でビルドできることは <command>pbuilder</command> " "で必ず動くということが保証されるわけではないです。" # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:227 msgid "" "If making the source package fails, the session using the chroot is wasted " "(chroot creation takes a bit of time, which should be improved with " "cowdancer)." msgstr "" "ソースパッケージを作るステップ自体が失敗した場合に、その chroot を利用する" "セッションは無駄に終わります(chroot の作成には時間がかかる、cowdancer 等で改" "善します。)" # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para><command> #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:232 #, fuzzy msgid "" "Does not work in the same manner as it used to; for example, " "<command><option>--buildresult</option></command> does not have any effect." msgstr "以前と同じ方法で動作してくれない。たとえば、<command>" # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:237 msgid "The build inside chroot is ran with the current user outside chroot." msgstr "chroot 内部でのビルドは chroot 外部での現在のユーザで実行される。" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:243 msgid "Configuration Files" msgstr "設定ファイル" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:245 msgid "" "It is possible to specify all settings by command-line options. However, for " "typing convenience, it is possible to use a configuration file." msgstr "" "設定をすべてコマンドラインで指定することも可能です。しかし、入力を簡便にする" "ために、設定ファイルを利用することもできます。" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:250 msgid "" "<filename>/etc/pbuilderrc</filename> and <filename>${HOME}/.pbuilderrc</" "filename> are read in when <command>pbuilder</command> is invoked. The " "possible options are documented in the pbuilderrc.5 manual page." msgstr "" "<filename>/etc/pbuilderrc</filename> と <filename>${HOME}/.pbuilderrc</" "filename> が <command>pbuilder</command> を実行すると読み込まれます。可能なオ" "プションについては、 pbuilderrc.5 に解説されています。" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:257 #, fuzzy msgid "" "It is useful to use <option>--configfile</option> option to load up a preset " "configuration file when switching between configuration files for different " "distributions." msgstr "オプションが便利です" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:262 msgid "" "Please note <filename>${HOME}/.pbuilderrc</filename> supersede system " "settings. Caveats is that if you have some configuration, you may need to " "tweak the configuration to work with new versions of pbuilder when upgrading." msgstr "" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:269 msgid "Building packages as non-root inside the chroot" msgstr "chroot 内部で root 以外でパッケージをビルドする" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:271 #, fuzzy #| msgid "" #| "<command>pbuilder</command> requires full root privilege when it is " #| "satisfying the build-dependencies, but most packages do not need root " #| "privilege to build, or even refused to build when they are built as " #| "root. <command>pbuilder </command> can create a user which is only used " #| "inside <command>pbuilder </command> and use that user id when building, " #| "and use the <command>fakeroot</command> command when root privilege is " #| "required." msgid "" "<command>pbuilder</command> requires full root privilege when it is " "satisfying the build-dependencies, but most packages do not need root " "privilege to build, or even refused to build when they are built as root. " "<command>pbuilder</command> can create a user which is only used inside " "<command>pbuilder</command> and use that user id when building, and use the " "<command>fakeroot</command> command when root privilege is required." msgstr "" "<command>pbuilder</command> は依存関係を充足させる際には root 権限を必要とし" "ます、しかしほとんどのパッケージはビルド時に root 権限を必要とはせず、rootで" "はビルドできないパッケージも一部存在します。<command>pbuilder </command> は " "<command>pbuilder </command> 内部専用のユーザを作成し、そのユーザIDを利用して" "ビルドを実行することができます。root権限が必要な時には<command>fakeroot</" "command> コマンドを利用します。" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:280 msgid "" "BUILDUSERID configuration option should be set to a value for a user id that " "does not already exist on the system, so that it is more difficult for " "packages that are being built with <command>pbuilder</command> to affect the " "environment outside the chroot. When BUILDUSERNAME configuration option is " "also set, <command>pbuilder</command> will use the specified user name and " "fakeroot for building packages, instead of running as root inside chroot." msgstr "" "BUILDUSERID 設定オプションは既存のユーザIDと異なるIDに設定しておきましょう。" "そうするとパッケージが <command>pbuilder</command> 内部でビルドしている際に、" "chroot 外部の環境に影響をあたえにくくなります。BUILDUSERNAME が設定されてい" "る場合、その名前を <command>pbuilder</command> は利用し、 chroot 内部でroot権" "限で動作する代わりに、fakeroot を利用してパッケージをビルドします。" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:289 msgid "" "Even when using the fakerooting method, <command>pbuilder</command> will run " "with root privilege when it is required. For example, when installing " "packages to the chroot, <command>pbuilder</command> will run under root " "privilege." msgstr "" "fakeroot の方法を利用している場合でも、<command>pbuilder</command> は root 権" "限が必要な場面では root 権限で稼働します。例えば、chroot内部にパッケージをイ" "ンストールする時には<command>pbuilder</command> は root 権限で稼働します。" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:295 msgid "" "To be able to invoke <command>pbuilder</command> without being root, you " "need to use user-mode-linux, as explained in <xref linkend=\"pbuilder-uml\"/" ">." msgstr "" "<command>pbuilder</command> を root 権限を必要としないで利用する方法について" "は、 user-mode-linux の利用が必要です。 <xref linkend=\"pbuilder-uml\"/> で" "説明しています。" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:301 msgid "Using pbuilder for back-porting" msgstr "pbuilder をバックポートに活用する" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:303 msgid "" "<command>pbuilder</command> can be used for back-porting software from the " "latest Debian distribution to the older stable distribution, by using a " "chroot that contains an image of the older distribution, and building " "packages inside the chroot. There are several points to consider, and due " "to the following reasons, automatic back-porting is usually not possible, " "and manual interaction is required:" msgstr "" "<command>pbuilder</command> は古いディストリビューションのchroot を作成し、そ" "こでパッケージをビルドすることで、Debian の最新版のディストリビューションから" "ソフトウエアをバックポートするのに利用することが可能です。いくつかの点を検討" "する必要があり、次の理由により全自動でバックポートすることは現実的では無く、" "手動での作業も必要になるでしょう:" # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:314 msgid "" "The package from the unstable distribution may depend on packages or " "versions of packages which are only available in unstable. Thus, it may not " "be possible to satisfy Build-Depends: on stable (without additional " "backporting work)." msgstr "" "unstableのパッケージが unstable にしかないパッケージや、unstable にしかない" "バージョンのパッケージに依存している場合がある。つまり、stable では Build-" "Depends: を充足することができない(さらなるバックポートが必要になる)。" # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:321 msgid "" "The stable distribution may have bugs that have been fixed in unstable which " "need to be worked around." msgstr "" "stable ディストリビューションには unstable で修正しているバグが含まれており、" "ワークアラウンドが必要になる。" # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:324 msgid "" "The package in the unstable distribution may have problems building even on " "unstable." msgstr "unstable のパッケージが unstable 上であってもビルドしない場合がある。" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:330 msgid "Mass-building packages" msgstr "パッケージを大量にビルドする" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:332 msgid "" "<command>pbuilder</command> can be automated, because its operations are non-" "interactive. It is possible to run <command>pbuilder</command> through " "multiple packages non-interactively. Several such scripts are known to " "exist. Junichi Uekawa has been running such a script since 2001, and has " "been filing bugs on packages that fail the test of <command>pbuilder</" "command>. There were several problems with auto-building:" msgstr "" "<command>pbuilder</command> は操作がインタラクティブではないため、自動的に動" "かすことができる。<command>pbuilder</command> を複数のパッケージに関して、イ" "ンタラクティブじゃないように実行することができます。それをするためのスクリプ" "トはいくつか存在します。上川は2001年からそのようなスクリプトを実行し、 " "<command>pbuilder</command> でビルドできない場合についてバグ報告をしていまし" "た。次のような問題が発見されました:" # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:343 msgid "" "Build-Dependencies need to install non-interactively, but some packages are " "so broken that they cannot install without interaction (like postgresql)." msgstr "" "依存関係を充足させるためのインストールは非インタラクティブに行われる必要があ" "りますが、一部のパッケージはインタラクティブな操作がないとインストールできな" "いくらいに壊れているものがあります(postgresqlなど)." # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:348 msgid "" "When a library package breaks, or gcc/gcj/g++ breaks, or even bison, a large " "number of build failures are reported. (gcj-3.0 which had no \"javac\", " "bison which got more strict, etc.)" msgstr "" "ライブラリパッケージに問題があったり、gcc/gcj/g++ に問題がある場合、また " "bison もそうですが、多くのビルド失敗が報告されます。 (gcj-3.0 に \"javac\" が" "なくなったり、bison がより厳密になったり、など)" # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:354 msgid "Some people were quite hostile against build failure reports." msgstr "一部の人はビルド失敗の報告に敵対的なので注意しましょう。" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:358 msgid "" "Most of the initial bugs have been resolved in the <command>pbuilder</" "command> sweep done around 2002, but these transitional problems which " "affect a large portion of Debian Archive do arise from time to time. " "Regression tests have their values." msgstr "" "2002年ころの<command>pbuilder </command> の実行により初期のバグは洗いだされま" "した。しかし、このように移行に関連したDebian全体に影響するような問題はときど" "き発生します。回帰テストには価値があるのです。" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:364 msgid "" "A script that was used by Junichi Uekawa in the initial run is now included " "in the <command>pbuilder</command> distribution, as <command>pbuildd.sh</" "command>. It is available in <filename>/usr/share/doc/pbuilder/examples/" "pbuildd/</filename> and its configuration is in <filename>/etc/pbuilder/" "pbuildd-config.sh</filename>. It should be easy enough to set up for people " "who are used to <command>pbuilder</command>. It has been running for quite a " "while, and it should be possible to set the application up on your system " "also. This version of the code is not the most tested, but should function " "as a starter." msgstr "" "上川が利用したスクリプトは今 <command>pbuilder</command> ディストリビューショ" "ンに含まれています。<filename>/usr/share/doc/pbuilder/examples/pbuildd/</" "filename> にあり、設定は、 <filename>/etc/pbuilder/pbuildd-config.sh</" "filename> が設定ファイルです。<command>pbuilder</command> になれている人であ" "れば簡単に設定することができるはずです。しばらく実行されていたため、自分のシ" "ステムでも実行できるでしょう。ただ、まだ新しいので問題があれば Debian BTS に" "登録してください。" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:374 msgid "To set up pbuildd, there are some points to be aware of." msgstr "pbuildd の設定について気にしておくところがいくつかあります。" # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:378 msgid "" "A file <filename>./avoidlist</filename> needs to be available with the list " "of packages to avoid building." msgstr "" "ビルドしないパッケージの一覧ファイル <filename>./avoidlist</filename> が存在" "する必要があります。" # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:381 msgid "" "It will try building anything, even packages which are not aimed for your " "architecture." msgstr "" "自分のアーキテクチャ向けでないものを含めて、あらゆるものをビルドしようとしま" "す。" # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:385 msgid "" "Because you are running random build scripts, it is better to use the " "fakeroot option of <command>pbuilder</command>, to avoid running the build " "under root privilege." msgstr "" "任意のビルドスクリプトを実行しているため、 root 権限で実行しないために、 " "<command>pbuilder</command> のfakeroot オプションを利用するのがよいでしょう。" # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:390 msgid "" "Because not all builds are guaranteed to finish in a finite time, setting a " "timeout is probably necessary, or pbuildd may stall with a bad build." msgstr "" "すべてのビルドが有限時間で完了することが保証されているわけではありません、そ" "のためタイムアウトを準備しておくことが必要かもしれません。そうしないとpbuildd" "は悪いビルドでずっと待ち状態になる可能性もあります。" # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:396 msgid "" "Some packages require a lot of disk space, around 2GB seems to be sufficient " "for the largest packages for the time being. If you find otherwise, please " "inform the maintainer of this documentation." msgstr "" "一部のパッケージは大量のディスク領域を必要とします、現時点では最大のパッケー" "ジであっても2GBくらいが十分なようです。もしそうでないという状況を発見した場合" "はこの文書のメンテナに連絡してください。" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:404 msgid "Auto-backporting scripts" msgstr "自動バックポートスクリプト" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:406 msgid "" "There are some people who use <command>pbuilder</command> to automatically " "back-port a subset of packages to the stable distribution." msgstr "" "一部の人は <command>pbuilder</command> を一部のパッケージを自動的に stable " "ディストリビューションにバックポートするために利用しています。" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:410 msgid "" "I would like some information on how people are doing it, I would appreciate " "any feedback or information on how you are doing, or any examples." msgstr "" "どのように実際にやっているのか情報をください、フィードバックや情報や例を歓迎" "します。" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:416 msgid "Using pbuilder for automated testing of packages" msgstr "pbuilder を自動テストに利用する" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:418 msgid "" "<command>pbuilder</command> can be used for automated testing of packages. " "It has the feature of allowing hooks to be placed, and these hooks can try " "to install packages inside the chroot, or run them, or whatever else that " "can be done. Some known tests and ideas:" msgstr "" "<command>pbuilder</command> は、自動的なテストのために利用することができま" "す。フックを配置することができ、そのフックは chroot 内部にパッケージをインス" "トールしたり実行したりその他のいろいろなことを実行することができます。実行可" "能なテストとアイデアは次です:" # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:426 #, fuzzy #| msgid "" #| "Automatic install-remove-upgrade-remove-install-purge-upgrade-purge test-" #| "suite (distributed as an example, <filename>B91dpkg-i</filename>), or " #| "just check that everything installs somewhat " #| "(<filename>execute_installtest.sh</filename>)." msgid "" "Automatic install-remove-install-purge-upgrade-remove-upgrade-purge test-" "suite (distributed as an example, <filename>B91dpkg-i</filename>), or just " "check that everything installs somewhat (<filename>execute_installtest.sh</" "filename>)." msgstr "" "自動的にインストール・アップグレード・削除・インストール・パージ・アップグ" "レード・パージするようなテスト(例として、<filename>B91dpkg-i</filename>が配布" "されています)、もしくは全部インストールできることを確認する" "(<filename>execute_installtest.sh</filename>)。" # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:431 msgid "" "Automatically running lintian (distributed as an example in <filename>/usr/" "share/doc/pbuilder/examples/B90lintian</filename>)." msgstr "" "自動的にlintianを実行する (例として <filename>/usr/share/doc/pbuilder/" "examples/B90lintian</filename>が配布されている)。" # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:435 msgid "" "Automatic debian-test of the package? The debian-test package has been " "removed from Debian. A <command>pbuilder</command> implementation can be " "found as debian/pbuilder-test directory, implemented through B92test-pkg " "script." msgstr "" "自動的にパッケージの debian-test を行う? debian-test パッケージは Debian から" "削除されました。 <command>pbuilder</command> での代替は debian/pbuilder-test " "ディレクトリにあります。B92test-pkgスクリプトで実装されています。" # type: Content of: <book><chapter><sect1><para><footnote><para> #. type: Content of: <book><chapter><sect1><para><footnote><para> #: pbuilder-doc.xml:444 msgid "" "It is possible to specify <command>--hookdir /usr/share/doc/pbuilder/" "examples</command> command-line option to include all example hooks as well." msgstr "" "<command>--hookdir /usr/share/doc/pbuilder/examples</command> コマンドライン" "オプションを指定することですべてのサンプルフックを利用することが可能です。" # type: Content of: <book><chapter><sect1><para><footnote><para> #. type: Content of: <book><chapter><sect1><para><footnote><para> #: pbuilder-doc.xml:452 msgid "See run-parts(8). For example, no '.' in file names!" msgstr "" "run-parts(8) を参照してください。例えば、ファイル名に '.' はふくめられませ" "ん。" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:442 msgid "" "To use B92test-pkg script, first, add it to your hook directory. " "<placeholder type=\"footnote\" id=\"0\"/>. The test files are shell scripts " "placed in <filename>debian/pbuilder-test/NN_name</filename> (where NN is a " "number) following run-parts standard<placeholder type=\"footnote\" id=\"1\"/" "> for file names. After a successful build, packages are first tested for " "installation and removal, and then each test is ran inside the chroot. The " "current directory is the top directory of the source-code. This means you " "can expect to be able to use ./debian/ directory from inside your scripts." msgstr "" # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:463 #, fuzzy #| msgid "" #| "Example scripts for use with pbuilder-test can be found in <filename>/usr/" #| "share/doc/pbuilder/examples/pbuilder-test</filename>" msgid "" "Example scripts for use with pbuilder-test can be found in <filename>/usr/" "share/doc/pbuilder/examples/pbuilder-test</filename>." msgstr "" "pbuilder-test を利用するスクリプト例は <filename>/usr/share/doc/pbuilder/" "examples/pbuilder-test</filename>以下に配布されている。" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:468 msgid "Using pbuilder for testing builds with alternate compilers" msgstr "pbuilder でその他のコンパイラでのビルドを試験する" # type: Content of: <book><chapter><sect1><para><screen> #. type: Content of: <book><chapter><sect1><para><screen> #: pbuilder-doc.xml:484 #, fuzzy, no-wrap msgid "" "EXTRAPACKAGES=\"pentium-builder gcc-3.2 g++-3.2\"\n" "export DEBIAN_BUILDARCH=athlon\n" "export DEBIAN_BUILDGCCVER=3.2" msgstr "" "\n" "EXTRAPACKAGES=\"pentium-builder gcc-3.2 g++-3.2\"\n" "export DEBIAN_BUILDARCH=athlon\n" "export DEBIAN_BUILDGCCVER=3.2" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:470 msgid "" "Most packages are compiled with <command>gcc</command> or <command>g++</" "command> and using the default compiler version, which was gcc 2.95 for " "Debian GNU/Linux 3.0 (i386). However, Debian 3.0 was distributed with other " "compilers, under package names such as <command>gcc-3.2</command> for gcc " "compiler version 3.2. It was therefore possible to try compiling packages " "against different compiler versions. <command>pentium-builder</command> " "provides an infrastructure for using a different compiler for building " "packages than the default gcc, by providing a wrapper script called gcc " "which calls the real gcc. To use <command>pentium-builder</command> in " "<command>pbuilder</command>, it is possible to set up the following in the " "configuration: <placeholder type=\"screen\" id=\"0\"/>" msgstr "" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:489 msgid "" "It will instruct <command>pbuilder</command> to install the <command>pentium-" "builder</command> package and also the GCC 3.2 compiler packages inside the " "chroot, and set the environment variables required for <command>pentium-" "builder</command> to function." msgstr "" # type: Content of: <book><chapter><title> #. type: Content of: <book><chapter><title> #: pbuilder-doc.xml:497 msgid "Using User-mode-linux with pbuilder" msgstr "user-mode-linux を pbuilder で利用する" # type: Content of: <book><chapter><para> #. type: Content of: <book><chapter><para> #: pbuilder-doc.xml:499 msgid "" "It is possible to use user-mode-linux by invoking <command>pbuilder-user-" "mode-linux</command> instead of <command>pbuilder</command>. " "<command>pbuilder-user-mode-linux</command> doesn't require root privileges, " "and it uses the copy-on-write (COW) disk access method of <command>User-mode-" "linux</command> which typically makes it much faster than the traditional " "<command>pbuilder</command>." msgstr "" # type: Content of: <book><chapter><para> #. type: Content of: <book><chapter><para> #: pbuilder-doc.xml:509 msgid "" "<command>User-mode-linux</command> is a somewhat less proven platform than " "the standard Unix tools which <command>pbuilder</command> relies on " "(<command>chroot</command>, <command>tar</command>, and <command>gzip</" "command>) but mature enough to support <command>pbuilder-user-mode-linux</" "command> since its version 0.59. And since then, <command>pbuilder-user-" "mode-linux</command> has seen a rapid evolution." msgstr "" # type: Content of: <book><chapter><para> #. type: Content of: <book><chapter><para> #: pbuilder-doc.xml:520 msgid "" "The configuration of <command>pbuilder-user-mode-linux</command> goes in " "three steps:" msgstr "" # type: Content of: <book><chapter><para><itemizedlist><listitem><para> #. type: Content of: <book><chapter><para><itemizedlist><listitem><para> #: pbuilder-doc.xml:524 msgid "Configuration of user-mode-linux" msgstr "user-mode-linux の設定" # type: Content of: <book><chapter><para><itemizedlist><listitem><para> #. type: Content of: <book><chapter><para><itemizedlist><listitem><para> #: pbuilder-doc.xml:527 msgid "Configuration of rootstrap" msgstr "rootstrap の設定" # type: Content of: <book><chapter><para><itemizedlist><listitem><para> #. type: Content of: <book><chapter><para><itemizedlist><listitem><para> #: pbuilder-doc.xml:530 msgid "Configuration of pbuilder-uml" msgstr "pbuilder-uml の設定" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:535 msgid "Configuring user-mode-linux" msgstr "user-mode-linux の設定" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:537 msgid "" "user-mode-linux isn't completely trivial to set up. It would probably be " "useful to acquaint yourself with it a bit before attempting to use " "<command>rootstrap</command> or <command>pbuilder-user-mode-linux</" "command>. For details, read <filename>/usr/share/doc/uml-utilities/README." "Debian</filename> and the <command>user-mode-linux</command> documentation. " "(It's in a separate package, user-mode-linux-doc.)" msgstr "" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:547 msgid "" "<command>user-mode-linux</command> requires the user to be in the uml-net " "group in order to configure the network unless you are using slirp." msgstr "" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:552 msgid "" "If you compile your own kernel, you may want to verify that you enable TUN/" "TAP support, and you might want to consider the SKAS patch." msgstr "" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:558 msgid "Configuring rootstrap" msgstr "rootstrap の設定" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:560 msgid "" "<command>rootstrap</command> is a wrapper around debootstrap. It creates a " "Debian disk image for use with UML. To configure rootstrap, there are " "several requirements." msgstr "" # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:567 msgid "Install the rootstrap package." msgstr "rootstrap パッケージをインストールします。" # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para><screen> #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para><screen> #: pbuilder-doc.xml:573 #, no-wrap msgid "adduser dancer uml-net" msgstr "adduser dancer uml-net" # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:571 #, fuzzy msgid "" "TUN/TAP only: add the user to the uml-net group to allow access to the " "network <placeholder type=\"screen\" id=\"0\"/>" msgstr "" "TUN/TAPを利用している場合:ユーザを uml-net グループに追加し、ネットワークが利" "用できるようにします" # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:577 msgid "" "TUN/TAP only: Check that the kernel supports the TUN/TAP interface, or " "recompile the kernel if necessary." msgstr "" "TUN/TAPを利用している場合: カーネルが TUN/TAP インタフェースをサポートしてい" "ることを確認してください。必要であればカーネルをリビルドしてください。" # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para><screen> #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para><screen> #: pbuilder-doc.xml:588 #, fuzzy, no-wrap msgid "" "transport=tuntap\n" "interface=eth0\n" "gateway=192.168.1.1\n" "mirror=http://192.168.1.2:8081/debian\n" "host=192.168.1.198\n" "uml=192.168.1.199\n" "netmask=255.255.255.0" msgstr "" "\n" "transport=tuntap\n" "interface=eth0\n" "gateway=192.168.1.1\n" "mirror=http://192.168.1.2:8081/debian\n" "host=192.168.1.198\n" "uml=192.168.1.199\n" "netmask=255.255.255.0" #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:583 msgid "" "Set up <filename>/etc/rootstrap/rootstrap.conf</filename>. For example, if " "the current host is 192.168.1.2, changing following entries to something " "like this seems to work. <placeholder type=\"screen\" id=\"0\"/> Some " "experimentation with configuration and running <command>rootstrap ~/test." "uml</command> to actually test it would be handy." msgstr "" # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:600 msgid "" "Using slirp requires less configuration. The default configuration comes " "with a working example." msgstr "" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:607 msgid "Configuring pbuilder-uml" msgstr "pbuilder-uml の設定" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:609 msgid "The following needs to happen:" msgstr "以下の設定が必要です:" # type: Content of: <book><chapter><sect1><para><itemizedlist><listitem><para> #. type: Content of: <book><chapter><sect1><para><itemizedlist><listitem><para> #: pbuilder-doc.xml:612 msgid "Install the pbuilder-uml package." msgstr "pbuilder-uml をインストールする" # type: Content of: <book><chapter><sect1><para><itemizedlist><listitem><para><screen> #. type: Content of: <book><chapter><sect1><para><itemizedlist><listitem><para><screen> #: pbuilder-doc.xml:620 #, fuzzy, no-wrap msgid "" "MY_ETH0=tuntap,,,192.168.1.198\n" "UML_IP=192.168.1.199\n" "UML_NETMASK=255.255.255.0\n" "UML_NETWORK=192.168.1.0\n" "UML_BROADCAST=255.255.255.255\n" "UML_GATEWAY=192.168.1.1\n" "PBUILDER_UML_IMAGE=\"/home/dancer/uml-image\"" msgstr "" "\n" "MY_ETH0=tuntap,,,192.168.1.198\n" "UML_IP=192.168.1.199\n" "UML_NETMASK=255.255.255.0\n" "UML_NETWORK=192.168.1.0\n" "UML_BROADCAST=255.255.255.255\n" "UML_GATEWAY=192.168.1.1\n" "PBUILDER_UML_IMAGE=\"/home/dancer/uml-image\"" #. type: Content of: <book><chapter><sect1><para><itemizedlist><listitem><para> #: pbuilder-doc.xml:616 msgid "" "Set up the configuration file <filename>/etc/pbuilder/pbuilder-uml.conf</" "filename> in the following manner. It will be different for slirp. " "<placeholder type=\"screen\" id=\"0\"/> Also, it needs to match the " "rootstrap configuration." msgstr "" # type: Content of: <book><chapter><sect1><para><itemizedlist><listitem><para> #. type: Content of: <book><chapter><sect1><para><itemizedlist><listitem><para> #: pbuilder-doc.xml:632 msgid "" "Make sure BUILDPLACE is writable by the user. Change BUILDPLACE in the " "configuration file to a place where the user has access." msgstr "" #. type: Content of: <book><chapter><sect1><para><itemizedlist><listitem><para> #: pbuilder-doc.xml:638 msgid "" "Run <command>pbuilder-user-mode-linux <option>create --distribution sid</" "option></command> to create the image." msgstr "" # type: Content of: <book><chapter><sect1><para><itemizedlist><listitem><para> #. type: Content of: <book><chapter><sect1><para><itemizedlist><listitem><para> #: pbuilder-doc.xml:641 msgid "Try running <command>pbuilder-user-mode-linux build</command>." msgstr "" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:647 msgid "Considerations for running pbuilder-user-mode-linux" msgstr "pbuilder-user-mode-linuxを実行する場合の検討項目" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:649 msgid "" "<command>pbuilder-user-mode-linux</command> emulates most of " "<command>pbuilder</command>, but there are some differences." msgstr "" # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:655 msgid "" "<command>pbuilder-user-mode-linux</command> does not support all options of " "<command>pbuilder</command> properly yet. This is a problem, and will be " "addressed as specific areas are discovered." msgstr "" #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:662 msgid "" "/tmp is handled differently inside <command>pbuilder-user-mode-linux</" "command>. In <command>pbuilder-user-mode-linux</command>, <filename>/tmp</" "filename> is mounted as tmpfs inside UML, so accessing files under " "<filename>/tmp</filename> from outside user-mode-linux does not work. It " "affects options like <command><option>--configfile</option></command>, and " "when trying to build packages placed under <filename>/tmp</filename>." msgstr "" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:676 msgid "Parallel running of pbuilder-user-mode-linux" msgstr "pbuilder-user-mode-linux を複数同時に実行させる" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:678 msgid "" "To run <command>pbuilder-user-mode-linux</command> in parallel on a system, " "there are a few things to bear in mind." msgstr "" "<command>pbuilder-user-mode-linux</command> を同一システム上で同時に複数実行" "させるにはいくつか注意するべき点があります。\n" # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:683 msgid "" "The create and update methods must not be run when a build is in progress, " "or the COW file will be invalidated." msgstr "" # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para><screen> #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para><screen> #: pbuilder-doc.xml:694 #, fuzzy, no-wrap msgid "" "for IP in 102 103 104 105; do\n" " xterm -e pbuilder-user-mode-linux build --uml-ip 192.168.0.$IP \\\n" " 20030107/whizzytex_1.1.1-1.dsc &\n" "done" msgstr "" "\n" "for IP in 102 103 104 105; do\n" " xterm -e pbuilder-user-mode-linux build --uml-ip 192.168.0.$IP \\\n" " 20030107/whizzytex_1.1.1-1.dsc &\n" "done" #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:688 msgid "" "If you are not using slirp, user-mode-linux processes which are running in " "parallel need to have different IP addresses. Just trying to run the " "<command>pbuilder-user-mode-linux</command> several times will result in " "failure to access the network. But something like the following will work: " "<placeholder type=\"screen\" id=\"0\"/> When using slirp, this problem does " "not exist." msgstr "" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:704 msgid "" "Using pbuilder-user-mode-linux as a wrapper script to start up a virtual " "machine" msgstr "" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:706 msgid "" "It is possible to use <command>pbuilder-user-mode-linux</command> for other " "uses than just building Debian packages. <command>pbuilder-user-mode-linux " "<option>login</option></command> will let a user use a shell inside the user-" "mode-linux <command>pbuilder</command> base image, and <command>pbuilder-" "user-mode-linux <option>execute</option></command> will allow the user to " "execute a script inside the image." msgstr "" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:717 msgid "" "You can use the script to install ssh and add a new user, so that it is " "possible to access inside the user-mode-linux through ssh." msgstr "" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:721 msgid "" "Note that it is not possible to use a script from <filename>/tmp</filename> " "due to the way <command>pbuilder-user-mode-linux</command> mounts a tmpfs at " "<filename>/tmp</filename>." msgstr "" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:727 msgid "" "The following example script may be useful in starting a sshd inside user-" "mode-linux." msgstr "" #. type: Content of: <book><chapter><sect1><screen> #: pbuilder-doc.xml:731 #, no-wrap msgid "" "#!/bin/bash\n" "\n" "apt-get install -y ssh xbase-clients xterm\n" "echo \"enter root password\"\n" "passwd\n" "cp /etc/ssh/sshd_config{,-}\n" "sed 's/X11Forwarding.*/X11Forwarding yes/' /etc/ssh/sshd_config- > /etc/ssh/sshd_config\n" "\n" "/etc/init.d/ssh restart\n" "ifconfig\n" "echo \"Hit enter to finish\"\n" "read" msgstr "" # type: Content of: <book><chapter><title> #. type: Content of: <book><chapter><title> #: pbuilder-doc.xml:746 msgid "Frequently asked questions" msgstr "FAQ (よくある質問)" # type: Content of: <book><chapter><para> #. type: Content of: <book><chapter><para> #: pbuilder-doc.xml:749 msgid "" "Here, known problems and frequently asked questions are documented. This " "portion was initially available in README.Debian file, but moved here." msgstr "" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:754 msgid "pbuilder create fails" msgstr "pbuilder create が失敗する" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:756 msgid "" "It often happens that <command>pbuilder</command> cannot create the latest " "chroot. Try upgrading <command>pbuilder</command> and debootstrap. It is " "currently only possible to create software that handles the past. Future " "prediction is a feature which may be added later after we have become " "comfortable with the past." msgstr "" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:763 msgid "" "There are people who occasionally back port debootstrap to stable versions; " "hunt for them." msgstr "" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:767 msgid "" "When there are errors with the debootstrap phase, the debootstrap script " "needs to be fixed. <command>pbuilder</command> does not provide a way to " "work around debootstrap." msgstr "" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:773 msgid "Directories that cannot be bind-mounted" msgstr "bind mount できないディレクトリ" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:775 msgid "" "Because of the way <command>pbuilder</command> works, there are several " "directories which cannot be bind-mounted when running <command>pbuilder</" "command>. The directories include <filename>/tmp</filename>, <filename>/var/" "cache/pbuilder</filename>, and system directories such as <filename>/etc</" "filename> and <filename>/usr</filename>. The recommendation is to use " "directories under the user's home directory for bind-mounts." msgstr "" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:786 msgid "Logging in to pbuilder to investigate build failure" msgstr "ビルド失敗の調査のために pbuilder 環境にログインする" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:788 msgid "" "It is possible to invoke a shell session after a build failure. Example " "hook scripts are provided as <filename>C10shell</filename> and " "<filename>C11screen</filename> scripts. C10shell script will start bash " "inside chroot, and C11screen script will start GNU screen inside the chroot." msgstr "" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:797 msgid "Logging in to pbuilder to modify the environment" msgstr "環境を変更するために pbuilder 環境にログインする" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:799 msgid "" "It is sometimes necessary to modify the chroot environment. <command>login</" "command> will remove the contents of the chroot after logout. It is " "possible to invoke a shell using hook scripts. <command>pbuilder update</" "command> executes 'E' scripts, and a sample for invoking a shell is provided " "as <filename>C10shell</filename>." msgstr "" #. type: Content of: <book><chapter><sect1><screen> #: pbuilder-doc.xml:807 #, no-wrap msgid "" "$ mkdir ~/loginhooks\n" "$ cp C10shell ~/loginhooks/E10shell\n" "$ sudo pbuilder update --hookdir ~/loginhooks/E10shell" msgstr "" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:811 msgid "" "It is also possible to add <option>--save-after-exec</option> and/or " "<option>--save-after-login</option> options to the <command>pbuilder login</" "command> session to accomplish the goal. It is possible to add the " "<option>--uml-login-nocow</option> option to <command>pbuilder-user-mode-" "linux <option>login</option></command> session as well." msgstr "" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:821 msgid "Setting BUILDRESULTUID for sudo sessions" msgstr "BUILDRESULTUID を sudo のセッションに追加する" # type: Content of: <book><chapter><sect1><para><screen> #. type: Content of: <book><chapter><sect1><para><screen> #: pbuilder-doc.xml:824 #, no-wrap msgid "BUILDRESULTUID=$SUDO_UID" msgstr "BUILDRESULTUID=$SUDO_UID" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:823 #, fuzzy msgid "" "It is possible to set <placeholder type=\"screen\" id=\"0\"/> in pbuilderrc " "to set the proper BUILDRESULTUID when using <command>sudo</command>." msgstr "" "と設定することで <command>sudo</command> の際に BUILDRESULTUID を適切に設定す" "ることが可能です。" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:829 msgid "Notes on usage of $TMPDIR" msgstr "$TMPDIRの使い方について" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:831 msgid "" "If you are setting $TMPDIR to an unusual value, of other than <filename>/" "tmp</filename>, you will find that some errors may occur inside the chroot, " "such as <command>dpkg-source</command> failing." msgstr "" # type: Content of: <book><chapter><sect1><para><screen> #. type: Content of: <book><chapter><sect1><para><screen> #: pbuilder-doc.xml:837 #, no-wrap msgid "export TMPDIR=/tmp" msgstr "export TMPDIR=/tmp" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:835 msgid "" "There are two options, you may install a hook to create that directory, or " "set <placeholder type=\"screen\" id=\"0\"/> in pbuilderrc. Take your pick." msgstr "" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:841 msgid "" "An example script is provided as <filename>examples/D10tmp</filename> with " "<command>pbuilder</command>." msgstr "" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:846 msgid "" "Creating a shortcut for running <command>pbuilder</command> with a specific " "distribution" msgstr "" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:848 msgid "" "When working with multiple chroots, it would be nice to work with scripts " "that reduce the amount of typing. An example script <filename>pbuilder-" "distribution.sh</filename> is provided as an example. Invoking the script " "as <filename>pbuilder-squeeze</filename> will invoke <command>pbuilder</" "command> with a squeeze chroot." msgstr "" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:857 msgid "" "Using environmental variables for running <command>pbuilder</command> for " "specific distribution" msgstr "" # type: Content of: <book><chapter><sect1><para><footnote><para> #. type: Content of: <book><chapter><sect1><para><footnote><para> #: pbuilder-doc.xml:861 msgid "This part of the documentation contributed by Andres Mejia" msgstr "" # type: Content of: <book><chapter><sect1><para><footnote><para> #. type: Content of: <book><chapter><sect1><para><footnote><para> #: pbuilder-doc.xml:863 msgid "" "This example was taken from a wiki (<ulink url=\"https://wiki.ubuntu.com/" "PbuilderHowto\">https://wiki.ubuntu.com/PbuilderHowto</ulink>)." msgstr "" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:860 msgid "" "This section<placeholder type=\"footnote\" id=\"0\"/> describes briefly a " "way to setup and use multiple pbuilder setups by creating a pbuilderrc " "configuration in your home path (<filename>$HOME/.pbuilderrc</filename>) " "and using the variable \"DIST\" when running pbuilder or pdebuild." msgstr "" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:871 msgid "First, setup <filename>$HOME/.pbuilderrc</filename> to look like:" msgstr "" #. type: Content of: <book><chapter><sect1><para><screen> #: pbuilder-doc.xml:874 #, no-wrap msgid "" "if [ -n \"${DIST}\" ]; then\n" " BASETGZ=\"`dirname $BASETGZ`/$DIST-base.tgz\"\n" " DISTRIBUTION=\"$DIST\"\n" " BUILDRESULT=\"/var/cache/pbuilder/$DIST/result/\"\n" " APTCACHE=\"/var/cache/pbuilder/$DIST/aptcache/\"\n" "fi\n" msgstr "" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:873 pbuilder-doc.xml:889 pbuilder-doc.xml:930 #: pbuilder-doc.xml:936 pbuilder-doc.xml:951 pbuilder-doc.xml:1039 #: pbuilder-doc.xml:1190 pbuilder-doc.xml:1442 pbuilder-doc.xml:1453 msgid "<placeholder type=\"screen\" id=\"0\"/>" msgstr "" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:881 msgid "" "Then, whenever you wish to use pbuilder for a particular distro, assign a " "value to \"DIST\" that is one of the distros available for Debian or any " "Debian based distro you happen to be running (i.e. whatever is found under /" "usr/lib/debootstrap/scripts)." msgstr "" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:887 msgid "Here's some examples on running pbuilder or pdebuild:" msgstr "" #. type: Content of: <book><chapter><sect1><para><screen> #: pbuilder-doc.xml:890 #, no-wrap msgid "" "DIST=gutsy sudo pbuilder create\n" "\n" "DIST=sid sudo pbuilder create --mirror http://http.us.debian.org/debian\n" "\n" "DIST=gutsy sudo pbuilder create \\\n" " --othermirror \"deb http://archive.ubuntu.com/ubuntu gutsy universe \\\n" " multiverse\"\n" "\n" "DIST=gutsy sudo pbuilder update\n" "\n" "DIST=sid sudo pbuilder update --override-config --mirror \\\n" "http://http.us.debian.org/debian \\\n" "--othermirror \"deb http://http.us.debian.org/debian sid contrib non-free\"\n" "\n" "DIST=gutsy pdebuild\n" msgstr "" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:908 msgid "Using special apt sources lists, and local packages" msgstr "" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:910 msgid "" "If you have some very specialized requirements on your apt setup inside " "<command>pbuilder</command>, it is possible to specify that through the " "<command><option>--othermirror</option></command> option. Try something " "like: <command><option>--othermirror \"deb http://local/mirror stable main|" "deb-src http://local/source/repository ./\"</option></command>" msgstr "" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:919 msgid "" "To use the local file system instead of HTTP, it is necessary to do bind-" "mounting. <command><option>--bindmounts</option></command> is a command-" "line option useful for such cases." msgstr "" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:925 msgid "" "It might be convenient to use your built packages from inside the chroot. " "It is possible to automate the task with the following configuration. " "First, set up pbuilderrc to bindmount your build results directory." msgstr "" # type: Content of: <book><chapter><sect1><para><screen> #. type: Content of: <book><chapter><sect1><para><screen> #: pbuilder-doc.xml:930 #, no-wrap msgid "BINDMOUNTS=\"/var/cache/pbuilder/result\"" msgstr "" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:933 msgid "Then, add the following hook" msgstr "" # type: Content of: <book><chapter><sect1><para><screen> #. type: Content of: <book><chapter><sect1><para><screen> #: pbuilder-doc.xml:937 #, fuzzy, no-wrap msgid "" "# cat /var/cache/pbuilder/hooks/D70results\n" "#!/bin/sh\n" "cd /var/cache/pbuilder/result/\n" "/usr/bin/dpkg-scanpackages . /dev/null > /var/cache/pbuilder/result/Packages\n" "/usr/bin/apt-get update" msgstr "" "\n" "# cat /var/cache/pbuilder/hooks/D70results\n" "#!/bin/sh\n" "cd /var/cache/pbuilder/result/\n" "/usr/bin/dpkg-scanpackages . /dev/null > /var/cache/pbuilder/result/Packages\n" "/usr/bin/apt-get update" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:944 msgid "" "This way, you can use <filename>deb file:/var/cache/pbuilder/result</" "filename>" msgstr "" # type: Content of: <book><chapter><sect1><para> #. from http://ubuntuforums.org/archive/index.php/t-696820.html #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:947 msgid "To add new apt-key inside chroot:" msgstr "" #. type: Content of: <book><chapter><sect1><para><screen> #: pbuilder-doc.xml:952 #, no-wrap msgid "" "sudo pbuilder --login --save-after-login\n" "# apt-key add - <<EOF\n" "...public key goes here...\n" "EOF\n" "# logout\n" msgstr "" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:960 msgid "" "How to get pbuilder to run apt-get update before trying to satisfy build-" "dependency" msgstr "" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:962 msgid "" "You can use hook scripts for this. D scripts are run before satisfying " "build-dependency." msgstr "" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:966 msgid "" "<ulink url=\"http://lists.debian.org/debian-devel/2006/05/msg00550.html\"> " "This snippet comes from Ondrej Sury. </ulink>" msgstr "" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:972 msgid "Different bash prompts inside pbuilder login" msgstr "pbuilder login で bash のプロンプトを変更する" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:974 msgid "" "To make distinguishing bash prompts inside <command>pbuilder</command> " "easier, it is possible to set environment variables such as PS1 inside " "<filename>pbuilderrc</filename>" msgstr "" # type: Content of: <book><chapter><sect1><para><footnote><para> #. type: Content of: <book><chapter><sect1><para><footnote><para> #: pbuilder-doc.xml:985 msgid "Versions of bash from and before Debian 3.0" msgstr "Debian 3.0 以前のbash " #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:980 msgid "" "With versions of bash more recent than 2.05b-2-15, the value of the " "debian_chroot variable, if set, is included in the value of PS1 (the Bash " "prompt) inside the chroot. In prior versions of bash,<placeholder type=" "\"footnote\" id=\"0\"/> setting PS1 in pbuilderrc worked." msgstr "" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:989 msgid "example of debian_chroot" msgstr "" # type: Content of: <book><chapter><sect1><screen> #. type: Content of: <book><chapter><sect1><screen> #: pbuilder-doc.xml:991 #, fuzzy, no-wrap msgid "\texport debian_chroot=\"pbuild$$\"" msgstr "" "\n" " export debian_chroot=\"pbuild$$\"" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:992 msgid "example of PS1" msgstr "" #. type: Content of: <book><chapter><sect1><screen> #: pbuilder-doc.xml:994 #, no-wrap msgid "\texport PS1=\"pbuild chroot 32165 # \"" msgstr "" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:997 msgid "Creating a chroot reminder" msgstr "" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:999 msgid "" "Bash prompts will help you remember that you are inside a chroot. There are " "other cases where you may want other signs of being inside a chroot. Check " "out the <filename>examples/F90chrootmemo</filename> hook script. It will " "create a file called <filename>/CHROOT</filename> inside your chroot." msgstr "" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1008 msgid "Using /var/cache/apt/archives for the package cache" msgstr "" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1010 msgid "" "For the help of low-bandwidth systems, it is possible to use <filename>/var/" "cache/apt/archives</filename> as the package cache. Just specify it instead " "of the default <filename>/var/cache/pbuilder/aptcache</filename>." msgstr "" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1016 msgid "" "It is however not possible to do so currently with the user-mode-linux " "version of <command>pbuilder</command>, because <filename>/var/cache/apt/" "archives</filename> is usually only writable by root." msgstr "" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1022 msgid "" "Use of dedicated tools such as apt-proxy is recommended, since caching of " "packages would benefit the system outside the scope of <command>pbuilder</" "command>." msgstr "" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1028 msgid "pbuilder back ported to stable Debian releases" msgstr "" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1030 msgid "Currently stable back port of pbuilder is available at backports.org." msgstr "" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1034 msgid "Warning about LOGNAME not being defined" msgstr "" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1036 msgid "" "You might see a lot of warning messages when running <command>pbuilder</" "command>." msgstr "" #. type: Content of: <book><chapter><sect1><para><screen> #: pbuilder-doc.xml:1040 #, no-wrap msgid "\tdpkg-genchanges: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)" msgstr "" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1043 msgid "" "It is currently safe to ignore this warning message. Please report back if " "you find any problem with having LOGNAME unset. Setting LOGNAME caused a " "few problems when invoking <command>chroot</command>. For example, dpkg " "requires getpwnam to succeed inside chroot, which means LOGNAME and the " "related user information have to be set up inside chroot." msgstr "" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1052 msgid "Cannot Build-conflict against an essential package" msgstr "" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1054 msgid "" "<command>pbuilder</command> does not currently allow Build-Conflicts against " "essential packages. It should be obvious that essential packages should not " "be removed from a working Debian system, and a source package should not try " "to force removal of such packages on people building the package." msgstr "" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1063 msgid "Avoiding the \"ln: Invalid cross-device link\" message" msgstr "" # type: Content of: <book><chapter><sect1><para><screen> #. type: Content of: <book><chapter><sect1><para><screen> #: pbuilder-doc.xml:1069 pbuilder-doc.xml:1202 #, no-wrap msgid "APTCACHEHARDLINK=no" msgstr "" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1065 msgid "" "By default, <command>pbuilder</command> uses hard links to manage the " "<command>pbuilder</command> package cache. It is not possible to make hard " "links across different devices; and thus this error will occur, depending on " "your set up. If this happens, set <placeholder type=\"screen\" id=\"0\"/> " "in your pbuilderrc file. Note that packages in <command>APTCACHE</command> " "will be copied into chroot local cache, so plan for enough space on " "<command>BUILDPLACE</command> device." msgstr "" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1077 msgid "Using fakechroot" msgstr "" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1079 msgid "" "It is possible to use <command>fakechroot</command> instead of being root to " "run <command>pbuilder</command>; however, several things make this " "impractical. <command>fakechroot</command> overrides library loads and " "tries to override default libc functions when providing the functionality of " "virtual <command>chroot</command>. However, some binaries do no use libc to " "function, or override the overriding provided by <command>fakechroot</" "command>. One example is <command>ldd</command>. Inside " "<command>fakechroot</command>, <command>ldd</command> will check the library " "dependency outside of the chroot, which is not the expected behavior." msgstr "" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1093 msgid "" "To work around the problem, debootstrap has a <option>--variant fakechroot</" "option> option. Use that, so that ldd and ldconfig are overridden." msgstr "" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1098 msgid "" "Make sure you have set your LD_PRELOAD path correctly, as described in the " "fakechroot manpage." msgstr "" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1103 msgid "Using debconf inside pbuilder sessions" msgstr "" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1105 msgid "" "To use debconf inside <command>pbuilder</command>, setting DEBIAN_FRONTEND " "to <quote>readline</quote> in <filename>pbuilderrc</filename> should work. " "Setting it to <quote>dialog</quote> should also work, but make sure whiptail " "or dialog is installed inside the chroot." msgstr "" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1112 msgid "nodev mount options hinder pbuilder activity" msgstr "" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1114 msgid "" "If you see messages such as this when building a chroot, you are mounting " "the file system with the nodev option." msgstr "" #. type: Content of: <book><chapter><sect1><screen> #: pbuilder-doc.xml:1118 #, no-wrap msgid "\t/var/lib/dpkg/info/base-files.postinst: /dev/null: Permission denied" msgstr "" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1120 msgid "" "You will also have problems if you mount the file system with the noexec " "option, or nosuid. Make sure you do not have these flags set when mounting " "the file system for <filename>/var/cache/pbuilder</filename> or $BUILDPLACE." msgstr "" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1126 msgid "This is not a problem when using <command>user-mode-linux</command>." msgstr "" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1129 msgid "" "See <ulink url=\"http://bugs.debian.org/316135\"> 316135 </ulink> for " "example." msgstr "" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1135 msgid "pbuilder is slow" msgstr "pbuilder が遅い" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1137 msgid "" "<command>pbuilder</command> is often slow. The slowest part of " "<command>pbuilder</command> is extracting the tar.gz every time " "<command>pbuilder</command> is invoked. That can be avoided by using " "<command>pbuilder-user-mode-linux</command>. <command>pbuilder-user-mode-" "linux</command> uses COW file system, and thus does not need to clean up and " "recreate the root file system." msgstr "" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1146 msgid "" "<command>pbuilder-user-mode-linux</command> is slower in executing the " "actual build system, due to the usual <command>user-mode-linux</command> " "overhead for system calls. It is more friendly to the hard drive." msgstr "" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1152 msgid "" "<command>pbuilder</command> with cowdancer is also an alternative that " "improves speed of pbuilder startup." msgstr "" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1157 msgid "Using pdebuild to sponsor package" msgstr "" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1159 msgid "" "To sign a package marking for sponsorship, it is possible to " "use<command><option> --auto-debsign</option></command> and " "<command><option>--debsign-k</option></command> options of " "<command>pdebuild</command>." msgstr "" #. type: Content of: <book><chapter><sect1><screen> #: pbuilder-doc.xml:1165 #, no-wrap msgid "\t<command>pdebuild <option>--auto-debsign </option> <option>--debsign-k </option><parameter>XXXXXXXX</parameter></command>" msgstr "" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1168 msgid "Why is there a source.changes file in ../?" msgstr "" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1170 msgid "" "When running <command>pdebuild</command>, <command>pbuilder</command> will " "run dpkg-buildpackage to create a Debian source package to pass it on to " "<command>pbuilder</command>. File named XXXX_YYY_source.changes is what " "remains from that process. It is harmless unless you try to upload it to " "the Debian archive." msgstr "" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1176 msgid "" "This behavior is different when running through <option>--use-pdebuild-" "internal</option>" msgstr "" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1180 msgid "amd64 and i386-mode" msgstr "" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1182 msgid "" "amd64 architectures are capable of running binaries in i386 mode. It is " "possible to use <command>pbuilder</command> to run packages, using " "<command>linux32</command> and <command>debootstrap <option>--arch</option></" "command> option. Specifically, a command-line option like the following " "will work." msgstr "" #. type: Content of: <book><chapter><sect1><para><screen> #: pbuilder-doc.xml:1191 #, no-wrap msgid "" "<command>pbuilder create --distribution sid --debootstrapopts --arch --debootstrapopts i386 \\\n" " --basetgz /var/cache/pbuilder/base-i386.tgz --mirror http://ftp.jp.debian.org/debian</command>\n" "<command>linux32 pbuilder build --basetgz /var/cache/pbuilder/base-i386.tgz</command>" msgstr "" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1197 msgid "Using tmpfs for buildplace" msgstr "" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1199 msgid "" "To improve speed of operation, it is possible to use tmpfs for pbuilder " "build location. Mount tmpfs to <filename>/var/cache/pbuilder/build</" "filename>, and set <placeholder type=\"screen\" id=\"0\"/>." msgstr "" # type: Content of: <book><chapter><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1206 msgid "Using svn-buildpackage together with pbuilder" msgstr "svn-buildpackage を pbuilder で利用する" # type: Content of: <book><chapter><sect1><para><footnote><para> #. type: Content of: <book><chapter><sect1><para><footnote><para> #: pbuilder-doc.xml:1211 msgid "" "<ulink url=\"http://upsilon.cc/~zack/blog/posts/2007/09/svn-cowbuilder/\"> " "Zack has posted an example on his blog. </ulink>" msgstr "" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1208 msgid "" "pdebuild command can be used with svn-buildpackage --svn-builder command-" "line option. <placeholder type=\"footnote\" id=\"0\"/>" msgstr "" #. type: Content of: <book><chapter><sect1><screen> #: pbuilder-doc.xml:1217 #, no-wrap msgid "alias svn-cowbuilder=\"svn-buildpackage --svn-builder='pdebuild --pbuilder cowbuilder\"" msgstr "" # type: Content of: <book><chapter><title> #. type: Content of: <book><chapter><title> #: pbuilder-doc.xml:1224 msgid "Troubleshooting and development" msgstr "" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1226 msgid "Reporting bugs" msgstr "" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1228 msgid "" "To report bugs, it would be important to have a log of what's going wrong. " "Most of the time, adding a <command><option>--debug</option></command> " "option and re-running the session should do the trick. Please send the log " "of such session along with your problem to ease the debugging process." msgstr "" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1237 msgid "Mailing list" msgstr "" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1239 msgid "" "There is a mailing list for <command>pbuilder</command> on alioth (pbuilder-" "maint@lists.alioth.debian.org). You can subscribe through the alioth web " "interface. <ulink url=\"http://alioth.debian.org/mail/?group_id=30778\"> " "http://alioth.debian.org/mail/?group_id=30778</ulink>." msgstr "" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1247 msgid "IRC Channel" msgstr "" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1249 msgid "" "For coordination and communication, IRC channel #pbuilder on irc.oftc.net is " "used. Please log your intent there when you are going to start doing some " "changes and committing some change." msgstr "" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1256 msgid "Information for pbuilder developers" msgstr "" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1258 msgid "" "This section tries to document current development practices and how things " "generally operate in development." msgstr "" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1262 msgid "" "<command>pbuilder</command> is co-maintained with resources provided by " "Alioth. There is an Alioth project page at <ulink url=\"http://alioth." "debian.org/projects/pbuilder\"> http://alioth.debian.org/projects/pbuilder</" "ulink>. Home page is also available, at <ulink url=\"http://pbuilder.alioth." "debian.org/\"> http://alioth.debian.org/projects/pbuilder</ulink> which " "shows this text. git repository is available through http, git, or (if you " "have an account on alioth, ) ssh." msgstr "" #. type: Content of: <book><chapter><sect1><screen> #: pbuilder-doc.xml:1276 #, no-wrap msgid "" "git-clone git://git.debian.org/git/pbuilder/pbuilder.git\n" "git-clone http://git.debian.org/git/pbuilder/pbuilder.git\n" "git-clone ssh://git.debian.org/git/pbuilder/pbuilder.git" msgstr "" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1280 msgid "" "Git commit message should have the first one line describing what the commit " "does, formatted in the way debian/changelog is formatted because it is " "copied verbatim to changelog via git-dch. The second line is empty, and the " "rest should describe the background and extra information related to " "implementation of the commit." msgstr "" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1288 msgid "" "Test-suites are available in <filename>./testsuite/</filename> directory. " "Changes are expected not to break the test-suites. <filename>./run-test.sh</" "filename> is a basic test-suite, which puts a summary in <filename>run-test." "log</filename>, and <filename>run-test-cdebootstrap.log</filename>. " "<filename>./run-test-regression.sh</filename> is a regression test-suite, " "which puts the result in <filename>run-test-regression.log</filename>. " "Currently, run-test.sh is ran automatically daily to ensure that pbuilder is " "working." msgstr "" # type: Content of: <book><chapter><sect1><table><title> #. type: Content of: <book><chapter><sect1><table><title> #: pbuilder-doc.xml:1297 msgid "Directory structure of the testsuite" msgstr "テストスイートのディレクトリ構造" # type: Content of: <book><chapter><sect1><table><tgroup><thead><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><thead><row><entry> #: pbuilder-doc.xml:1303 pbuilder-doc.xml:1526 pbuilder-doc.xml:1595 msgid "Directory" msgstr "ディレクトリ" # type: Content of: <book><chapter><sect1><table><tgroup><thead><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><thead><row><entry> #: pbuilder-doc.xml:1304 pbuilder-doc.xml:1527 pbuilder-doc.xml:1596 msgid "Meaning" msgstr "意味" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1309 msgid "<filename>./testsuite/</filename>" msgstr "<filename>./testsuite/</filename>" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1310 msgid "Directory for testsuite" msgstr "テストスイートへのディレクトリ" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1313 msgid "<filename>./testsuite/run-test.sh</filename>" msgstr "<filename>./testsuite/run-test.sh</filename>" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1314 msgid "" "Daily regression test to test against Debian Archive changes breaking " "pbuilder." msgstr "" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1317 msgid "<filename>./testsuite/run-test.log</filename>" msgstr "<filename>./testsuite/run-test.log</filename>" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1318 msgid "A summary of testsuite" msgstr "" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1321 msgid "<filename>./testsuite/normal/</filename>" msgstr "" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1322 msgid "Directory for testsuite results of running pbuilder with debootstrap" msgstr "" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1325 msgid "<filename>./testsuite/cdebootstrap/</filename>" msgstr "" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1326 msgid "Directory for testsuite results of running pbuilder with cdebootstrap" msgstr "" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1329 msgid "<filename>./testsuite/run-regression.sh</filename>" msgstr "" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1330 msgid "" "Regression testsuite, ran every time change is made to pbuilder to make sure " "there is no regression." msgstr "" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1333 msgid "<filename>./testsuite/run-regression.log</filename>" msgstr "" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1334 msgid "Summary of test result" msgstr "" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1337 msgid "<filename>./testsuite/regression/BugID-*.sh</filename>" msgstr "" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1338 msgid "Regression tests, exit 0 for success, exit 1 for failure" msgstr "" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1341 msgid "<filename>./testsuite/regression/BugID-*</filename>" msgstr "" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1342 msgid "Files used for the regression testsuite." msgstr "回帰テストスイートに利用されるファイル" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1345 msgid "<filename>./testsuite/regression/log/BugID-*.sh.log</filename>" msgstr "<filename>./testsuite/regression/log/BugID-*.sh.log</filename>" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1346 msgid "" "Output of the regression test, output from the script is redirected by run-" "regression.sh" msgstr "" "回帰テストの出力、 run-regression.sh によりスクリプトの出力がリダイレクトされ" "る" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1352 msgid "" "When making changes, changes should be documented in the Git commit log. " "git-dch will generate debian/changelog from the commit log. Make the first " "line of your commit log meaningful, and add any bug-closing information " "available. debian/changelog should not be edited directly unless when " "releasing a new version." msgstr "" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1360 msgid "" "A TODO file is available in <filename>debian/TODO</filename>. It's mostly " "not well-maintained, but hopefully it will be more up-to-date when people " "start using it. emacs todoo-mode is used in editing the file." msgstr "" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1366 msgid "" "When releasing a new version of <command>pbuilder</command>, the version is " "tagged with the git tag X.XXX (version number). This is done with " "<command>./git-tag.sh</command> script available in the source tree." msgstr "" # type: Content of: <book><chapter><title> #. type: Content of: <book><chapter><title> #: pbuilder-doc.xml:1374 msgid "Other uses of pbuilder" msgstr "" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1376 msgid "Using pbuilder for small experiments" msgstr "pbuilder を小規模な実験のために活用する" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1378 msgid "" "There are cases when some small experimenting is required, and you do not " "want to damage the main system, like when installing experimental library " "packages, or compiling with experimental compilers. For such cases, the " "<command>pbuilder login</command> command is available." msgstr "" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1385 msgid "" "<command>pbuilder login </command> is a debugging feature for " "<command>pbuilder</command> itself, but it also allows users to have a " "temporary chroot." msgstr "" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1389 msgid "" "Note that the chroot is cleaned after logging out of the shell, and mounting " "file systems inside it is considered harmful." msgstr "" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1394 msgid "Running little programs inside the chroot" msgstr "" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1396 msgid "" "To facilitate using <command>pbuilder</command> for other uses, " "<command>pbuilder execute</command> is available. <command>pbuilder execute " "</command> will take a script specified in the command-line argument, and " "invoke the script inside the chroot." msgstr "" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1403 msgid "" "The script can be useful for sequences of operations such as installing ssh " "and adding a new user inside the chroot." msgstr "" # type: Content of: <book><chapter><title> #. type: Content of: <book><chapter><title> #: pbuilder-doc.xml:1409 #, fuzzy #| msgid "Experimental or wish-list features of pbuilder" msgid "Experimental or wishlist features of pbuilder" msgstr "実験的な pbuilder の wish-list 的な機能" # type: Content of: <book><chapter><para> #. type: Content of: <book><chapter><para> #: pbuilder-doc.xml:1411 msgid "" "There are some advanced features, above that of the basic feature of " "<command>pbuilder</command>, for some specific purposes." msgstr "" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1415 msgid "Using LVM" msgstr "LVMの活用" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1417 msgid "" "LVM2 has a useful snapshot function that features Copy-on-write images. " "That could be used for <command>pbuilder</command> just as it can be used " "for the user-mode-linux <command>pbuilder</command> port. lvmpbuilder " "script in the examples directory implements such port. The scripts and " "documentation can be found under <filename>/usr/share/doc/pbuilder/examples/" "lvmpbuilder/</filename>." msgstr "" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1426 msgid "Using cowdancer" msgstr "cowdancer の活用" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1428 msgid "" "<command>cowdancer</command> allows copy-on-write semantics on file system " "using hard links and hard-link-breaking-on-write tricks. <command>pbuilder</" "command> using <command>cowdancer</command> seems to be much faster and it " "is one ideal point for improvement. <command>cowbuilder</command>, a " "wrapper for <command>pbuilder</command> for using <command>cowdancer</" "command> is available from <command>cowdancer</command> package since 0.14" msgstr "" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1439 msgid "Example command-lines for cowbuilder look like the following." msgstr "" # type: Content of: <book><chapter><sect1><para><screen> #. type: Content of: <book><chapter><sect1><para><screen> #: pbuilder-doc.xml:1443 #, fuzzy, no-wrap msgid "" "# cowbuilder --create --distribution sid\n" "# cowbuilder --update --distribution sid\n" "# cowbuilder --build XXX.dsc" msgstr "" "\n" "# cowbuilder --create --distribution sid\n" "# cowbuilder --update --distribution sid\n" "# cowbuilder --build XXX.dsc" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1448 msgid "" "It is also possible to use cowdancer with pdebuild command. Specify with " "command-line option <option>--pbuilder</option> or set it in " "PDEBUILD_PBUILDER configuration option." msgstr "" # type: Content of: <book><chapter><sect1><para><screen> #. type: Content of: <book><chapter><sect1><para><screen> #: pbuilder-doc.xml:1454 #, fuzzy, no-wrap msgid "$ pdebuild --pbuilder cowbuilder" msgstr "" "\n" "$ pdebuild --pbuilder cowbuilder" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1458 msgid "Using pbuilder without tar.gz" msgstr "tar.gz を利用しないで pbuilder を利用する" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1460 msgid "" "The <command><option>--no-targz</option></command> option of " "<command>pbuilder</command> will allow usage of <command>pbuilder</command> " "in a different way from conventional usage. It will try to use an existing " "chroot, and will not try to clean up after working on it. It is an " "operation mode more like <command>sbuild</command>." msgstr "" # type: Content of: <book><chapter><sect1><para><screen> #. type: Content of: <book><chapter><sect1><para><screen> #: pbuilder-doc.xml:1474 #, fuzzy, no-wrap msgid "" "# pbuilder create --distribution lenny --no-targz --basetgz /chroot/lenny\n" "# pbuilder create --distribution squeeze --no-targz --basetgz /chroot/squeeze\n" "# pbuilder create --distribution sid --no-targz --basetgz /chroot/sid" msgstr "" "\n" "# pbuilder create --distribution etch --no-targz --basetgz /chroot/etch\n" "# pbuilder create --distribution lenny --no-targz --basetgz /chroot/lenny\n" "# pbuilder create --distribution sid --no-targz --basetgz /chroot/sid" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1471 msgid "" "It should be possible to create base chroot images for <command>dchroot</" "command> with the following commands: <placeholder type=\"screen\" id=\"0\"/>" msgstr "" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1480 msgid "Using pbuilder in a vserver" msgstr "pbuilder を vserver で利用する" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1482 msgid "" "It is possible to use <command>pbuilder</command> in a vserver environment. " "This requires either vserver-patches in version 2.1.1-rc14 or higher, or a " "Linux kernel version 2.6.16 or higher." msgstr "" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1487 msgid "" "To use <command>pbuilder</command> in a vserver, you need to set the " "<command>secure_mount</command> <command>CAPS</command> in the " "<command>ccapabilities</command> of this vserver." msgstr "" #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1493 msgid "Usage of ccache" msgstr "" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1495 msgid "" "It is possible to use C compiler cache <command>ccache</command> to speed up " "repeated builds of the same package (or packages that compile the same files " "multiple times for some reason). Using <command>ccache</command> can speed " "up repeated building of large packages dramatically, at the cost of some " "disk space and bookkeeping." msgstr "" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1503 msgid "" "To enable usage of <command>ccache</command> with <command>pbuilder</" "command>, you should set CCACHEDIR in your pbuilderrc file." msgstr "" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1508 msgid "" "Current implementation of ccache support has several bugs, that CCACHEDIR " "must be owned by the pbuilder build user, and parallel runs of pbuilder is " "not supported. Therefore it is not enabled by default." msgstr "" # type: Content of: <book><chapter><title> #. type: Content of: <book><chapter><title> #: pbuilder-doc.xml:1516 msgid "Reference materials" msgstr "参考文献" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1518 msgid "Directory structure outside the chroot" msgstr "chroot 外部のディレクトリ構造" # type: Content of: <book><chapter><sect1><table><title> #. type: Content of: <book><chapter><sect1><table><title> #: pbuilder-doc.xml:1520 msgid "Directory Structure outside the chroot" msgstr "chroot 内部のディレクトリ構造" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1532 msgid "<filename>/etc/pbuilderrc</filename>" msgstr "<filename>/etc/pbuilderrc</filename>" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1533 msgid "configuration file" msgstr "設定ファイル" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1536 msgid "<filename>/usr/share/pbuilder/pbuilderrc</filename>" msgstr "" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1537 msgid "Default configuration" msgstr "デフォルト設定" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1540 msgid "<filename>/var/cache/pbuilder/base.tgz</filename>" msgstr "" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1541 msgid "" "Default location pbuilder uses for base.tgz, the tar-ball containing a basic " "Debian installation with only the build-essential packages." msgstr "" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1546 msgid "<filename>/var/cache/pbuilder/build/PID/</filename>" msgstr "" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1547 msgid "Default location pbuilder uses for chroot" msgstr "pbuilder がデフォルトでchroot のために利用する場所" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1550 msgid "<filename>/var/cache/pbuilder/aptcache</filename>" msgstr "" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1551 msgid "" "Default location <command>pbuilder</command> will use as apt cache, to store " "deb packages required during <command>pbuilder</command> build." msgstr "" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1554 pbuilder-doc.xml:1638 #, fuzzy msgid "<filename>/var/cache/pbuilder/ccache</filename>" msgstr "<filename>/var/cache/apt/archives</filename>" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1555 #, fuzzy msgid "Default location <command>pbuilder</command> will use as cache location" msgstr "pbuilder がデフォルトでchroot のために利用する場所" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1559 msgid "<filename>/var/cache/pbuilder/result</filename>" msgstr "" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1560 msgid "" "Default location <command>pbuilder</command> puts the deb files and other " "files created after build" msgstr "" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1563 msgid "<filename>/var/cache/pbuilder/pbuilder-umlresult</filename>" msgstr "" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1564 msgid "" "Default location <command>pbuilder-user-mode-linux</command> puts the deb " "files and other files created after build" msgstr "" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1567 msgid "<filename>/var/cache/pbuilder/pbuilder-mnt</filename>" msgstr "" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1568 msgid "" "Default location <command>pbuilder-user-mode-linux</command> uses for " "mounting the COW file system, for chrooting." msgstr "" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1571 msgid "<filename>/tmp</filename>" msgstr "<filename>/tmp</filename>" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1572 msgid "<command>pbuilder-user-mode-linux</command> will mount tmpfs for work." msgstr "" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1575 msgid "<filename>${HOME}/tmp/PID.cow</filename>" msgstr "" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1576 msgid "" "<command>pbuilder-user-mode-linux</command> use this directory for location " "of COW file system." msgstr "" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1579 msgid "<filename>${HOME}/uml-image</filename>" msgstr "" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1580 msgid "" "<command>pbuilder-user-mode-linux</command> use this directory for user-mode-" "linux full disk image." msgstr "" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1587 msgid "Directory structure inside the chroot" msgstr "chroot 内部のディレクトリ構造" # type: Content of: <book><chapter><sect1><table><title> #. type: Content of: <book><chapter><sect1><table><title> #: pbuilder-doc.xml:1589 msgid "Directory Structure inside the chroot" msgstr "chroot 内部のディレクトリ構造" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1601 msgid "<filename>/etc/mtab</filename>" msgstr "<filename>/etc/mtab</filename>" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1603 msgid "symlink to <filename>/proc/mounts</filename>." msgstr " <filename>/proc/mounts</filename>へのシンボリックリンク。" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1607 msgid "<filename>/tmp/buildd</filename>" msgstr "<filename>/tmp/buildd</filename>" #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1608 msgid "" "Default place used in <command>pbuilder</command> to place the Debian " "package to be processed. <filename>/tmp/buildd/packagename-version/</" "filename> will be the root directory of the package being processed. HOME " "environment variable is set to this value inside chroot by pbuilder-" "buildpackage. <option>--inputfile</option> will place files here." msgstr "" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1618 #, fuzzy #| msgid "<filename>/run</filename>" msgid "<filename>/runscript</filename>" msgstr "<filename>/run</filename>" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1619 msgid "" "The script passed as an argument to <command>pbuilder</command> execute is " "passed on." msgstr "" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1625 msgid "<filename>/tmp/hooks</filename>" msgstr "<filename>/tmp/hooks</filename>" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1627 msgid "The location of hooks." msgstr "フックの場所。" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1631 msgid "<filename>/var/cache/apt/archives</filename>" msgstr "<filename>/var/cache/apt/archives</filename>" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1633 msgid "" "<command>pbuilder</command> copies the content of this directory to and from " "the aptcache directory of outside chroot." msgstr "" "<command>pbuilder</command> は chroot 外部の aptcache ディレクトリからコピー" "してきたり、chroot 外部の aptcache ディレクトリへコピーしたりします。" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1640 #, fuzzy msgid "" "<command>pbuilder</command> bind-mounts this directory for use by ccache." msgstr "" "<command>pbuilder</command> は chroot 外部の aptcache ディレクトリからコピー" "してきたり、chroot 外部の aptcache ディレクトリへコピーしたりします。" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1645 msgid "<filename>/tmp/XXXX</filename>" msgstr "<filename>/tmp/XXXX</filename>" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1646 msgid "" "<command>pbuilder-user-mode-linux</command> uses a script in <filename>/tmp</" "filename> to bootstrap into user-mode-linux" msgstr "" "<command>pbuilder-user-mode-linux</command> は <filename>/tmp</filename> のス" "クリプトを利用して user-mode-linux にブートストラップします。" # type: Content of: <book><chapter><title> #. type: Content of: <book><chapter><title> #: pbuilder-doc.xml:1656 msgid "Minor archaeological details" msgstr "些細な過去の経緯の詳細" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1658 msgid "Documentation history" msgstr "マニュアルの履歴" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1660 msgid "" "This document was started on 28 Dec 2002 by Junichi Uekawa, trying to " "document what is known about <command>pbuilder</command>." msgstr "" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1665 msgid "" "This documentation is available from the <command>pbuilder</command> source " "tar-ball, and from the git repository of <command>pbuilder</command> (web-" "based access is possible). A copy of this documentation can be found on the " "<ulink url=\"http://pbuilder.alioth.debian.org/pbuilder-doc.html\">Alioth " "project page for pbuilder</ulink>. <ulink url=\"http://pbuilder.alioth." "debian.org/pbuilder-doc.pdf\">There is also a PDF version</ulink>. The " "homepage for <command>pbuilder</command> is <ulink url=\"http://pbuilder." "alioth.debian.org/\"> http://pbuilder.alioth.debian.org/ </ulink> hosted by " "alioth project." msgstr "" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1676 msgid "" "Documentation is written using DocBook XML, with emacs PSGML mode, and using " "wysidocbookxml for live previewing." msgstr "" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1682 msgid "Possibly inaccurate Background History of pbuilder" msgstr "" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1684 msgid "" "The following is a most possibly inaccurate account of how " "<command>pbuilder</command> came to happen, and other attempts to make " "something like <command>pbuilder</command> happen. This part of the " "document was originally in the AUTHORS file, to give credit to those who " "existed before <command>pbuilder</command>." msgstr "" # type: Content of: <book><chapter><sect1><sect2><title> #. type: Content of: <book><chapter><sect1><sect2><title> #: pbuilder-doc.xml:1691 msgid "The Time Before pbuilder" msgstr "" # type: Content of: <book><chapter><sect1><sect2><para> #. type: Content of: <book><chapter><sect1><sect2><para> #: pbuilder-doc.xml:1693 msgid "" "There was once dbuild, which was a shell script to build Debian packages " "from source. Lars Wirzenius wrote that script, and it was good, short, and " "simple (probably). There was nothing like build-depends then (I think), and " "it was simple. It could have been improved, I could only find references " "and no actual source." msgstr "" # type: Content of: <book><chapter><sect1><sect2><para> #. type: Content of: <book><chapter><sect1><sect2><para> #: pbuilder-doc.xml:1700 msgid "" "debbuild was probably written by James Troup. I don't know it because I have " "never seen the actual code, I could only find some references to it on the " "net, and mailing list logs." msgstr "" # type: Content of: <book><chapter><sect1><sect2><para> #. type: Content of: <book><chapter><sect1><sect2><para> #: pbuilder-doc.xml:1705 msgid "" "sbuild is a perl script to build Debian packages from source. It parses " "Build-Depends, and performs other miscellaneous checks, and has a lot of " "hacks to actually get things building, including a table of what package to " "use when virtual packages are specified (does it do that still?). It " "supports the use of a local database for packages which do not have build-" "dependencies. It was written by Ronan Hodek, and I think it was patched and " "fixed and extended by several people. It is part of wanna-build, and used " "extensively in the Debian buildd system. I think it was maintained mostly by " "Ryan Murray." msgstr "" # type: Content of: <book><chapter><sect1><sect2><title> #. type: Content of: <book><chapter><sect1><sect2><title> #: pbuilder-doc.xml:1719 msgid "Birth of pbuilder" msgstr "pbuilder の誕生" # type: Content of: <book><chapter><sect1><sect2><para> #. type: Content of: <book><chapter><sect1><sect2><para> #: pbuilder-doc.xml:1721 msgid "" "wanna-build (sbuild) was (at the time of year 2001) quite difficult to set " "up, and it was never a Debian package. dbuild was something that predated " "Build-Depends." msgstr "" # type: Content of: <book><chapter><sect1><sect2><para> #. type: Content of: <book><chapter><sect1><sect2><para> #: pbuilder-doc.xml:1726 msgid "" "Building packages from source using Build-Depends information within a " "chroot sounded trivial; and <command>pbuilder</command> was born. It was " "initially a shell script with only a few lines, which called debootstrap and " "chroot and dpkg-buildpackage in the same run, but soon, it was decided that " "that's too slow." msgstr "" # type: Content of: <book><chapter><sect1><sect2><para> #. type: Content of: <book><chapter><sect1><sect2><para> #: pbuilder-doc.xml:1734 msgid "" "Yes, and it took almost an year to get things somewhat right, and in the " "middle of the process, Debian 3.0 was released. Yay. Debian 3.0 wasn't " "completely buildable with <command>pbuilder</command>, but the amount of " "packages which are not buildable is steadily decreasing (I hope)." msgstr "" # type: Content of: <book><chapter><sect1><sect2><title> #. type: Content of: <book><chapter><sect1><sect2><title> #: pbuilder-doc.xml:1743 msgid "And the second year of its life" msgstr "そして二年目の人生" # type: Content of: <book><chapter><sect1><sect2><para> #. type: Content of: <book><chapter><sect1><sect2><para> #: pbuilder-doc.xml:1745 msgid "" "Someone wanted <command>pbuilder</command> to not run as root, and as User-" "mode-linux has become more useful as time passed, I've started experimenting " "with <command>pbuilder-user-mode-linux</command>. <command>pbuilder-user-" "mode-linux</command> has not stayed functional as much as I would have " "liked, and bootstrapping <command>user-mode-linux</command> environment has " "been pretty hard, due to the quality of user-mode-linux code or packaging at " "that time, which kept on breaking network support in one way or the other." msgstr "" # type: Content of: <book><chapter><sect1><sect2><title> #. type: Content of: <book><chapter><sect1><sect2><title> #: pbuilder-doc.xml:1758 msgid "Fifth year of pbuilder" msgstr "pbuilder の5年目" # type: Content of: <book><chapter><sect1><sect2><para> #. type: Content of: <book><chapter><sect1><sect2><para> #: pbuilder-doc.xml:1760 msgid "" "<command>pbuilder</command> is now widely adopted as a 'almost standard' " "tool for testing packages, and building packages in a pristine environment. " "There are other similar tools that do similar tasks, but they do not share " "the exact same goal. To commemorate this fact, <command>pbuilder</command> " "is now co-maintained with several people." msgstr "" # type: Content of: <book><chapter><sect1><sect2><para> #. type: Content of: <book><chapter><sect1><sect2><para> #: pbuilder-doc.xml:1768 msgid "" "<command>sbuild</command> is now a well-maintained Debian package within " "Debian, and with <command>pbuilder</command> being such a slow monster, some " "people prefer the approach of sbuild. Development to use LVM-snapshots, " "cowloop, or cowdancer is hoped to improve the situation somewhat." msgstr "" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:123 msgid "" "<command>pbuilder update</command> will update the base.tgz. It will " "extract the chroot, invoke <command>apt-get update</command> and " "<command>apt-get dist-upgrade</command> inside the chroot, and then recreate " "the base.tgz (the base tar-ball.)" msgstr "" "<command>pbuilder update</command> コマンドが base.tgz を更新します。 chroot " "を展開し、 <command>apt-get update</command> と <command>apt-get dist-" "upgrade</command> を chroot 内部で実行し、base.tgz (ベースの tar 玉) を作成" "します。" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:271 msgid "" "<command>pbuilder</command> requires full root privilege when it is " "satisfying the build-dependencies, but most packages do not need root " "privilege to build, or even refused to build when they are built as root. " "<command>pbuilder </command> can create a user which is only used inside " "<command>pbuilder </command> and use that user id when building, and use the " "<command>fakeroot</command> command when root privilege is required." msgstr "" "<command>pbuilder</command> は依存関係を充足させる際には root 権限を必要とし" "ます、しかしほとんどのパッケージはビルド時に root 権限を必要とはせず、rootで" "はビルドできないパッケージも一部存在します。<command>pbuilder </command> は " "<command>pbuilder </command> 内部専用のユーザを作成し、そのユーザIDを利用して" "ビルドを実行することができます。root権限が必要な時には<command>fakeroot</" "command> コマンドを利用します。" # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:426 msgid "" "Automatic install-remove-upgrade-remove-install-purge-upgrade-purge test-" "suite (distributed as an example, <filename>B91dpkg-i</filename>), or just " "check that everything installs somewhat (<filename>execute_installtest.sh</" "filename>)." msgstr "" "自動的にインストール・アップグレード・削除・インストール・パージ・アップグ" "レード・パージするようなテスト(例として、<filename>B91dpkg-i</filename>が配布" "されています)、もしくは全部インストールできることを確認する" "(<filename>execute_installtest.sh</filename>)。" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:442 msgid "" "To use B92test-pkg script, first, add it to your hook directory. " "<placeholder type=\"footnote\" id=\"0\"/>. The test files are shell scripts " "placed in <filename>debian/pbuilder-test/NN_name</filename> (where NN is " "number) following run-parts standard<placeholder type=\"footnote\" id=\"1\"/" "> for file names. After a successful build, packages are first tested for " "installation and removal, and then each test is ran inside the chroot. The " "current directory is the top directory of the source-code. This means you " "can expect to be able to use ./debian/ directory from inside your scripts." msgstr "" # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:463 msgid "" "Example scripts for use with pbuilder-test can be found in <filename>/usr/" "share/doc/pbuilder/examples/pbuilder-test</filename>" msgstr "" "pbuilder-test を利用するスクリプト例は <filename>/usr/share/doc/pbuilder/" "examples/pbuilder-test</filename>以下に配布されている。" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:788 msgid "" "It is possible to invoke a shell session after a build failure. Example " "hook script are provided as <filename>C10shell</filename> and " "<filename>C11screen</filename> scripts. C10shell script will start bash " "inside chroot, and C11screen script will start GNU screen inside the chroot." msgstr "" # type: Content of: <book><chapter><title> #. type: Content of: <book><chapter><title> #: pbuilder-doc.xml:1409 msgid "Experimental or wish-list features of pbuilder" msgstr "実験的な pbuilder の wish-list 的な機能" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1417 msgid "" "LVM2 has a useful snapshot function that features Copy-on-write images. " "That could be used for <command>pbuilder</command> just as it can be used " "for the user-mode-linux <command>pbuilder</command> port. lvmpbuilder " "script in the examples directory implements such port. The scripts and " "documentation can be found under <filename>/usr/share/doc/pbuilder/examples/" "lvmpbuilder/</filename>" msgstr "" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1612 msgid "<filename>/run</filename>" msgstr "<filename>/run</filename>" # type: Content of: <book><bookinfo><date> #~ msgid "2007-5-27" #~ msgstr "2007年5月27日" # type: Content of: <book><bookinfo><abbrev> #~ msgid "pbuilder-doc" #~ msgstr "pbuilder-doc" # type: Content of: <book><chapter><sect1><para><command><option> #~ msgid "--distribution" #~ msgstr "--distribution" # type: Content of: <book><chapter><sect1><para> #~ msgid "</command> command-line option." #~ msgstr "</command>コマンドラインオプションで指定する必要があります。" # type: Content of: <book><chapter><sect1><para> #~ msgid "" #~ "</footnote> to use, and proxy configuration may be required to allow " #~ "access through HTTP. See the pbuilderrc.5 manual page for details." #~ msgstr "" #~ "</footnote> 、またプロキシの設定もHTTP経由でのアクセスのため、変更の必要が" #~ "あるでしょう。詳細は pbuilderrc.5 マニュアルページを参照してください。" # type: Content of: <book><chapter><sect1><para><command> #~ msgid "" #~ "It is possible to switch the distribution which the base.tgz is targeted " #~ "at at this point. Specify <command>" #~ msgstr "" #~ "この時点で、base.tgz が対象とするディストリビューションを指定することが可" #~ "能です。<command>" # type: Content of: <book><chapter><sect1><para><command><option> #~ msgid "--distribution <parameter>sid</parameter>" #~ msgstr "--distribution <parameter>sid</parameter>" # type: Content of: <book><chapter><sect1><para><command><option> #~ msgid "--override-config" #~ msgstr "--override-config" # type: Content of: <book><chapter><sect1><para><footnote> #~ msgid "</command> to change the distribution to sid. <footnote>" #~ msgstr "" #~ "</command> を指定すると、ディストリビューションを sid に変更できます。 " #~ "<footnote>" # type: Content of: <book><chapter><sect1><para><command> #~ msgid "To build a package inside the chroot, invoke <command>pbuilder build" #~ msgstr "chroot 内部でパッケージをビルドするには、 <command>pbuilder build " # type: Content of: <book><chapter><sect1><para><command><option> #~ msgid "whatever.dsc" #~ msgstr "なんたら.dsc" # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para><command><option> #~ msgid "--buildresult" #~ msgstr "--buildresult" # type: Content of: <book><chapter><sect1><para><command> #~ msgid "The <command>" #~ msgstr "<command>" # type: Content of: <book><chapter><sect1><para><command><option> #~ msgid "--basetgz" #~ msgstr "--basetgz" # type: Content of: <book><chapter><sect1><para> #~ msgid "</command> directory." #~ msgstr "</command> で指定されたディレクトリに生成されます。" # type: Content of: <book><chapter><sect1><para><option> #~ msgid "--use-pdebuild-internal" #~ msgstr "--use-pdebuild-internal" # type: Content of: <book><chapter><sect1><para> #~ msgid "" #~ "</command>. It will try to bind mount the working directory inside " #~ "chroot, and run <command>dpkg-buildpackage</command> inside. It has the " #~ "following characteristics, and is not yet the default mode of operation." #~ msgstr "" #~ "</command> を指定することができます。\n" #~ "chroot 内部に作業中のディレクトリをバインドマウントし、 <command>dpkg-" #~ "buildpackage</command> を内部で実行します。\n" #~ "以下の特徴があり、まだデフォルトにはなっていません。" # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #~ msgid "</command> does not have any effect." #~ msgstr "</command> がきかない。" # type: Content of: <book><chapter><sect1><para> #~ msgid "It is useful to use" #~ msgstr "" #~ "別のディストリビューション向けに複数の設定ファイルを活用するためには" # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para><command><option> #~ msgid "--configfile" #~ msgstr "--configfile" # type: Content of: <book><chapter><sect1><para><footnote> #~ msgid "" #~ "To use B92test-pkg script, first, add it to your hook directory. " #~ "<footnote>" #~ msgstr "" #~ "B92test-pkg を利用するためには、まずB92test-pkg スクリプトをフックディレク" #~ "トリに追加してください。 <footnote>" # type: Content of: <book><chapter><sect1><para><footnote> #~ msgid "" #~ "</footnote>. The test files are shell scripts placed in <filename>debian/" #~ "pbuilder-test/NN_name</filename> (where NN is number) following run-parts " #~ "standard<footnote>" #~ msgstr "" #~ "</footnote>。\n" #~ "テストファイルは <filename>debian/pbuilder-test/NN_name</filename> (NN: 番" #~ "号)に配置されたシェルスクリプトです。ファイル名規則は run-parts の標準にし" #~ "たがいます。<footnote>" # type: Content of: <book><chapter><sect1><para><command><option> #~ msgid "login" #~ msgstr "login" # type: Content of: <book><chapter><sect1><para><command><option> #~ msgid "execute" #~ msgstr "execute" # type: Content of: <book><chapter><sect1><para> #~ msgid "It is also possible to add" #~ msgstr "また別の方法としては" # type: Content of: <book><chapter><sect1><para><option> #~ msgid "--save-after-exec" #~ msgstr "--save-after-exec" # type: Content of: <book><chapter><sect1><para> #~ msgid "and/or" #~ msgstr "もしくは" # type: Content of: <book><chapter><sect1><para><option> #~ msgid "--save-after-login" #~ msgstr "--save-after-login" # type: Content of: <book><chapter><sect1><para> #~ msgid "" #~ "options to the <command>pbuilder login</command> session to accomplish " #~ "the goal. It is possible to add the" #~ msgstr "" #~ "オプションを <command>pbuilder login</command> セッションに追加することで" #~ "達成することができます。" # type: Content of: <book><chapter><sect1><para><option> #~ msgid "--uml-login-nocow" #~ msgstr "--uml-login-nocow" # type: Content of: <book><chapter><sect1><para><command> #~ msgid "option to <command>pbuilder-user-mode-linux" #~ msgstr "オプションを <command>pbuilder-user-mode-linux" # type: Content of: <book><chapter><sect1><para> #~ msgid "</command> session as well." #~ msgstr "</command> セッションに追加することも可能です。" # type: Content of: <book><chapter><sect1><para> #~ msgid "It is possible to set" #~ msgstr "pbuilderrc で" # type: Content of: <book><chapter><sect1><para><command><option> #~ msgid "--othermirror" #~ msgstr "--othermirror" # type: Content of: <book><chapter><sect1><para><command> #~ msgid "</command>" #~ msgstr "</command>" # type: Content of: <book><chapter><sect1><para><command><option> #~ msgid "--bindmounts" #~ msgstr "--bindmounts" # type: Content of: <book><chapter><sect1><para><option> #~ msgid "--variant fakechroot" #~ msgstr "--variant fakechroot" # type: Content of: <book><chapter><sect1><para><command> #~ msgid "<command>pdebuild" #~ msgstr "<command>pdebuild" # type: Content of: <book><chapter><sect1><para><option> #~ msgid "--pbuilder" #~ msgstr "--pbuilder" # type: Content of: <book><chapter><sect1><para><command><option> #~ msgid "--no-targz" #~ msgstr "--no-targz" # type: Content of: <book><chapter><sect1><para><option> #, fuzzy #~ msgid "--inputfile" #~ msgstr "--pbuilder" # type: Content of: <book><chapter><sect1><para> #~ msgid "" #~ "Please note <filename>${HOME}/.pbuilderrc</filename> supersede system " #~ "settings. For example, if you are upgrading from sarge to etch, you may " #~ "need to adjust some part of your local setting just like new <filename>/" #~ "usr/share/pbuilder/pbuilderrc</filename>, e.g., \"unset DEBOOTSTRAPOPTS" #~ "\", to cope with the use of cdebootstrap. The same care is needed if you " #~ "edited old system setting in <filename>/etc/pbuilderrc</filename>." #~ msgstr "" #~ " <filename>${HOME}/.pbuilderrc</filename> がシステムの設定より優先されるこ" #~ "とに注意してください。たとえば、 sarge から etch にアップグレードする場合" #~ "に、自分の設定の一部を <filename>/usr/share/pbuilder/pbuilderrc</" #~ "filename> にあわせて変更する必要がある可能性があります。例えば新しいバー" #~ "ジョンの cdebootstrap に対応するために \"unset DEBOOTSTRAPOPTS\" を入れ" #~ "る、などの例が考えられます。同じことが、<filename>/etc/pbuilderrc</" #~ "filename> にシステムの設定を入れている場合には当てはまります。" # type: Content of: <book><chapter><sect1><sect2><title> #~ msgid "Using cowdancer for sarge" #~ msgstr "sarge 向けに cowdancer を利用する" # type: Content of: <book><chapter><sect1><sect2><para><screen> #~ msgid "" #~ "\n" #~ "$ cat sources.list\n" #~ "# sarge-backports\n" #~ "deb http://www.backports.org/debian sarge-backports main\n" #~ "deb-src http://www.backports.org/debian sarge-backports main\n" #~ "\n" #~ "# sarge\n" #~ "deb http://ftp.de.debian.org/debian sarge main\n" #~ "deb-src http://ftp.de.debian.org/debian sarge main" #~ msgstr "" #~ "\n" #~ "$ cat sources.list\n" #~ "# sarge-backports\n" #~ "deb http://www.backports.org/debian sarge-backports main\n" #~ "deb-src http://www.backports.org/debian sarge-backports main\n" #~ "\n" #~ "# sarge\n" #~ "deb http://ftp.de.debian.org/debian sarge main\n" #~ "deb-src http://ftp.de.debian.org/debian sarge main" # type: Content of: <book><chapter><sect1><sect2><para><screen> #~ msgid "" #~ "\n" #~ "$ cat preferences\n" #~ "Explanation: use cowdancer from backports\n" #~ "Package: cowdancer\n" #~ "Pin: release a=sarge-backports\n" #~ "Pin-Priority: 950" #~ msgstr "" #~ "\n" #~ "$ cat preferences\n" #~ "Explanation: use cowdancer from backports\n" #~ "Package: cowdancer\n" #~ "Pin: release a=sarge-backports\n" #~ "Pin-Priority: 950" ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������pbuilder-0.215ubuntu7/Documentation/pbuilder-doc.fr.po����������������������������������������������0000664�0000000�0000000�00000575225�12312041170�017710� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������# pbuilder user manual French translation # Copyright (C) 2007 Free Software Foundation, Inc. # Vincent Bernat <bernat@luffy.cx>, 2007. # msgid "" msgstr "" "Project-Id-Version: pbuilder-0.171\n" "POT-Creation-Date: 2013-03-02 16:37+0900\n" "PO-Revision-Date: 2008-05-07 00:28+0200\n" "Last-Translator: Vincent Bernat <bernat@luffy.cx>\n" "Language-Team: French <debian-l10n-french@lists.debian.org>\n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" # type: Attribute 'xml:lang' of: <book> #. type: Attribute 'xml:lang' of: <book> #: pbuilder-doc.xml:5 msgid "en" msgstr "fr" #. type: Content of: <book><bookinfo> #: pbuilder-doc.xml:7 msgid "<date>2007-5-27</date>" msgstr "" # type: Content of: <book><bookinfo><title> #. type: Content of: <book><bookinfo><title> #: pbuilder-doc.xml:8 msgid "pbuilder User's Manual" msgstr "Manuel de l'utilisateur de pbuilder" #. type: Content of: <book><bookinfo> #: pbuilder-doc.xml:9 msgid "<abbrev>pbuilder-doc</abbrev>" msgstr "" # type: Content of: <book><bookinfo><subtitle> #. type: Content of: <book><bookinfo><subtitle> #: pbuilder-doc.xml:10 msgid "Usage and operations" msgstr "Mode d'emploi" # type: Content of: <book><bookinfo><releaseinfo> #. type: Content of: <book><bookinfo><releaseinfo> #: pbuilder-doc.xml:11 msgid "documentation in progress" msgstr "documentation en construction" #. type: Content of: <book><bookinfo><authorgroup><author><firstname> #: pbuilder-doc.xml:14 msgid "Junichi" msgstr "" #. type: Content of: <book><bookinfo><authorgroup><author><surname> #: pbuilder-doc.xml:15 msgid "Uekawa" msgstr "" # type: Content of: <book><chapter><title> #. type: Content of: <book><chapter><title> #: pbuilder-doc.xml:22 msgid "Introducing pbuilder" msgstr "Présentation de pbuilder" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:24 msgid "Aims of pbuilder" msgstr "Buts de pbuilder" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:26 msgid "" "<command>pbuilder</command> stands for Personal Builder, and it is an " "automatic Debian Package Building system for personal development " "workstation environments. <command>pbuilder</command> aims to be an easy-to-" "setup system for auto-building Debian packages inside a clean-room " "environment, so that it is possible to verify that a package can be built on " "most Debian installations. The clean-room environment is achieved through " "the use of a base chroot image, so that only minimal packages will be " "installed inside the chroot." msgstr "" "<command>pbuilder</command> signifie <foreignphrase>Personal Builder</" "foreignphrase> et constitue un système de construction automatique des " "paquets Debian destiné à une utilisation sur une station de développement " "personnelle. <command>pbuilder</command> se veut un système simple à mettre " "en place pour construire automatiquement des paquets Debian à l'intérieur " "d'un environnement propre afin de vérifier qu'un paquet peut être construit " "sur la plupart des installations de Debian. L'environnement propre est " "réalisé à travers une image de base ne contenant qu'un minimum de paquets." # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:40 msgid "" "The Debian distribution consists of free software accompanied with source. " "The source code within Debian's \"main\" section must build within Debian " "\"main\", with only the explicitly specified build-dependencies installed." msgstr "" "La distribution Debian est constituée de logiciels libres accompagnés des " "sources. Tous les codes sources dans la section \"main\" de Debian doivent " "être construits uniquement à l'aide des dépendances sources explicitement " "spécifiées et contenues également dans la section \"main\"." # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:48 msgid "" "The primary aim of <command>pbuilder</command> is different from other auto-" "building systems in Debian in that its aim is not to try to build as many " "packages as possible. It does not try to guess what a package needs, and in " "most cases it tries the worst choice of all if there is a choice to be made." msgstr "" "L'objectif principal de <command>pbuilder</command> est différent de celui " "des autres systèmes de construction automatique dans Debian dans le sens où " "il ne s'agit pas de construire le maximum de paquets possible. Les paquets " "nécessaires ne sont pas devinés et quand un choix est nécessaire, c'est le " "plus souvent le plus mauvais choix qui est sélectionné." # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:56 msgid "" "In this way, <command>pbuilder</command> tries to ensure that packages " "tested against <command>pbuilder</command> will build properly in most " "Debian installations, hopefully resulting in a good overall Debian source-" "buildability." msgstr "" "De cette façon, <command>pbuilder</command> tente de garantir que les " "paquets construits à travers <command>pbuilder</command> se construiront " "certainement correctement sur la plupart des installations de Debian " "permettant ainsi d'obtenir la capacité de construire Debian à partir des " "sources." # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:63 msgid "" "The goal of making Debian buildable from source is somewhat accomplished, " "and has seen good progress. In the past age of Debian 3.0, there were many " "problems when building from source. More recent versions of Debian is much " "better." msgstr "" "La possibilité de construire Debian à partir des sources est désormais " "quasiment acquis et a vu beaucoup de progrès. À l'époque de Debian 3.0, de " "nombreux problèmes pouvaient survenir en construisant Debian depuis les " "sources. Depuis, les choses se sont grandemment améliorées." # type: Content of: <book><chapter><title> #. type: Content of: <book><chapter><title> #: pbuilder-doc.xml:71 msgid "Using pbuilder" msgstr "Utilisation de pbuilder" # type: Content of: <book><chapter><para> #. type: Content of: <book><chapter><para> #: pbuilder-doc.xml:73 msgid "" "There are several simple commands for operation. <command>pbuilder create</" "command>, <command>pbuilder update</command>, and <command>pbuilder build</" "command> commands are the typical commands used. Let us look at the " "commands one by one." msgstr "" "Pour être opérationnel, il existe plusieurs commandes simples. " "<command>pbuilder create</command>, <command>pbuilder update</command> et " "<command>pbuilder build</command> sont les commandes les plus couramment " "utilisées. Regardons chacune de ces commandes." # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:80 msgid "Creating a base chroot image tar-ball" msgstr "Création de l'image de base" # type: Content of: <book><chapter><sect1><para><command> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:82 #, fuzzy msgid "" "<command>pbuilder create</command> will create a base chroot image tar-ball " "(base.tgz). All other commands will operate on the resulting base.tgz If " "the Debian release to be created within chroot is not going to be \"sid" "\" (which is the default), the distribution code-name needs to be specified " "with the <command><option>--distribution</option></command> command-line " "option." msgstr "" "<command>pbuilder create</command> permet de créer une archive tar contenant " "l'image de base (base.tgz). Toutes les autres commandes se baseront sur le " "fichier base.tgz ainsi obtenu. Si la version de Debian à utiliser pour " "l'image de base n'est pas « sid » (valeur par défaut), le nom de code de la " "version doit être spécifié à l'aide de l'option <command>" # type: Content of: <book><chapter><sect1><para><footnote><para> #. type: Content of: <book><chapter><sect1><para><footnote><para> #: pbuilder-doc.xml:94 msgid "debootstrap or cdebootstrap can be chosen" msgstr "il est possible de choisir debootstrap ou cdebootstrap" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:93 #, fuzzy msgid "" "<command>debootstrap</command> <placeholder type=\"footnote\" id=\"0\"/> is " "used to create the bare minimum Debian installation, and then build-" "essential packages are installed on top of the minimum installation using " "<command>apt-get</command> inside the chroot." msgstr "" "</footnote> est utilisé pour créer une installation minimale de Debian. Les " "paquets essentiels à la construction des paquets sont ensuite installés par-" "dessus cette installation minimale en utilisant <command>apt-get</command> à " "l'intérieur de l'environnement." # type: Content of: <book><chapter><sect1><para><footnote><para> #. type: Content of: <book><chapter><sect1><para><footnote><para> #: pbuilder-doc.xml:109 msgid "" "The mirror site should preferably be a local mirror or a cache server, so as " "not to overload the public mirrors with a lot of access. Use of tools such " "as apt-proxy would be advisable." msgstr "" "Il est préférable d'utiliser un miroir local ou un serveur cache afin de ne " "pas surcharger les miroirs publics avec un très grand nombre d'accès. " "L'utilisation d'outils tels que apt-proxy est conseillée." # type: Content of: <book><chapter><sect1><para><footnote> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:103 #, fuzzy msgid "" "For fuller documentation of command-line options, see the pbuilder.8 manual " "page. Some configuration will be required for <filename>/etc/pbuilderrc</" "filename> for the mirror site <placeholder type=\"footnote\" id=\"0\"/> to " "use, and proxy configuration may be required to allow access through HTTP. " "See the pbuilderrc.5 manual page for details." msgstr "" "Pour une documentation plus complète des options disponibles en ligne de " "commande, référez-vous à la page de manuel pbuilder.8. Il sera également " "nécessaire de renseigner le fichier <filename>/etc/pbuilderrc</filename> " "afin d'indiquer le miroir à utiliser <footnote>" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:122 msgid "Updating the base.tgz" msgstr "Mettre à jour le fichier base.tgz" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:123 #, fuzzy #| msgid "" #| "<command>pbuilder update</command> will update the base.tgz. It will " #| "extract the chroot, invoke <command>apt-get update</command> and " #| "<command>apt-get dist-upgrade</command> inside the chroot, and then " #| "recreate the base.tgz (the base tar-ball.)" msgid "" "<command>pbuilder update</command> will update the base.tgz. It will " "extract the chroot, invoke <command>apt-get update</command> and " "<command>apt-get dist-upgrade</command> inside the chroot, and then recreate " "the base.tgz (the base tar-ball)." msgstr "" "<command>pbuilder update</command> permet de mettre à jour le fichier base." "tgz. Le contenu de ce dernier sera extrait, <command>apt-get update</" "command> et <command>apt-get dist-upgrade</command> seront invoqués à " "l'intérieur de l'environnement obtenu et le fichier base.tgz sera recréé." # type: Content of: <book><chapter><sect1><para><footnote><para> #. type: Content of: <book><chapter><sect1><para><footnote><para> #: pbuilder-doc.xml:135 msgid "" "Only upgrading is supported. Debian does not generally support downgrading " "(yet?)." msgstr "" "Seule une mise à jour est possible : Debian ne supporte pas (encore ?) les " "retours en arrière." #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:130 msgid "" "It is possible to switch the distribution which the base.tgz is targeted at " "at this point. Specify <command><option>--distribution <parameter>sid</" "parameter></option> <option>--override-config</option></command> to change " "the distribution to sid. <placeholder type=\"footnote\" id=\"0\"/>" msgstr "" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:140 pbuilder-doc.xml:172 msgid "" "For fuller documentation of command-line options, see the pbuilder.8 manual " "page" msgstr "" "Pour une documentation plus complète des options disponibles, référez-vous à " "la page de manuel pbuilder.8." # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:145 msgid "Building a package using the base.tgz" msgstr "Construire un paquet en utilisant le fichier base.tgz" # type: Content of: <book><chapter><sect1><para><command> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:147 #, fuzzy msgid "" "To build a package inside the chroot, invoke <command>pbuilder build " "<option>whatever.dsc</option></command>. <command>pbuilder</command> will " "extract the base.tgz to a temporary working directory, enter the directory " "with chroot, satisfy the build-dependencies inside chroot, and build the " "package. The built packages will be moved to a directory specified with the " "<command><option>--buildresult</option></command> command-line option." msgstr "" "</command>. <command>pbuilder</command> va alors extraire le fichier base." "tgz dans un répertoire temporaire, se placer dans cet environnement de base, " "satisfaire l'ensemble des dépendances nécessaires à la construction du " "paquet pour construire ce dernier. Les paquets obtenus seront déplacés dans " "le répertoire indiqué à l'aide de <command>" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:160 #, fuzzy msgid "" "The <command><option>--basetgz</option></command> option can be used to " "specify which base.tgz to use." msgstr "</command> permet d'indiquer quel fichier base.tgz utiliser." # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:164 msgid "" "<command>pbuilder</command> will extract a fresh base chroot image from base." "tgz. (base.tgz is created with <command>pbuilder create</command>, and " "updated with <command>pbuilder update</command>). The chroot is populated " "with build-dependencies by parsing debian/control and invoking <command>apt-" "get</command>." msgstr "" "<command>pbuilder</command> va extraire un environnement de base du fichier " "base.tgz. (base.tgz est créé à l'aide de <command>pbuilder create</command> " "et mis à jour avec <command>pbuilder update</command>.) Le fichier debian/" "control est analysé afin de déterminer les dépendances à installer avec " "<command>apt-get</command>." # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:177 msgid "Facilitating Debian Developers' typing, pdebuild" msgstr "pdebuild ou comment éviter d'en taper trop" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:179 msgid "" "<command>pdebuild</command> is a little wrapper script that does the most " "frequent of all tasks. A Debian Developer may try to do <command>debuild</" "command>, and build a package, inside a Debian source directory. " "<command>pdebuild</command> will allow similar control, and allow package to " "be built inside the chroot, to check that the current source tree will build " "happily inside the chroot." msgstr "" "<command>pdebuild</command> est un petit script qui permet d'effectuer les " "tâches les plus fréquentes. Pour construire un paquet, un développeur Debian " "peut utiliser <command>debuild</command> dans un répertoire source Debian. " "<command>pdebuild</command> utilise un principe similaire et permet de " "construire un paquet dans l'environnement de base et de vérifier ainsi que " "le code source actuel se construit sans problème dans celui-ci." # type: Content of: <book><chapter><sect1><para><command> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:189 #, fuzzy msgid "" "<command>pdebuild</command> calls <command>dpkg-source</command> to build " "the source packages, and then invokes <command>pbuilder</command> on the " "resulting source package. However, unlike debuild, the resulting deb files " "will be found in the <command><option>--buildresult</option></command> " "directory." msgstr "" "<command>pdebuild</command> appelle <command>dpkg-source</command> pour " "construire les paquets sources puis utilise <command>pbuilder</command> sur " "le paquet source obtenu. Toutefois, contrairement à debuild, les fichiers " "deb obtenus se trouveront dans le répertoire spécifié par <command>" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:197 msgid "See the pdebuild.1 manual page for more details." msgstr "Référez-vous à la page de manuel pdebuild.1 pour plus de détails." # type: Content of: <book><chapter><sect1><para><command> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:200 #, fuzzy msgid "" "There is a slightly different mode of operation available in " "<command>pdebuild</command> since version 0.97. <command>pdebuild</command> " "usually runs <command>debian/rules clean</command> outside of the chroot; " "however, it is possible to change the behavior to run it inside the chroot " "with the <command><option>--use-pdebuild-internal</option></command>. It " "will try to bind mount the working directory inside chroot, and run " "<command>dpkg-buildpackage</command> inside. It has the following " "characteristics, and is not yet the default mode of operation." msgstr "" "Depuis la version 0.97, <command>pdebuild</command> dispose d'un mode " "d'opération légèrement différent. <command>pdebuild</command> utilise " "normalement <command>debian/rules clean</command> à l'extérieur de " "l'environnement de base ; toutefois, il est possible de modifier ce " "comportement pour lancer cette commande dans l'environnement de base en " "utilisant l'option <command>" # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:214 msgid "" "Satisfies build-dependency inside the chroot before creating source " "package. (which is a good point that default <command>pdebuild</command> " "could not do)." msgstr "" "Les dépendances de construction sont satisfaites à l'intérieur de " "l'environnement de base avant de créer le paquet source. Bien que ce soit un " "bon comportement, <command>pdebuild</command> ne l'effectue pas par défaut." # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:219 msgid "The working directory is modified from inside the chroot." msgstr "Le répertoire de travail est modifié depuis l'environnement de base." # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:223 msgid "" "Building with <command>pdebuild</command> does not guarantee that it works " "with <command>pbuilder</command>." msgstr "" "Construire en utilisant <command>pdebuild</command> ne garantit pas que cela " "fonctionnera également avec <command>pbuilder</command>." # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:227 msgid "" "If making the source package fails, the session using the chroot is wasted " "(chroot creation takes a bit of time, which should be improved with " "cowdancer)." msgstr "" "Si la construction du paquet source ne réussit pas, la session utilisant " "l'environnement de base est gâchée (la création de cet environnement prend " "un peu de temps, ce qui peut être amélioré en utilisant cowdancer)." # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para><command> #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:232 #, fuzzy msgid "" "Does not work in the same manner as it used to; for example, " "<command><option>--buildresult</option></command> does not have any effect." msgstr "" "Le comportement est différent de la méthode traditionnelle. Par exemple, " "<command>" # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:237 msgid "The build inside chroot is ran with the current user outside chroot." msgstr "" "La construction dans l'environnement de base utilise le même utilisateur " "qu'en dehors de celui-ci." # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:243 msgid "Configuration Files" msgstr "Fichiers de configuration" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:245 msgid "" "It is possible to specify all settings by command-line options. However, for " "typing convenience, it is possible to use a configuration file." msgstr "" "Il est possible de spécifier tous les paramètres en utilisant les options en " "ligne de commande. Toutefois, afin d'éviter de retaper celles-ci chaque " "fois, il est possible d'utiliser un fichier de configuration." # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:250 msgid "" "<filename>/etc/pbuilderrc</filename> and <filename>${HOME}/.pbuilderrc</" "filename> are read in when <command>pbuilder</command> is invoked. The " "possible options are documented in the pbuilderrc.5 manual page." msgstr "" "<filename>/etc/pbuilderrc</filename> et <filename>${HOME}/.pbuilderrc</" "filename> sont lus lors de l'utilisation de <command>pbuilder</command>. Les " "options possibles sont documentées dans la page de manuel pbuilderrc.5." # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:257 #, fuzzy msgid "" "It is useful to use <option>--configfile</option> option to load up a preset " "configuration file when switching between configuration files for different " "distributions." msgstr "" "pour charger un fichier de configuration particulier et jongler entre les " "différentes distributions." #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:262 msgid "" "Please note <filename>${HOME}/.pbuilderrc</filename> supersede system " "settings. Caveats is that if you have some configuration, you may need to " "tweak the configuration to work with new versions of pbuilder when upgrading." msgstr "" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:269 msgid "Building packages as non-root inside the chroot" msgstr "Construire des paquets sans être root dans l'environnement de base" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:271 #, fuzzy #| msgid "" #| "<command>pbuilder</command> requires full root privilege when it is " #| "satisfying the build-dependencies, but most packages do not need root " #| "privilege to build, or even refused to build when they are built as " #| "root. <command>pbuilder </command> can create a user which is only used " #| "inside <command>pbuilder </command> and use that user id when building, " #| "and use the <command>fakeroot</command> command when root privilege is " #| "required." msgid "" "<command>pbuilder</command> requires full root privilege when it is " "satisfying the build-dependencies, but most packages do not need root " "privilege to build, or even refused to build when they are built as root. " "<command>pbuilder</command> can create a user which is only used inside " "<command>pbuilder</command> and use that user id when building, and use the " "<command>fakeroot</command> command when root privilege is required." msgstr "" "<command>pbuilder</command> nécessite les privilèges du super-utilisateur " "pour satisfaire les dépendances de compilation mais la plupart des paquets " "n'ont pas besoin de ces privilèges pour se construire, voire peuvent refuser " "de se construire. <command>pbuilder</command> peut créer un utilisateur qui " "sera utilisé uniquement pour <command>pbuilder</command> et effectuer la " "construction des paquets sous cette identité. <command>fakeroot</command> " "sera utilisé lorsque les privilèges du super-utilisateur seront requis." # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:280 msgid "" "BUILDUSERID configuration option should be set to a value for a user id that " "does not already exist on the system, so that it is more difficult for " "packages that are being built with <command>pbuilder</command> to affect the " "environment outside the chroot. When BUILDUSERNAME configuration option is " "also set, <command>pbuilder</command> will use the specified user name and " "fakeroot for building packages, instead of running as root inside chroot." msgstr "" "L'option de configuration BUILDUSERID doit correspondre à la valeur d'un " "identifiant utilisateur n'existant pas encore sur le système de façon à ce " "qu'il soit plus difficile pour les paquets construits avec " "<command>pbuilder</command> d'affecter le système en dehors de " "l'environnement de base. Quand l'option de configuration BUILDUSERNAME est " "aussi renseignée, <command>pbuilder</command> utilisera le nom d'utilisateur " "indiqué et fakeroot pour construire les paquets plutôt que d'être root dans " "l'environnement de base." # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:289 msgid "" "Even when using the fakerooting method, <command>pbuilder</command> will run " "with root privilege when it is required. For example, when installing " "packages to the chroot, <command>pbuilder</command> will run under root " "privilege." msgstr "" "Même en utilisant ces options, <command>pbuilder</command> utilisera les " "privilèges du super-utilisateur quand ils seront réellement nécessaires, par " "exemple quand il doit installer des paquets dans l'environnement de base." # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:295 msgid "" "To be able to invoke <command>pbuilder</command> without being root, you " "need to use user-mode-linux, as explained in <xref linkend=\"pbuilder-uml\"/" ">." msgstr "" "Pour pouvoir utiliser <command>pbuilder</command> sans être root, vous devez " "utiliser user-mode-linux comme expliqué dans <xref linkend=\"pbuilder-uml\"/>" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:301 msgid "Using pbuilder for back-porting" msgstr "Utiliser pbuilder pour les rétroportages" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:303 msgid "" "<command>pbuilder</command> can be used for back-porting software from the " "latest Debian distribution to the older stable distribution, by using a " "chroot that contains an image of the older distribution, and building " "packages inside the chroot. There are several points to consider, and due " "to the following reasons, automatic back-porting is usually not possible, " "and manual interaction is required:" msgstr "" "<command>pbuilder</command> peut être utilisé pour rétroporter des logiciels " "de la dernière distribution Debian vers une version stable plus ancienne en " "utilisant une image de base de l'ancienne distribution et en construisant " "les paquets dans celle-ci. Il y a plusieurs points à considérer et, en " "raison de ceux-ci, le rétroportage automatique n'est généralement pas " "possible et une intervention manuelle est requise :" # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:314 msgid "" "The package from the unstable distribution may depend on packages or " "versions of packages which are only available in unstable. Thus, it may not " "be possible to satisfy Build-Depends: on stable (without additional " "backporting work)." msgstr "" "Le paquet de la distribution « unstable » peut dépendre de paquets ou de " "versions de paquets qui sont disponibles uniquement dans « unstable ». Il " "peut donc être impossible de satisfaire les dépendances de construction dans " "« stable » (sans travail supplémentaire)." # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:321 msgid "" "The stable distribution may have bugs that have been fixed in unstable which " "need to be worked around." msgstr "" "La distribution « stable » peut contenir des bugs qui ont été corrigés dans " "« unstable » et qui ont besoin d'être contournés." # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:324 msgid "" "The package in the unstable distribution may have problems building even on " "unstable." msgstr "" "Le paquet dans « unstable » peut avoir des problèmes de construction, y " "compris dans « unstable »." # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:330 msgid "Mass-building packages" msgstr "Construction des paquets en grand nombre" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:332 msgid "" "<command>pbuilder</command> can be automated, because its operations are non-" "interactive. It is possible to run <command>pbuilder</command> through " "multiple packages non-interactively. Several such scripts are known to " "exist. Junichi Uekawa has been running such a script since 2001, and has " "been filing bugs on packages that fail the test of <command>pbuilder</" "command>. There were several problems with auto-building:" msgstr "" "<command>pbuilder</command> peut être automatisé car le processus ne " "nécessite pas d'interactions. Il est possible d'exécuter <command>pbuilder</" "command> sur plusieurs paquets de manière non interactive. Plusieurs scripts " "destinés à cet usage existent. Junichi Uekawa utilise un tel script depuis " "2001 et a envoyé des rapports de bugs pour les paquets qui n'ont pas pu être " "construits avec <command>pbuilder</command>. Plusieurs problèmes existent " "avec la construction automatique :" # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:343 msgid "" "Build-Dependencies need to install non-interactively, but some packages are " "so broken that they cannot install without interaction (like postgresql)." msgstr "" "Les dépendances à la construction doivent s'installer sans nécessiter " "d'interactions. Cependant, certains paquets ne peuvent pas s'installer sans " "interaction (postgresql par exemple)." # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:348 msgid "" "When a library package breaks, or gcc/gcj/g++ breaks, or even bison, a large " "number of build failures are reported. (gcj-3.0 which had no \"javac\", " "bison which got more strict, etc.)" msgstr "" "Quand une bibliothèque est cassée ou qu'un problème survient sur gcc/gcj/g++ " "ou même bison, un très grand nombre d'échecs sont signalés (gcj-3.0 qui n'a " "pas de commande \"javac\", bison qui devient plus strict, etc.)." # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:354 msgid "Some people were quite hostile against build failure reports." msgstr "" "Certaines personnes sont particulièrement hostiles vis-à-vis des rapports " "d'échecs de construction à partir des sources." # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:358 msgid "" "Most of the initial bugs have been resolved in the <command>pbuilder</" "command> sweep done around 2002, but these transitional problems which " "affect a large portion of Debian Archive do arise from time to time. " "Regression tests have their values." msgstr "" "La plupart des bugs présents initialement dans <command>pbuilder</command> " "ont été résolus autour de 2002 mais ces problèmes transitionnels qui " "affectent une grande partie de l'archive Debian apparaissent de temps en " "temps. Les tests de régression sont alors utiles." # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:364 msgid "" "A script that was used by Junichi Uekawa in the initial run is now included " "in the <command>pbuilder</command> distribution, as <command>pbuildd.sh</" "command>. It is available in <filename>/usr/share/doc/pbuilder/examples/" "pbuildd/</filename> and its configuration is in <filename>/etc/pbuilder/" "pbuildd-config.sh</filename>. It should be easy enough to set up for people " "who are used to <command>pbuilder</command>. It has been running for quite a " "while, and it should be possible to set the application up on your system " "also. This version of the code is not the most tested, but should function " "as a starter." msgstr "" "Un script qui était utilisé par Junichi Uekawa est désormais inclus dans la " "distribution de <command>pbuilder</command> sous le nom <command>pbuildd.sh</" "command>. Il est disponible dans <filename>/usr/share/doc/pbuilder/examples/" "pbuildd/</filename> et son fichier de configuration est <filename>/etc/" "pbuilder/pbuildd-config.sh</filename>. Les personnes qui sont habituées à " "<command>pbuilder</command> devraient facilement pouvoir l'utiliser. Il " "existe depuis un certain temps et vous devriez aussi pouvoir l'utiliser sur " "votre système. Cette version n'est pas la mieux testée mais devrait pouvoir " "servir de base." # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:374 msgid "To set up pbuildd, there are some points to be aware of." msgstr "" "Pour configurer pbuildd, vous devez prendre en considération un certain " "nombre de points." # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:378 msgid "" "A file <filename>./avoidlist</filename> needs to be available with the list " "of packages to avoid building." msgstr "" "Un fichier <filename>./avoidlist</filename> doit contenir la liste des " "paquets qu'il ne faut pas construire." # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:381 msgid "" "It will try building anything, even packages which are not aimed for your " "architecture." msgstr "" "Il essaiera de construire absolument tout, y compris les paquets qui ne sont " "pas destinés à votre architecture." # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:385 msgid "" "Because you are running random build scripts, it is better to use the " "fakeroot option of <command>pbuilder</command>, to avoid running the build " "under root privilege." msgstr "" "Parce que vous allez exécuter un certain nombre de scripts de construction, " "utilisez l'option fakeroot de <command>pbuilder</command> plutôt que de " "l'exécuter avec les privilèges du super-utilisateur." # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:390 msgid "" "Because not all builds are guaranteed to finish in a finite time, setting a " "timeout is probably necessary, or pbuildd may stall with a bad build." msgstr "" "Parce qu'il n'est pas garanti que toutes les constructions se finiront en un " "temps fini, placer une limite temporelle sur l'exécution est sans doute " "nécessaire. Dans le cas contraire, pbuildd peut rester indéfiniment sur un " "mauvais paquet." # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:396 msgid "" "Some packages require a lot of disk space, around 2GB seems to be sufficient " "for the largest packages for the time being. If you find otherwise, please " "inform the maintainer of this documentation." msgstr "" "Certains paquets nécessitent beaucoup d'espace disque. Environ 2 Go sont " "actuellement suffisants pour les paquets les plus gros. Si vous trouvez des " "contre-exemples, informez-en le mainteneur de cette documentation." # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:404 msgid "Auto-backporting scripts" msgstr "Scripts de rétroportage automatique" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:406 msgid "" "There are some people who use <command>pbuilder</command> to automatically " "back-port a subset of packages to the stable distribution." msgstr "" "Certaines personnes utilisent <command>pbuilder</command> pour rétroporter " "automatiquement un sous-ensemble de paquets vers la distribution stable." # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:410 msgid "" "I would like some information on how people are doing it, I would appreciate " "any feedback or information on how you are doing, or any examples." msgstr "" "Je souhaiterais obtenir quelques informations sur la façon de faire. Un " "retour sur le sujet ou des exemples seraient appréciés." # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:416 msgid "Using pbuilder for automated testing of packages" msgstr "Utiliser pbuilder pour tester automatiquement les paquets" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:418 msgid "" "<command>pbuilder</command> can be used for automated testing of packages. " "It has the feature of allowing hooks to be placed, and these hooks can try " "to install packages inside the chroot, or run them, or whatever else that " "can be done. Some known tests and ideas:" msgstr "" "<command>pbuilder</command> peut être utilisé pour tester automatiquement " "les paquets. Il est possible de définir des crochets qui vont essayer " "d'installer le paquet dans l'image de base, les exécuter ou toute autre " "action. Voici quelques pistes :" # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:426 #, fuzzy #| msgid "" #| "Automatic install-remove-upgrade-remove-install-purge-upgrade-purge test-" #| "suite (distributed as an example, <filename>B91dpkg-i</filename>), or " #| "just check that everything installs somewhat " #| "(<filename>execute_installtest.sh</filename>)." msgid "" "Automatic install-remove-install-purge-upgrade-remove-upgrade-purge test-" "suite (distributed as an example, <filename>B91dpkg-i</filename>), or just " "check that everything installs somewhat (<filename>execute_installtest.sh</" "filename>)." msgstr "" "Tester automatiquement la séquence install-remove-upgrade-remove-install-" "purge-upgrade-purge test-suite (un exemple est fourni : <filename>B91dpkg-i</" "filename>) ou juste vérifier que quelque chose est effectivement installé " "(<filename>execute_installtest.sh</filename>)." # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:431 msgid "" "Automatically running lintian (distributed as an example in <filename>/usr/" "share/doc/pbuilder/examples/B90lintian</filename>)." msgstr "" "Lancer automatiquement lintian. Un exemple est fourni dans <filename>/usr/" "share/doc/pbuilder/examples/B90lintian</filename>)." # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:435 msgid "" "Automatic debian-test of the package? The debian-test package has been " "removed from Debian. A <command>pbuilder</command> implementation can be " "found as debian/pbuilder-test directory, implemented through B92test-pkg " "script." msgstr "" "Utiliser automatiquement debian-test sur le paquet. Le paquet debian-test a " "été retiré de Debian. Vous pouvez trouver dans le répertoire " "<filename>debian/pbuilder-test</filename> une implémentation pour " "<command>pbuilder</command> à travers le script B92test-pkg." # type: Content of: <book><chapter><sect1><para><footnote><para> #. type: Content of: <book><chapter><sect1><para><footnote><para> #: pbuilder-doc.xml:444 msgid "" "It is possible to specify <command>--hookdir /usr/share/doc/pbuilder/" "examples</command> command-line option to include all example hooks as well." msgstr "" "Il est possible d'utiliser l'option <command>--hookdir /usr/share/doc/" "pbuilder/examples</command> pour inclure tous les crochets donnés en exemple." # type: Content of: <book><chapter><sect1><para><footnote><para> #. type: Content of: <book><chapter><sect1><para><footnote><para> #: pbuilder-doc.xml:452 msgid "See run-parts(8). For example, no '.' in file names!" msgstr "" "Voyez run-parts(8). Par exemple, n'utilisez pas '.' dans les noms de " "fichiers !" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:442 #, fuzzy msgid "" "To use B92test-pkg script, first, add it to your hook directory. " "<placeholder type=\"footnote\" id=\"0\"/>. The test files are shell scripts " "placed in <filename>debian/pbuilder-test/NN_name</filename> (where NN is a " "number) following run-parts standard<placeholder type=\"footnote\" id=\"1\"/" "> for file names. After a successful build, packages are first tested for " "installation and removal, and then each test is ran inside the chroot. The " "current directory is the top directory of the source-code. This means you " "can expect to be able to use ./debian/ directory from inside your scripts." msgstr "" "</footnote> pour les noms de fichiers. Après une construction réussie, les " "paquets sont d'abord testés en les installant et en les retirant puis chaque " "test est exécuté dans l'image de base. Le répertoire courant est le " "répertoire contenant les sources. Cela signifie que vous pouvez vous " "attendre à pouvoir utiliser le répertoire ./debian/ depuis vos scripts." # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:463 #, fuzzy #| msgid "" #| "Example scripts for use with pbuilder-test can be found in <filename>/usr/" #| "share/doc/pbuilder/examples/pbuilder-test</filename>" msgid "" "Example scripts for use with pbuilder-test can be found in <filename>/usr/" "share/doc/pbuilder/examples/pbuilder-test</filename>." msgstr "" "Des scripts d'exemples pour pbuilder-test ont été placés dans <filename>/usr/" "share/doc/pbuilder/examples/pbuilder-test</filename>" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:468 msgid "Using pbuilder for testing builds with alternate compilers" msgstr "" "Utiliser pbuilder pour tester la construction en utilisant d'autres " "compilateurs" # type: Content of: <book><chapter><sect1><para><screen> #. type: Content of: <book><chapter><sect1><para><screen> #: pbuilder-doc.xml:484 #, fuzzy, no-wrap msgid "" "EXTRAPACKAGES=\"pentium-builder gcc-3.2 g++-3.2\"\n" "export DEBIAN_BUILDARCH=athlon\n" "export DEBIAN_BUILDGCCVER=3.2" msgstr "" "EXTRAPACKAGES=\"pentium-builder gcc-3.2 g++-3.2\"\n" "export DEBIAN_BUILDARCH=athlon\n" "export DEBIAN_BUILDGCCVER=3.2" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:470 #, fuzzy msgid "" "Most packages are compiled with <command>gcc</command> or <command>g++</" "command> and using the default compiler version, which was gcc 2.95 for " "Debian GNU/Linux 3.0 (i386). However, Debian 3.0 was distributed with other " "compilers, under package names such as <command>gcc-3.2</command> for gcc " "compiler version 3.2. It was therefore possible to try compiling packages " "against different compiler versions. <command>pentium-builder</command> " "provides an infrastructure for using a different compiler for building " "packages than the default gcc, by providing a wrapper script called gcc " "which calls the real gcc. To use <command>pentium-builder</command> in " "<command>pbuilder</command>, it is possible to set up the following in the " "configuration: <placeholder type=\"screen\" id=\"0\"/>" msgstr "" "La plupart des paquets sont compilés à l'aide de <command>gcc</command> ou " "<command>g++</command> et en utilisant la version par défaut du compilateur, " "c'est-à-dire gcc 2.95 pour Debian GNU/Linux 3.0 (i386). Toutefois, Debian " "3.0 contenait d'autres compilateurs dans des paquets comme <command>gcc-3.2</" "command> pour le compilateur gcc version 3.2. Il était donc possible " "d'essayer de compiler des paquets avec des versions différentes des " "compilateurs. <command>pentium-builder</command> fournit une infrastructure " "pour utiliser un compilateur autre que gcc pour construire les paquets en " "fournissant un script appelé gcc et appelant le véritable gcc. Pour utiliser " "<command>pentium-builder</command> avec <command>pbuilder</command>, il " "suffit d'ajouter les lignes suivantes dans la configuration :" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:489 msgid "" "It will instruct <command>pbuilder</command> to install the <command>pentium-" "builder</command> package and also the GCC 3.2 compiler packages inside the " "chroot, and set the environment variables required for <command>pentium-" "builder</command> to function." msgstr "" "Cela indique à <command>pbuilder</command> d'installer le paquet " "<command>pentium-builder</command> ainsi que le compilateur GCC 3.2 dans " "l'image de base puis de renseigner les variables d'environnement nécessaires " "pour faire fonctionner <command>pentium-builder</command>." # type: Content of: <book><chapter><title> #. type: Content of: <book><chapter><title> #: pbuilder-doc.xml:497 msgid "Using User-mode-linux with pbuilder" msgstr "Utiliser User-mode-linux avec pbuilder" # type: Content of: <book><chapter><para> #. type: Content of: <book><chapter><para> #: pbuilder-doc.xml:499 msgid "" "It is possible to use user-mode-linux by invoking <command>pbuilder-user-" "mode-linux</command> instead of <command>pbuilder</command>. " "<command>pbuilder-user-mode-linux</command> doesn't require root privileges, " "and it uses the copy-on-write (COW) disk access method of <command>User-mode-" "linux</command> which typically makes it much faster than the traditional " "<command>pbuilder</command>." msgstr "" "Il est possible d'utiliser user-mode-linux en invoquant <command>pbuilder-" "user-mode-linux</command> plutôt que <command>pbuilder</command>. " "<command>pbuilder-user-mode-linux</command> ne nécessite pas les privilèges " "du super-utilisateur et utilise la méthode <foreignphrase>copy-on-write (COW)" "</foreignphrase> ce qui la rend plus rapide que le traditionnel " "<command>pbuilder</command>." # type: Content of: <book><chapter><para> #. type: Content of: <book><chapter><para> #: pbuilder-doc.xml:509 msgid "" "<command>User-mode-linux</command> is a somewhat less proven platform than " "the standard Unix tools which <command>pbuilder</command> relies on " "(<command>chroot</command>, <command>tar</command>, and <command>gzip</" "command>) but mature enough to support <command>pbuilder-user-mode-linux</" "command> since its version 0.59. And since then, <command>pbuilder-user-" "mode-linux</command> has seen a rapid evolution." msgstr "" "<command>User-mode-linux</command> est une plateforme moins éprouvée que les " "outils standards sur lesquels reposent <command>pbuilder</command> " "((<command>chroot</command>, <command>tar</command>, et <command>gzip</" "command>) mais suffisamment mûre car présente depuis la version 0.59. " "Depuis, <command>pbuilder-user-mode-linux</command> a connu une évolution " "rapide." # type: Content of: <book><chapter><para> #. type: Content of: <book><chapter><para> #: pbuilder-doc.xml:520 msgid "" "The configuration of <command>pbuilder-user-mode-linux</command> goes in " "three steps:" msgstr "" "La configuration de <command>pbuilder-user-mode-linux</command> s'effectue " "en trois étapes :" # type: Content of: <book><chapter><para><itemizedlist><listitem><para> #. type: Content of: <book><chapter><para><itemizedlist><listitem><para> #: pbuilder-doc.xml:524 msgid "Configuration of user-mode-linux" msgstr "Configuration de user-mode-linux" # type: Content of: <book><chapter><para><itemizedlist><listitem><para> #. type: Content of: <book><chapter><para><itemizedlist><listitem><para> #: pbuilder-doc.xml:527 msgid "Configuration of rootstrap" msgstr "Configuration de rootstrap" # type: Content of: <book><chapter><para><itemizedlist><listitem><para> #. type: Content of: <book><chapter><para><itemizedlist><listitem><para> #: pbuilder-doc.xml:530 msgid "Configuration of pbuilder-uml" msgstr "Configuration de pbuilder-uml" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:535 msgid "Configuring user-mode-linux" msgstr "Configurer user-mode-linux" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:537 msgid "" "user-mode-linux isn't completely trivial to set up. It would probably be " "useful to acquaint yourself with it a bit before attempting to use " "<command>rootstrap</command> or <command>pbuilder-user-mode-linux</" "command>. For details, read <filename>/usr/share/doc/uml-utilities/README." "Debian</filename> and the <command>user-mode-linux</command> documentation. " "(It's in a separate package, user-mode-linux-doc.)" msgstr "" "user-mode-linux peut présenter quelques difficultés de configuration. Il est " "préférable de se familiariser avec avant de tenter d'utiliser " "<command>rootstrap</command> ou <command>pbuilder-user-mode-linux</command>. " "Pour plus de détails, reportez-vous au fichier <filename>/usr/share/doc/uml-" "utilities/README.Debian</filename> et à la documentation de <command>user-" "mode-linux</command> qui se trouve dans le paquet user-mode-linux-doc." # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:547 msgid "" "<command>user-mode-linux</command> requires the user to be in the uml-net " "group in order to configure the network unless you are using slirp." msgstr "" "<command>user-mode-linux</command> nécessite que l'utilisateur appartienne " "au groupe uml-net de façon à configurer le réseau, sauf si utilisez slirp." # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:552 msgid "" "If you compile your own kernel, you may want to verify that you enable TUN/" "TAP support, and you might want to consider the SKAS patch." msgstr "" "Si vous compilez votre propre noyau, vérifiez que le support de TUN/TAP est " "activé. Vous pouvez éventuellement appliquer le patch SKAS." # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:558 msgid "Configuring rootstrap" msgstr "Configurer rootstrap" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:560 msgid "" "<command>rootstrap</command> is a wrapper around debootstrap. It creates a " "Debian disk image for use with UML. To configure rootstrap, there are " "several requirements." msgstr "" "<command>rootstrap</command> est un utilitaire construit autour de " "debootstrap. Il crée une image disque de Debian destinée à être utilisée " "avec UML. Pour configurer rootstrap, il y a plusieurs prérequis." # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:567 msgid "Install the rootstrap package." msgstr "Installer le paquet rootstrap." # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para><screen> #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para><screen> #: pbuilder-doc.xml:573 #, no-wrap msgid "adduser dancer uml-net" msgstr "adduser dancer uml-net" # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:571 #, fuzzy msgid "" "TUN/TAP only: add the user to the uml-net group to allow access to the " "network <placeholder type=\"screen\" id=\"0\"/>" msgstr "" "Seulement pour utiliser TUN/TAP : ajouter l'utilisateur au groupe uml-net " "pour autoriser l'accès au réseau" # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:577 msgid "" "TUN/TAP only: Check that the kernel supports the TUN/TAP interface, or " "recompile the kernel if necessary." msgstr "" "Seulement pour utiliser TUN/TAP : vérifier que le noyau inclut l'interface " "TUN/TAP ou recompiler le noyau si nécessaire." # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para><screen> #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para><screen> #: pbuilder-doc.xml:588 #, fuzzy, no-wrap msgid "" "transport=tuntap\n" "interface=eth0\n" "gateway=192.168.1.1\n" "mirror=http://192.168.1.2:8081/debian\n" "host=192.168.1.198\n" "uml=192.168.1.199\n" "netmask=255.255.255.0" msgstr "" "transport=tuntap\n" "interface=eth0\n" "gateway=192.168.1.1\n" "mirror=http://192.168.1.2:8081/debian\n" "host=192.168.1.198\n" "uml=192.168.1.199\n" "netmask=255.255.255.0" # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:583 #, fuzzy msgid "" "Set up <filename>/etc/rootstrap/rootstrap.conf</filename>. For example, if " "the current host is 192.168.1.2, changing following entries to something " "like this seems to work. <placeholder type=\"screen\" id=\"0\"/> Some " "experimentation with configuration and running <command>rootstrap ~/test." "uml</command> to actually test it would be handy." msgstr "" "Configurer <filename>/etc/rootstrap/rootstrap.conf</filename>. Par exemple, " "si l'IP de l'hôte est 192.168.1.2, vous pouvez utiliser quelque chose comme " "cela :" # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:600 msgid "" "Using slirp requires less configuration. The default configuration comes " "with a working example." msgstr "" "Utiliser slirp nécessite moins de configuration. La configuration par défaut " "est livrée avec un exemple fonctionnel." # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:607 msgid "Configuring pbuilder-uml" msgstr "Configurer pbuilder-uml" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:609 msgid "The following needs to happen:" msgstr "Suivre les étapes suivantes :" # type: Content of: <book><chapter><sect1><para><itemizedlist><listitem><para> #. type: Content of: <book><chapter><sect1><para><itemizedlist><listitem><para> #: pbuilder-doc.xml:612 msgid "Install the pbuilder-uml package." msgstr "Installer le paquet pbuilder-uml." # type: Content of: <book><chapter><sect1><para><itemizedlist><listitem><para><screen> #. type: Content of: <book><chapter><sect1><para><itemizedlist><listitem><para><screen> #: pbuilder-doc.xml:620 #, fuzzy, no-wrap msgid "" "MY_ETH0=tuntap,,,192.168.1.198\n" "UML_IP=192.168.1.199\n" "UML_NETMASK=255.255.255.0\n" "UML_NETWORK=192.168.1.0\n" "UML_BROADCAST=255.255.255.255\n" "UML_GATEWAY=192.168.1.1\n" "PBUILDER_UML_IMAGE=\"/home/dancer/uml-image\"" msgstr "" "MY_ETH0=tuntap,,,192.168.1.198\n" "UML_IP=192.168.1.199\n" "UML_NETMASK=255.255.255.0\n" "UML_NETWORK=192.168.1.0\n" "UML_BROADCAST=255.255.255.255\n" "UML_GATEWAY=192.168.1.1\n" "PBUILDER_UML_IMAGE=\"/home/dancer/uml-image\"" # type: Content of: <book><chapter><sect1><para><itemizedlist><listitem><para> #. type: Content of: <book><chapter><sect1><para><itemizedlist><listitem><para> #: pbuilder-doc.xml:616 #, fuzzy msgid "" "Set up the configuration file <filename>/etc/pbuilder/pbuilder-uml.conf</" "filename> in the following manner. It will be different for slirp. " "<placeholder type=\"screen\" id=\"0\"/> Also, it needs to match the " "rootstrap configuration." msgstr "" "Configurer le fichier <filename>/etc/pbuilder/pbuilder-uml.conf</filename> " "de la façon suivante. Pour slirp, la configuration est différente." # type: Content of: <book><chapter><sect1><para><itemizedlist><listitem><para> #. type: Content of: <book><chapter><sect1><para><itemizedlist><listitem><para> #: pbuilder-doc.xml:632 msgid "" "Make sure BUILDPLACE is writable by the user. Change BUILDPLACE in the " "configuration file to a place where the user has access." msgstr "" "Assurez-vous que l'utilisateur a les droits pour écrire dans BUILDPLACE. " "Changez la valeur de BUILDPLACE dans le fichier de configuration pour un " "emplacement pour lequel l'utilisateur a les droits d'écriture." # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para><itemizedlist><listitem><para> #: pbuilder-doc.xml:638 #, fuzzy msgid "" "Run <command>pbuilder-user-mode-linux <option>create --distribution sid</" "option></command> to create the image." msgstr "" "<command>pbuilder-user-mode-linux</command> émule la plupart des " "fonctionnalités de <command>pbuilder</command> avec quelques différences." # type: Content of: <book><chapter><sect1><para><itemizedlist><listitem><para> #. type: Content of: <book><chapter><sect1><para><itemizedlist><listitem><para> #: pbuilder-doc.xml:641 msgid "Try running <command>pbuilder-user-mode-linux build</command>." msgstr "Essayez <command>pbuilder-user-mode-linux build</command>." # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:647 msgid "Considerations for running pbuilder-user-mode-linux" msgstr "Considérations pour exécuter pbuilder-user-mode-linux" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:649 msgid "" "<command>pbuilder-user-mode-linux</command> emulates most of " "<command>pbuilder</command>, but there are some differences." msgstr "" "<command>pbuilder-user-mode-linux</command> émule la plupart des " "fonctionnalités de <command>pbuilder</command> avec quelques différences." # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:655 msgid "" "<command>pbuilder-user-mode-linux</command> does not support all options of " "<command>pbuilder</command> properly yet. This is a problem, and will be " "addressed as specific areas are discovered." msgstr "" "<command>pbuilder-user-mode-linux</command> ne supporte pas encore " "correctement toutes les options de <command>pbuilder</command>. C'est un " "problème qui sera réglé au fur et à mesure." # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para><command> #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:662 #, fuzzy msgid "" "/tmp is handled differently inside <command>pbuilder-user-mode-linux</" "command>. In <command>pbuilder-user-mode-linux</command>, <filename>/tmp</" "filename> is mounted as tmpfs inside UML, so accessing files under " "<filename>/tmp</filename> from outside user-mode-linux does not work. It " "affects options like <command><option>--configfile</option></command>, and " "when trying to build packages placed under <filename>/tmp</filename>." msgstr "" "/tmp est utilisé différemment avec <command>pbuilder-user-mode-linux</" "command>. Avec <command>pbuilder-user-mode-linux</command>, <filename>/tmp</" "filename> est un point de montage tmpfs à l'intérieur de UML. Y accéder de " "l'extérieur de UML ne fonctionne donc pas. Cela affecte des options comme " "<command>" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:676 msgid "Parallel running of pbuilder-user-mode-linux" msgstr "Exécution en parallèle de pbuilder-user-mode-linux" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:678 msgid "" "To run <command>pbuilder-user-mode-linux</command> in parallel on a system, " "there are a few things to bear in mind." msgstr "" "Pour exécuter <command>pbuilder-user-mode-linux</command> en parallèle sur " "un système, un certain nombre de choses doivent être gardées à l'esprit." # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:683 msgid "" "The create and update methods must not be run when a build is in progress, " "or the COW file will be invalidated." msgstr "" "Les méthodes create et update ne doivent pas être exécutées lorsqu'un paquet " "est en cours de construction. Dans le cas contraire, le fichier COW sera " "corrompu." # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para><screen> #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para><screen> #: pbuilder-doc.xml:694 #, fuzzy, no-wrap msgid "" "for IP in 102 103 104 105; do\n" " xterm -e pbuilder-user-mode-linux build --uml-ip 192.168.0.$IP \\\n" " 20030107/whizzytex_1.1.1-1.dsc &\n" "done" msgstr "" "for IP in 102 103 104 105; do\n" " xterm -e pbuilder-user-mode-linux build --uml-ip 192.168.0.$IP \\\n" " 20030107/whizzytex_1.1.1-1.dsc &\n" "done" # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:688 #, fuzzy msgid "" "If you are not using slirp, user-mode-linux processes which are running in " "parallel need to have different IP addresses. Just trying to run the " "<command>pbuilder-user-mode-linux</command> several times will result in " "failure to access the network. But something like the following will work: " "<placeholder type=\"screen\" id=\"0\"/> When using slirp, this problem does " "not exist." msgstr "" "Si vous n'utilisez pas slirp, les processus user-mode-linux qui tournent en " "parallèle doivent chacun avoir une adresse IP différente. Lancer plusieurs " "fois <command>pbuilder-user-mode-linux</command> provoquera des erreurs " "d'accès au réseau mais quelque chose comme ceci fonctionnera :" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:704 msgid "" "Using pbuilder-user-mode-linux as a wrapper script to start up a virtual " "machine" msgstr "Utiliser pbuilder-user-mode-linux pour démarrer une machine virtuelle" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:706 msgid "" "It is possible to use <command>pbuilder-user-mode-linux</command> for other " "uses than just building Debian packages. <command>pbuilder-user-mode-linux " "<option>login</option></command> will let a user use a shell inside the user-" "mode-linux <command>pbuilder</command> base image, and <command>pbuilder-" "user-mode-linux <option>execute</option></command> will allow the user to " "execute a script inside the image." msgstr "" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:717 msgid "" "You can use the script to install ssh and add a new user, so that it is " "possible to access inside the user-mode-linux through ssh." msgstr "" "Vous pouvez utiliser un script pour installer ssh et ajouter un nouvel " "utilisateur ce qui permettra d'accéder à l'intérieur de user-mode-linux à " "l'aide de ssh." # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:721 msgid "" "Note that it is not possible to use a script from <filename>/tmp</filename> " "due to the way <command>pbuilder-user-mode-linux</command> mounts a tmpfs at " "<filename>/tmp</filename>." msgstr "" "Il n'est pas possible d'utiliser un script depuis <filename>/tmp</filename> " "en raison du fait que <command>pbuilder-user-mode-linux</command> monte un " "tmpfs sur <filename>/tmp</filename>." # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:727 msgid "" "The following example script may be useful in starting a sshd inside user-" "mode-linux." msgstr "" "Le script d'exemple suivant permet de démarrer sshd dans user-mode-linux." # type: Content of: <book><chapter><sect1><screen> #. type: Content of: <book><chapter><sect1><screen> #: pbuilder-doc.xml:731 #, fuzzy, no-wrap msgid "" "#!/bin/bash\n" "\n" "apt-get install -y ssh xbase-clients xterm\n" "echo \"enter root password\"\n" "passwd\n" "cp /etc/ssh/sshd_config{,-}\n" "sed 's/X11Forwarding.*/X11Forwarding yes/' /etc/ssh/sshd_config- > /etc/ssh/sshd_config\n" "\n" "/etc/init.d/ssh restart\n" "ifconfig\n" "echo \"Hit enter to finish\"\n" "read" msgstr "" "#!/bin/bash\n" "\n" "apt-get install -y ssh xbase-clients xterm\n" "echo \"enter root password\"\n" "passwd\n" "cp /etc/ssh/sshd_config{,-}\n" "sed 's/X11Forwarding.*/X11Forwarding yes/' /etc/ssh/sshd_config- > /etc/ssh/sshd_config\n" "\n" "/etc/init.d/ssh restart\n" "ifconfig\n" "echo \"Hit enter to finish\"\n" "read" # type: Content of: <book><chapter><title> #. type: Content of: <book><chapter><title> #: pbuilder-doc.xml:746 msgid "Frequently asked questions" msgstr "Questions fréquentes" # type: Content of: <book><chapter><para> #. type: Content of: <book><chapter><para> #: pbuilder-doc.xml:749 msgid "" "Here, known problems and frequently asked questions are documented. This " "portion was initially available in README.Debian file, but moved here." msgstr "" "Les problèmes fréquemment recontrés et les questions les plus courantes sont " "documentées ici. Cette portion était initialement disponible dans le fichier " "README.Debian mais a été déplacée ici." # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:754 msgid "pbuilder create fails" msgstr "Échec de <command>pbuilder create</command>" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:756 msgid "" "It often happens that <command>pbuilder</command> cannot create the latest " "chroot. Try upgrading <command>pbuilder</command> and debootstrap. It is " "currently only possible to create software that handles the past. Future " "prediction is a feature which may be added later after we have become " "comfortable with the past." msgstr "" "Il est fréquent que <command>pbuilder</command> ne parvienne pas à créer une " "image de base récente. Essayez de mettre à jour <command>pbuilder</command> " "et debootstrap. Pour le moment, il n'est possible de concevoir que des " "logiciels sachant prendre en compte le passé. Une fois que nous serons à " "l'aise avec le passé, nous pourrons nous concentrer sur les prévisions du " "futur." # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:763 msgid "" "There are people who occasionally back port debootstrap to stable versions; " "hunt for them." msgstr "" "Certaines personnes rétroportent de manière occasionnelle debootstrap pour " "les versions stables ; trouvez-les." # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:767 msgid "" "When there are errors with the debootstrap phase, the debootstrap script " "needs to be fixed. <command>pbuilder</command> does not provide a way to " "work around debootstrap." msgstr "" "Quand une erreur concerne la phase de debootstrap, c'est le script " "debootstrap qui doit être corrigé. <command>pbuilder</command> ne permet pas " "de pallier aux problèmes de debootstrap." # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:773 msgid "Directories that cannot be bind-mounted" msgstr "" "Les répertoires ne peuvent pas être rattachés (<foreignphrase>bind-mount</" "foreignphrase>)" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:775 msgid "" "Because of the way <command>pbuilder</command> works, there are several " "directories which cannot be bind-mounted when running <command>pbuilder</" "command>. The directories include <filename>/tmp</filename>, <filename>/var/" "cache/pbuilder</filename>, and system directories such as <filename>/etc</" "filename> and <filename>/usr</filename>. The recommendation is to use " "directories under the user's home directory for bind-mounts." msgstr "" "En raison du mode de fonctionnement de <command>pbuilder</command>, il y a " "plusieurs répertoires qui ne peuvent pas être rattachés lorsque " "<command>pbuilder</command> tourne. Ces répertoires incluent <filename>/tmp</" "filename>, <filename>/var/cache/pbuilder</filename> et des répertoires " "systèmes comme <filename>/etc</filename> et <filename>/usr</filename>. Il " "est recommandé de ne rattacher que des répertoires présents dans le dossier " "de l'utilisateur." # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:786 msgid "Logging in to pbuilder to investigate build failure" msgstr "Se logguer dans pbuilder pour déterminer les problèmes de construction" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:788 #, fuzzy #| msgid "" #| "It is possible to invoke a shell session after a build failure. Example " #| "hook script are provided as <filename>C10shell</filename> and " #| "<filename>C11screen</filename> scripts. C10shell script will start bash " #| "inside chroot, and C11screen script will start GNU screen inside the " #| "chroot." msgid "" "It is possible to invoke a shell session after a build failure. Example " "hook scripts are provided as <filename>C10shell</filename> and " "<filename>C11screen</filename> scripts. C10shell script will start bash " "inside chroot, and C11screen script will start GNU screen inside the chroot." msgstr "" "Il est possible d'obtenir un shell après un problème de construction. Des " "crochets d'exemple sont fournis sous les noms <filename>C10shell</filename> " "et <filename>C11screen</filename>. Le script C10shell lancera bash dans " "l'environnement de base tandis que C11screen utilisera GNU screen." # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:797 msgid "Logging in to pbuilder to modify the environment" msgstr "Se logguer dans pbuilder pour modifier l'environnement" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:799 msgid "" "It is sometimes necessary to modify the chroot environment. <command>login</" "command> will remove the contents of the chroot after logout. It is " "possible to invoke a shell using hook scripts. <command>pbuilder update</" "command> executes 'E' scripts, and a sample for invoking a shell is provided " "as <filename>C10shell</filename>." msgstr "" "Il est parfois nécessaire de modifier l'image de base. <command>login</" "command> supprimera toute modification après déconnexion. Il est possible de " "lancer un shell en utilisant les crochets. <command>pbuilder update</" "command> exécute les scripts commençant par 'E' et un exemple pour lancer un " "shell est fourni sous le nom <filename>C10shell</filename>." # type: Content of: <book><chapter><sect1><screen> #. type: Content of: <book><chapter><sect1><screen> #: pbuilder-doc.xml:807 #, fuzzy, no-wrap msgid "" "$ mkdir ~/loginhooks\n" "$ cp C10shell ~/loginhooks/E10shell\n" "$ sudo pbuilder update --hookdir ~/loginhooks/E10shell" msgstr "" "$ mkdir ~/loginhooks\n" "$ cp C10shell ~/loginhooks/E10shell\n" "$ sudo pbuilder update --hookdir ~/loginhooks/E10shell" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:811 msgid "" "It is also possible to add <option>--save-after-exec</option> and/or " "<option>--save-after-login</option> options to the <command>pbuilder login</" "command> session to accomplish the goal. It is possible to add the " "<option>--uml-login-nocow</option> option to <command>pbuilder-user-mode-" "linux <option>login</option></command> session as well." msgstr "" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:821 msgid "Setting BUILDRESULTUID for sudo sessions" msgstr "Variable BUILDRESULTUID pour les sessions utilisant sudo" # type: Content of: <book><chapter><sect1><para><screen> #. type: Content of: <book><chapter><sect1><para><screen> #: pbuilder-doc.xml:824 #, no-wrap msgid "BUILDRESULTUID=$SUDO_UID" msgstr "BUILDRESULTUID=$SUDO_UID" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:823 #, fuzzy msgid "" "It is possible to set <placeholder type=\"screen\" id=\"0\"/> in pbuilderrc " "to set the proper BUILDRESULTUID when using <command>sudo</command>." msgstr "" "dans pbuilderrc pour renseigner correctement la variable BUILDRESULTUID en " "utilisant <command>sudo</command>." # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:829 msgid "Notes on usage of $TMPDIR" msgstr "Note à propos de l'utilisation de $TMPDIR" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:831 msgid "" "If you are setting $TMPDIR to an unusual value, of other than <filename>/" "tmp</filename>, you will find that some errors may occur inside the chroot, " "such as <command>dpkg-source</command> failing." msgstr "" "Si vous placez la variable $TMPDIR à une valeur inhabituelle, des erreurs " "peuvent se produire dans l'environnement de base telles que des échecs de " "<command>dpkg-source</command>." # type: Content of: <book><chapter><sect1><para><screen> #. type: Content of: <book><chapter><sect1><para><screen> #: pbuilder-doc.xml:837 #, no-wrap msgid "export TMPDIR=/tmp" msgstr "export TMPDIR=/tmp" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:835 #, fuzzy msgid "" "There are two options, you may install a hook to create that directory, or " "set <placeholder type=\"screen\" id=\"0\"/> in pbuilderrc. Take your pick." msgstr "" "Il y a deux solutions. Vous pouvez mettre en place un crochet pour créer ce " "répertoire ou utiliser" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:841 msgid "" "An example script is provided as <filename>examples/D10tmp</filename> with " "<command>pbuilder</command>." msgstr "" "Un script d'exemple est fourni sous le nom <filename>examples/D10tmp</" "filename> avec <command>pbuilder</command>." # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:846 msgid "" "Creating a shortcut for running <command>pbuilder</command> with a specific " "distribution" msgstr "" "Créer un raccourci pour lancer <command>pbuilder</command> pour une " "distribution spécifique" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:848 #, fuzzy msgid "" "When working with multiple chroots, it would be nice to work with scripts " "that reduce the amount of typing. An example script <filename>pbuilder-" "distribution.sh</filename> is provided as an example. Invoking the script " "as <filename>pbuilder-squeeze</filename> will invoke <command>pbuilder</" "command> with a squeeze chroot." msgstr "" "En travaillant avec plusieurs environnements de base, il serait sympathique " "d'employer des scripts qui réduisent la quantité de caractères à taper. Le " "script <filename>pbuilder-distribution.sh</filename> est fourni à titre " "d'exemple. En invoquant ce script sous le nom <filename>pbuilder-etch</" "filename>, <command>pbuilder</command> sera appelé avec l'environnement de " "base de Etch." # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:857 msgid "" "Using environmental variables for running <command>pbuilder</command> for " "specific distribution" msgstr "" "Utilisation des variables d'environnement pour lancer <command>pbuilder</" "command> pour une distribution spécifique" # type: Content of: <book><chapter><sect1><para><footnote><para> #. type: Content of: <book><chapter><sect1><para><footnote><para> #: pbuilder-doc.xml:861 msgid "This part of the documentation contributed by Andres Mejia" msgstr "Cette partie de la documentation est une contribution de Andres Mejia" # type: Content of: <book><chapter><sect1><para><footnote><para> #. type: Content of: <book><chapter><sect1><para><footnote><para> #: pbuilder-doc.xml:863 msgid "" "This example was taken from a wiki (<ulink url=\"https://wiki.ubuntu.com/" "PbuilderHowto\">https://wiki.ubuntu.com/PbuilderHowto</ulink>)." msgstr "" "Cette exemple est issu d'un wiki (<ulink url=\"https://wiki.ubuntu.com/" "PbuilderHowto\">https://wiki.ubuntu.com/PbuilderHowto</ulink>)." # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:860 #, fuzzy msgid "" "This section<placeholder type=\"footnote\" id=\"0\"/> describes briefly a " "way to setup and use multiple pbuilder setups by creating a pbuilderrc " "configuration in your home path (<filename>$HOME/.pbuilderrc</filename>) " "and using the variable \"DIST\" when running pbuilder or pdebuild." msgstr "" "</footnote> décrit brièvement comment configurer et utiliser plusieurs " "pbuilders en créant un fichier de configuration pbuilderrc dans votre " "répertoire utilisateur (<filename>$HOME/.pbuilderrc</filename>) et en " "utilisant la variable \"DIST\" en lançant pbuilder ou pdebuild." # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:871 msgid "First, setup <filename>$HOME/.pbuilderrc</filename> to look like:" msgstr "" "Tout d'abord, mettez en place un fichier <filename>$HOME/.pbuilderrc</" "filename> ressemblant à ceci :" # type: Content of: <book><chapter><sect1><para><screen> #. type: Content of: <book><chapter><sect1><para><screen> #: pbuilder-doc.xml:874 #, fuzzy, no-wrap msgid "" "if [ -n \"${DIST}\" ]; then\n" " BASETGZ=\"`dirname $BASETGZ`/$DIST-base.tgz\"\n" " DISTRIBUTION=\"$DIST\"\n" " BUILDRESULT=\"/var/cache/pbuilder/$DIST/result/\"\n" " APTCACHE=\"/var/cache/pbuilder/$DIST/aptcache/\"\n" "fi\n" msgstr "" "if [ -n \"${DIST}\" ]; then\n" " BASETGZ=\"`dirname $BASETGZ`/$DIST-base.tgz\"\n" " DISTRIBUTION=\"$DIST\"\n" " BUILDRESULT=\"/var/cache/pbuilder/$DIST/result/\"\n" " APTCACHE=\"/var/cache/pbuilder/$DIST/aptcache/\"\n" "fi" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:873 pbuilder-doc.xml:889 pbuilder-doc.xml:930 #: pbuilder-doc.xml:936 pbuilder-doc.xml:951 pbuilder-doc.xml:1039 #: pbuilder-doc.xml:1190 pbuilder-doc.xml:1442 pbuilder-doc.xml:1453 msgid "<placeholder type=\"screen\" id=\"0\"/>" msgstr "" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:881 msgid "" "Then, whenever you wish to use pbuilder for a particular distro, assign a " "value to \"DIST\" that is one of the distros available for Debian or any " "Debian based distro you happen to be running (i.e. whatever is found under /" "usr/lib/debootstrap/scripts)." msgstr "" "Puis, dès que vous voulez utiliser une distribution particulière avec " "pbuilder, assignez la valeur de \"DIST\" à une des distributions de Debian " "ou n'importe quelle distribution basée sur Debian (c'est à dire à n'importe " "quelle valeur qui se trouve dans /usr/lib/debootstrap/scripts)." # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:887 msgid "Here's some examples on running pbuilder or pdebuild:" msgstr "Voici quelques exemples d'utilisation avec pbuilder ou pdebuild :" # type: Content of: <book><chapter><sect1><para><screen> #. type: Content of: <book><chapter><sect1><para><screen> #: pbuilder-doc.xml:890 #, fuzzy, no-wrap msgid "" "DIST=gutsy sudo pbuilder create\n" "\n" "DIST=sid sudo pbuilder create --mirror http://http.us.debian.org/debian\n" "\n" "DIST=gutsy sudo pbuilder create \\\n" " --othermirror \"deb http://archive.ubuntu.com/ubuntu gutsy universe \\\n" " multiverse\"\n" "\n" "DIST=gutsy sudo pbuilder update\n" "\n" "DIST=sid sudo pbuilder update --override-config --mirror \\\n" "http://http.us.debian.org/debian \\\n" "--othermirror \"deb http://http.us.debian.org/debian sid contrib non-free\"\n" "\n" "DIST=gutsy pdebuild\n" msgstr "" "DIST=gutsy sudo pbuilder create\n" "\n" "DIST=sid sudo pbuilder create --mirror http://http.us.debian.org/debian\n" "\n" "DIST=gutsy sudo pbuilder create \\\n" " --othermirror \"deb http://archive.ubuntu.com/ubuntu gutsy universe \\\n" " multiverse\"\n" "\n" "DIST=gutsy sudo pbuilder update\n" "\n" "DIST=sid sudo pbuilder update --override-config --mirror \\\n" "http://http.us.debian.org/debian \\\n" "--othermirror \"deb http://http.us.debian.org/debian sid contrib non-free\"\n" "\n" "DIST=gutsy pdebuild" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:908 msgid "Using special apt sources lists, and local packages" msgstr "Utiliser des sources spécifiques pour apt et des paquets locaux" # type: Content of: <book><chapter><sect1><para><command> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:910 #, fuzzy msgid "" "If you have some very specialized requirements on your apt setup inside " "<command>pbuilder</command>, it is possible to specify that through the " "<command><option>--othermirror</option></command> option. Try something " "like: <command><option>--othermirror \"deb http://local/mirror stable main|" "deb-src http://local/source/repository ./\"</option></command>" msgstr "" "Si vous avez des besoins très spécifiques pour votre configuration d'apt à " "l'intérieur de l'environnement de base, il est possible de l'indiquer à " "l'aide de l'option <command>" # type: Content of: <book><chapter><sect1><para><command> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:919 #, fuzzy msgid "" "To use the local file system instead of HTTP, it is necessary to do bind-" "mounting. <command><option>--bindmounts</option></command> is a command-" "line option useful for such cases." msgstr "" "Pour utiliser un système de fichier local plutôt que HTTP, vous devez " "rattacher un système de fichier (<foreignphrase>bind-mounting</" "foreignphrase>). <command>" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:925 msgid "" "It might be convenient to use your built packages from inside the chroot. " "It is possible to automate the task with the following configuration. " "First, set up pbuilderrc to bindmount your build results directory." msgstr "" "Utiliser les paquets que vous venez de construire dans l'environnement de " "base peut être pratique. Il est possible d'automatiser cette tâche en " "utilisant la configuration suivante. D'abord, configurez pbuilderrc pour " "rattacher votre répertoire contenant le résultat des constructions." # type: Content of: <book><chapter><sect1><para><screen> #. type: Content of: <book><chapter><sect1><para><screen> #: pbuilder-doc.xml:930 #, no-wrap msgid "BINDMOUNTS=\"/var/cache/pbuilder/result\"" msgstr "BINDMOUNTS=\"/var/cache/pbuilder/result\"" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:933 msgid "Then, add the following hook" msgstr "Puis utilisez le crochet suivant" # type: Content of: <book><chapter><sect1><para><screen> #. type: Content of: <book><chapter><sect1><para><screen> #: pbuilder-doc.xml:937 #, fuzzy, no-wrap msgid "" "# cat /var/cache/pbuilder/hooks/D70results\n" "#!/bin/sh\n" "cd /var/cache/pbuilder/result/\n" "/usr/bin/dpkg-scanpackages . /dev/null > /var/cache/pbuilder/result/Packages\n" "/usr/bin/apt-get update" msgstr "" "# cat /var/cache/pbuilder/hooks/D70results\n" "#!/bin/sh\n" "cd /var/cache/pbuilder/result/\n" "/usr/bin/dpkg-scanpackages . /dev/null > /var/cache/pbuilder/result/Packages\n" "/usr/bin/apt-get update" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:944 msgid "" "This way, you can use <filename>deb file:/var/cache/pbuilder/result</" "filename>" msgstr "" "De cette façon, vous pouvez utiliser <filename>deb file:/var/cache/pbuilder/" "result</filename>" #. from http://ubuntuforums.org/archive/index.php/t-696820.html #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:947 msgid "To add new apt-key inside chroot:" msgstr "" #. type: Content of: <book><chapter><sect1><para><screen> #: pbuilder-doc.xml:952 #, no-wrap msgid "" "sudo pbuilder --login --save-after-login\n" "# apt-key add - <<EOF\n" "...public key goes here...\n" "EOF\n" "# logout\n" msgstr "" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:960 msgid "" "How to get pbuilder to run apt-get update before trying to satisfy build-" "dependency" msgstr "" "Comment configurer pbuilder pour lancer apt-get update avant de tenter de " "satisfaire les dépendances à la construction" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:962 msgid "" "You can use hook scripts for this. D scripts are run before satisfying " "build-dependency." msgstr "" "Vous pouvez utiliser à cet effet des crochets. Les scripts commençant par D " "sont lancés avant de résoudre les dépendances à la construction." #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:966 msgid "" "<ulink url=\"http://lists.debian.org/debian-devel/2006/05/msg00550.html\"> " "This snippet comes from Ondrej Sury. </ulink>" msgstr "" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:972 msgid "Different bash prompts inside pbuilder login" msgstr "Utilise une invite différente à l'intérieur de pbuilder" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:974 msgid "" "To make distinguishing bash prompts inside <command>pbuilder</command> " "easier, it is possible to set environment variables such as PS1 inside " "<filename>pbuilderrc</filename>" msgstr "" "Pour indiquer que l'on se trouve à l'intérieur de <command>pbuilder</" "command>, il est possible de modifier l'invite en utilisant des variables " "comme PS1 dans <filename>pbuilderrc</filename>" # type: Content of: <book><chapter><sect1><para><footnote><para> #. type: Content of: <book><chapter><sect1><para><footnote><para> #: pbuilder-doc.xml:985 msgid "Versions of bash from and before Debian 3.0" msgstr "Les versions de bash jusqu'à Debian 3.0 incluse" # type: Content of: <book><chapter><sect1><para><footnote> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:980 #, fuzzy msgid "" "With versions of bash more recent than 2.05b-2-15, the value of the " "debian_chroot variable, if set, is included in the value of PS1 (the Bash " "prompt) inside the chroot. In prior versions of bash,<placeholder type=" "\"footnote\" id=\"0\"/> setting PS1 in pbuilderrc worked." msgstr "" "Avec les versions de bash plus récentes que la 2.05b-2-15, la valeur de la " "variable debian_chroot est incluse dans PS1 (l'invite de Bash). Dans les " "versions précédentes de bash,<footnote>" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:989 msgid "example of debian_chroot" msgstr "exemple pour debian_chroot" # type: Content of: <book><chapter><sect1><screen> #. type: Content of: <book><chapter><sect1><screen> #: pbuilder-doc.xml:991 #, fuzzy, no-wrap msgid "\texport debian_chroot=\"pbuild$$\"" msgstr "export debian_chroot=\"pbuild$$\"" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:992 msgid "example of PS1" msgstr "exemple pour PS1" # type: Content of: <book><chapter><sect1><screen> #. type: Content of: <book><chapter><sect1><screen> #: pbuilder-doc.xml:994 #, fuzzy, no-wrap msgid "\texport PS1=\"pbuild chroot 32165 # \"" msgstr "export PS1=\"pbuild chroot 32165 # \"" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:997 msgid "Creating a chroot reminder" msgstr "Création d'un pense-bête de chroot" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:999 msgid "" "Bash prompts will help you remember that you are inside a chroot. There are " "other cases where you may want other signs of being inside a chroot. Check " "out the <filename>examples/F90chrootmemo</filename> hook script. It will " "create a file called <filename>/CHROOT</filename> inside your chroot." msgstr "" "L'invite de Bash vous aidera à vous souvenir que vous êtes dans un " "environnement chrooté. Dans certains cas, vous pourriez souhaiter disposer " "d'autres éléments l'indiquant. Utilisez le script crochet <filename>examples/" "F90chrootmemo</filename>. Il créera un fichier nommé <filename>/CHROOT</" "filename> dans l'environnement chrooté." # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1008 msgid "Using /var/cache/apt/archives for the package cache" msgstr "Utiliser /var/cache/apt/archives comme cache pour les paquets" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1010 msgid "" "For the help of low-bandwidth systems, it is possible to use <filename>/var/" "cache/apt/archives</filename> as the package cache. Just specify it instead " "of the default <filename>/var/cache/pbuilder/aptcache</filename>." msgstr "" "Pour les systèmes dont la bande passante est réduite, il est possible " "d'utiliser <filename>/var/cache/apt/archives</filename> comme cache pour les " "paquets. Indiquez ce répertoire à la place de celui par défaut <filename>/" "var/cache/pbuilder/aptcache</filename>." # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1016 msgid "" "It is however not possible to do so currently with the user-mode-linux " "version of <command>pbuilder</command>, because <filename>/var/cache/apt/" "archives</filename> is usually only writable by root." msgstr "" "Il n'est cependant pas possible de faire ainsi pour le moment avec la " "version pour user-mode-linux de <command>pbuilder</command> car <filename>/" "var/cache/apt/archives</filename> n'est généralement accessible en écriture " "que par root." # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1022 msgid "" "Use of dedicated tools such as apt-proxy is recommended, since caching of " "packages would benefit the system outside the scope of <command>pbuilder</" "command>." msgstr "" "L'utilisation d'outils comme apt-proxy est recommandé car la mise en cache " "des paquets profite également au reste du système." # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1028 msgid "pbuilder back ported to stable Debian releases" msgstr "Rétroportage de pbuilder vers les versions stables de Debian" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1030 #, fuzzy msgid "Currently stable back port of pbuilder is available at backports.org." msgstr "" "Actuellement, le rétroportage de pbuilder est disponible sur backports.org." # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1034 msgid "Warning about LOGNAME not being defined" msgstr "Alerte: LOGNAME n'est pas défini." # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1036 msgid "" "You might see a lot of warning messages when running <command>pbuilder</" "command>." msgstr "" "Vous pourriez voir beaucoup de message d'alertes en exécutant " "<command>pbuilder</command>." # type: Content of: <book><chapter><sect1><para><screen> #. type: Content of: <book><chapter><sect1><para><screen> #: pbuilder-doc.xml:1040 #, fuzzy, no-wrap msgid "\tdpkg-genchanges: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234)" msgstr "dpkg-genchanges: warning: aucune entrée UTMP disponible et LOGNAME non défini. Utilisation de l'UID du processus (1234)" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1043 msgid "" "It is currently safe to ignore this warning message. Please report back if " "you find any problem with having LOGNAME unset. Setting LOGNAME caused a " "few problems when invoking <command>chroot</command>. For example, dpkg " "requires getpwnam to succeed inside chroot, which means LOGNAME and the " "related user information have to be set up inside chroot." msgstr "" "Il n'est pas risqué d'ignorer ce message. Veuillez signaler tout problème " "avec LOGNAME non défini. Paramétrer LOGNAME cause quelques problèmes lors de " "l'appel à <command>chroot</command>. Par exemple, dpkg a besoin de getpwnam " "pour fonctionner dans le chroot, ce qui implique que LOGNAME et les " "informations relatives à l'utilisateur doivent être paramétrés dans le " "chroot." # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1052 msgid "Cannot Build-conflict against an essential package" msgstr "Construction impossible: conflit avec un paquet essentiel" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1054 msgid "" "<command>pbuilder</command> does not currently allow Build-Conflicts against " "essential packages. It should be obvious that essential packages should not " "be removed from a working Debian system, and a source package should not try " "to force removal of such packages on people building the package." msgstr "" "<command>pbuilder</command> ne peut pas à permettre de conflit de " "construction ('Build-Conflict') sur des paquets essentiels. Il semble " "évident que les paquets essentiels ne devraient pas être enlevés d'un " "système Debian fonctionnel et qu'un paquet source ne devrait pas essayer de " "forcer la suppression de tels paquets pour des utilisateurs construisant le " "paquet." # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1063 msgid "Avoiding the \"ln: Invalid cross-device link\" message" msgstr "Éviter le message \"ln: Lien croisé de périphérique invalide\"" # type: Content of: <book><chapter><sect1><para><screen> #. type: Content of: <book><chapter><sect1><para><screen> #: pbuilder-doc.xml:1069 pbuilder-doc.xml:1202 #, no-wrap msgid "APTCACHEHARDLINK=no" msgstr "APTCACHEHARDLINK=no" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1065 #, fuzzy msgid "" "By default, <command>pbuilder</command> uses hard links to manage the " "<command>pbuilder</command> package cache. It is not possible to make hard " "links across different devices; and thus this error will occur, depending on " "your set up. If this happens, set <placeholder type=\"screen\" id=\"0\"/> " "in your pbuilderrc file. Note that packages in <command>APTCACHE</command> " "will be copied into chroot local cache, so plan for enough space on " "<command>BUILDPLACE</command> device." msgstr "" "Par défaut, <command>pbuilder</command> utilise des liens directs pour gérer " "le cache des paquets. Il n'est pas possible de créer des liens directs entre " "différents périphériques, ce qui explique l'erreur que vous obtenez sur " "votre système. Si cela se produit, ajoutez" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1077 msgid "Using fakechroot" msgstr "Utiliser fakechroot" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1079 #, fuzzy msgid "" "It is possible to use <command>fakechroot</command> instead of being root to " "run <command>pbuilder</command>; however, several things make this " "impractical. <command>fakechroot</command> overrides library loads and " "tries to override default libc functions when providing the functionality of " "virtual <command>chroot</command>. However, some binaries do no use libc to " "function, or override the overriding provided by <command>fakechroot</" "command>. One example is <command>ldd</command>. Inside " "<command>fakechroot</command>, <command>ldd</command> will check the library " "dependency outside of the chroot, which is not the expected behavior." msgstr "" "Il est possible d'utiliser <command>fakechroot</command> au lieu du compte " "root pour lancer <command>pbuilder</command>. Toutefois, plusieurs choses " "rendent cette technique peu utilisable. <command>fakechroot</command> " "outrepasse le chargement des bibliothèques et tente de modifier les " "fonctions de la libc pour fournir les fonctionnalités de <command>chroot</" "command>. Toutefois, certains exécutables n'utilisent pas la libc ou " "modifient eux-mêmes les fonctions modifiées par <command>fakechroot</" "command>. Un exemple d'un tel comportement est <command>ldd</command>. À " "l'intérieur de <command>fakechroot</command>, <command>ldd</command> va " "vérifier les dépendances à l'extérieur de l'image de base ce qui n'est pas " "le comportement attendu." #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1093 msgid "" "To work around the problem, debootstrap has a <option>--variant fakechroot</" "option> option. Use that, so that ldd and ldconfig are overridden." msgstr "" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1098 msgid "" "Make sure you have set your LD_PRELOAD path correctly, as described in the " "fakechroot manpage." msgstr "" "Assurez-vous d'avoir correctement renseigné la variable LD_PRELOAD, comme " "décrit dans la page de manuel de fakechroot." # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1103 msgid "Using debconf inside pbuilder sessions" msgstr "Utiliser debconf à l'intérieur d'une session pbuilder" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1105 msgid "" "To use debconf inside <command>pbuilder</command>, setting DEBIAN_FRONTEND " "to <quote>readline</quote> in <filename>pbuilderrc</filename> should work. " "Setting it to <quote>dialog</quote> should also work, but make sure whiptail " "or dialog is installed inside the chroot." msgstr "" "Pour utiliser debconf à l'intérieur de <command>pbuilder</command>, placer " "la variable DEBIAN_FRONTEND à <quote>readline</quote> dans " "<filename>pbuilderrc</filename> devrait faire l'affaire. La placer à " "<quote>dialog</quote> devrait aussi marcher mais assurez-vous que whiptail " "ou dialog sont installés dans l'environnement de base." # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1112 msgid "nodev mount options hinder pbuilder activity" msgstr "L'option de montage nodev entrave le bon fonctionnement de pbuilder" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1114 msgid "" "If you see messages such as this when building a chroot, you are mounting " "the file system with the nodev option." msgstr "" "Si vous voyez de tels messages d'erreur lors de la construction de l'image " "de base, c'est que vous utilisez l'option nodev pour monter le système de " "fichiers." # type: Content of: <book><chapter><sect1><screen> #. type: Content of: <book><chapter><sect1><screen> #: pbuilder-doc.xml:1118 #, fuzzy, no-wrap msgid "\t/var/lib/dpkg/info/base-files.postinst: /dev/null: Permission denied" msgstr "/var/lib/dpkg/info/base-files.postinst: /dev/null: Permission non accordée" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1120 msgid "" "You will also have problems if you mount the file system with the noexec " "option, or nosuid. Make sure you do not have these flags set when mounting " "the file system for <filename>/var/cache/pbuilder</filename> or $BUILDPLACE." msgstr "" "Vous aurez également des problèmes si vous montez le système de fichiers " "avec l'option noexec ou nosuid. Assurez-vous qu'aucun de ces drapeaux ne " "soient utilisés lorsque vous montez le système de fichiers pour <filename>/" "var/cache/pbuilder</filename> ou $BUILDPLACE." # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1126 msgid "This is not a problem when using <command>user-mode-linux</command>." msgstr "" "Ce problème n'apparaît pas en utilisant <command>user-mode-linux</command>." # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1129 msgid "" "See <ulink url=\"http://bugs.debian.org/316135\"> 316135 </ulink> for " "example." msgstr "" "Référez-vous à <ulink url=\"http://bugs.debian.org/316135\"> 316135 </ulink> " "pour un exemple." # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1135 msgid "pbuilder is slow" msgstr "pbuilder est lent" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1137 msgid "" "<command>pbuilder</command> is often slow. The slowest part of " "<command>pbuilder</command> is extracting the tar.gz every time " "<command>pbuilder</command> is invoked. That can be avoided by using " "<command>pbuilder-user-mode-linux</command>. <command>pbuilder-user-mode-" "linux</command> uses COW file system, and thus does not need to clean up and " "recreate the root file system." msgstr "" "<command>pbuilder</command> est souvent lent. La partie la plus lente a lieu " "lors de l'extraction de l'image de base chaque fois que <command>pbuilder</" "command> est lancé. Cela peut être évité en utilisant <command>pbuilder-user-" "mode-linux</command> qui utilise un système de fichiers COW et qui n'a donc " "pas besoin de nettoyer et recréer l'image de base." # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1146 msgid "" "<command>pbuilder-user-mode-linux</command> is slower in executing the " "actual build system, due to the usual <command>user-mode-linux</command> " "overhead for system calls. It is more friendly to the hard drive." msgstr "" "<command>pbuilder-user-mode-linux</command> est plus lent à construire les " "paquets en raison du temps supplémentaire de traitement pour chaque appel " "système. Il est plus amical avec le disque dur." # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1152 msgid "" "<command>pbuilder</command> with cowdancer is also an alternative that " "improves speed of pbuilder startup." msgstr "" "<command>pbuilder</command> associé à cowdancer est aussi une alternative " "qui améliore la vitesse de lancement de pbuilder." # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1157 msgid "Using pdebuild to sponsor package" msgstr "Utilisation de pdebuild pour parrainer un paquet" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1159 msgid "" "To sign a package marking for sponsorship, it is possible to " "use<command><option> --auto-debsign</option></command> and " "<command><option>--debsign-k</option></command> options of " "<command>pdebuild</command>." msgstr "" #. type: Content of: <book><chapter><sect1><screen> #: pbuilder-doc.xml:1165 #, no-wrap msgid "\t<command>pdebuild <option>--auto-debsign </option> <option>--debsign-k </option><parameter>XXXXXXXX</parameter></command>" msgstr "" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1168 msgid "Why is there a source.changes file in ../?" msgstr "Pourquoi y'a-t-il un fichier source.changes dans ../ ?" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1170 msgid "" "When running <command>pdebuild</command>, <command>pbuilder</command> will " "run dpkg-buildpackage to create a Debian source package to pass it on to " "<command>pbuilder</command>. File named XXXX_YYY_source.changes is what " "remains from that process. It is harmless unless you try to upload it to " "the Debian archive." msgstr "" "En lançant <command>pdebuild</command>, <command>pbuilder</command> va " "lancer dpkg-buildpackage pour créer le paquet source et le fournir à " "<command>pbuilder</command>. Le fichier XXXX_YYY_source.changes est le " "reliquat de ce processus. C'est sans danger à moins d'essayer de l'envoyer " "dans l'archive Debian." # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1176 #, fuzzy msgid "" "This behavior is different when running through <option>--use-pdebuild-" "internal</option>" msgstr "Ce comportement est différent en utilisant l'option" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1180 msgid "amd64 and i386-mode" msgstr "amd64 et i386-mode" # type: Content of: <book><chapter><sect1><para><command> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1182 #, fuzzy msgid "" "amd64 architectures are capable of running binaries in i386 mode. It is " "possible to use <command>pbuilder</command> to run packages, using " "<command>linux32</command> and <command>debootstrap <option>--arch</option></" "command> option. Specifically, a command-line option like the following " "will work." msgstr "" "Les architectures amd64 sont capables de lancer des binaires en mode i386. " "Il est possible d'utiliser <command>pbuilder</command> pour créer des " "paquets en utilisant les options <command>linux32</command> et " "<command>debootstrap" #. type: Content of: <book><chapter><sect1><para><screen> #: pbuilder-doc.xml:1191 #, no-wrap msgid "" "<command>pbuilder create --distribution sid --debootstrapopts --arch --debootstrapopts i386 \\\n" " --basetgz /var/cache/pbuilder/base-i386.tgz --mirror http://ftp.jp.debian.org/debian</command>\n" "<command>linux32 pbuilder build --basetgz /var/cache/pbuilder/base-i386.tgz</command>" msgstr "" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1197 msgid "Using tmpfs for buildplace" msgstr "Utilisation de tmpfs comme emplacement de construction" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1199 #, fuzzy msgid "" "To improve speed of operation, it is possible to use tmpfs for pbuilder " "build location. Mount tmpfs to <filename>/var/cache/pbuilder/build</" "filename>, and set <placeholder type=\"screen\" id=\"0\"/>." msgstr "" "Pour améliorer la vitesse d'exécution, il est possible d'utiliser tmpfs " "comme emplacement de construction pour pbuilder. Montez un système tmpfs sur " "<filename>/var/cache/pbuilder/build</filename> et renseignez l'option" # type: Content of: <book><chapter><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1206 msgid "Using svn-buildpackage together with pbuilder" msgstr "Utiliser svn-buildpackage avec pbuilder" #. type: Content of: <book><chapter><sect1><para><footnote><para> #: pbuilder-doc.xml:1211 msgid "" "<ulink url=\"http://upsilon.cc/~zack/blog/posts/2007/09/svn-cowbuilder/\"> " "Zack has posted an example on his blog. </ulink>" msgstr "" # type: Content of: <book><chapter><sect1><para><footnote> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1208 #, fuzzy msgid "" "pdebuild command can be used with svn-buildpackage --svn-builder command-" "line option. <placeholder type=\"footnote\" id=\"0\"/>" msgstr "" "La commande pdebuild peut être utilisée avec l'option --svn-builder de svn-" "buildpackage. <footnote>" # type: Content of: <book><chapter><sect1><screen> #. type: Content of: <book><chapter><sect1><screen> #: pbuilder-doc.xml:1217 #, fuzzy, no-wrap msgid "alias svn-cowbuilder=\"svn-buildpackage --svn-builder='pdebuild --pbuilder cowbuilder\"" msgstr "alias svn-cowbuilder=\"svn-buildpackage --svn-builder='pdebuild --pbuilder cowbuilder\"" # type: Content of: <book><chapter><title> #. type: Content of: <book><chapter><title> #: pbuilder-doc.xml:1224 msgid "Troubleshooting and development" msgstr "Dépistage des pannes et développement" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1226 msgid "Reporting bugs" msgstr "Rapports de bogues" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1228 #, fuzzy msgid "" "To report bugs, it would be important to have a log of what's going wrong. " "Most of the time, adding a <command><option>--debug</option></command> " "option and re-running the session should do the trick. Please send the log " "of such session along with your problem to ease the debugging process." msgstr "" "</command> et relancer la session permet d'obtenir cette trace. Envoyez-la " "avec une description de votre problème pour faciliter la résolution du " "problème." # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1237 msgid "Mailing list" msgstr "Liste de diffusion" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1239 msgid "" "There is a mailing list for <command>pbuilder</command> on alioth (pbuilder-" "maint@lists.alioth.debian.org). You can subscribe through the alioth web " "interface. <ulink url=\"http://alioth.debian.org/mail/?group_id=30778\"> " "http://alioth.debian.org/mail/?group_id=30778</ulink>." msgstr "" "Il existe une liste de diffusion pour <command>pbuilder</command> sur alioth " "(pbuilder-maint@lists.alioth.debian.org). Vous pouvez vous y inscrire à " "travers l'interface web <ulink url=\"http://alioth.debian.org/mail/?" "group_id=30778\">http://alioth.debian.org/mail/?group_id=30778</ulink>." # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1247 msgid "IRC Channel" msgstr "Canal IRC" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1249 msgid "" "For coordination and communication, IRC channel #pbuilder on irc.oftc.net is " "used. Please log your intent there when you are going to start doing some " "changes and committing some change." msgstr "" "Le canal IRC #pbuilder sur irc.oftc.net est utilisé pour la coordination et " "la communication. Indiquez-y votre intention avant d'effectuer un changement " "ou de publier une modification." # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1256 msgid "Information for pbuilder developers" msgstr "Informations pour les développeurs de pbuilder" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1258 msgid "" "This section tries to document current development practices and how things " "generally operate in development." msgstr "" "Cette section tente de documenter les actuelles pratiques de développement " "et comment les choses marchent dans le développement." # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1262 msgid "" "<command>pbuilder</command> is co-maintained with resources provided by " "Alioth. There is an Alioth project page at <ulink url=\"http://alioth." "debian.org/projects/pbuilder\"> http://alioth.debian.org/projects/pbuilder</" "ulink>. Home page is also available, at <ulink url=\"http://pbuilder.alioth." "debian.org/\"> http://alioth.debian.org/projects/pbuilder</ulink> which " "shows this text. git repository is available through http, git, or (if you " "have an account on alioth, ) ssh." msgstr "" "<command>pbuilder</command> est co-maintenu sur Alioth. La page du projet " "sur Alioth se trouve à l'adresse <ulink url=\"http://alioth.debian.org/" "projects/pbuilder\"> http://alioth.debian.org/projects/pbuilder</ulink>. La " "page d'accueil est disponible sur <ulink url=\"http://pbuilder.alioth.debian." "org/\"> http://alioth.debian.org/projects/pbuilder</ulink>. Le dépôt git est " "disponible par http, git ou (si vous avez un compte sur alioth) ssh." # type: Content of: <book><chapter><sect1><screen> #. type: Content of: <book><chapter><sect1><screen> #: pbuilder-doc.xml:1276 #, fuzzy, no-wrap msgid "" "git-clone git://git.debian.org/git/pbuilder/pbuilder.git\n" "git-clone http://git.debian.org/git/pbuilder/pbuilder.git\n" "git-clone ssh://git.debian.org/git/pbuilder/pbuilder.git" msgstr "" "git-clone git://git.debian.org/git/pbuilder/pbuilder.git\n" "git-clone http://git.debian.org/git/pbuilder/pbuilder.git\n" "git-clone ssh://git.debian.org/git/pbuilder/pbuilder.git" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1280 msgid "" "Git commit message should have the first one line describing what the commit " "does, formatted in the way debian/changelog is formatted because it is " "copied verbatim to changelog via git-dch. The second line is empty, and the " "rest should describe the background and extra information related to " "implementation of the commit." msgstr "" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1288 msgid "" "Test-suites are available in <filename>./testsuite/</filename> directory. " "Changes are expected not to break the test-suites. <filename>./run-test.sh</" "filename> is a basic test-suite, which puts a summary in <filename>run-test." "log</filename>, and <filename>run-test-cdebootstrap.log</filename>. " "<filename>./run-test-regression.sh</filename> is a regression test-suite, " "which puts the result in <filename>run-test-regression.log</filename>. " "Currently, run-test.sh is ran automatically daily to ensure that pbuilder is " "working." msgstr "" "Les suites de tests sont disponibles dans le répertoire <filename>./" "testsuite</filename>. Les changements ne doivent pas casser ces tests. " "<filename>./run-test.sh</filename> est une suite de tests simples dont le " "résultat est placé dans <filename>run-test.log</filename> et dans " "<filename>run-test-cdebootstrap.log</filename>. <filename>./run-test-" "regression.sh</filename> permet de tester les régressions. Les résultats se " "trouvent dans <filename>run-test-regression.log</filename>. Actuellement, " "run-test.sh est lancé automatiquement tous les jours pour s'assurer que " "pbuilder est fonctionnel." # type: Content of: <book><chapter><sect1><table><title> #. type: Content of: <book><chapter><sect1><table><title> #: pbuilder-doc.xml:1297 msgid "Directory structure of the testsuite" msgstr "Structure des répertoires de la suite de tests" # type: Content of: <book><chapter><sect1><table><tgroup><thead><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><thead><row><entry> #: pbuilder-doc.xml:1303 pbuilder-doc.xml:1526 pbuilder-doc.xml:1595 msgid "Directory" msgstr "Répertoire" # type: Content of: <book><chapter><sect1><table><tgroup><thead><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><thead><row><entry> #: pbuilder-doc.xml:1304 pbuilder-doc.xml:1527 pbuilder-doc.xml:1596 msgid "Meaning" msgstr "Signification" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1309 #, fuzzy msgid "<filename>./testsuite/</filename>" msgstr "Lien symbolique vers <filename>/proc/mounts</filename>." # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1310 msgid "Directory for testsuite" msgstr "Répertoire de la suite de tests" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1313 #, fuzzy msgid "<filename>./testsuite/run-test.sh</filename>" msgstr "Lien symbolique vers <filename>/proc/mounts</filename>." # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1314 msgid "" "Daily regression test to test against Debian Archive changes breaking " "pbuilder." msgstr "" "Tests de régression journaliers pour détecter les régressions dues aux " "changements survenus dans l'archive Debian." # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1317 #, fuzzy msgid "<filename>./testsuite/run-test.log</filename>" msgstr "Lien symbolique vers <filename>/proc/mounts</filename>." # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1318 msgid "A summary of testsuite" msgstr "Un résumé de la suite de tests" #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1321 msgid "<filename>./testsuite/normal/</filename>" msgstr "" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1322 msgid "Directory for testsuite results of running pbuilder with debootstrap" msgstr "Répertoire contenant les résultats des tests en utilisant debootstrap" #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1325 msgid "<filename>./testsuite/cdebootstrap/</filename>" msgstr "" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1326 msgid "Directory for testsuite results of running pbuilder with cdebootstrap" msgstr "Répertoire contenant les résultats des tests en utilisant cdebootstrap" #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1329 msgid "<filename>./testsuite/run-regression.sh</filename>" msgstr "" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1330 msgid "" "Regression testsuite, ran every time change is made to pbuilder to make sure " "there is no regression." msgstr "" "Tests de régression lancés chaque fois qu'un changement est effectué sur " "pbuilder pour s'assurer qu'aucune régression n'est apparue" #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1333 msgid "<filename>./testsuite/run-regression.log</filename>" msgstr "" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1334 msgid "Summary of test result" msgstr "Résumé des résultats des tests" #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1337 msgid "<filename>./testsuite/regression/BugID-*.sh</filename>" msgstr "" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1338 msgid "Regression tests, exit 0 for success, exit 1 for failure" msgstr "Tests de régression, retourne 0 en cas de succès et 1 en cas d'échec" #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1341 msgid "<filename>./testsuite/regression/BugID-*</filename>" msgstr "" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1342 msgid "Files used for the regression testsuite." msgstr "Fichiers utilisés pour les tests de régression." #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1345 msgid "<filename>./testsuite/regression/log/BugID-*.sh.log</filename>" msgstr "" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1346 msgid "" "Output of the regression test, output from the script is redirected by run-" "regression.sh" msgstr "" "Sortie des tests de régression obtenue par redirection de la sortie des " "scripts par run-regression.sh" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1352 #, fuzzy msgid "" "When making changes, changes should be documented in the Git commit log. " "git-dch will generate debian/changelog from the commit log. Make the first " "line of your commit log meaningful, and add any bug-closing information " "available. debian/changelog should not be edited directly unless when " "releasing a new version." msgstr "" "Lorsque des changements sont effectués, ceux-ci doivent être documentés dans " "les journaux de transaction de Git. git-dch construira le fichier debian/" "changelog à partir de ceux-ci. Assurez-vous que la première ligne de " "commentaire soit pertinente et ajoutez toutes les informations disponibles " "sur la clôture d'un bug." # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1360 msgid "" "A TODO file is available in <filename>debian/TODO</filename>. It's mostly " "not well-maintained, but hopefully it will be more up-to-date when people " "start using it. emacs todoo-mode is used in editing the file." msgstr "" "Une liste des choses à faire est disponible dans <filename>debian/TODO</" "filename>. Elle n'est quasiment pas maintenue mais deviendra un peu plus à " "jour lorsqu'elle sera plus utilisée. Le mode emacs todoo-mode est utilisé " "pour éditer ce fichier." # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1366 msgid "" "When releasing a new version of <command>pbuilder</command>, the version is " "tagged with the git tag X.XXX (version number). This is done with " "<command>./git-tag.sh</command> script available in the source tree." msgstr "" "Lorsqu'une nouvelle version de <command>pbuilder</command> est publiée, elle " "est marquée avec l'étiquette X.XXX (numéro de version). Le script <command>./" "git-tag.sh</command>, disponible dans l'arbre de source, effectue cette " "action." # type: Content of: <book><chapter><title> #. type: Content of: <book><chapter><title> #: pbuilder-doc.xml:1374 msgid "Other uses of pbuilder" msgstr "Autres utilisations de pbuilder" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1376 msgid "Using pbuilder for small experiments" msgstr "Utilisation de pbuilder pour de petites expérimentations" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1378 msgid "" "There are cases when some small experimenting is required, and you do not " "want to damage the main system, like when installing experimental library " "packages, or compiling with experimental compilers. For such cases, the " "<command>pbuilder login</command> command is available." msgstr "" "Dans certains cas, vous voulez mener de petites expériences sans risquer de " "casser votre système, par exemple pour installer une bibliothèque " "expérimentale ou pour compiler avec un compilateur expérimental. Dans de " "tels cas, la commande <command>pbuilder login</command> est disponible." # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1385 msgid "" "<command>pbuilder login </command> is a debugging feature for " "<command>pbuilder</command> itself, but it also allows users to have a " "temporary chroot." msgstr "" "<command>pbuilder login</command> est une fonctionnalité de diagnostic pour " "<command>pbuilder</command>, mais permet aux utilisateurs d'obtenir " "temporairement un environnement restreint." # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1389 msgid "" "Note that the chroot is cleaned after logging out of the shell, and mounting " "file systems inside it is considered harmful." msgstr "" "À noter que l'environnement est nettoyé après la déconnexion du shell et que " "monter des systèmes de fichiers dans celui-ci est déconseillé." # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1394 msgid "Running little programs inside the chroot" msgstr "Lancer de petits programmes dans l'environnement de base" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1396 msgid "" "To facilitate using <command>pbuilder</command> for other uses, " "<command>pbuilder execute</command> is available. <command>pbuilder execute " "</command> will take a script specified in the command-line argument, and " "invoke the script inside the chroot." msgstr "" "Pour faciliter l'utilisation de <command>pbuilder</command> pour d'autres " "usages, la commande <command>pbuilder execute</command> est disponible. " "Celle-ci prend en paramètre un script qui sera exécuté dans l'environnement " "de base." # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1403 msgid "" "The script can be useful for sequences of operations such as installing ssh " "and adding a new user inside the chroot." msgstr "" "Le script peut être utilisé pour exécuter une suite d'opérations comme " "l'installation de ssh et l'ajout d'un nouvel utilisateur dans " "l'environnement de base." # type: Content of: <book><chapter><title> #. type: Content of: <book><chapter><title> #: pbuilder-doc.xml:1409 #, fuzzy #| msgid "Experimental or wish-list features of pbuilder" msgid "Experimental or wishlist features of pbuilder" msgstr "Fonctionnalités expérimentales ou souhaitées de pbuilder" # type: Content of: <book><chapter><para> #. type: Content of: <book><chapter><para> #: pbuilder-doc.xml:1411 msgid "" "There are some advanced features, above that of the basic feature of " "<command>pbuilder</command>, for some specific purposes." msgstr "" "<command>pbuilder</command> dispose de certaines fonctionnalités avancées " "pour certains usages spécifiques." # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1415 msgid "Using LVM" msgstr "Utilisation de LVM" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1417 #, fuzzy #| msgid "" #| "LVM2 has a useful snapshot function that features Copy-on-write images. " #| "That could be used for <command>pbuilder</command> just as it can be used " #| "for the user-mode-linux <command>pbuilder</command> port. lvmpbuilder " #| "script in the examples directory implements such port. The scripts and " #| "documentation can be found under <filename>/usr/share/doc/pbuilder/" #| "examples/lvmpbuilder/</filename>" msgid "" "LVM2 has a useful snapshot function that features Copy-on-write images. " "That could be used for <command>pbuilder</command> just as it can be used " "for the user-mode-linux <command>pbuilder</command> port. lvmpbuilder " "script in the examples directory implements such port. The scripts and " "documentation can be found under <filename>/usr/share/doc/pbuilder/examples/" "lvmpbuilder/</filename>." msgstr "" "LVM2 permet de créer des instantanés sous forme d'images « Copy-on-write ». " "Cette fonctionnalité peut être utilisée aussi bien pour <command>pbuilder</" "command> que pour le port pour user-mode-linux. Le script lvmpbuilder dans " "le répertoire des exemples exploite une telle fonctionnalité. Les scripts et " "la documentation associée se trouvent dans <filename>/usr/share/doc/pbuilder/" "examples/lvmpbuilder/</filename>" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1426 msgid "Using cowdancer" msgstr "Utilisation de cowdancer" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1428 msgid "" "<command>cowdancer</command> allows copy-on-write semantics on file system " "using hard links and hard-link-breaking-on-write tricks. <command>pbuilder</" "command> using <command>cowdancer</command> seems to be much faster and it " "is one ideal point for improvement. <command>cowbuilder</command>, a " "wrapper for <command>pbuilder</command> for using <command>cowdancer</" "command> is available from <command>cowdancer</command> package since 0.14" msgstr "" "<command>cowdancer</command> utilise des liens directs et des astuces " "cassant ces liens lors d'une écriture pour mettre en place un mécanisme de " "« copy-on-write ». <command>pbuilder</command> utilisé via " "<command>cowdancer</command> semble beaucoup plus rapide et constitue un " "point d'amélioration idéal. <command>cowbuilder</command> est un script " "autour de <command>pbuilder</command> permettant d'utiliser " "<command>cowdancer</command>. Celui-ci est disponible dans le paquet " "<command>cowdancer</command> depuis la version 0.14" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1439 msgid "Example command-lines for cowbuilder look like the following." msgstr "Voici quelques exemples pour utiliser cowbuilder." # type: Content of: <book><chapter><sect1><para><screen> #. type: Content of: <book><chapter><sect1><para><screen> #: pbuilder-doc.xml:1443 #, fuzzy, no-wrap msgid "" "# cowbuilder --create --distribution sid\n" "# cowbuilder --update --distribution sid\n" "# cowbuilder --build XXX.dsc" msgstr "" "# cowbuilder --create --distribution sid\n" "# cowbuilder --update --distribution sid\n" "# cowbuilder --build XXX.dsc" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1448 #, fuzzy msgid "" "It is also possible to use cowdancer with pdebuild command. Specify with " "command-line option <option>--pbuilder</option> or set it in " "PDEBUILD_PBUILDER configuration option." msgstr "" "Il est également possible d'utiliser cowdancer avec la commande pdebuild. " "Utilisez l'option" # type: Content of: <book><chapter><sect1><para><screen> #. type: Content of: <book><chapter><sect1><para><screen> #: pbuilder-doc.xml:1454 #, fuzzy, no-wrap msgid "$ pdebuild --pbuilder cowbuilder" msgstr "$ pdebuild --pbuilder cowbuilder" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1458 msgid "Using pbuilder without tar.gz" msgstr "Utilisation de pbuilder sans tar.gz" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1460 #, fuzzy msgid "" "The <command><option>--no-targz</option></command> option of " "<command>pbuilder</command> will allow usage of <command>pbuilder</command> " "in a different way from conventional usage. It will try to use an existing " "chroot, and will not try to clean up after working on it. It is an " "operation mode more like <command>sbuild</command>." msgstr "" "</command> de <command>pbuilder</command> permet l'utilisation de " "<command>pbuilder</command> d'une manière différente. Cela permet d'utiliser " "un environnement de base existant et n'essaiera pas de le nettoyer après " "avoir terminé les opérations. C'est un mode de fonctionnement plus proche de " "<command>sbuild</command>." # type: Content of: <book><chapter><sect1><para><screen> #. type: Content of: <book><chapter><sect1><para><screen> #: pbuilder-doc.xml:1474 #, fuzzy, no-wrap msgid "" "# pbuilder create --distribution lenny --no-targz --basetgz /chroot/lenny\n" "# pbuilder create --distribution squeeze --no-targz --basetgz /chroot/squeeze\n" "# pbuilder create --distribution sid --no-targz --basetgz /chroot/sid" msgstr "" "# pbuilder create --distribution etch --no-targz --basetgz /chroot/etch\n" "# pbuilder create --distribution lenny --no-targz --basetgz /chroot/lenny\n" "# pbuilder create --distribution sid --no-targz --basetgz /chroot/sid" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1471 #, fuzzy msgid "" "It should be possible to create base chroot images for <command>dchroot</" "command> with the following commands: <placeholder type=\"screen\" id=\"0\"/>" msgstr "" "Il est possible de créer des environements de base pour <command>dchroot</" "command> à l'aide des commandes suivantes :" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1480 msgid "Using pbuilder in a vserver" msgstr "Utilisation de pbuilder dans un vserver" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1482 msgid "" "It is possible to use <command>pbuilder</command> in a vserver environment. " "This requires either vserver-patches in version 2.1.1-rc14 or higher, or a " "Linux kernel version 2.6.16 or higher." msgstr "" "Il est possible d'utiliser <command>pbuilder</command> dans un vserver. Cela " "nécessite soit le paquet vserver-patches en version 2.1.1-rc14 ou plus " "récent ou bien un noyau Linux 2.6.16 ou plus récent." # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1487 msgid "" "To use <command>pbuilder</command> in a vserver, you need to set the " "<command>secure_mount</command> <command>CAPS</command> in the " "<command>ccapabilities</command> of this vserver." msgstr "" "Pour utiliser la commande <command>pbuilder</command> dans un vserver, vous " "avez besoin de placer le <command>CAPS</command> <command>secure_mount</" "command> dans les <command>ccapabilities</command> de ce vserver." #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1493 msgid "Usage of ccache" msgstr "" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1495 msgid "" "It is possible to use C compiler cache <command>ccache</command> to speed up " "repeated builds of the same package (or packages that compile the same files " "multiple times for some reason). Using <command>ccache</command> can speed " "up repeated building of large packages dramatically, at the cost of some " "disk space and bookkeeping." msgstr "" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1503 msgid "" "To enable usage of <command>ccache</command> with <command>pbuilder</" "command>, you should set CCACHEDIR in your pbuilderrc file." msgstr "" #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1508 msgid "" "Current implementation of ccache support has several bugs, that CCACHEDIR " "must be owned by the pbuilder build user, and parallel runs of pbuilder is " "not supported. Therefore it is not enabled by default." msgstr "" # type: Content of: <book><chapter><title> #. type: Content of: <book><chapter><title> #: pbuilder-doc.xml:1516 msgid "Reference materials" msgstr "Documents de référence" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1518 msgid "Directory structure outside the chroot" msgstr "Structure des répertoires à l'extérieur de l'environnement de base" # type: Content of: <book><chapter><sect1><table><title> #. type: Content of: <book><chapter><sect1><table><title> #: pbuilder-doc.xml:1520 msgid "Directory Structure outside the chroot" msgstr "Structure des répertoires à l'extérieur de l'environnement de base" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1532 #, fuzzy msgid "<filename>/etc/pbuilderrc</filename>" msgstr "" "Tout d'abord, mettez en place un fichier <filename>$HOME/.pbuilderrc</" "filename> ressemblant à ceci :" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1533 msgid "configuration file" msgstr "fichier de configuration" #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1536 msgid "<filename>/usr/share/pbuilder/pbuilderrc</filename>" msgstr "" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1537 msgid "Default configuration" msgstr "Configuration par défaut" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1540 #, fuzzy msgid "<filename>/var/cache/pbuilder/base.tgz</filename>" msgstr "" "De cette façon, vous pouvez utiliser <filename>deb file:/var/cache/pbuilder/" "result</filename>" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1541 msgid "" "Default location pbuilder uses for base.tgz, the tar-ball containing a basic " "Debian installation with only the build-essential packages." msgstr "" "Emplacement par défaut utilisé par pbuilder pour le fichier base.tgz " "contenant l'environnement de base constitué uniquement des paquets " "essentiels pour la construction des paquets." # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1546 #, fuzzy msgid "<filename>/var/cache/pbuilder/build/PID/</filename>" msgstr "" "De cette façon, vous pouvez utiliser <filename>deb file:/var/cache/pbuilder/" "result</filename>" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1547 msgid "Default location pbuilder uses for chroot" msgstr "Emplacement par défaut utilisé pour l'image de base" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1550 #, fuzzy msgid "<filename>/var/cache/pbuilder/aptcache</filename>" msgstr "" "De cette façon, vous pouvez utiliser <filename>deb file:/var/cache/pbuilder/" "result</filename>" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1551 msgid "" "Default location <command>pbuilder</command> will use as apt cache, to store " "deb packages required during <command>pbuilder</command> build." msgstr "" "Emplacement par défaut utilisé par pbuilder pour le cache apt pour stocker " "les paquets Debian pendant le processus de construction." # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1554 pbuilder-doc.xml:1638 #, fuzzy msgid "<filename>/var/cache/pbuilder/ccache</filename>" msgstr "" "De cette façon, vous pouvez utiliser <filename>deb file:/var/cache/pbuilder/" "result</filename>" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1555 #, fuzzy msgid "Default location <command>pbuilder</command> will use as cache location" msgstr "" "Emplacement par défaut où <command>pbuilder</command> place les paquets et " "les autres fichiers créés après la construction" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1559 #, fuzzy msgid "<filename>/var/cache/pbuilder/result</filename>" msgstr "" "De cette façon, vous pouvez utiliser <filename>deb file:/var/cache/pbuilder/" "result</filename>" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1560 msgid "" "Default location <command>pbuilder</command> puts the deb files and other " "files created after build" msgstr "" "Emplacement par défaut où <command>pbuilder</command> place les paquets et " "les autres fichiers créés après la construction" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1563 #, fuzzy msgid "<filename>/var/cache/pbuilder/pbuilder-umlresult</filename>" msgstr "" "De cette façon, vous pouvez utiliser <filename>deb file:/var/cache/pbuilder/" "result</filename>" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1564 msgid "" "Default location <command>pbuilder-user-mode-linux</command> puts the deb " "files and other files created after build" msgstr "" "Emplacement par défaut où <command>pbuilder-user-mode-linux</command> place " "les paquets et les autres fichiers créés après la construction" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1567 #, fuzzy msgid "<filename>/var/cache/pbuilder/pbuilder-mnt</filename>" msgstr "" "De cette façon, vous pouvez utiliser <filename>deb file:/var/cache/pbuilder/" "result</filename>" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1568 msgid "" "Default location <command>pbuilder-user-mode-linux</command> uses for " "mounting the COW file system, for chrooting." msgstr "" "Emplacement par défaut où <command>pbuilder-user-mode-linux</command> monte " "le système de fichiers COW pour l'environnement de base." # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1571 #, fuzzy msgid "<filename>/tmp</filename>" msgstr "Lien symbolique vers <filename>/proc/mounts</filename>." # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1572 msgid "<command>pbuilder-user-mode-linux</command> will mount tmpfs for work." msgstr "<command>pbuilder-user-mode-linux</command> montera le tmpfs ici." #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1575 msgid "<filename>${HOME}/tmp/PID.cow</filename>" msgstr "" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1576 msgid "" "<command>pbuilder-user-mode-linux</command> use this directory for location " "of COW file system." msgstr "" "<command>pbuilder-user-mode-linux</command> utilise ce répertoire comme " "emplacement pour le système de fichiers COW." #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1579 msgid "<filename>${HOME}/uml-image</filename>" msgstr "" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1580 msgid "" "<command>pbuilder-user-mode-linux</command> use this directory for user-mode-" "linux full disk image." msgstr "" "<command>pbuilder-user-mode-linux</command> utilise ce répertoire pour " "placer l'image disque pour user-mode-linux." # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1587 msgid "Directory structure inside the chroot" msgstr "Structure des répertoires à l'intérieur de l'image de base" # type: Content of: <book><chapter><sect1><table><title> #. type: Content of: <book><chapter><sect1><table><title> #: pbuilder-doc.xml:1589 msgid "Directory Structure inside the chroot" msgstr "Structure des répertoires à l'intérieur de l'image de base" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1601 #, fuzzy msgid "<filename>/etc/mtab</filename>" msgstr "Lien symbolique vers <filename>/proc/mounts</filename>." # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1603 msgid "symlink to <filename>/proc/mounts</filename>." msgstr "Lien symbolique vers <filename>/proc/mounts</filename>." # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1607 #, fuzzy msgid "<filename>/tmp/buildd</filename>" msgstr "Lien symbolique vers <filename>/proc/mounts</filename>." # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1608 #, fuzzy msgid "" "Default place used in <command>pbuilder</command> to place the Debian " "package to be processed. <filename>/tmp/buildd/packagename-version/</" "filename> will be the root directory of the package being processed. HOME " "environment variable is set to this value inside chroot by pbuilder-" "buildpackage. <option>--inputfile</option> will place files here." msgstr "" "Emplacement par défaut utilisé par <command>pbuilder</command> pour mettre " "les paquets Debian à traiter. <filename>/tmp/buildd/packagename-version/</" "filename> sera le répertoire racine pour le paquet à traiter. La variable " "d'environnement HOME est initialisée par pbuilder-buildpackage à cette " "valeur à l'intérieur de l'environnement de base." # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1618 #, fuzzy msgid "<filename>/runscript</filename>" msgstr "Lien symbolique vers <filename>/proc/mounts</filename>." # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1619 msgid "" "The script passed as an argument to <command>pbuilder</command> execute is " "passed on." msgstr "" "Le script utilisé comme argument pour <command>pbuilder execute</command> " "est placé ici." # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1625 #, fuzzy msgid "<filename>/tmp/hooks</filename>" msgstr "Lien symbolique vers <filename>/proc/mounts</filename>." # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1627 msgid "The location of hooks." msgstr "Emplacement des crochets." # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1631 #, fuzzy msgid "<filename>/var/cache/apt/archives</filename>" msgstr "Utiliser /var/cache/apt/archives comme cache pour les paquets" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1633 msgid "" "<command>pbuilder</command> copies the content of this directory to and from " "the aptcache directory of outside chroot." msgstr "" "<command>pbuilder</command> copie le contenu de ce répertoire depuis et vers " "le répertoire aptcache à l'extérieur de l'environnement de base." # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1640 #, fuzzy msgid "" "<command>pbuilder</command> bind-mounts this directory for use by ccache." msgstr "" "<command>pbuilder-user-mode-linux</command> utilise ce répertoire pour " "placer l'image disque pour user-mode-linux." # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1645 #, fuzzy msgid "<filename>/tmp/XXXX</filename>" msgstr "Lien symbolique vers <filename>/proc/mounts</filename>." # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1646 msgid "" "<command>pbuilder-user-mode-linux</command> uses a script in <filename>/tmp</" "filename> to bootstrap into user-mode-linux" msgstr "" "<command>pbuilder-user-mode-linux</command> utilise un script dans " "<filename>/tmp</filename> pour le démarrage initial dans user-mode-linux" # type: Content of: <book><chapter><title> #. type: Content of: <book><chapter><title> #: pbuilder-doc.xml:1656 msgid "Minor archaeological details" msgstr "Quelques détails archéologiques mineurs" # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1658 msgid "Documentation history" msgstr "Historique de la documentation" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1660 msgid "" "This document was started on 28 Dec 2002 by Junichi Uekawa, trying to " "document what is known about <command>pbuilder</command>." msgstr "" "Ce document a été commencé le 28 décembre 2002 par Junichi Uekawa qui " "essayait de documenter ce qui était connu à propos de <command>pbuilder</" "command>." # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1665 msgid "" "This documentation is available from the <command>pbuilder</command> source " "tar-ball, and from the git repository of <command>pbuilder</command> (web-" "based access is possible). A copy of this documentation can be found on the " "<ulink url=\"http://pbuilder.alioth.debian.org/pbuilder-doc.html\">Alioth " "project page for pbuilder</ulink>. <ulink url=\"http://pbuilder.alioth." "debian.org/pbuilder-doc.pdf\">There is also a PDF version</ulink>. The " "homepage for <command>pbuilder</command> is <ulink url=\"http://pbuilder." "alioth.debian.org/\"> http://pbuilder.alioth.debian.org/ </ulink> hosted by " "alioth project." msgstr "" "Cette documentation est disponible dans les sources de <command>pbuilder</" "command> et depuis le dépôt git de <command>pbuilder</command> (un accès web " "est possible). Une copie de cette documentation peut être trouvée sur <ulink " "url=\"http://pbuilder.alioth.debian.org/pbuilder-doc.html\">la page du " "projet Alioth pour pbuilder</ulink>. Il existe une <ulink utl=\"http://" "pbuilder.alioth.debian.org/pbuilder-doc.pdf\">version en PDF</ulink>. La " "page d'accueil pour <command>pbuilder</command> est <ulink url=\"http://" "pbuilder.alioth.debian.org/\">http://pbuilder.alioth.debain.org/ </ulink> " "hébergée par le projet alioth." # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1676 msgid "" "Documentation is written using DocBook XML, with emacs PSGML mode, and using " "wysidocbookxml for live previewing." msgstr "" "La documentation est écrite avec DocBook XML, en utilisant le mode PSGML " "d'Emacs et wysidocbookxml pour la prévisualisation en direct." # type: Content of: <book><chapter><sect1><title> #. type: Content of: <book><chapter><sect1><title> #: pbuilder-doc.xml:1682 msgid "Possibly inaccurate Background History of pbuilder" msgstr "Histoire peut-être incorrecte de pbuilder" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1684 msgid "" "The following is a most possibly inaccurate account of how " "<command>pbuilder</command> came to happen, and other attempts to make " "something like <command>pbuilder</command> happen. This part of the " "document was originally in the AUTHORS file, to give credit to those who " "existed before <command>pbuilder</command>." msgstr "" "Ce qui suit explique, de manière sans doute incorrecte, comment " "<command>pbuilder</command> a vu le jour et les autres tentatives pour " "obtenir quelque chose de similaire. Cette partie de la documentation se " "trouvait initialement dans le fichier AUTHORS pour citer ceux qui existaient " "avant <command>pbuilder</command>." # type: Content of: <book><chapter><sect1><sect2><title> #. type: Content of: <book><chapter><sect1><sect2><title> #: pbuilder-doc.xml:1691 msgid "The Time Before pbuilder" msgstr "L'avant pbuilder" # type: Content of: <book><chapter><sect1><sect2><para> #. type: Content of: <book><chapter><sect1><sect2><para> #: pbuilder-doc.xml:1693 msgid "" "There was once dbuild, which was a shell script to build Debian packages " "from source. Lars Wirzenius wrote that script, and it was good, short, and " "simple (probably). There was nothing like build-depends then (I think), and " "it was simple. It could have been improved, I could only find references " "and no actual source." msgstr "" "Il était une fois dbuild qui était un script pour construire des paquets " "Debian depuis les sources. Lars Wirzenius a écrit ce script qui était bon, " "court et simple (probablement). Il n'y avait rien qui ressemblait aux " "dépendances source (à mon avis) et il était simple. Il aurait pu être " "amélioré mais je n'ai trouvé que des citations et non le code source." # type: Content of: <book><chapter><sect1><sect2><para> #. type: Content of: <book><chapter><sect1><sect2><para> #: pbuilder-doc.xml:1700 msgid "" "debbuild was probably written by James Troup. I don't know it because I have " "never seen the actual code, I could only find some references to it on the " "net, and mailing list logs." msgstr "" "debbuild était probablement écrit par James Troup. Je n'en suis pas sûr car " "je n'ai jamais trouvé le code source. Je n'ai trouvé que quelques citations " "sur le net et dans les archives des listes de diffusion." # type: Content of: <book><chapter><sect1><sect2><para> #. type: Content of: <book><chapter><sect1><sect2><para> #: pbuilder-doc.xml:1705 msgid "" "sbuild is a perl script to build Debian packages from source. It parses " "Build-Depends, and performs other miscellaneous checks, and has a lot of " "hacks to actually get things building, including a table of what package to " "use when virtual packages are specified (does it do that still?). It " "supports the use of a local database for packages which do not have build-" "dependencies. It was written by Ronan Hodek, and I think it was patched and " "fixed and extended by several people. It is part of wanna-build, and used " "extensively in the Debian buildd system. I think it was maintained mostly by " "Ryan Murray." msgstr "" "sbuild est un script écrit en Perl pour construire les paquets Debian depuis " "les sources. Il prend en compte les dépendances source et effectue quelques " "vérifications supplémentaires et utilise un grand nombre d'astuces pour " "réussir à construire les paquets, y compris une table de correspondance " "entre les paquets virtuels et les paquets à effectivement installer. Il " "permet également l'utilisation d'une base locale de paquets qui n'ont pas de " "dépendances source. Il a été écrit par Ronan Hodek et je suppose qu'il a été " "corrigé et amélioré par de nombreuses personnes. Il fait partie de wanna-" "build et était très utilisé dans le système de construction automatique " "buildd de Debian. Je crois qu'il était maintenu principalement par Ryan " "Murray." # type: Content of: <book><chapter><sect1><sect2><title> #. type: Content of: <book><chapter><sect1><sect2><title> #: pbuilder-doc.xml:1719 msgid "Birth of pbuilder" msgstr "Naissance de pbuilder" # type: Content of: <book><chapter><sect1><sect2><para> #. type: Content of: <book><chapter><sect1><sect2><para> #: pbuilder-doc.xml:1721 msgid "" "wanna-build (sbuild) was (at the time of year 2001) quite difficult to set " "up, and it was never a Debian package. dbuild was something that predated " "Build-Depends." msgstr "" "wanna-build (sbuild) était (en 2001) particulièrement difficile à configurer " "et il n'est jamais devenu un paquet Debian. dbuild a permis de promouvoir " "l'usage des dépendances source." # type: Content of: <book><chapter><sect1><sect2><para> #. type: Content of: <book><chapter><sect1><sect2><para> #: pbuilder-doc.xml:1726 msgid "" "Building packages from source using Build-Depends information within a " "chroot sounded trivial; and <command>pbuilder</command> was born. It was " "initially a shell script with only a few lines, which called debootstrap and " "chroot and dpkg-buildpackage in the same run, but soon, it was decided that " "that's too slow." msgstr "" "Construire des paquets depuis les sources en respectant les dépendances " "source semblait trivial et <command>pbuilder</command> est né. C'était " "initialement un script shell de seulement quelques lignes qui appelait " "debootstrap, chroot et dpkg-buildpackage à chaque exécution. Mais il a été " "rapidement décidé que cette approche était trop lente." # type: Content of: <book><chapter><sect1><sect2><para> #. type: Content of: <book><chapter><sect1><sect2><para> #: pbuilder-doc.xml:1734 #, fuzzy msgid "" "Yes, and it took almost an year to get things somewhat right, and in the " "middle of the process, Debian 3.0 was released. Yay. Debian 3.0 wasn't " "completely buildable with <command>pbuilder</command>, but the amount of " "packages which are not buildable is steadily decreasing (I hope)." msgstr "" "Oui et cela a pris quasiment un an pour obtenir quelque chose de correct. Au " "milieu de ce processus, Debian 3.0 a été publié. Yay. Debian 3.0 ne pouvait " "pas être complètement construit à l'aide de <command>pbuilder</command> mais " "le nombre de paquets qui ne pouvaient pas être construits décroit rapidement." # type: Content of: <book><chapter><sect1><sect2><title> #. type: Content of: <book><chapter><sect1><sect2><title> #: pbuilder-doc.xml:1743 msgid "And the second year of its life" msgstr "Et la seconde année de sa vie" # type: Content of: <book><chapter><sect1><sect2><para> #. type: Content of: <book><chapter><sect1><sect2><para> #: pbuilder-doc.xml:1745 msgid "" "Someone wanted <command>pbuilder</command> to not run as root, and as User-" "mode-linux has become more useful as time passed, I've started experimenting " "with <command>pbuilder-user-mode-linux</command>. <command>pbuilder-user-" "mode-linux</command> has not stayed functional as much as I would have " "liked, and bootstrapping <command>user-mode-linux</command> environment has " "been pretty hard, due to the quality of user-mode-linux code or packaging at " "that time, which kept on breaking network support in one way or the other." msgstr "" "Quelqu'un voulait que <command>pbuilder</command> ne soit pas lancé sous " "l'utilisateur root et j'ai commencé à jouer avec <command>pbuilder-user-mode-" "linux</command>. Ce dernier n'est pas resté aussi fonctionnel que je " "l'aurais voulu et construire l'environnement <command>user-mode-linux</" "command> était très difficile en raison de la qualité du code de user-mode-" "linux ainsi que son empaquetage. Régulièrement, le support du réseau était " "cassé d'une façon ou d'une autre." # type: Content of: <book><chapter><sect1><sect2><title> #. type: Content of: <book><chapter><sect1><sect2><title> #: pbuilder-doc.xml:1758 msgid "Fifth year of pbuilder" msgstr "Cinq années de pbuilder" # type: Content of: <book><chapter><sect1><sect2><para> #. type: Content of: <book><chapter><sect1><sect2><para> #: pbuilder-doc.xml:1760 msgid "" "<command>pbuilder</command> is now widely adopted as a 'almost standard' " "tool for testing packages, and building packages in a pristine environment. " "There are other similar tools that do similar tasks, but they do not share " "the exact same goal. To commemorate this fact, <command>pbuilder</command> " "is now co-maintained with several people." msgstr "" "<command>pbuilder</command> est maintenant largement adopté comme un outil " "quasi standard pour tester les paquets et construire les paquets dans un " "environnement minimal. Il existe d'autres outils pour effectuer des tâches " "similaires mais ils n'ont pas exactement le même but. En mémoire, " "<command>pbuilder</command> est désormais co-maintenu par plusieurs " "personnes." # type: Content of: <book><chapter><sect1><sect2><para> #. type: Content of: <book><chapter><sect1><sect2><para> #: pbuilder-doc.xml:1768 msgid "" "<command>sbuild</command> is now a well-maintained Debian package within " "Debian, and with <command>pbuilder</command> being such a slow monster, some " "people prefer the approach of sbuild. Development to use LVM-snapshots, " "cowloop, or cowdancer is hoped to improve the situation somewhat." msgstr "" "<command>sbuild</command> est maintenant un paquet Debian bien maintenu. En " "raison de la lenteur de <command>pbuilder</command>, certaines personnes " "préfèrent l'approche de sbuild. Les développements visant à utilisant les " "instantanés LVM, cowloop ou cowdancer permettront sans doute d'améliorer " "cette situation." # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:123 msgid "" "<command>pbuilder update</command> will update the base.tgz. It will " "extract the chroot, invoke <command>apt-get update</command> and " "<command>apt-get dist-upgrade</command> inside the chroot, and then recreate " "the base.tgz (the base tar-ball.)" msgstr "" "<command>pbuilder update</command> permet de mettre à jour le fichier base." "tgz. Le contenu de ce dernier sera extrait, <command>apt-get update</" "command> et <command>apt-get dist-upgrade</command> seront invoqués à " "l'intérieur de l'environnement obtenu et le fichier base.tgz sera recréé." # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:271 msgid "" "<command>pbuilder</command> requires full root privilege when it is " "satisfying the build-dependencies, but most packages do not need root " "privilege to build, or even refused to build when they are built as root. " "<command>pbuilder </command> can create a user which is only used inside " "<command>pbuilder </command> and use that user id when building, and use the " "<command>fakeroot</command> command when root privilege is required." msgstr "" "<command>pbuilder</command> nécessite les privilèges du super-utilisateur " "pour satisfaire les dépendances de compilation mais la plupart des paquets " "n'ont pas besoin de ces privilèges pour se construire, voire peuvent refuser " "de se construire. <command>pbuilder</command> peut créer un utilisateur qui " "sera utilisé uniquement pour <command>pbuilder</command> et effectuer la " "construction des paquets sous cette identité. <command>fakeroot</command> " "sera utilisé lorsque les privilèges du super-utilisateur seront requis." # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #. type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #: pbuilder-doc.xml:426 msgid "" "Automatic install-remove-upgrade-remove-install-purge-upgrade-purge test-" "suite (distributed as an example, <filename>B91dpkg-i</filename>), or just " "check that everything installs somewhat (<filename>execute_installtest.sh</" "filename>)." msgstr "" "Tester automatiquement la séquence install-remove-upgrade-remove-install-" "purge-upgrade-purge test-suite (un exemple est fourni : <filename>B91dpkg-i</" "filename>) ou juste vérifier que quelque chose est effectivement installé " "(<filename>execute_installtest.sh</filename>)." # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:442 #, fuzzy msgid "" "To use B92test-pkg script, first, add it to your hook directory. " "<placeholder type=\"footnote\" id=\"0\"/>. The test files are shell scripts " "placed in <filename>debian/pbuilder-test/NN_name</filename> (where NN is " "number) following run-parts standard<placeholder type=\"footnote\" id=\"1\"/" "> for file names. After a successful build, packages are first tested for " "installation and removal, and then each test is ran inside the chroot. The " "current directory is the top directory of the source-code. This means you " "can expect to be able to use ./debian/ directory from inside your scripts." msgstr "" "</footnote> pour les noms de fichiers. Après une construction réussie, les " "paquets sont d'abord testés en les installant et en les retirant puis chaque " "test est exécuté dans l'image de base. Le répertoire courant est le " "répertoire contenant les sources. Cela signifie que vous pouvez vous " "attendre à pouvoir utiliser le répertoire ./debian/ depuis vos scripts." # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:463 msgid "" "Example scripts for use with pbuilder-test can be found in <filename>/usr/" "share/doc/pbuilder/examples/pbuilder-test</filename>" msgstr "" "Des scripts d'exemples pour pbuilder-test ont été placés dans <filename>/usr/" "share/doc/pbuilder/examples/pbuilder-test</filename>" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:788 msgid "" "It is possible to invoke a shell session after a build failure. Example " "hook script are provided as <filename>C10shell</filename> and " "<filename>C11screen</filename> scripts. C10shell script will start bash " "inside chroot, and C11screen script will start GNU screen inside the chroot." msgstr "" "Il est possible d'obtenir un shell après un problème de construction. Des " "crochets d'exemple sont fournis sous les noms <filename>C10shell</filename> " "et <filename>C11screen</filename>. Le script C10shell lancera bash dans " "l'environnement de base tandis que C11screen utilisera GNU screen." # type: Content of: <book><chapter><title> #. type: Content of: <book><chapter><title> #: pbuilder-doc.xml:1409 msgid "Experimental or wish-list features of pbuilder" msgstr "Fonctionnalités expérimentales ou souhaitées de pbuilder" # type: Content of: <book><chapter><sect1><para> #. type: Content of: <book><chapter><sect1><para> #: pbuilder-doc.xml:1417 msgid "" "LVM2 has a useful snapshot function that features Copy-on-write images. " "That could be used for <command>pbuilder</command> just as it can be used " "for the user-mode-linux <command>pbuilder</command> port. lvmpbuilder " "script in the examples directory implements such port. The scripts and " "documentation can be found under <filename>/usr/share/doc/pbuilder/examples/" "lvmpbuilder/</filename>" msgstr "" "LVM2 permet de créer des instantanés sous forme d'images « Copy-on-write ». " "Cette fonctionnalité peut être utilisée aussi bien pour <command>pbuilder</" "command> que pour le port pour user-mode-linux. Le script lvmpbuilder dans " "le répertoire des exemples exploite une telle fonctionnalité. Les scripts et " "la documentation associée se trouvent dans <filename>/usr/share/doc/pbuilder/" "examples/lvmpbuilder/</filename>" # type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #. type: Content of: <book><chapter><sect1><table><tgroup><tbody><row><entry> #: pbuilder-doc.xml:1612 #, fuzzy msgid "<filename>/run</filename>" msgstr "Lien symbolique vers <filename>/proc/mounts</filename>." # type: Content of: <book><chapter><sect1><title> #~ msgid "How to use ccache" #~ msgstr "Comment utiliser ccache" # type: Content of: <book><chapter><sect1><para><screen> #~ msgid "uid=1234" #~ msgstr "uid=1234" # type: Content of: <book><chapter><sect1><para> #, fuzzy #~ msgid "" #~ "To use <command>ccache</command> with <command>pbuilder</command>, use " #~ "the following configuration. Note that the directory used for CCACHE_DIR " #~ "needs to exist, and be writable by user within <command>chroot</" #~ "command>. The default user within <command>chroot</command> is " #~ "<placeholder type=\"screen\" id=\"0\"/>." #~ msgstr "" #~ "Pour utiliser <command>ccache</command> avec <command>pbuilder</command>, " #~ "utilisez la configuration suivante. Notez qu'il est nécessaire que le " #~ "répertoire utilisé pour CCACHE_DIR existe et l'utilisateur à l'intérieur " #~ "de l'image de base doit avoir les droits en écriture sur celui-ci. " #~ "L'utilisateur par défaut utilisé dans l'image de base est" # type: Content of: <book><chapter><sect1><para> #~ msgid "Example is provided as pbuilderrc.ccache." #~ msgstr "L'exemple suivant est disponible dans pbuilderrc.ccache." # type: Content of: <book><chapter><sect1><screen> #, fuzzy #~ msgid "" #~ "export CCACHE_DIR=\"/var/cache/pbuilder/ccache\"\n" #~ "export PATH=\"/usr/lib/ccache:${PATH}\"\n" #~ "\n" #~ "EXTRAPACKAGES=ccache\n" #~ "BINDMOUNTS=\"${CCACHE_DIR}\"" #~ msgstr "" #~ "export CCACHE_DIR=\"/var/cache/pbuilder/ccache\"\n" #~ "export PATH=\"/usr/lib/ccache:${PATH}\"\n" #~ "\n" #~ "EXTRAPACKAGES=ccache\n" #~ "BINDMOUNTS=\"${CCACHE_DIR}\"" # type: Content of: <book><bookinfo><date> #~ msgid "2007-5-27" #~ msgstr "27 mai 2007" # type: Content of: <book><bookinfo><abbrev> #~ msgid "pbuilder-doc" #~ msgstr "pbuilder-doc" # type: Content of: <book><chapter><sect1><para><command><option> #~ msgid "--distribution" #~ msgstr "--distribution" # type: Content of: <book><chapter><sect1><para> #~ msgid "</command> command-line option." #~ msgstr "</command>." # type: Content of: <book><chapter><sect1><para> #~ msgid "" #~ "</footnote> to use, and proxy configuration may be required to allow " #~ "access through HTTP. See the pbuilderrc.5 manual page for details." #~ msgstr "" #~ "</footnote> et, éventuellement, la configuration du proxy pour accéder au " #~ "miroir via HTTP. Référez-vous à la page de manuel pbuilderrc.5 pour plus " #~ "de détails." # type: Content of: <book><chapter><sect1><para><command> #~ msgid "" #~ "It is possible to switch the distribution which the base.tgz is targeted " #~ "at at this point. Specify <command>" #~ msgstr "" #~ "Il est possible de changer la distribution utilisée dans l'environnement " #~ "contenu dans base.tgz à ce niveau. Utilisez <command>" # type: Content of: <book><chapter><sect1><para><command><option> #~ msgid "--distribution <parameter>sid</parameter>" #~ msgstr "--distribution <parameter>sid</parameter>" # type: Content of: <book><chapter><sect1><para><command><option> #~ msgid "--override-config" #~ msgstr "--override-config" # type: Content of: <book><chapter><sect1><para><footnote> #~ msgid "</command> to change the distribution to sid. <footnote>" #~ msgstr "</command> pour changer la distribution pour « sid ». <footnote>" # type: Content of: <book><chapter><sect1><para><footnote> #, fuzzy #~ msgid "</footnote>" #~ msgstr "Cette section<footnote>" # type: Content of: <book><chapter><sect1><para><command> #~ msgid "To build a package inside the chroot, invoke <command>pbuilder build" #~ msgstr "" #~ "Pour construire un paquet dans l'environnement de base, invoquez " #~ "<command>pbuilder build" # type: Content of: <book><chapter><sect1><para><command><option> #~ msgid "whatever.dsc" #~ msgstr "paquet.dsc" # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para><command><option> #~ msgid "--buildresult" #~ msgstr "--buildresult" # type: Content of: <book><chapter><sect1><para><command> #~ msgid "The <command>" #~ msgstr "L'option <command>" # type: Content of: <book><chapter><sect1><para><command><option> #~ msgid "--basetgz" #~ msgstr "--basetgz" # type: Content of: <book><chapter><sect1><para> #~ msgid "</command> directory." #~ msgstr "</command>." # type: Content of: <book><chapter><sect1><para><option> #~ msgid "--use-pdebuild-internal" #~ msgstr "--use-pdebuild-internal" # type: Content of: <book><chapter><sect1><para> #~ msgid "" #~ "</command>. It will try to bind mount the working directory inside " #~ "chroot, and run <command>dpkg-buildpackage</command> inside. It has the " #~ "following characteristics, and is not yet the default mode of operation." #~ msgstr "" #~ "</command>. Le répertoire actuel sera alors attaché à l'intérieur de " #~ "l'environnement de base et <command>dpkg-buildpackage</command> sera " #~ "lancé dans celui-ci. Ce mode d'opération a les propriétés suivantes et " #~ "n'est pas encore utilisé par défaut." # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #~ msgid "</command> does not have any effect." #~ msgstr "</command> n'a aucun effet." # type: Content of: <book><chapter><sect1><para> #~ msgid "It is useful to use" #~ msgstr "Il est opportun d'utiliser l'option" # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para><command><option> #~ msgid "--configfile" #~ msgstr "--configfile" # type: Content of: <book><chapter><sect1><para><footnote> #~ msgid "" #~ "To use B92test-pkg script, first, add it to your hook directory. " #~ "<footnote>" #~ msgstr "" #~ "Pour utiliser le script B92test-pkg, ajoutez-le d'abord dans votre " #~ "répertoire de crochets. <footnote>" # type: Content of: <book><chapter><sect1><para><footnote> #~ msgid "" #~ "</footnote>. The test files are shell scripts placed in <filename>debian/" #~ "pbuilder-test/NN_name</filename> (where NN is number) following run-parts " #~ "standard<footnote>" #~ msgstr "" #~ "</footnote>. Les fichiers de tests sont des scripts placés dans " #~ "<filename>debian/pbuilder-test/NN_name</filename> (où NN est un nombre) " #~ "en respectant la convention de run-parts<footnote>" # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #~ msgid "" #~ "Some experimentation with configuration and running <command>rootstrap ~/" #~ "test.uml</command> to actually test it would be handy." #~ msgstr "" #~ "Faire quelques essais en utilisant <command>rootstrap ~/test.uml</" #~ "command>." # type: Content of: <book><chapter><sect1><para><itemizedlist><listitem><para> #~ msgid "Also, it needs to match the rootstrap configuration." #~ msgstr "Cela doit aussi correspondre à la configuration de rootstrap." # type: Content of: <book><chapter><sect1><para><itemizedlist><listitem><para><command> #~ msgid "Run <command>pbuilder-user-mode-linux" #~ msgstr "Exécutez <command>pbuilder-user-mode-linux" # type: Content of: <book><chapter><sect1><para><itemizedlist><listitem><para><command><option> #~ msgid "create --distribution sid" #~ msgstr "create --distribution sid" # type: Content of: <book><chapter><sect1><para><itemizedlist><listitem><para> #~ msgid "</command> to create the image." #~ msgstr "</command> pour créer l'image." # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #~ msgid "" #~ "</command>, and when trying to build packages placed under <filename>/" #~ "tmp</filename>." #~ msgstr "" #~ "</command> et lorsqu'on essaie de construire des paquets placés dans " #~ "<filename>/tmp</filename>." # type: Content of: <book><chapter><sect1><itemizedlist><listitem><para> #~ msgid "When using slirp, this problem does not exist." #~ msgstr "En utilisant slirp, ce problème n'existe pas." # type: Content of: <book><chapter><sect1><para><command> #~ msgid "" #~ "It is possible to use <command>pbuilder-user-mode-linux</command> for " #~ "other uses than just building Debian packages. <command>pbuilder-user-" #~ "mode-linux" #~ msgstr "" #~ "Il est possible de s'aider de <command>pbuilder-user-mode-linux</command> " #~ "pour autre chose que la construction de paquets Debian. <command>pbuilder-" #~ "user-mode-linux" # type: Content of: <book><chapter><sect1><para><command><option> #~ msgid "login" #~ msgstr "login" # type: Content of: <book><chapter><sect1><para><command> #~ msgid "" #~ "</command> will let a user use a shell inside the user-mode-linux " #~ "<command>pbuilder</command> base image, and <command>pbuilder-user-mode-" #~ "linux" #~ msgstr "" #~ "</command> permet d'obtenir un shell à l'intérieur de l'image de base et " #~ "<command>pbuilder-user-mode-linux" # type: Content of: <book><chapter><sect1><para><command><option> #~ msgid "execute" #~ msgstr "execute" # type: Content of: <book><chapter><sect1><para> #~ msgid "</command> will allow the user to execute a script inside the image." #~ msgstr "</command> permet d'exécuter une commande à l'intérieur de l'image." # type: Content of: <book><chapter><sect1><para> #~ msgid "It is also possible to add" #~ msgstr "Il est aussi possible de rajouter l'option" # type: Content of: <book><chapter><sect1><para><option> #~ msgid "--save-after-exec" #~ msgstr "--save-after-exec" # type: Content of: <book><chapter><sect1><para> #~ msgid "and/or" #~ msgstr "et/ou" # type: Content of: <book><chapter><sect1><para><option> #~ msgid "--save-after-login" #~ msgstr "--save-after-login" # type: Content of: <book><chapter><sect1><para> #~ msgid "" #~ "options to the <command>pbuilder login</command> session to accomplish " #~ "the goal. It is possible to add the" #~ msgstr "" #~ "à <command>pbuilder login</command> pour remplir cet objectif. Il est " #~ "également possible d'ajouter l'option" # type: Content of: <book><chapter><sect1><para><option> #~ msgid "--uml-login-nocow" #~ msgstr "--uml-login-nocow" # type: Content of: <book><chapter><sect1><para><command> #~ msgid "option to <command>pbuilder-user-mode-linux" #~ msgstr "à <command>pbuilder-user-mode-linux" # type: Content of: <book><chapter><sect1><para> #~ msgid "</command> session as well." #~ msgstr "</command>." # type: Content of: <book><chapter><sect1><para> #~ msgid "It is possible to set" #~ msgstr "Il est possible de placer" # type: Content of: <book><chapter><sect1><para> #~ msgid "in pbuilderrc. Take your pick." #~ msgstr "dans pbuilderrc. Choisissez." # type: Content of: <book><chapter><sect1><para><footnote> #~ msgid "This section<footnote>" #~ msgstr "Cette section<footnote>" # type: Content of: <book><chapter><sect1><para><command><option> #~ msgid "--othermirror" #~ msgstr "--othermirror" # type: Content of: <book><chapter><sect1><para><command> #~ msgid "</command> option. Try something like: <command>" #~ msgstr "</command>. Essayez quelque chose comme ceci : <command>" # type: Content of: <book><chapter><sect1><para><command><option> #~ msgid "" #~ "--othermirror \"deb http://local/mirror stable main|deb-src http://local/" #~ "source/repository ./\"" #~ msgstr "" #~ "--othermirror \"deb http://local/mirror stable main|deb-src http://local/" #~ "source/repository ./\"" # type: Content of: <book><chapter><sect1><para><command> #, fuzzy #~ msgid "</command>" #~ msgstr "L'option <command>" # type: Content of: <book><chapter><sect1><para><command><option> #~ msgid "--bindmounts" #~ msgstr "--bindmounts" # type: Content of: <book><chapter><sect1><para> #~ msgid "</command> is a command-line option useful for such cases." #~ msgstr "</command> est une option qui peut être utile dans de tels cas." # type: Content of: <book><chapter><sect1><para> #~ msgid "</footnote> setting PS1 in pbuilderrc worked." #~ msgstr "</footnote> placer la variable PS1 dans pbuilderrc fonctionnait." # type: Content of: <book><chapter><sect1><para> #~ msgid "To work around the problem, debootstrap has a" #~ msgstr "Pour contourner de tels problèmes, debootstrap a une option" # type: Content of: <book><chapter><sect1><para><option> #~ msgid "--variant fakechroot" #~ msgstr "--variant fakechroot" # type: Content of: <book><chapter><sect1><para> #~ msgid "option. Use that, so that ldd and ldconfig are overridden." #~ msgstr "" #~ ". Utilisez-la de façon à faire fonctionner correctement ldd et ldconfig." # type: Content of: <book><chapter><sect1><para><command> #~ msgid "" #~ "To sign a package marking for sponsorship, it is possible to use<command>" #~ msgstr "" #~ "Pour signer un paquet en vue d'un parrainage, il est possible d'utiliser " #~ "les options <command>" # type: Content of: <book><chapter><sect1><screen><command><option> #~ msgid "--auto-debsign" #~ msgstr "--auto-debsign" # type: Content of: <book><chapter><sect1><para><command> #~ msgid "</command> and <command>" #~ msgstr "</command> et <command>" # type: Content of: <book><chapter><sect1><screen><command><option> #~ msgid "--debsign-k" #~ msgstr "--debsign-k" # type: Content of: <book><chapter><sect1><para> #~ msgid "</command> options of <command>pdebuild</command>." #~ msgstr "</command> de <command>pdebuild</command>." # type: Content of: <book><chapter><sect1><para><command> #, fuzzy #~ msgid "<command>pdebuild" #~ msgstr "L'option <command>" # type: Content of: <book><chapter><sect1><para><command><option> #~ msgid "--arch" #~ msgstr "--arch" # type: Content of: <book><chapter><sect1><para> #~ msgid "" #~ "</command> option. Specifically, a command-line option like the " #~ "following will work." #~ msgstr "</command>. Une ligne de commande comme la suivante fonctionnera." # type: Content of: <book><chapter><sect1><para> #~ msgid "." #~ msgstr "." # type: Content of: <book><chapter><sect1><para><command> #~ msgid "" #~ "To report bugs, it would be important to have a log of what's going " #~ "wrong. Most of the time, adding a <command>" #~ msgstr "" #~ "Pour signaler un bogue, il est important d'avoir une trace montrant ce " #~ "qui ne va pas. La plupart du temps, ajouter l'option <command>" # type: Content of: <book><chapter><sect1><para><command><option> #~ msgid "--debug" #~ msgstr "--debug" # type: Content of: <book><chapter><sect1><para><option> #~ msgid "--pbuilder" #~ msgstr "--pbuilder" # type: Content of: <book><chapter><sect1><para> #~ msgid "or set it in PDEBUILD_PBUILDER configuration option." #~ msgstr "ou l'option de configuration PDEBUILD_PBUILDER." # type: Content of: <book><chapter><sect1><para><command><option> #~ msgid "--no-targz" #~ msgstr "--no-targz" # type: Content of: <book><chapter><sect1><para><option> #, fuzzy #~ msgid "--inputfile" #~ msgstr "--pbuilder" # type: Content of: <book><chapter><sect1><para> #~ msgid "" #~ "Please note <filename>${HOME}/.pbuilderrc</filename> supersede system " #~ "settings. For example, if you are upgrading from sarge to etch, you may " #~ "need to adjust some part of your local setting just like new <filename>/" #~ "usr/share/pbuilder/pbuilderrc</filename>, e.g., \"unset DEBOOTSTRAPOPTS" #~ "\", to cope with the use of cdebootstrap. The same care is needed if you " #~ "edited old system setting in <filename>/etc/pbuilderrc</filename>." #~ msgstr "" #~ "Il est important de noter que <filename>${HOME}/.pbuilderrc</filename> " #~ "est prioritaire sur les paramètres du système. Par exemple, en mettant à " #~ "jour de sarge vers etch, vous devrez peut-être ajuster certains " #~ "paramètres de votre configuration locale de la même façon que le nouveau " #~ "<filename>/usr/share/pbuilder/pbuilderrc</filename>, i.e \"unset " #~ "DEBOOTSTRAPOPTS\" pour s'adapter à l'utilisation de cdebootstrap. Si vous " #~ "avez édité <filename>/etc/pbuilderrc</filename>, les mêmes manipulations " #~ "sont nécessaires." # type: Content of: <book><chapter><sect1><para> #~ msgid "in your pbuilderrc file." #~ msgstr "dans votre fichier pbuilderrc." # type: Content of: <book><chapter><sect1><sect2><title> #~ msgid "Using cowdancer for sarge" #~ msgstr "Utilisation de cowdancer avec sarge" # type: Content of: <book><chapter><sect1><sect2><para> #~ msgid "" #~ "This section is mostly obsolete now that etch is released, but left for " #~ "reference, and will be removed after lenny release." #~ msgstr "" #~ "Cette section est pratiquement obsolète depuis la sortie de Etch mais est " #~ "laissée ici pour référence. Elle sera supprimée après la sortie de Lenny." # type: Content of: <book><chapter><sect1><sect2><para> #~ msgid "" #~ "cowdancer was introduced after the release of Debian sarge; if you want " #~ "to build packages for sarge with cowbuilder, you will need to workaround " #~ "its unavailability." #~ msgstr "" #~ "cowdancer a été conçu après la publication de Debian Sarge. Si vous " #~ "voulez construire des paquets pour Sarge avec cowbuilder, vous devez " #~ "contourner cette indisponibilité." # type: Content of: <book><chapter><sect1><sect2><para> #~ msgid "" #~ "One way to workaround the problem is to set APTCONFDIR in pbuilderrc to " #~ "point to a directory with a list of sources for APT which has both sarge " #~ "and sarge-backports." #~ msgstr "" #~ "Une façon de faire est de placer la variable APTCONFDIR dans pbuilderrc " #~ "de façon à pointer sur un répertoire contenant une liste de sources pour " #~ "sarge et sarge-backports." # type: Content of: <book><chapter><sect1><sect2><para><screen> #~ msgid "" #~ "$ cat sources.list\n" #~ "# sarge-backports\n" #~ "deb http://www.backports.org/debian sarge-backports main\n" #~ "deb-src http://www.backports.org/debian sarge-backports main\n" #~ "\n" #~ "# sarge\n" #~ "deb http://ftp.de.debian.org/debian sarge main\n" #~ "deb-src http://ftp.de.debian.org/debian sarge main" #~ msgstr "" #~ "$ cat sources.list\n" #~ "# sarge-backports\n" #~ "deb http://www.backports.org/debian sarge-backports main\n" #~ "deb-src http://www.backports.org/debian sarge-backports main\n" #~ "\n" #~ "# sarge\n" #~ "deb http://ftp.de.debian.org/debian sarge main\n" #~ "deb-src http://ftp.de.debian.org/debian sarge main" # type: Content of: <book><chapter><sect1><sect2><para> #~ msgid "" #~ "It is recommended to \"Pin\" the cowdancer package appropriately in this " #~ "case, via the APT preferences mechanism." #~ msgstr "" #~ "Dans ce cas, il est recommandé d'affecter une priorité appropriée au " #~ "paquet cowdancer à l'aide du mécanisme de préférences d'APT." # type: Content of: <book><chapter><sect1><sect2><para><screen> #~ msgid "" #~ "$ cat preferences\n" #~ "Explanation: use cowdancer from backports\n" #~ "Package: cowdancer\n" #~ "Pin: release a=sarge-backports\n" #~ "Pin-Priority: 950" #~ msgstr "" #~ "$ cat preferences\n" #~ "Explanation: use cowdancer from backports\n" #~ "Package: cowdancer\n" #~ "Pin: release a=sarge-backports\n" #~ "Pin-Priority: 950" # type: Content of: <book><chapter><sect1><para><footnote> #~ msgid "" #~ "When making changes, a description of the change targeted at developers " #~ "should be documented in <filename>ChangeLog</filename><footnote>" #~ msgstr "" #~ "Après tout changement, une description de celui-ci pour les autres " #~ "développeurs doit être documentée dans <filename>ChangeLog</" #~ "filename><footnote>" # type: Content of: <book><chapter><sect1><para><footnote><para> #~ msgid "ChangeLog is edited using emacs ChangeLog mode." #~ msgstr "ChangeLog est édité en utilisant le mode ChangeLog d'emacs." # type: Content of: <book><chapter><sect1><para> #~ msgid "" #~ "</footnote>, and committed. A brief summary of the change targeting end " #~ "users should be documented in <filename>debian/changelog</filename>, so " #~ "that users can see them. It is important to note that the description of " #~ "<filename>debian/changelog</filename> is targeted at users, and " #~ "<filename>ChangeLog</filename> is targeted at developers. For git commit " #~ "messages, a cut-n-paste of <filename>ChangeLog</filename> diff should be " #~ "enough." #~ msgstr "" #~ "</footnote> et soumise dans le dépôt. Un bref résumé du changement à " #~ "destination des utilisateurs doit être placé dans <filename>debian/" #~ "changelog</filename>. Il est important de noter que la description placée " #~ "dans <filename>debian/changelog</filename> est destinée aux utilisateurs " #~ "et que celle dans <filename>ChangeLog</filename> est destinée aux " #~ "développeurs. En ce qui concerne le message de soumission de git, un " #~ "copier/coller de <filename>ChangeLog</filename> doit être suffisant." ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������pbuilder-0.215ubuntu7/Documentation/pbuilder-doc.de.html��������������������������������������������0000664�0000000�0000000�00000317401�12312041170�020205� 0����������������������������������������������������������������������������������������������������ustar ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<html><head><meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"><title>Pbuilder-Benutzerhandbuch

Pbuilder-Benutzerhandbuch

Aufruf und Betrieb

Junichi Uekawa

Dokumentation in Entwicklung


Inhaltsverzeichnis

1. Einfhrung in Pbuilder
1. Ziele von Pbuilder
2. Pbuilder benutzen
1. Einen Basis-Chroot-Tarball erstellen
2. Das base.tgz aktualisieren
3. Ein Paket unter Benutzung von base.tgz bauen
4. Debian-Entwicklern das Tippen erleichtern, Pdebuild
5. Konfigurationsdateien
6. Pakete innerhalb der Chroot bauen ohne Root zu sein
7. Pbuilder zur Rckportierung benutzen
8. Massenhaft Pakete bauen
9. Automatische Rckportierungsskripte
10. Pbuilder fr das automatisierte Testen von Paketen benutzen
11. Pbuilder benutzen, um Builds mit alternativen Kompilern zu testen
3. User Mode Linux mit Pbuilder benutzen
1. User Mode Linux konfigurieren
2. Rootstrap konfigurieren
3. Pbuilder-uml konfigurieren
4. Betrachtungen, um Pbuilder-user-mode-linux auszufhren
5. Paralleles Ausfhren von Pbuilder-user-mode-linux
6. Pbuilder-user-mode-linux als Wrapper-Skript benutzen, um eine virtuelle Maschine zu starten
4. Hufig gestellte Fragen
1. Fehlschlagen des Erstellens mit Pbuilder
2. Verzeichnisse, bei denen kein Bind-Mount mglich ist
3. In Pbuilder anmelden, um Fehlschlagen des Builds zu untersuchen
4. In Pbuilder anmelden, um die Umgebung zu ndern
5. BUILDRESULTUID fr Sudo-Sitzungen setzen
6. Anmerkungen zum Gerauch von $TMPDIR
7. Ein Krzel erstellen, um pbuilder mit einer speziellen Distribution auszufhren.
8. Umgebungsvariablen benutzen, um pbuilder fr eine spezielle Distribution auszufhren.
9. Spezielle Listen von Apt-Quellen und lokale Pakete verwenden
10. Wie kann erreicht werden, dass Pbuilder apt-get update ausfhrt, bevor es versucht die Build-Abhngigkeiten zu erfllen?
11. Unterschiedliche Eingabeaufforderungen innerhalb der Pbuilder-Anmeldung
12. Eine Chroot-Erinnerung erstellen
13. /var/cache/apt/archives fr den Paket-Zwischenspeicher benutzen
14. Pbuilder auf Debian-Stable-Releases zurckportiert
15. Warnung, dass LOGNAME nicht definiert wurde
16. Build-Conflikt mit wesentlichem Paket nicht mglich
17. Vermeiden der Nachricht ln: Ungltiger Link ber Gertegrenzen hinweg
18. Fakechroot benutzen
19. Debconf innerhalb von Pbuilder-Sitzungen benutzen
20. nodev-Einhngeoptionen behindern Pbuilder-Aktivitt
21. Pbuilder ist langsam
22. Pdebuild zum Frdern eines Pakets benutzen
23. Warum liegt in ../ eine source.changes-Datei?
24. Die Modi amd64 und i386
25. Tmpfs fr buildplace benutzen
26. Svn-buildpackage zusammen mit Pbuilder benutzen
5. Fehlerbehebung und Entwicklung
1. Fehler berichten
2. Mailingliste
3. IRC-Kanal
4. Informationen fr Pbuilder-Entwickler
6. Andere Verwendungen von Pbuilder
1. Pbuilder fr kleine Experimente benutzen
2. Kleine Programme innerhalb der Chroot ausfhren
7. Experimental or wishlist features of pbuilder
1. LVM benutzen
2. Cowdancer benutzen
3. Pbuilder ohne tar.gz verwenden
4. PBuilder in einem Vserver verwenden
5. Gebrauch von Ccache
8. Referenzmaterial
1. Verzeichnisstruktur auerhalb der Chroot
2. Verzeichnisstruktur innerhalb der Chroot
9. Nebenschliche archologische Einzelheiten
1. Dokumentations-Chronik
2. Mglicherweise ungenaue Hintergrundgeschichte von Pbuilder
2.1. Zeit vor Pbuilder
2.2. Geburt von Pbuilder
2.3. Und sein zweites Lebensjahr
2.4. Das fnfte Jahr von Pbuilder

Kapitel 1. Einfhrung in Pbuilder

Inhaltsverzeichnis

1. Ziele von Pbuilder

1. Ziele von Pbuilder

pbuilder steht fr Personal Builder und ist ein automatisches System zum Bau von Debian-Paketen fr persnliche Entwickler-Arbeitsplatzumgebungen. Ziel von pbuilder ist es, ein einfach einzurichtendes System zum automatischen Bau von Debian-Paketen innerhalb einer Reinraumumgebung zu sein, so dass eine Prfung, ob ein Paket in den meisten Debian-Installationen gebaut werden kann, mglich ist. Die Reinraumumgebung wird durch den Gebrauch eines Chroot-Images erreicht, so dass nur eine minimale Zahl von Paketen innerhalb der Chroot installiert wird.

Die Distribution Debian besteht aus freier Software, die zusammen mit Quellen weitergegeben wird. Der Quellkode innerhalb Debians Bereich main muss innerhalb Debian-main gebaut werden, nur mit den explizit angegebenen installierten Build-Abhngigkeiten.

Das vorrangige Ziel von pbuilder unterscheidet sich von anderen automatischen Bausystemen in Debian darin, dass es nicht das Ziel hat, so viele Pakete wie mglich zu bauen. Es versucht nicht abzuschtzen, was ein Paket bentigt und probiert, wenn eine Auswahl zu treffen ist, in den meisten Fllen die schlechtest mgliche Auswahl von allen.

Auf diese Art versucht pbuilder sicherzustellen, dass Pakete, die mit pbuilder getestet wurden, auf den meisten Debian-Installationen ordentlich gebaut werden, was hoffentlich in einer guten umfassenden Erstellbarkeit von Debian aus den Quellen resultiert.

Das Ziel, Debian aus den Quellen erstellbar zu machen, ist einigermaen vollendet und hat gute Fortschritte gemacht. In frheren Zeiten, als Debian 3.0 aktuell war, gab es viele Probleme beim Bau aus den Quellen. Bei aktuelleren Versionen von Debian ist dies viel besser.

Kapitel 2. Pbuilder benutzen

Es gibt mehrere einfache Befehle fr den Betrieb. Normalerweise werden die Befehle pbuilder create, pbuilder update und pbuilder build benutzt. Sie werden nun nacheinander vorgestellt.

1. Einen Basis-Chroot-Tarball erstellen

pbuilder create wird einen Basis-Chroot-Tarball (base.tgz) erstellen. Alle anderen Befehle werden mit dem resultierenden base.tgz arbeiten. Falls das zu erstellende Debian-Release nicht sid sein wird (was Vorgabe ist), muss der Kodename der Distribution mit der Befehlszeilenoption --distribution angegeben werden.

debootstrap [1] wird benutzt, um die reine minimale Debian-Installation zu erstellen. Dann werden Build-essential-Pakete auf der minimalen Installation unter Benutzung von apt-get innerhalb der Chroot installiert.

Fr weitere Dokumentationen der Befehlszeilenoptionen lesen Sie die Handbuchseite pbuilder.8. Zur Benutzung wird manche Konfiguration von /etc/pbuilderrc fr die Spiegel-Site [2] ntig sein und es knnte notwendig sein, den Proxy zu konfigurieren, um Zugriff ber HTTP zu erlauben. Einzelheiten finden Sie in der Handbuchseite von pbuilderrc.5.

2. Das base.tgz aktualisieren

pbuilder update will update the base.tgz. It will extract the chroot, invoke apt-get update and apt-get dist-upgrade inside the chroot, and then recreate the base.tgz (the base tar-ball).

Es ist mglich, die Distribution zu wechseln auf die base.tgz an diesem Punkt verweist. Geben Sie --distribution sid --override-config an, um die Distribution auf Sid zu ndern. [3]

Weitere Dokumentationen der Befehlszeilenoptionen finden Sie auf der Handbuchseite pbuilder.8.

3. Ein Paket unter Benutzung von base.tgz bauen

Um ein Paket innerhalb der Chroot zu bauen, rufen Sie pbuilder build wasauchimmer.dsc auf. pbuilder wird das base.tgz in ein temporres Verzeichnis extrahieren, mit Chroot in das Verzeichnis wechseln, die Build-Abhngigkeiten erfllen und das Paket bauen. Das gebaute Paket wird in das Verzeichnis verschoben, das mit der Befehlszeilenoption --buildresult angegeben wurde.

Die Option --basetgz kann benutzt werden, um anzugeben, welche base.tgz benutzt werden soll.

pbuilder wird ein frisches Chroot-Basis-Image aus base.tgz extrahieren (base.tgz wird mit pbuilder create erstellt und mit pbuilder update aktualisiert). Die Chroot wird durch Auswertung von debian/control und Aufruf von apt-get mit Build-Abhngigkeiten bestckt.

Weitere Dokumentationen der Befehlszeilenoptionen finden Sie auf der Handbuchseite pbuilder.8.

4. Debian-Entwicklern das Tippen erleichtern, Pdebuild

pdebuild ist ein kleines Wrapper-Skript, das die hufigsten aller Aufgaben erledigt. Ein Debian-Entwickler knnte versuchen, debuild auszufhren und ein Paket innerhalb eines Debian-Quellverzeichnisses zu bauen. pdebuild wird eine hnliche Steuerung erlauben und ermglichen, dass Pakete innerhalb der Chroot gebaut werden, um zu prfen, ob der aktuelle Quellbaum geschickterweise innerhalb der Chroot gebaut wird.

pdebuild ruft zum Bau der Quellpakete dpkg-source und dann fr das resultierende Quellpaket pbuilder auf. Anders als bei Debuild knnen die resultierenden Deb-Dateien jedoch im mit --buildresult angegebenen Verzeichnis gefunden werden.

Weitere Einzelheiten finden Sie auf der Handbuchseite pdebuild.1.

Es gibt einen etwas anderen Betriebsmodus, der in pdebuild seit Version 0.97 verfgbar ist. pdebuild fhrt debian/rules clean normalerweise auerhalb der Chroot aus; es ist jedoch mglich, dieses Verhalten mit --use-pdebuild-internal zu ndern, damit es innerhalb der Chroot luft. Es wird versuchen, das Arbeitsverzeichnis innerhalb der Chroot einzuhngen und dpkg-buildpackage darin auszufhren. Es hat die folgenden Merkmale und ist noch nicht der Standardbetriebsmodus.

  • erfllt die Build-Abhngigkeiten innerhalb der Chroot, bevor das Quellpaket erstellt wird (was ein guter Punkt ist, den Standard-pdebuild nicht beherrscht)

  • Das Arbeitsverzeichnis wird von innerhalb der Chroot gendert.

  • Bauen mit pdebuild garantiert nicht, dass dies mit pbuilder funktioniert.

  • Falls das Erstellen des Quellpakets fehlschlgt, ist die Sitzung vergeudet, die die Chroot verwendet (Erstellen einer Chroot nimmt etwas Zeit in Anspruch, was mit Cowdancer verbessert werden sollte).

  • funktioniert nicht auf die gleiche Weise wie gewohnt; zum Beispiel hat --buildresult keine Auswirkungen.

  • Das Bauen innerhalb der Chroot ist mit dem aktuellen Benutzer auerhalb der Chroot ausgefhrt worden.

5. Konfigurationsdateien

Es ist mglich, alle Einstellungen mit Befehlszeilenoptionen anzugeben. Wegen des Eingabekomforts ist es jedoch mglich, eine Konfigurationsdatei zu benutzen.

Wenn pbuilder aufgerufen wird, werden /etc/pbuilderrc und ${HOME}/.pbuilderrc gelesen. Die mglichen Optionen sind in der Handbuchseite pbuilderrc.5 dokumentiert.

Es ist ntzlich, die Option --configfile zu benutzen, um eine voreingestellte Konfigurationsdatei zu laden, wenn zwischen Konfigurationsdateien verschiedener Distributionen gewechselt wird.

Bitte beachten Sie, dass ${HOME}/.pbuilderrc Systemeinstellungen aufhebt. Als Vorsichtsmanahme, wenn Sie ber irgendeine Konfiguration verfgen, mssen Sie die Konfiguration so optimieren, dass sie bei einem Upgrade mit neuen Versionen von Pbuilder funktioniert.

6. Pakete innerhalb der Chroot bauen ohne Root zu sein

pbuilder requires full root privilege when it is satisfying the build-dependencies, but most packages do not need root privilege to build, or even refused to build when they are built as root. pbuilder can create a user which is only used inside pbuilder and use that user id when building, and use the fakeroot command when root privilege is required.

Die Konfigurationsoption BUILDUSERID sollte auf einen Wert fr eine Benutzer-ID gesetzt werden, die noch nicht auf dem System existiert, so dass es fr Pakete, die mit pbuilder erstellt werden, schwieriger wird, die Umgebung auerhalb der Chroot zu beeinflussen. Wenn auerdem die Konfigurationsoption BUILDUSERNAME gesetzt ist, wird pbuilder den angegebenen Benutzernamen verwenden und zum Bauen von Paketen Fakeroot verwenden, anstatt es als Root innerhalb der Chroot auszufhren.

Sogar wenn die Fakeroot-Methode benutzt wird, wird pbuilder mit Root-Rechten ausgefhrt, wenn dies erforderlich ist. Wenn beispielsweise Pakete in die Chroot installiert werden, wird pbuilder mit Root-Rechten ausgefhrt.

Um pbuilder aufrufen zu knnen ohne Root zu sein, mssen Sie User Mode Linux benutzen, wie es unter Kapitel3, User Mode Linux mit Pbuilder benutzen erklrt wird.

7. Pbuilder zur Rckportierung benutzen

pbuilder kann benutzt werden, um Software von der letzten Debian-Distribution auf eine ltere stabile Version zurck zu portieren, indem eine Chroot benutzt wird, die ein Image der lteren Distribution enthlt, und die Pakete innerhalb der Chroot erstellt werden. Es sind mehrere Punkte zu beachten und wegen der folgenden Grnde ist automatische Rckportierung normalerweise nicht mglich und manuelle Interaktion erforderlich:

  • Das Paket von der Distribution Unstable knnte von Paketen oder Paketversionen abhngig sein, die nur in Unstable verfgbar sind. Daher ist es vielleicht nicht mglich, Build-Abhngigkeiten zu erfllen: auf Stable (ohne zustzliche Rckportierungsarbeiten).

  • Die Distribution Stable knnte Fehler haben, die in Unstable behoben wurden und an denen gearbeitet werden muss.

  • Das Paket in der Distribution Unstable knnte sogar Bauprobleme in Unstable haben.

8. Massenhaft Pakete bauen

pbuilder kann automatisiert werden, da seine Operationen nicht interaktiv sind. Es ist mglich, pbuilder fr mehrere Pakete ohne Benutzerinteraktion auszufhren. Es ist bekannt, dass mehrere solche Skripte existieren. Junichi Uekawa fhrt solch ein Skript seit 2001 aus und reichte Fehlerberichte gegen Pakete ein, die beim Test von pbuilder scheiterten. Es gab mehrere Probleme beim automatischen Erstellen:

  • Build-Abhngigkeiten mussten interaktiv installiert werden, aber einige Pakete waren so kaputt, dass sie nicht ohne einzugreifen installiert werden konnten (wie PostgreSQL).

  • Wenn ein Bibliothekpaket, gcc/gcj/g++ oder sogar Bison kaputtging, wurde eine groe Zahl gescheiterter Builds gemeldet. (gcj-3.0, das kein javac hatte, Bison, das sich strenger verhielt, etc.)

  • Einige Leute waren ziemlich verrgert ber Berichte fehlgeschlagener Builds.

Die meisten anfnglichen Fehler wurden im pbuilder-Kehraus um das Jahr 2002 gelst, aber von Zeit zu Zeit treten einige bergangsprobleme auf, die eine groe Zahl von Debian-Archiven beeinflussen.Regressionstests haben ihren Preis.

Ein Skript, das in der anfnglichen Ausfhrung von Junichi Uekawa benutzt wurde, ist im nun verbreiteten pbuilder als pbuildd.sh enthalten. Es liegt in /usr/share/doc/pbuilder/examples/pbuildd/ und seine Konfiguration liegt in /etc/pbuilder/pbuildd-config.sh. Es sollte einfach genug fr Leute einzurichten sein, die in pbuilder eingearbeitet sind. Es lief ziemlich lange und es sollte mglich sein, es auch auf Ihrem System einzurichten. Diese Version des Kodes ist nicht die am meisten getestete, sollte aber als Startpunkt funktionieren.

Um Pbuildd einzurichten, gibt es einige wissenswerte Punkte.

  • Um das Bauen zu verhindern, muss in der Paketliste eine ./avoidlist-Datei verfgbar sein.

  • Es wird versuchen alles zu erstellen, sogar Pakete, die nicht fr Ihre Architektur gedacht sind.

  • Da Sie zufllige Build-Skripte ausfhren, ist es besser, die Fakeroot-Option von pbuilder zu benutzen, um zu verhindern, dass das Bauen mit Root-Rechten ausgefhrt wird.

  • Da nicht alle Builds garantiert in einer endlichen Zeit beendet sind, ist es wahrscheinlich ntig, eine Zeitberschreitung festzulegen, ansonsten knnte Pbuildd bei einem schlechten Build zum Stillstand kommen.

  • Einige Pakete bentigen viel Plattenplatz. Circa zwei Gigabyte scheinen fr den Augenblick ausreichend zu sein. Falls Sie etwas anderes entdecken, informieren Sie bitte auf Englisch den Betreuer dieser Dokumentation.

9. Automatische Rckportierungsskripte

Es gibt einige Leute, die pbuilder benutzen, um eine Teilmenge von Paketen automatisch auf die Distribution Stable zurckzuportieren.

Informationen darber, wie Leute dies tun wren wnschenswert. Rckmeldungen oder Informationen, wie dies getan wird oder irgendwelche Beispiele wrden begrt.

10. Pbuilder fr das automatisierte Testen von Paketen benutzen

pbuilder kann benutzt werden, um Pakete automatisch zu testen. Es hat die Eigenschaft, das Platzieren von Hooks zu erlauben. Diese Hooks knnen innerhalb der Chroot versuchen, Pakete zu installieren, sie auszufhren oder was auch immer sonst noch getan werden kann. Einige bekannte Tests und Ideen:

  • Automatic install-remove-install-purge-upgrade-remove-upgrade-purge test-suite (distributed as an example, B91dpkg-i), or just check that everything installs somewhat (execute_installtest.sh).

  • Automatisch Lintian ausfhren (verteilt als Beispiel in /usr/share/doc/pbuilder/examples/B90lintian).

  • Automatischer Debian-Test des Pakets? Das Paket debian-test wurde aus Debian entfernt. Eine pbuilder-Implementierung kann als debian/pbuilder-test-Verzeichnis gefunden werden, implementiert durch das Skript B92test-pkg.

To use B92test-pkg script, first, add it to your hook directory. [4]. The test files are shell scripts placed in debian/pbuilder-test/NN_name (where NN is a number) following run-parts standard[5] for file names. After a successful build, packages are first tested for installation and removal, and then each test is ran inside the chroot. The current directory is the top directory of the source-code. This means you can expect to be able to use ./debian/ directory from inside your scripts.

Example scripts for use with pbuilder-test can be found in /usr/share/doc/pbuilder/examples/pbuilder-test.

11. Pbuilder benutzen, um Builds mit alternativen Kompilern zu testen

Die meisten Pakete werden mit gcc oder g++ kompiliert und benutzen die Standardkompilerversion. Diese war fr Debian GNU/Linux 3.0 (i386) Gcc 2.95. Debian 3.0 wurde jedoch mit anderen Kompilern unter Paketnamen wie gcc-3.2 fr die Gcc-Kompilerversion 3.2 weitergegeben. Es war daher mglich, zu versuchen, Pakete mit verschiedenen Kompilerversionen zu kompilieren. pentium-builder stellt eine Infrastruktur bereit, um einen anderen Kompiler als den vorgegebenenen Gcc zum Bau von Paketen zu benutzen, indem es ein Wrapper-Skript bereitstellt, das Gcc heit und den echten Gcc aufruft. Um pentium-builder in pbuilder zu benutzen, ist es mglich das Folgende in der Konfiguration einzurichten:

EXTRAPACKAGES="pentium-builder gcc-3.2 g++-3.2"
export DEBIAN_BUILDARCH=athlon
export DEBIAN_BUILDGCCVER=3.2

Es wird pbuilder anweisen, das Paket pentium-builder und auerdem die GCC 3.2-Kompilerpakete innerhalb der Chroot zu installieren und die zum Funktionieren von pentium-builder bentigten Umgebungsvariablen zu setzen.



[1] debootstrap oder cdebootstrap knnen ausgewhlt werden

[2] Die Spiegel-Site sollte mglichst ein lokaler Spiegel oder ein Zwischenspeicher-Server sein, damit die ffentlichen Spiegel nicht mit vielen Zugriffen berladen werden. Die Benutzung von Werkzeugen wie Apt-proxy ist empfehlenswert.

[3] Nur das Durchfhren von Upgrades wird untersttzt. Debian untersttzt generell (noch?) kein Downgrade.

[4] Es ist mglich, die Befehlszeilenoption --hookdir /usr/share/doc/pbuilder/examples anzugeben, um ebenfalls alle Beispiel-Hooks einzufgen.

[5] Siehe run-parts(8). Zum Beispiel kein . in Dateinamen!

Kapitel 3. User Mode Linux mit Pbuilder benutzen

Es ist mglich, User Mode Linux zu benutzen, indem pbuilder-user-mode-linux anstelle von pbuilder aufgerufen wird. pbuilder-user-mode-linux bentigt keine Root-Rechte und benutzt die Plattenzugriffsmethode Copy-on-write (COW) von User-mode-linux, die normalerweise wesentlich schneller ist als das traditionelle pbuilder.

User-mode-linux ist eine etwas weniger bewhrte Plattform als die Standard-Unix-Werkzeuge, auf denen pbuilder beruht (chroot, tar und gzip), aber ausgereift genug, um pbuilder-user-mode-linux seit der Version 0.59 zu untersttzen. Und seitdem hat pbuilder-user-mode-linux eine schnelle Entwicklung durchlebt.

Die Konfiguration von pbuilder-user-mode-linux erfolgt in folgenden Schritten:

  • Konfiguration von User Mode Linux

  • Konfiguration von Rootstrap

  • Konfiguration von Pbuilder-uml

1. User Mode Linux konfigurieren

Die Einrichtung von User Mode Linux ist nicht ganz einfach. Es wre wahrscheinlich ntzlich, wenn Sie sich selbst ein wenig darber informieren, bevor Sie versuchen rootstrap oder pbuilder-user-mode-linux zu benutzen. Um Einzelheiten zu erfahren, lesen Sie /usr/share/doc/uml-utilities/README.Debian und die Dokumentation von user-mode-linux. (Sie liegt in einem gesonderten Paket, user-mode-linux-doc.)

user-mode-linux erfordert, dass der Benutzer der Gruppe uml-net angehrt, um das Netzwerk zu konfigurieren, auer wenn Sie Slirp benutzen.

Falls Sie Ihren eigenen Kernel kompilieren, mchten Sie mglicherweise berprfen, ob Sie Untersttzung fr TUN/TAP aktiviert haben und den SKAS-Patch betrachten.

2. Rootstrap konfigurieren

rootstrap ist ein Wrapper um Debootstrap. Er erstellt ein Debian-Platten-Image zur Benutzung mit UML. Um Rootstrap zu konfigurieren, gibt es mehrere Anforderungen.

  • Das Rootstrap-Paket installieren

  • Nur TUN/TAP: den Benutzer zur Gruppe uml-net hinzufgen, um Netzwerkzugriff zu gewhren

    adduser dancer uml-net

  • Nur TUN/TAP: prfen, ob der Kernel die TUN/TAP-Schnittstelle untersttzt oder, falls ntig, den Kernel neu komplilieren.

  • /etc/rootstrap/rootstrap.conf einrichten. Falls der aktuelle Rechner beispielsweise 192.168.1.2 ist, scheint es zu funktionieren, die folgenden Eintrge auf etwas wie das Folgende zu ndern.

    transport=tuntap
    interface=eth0
    gateway=192.168.1.1
    mirror=http://192.168.1.2:8081/debian
    host=192.168.1.198
    uml=192.168.1.199
    netmask=255.255.255.0

    Einige Experimente mit der Konfiguration und das Ausfhren von rootstrap ~/test.uml, um es tatschlich zu testen, wren praktisch.

    Die Benutzung vom Slirp erfordert weniger Konfiguration. Die Standardkonfiguration bringt ein funktionierendes Beispiel mit.

3. Pbuilder-uml konfigurieren

Das Folgende muss geschehen:

  • Installation des Pakets pbuilder-uml

  • Einrichten der Konfigurationsdatei /etc/pbuilder/pbuilder-uml.conf auf die folgende Weise. Sie unterscheidet sich bei Slirp.

    MY_ETH0=tuntap,,,192.168.1.198
    UML_IP=192.168.1.199
    UML_NETMASK=255.255.255.0
    UML_NETWORK=192.168.1.0
    UML_BROADCAST=255.255.255.255
    UML_GATEWAY=192.168.1.1
    PBUILDER_UML_IMAGE="/home/dancer/uml-image"

    Auerdem muss sie zur Rootstrap-Konfiguration passen.

  • Stellen Sie sicher, dass der Benutzer in BUILDPLACE schreiben darf. ndern Sie BUILDPLACE in der Konfigurationsdatei auf eine Stelle, auf die der Benutzer zugreifen kann.

  • Fhren Sie pbuilder-user-mode-linux create --distribution sid aus, um das Image zu erstellen.

  • Versuchen Sie pbuilder-user-mode-linux build auszufhren.

4. Betrachtungen, um Pbuilder-user-mode-linux auszufhren

pbuilder-user-mode-linux emuliert pbuilder grtenteils, es gibt aber einige Unterschiede.

  • pbuilder-user-mode-linux untersttzt noch nicht alle Optionen von pbuilder ordentlich. Dies ist ein Problem und wird angesprochen, whrend besondere Bereiche entdeckt werden.

  • /tmp wird innerhalb von pbuilder-user-mode-linux unterschiedlich gehandhabt. In pbuilder-user-mode-linux wird /tmp als Tmpfs innerhalb UML eingehngt, so dass der Zugriff auf Dateien unter /tmp von auerhalb des User Mode Linux nicht funktioniert. Es beeinflusst Optionen wie --configfile und wenn versucht wird, Pakete zu bauen, die unter /tmp liegen.

5. Paralleles Ausfhren von Pbuilder-user-mode-linux

Um pbuilder-user-mode-linux parallel auf einem System auszufhren, sind ein paar Dinge zu bercksichtigen.

  • Die Methoden zum Erstellen und Aktualisieren drfen nicht laufen, wenn ein Build-Prozess luft oder eine COW-Datei entkrftet wird.

  • Falls Sie Slirp nicht benutzen, mssen parallel laufende Prozesse von User Mode Linux unterschiedliche IP-Adressen haben. Der reine Versuch, pbuilder-user-mode-linux mehrmals auszufhren, wird dazu fhren, dass der Netzwerkzugriff fehlschlgt. Aber etwas wie das Folgende wird funktionieren:

    for IP in 102 103 104 105; do
      xterm -e pbuilder-user-mode-linux build --uml-ip 192.168.0.$IP \
        20030107/whizzytex_1.1.1-1.dsc &
    done

    Wenn Slirp benutzt wird, besteht dieses Problem nicht.

6. Pbuilder-user-mode-linux als Wrapper-Skript benutzen, um eine virtuelle Maschine zu starten

Es ist mglich, pbuilder-user-mode-linux fr andere Zwecke als nur das Bauen von Debian-Paketen zu verwenden. pbuilder-user-mode-linux login wird einem Benutzer ermglichen, eine Shell innerhalb des pbuilder-Basis-Images von User Mode Linux zu verwenden und pbuilder-user-mode-linux execute wird dem Benutzer ermglichen, ein Skript innerhalb des Images auszufhren.

Sie knnen das Skript benutzen, um SSH zu installieren und einen neuen Benutzer hinzuzufgen, so dass SSH-Zugriffe innerhalb von User Mode Linux mglich sind.

Beachten Sie, dass es nicht mglich ist, ein Skript von /tmp zu benutzen, da pbuilder-user-mode-linux ein Tmpfs unter /tmp einhngt.

Das folgende Beispielskript knnte ntzlich sein, um einen Sshd innerhalb von User Mode Linux zu starten.

#!/bin/bash

apt-get install -y ssh xbase-clients xterm
echo "Geben Sie das Root-Passwort ein"
passwd
cp /etc/ssh/sshd_config{,-}
sed 's/X11Forwarding.*/X11Forwarding yes/' /etc/ssh/sshd_config- > /etc/ssh/sshd_config

/etc/init.d/ssh restart
ifconfig
echo "Zum Beenden Eingabetaste drcken"
read

Kapitel 4. Hufig gestellte Fragen

Hier sind bekannte Probleme und hufig gestellte Fragen dokumentiert. Dieser Teil war anfangs in der Datei README.Debian verfgbar, wurde aber hierher verschoben.

1. Fehlschlagen des Erstellens mit Pbuilder

Es kommt hufig vor, dass pbuilder die letzte Chroot nicht erstellen kann. Versuchen Sie ein Upgrade von pbuilder und Debootstrap durchzufhren. Es ist derzeit nicht mglich, Software zu erstellen, die die Vergangenheit handhabt. Zukunftsvorhersage ist eine Funktion, die spter hinzugefgt werden knnte, wenn wir uns mit der Vergangenheit arrangieren knnen.

Es gibt Leute, die gelegentlich Debootstrap auf stabile Versionen zurckportieren; jagen Sie sie.

Wenn in der Debootstrap-Phase Fehler auftreten, muss das Debootstrap-Skript repariert werden. pbuilder stellt keine Mglichkeit bereit, Debootstrap zu umgehen.

2. Verzeichnisse, bei denen kein Bind-Mount mglich ist

Aufgrund der Weise, wie pbuilder arbeitet, gibt es viele Verzeichnisse, bei denen ein Bind-Mount beim Ausfhren von pbuilder nicht mglich ist. Die Verzeichnisse umfassen /tmp, /var/cache/pbuilder und Systemverzeichnisse wie /etc und /usr. Es wird empfohlen, Verzeichnisse unter dem Home-Verzeichnis des Benutzers fr Bind-Mounts zu verwenden.

3. In Pbuilder anmelden, um Fehlschlagen des Builds zu untersuchen

It is possible to invoke a shell session after a build failure. Example hook scripts are provided as C10shell and C11screen scripts. C10shell script will start bash inside chroot, and C11screen script will start GNU screen inside the chroot.

4. In Pbuilder anmelden, um die Umgebung zu ndern

Manchmal ist es notwendig, die Chroot-Umgebung zu verndern. login wird den Inhalt der Chroot nach dem Abmelden entfernen. Es ist mglich unter Benutzung von Hook-Skripten eine Shell aufzurufen. pbuilder update fhrt E-Skripte aus und ruft beispielsweise eine Shell auf, die als C10shell bereitgestellt wird.

$ mkdir ~/loginhooks
$ cp C10shell ~/loginhooks/E10shell
$ sudo pbuilder update --hookdir ~/loginhooks/E10shell

Auerdem ist es mglich, die Optionen --save-after-exec und/oder --save-after-login zu der pbuilder login-Sitzung hinzuzufgen, um das Ziel zu erreichen. Es ist ebenfalls mglich, die Option --uml-login-nocow zur Sitzung von pbuilder-user-mode-linux login hinzuzufgen.

5. BUILDRESULTUID fr Sudo-Sitzungen setzen

Es ist mglich,

BUILDRESULTUID=$SUDO_UID

in Pbuilderrc einzustellen, um BUILDRESULTUID angemessen zu setzen, wenn sudo benutzt wird.

6. Anmerkungen zum Gerauch von $TMPDIR

Falls Sie $TMPDIR auf einen unblichen Wert setzen, der von /tmp abweicht, werden Sie bemerken, dass einige Fehler, wie das Scheitern von dpkg-source, innerhalb der Chroot auftreten.

Es gibt zwei Optionen – Sie knnen einen Hook installieren, um dieses Verzeichnis zu erstellen oder

export TMPDIR=/tmp

in Pbuilderrc setzen. Suchen Sie sich eine aus.

Ein Beispielskript wird als examples/D10tmp mit Pbuilder bereitgestellt.

7. Ein Krzel erstellen, um pbuilder mit einer speziellen Distribution auszufhren.

Wenn mit mehreren Chroots gearbeitet wird, wre es nett, mit Skripten zu arbeiten, um weniger tippen zu mssen. Ein Beispielskript pbuilder-distribution.sh wird als Muster bereitgestellt. Der Aufruf des Skripts mit pbuilder-squeeze wird pbuilder mit einer Squeeze-Chroot aufrufen.

8. Umgebungsvariablen benutzen, um pbuilder fr eine spezielle Distribution auszufhren.

Dieser Abschnitt[6] beschreibt kurz eine Mglichkeit, mehrere Pbuilder-Einrichtungen zu erstellen und zu benutzen, indem eine Pbuilderrc-Konfiguration in Ihrem Home-Pfad ($HOME/.pbuilderrc) erstellt und die Variable DIST beim Ausfhren von Pbuilder oder Pdebuild benutzt wird.

Richten Sie zuerst $HOME/.pbuilderrc ein, dass es wie folgt aussieht:

if [ -n "${DIST}" ]; then
        BASETGZ="`dirname $BASETGZ`/$DIST-base.tgz"
        DISTRIBUTION="$DIST"
        BUILDRESULT="/var/cache/pbuilder/$DIST/result/"
        APTCACHE="/var/cache/pbuilder/$DIST/aptcache/"
fi

Wann auch immer Sie dann Pbuilder fr eine spezielle Distribution benutzen mchten, weisen Sie DIST einen Wert zu, der einer der fr Debian verfgbaren Distribution oder einer auf Debian basierenden Distribution, die Sie zufllig ausfhren, entspricht (d.h. was auch immer unter /usr/lib/debootstrap/scripts gefunden wird).

Hier einige Beispiele, der Ausfhrung von Pbuilder oder Pdebuild:

DIST=gutsy sudo pbuilder create

DIST=sid sudo pbuilder create --mirror http://http.us.debian.org/debian

DIST=gutsy sudo pbuilder create \
        --othermirror "deb http://archive.ubuntu.com/ubuntu gutsy universe \
        multiverse"

DIST=gutsy sudo pbuilder update

DIST=sid sudo pbuilder update --override-config --mirror \
http://http.us.debian.org/debian \
--othermirror "deb http://http.us.debian.org/debian sid contrib non-free"

DIST=gutsy pdebuild

9. Spezielle Listen von Apt-Quellen und lokale Pakete verwenden

Falls Sie einige auergewhnliche Anforderungen an Ihre Apt-Einrichtung innerhalb pbuilder haben, ist es mglich, dies ber die Option --othermirror anzugeben. Versuchen Sie etwas wie dies: --othermirror "deb http://local/mirror stable main|deb-src http://local/source/repository ./"

Um ein lokales Dateisystem anstelle von HTTP zu benutzen, ist es ntig, Bind-Mount zu verwenden. --bindmounts ist eine in solchen Fllen ntzliche Befehlszeilenoption.

Es knnte vorteilhaft sein, Ihre Build-Pakete von innerhalb der Chroot zu benutzen. Es ist mglich, die Aufgabe mit der folgenden Konfiguration zu automatisieren. Richten Sie zuerst Pbuilderrc ein, um ein Bind-Mount Ihres Verzeichnisses fr Build-Ergebnisse auszufhren.

BINDMOUNTS="/var/cache/pbuilder/result"

Fgen Sie dann den folgenden Hook hinzu

# cat /var/cache/pbuilder/hooks/D70results
#!/bin/sh
cd /var/cache/pbuilder/result/
/usr/bin/dpkg-scanpackages . /dev/null > /var/cache/pbuilder/result/Packages
/usr/bin/apt-get update

Auf diese Weise knnen Sie deb file:/var/cache/pbuilder/result benutzen.

So fgen Sie einen neuen Apt-Schlssel innerhalb der Chroot hinzu:

sudo pbuilder --login --save-after-login
# apt-key add - <<EOF
...public key goes here...
EOF
# logout

10. Wie kann erreicht werden, dass Pbuilder apt-get update ausfhrt, bevor es versucht die Build-Abhngigkeiten zu erfllen?

Sie knnen dafr Hook-Skripte benutzen. D-Skripte werden ausgefhrt, bevor Build-Abhngigkeiten erfllt werden.

Dieser Kodeausschnitt stammt von Ondrej Sury.

11. Unterschiedliche Eingabeaufforderungen innerhalb der Pbuilder-Anmeldung

Um charakteristische Bash-Eingabeaufforderungen innerhalb pbuilder zu erleichtern, ist es mglich, innerhalb der pbuilderrc Umgebungsvariablen wie PS1 zu setzen.

Mit aktuelleren Versionen der Bash als 2.05b-2-15 ist der Wert der Variablen debian_chroot, falls er gesetzt ist, im Wert von PS1 (der Bash-Eingabeaufforderung) innerhalb der Chroot enthalten. In vorhergehenden Versionen der Bash,[7] funktionierte die Einstellung PS1 in Pbuilderrc.

Beispiel fr debian_chroot

	export debian_chroot="pbuild$$"

Beispiel fr PS1

	export PS1="pbuild chroot 32165 # "

12. Eine Chroot-Erinnerung erstellen

Bash-Eingabeaufforderungen werden Ihnen helfen, sich daran zu erinnern, dass Sie sich innerhalb der Chroot befinden. Es gibt andere Flle, in denen Sie mglicherweise andere Hinweise bekommen mchten, dass Sie innerhalb der Chroot sind. Probieren Sie das Hook-Skript examples/F90chrootmemo aus. Es wird eine Datei innerhalb der Chroot erstellen, die /CHROOT heit.

13. /var/cache/apt/archives fr den Paket-Zwischenspeicher benutzen

Um Systemen mit geringer Bandbreite zu helfen, ist es mglich /var/cache/apt/archives als Paket-Zwischenspeicher zu benutzen. Geben Sie es einfach anstelle von /var/cache/pbuilder/aptcache an.

Es ist jedoch nicht mglich, dies derzeit mit der User-Mode-Linux-Version von pbuilder zu tun, da /var/cache/apt/archives normalerweise nur fr Root schreibbar ist.

Es wird empfohlen, zugehrige Werkzeuge wie Apt-proxy zu benutzen, da das Zwischenspeichern von Paketen dem System auerhalb des Einflussbereichs von pbuilder nutzen wrde.

14. Pbuilder auf Debian-Stable-Releases zurckportiert

Die aktuelle Stable-Rckportierung von Pbuilder ist auf backports.org verfgbar.

15. Warnung, dass LOGNAME nicht definiert wurde

Sie bekommen mglicherweise viele Fehlermeldungen zu Gesicht, wenn Sie pbuilder ausfhren.

	dpkg-genchanges: Warnung: kein UTMP-Eintrag verfgbar und LOGNAME nicht definiert; UID des Prozesses wird benutzt (1234)

Es ist derzeit sicher, diese Warnmeldung zu ignorieren. Bitte geben Sie eine Rckmeldung, wenn Sie ein Problem mit nicht gesetztem LOGNAME haben. LOGNAME zu setzen bereitet einige Probleme, wenn chroot aufgerufen wird. Dpkg bentigt beispielsweise Getpwnam, um innerhalb der Chroot erfolgreich zu sein, was bedeutet, dass LOGNAME und die zugehrige Benutzerinformation innerhalb der Chroot eingerichtet werden mssen.

16. Build-Conflikt mit wesentlichem Paket nicht mglich

pbuilder erlaubt derzeit kein Build-Conflicts mit wesentlichen Paketen. Es sollte offensichtlich sein, dass wesentliche Pakete nicht von einem funktionierenden Debian-System entfernt werden sollten und ein Quellpaket nicht versuchen sollte, das Entfernen solcher Pakete zu erzwingen, wenn Leute das Paket bauen.

17. Vermeiden der Nachricht ln: Ungltiger Link ber Gertegrenzen hinweg

Standardmig benutzt pbuilder harte Links, um den pbuilder-Paketzwischenspeicher zu verwalten. Es ist nicht mglich, harte Links ber unterschiedliche Gerte hinweg zu erstellen. Daher wird dieser Fehler, abhngig von Ihrer Einrichtung, erscheinen. Falls dies geschieht, setzen Sie in ihrer Pbuilderrc-Datei

APTCACHEHARDLINK=no

. Beachten Sie, dass Pakete in APTCACHE in den lokalen Chroot-Zwischenspeicher kopiert werden. Planen Sie daher genug Speicher auf dem Gert BUILDPLACE ein.

18. Fakechroot benutzen

Es ist mglich, fakechroot zu benutzen, anstatt pbuilder als Root auszufhren; mehrere Dinge machen dies jedoch unpraktisch. fakechroot setzt geladene Bibliotheken auer Kraft und versucht, vorgegebene Libc-Funktionen auer Kraft zu setzen, wenn es die Funktionalitt von virtuellem chroot bereitstellt. Einige Bibliotheken benutzen jedoch zum Funktionieren Libc nicht oder setzen das auer Kraft setzen von fakechroot auer Kraft. Ein Beispiel ist ldd. Innerhalb fakechroot wird ldd die Abhngigkeiten von Bibliotheken auerhalb der Chroot prfen, die nicht das erwartete Verhalten aufweisen.

Um das Problem zu umgehen, hat Debootstrap eine Option --variant fakechroot. Benutzen Sie diese, so dass Ldd und Ldconfig berschrieben werden.

Stellen Sie sicher, dass Sie Ihrem Pfad LD_PRELOAD korrekt gesetzt haben, wie es in der Handbuchseite von Fakechroot beschrieben ist.

19. Debconf innerhalb von Pbuilder-Sitzungen benutzen

Um Debconf innerhalb von pbuilder zu benutzen, sollte DEBIAN_FRONTEND in pbuilderrc auf readline zu setzen funktionieren. Es auf dialog zu setzen sollte ebenfalls funktionieren. Stellen Sie aber sicher, dass Whiptail oder Dialog innerhalb der Chroot installiert sind.

20. nodev-Einhngeoptionen behindern Pbuilder-Aktivitt

Falls Sie Nachrichten wie diese beim Erstellen einer Chroot sehen, sind Sie dabei, ein Dateisystem mit einer nodev-Option einzuhngen.

	/var/lib/dpkg/info/base-files.postinst: /dev/null: Keine Berechtigung

Sie werden auerdem Probleme haben, falls Sie ein Dateisystem mit der Option noexec oder nosuid einhngen. Stellen Sie sicher, dass Sie diese Schalter nicht gesetzt haben, wenn Sie das Dateisystem fr /var/cache/pbuilder oder $BUILDPLACE einhngen.

Dies ist kein Problem, wenn Sie user-mode-linux benutzen.

Sehen Sie zum Beispiel 316135 .

21. Pbuilder ist langsam

pbuilder ist fters langsam. Der langsamste Teil von pbuilder ist bei jedem Aufruf von pbuilder das Extrahieren des tar.gz. Dies kann verhindert werden, indem pbuilder-user-mode-linux benutzt wird. pbuilder-user-mode-linux benutzt ein COW-Dateisystem und muss daher das Wurzeldateisystem nicht aufrumen und neu erstellen.

pbuilder-user-mode-linux ist langsamer beim Ausfhren des tatschlichen Build-Systems, aufgrund des blichen Mehraufwands von user-mode-linux fr Systemaufrufe. Es ist freundlicher zur Festplatte.

pbuilder mit Cowdancer ist ebenfalls eine Alternative, die die Geschwindigkeit des Pbuilder-Starts verbessert.

22. Pdebuild zum Frdern eines Pakets benutzen

Um ein Paket zu signieren, dass es fr die Frderung gekennzeichnet ist, ist es mglich, die Optionen --auto-debsign und --debsign-k von pdebuild zu benutzen.

	pdebuild  --auto-debsign  --debsign-k XXXXXXXX

23. Warum liegt in ../ eine source.changes-Datei?

Wenn pdebuild ausgefhrt wird, wird pbuilder Dpkg-buildpackage ausfhren, um ein Debian-Quellpaket zu erstellen, das an pbuilder weitergereicht wird. Eine Datei mit Namen XXXX_YYY_source.changes ist das, was von diesem Prozess brigbleibt. Das ist harmlos, solange Sie nicht versuchen, sie in das Debian-Archiv hochzuladen.

Dieses Verhalten ist anders, wenn es mittels --use-pdebuild-internal ausgefhrt wird.

24. Die Modi amd64 und i386

AMD64-Architekturen sind fhig, Programme im i386-Modus auszufhren. Es ist mglich, pbuilder zu benutzen, um Pakete auszufhren, die die Optionen linux32 und debootstrap --arch benutzen. Im Besonderen wird eine Befehlszeilenoption wie die Folgende funktionieren.

pbuilder create --distribution sid --debootstrapopts --arch --debootstrapopts i386 \
  --basetgz /var/cache/pbuilder/base-i386.tgz --mirror http://ftp.jp.debian.org/debian
linux32 pbuilder build --basetgz /var/cache/pbuilder/base-i386.tgz

25. Tmpfs fr buildplace benutzen

Um die Geschwindigkeit der Operation zu verbessern, ist es mglich, Tmpfs fr den Build-Ort von Pbuilder zu verwenden. Hngen Sie das Tmpfs in /var/cache/pbuilder/build ein und setzen Sie

APTCACHEHARDLINK=no

.

26. Svn-buildpackage zusammen mit Pbuilder benutzen

Der Befehl Pdebuild kann mit der Befehlszeilenoption svn-buildpackage --svn-builder benutzt werden. [8]

alias svn-cowbuilder="svn-buildpackage --svn-builder='pdebuild --pbuilder cowbuilder"


[6] Dieser Teil der Dokumentation wurde von Andres Mejia beigetragen.

Dieses Beispiel wurde von einem Wiki bernommen (https://wiki.ubuntu.com/PbuilderHowto).

[7] Versionen der Bash seit und vor Debian 3.0

Kapitel 5. Fehlerbehebung und Entwicklung

1. Fehler berichten

Um Fehler zu berichten, wre es wichtig, ein Protokoll darber zu haben, was schiefgelaufen ist. Meistens sollte das Hinzufgen einer Option --debug und das erneute Ausfhren der Sitzung den Zweck erfllen. Bitte senden Sie das Protokoll einer solchen Sitzung zusammen mit Ihrer auf Englisch verfassten Problembeschreibung, um den Prozess der Fehlersuche zu erleichtern.

2. Mailingliste

Es gibt auf Alioth eine Maillingliste fr Pbuilder (pbuilder-maint@lists.alioth.debian.org). Sie knnen sie ber die Alioth-Web-Schnittstelle abonnieren. http://alioth.debian.org/mail/?group_id=30778.

3. IRC-Kanal

Zur Koordinierung und Kommunikation wird der IRC-Kanal #pbuilder auf irc.oftc.net benutzt. Bitte legen Sie dort Ihre Absicht dar, wenn Sie mit irgendwelchen nderungen beginnen oder irgendeine nderung bertragen.

4. Informationen fr Pbuilder-Entwickler

Dieser Abschnitt versucht, aktuelle Vorgehensweisen bei der Entwicklungs zu dokumentieren und wie Dinge allgemein in der Entwicklung funktionieren.

pbuilder wird mitbetreut mit Ressourcen, die auf Alioth bereitgestellt werden. Es gibt eine Alioth-Projektseite unter http://alioth.debian.org/projects/pbuilder. Auerdem ist die Homepage, die diesen Text zeigt, unter http://alioth.debian.org/projects/pbuilder verfgbar. Das Git-Depot ist ber HTTP, Git oder (falls Sie ein Alioth-Konto haben) SSH verfgbar.

git-clone git://git.debian.org/git/pbuilder/pbuilder.git
git-clone http://git.debian.org/git/pbuilder/pbuilder.git
git-clone ssh://git.debian.org/git/pbuilder/pbuilder.git

Die Git-Commit-Nachricht sollte zuerst eine Zeile haben, die beschreibt, was das Commit tut. Dies sollte auf die Weise wie debian/changelog formatiert sein, da es mittels Git-dch wortgetreu in das Changelog kopiert wird. Die zweite Zeile ist leer und der Rest sollte die Hintergrund- und Zusatzinformationen im Zusammenhang mit der Implementierung des Commits beschreiben.

Test-Suites sind im Verzeichnis ./testsuite/ verfgbar. Von nderungen wird erwartet, dass sie die Test-Suites nicht unterbrechen. ./run-test.sh ist eine Basistest-Suite, die eine Zusammenfassung in run-test.log und run-test-cdebootstrap.log ablegt. ./run-test-regression.sh ist eine Regressionstest-Suite, die das Ergebnis in run-test-regression.log ablegt. Derzeit wird run-test.sh tglich automatisch ausgefhrt, um sicherzustellen, dass Pbuilder funktioniert.

Tabelle 5.1. Verzeichnisstruktur der Test-Suite

VerzeichnisBedeutung
./testsuite/Verzeichnis fr Test-Suite
./testsuite/run-test.shTglicher Regressionstest, um zu prfen, ob nderungen am Debian-Archiv Pbuilder unterbrechen.
./testsuite/run-test.logEine Zusammenfassung der Test-Suite
./testsuite/normal/Verzeichnis fr Test-Suite-Ergebnisse fr die Ausfhrung von Pbuilder mit Debootstrap
./testsuite/cdebootstrap/Verzeichnis fr Test-Suite-Ergebnisse fr die Ausfhrung von Pbuilder mit Cdebootstrap
./testsuite/run-regression.shRegressionstest-Suite, wurde jedesmal ausgefhrt, wenn etwas an Pbuilder gendert wurde, um sicherzustellen, dass es keinen Rckschritt gibt.
./testsuite/run-regression.logZusammenfassung des Testergebnisses
./testsuite/regression/BugID-*.shRegressionstests, Rckgabewert 0 bei Erfolg, 1 bei Fehlschlag
./testsuite/regression/BugID-*Dateien, die fr die Regressionstest-Suite verwandt werden
./testsuite/regression/log/BugID-*.sh.logAusgabe des Regressionstests, Ausgabe des Skripts, an das durch run-regression.sh weitergeleitet wurde

Wenn nderungen vorgenommen werden, sollten die nderungen im Git-Commit-Protokoll dokumentiert werden. Git-dch wird aus dem Commit-Protokoll debian/changelog generieren. Schreiben Sie eine aussagekrftige erste Zeile in Ihr Commit-Protokoll und fgen Sie jede verfgbare Information zum Schlieen von Fehlern hinzu. debian/changelog sollte nicht direkt bearbeitet werden, auer wenn eine neue Version verffentlicht wird.

Eine TODO-Datei ist in debian/TODO verfgbar. Sie wird meist nicht gut gepflegt, wird aber hoffentlich aktueller sein, wenn Leute beginnen, sie zu benutzen. Zum Bearbeiten der Datei wird der Emacs-Todoo-Modus verwandt.

Wenn eine neue Version von pbuilder verffentlicht wird, ist die Version mit der Git-Markierung X.XXX (Versionsnummer) gekennzeichnet. Dies wurde mit dem Skript ./git-tag.sh, das im Quellkode-Verzeichnisbaum verfgbar ist, erledigt.

Kapitel 6. Andere Verwendungen von Pbuilder

1. Pbuilder fr kleine Experimente benutzen

Es gibt Flle, in denen es ntig ist, ein wenig zu experimentieren und Sie das Hauptsystem nicht beschdigen wollen, wie das Installieren experimenteller Bibliothekspakete oder das Kompilieren mit experimentellen Kompilern. Fr diese Flle steht der Befehl pbuilder login zur Verfgung.

pbuilder login ist eine Funktion zur Fehlersuche fr pbuilder selbst, aber es ermglicht Benutzern auerdem eine temporre Chroot zu verwenden.

Beachten Sie, dass die Chroot nach dem Abmelden aus der Shell bereinigt wird und das Einhngen von Dateisystemen innerhalb der Chroot als schdlich angesehen wird.

2. Kleine Programme innerhalb der Chroot ausfhren

Um die Benutzung von pbuilder fr andere Zwecke zu erleichtern, ist pbuilder execute verfgbar. pbuilder execute wird ein im Befehlszeilenargument angegebenes Skript nehmen und innerhalb der Chroot aufrufen.

Das Skript kann ntzlich fr Abfolgen von Operationen, wie das Installieren von SSH oder das Hinzufgen eines neuen Benutzers innerhalb der Chroot, sein.

Kapitel 7. Experimental or wishlist features of pbuilder

Es gibt einige fortgeschrittene Funktionen, die ber die Grundfunktionen von pbuilder fr einige besondere Zwecke hinausgehen.

1. LVM benutzen

LVM2 has a useful snapshot function that features Copy-on-write images. That could be used for pbuilder just as it can be used for the user-mode-linux pbuilder port. lvmpbuilder script in the examples directory implements such port. The scripts and documentation can be found under /usr/share/doc/pbuilder/examples/lvmpbuilder/.

2. Cowdancer benutzen

cowdancer erlaubt Copy-on-write-Semantiken auf dem Dateisystem unter Benutzung von harten Links und Hard-link-breaking-on-write-Tricks. pbuilder scheint bei der Benutzung von cowdancer viel schneller zu sein und es ist ein idealer Punkt fr Verbesserungen. cowbuilder, ein Wrapper fr pbuilder, um cowdancer zu benutzen, ist im Paket cowdancer seit Version 0.14 verfgbar.

Beispielshafte Befehlszeilen fr Cowbuilder sehen aus wie folgt.

# cowbuilder --create --distribution sid
# cowbuilder --update --distribution sid
# cowbuilder --build XXX.dsc

Es ist auerdem mglich, Cowdancer mit dem Befehl pdebuild zu benutzen. Geben Sie es mit der Befehlszeilenoptionen --pbuilder an oder setzen Sie es in der Konfigurationsoption PDEBUILD_PBUILDER.

$ pdebuild --pbuilder cowbuilder

3. Pbuilder ohne tar.gz verwenden

Die Option --no-targz von pbuilder wird den Gebrauch von pbuilder auf eine andere als die bliche Weise ermglichen. Sie wird versuchen eine existierende Chroot zu benutzen und sie nach der Arbeit damit nicht zu bereinigen. Es ist ein Betriebsmodus, der eher sbuild gleicht.

Es sollte mglich sein, Basis-Chroot-Images fr dchroot mit den folgenden Befehlen zu erstellen:

# pbuilder create --distribution lenny --no-targz --basetgz /chroot/lenny
# pbuilder create --distribution squeeze --no-targz --basetgz /chroot/squeeze
# pbuilder create --distribution sid --no-targz --basetgz /chroot/sid

4. PBuilder in einem Vserver verwenden

Es ist mglich, pbuilder in einer Vserver-Umgebung zu verwenden. Dies erfordert entweder Vserver-patches in Version 2.1.1-rc14 oder hher oder eine Linux-Kernel-Version 2.6.16 oder hher.

Um pbuilder in einem Vserver zu verwenden, mssen Sie in den ccapabilities dieses Servers secure_mount CAPS setzen.

5. Gebrauch von Ccache

It is possible to use C compiler cache ccache to speed up repeated builds of the same package (or packages that compile the same files multiple times for some reason). Using ccache can speed up repeated building of large packages dramatically, at the cost of some disk space and bookkeeping.

To enable usage of ccache with pbuilder, you should set CCACHEDIR in your pbuilderrc file.

Current implementation of ccache support has several bugs, that CCACHEDIR must be owned by the pbuilder build user, and parallel runs of pbuilder is not supported. Therefore it is not enabled by default.

Kapitel 8. Referenzmaterial

1. Verzeichnisstruktur auerhalb der Chroot

Tabelle 8.1. Verzeichnisstruktur auerhalb der Chroot

VerzeichnisBedeutung
/etc/pbuilderrcKonfigurationsdatei
/usr/share/pbuilder/pbuilderrcStandardkonfiguration
/var/cache/pbuilder/base.tgzStandardspeicherort, den Pbuilder fr base.tgz benutzt. Dieser Tarball enthlt eine Basis-Debian-Installation ausschlielich mit Build-essential-Paketen.
/var/cache/pbuilder/build/PID/Standardspeicherort, den Pbuilder fr Chroot benutzt
/var/cache/pbuilder/aptcacheStandardspeicherort, den pbuilder als APT-Zwischenspeicher benutzen wird, um Deb-Pakete zu speichern, die pbuilder whrend des Bauens bentigt
/var/cache/pbuilder/ccacheStandardspeicherort, den pbuilder als Zwischenspeicher benutzen wird
/var/cache/pbuilder/resultStandardspeicherort, in den pbuilder die Deb-Dateien und andere Dateien ablegt, die nach dem Build erzeugt werden
/var/cache/pbuilder/pbuilder-umlresultStandardspeicherort, in den pbuilder-user-mode-linux die Deb-Dateien und andere Dateien ablegt, die nach dem Build erzeugt werden
/var/cache/pbuilder/pbuilder-mntStandardspeicherort, den pbuilder-user-mode-linux benutzt, um das COW-Dateisystem fr die Chroot einzuhngen
/tmppbuilder-user-mode-linux wird Tmpfs fr die Arbeit einhngen.
${HOME}/tmp/PID.cowpbuilder-user-mode-linux benutzt dieses Verzeichnis als Speicherort des COW-Dateisystem.
${HOME}/uml-imagepbuilder-user-mode-linux benutzt dieses Verzeichnis fr das vollstndige User-Mode-Linux-Image.

2. Verzeichnisstruktur innerhalb der Chroot

Tabelle 8.2. Verzeichnisstruktur innerhalb der Chroot

VerzeichnisBedeutung
/etc/mtab symbolischer Link zu /proc/mounts
/tmp/builddStandardort, der vom pbuilder benutzt wird, um die zu verarbeitenden Debian-Pakete abzulegen. /tmp/buildd/packagename-version/ wird das Wurzelverzeichnis des Pakets sein, das verarbeitet wird. Die Umgebungsvariable HOME wird von Pbuilder-buildpackage auf diesen Wert gesetzt. --inputfile wird die Dateien hier ablegen.
/runscriptDas Skript, das als Argument zur Ausfhrung an pbuilder bergeben wird, wird weitergereicht.
/tmp/hooks Der Speicherort von Hooks
/var/cache/apt/archives pbuilder kopiert den Inhalt dieses Verzeichnisses zu und vom Aptcache-Verzeichnis auerhalb der Chroot.
/var/cache/pbuilder/ccache pbuilder hngt dieses Verzeichnis per Bind-Mount ein, damit es durch Ccache benutzt wird.
/tmp/XXXXpbuilder-user-mode-linux benutzt ein Skript in /tmp fr ein Bootstrap in User Mode Linux.

Kapitel 9. Nebenschliche archologische Einzelheiten

1. Dokumentations-Chronik

Die Arbeit an diesem Dokument wurde am 28. Dezember 2002 durch Junichi Uekawa begonnen, der versuchte zu dokumentieren, was ber pbuilder bekannt ist.

Diese Dokumentation ist im Quell-Tarball und im Git-Depot (Web-basierter Zugriff ist mglich) von pbuilder verfgbar. Eine Kopie dieser Dokumentation knnen Sie auf der Alioth-Projektseite fr Pbuilder finden. Dort gibt es auch eine PDF-Version . Die Homepage fr pbuilder wird http://pbuilder.alioth.debian.org/ vom Alioth-Projekt gehostet.

Die Dokumentation wurde unter Verwendung von DocBook-XML mit dem Emacs-PSGML-Modus und unter Verwendung von Wysidocbookxml zur Echtzeitvorschau geschrieben.

2. Mglicherweise ungenaue Hintergrundgeschichte von Pbuilder

Das Folgende ist ein mglichst genauer Bericht, wie es zu pbuilder kam und andere Versuche, ein Ergebnis wie pbuilder zu erzielen. Dieser Teil des Dokuments war ursprnglich in der Datei AUTHORS, um dem Anerkennung zu zollen, was vor pbuilder existierte.

2.1. Zeit vor Pbuilder

Es gab einst Dbuild, das war ein Shell-Skript, um Debian-Pakete aus der Quelle zu bauen. Lars Wirzenius schrieb dieses Skript und es war gut, kurz und (wahrscheinlich) einfach. Es gab (vermutlich) nichts wie Build-Abhngigkeiten und es war simpel. Es konnte verbessert werden, es konnten nur Referenzen und keine tatschliche Quelle gefunden werden.

Debbuild wurde wahrscheinlich von James Troup geschrieben. Genau bekannt ist dies nicht, da der tatschlich Kode nicht vorliegt. Es konnten nur einige Referenzen im Netz und in den Maillinglist-Protokollen gefunden werden.

Sbuild ist ein Perl-Skript, um Debian-Pakete aus der Quelle zu bauen. Es wertet Build-Abhngigkeiten aus, fhrt verschiedene andere Prfungen durch und hat viele Hacks, um Dinge tatschlich zu bauen, einschlielich einer Tabelle, welches Paket benutzt wird, wenn virtuelle Pakete angegeben wurden (tut es dies immer noch?). Es untersttzt den Gebrauch einer lokalen Datenbank fr Pakete, die keine Build-Abhngigkeiten haben. Es wurde von Ronan Hodek geschrieben und es wurde wahrscheinlich von vielen Leuten repariert und erweitert. Es ist Teil von Wanna-Build und wird intensiv im Debian-Build-System benutzt. Es wird vermutlich berwiegend von Ryan Murray betreut.

2.2. Geburt von Pbuilder

Wanna-Build (Sbuild) war (in der Zeit um das Jahr 2001) ziemlich schwierig einzurichten und es war ein nie Debian-Paket. Dbuild war etwas, was Build-Abhngigkeiten vorwegnahm.

Pakete aus den Quellen unter Benutzung von Build-Abhngigkeitsinformationen innerhalb einer Chroot zu bauen klang trivial und pbuilder war geboren. Es war ursprnglich ein Shell-Skript mit nur wenigen Zeilen, das Debootstrap, Chroot und Dpkg-buildpackage im gleichen Durchlauf aufrief, aber bald wurde entschieden, dass das zu langsam sei.

Ja, und es dauerte fast ein Jahr, um einige Dinge in Ordnung zu bringen und mitten in diesem Prozess wurde Debian 3.0 verffentlicht. Juhu. Debian 3.0 konnte nicht vollstndig mit pbuilder gebaut werden, aber die Anzahl der Pakete, die nicht gebaut werden knnen, nimmt stetig ab (hoffentlich).

2.3. Und sein zweites Lebensjahr

Jemand wollte, dass pbuilder nicht als Root ausgefhrt wird und als User Mode Linux im Laufe der Zeit ntzlicher wurde, wurde begonnen, mit pbuilder-user-mode-linux zu experimentieren. pbuilder-user-mode-linux blieb nicht so funktional wie gewnscht und Bootstrap der user-mode-linux-Umgebung erwies sich als ziemlich hart aufgrund der Qualitt des Kodes von User Mode Linux oder der Paketierung zu dieser Zeit, die auf die eine oder andere Art die Netzwerkuntersttzung zerstrte.

2.4. Das fnfte Jahr von Pbuilder

pbuilder wird nun weitgehend als Beinahe-Standardwerkzeug zum Testen von Paketen und dem Bauen von Paketen in einer unberhrten Umgebung angenommen. Es gibt andere hnliche Werkzeuge, die hnliche Aufgaben erledigen, aber sie verfolgen nicht das gleiche Ziel. Um dieser Tatsache zu gedenken, wird pbuilder nun von mehreren Leuten mitbetreut.

sbuild ist nun ein gut betreutes Debian-Paket innerhalb von Debian und mit pbuilder als solch langsamem Monster bevorzugen einige Leute das Nherkommen von Sbuild. Es besteht die Hoffnung, dass die Entwicklung, um LVM-Schnappschsse oder Cowdancer zu benutzen, die Situation etwas verbessert.

pbuilder-0.215ubuntu7/Documentation/pbuilder-doc.xsl0000664000000000000000000000045412312041170017455 0ustar pbuilder-doc.css pbuilder-0.215ubuntu7/testsuite/0000775000000000000000000000000012312041256013576 5ustar pbuilder-0.215ubuntu7/testsuite/run-test-uml.sh0000775000000000000000000000407212312041170016507 0ustar #!/bin/sh # This is a testsuite. # estimated run-time on my PC; 45 minutes. PBUILDER_UML=/usr/bin/pbuilder-user-mode-linux RESULTFILE="run-test-uml.log" : > ${RESULTFILE} RESULTFILE=$(readlink -f ${RESULTFILE}) log_success () { CODE=$? if [ $CODE = 0 ]; then echo "[OK] $1" >> ${RESULTFILE} else echo "[FAIL] $1" >> ${RESULTFILE} fi } sudo ifconfig eth0:tst 192.168.30.62 netmask 255.255.255.0 tcpproxy 8081 ring.asahi-net.or.jp 80 & TCPPROXY=$! pbuilder-user-mode-linux test --configfile non-existing-configfile if [ -x "${PBUILDER_UML}" ]; then for distribution in sid sarge; do pbuilder-user-mode-linux create --mirror http://192.168.30.198/archives/linux/debian/debian --distribution "${distribution}" --uml-image $(pwd)/testimage --logfile uml/pbuilder-user-mode-linux-create-${distribution}.log log_success create-${distribution} for PKG in dsh; do ( mkdir testbuild cd testbuild apt-get source -d ${PKG} ) pbuilder-user-mode-linux build --uml-image $(pwd)/testimage --buildplace $(pwd)/testbuild/ --logfile uml/pbuilder-user-mode-linux-build-${PKG}-${distribution}.log testbuild/${PKG}*.dsc log_success build-${distribution}-${PKG} ( mkdir testbuild2 cd testbuild2 apt-get source ${PKG} cd ${PKG}-* pdebuild-user-mode-linux --logfile ../../uml/pdebuild-user-mode-linux-normal-${distribution}.log -- --uml-image $(pwd)/../../testimage --buildplace $(pwd)/../../testbuild2/ log_success pdebuild-${distribution}-${PKG} pdebuild-user-mode-linux --use-pdebuild-internal --logfile ../../uml/pdebuild-user-mode-linux-internal-${distribution}.log -- --uml-image $(pwd)/../../testimage --buildplace $(pwd)/../../testbuild2/ log_success pdebuild-internal-${distribution}-${PKG} ) done pbuilder-user-mode-linux execute --uml-image $(pwd)/testimage --logfile uml/pbuilder-user-mode-linux-execute-${distribution}.log ../examples/execute_paramtest.sh test1 test2 test3 log_success execute-${distribution} rm -rf testbuild testbuild2 testimage done fi kill ${TCPPROXY} echo '### RESULT: ###' cat "${RESULTFILE}" pbuilder-0.215ubuntu7/testsuite/regression/0000775000000000000000000000000012312041256015756 5ustar pbuilder-0.215ubuntu7/testsuite/regression/log/0000775000000000000000000000000012312041256016537 5ustar pbuilder-0.215ubuntu7/testsuite/regression/log/342665-pbuilder-ccache.sh.log0000664000000000000000000010305012312041170023426 0ustar I: using fakeroot in build. pbuilder-buildpackage/amd64 $Id$ $Id$ Current time: Fri Oct 27 07:39:30 JST 2006 pbuilder-time-stamp: 1161902370 Building the build Environment -> extracting base tarball [/var/cache/pbuilder/base.tgz] -> creating local configuration -> copying local configuration -> mounting /proc filesystem -> mounting /dev/pts filesystem -> Mounting /home/dancer/cvscheckout/external/pbuilder/pbuilder/testsuite/regression/work/ccache -> policy-rc.d already exists Installing the build-deps -> Attempting to parse the build-deps : pbuilder-satisfydepends,v 1.28 2006/05/30 23:45:45 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: 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: debhelper file gettext html2text intltool-debian libdshconfig1 libdshconfig1-dev libmagic1 po-debconf 0 upgraded, 9 newly installed, 0 to remove and 0 not upgraded. Need to get 3098kB of archives. After unpacking 10.1MB of additional disk space will be used. WARNING: The following packages cannot be authenticated! libmagic1 file html2text gettext intltool-debian po-debconf debhelper libdshconfig1 libdshconfig1-dev Get:1 http://glantank sid/main libmagic1 4.17-3 [277kB] Get:2 http://glantank sid/main file 4.17-3 [31.7kB] Get:3 http://glantank sid/main html2text 1.3.2a-3 [92.7kB] Get:4 http://glantank sid/main gettext 0.15-2 [2012kB] Get:5 http://glantank sid/main intltool-debian 0.35.0+20060710 [31.4kB] Get:6 http://glantank sid/main po-debconf 1.0.5 [109kB] Get:7 http://glantank sid/main debhelper 5.0.37.3 [508kB] Get:8 http://glantank sid/main libdshconfig1 0.20.12-2 [10.9kB] Get:9 http://glantank sid/main libdshconfig1-dev 0.20.12-2 [25.3kB] Fetched 3098kB in 0s (5277kB/s) Selecting previously deselected package libmagic1. (Reading database ... 12930 files and directories currently installed.) Unpacking libmagic1 (from .../libmagic1_4.17-3_amd64.deb) ... Selecting previously deselected package file. Unpacking file (from .../archives/file_4.17-3_amd64.deb) ... Selecting previously deselected package html2text. Unpacking html2text (from .../html2text_1.3.2a-3_amd64.deb) ... Selecting previously deselected package gettext. Unpacking gettext (from .../gettext_0.15-2_amd64.deb) ... Selecting previously deselected package intltool-debian. Unpacking intltool-debian (from .../intltool-debian_0.35.0+20060710_all.deb) ... Selecting previously deselected package po-debconf. Unpacking po-debconf (from .../po-debconf_1.0.5_all.deb) ... Selecting previously deselected package debhelper. Unpacking debhelper (from .../debhelper_5.0.37.3_all.deb) ... Selecting previously deselected package libdshconfig1. Unpacking libdshconfig1 (from .../libdshconfig1_0.20.12-2_amd64.deb) ... Selecting previously deselected package libdshconfig1-dev. Unpacking libdshconfig1-dev (from .../libdshconfig1-dev_0.20.12-2_amd64.deb) ... Setting up libmagic1 (4.17-3) ... Setting up file (4.17-3) ... Setting up html2text (1.3.2a-3) ... Setting up gettext (0.15-2) ... Setting up intltool-debian (0.35.0+20060710) ... Setting up po-debconf (1.0.5) ... Setting up debhelper (5.0.37.3) ... Setting up libdshconfig1 (0.20.12-2) ... Setting up libdshconfig1-dev (0.20.12-2) ... -> Finished parsing the build-deps Reading package lists... Building dependency tree... Suggested packages: distcc The following NEW packages will be installed: ccache fakeroot 0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded. Need to get 127kB of archives. After unpacking 516kB of additional disk space will be used. WARNING: The following packages cannot be authenticated! ccache fakeroot Get:1 http://glantank sid/main ccache 2.4-6 [29.3kB] Get:2 http://glantank sid/main fakeroot 1.5.10 [97.4kB] Fetched 127kB in 0s (12.2MB/s) Selecting previously deselected package ccache. (Reading database ... 13534 files and directories currently installed.) Unpacking ccache (from .../ccache_2.4-6_amd64.deb) ... Selecting previously deselected package fakeroot. Unpacking fakeroot (from .../fakeroot_1.5.10_amd64.deb) ... Setting up ccache (2.4-6) ... Setting up fakeroot (1.5.10) ... Copying source file -> copying [work/dsh_0.25.7-1.dsc] -> copying [work/dsh_0.25.7.orig.tar.gz] -> copying [work/dsh_0.25.7-1.diff.gz] Extracting source su: Authentication service cannot retrieve authentication info. (Ignored) dpkg-source: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234) dpkg-source: warning: could not verify signature on ./dsh_0.25.7-1.dsc since gpg isn't installed dpkg-source: extracting dsh in dsh-0.25.7 dpkg-source: unpacking dsh_0.25.7.orig.tar.gz dpkg-source: applying ./dsh_0.25.7-1.diff.gz -> Building the package su: Authentication service cannot retrieve authentication info. (Ignored) 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.7-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 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 amd64 dpkg-buildpackage: source version without epoch 0.25.7-1 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.7' make[1]: *** No rule to make target `clean'. Stop. make[1]: Leaving directory `/tmp/buildd/dsh-0.25.7' make: [clean] Error 2 (ignored) /usr/bin/make distclean make[1]: Entering directory `/tmp/buildd/dsh-0.25.7' make[1]: *** No rule to make target `distclean'. Stop. make[1]: Leaving directory `/tmp/buildd/dsh-0.25.7' make: [clean] Error 2 (ignored) dh_clean dpkg-source -b dsh-0.25.7 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-architecture: warning: no utmp entry available and LOGNAME not defined; using uid of process (1234) dpkg-source: building dsh using existing dsh_0.25.7.orig.tar.gz dpkg-source: building dsh in dsh_0.25.7-1.diff.gz dpkg-source: warning: file debian/compat has no final newline (either original or modified version) dpkg-source: warning: file dcp.sh has no final newline (either original or modified version) dpkg-source: building dsh in dsh_0.25.7-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 ISO C89... 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 ISO C89... (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 ISO C89... (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 grep that handles long lines and -e... /bin/grep checking for egrep... /bin/grep -E checking for ANSI C header files... yes checking for sys/wait.h that is POSIX.1 compatible... yes checking build system type... x86_64-unknown-linux-gnu checking host system type... x86_64-unknown-linux-gnu checking for a sed that does not truncate output... /bin/sed checking for ld used by gcc... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes 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 cf77... 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 pghpf... no checking for epcf90... no checking for gfortran... no checking for g95... no checking for f95... no checking for fort... no checking for xlf95... no checking for ifort... no checking for ifc... no checking for efc... no checking for pgf95... no checking for lf95... no checking for ftn... no checking whether we are using the GNU Fortran 77 compiler... no checking whether accepts -g... no checking the maximum length of command line arguments... 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 supports -fno-rtti -fno-exceptions... no checking for gcc option to produce PIC... -fPIC checking if gcc PIC flag -fPIC works... yes checking if gcc static flag -static works... yes checking if gcc supports -c -o file.o... yes checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) 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 -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking for g++ option to produce PIC... -fPIC checking if g++ PIC flag -fPIC works... yes checking if g++ static flag -static works... yes checking if g++ supports -c -o file.o... yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate appending configuration tag "F77" to libtool checking 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 -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) 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: WARNING: po/Makefile.in.in seems to ignore the --datarootdir setting 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.7' /usr/bin/make all-recursive make[2]: Entering directory `/tmp/buildd/dsh-0.25.7' Making all in m4 make[3]: Entering directory `/tmp/buildd/dsh-0.25.7/m4' make[3]: Nothing to be done for `all'. make[3]: Leaving directory `/tmp/buildd/dsh-0.25.7/m4' Making all in po make[3]: Entering directory `/tmp/buildd/dsh-0.25.7/po' make[3]: Nothing to be done for `all'. make[3]: Leaving directory `/tmp/buildd/dsh-0.25.7/po' make[3]: Entering directory `/tmp/buildd/dsh-0.25.7' 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 --tag=CC --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.7' make[2]: Leaving directory `/tmp/buildd/dsh-0.25.7' make[1]: Leaving directory `/tmp/buildd/dsh-0.25.7' /usr/bin/make check make[1]: Entering directory `/tmp/buildd/dsh-0.25.7' Making check in m4 make[2]: Entering directory `/tmp/buildd/dsh-0.25.7/m4' make[2]: Nothing to be done for `check'. make[2]: Leaving directory `/tmp/buildd/dsh-0.25.7/m4' Making check in po make[2]: Entering directory `/tmp/buildd/dsh-0.25.7/po' make[2]: Nothing to be done for `check'. make[2]: Leaving directory `/tmp/buildd/dsh-0.25.7/po' make[2]: Entering directory `/tmp/buildd/dsh-0.25.7' /usr/bin/make dsh make[3]: Entering directory `/tmp/buildd/dsh-0.25.7' make[3]: `dsh' is up to date. make[3]: Leaving directory `/tmp/buildd/dsh-0.25.7' /usr/bin/make check-TESTS make[3]: Entering directory `/tmp/buildd/dsh-0.25.7' PASS: tests/param-f.sh dsh: File ./tests/nonexistent.file could not be opened for read PASS: tests/param-f-fail.sh PASS: tests/param-f-with-space.sh PASS: tests/param-m.sh test to check that unknown parameter checking is right. ./dsh: unrecognized option `--unknown-parameter' ./dsh: invalid option -- u PASS: tests/param-unknown.sh test1 test2 PASS: tests/param-i.sh Check that cn4 option is working. PASS: tests/param-cn4.sh test to check that -b0 is rejected, and -b1 is accepted Buffer size needs to be greater than 1 Buffer size needs to be greater than 1 a b PASS: tests/param-b-0.sh dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call success dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call success success success success success a: dsh: Failed executing ./invalid-exec-file with llexec call b: dsh: Failed executing ./invalid-exec-file with llexec call c: dsh: Failed executing ./invalid-exec-file with llexec call d: dsh: Failed executing ./invalid-exec-file with llexec call success dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call success PASS: tests/param-r-invalid.sh 1: 1 2: 2 dsh: fork limit and wait shell cannot be specified at the same time PASS: tests/param-F-invalid.sh Thu Oct 26 22:40:11 UTC 2006 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 Thu Oct 26 22:40:16 UTC 2006 PASS: tests/param-F-forklimit.sh PASS: tests/param-gnu-getopt.sh PASS: tests/news-okay.sh a: a dsh: Process terminated (before write). b: b c: c PASS: tests/segv-catcher.sh l w PASS: tests/test-bufferoverflow.sh PASS: tests/machinelist-comment-test.sh PASS: tests/machinelist-order.sh =================== All 17 tests passed =================== make[3]: Leaving directory `/tmp/buildd/dsh-0.25.7' make[2]: Leaving directory `/tmp/buildd/dsh-0.25.7' make[1]: Leaving directory `/tmp/buildd/dsh-0.25.7' 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.7/debian/dsh make[1]: Entering directory `/tmp/buildd/dsh-0.25.7' Making install in m4 make[2]: Entering directory `/tmp/buildd/dsh-0.25.7/m4' make[3]: Entering directory `/tmp/buildd/dsh-0.25.7/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.7/m4' make[2]: Leaving directory `/tmp/buildd/dsh-0.25.7/m4' Making install in po make[2]: Entering directory `/tmp/buildd/dsh-0.25.7/po' /bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /tmp/buildd/dsh-0.25.7/debian/dsh/usr/share mkdir -p -- /tmp/buildd/dsh-0.25.7/debian/dsh/usr/share mkdir -p -- /tmp/buildd/dsh-0.25.7/debian/dsh/usr/share/locale/ja/LC_MESSAGES installing ja.gmo as /tmp/buildd/dsh-0.25.7/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.7/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.7/debian/dsh/usr/share/gettext/po/$file; \ done; \ else \ : ; \ fi make[2]: Leaving directory `/tmp/buildd/dsh-0.25.7/po' make[2]: Entering directory `/tmp/buildd/dsh-0.25.7' make[3]: Entering directory `/tmp/buildd/dsh-0.25.7' test -z "/usr/bin" || mkdir -p -- "/tmp/buildd/dsh-0.25.7/debian/dsh/usr/bin" /bin/sh ./libtool --mode=install install -p -o root -g root -m 755 -s 'dsh' '/tmp/buildd/dsh-0.25.7/debian/dsh/usr/bin/dsh' install -p -o root -g root -m 755 -s dsh /tmp/buildd/dsh-0.25.7/debian/dsh/usr/bin/dsh test -z "/etc/dsh" || mkdir -p -- "/tmp/buildd/dsh-0.25.7/debian/dsh/etc/dsh" /usr/bin/install -c -m 644 'dsh.conf' '/tmp/buildd/dsh-0.25.7/debian/dsh/etc/dsh/dsh.conf' for LANGS in ja ; do \ mkdir -p /tmp/buildd/dsh-0.25.7/debian/dsh/usr/share/man/$LANGS/man1 ;\ mkdir -p /tmp/buildd/dsh-0.25.7/debian/dsh/usr/share/man/$LANGS/man5 ;\ sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.$LANGS.1 \ > /tmp/buildd/dsh-0.25.7/debian/dsh/usr/share/man/$LANGS/man1/dsh.1 ; \ sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.conf.$LANGS.5 \ > /tmp/buildd/dsh-0.25.7/debian/dsh/usr/share/man/$LANGS/man5/dsh.conf.5 ; \ done test -z "/usr/share/man/man1" || mkdir -p -- "/tmp/buildd/dsh-0.25.7/debian/dsh/usr/share/man/man1" /usr/bin/install -c -m 644 './build-man/dsh.1' '/tmp/buildd/dsh-0.25.7/debian/dsh/usr/share/man/man1/dsh.1' test -z "/usr/share/man/man5" || mkdir -p -- "/tmp/buildd/dsh-0.25.7/debian/dsh/usr/share/man/man5" /usr/bin/install -c -m 644 './build-man/dsh.conf.5' '/tmp/buildd/dsh-0.25.7/debian/dsh/usr/share/man/man5/dsh.conf.5' make[3]: Leaving directory `/tmp/buildd/dsh-0.25.7' make[2]: Leaving directory `/tmp/buildd/dsh-0.25.7' make[1]: Leaving directory `/tmp/buildd/dsh-0.25.7' cp /tmp/buildd/dsh-0.25.7/debian/machines.list /tmp/buildd/dsh-0.25.7/debian/dsh/etc/dsh/machines.list cp /tmp/buildd/dsh-0.25.7/dsh.conf /tmp/buildd/dsh-0.25.7/debian/dsh/etc/dsh/dsh.conf ln -s ../machines.list /tmp/buildd/dsh-0.25.7/debian/dsh/etc/dsh/group/all install -d /tmp/buildd/dsh-0.25.7/debian/dsh/usr/lib/update-cluster install -m 755 /tmp/buildd/dsh-0.25.7/debian/dsh.updatelist /tmp/buildd/dsh-0.25.7/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 tar: -: file name read contains nul character dpkg-deb: building package `dsh' in `../dsh_0.25.7-1_amd64.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) -> unmounting dev/pts filesystem -> unmounting proc filesystem -> unmounting /home/dancer/cvscheckout/external/pbuilder/pbuilder/testsuite/regression/work/ccache filesystem Current time: Fri Oct 27 07:40:18 JST 2006 pbuilder-time-stamp: 1161902418 -> cleaning the build env -> removing directory /var/cache/pbuilder/build//3414 and its subdirectories work/ccache work/ccache/stats work/ccache/2 work/ccache/2/3 work/ccache/2/3/970f21dabe222aef50558268aea063-144 work/ccache/2/3/970f21dabe222aef50558268aea063-144.stderr work/ccache/2/stats work/ccache/2/f work/ccache/2/f/1dabc9b2bf50862e1febb6125e9c27-130772 work/ccache/2/f/1dabc9b2bf50862e1febb6125e9c27-130772.stderr work/ccache/e work/ccache/e/9 work/ccache/e/9/806c1f1ec49b9b2273e344729ba525-174 work/ccache/e/9/806c1f1ec49b9b2273e344729ba525-174.stderr work/ccache/e/stats work/ccache/e/f work/ccache/e/f/941e72ac84cfba3fe08bdcf21e6b21-147 work/ccache/e/f/941e72ac84cfba3fe08bdcf21e6b21-147.stderr work/ccache/e/e work/ccache/e/e/427979ad2050a0ed437a6c4c24ec79-152 work/ccache/e/e/427979ad2050a0ed437a6c4c24ec79-152.stderr work/ccache/e/5 work/ccache/e/5/a77e1ed05e88766d93bafd1156a10b-156 work/ccache/e/5/a77e1ed05e88766d93bafd1156a10b-156.stderr work/ccache/e/1 work/ccache/e/1/7cb9322946b39eed71a5facee4788a-189 work/ccache/e/1/7cb9322946b39eed71a5facee4788a-189.stderr work/ccache/e/a work/ccache/e/a/9c3bf913aa64a93a1e4ce0af90fd93-79876 work/ccache/e/a/9c3bf913aa64a93a1e4ce0af90fd93-79876.stderr work/ccache/1 work/ccache/1/1 work/ccache/1/1/2fe6438a00f3db8b5a7612d204b84e-175 work/ccache/1/1/2fe6438a00f3db8b5a7612d204b84e-175.stderr work/ccache/1/stats work/ccache/3 work/ccache/3/8 work/ccache/3/8/7977dc8c2f226b01eec1e40784a95c-178 work/ccache/3/8/7977dc8c2f226b01eec1e40784a95c-178.stderr work/ccache/3/stats work/ccache/3/3 work/ccache/3/3/0411aed218b8b5ebec0f07f1d47f2d-224 work/ccache/3/3/0411aed218b8b5ebec0f07f1d47f2d-224.stderr work/ccache/3/0 work/ccache/3/0/59641a3f6bbeb2d980c98099eb4bf5-255 work/ccache/3/0/59641a3f6bbeb2d980c98099eb4bf5-255.stderr work/ccache/3/4 work/ccache/3/4/2be26d15c455e3ebd90398e49b6132-81836 work/ccache/3/4/2be26d15c455e3ebd90398e49b6132-81836.stderr work/ccache/4 work/ccache/4/d work/ccache/4/d/c3663c483da847757b1b2229ff8510-167 work/ccache/4/d/c3663c483da847757b1b2229ff8510-167.stderr work/ccache/4/stats work/ccache/4/a work/ccache/4/a/a7eabfb9f11c9fa744fc9de42ab782-79172 work/ccache/4/a/a7eabfb9f11c9fa744fc9de42ab782-79172.stderr work/ccache/9 work/ccache/9/8 work/ccache/9/8/1c5ee4f924f25ca59825c56131de88-30158 work/ccache/9/8/1c5ee4f924f25ca59825c56131de88-30158.stderr work/ccache/9/8/2eb0f780dbef92ce8db4c0aebc1365-78421 work/ccache/9/8/2eb0f780dbef92ce8db4c0aebc1365-78421.stderr work/ccache/9/stats work/ccache/9/d work/ccache/9/d/660f99fa894c5d801d1729dd7bd486-42692 work/ccache/9/d/660f99fa894c5d801d1729dd7bd486-42692.stderr work/ccache/6 work/ccache/6/c work/ccache/6/c/46368ae8b9faef0a9408634d3a4ed0-409 work/ccache/6/c/46368ae8b9faef0a9408634d3a4ed0-409.stderr work/ccache/6/stats work/ccache/6/5 work/ccache/6/5/d258682390a77327050dfff691973b-131 work/ccache/6/5/d258682390a77327050dfff691973b-131.stderr work/ccache/6/e work/ccache/6/e/48867a6dae762155ebcfe99299c9d8-46254 work/ccache/6/e/48867a6dae762155ebcfe99299c9d8-46254.stderr work/ccache/6/8 work/ccache/6/8/c3313f9fb9d49a7e9f4ab963b731a7-61818 work/ccache/6/8/c3313f9fb9d49a7e9f4ab963b731a7-61818.stderr work/ccache/6/8/50c4053545e28b936304a4bac8ffa0-79366 work/ccache/6/8/50c4053545e28b936304a4bac8ffa0-79366.stderr work/ccache/6/a work/ccache/6/a/4f372361e0ecd0994809394cf9a045-88749 work/ccache/6/a/4f372361e0ecd0994809394cf9a045-88749.stderr work/ccache/b work/ccache/b/a work/ccache/b/a/71f30bb6147fe8e06be96adb8af72d-38189 work/ccache/b/a/71f30bb6147fe8e06be96adb8af72d-38189.stderr work/ccache/b/stats work/ccache/b/c work/ccache/b/c/6ebadc437635a3dd92ca9bc67c99ed-46235 work/ccache/b/c/6ebadc437635a3dd92ca9bc67c99ed-46235.stderr work/ccache/b/e work/ccache/b/e/5d70c81bc8b60f0536c5d8f6d8002a-61802 work/ccache/b/e/5d70c81bc8b60f0536c5d8f6d8002a-61802.stderr work/ccache/b/6 work/ccache/b/6/42c9b824345b74a01d35562ecf74b9-99565 work/ccache/b/6/42c9b824345b74a01d35562ecf74b9-99565.stderr work/ccache/b/b work/ccache/b/b/32473281e82584be8d09e25504d072-78410 work/ccache/b/b/32473281e82584be8d09e25504d072-78410.stderr work/ccache/5 work/ccache/5/3 work/ccache/5/3/811ac2683ec74317b801b5909cdd8f-23933 work/ccache/5/3/811ac2683ec74317b801b5909cdd8f-23933.stderr work/ccache/5/stats work/ccache/d work/ccache/d/3 work/ccache/d/3/1f454400341b9c85b5eee183af46db-58118 work/ccache/d/3/1f454400341b9c85b5eee183af46db-58118.stderr work/ccache/d/3/0c0bf393df2e37de9c26b754452b62-147 work/ccache/d/3/0c0bf393df2e37de9c26b754452b62-147.stderr work/ccache/d/stats work/ccache/d/1 work/ccache/d/1/dd210d30780880bfa2cc494016e9ef-58191 work/ccache/d/1/dd210d30780880bfa2cc494016e9ef-58191.stderr work/ccache/d/1/ece58708f8228c2d7d151cb52cfe14-156 work/ccache/d/1/ece58708f8228c2d7d151cb52cfe14-156.stderr work/ccache/d/8 work/ccache/d/8/603b4b94b02759f699471ef425ae67-79267 work/ccache/d/8/603b4b94b02759f699471ef425ae67-79267.stderr work/ccache/c work/ccache/c/1 work/ccache/c/1/aa1e20e2036b6cd831d950669dee19-58190 work/ccache/c/1/aa1e20e2036b6cd831d950669dee19-58190.stderr work/ccache/c/1/37834483e105f9af3ec00f5ecc8219-409 work/ccache/c/1/37834483e105f9af3ec00f5ecc8219-409.stderr work/ccache/c/stats work/ccache/c/2 work/ccache/c/2/1a7b8fe546aa87fba6fc1c63073bf9-864 work/ccache/c/2/1a7b8fe546aa87fba6fc1c63073bf9-864.stderr work/ccache/f work/ccache/f/2 work/ccache/f/2/2ab5a70d8104b880718ba6b74561f2-152 work/ccache/f/2/2ab5a70d8104b880718ba6b74561f2-152.stderr work/ccache/f/stats work/ccache/f/9 work/ccache/f/9/1e1c99b1d88b657186a1737aedfebf-175920 work/ccache/f/9/1e1c99b1d88b657186a1737aedfebf-175920.stderr work/ccache/8 work/ccache/8/d work/ccache/8/d/60fb67d6ba8af3014e0f45db4d684a-20351 work/ccache/8/d/60fb67d6ba8af3014e0f45db4d684a-20351.stderr work/ccache/8/stats work/ccache/7 work/ccache/7/f work/ccache/7/f/af40760aee5af94fd98f0f380d7284-48226 work/ccache/7/f/af40760aee5af94fd98f0f380d7284-48226.stderr work/ccache/7/stats pbuilder-0.215ubuntu7/testsuite/regression/log/287477-pkgname-logfile.sh.log0000664000000000000000000000107212312041170023467 0ustar W: /home/dancer/.pbuilderrc does not exist I: using fakeroot in build. pbuilder-buildpackage/amd64 $Id$ $Id$ Current time: Fri Oct 27 07:38:35 JST 2006 pbuilder-time-stamp: 1161902315 Building the build Environment -> extracting base tarball [/var/cache/pbuilder/base.tgz] -> creating local configuration -> copying local configuration -> mounting /proc filesystem -> mounting /dev/pts filesystem -> policy-rc.d already exists dsh_0.25.7-1.diff.gz dsh_0.25.7-1.dsc dsh_0.25.7-1_amd64.build dsh_0.25.7-1_amd64.changes dsh_0.25.7-1_amd64.deb dsh_0.25.7.orig.tar.gz pbuilder-0.215ubuntu7/testsuite/regression/log/344089-initscripts-inetd-workaround-check.sh.log0000664000000000000000000011063012312041170027340 0ustar Upgrading for distribution unstable Building the build Environment -> extracting base tarball [/home/dancer/cvscheckout/external/pbuilder/pbuilder/testsuite/regression/work/base-unstable.tgz] -> creating local configuration -> copying local configuration -> mounting /proc filesystem -> mounting /dev/pts filesystem -> policy-rc.d already exists -> Installing apt-lines Refreshing the base.tgz -> upgrading packages Get:1 http://ftp.jp.debian.org unstable/main Packages [3935kB] Get:2 http://ftp.jp.debian.org unstable/main Release [97B] Fetched 3935kB in 2s (1822kB/s) Reading Package Lists... dpkg - warning: ignoring request to remove lilo which isn't installed. Obtaining the cached apt archive contents Reading Package Lists... Building Dependency Tree... The following NEW packages will be installed: cpp-4.0 dmidecode g++-4.0 gcc-4.0 gcc-4.0-base laptop-detect libdb4.3 libdb4.4 libgnutls12 libncursesw5 libselinux1 libsepol1 libsigc++-2.0-0c2a libslang2 libssl0.9.8 libstdc++6 libstdc++6-4.0-dev lsb-base The following packages will be upgraded: adduser apt apt-utils aptitude at base-config base-files base-passwd bash binutils bsdmainutils bsdutils build-essential console-common console-data console-tools coreutils cpio 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 findutils g++ g++-3.3 gcc gcc-3.3 gcc-3.3-base gettext-base grep groff-base gzip hostname info initscripts iptables iputils-ping klogd libacl1 libattr1 libblkid1 libc6 libc6-dev libcomerr2 libconsole libdb1-compat libdb3 libdb4.2 libgcc1 libgcrypt11 libgnutls11 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 logrotate make makedev man-db manpages module-init-tools modutils mount nano ncurses-base ncurses-bin net-tools netbase netkit-inetd passwd patch perl perl-base perl-modules procps psmisc sed sysklogd sysv-rc sysvinit tar tasksel telnet util-linux wget whiptail zlib1g Preconfiguring packages ... 117 upgraded, 18 newly installed, 0 to remove and 0 not upgraded. Need to get 0B/64.8MB of archives. After unpacking 39.6MB of additional disk space will be used. (Reading database ... 10733 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-2_amd64.deb) ... Unpacking replacement linux-kernel-headers ... Preparing to replace libc6-dev 2.3.2.ds1-22 (using .../libc6-dev_2.3.6-1_amd64.deb) ... Unpacking replacement libc6-dev ... Preparing to replace libc6 2.3.2.ds1-22 (using .../libc6_2.3.6-1_amd64.deb) ... Name Service Switch update in the C Library: pre-installation question. Running services and programs that are using NSS need to be restarted, otherwise they might not be able to do lookup or authentication any more. The installation process is able to restart some services (such as ssh or telnetd), but other programs cannot be restarted automatically. One such program that needs manual stopping and restart after the glibc upgrade by yourself is xdm - because automatic restart might disconnect your active X11 sessions. Known packages that need to be stopped before the glibc upgrade are: xdm kdm gdm postgresql xscreensaver This script did not detect any installed services which need to be stopped. If you want to interrupt the upgrade now and continue later, please answer No to the question below. Non-interactive mode, upgrade glibc forcibly Unpacking replacement libc6 ... Setting up libc6 (2.3.6-1) ... Checking for services that may need to be restarted...done. Current default timezone: 'UTC'. Local time is now: Wed Feb 22 15:05:55 UTC 2006. Universal Time is now: Wed Feb 22 15:05:55 UTC 2006. Run 'tzconfig' if you wish to change it. (Reading database ... 11040 files and directories currently installed.) Preparing to replace debianutils 2.8.4 (using .../debianutils_2.15.2_amd64.deb) ... Unpacking replacement debianutils ... Replacing files in old package passwd ... Setting up debianutils (2.15.2) ... (Reading database ... 11053 files and directories currently installed.) Preparing to replace libncurses5 5.4-4 (using .../libncurses5_5.5-1_amd64.deb) ... Unpacking replacement libncurses5 ... Setting up libncurses5 (5.5-1) ... (Reading database ... 11054 files and directories currently installed.) Preparing to replace base-passwd 3.5.9 (using .../base-passwd_3.5.11_amd64.deb) ... Unpacking replacement base-passwd ... Setting up base-passwd (3.5.11) ... (Reading database ... 11055 files and directories currently installed.) Preparing to replace base-files 3.1.2 (using .../base-files_3.1.10_amd64.deb) ... Unpacking replacement base-files ... dpkg: warning - unable to delete old file `/usr/doc': Directory not empty Setting up base-files (3.1.10) ... 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 ... 11052 files and directories currently installed.) Preparing to replace bash 2.05b-26 (using .../archives/bash_3.1-2_amd64.deb) ... Unpacking replacement bash ... Setting up bash (3.1-2) ... Installing new version of config file /etc/bash.bashrc ... Installing new version of config file /etc/bash_completion ... Installing new version of config file /etc/skel/.bashrc ... Installing new version of config file /etc/skel/.bash_profile ... (Reading database ... 11057 files and directories currently installed.) Preparing to replace bsdutils 1:2.12p-4 (using .../bsdutils_1%3a2.12r-6_amd64.deb) ... Unpacking replacement bsdutils ... Setting up bsdutils (2.12r-6) ... Selecting previously deselected package libsepol1. (Reading database ... 11057 files and directories currently installed.) Unpacking libsepol1 (from .../libsepol1_1.10-2_amd64.deb) ... Setting up libsepol1 (1.10-2) ... Selecting previously deselected package libselinux1. (Reading database ... 11062 files and directories currently installed.) Unpacking libselinux1 (from .../libselinux1_1.28-4_amd64.deb) ... Setting up libselinux1 (1.28-4) ... (Reading database ... 11067 files and directories currently installed.) Preparing to replace coreutils 5.2.1-2 (using .../coreutils_5.93-5_amd64.deb) ... No diversion `any diversion of /usr/share/man/man1/md5sum.textutils.1.gz', none removed No diversion `any diversion of /usr/bin/md5sum.textutils', none removed Unpacking replacement coreutils ... Replacing files in old package dpkg ... Setting up coreutils (5.93-5) ... (Reading database ... 11080 files and directories currently installed.) Preparing to replace dpkg 1.10.28 (using .../dpkg_1.13.16_amd64.deb) ... Unpacking replacement dpkg ... Setting up dpkg (1.13.16) ... 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 ... (Reading database ... 11056 files and directories currently installed.) Preparing to replace e2fslibs 1.37-2sarge1 (using .../e2fslibs_1.38+1.39-WIP-2005.12.31-1_amd64.deb) ... Unpacking replacement e2fslibs ... Setting up e2fslibs (1.38+1.39-WIP-2005.12.31-1) ... (Reading database ... 11056 files and directories currently installed.) Preparing to replace e2fsprogs 1.37-2sarge1 (using .../e2fsprogs_1.38+1.39-WIP-2005.12.31-1_amd64.deb) ... Unpacking replacement e2fsprogs ... Replacing files in old package libuuid1 ... Replacing files in old package libblkid1 ... Setting up e2fsprogs (1.38+1.39-WIP-2005.12.31-1) ... (Reading database ... 11060 files and directories currently installed.) Preparing to replace findutils 4.1.20-6 (using .../findutils_4.2.27-1_amd64.deb) ... Unpacking replacement findutils ... Setting up findutils (4.2.27-1) ... Installing new version of config file /etc/updatedb.conf ... (Reading database ... 11081 files and directories currently installed.) Preparing to replace grep 2.5.1.ds1-4 (using .../grep_2.5.1.ds2-4_amd64.deb) ... Unpacking replacement grep ... Setting up grep (2.5.1.ds2-4) ... (Reading database ... 11080 files and directories currently installed.) Preparing to replace gzip 1.3.5-10 (using .../gzip_1.3.5-12_amd64.deb) ... Unpacking replacement gzip ... Setting up gzip (1.3.5-12) ... (Reading database ... 11080 files and directories currently installed.) Preparing to replace hostname 2.13 (using .../hostname_2.91_amd64.deb) ... Unpacking replacement hostname ... Setting up hostname (2.91) ... Selecting previously deselected package libdb4.3. (Reading database ... 11080 files and directories currently installed.) Unpacking libdb4.3 (from .../libdb4.3_4.3.29-4_amd64.deb) ... Preparing to replace libpam-runtime 0.76-22 (using .../libpam-runtime_0.79-3.1_all.deb) ... Unpacking replacement libpam-runtime ... Setting up libpam-runtime (0.79-3.1) ... Installing new version of config file /etc/pam.conf ... (Reading database ... 11084 files and directories currently installed.) Preparing to replace libpam0g 0.76-22 (using .../libpam0g_0.79-3.1_amd64.deb) ... Unpacking replacement libpam0g ... Setting up libpam0g (0.79-3.1) ... (Reading database ... 11084 files and directories currently installed.) Preparing to replace libpam-modules 0.76-22 (using .../libpam-modules_0.79-3.1_amd64.deb) ... Unpacking replacement libpam-modules ... Setting up libdb4.3 (4.3.29-4) ... Setting up libpam-modules (0.79-3.1) ... Installing new version of config file /etc/security/limits.conf ... Installing new version of config file /etc/security/access.conf ... Installing new version of config file /etc/security/pam_env.conf ... (Reading database ... 11088 files and directories currently installed.) Preparing to replace login 1:4.0.3-31sarge5 (using .../login_1%3a4.0.14-6_amd64.deb) ... Unpacking replacement login ... Setting up login (4.0.14-6) ... 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 ... 11134 files and directories currently installed.) Preparing to replace mount 2.12p-4 (using .../mount_2.12r-6_amd64.deb) ... Unpacking replacement mount ... Setting up mount (2.12r-6) ... (Reading database ... 11134 files and directories currently installed.) Preparing to replace ncurses-bin 5.4-4 (using .../ncurses-bin_5.5-1_amd64.deb) ... Unpacking replacement ncurses-bin ... Setting up ncurses-bin (5.5-1) ... (Reading database ... 11134 files and directories currently installed.) Preparing to replace perl-modules 5.8.4-8 (using .../perl-modules_5.8.8-2_all.deb) ... Unpacking replacement perl-modules ... Selecting previously deselected package libdb4.4. Unpacking libdb4.4 (from .../libdb4.4_4.4.20-2_amd64.deb) ... Preparing to replace perl-base 5.8.4-8 (using .../perl-base_5.8.8-2_amd64.deb) ... Unpacking replacement perl-base ... Setting up perl-base (5.8.8-2) ... (Reading database ... 11293 files and directories currently installed.) Preparing to replace perl 5.8.4-8 (using .../perl_5.8.8-2_amd64.deb) ... Unpacking replacement perl ... Preparing to replace sed 4.1.2-8 (using .../archives/sed_4.1.4-5_amd64.deb) ... Unpacking replacement sed ... Setting up sed (4.1.4-5) ... (Reading database ... 11654 files and directories currently installed.) Preparing to replace sysv-rc 2.86.ds1-1 (using .../sysv-rc_2.86.ds1-12_all.deb) ... Unpacking replacement sysv-rc ... Setting up sysv-rc (2.86.ds1-12) ... (Reading database ... 11664 files and directories currently installed.) Preparing to replace sysvinit 2.86.ds1-1 (using .../sysvinit_2.86.ds1-12_amd64.deb) ... Unpacking replacement sysvinit ... Setting up sysvinit (2.86.ds1-12) ... init: timeout opening/writing control channel /dev/initctl (Reading database ... 11665 files and directories currently installed.) Preparing to replace tar 1.14-2 (using .../tar_1.15.1-2_amd64.deb) ... Unpacking replacement tar ... Setting up tar (1.15.1-2) ... Selecting previously deselected package lsb-base. (Reading database ... 11669 files and directories currently installed.) Unpacking lsb-base (from .../lsb-base_3.0-15_all.deb) ... Setting up lsb-base (3.0-15) ... Selecting previously deselected package libslang2. (Reading database ... 11676 files and directories currently installed.) Unpacking libslang2 (from .../libslang2_2.0.5-3_amd64.deb) ... Setting up libslang2 (2.0.5-3) ... (Reading database ... 11688 files and directories currently installed.) Preparing to replace util-linux 2.12p-4 (using .../util-linux_2.12r-6_amd64.deb) ... Unpacking replacement util-linux ... Setting up util-linux (2.12r-6) ... Installing new version of config file /etc/init.d/hwclock.sh ... Installing new version of config file /etc/init.d/hwclockfirst.sh ... (Reading database ... 11688 files and directories currently installed.) Preparing to replace ncurses-base 5.4-4 (using .../ncurses-base_5.5-1_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.5-1) ... (Reading database ... 11692 files and directories currently installed.) Preparing to replace liblocale-gettext-perl 1.01-17 (using .../liblocale-gettext-perl_1.05-1_amd64.deb) ... Unpacking replacement liblocale-gettext-perl ... Preparing to replace libtext-iconv-perl 1.2-3 (using .../libtext-iconv-perl_1.4-2_amd64.deb) ... Unpacking replacement libtext-iconv-perl ... Preparing to replace libtext-charwidth-perl 0.04-1 (using .../libtext-charwidth-perl_0.04-3_amd64.deb) ... Unpacking replacement libtext-charwidth-perl ... Preparing to replace libtext-wrapi18n-perl 0.06-1 (using .../libtext-wrapi18n-perl_0.06-4_all.deb) ... Unpacking replacement libtext-wrapi18n-perl ... Preparing to replace debconf-i18n 1.4.30.13 (using .../debconf-i18n_1.4.70_all.deb) ... Unpacking replacement debconf-i18n ... Preparing to replace debconf 1.4.30.13 (using .../debconf_1.4.70_all.deb) ... Unpacking replacement debconf ... Preparing to replace console-data 2002.12.04dbs-49 (using .../console-data_2002.12.04dbs-52.2_all.deb) ... Unpacking replacement console-data ... Preparing to replace console-tools 1:0.2.3dbs-56 (using .../console-tools_1%3a0.2.3dbs-60_amd64.deb) ... Unpacking replacement console-tools ... Preparing to replace libconsole 1:0.2.3dbs-56 (using .../libconsole_1%3a0.2.3dbs-60_amd64.deb) ... Unpacking replacement libconsole ... Setting up liblocale-gettext-perl (1.05-1) ... Setting up libtext-iconv-perl (1.4-2) ... Setting up libtext-charwidth-perl (0.04-3) ... Setting up libtext-wrapi18n-perl (0.06-4) ... Setting up debconf-i18n (1.4.70) ... Setting up debconf (1.4.70) ... (Reading database ... 11720 files and directories currently installed.) Preparing to replace console-common 0.7.49 (using .../console-common_0.7.55.1_all.deb) ... Unpacking replacement console-common ... Selecting previously deselected package gcc-4.0-base. Unpacking gcc-4.0-base (from .../gcc-4.0-base_4.0.2-9_amd64.deb) ... Preparing to replace libgcc1 1:3.4.3-13 (using .../libgcc1_1%3a4.0.2-9_amd64.deb) ... Unpacking replacement libgcc1 ... Setting up gcc-4.0-base (4.0.2-9) ... Setting up libgcc1 (4.0.2-9) ... Selecting previously deselected package libstdc++6. (Reading database ... 11733 files and directories currently installed.) Unpacking libstdc++6 (from .../libstdc++6_4.0.2-9_amd64.deb) ... Setting up libstdc++6 (4.0.2-9) ... (Reading database ... 11736 files and directories currently installed.) Preparing to replace apt-utils 0.5.28.6 (using .../apt-utils_0.6.43.2_amd64.deb) ... Unpacking replacement apt-utils ... Selecting previously deselected package libncursesw5. Unpacking libncursesw5 (from .../libncursesw5_5.5-1_amd64.deb) ... Selecting previously deselected package libsigc++-2.0-0c2a. Unpacking libsigc++-2.0-0c2a (from .../libsigc++-2.0-0c2a_2.0.16-3_amd64.deb) ... Preparing to replace aptitude 0.2.15.9-2 (using .../aptitude_0.4.1-1_amd64.deb) ... Unpacking replacement aptitude ... Preparing to replace apt 0.5.28.6 (using .../apt_0.6.43.2_amd64.deb) ... Unpacking replacement apt ... Setting up apt (0.6.43.2) ... (Reading database ... 11763 files and directories currently installed.) Preparing to replace dselect 1.10.28 (using .../dselect_1.13.16_amd64.deb) ... Unpacking replacement dselect ... Setting up dselect (1.13.16) ... Installing new version of config file /etc/dpkg/dselect.cfg ... (Reading database ... 11788 files and directories currently installed.) Preparing to replace initscripts 2.86.ds1-1 (using .../initscripts_2.86.ds1-12_amd64.deb) ... Unmodified conffile '/etc/init.d/bootclean.sh' obsolete; removed `/etc/init.d/bootclean.sh' Unpacking replacement initscripts ... Setting up initscripts (2.86.ds1-12) ... Installing new version of config file /etc/init.d/bootlogd ... Installing new version of config file /etc/init.d/bootmisc.sh ... Installing new version of config file /etc/init.d/checkfs.sh ... Installing new version of config file /etc/init.d/checkroot.sh ... Installing new version of config file /etc/init.d/halt ... Installing new version of config file /etc/init.d/hostname.sh ... Installing new version of config file /etc/init.d/mountall.sh ... Installing new version of config file /etc/init.d/mountnfs.sh ... Installing new version of config file /etc/init.d/mountvirtfs ... Installing new version of config file /etc/init.d/reboot ... Installing new version of config file /etc/init.d/rmnologin ... Installing new version of config file /etc/init.d/sendsigs ... Installing new version of config file /etc/init.d/single ... Installing new version of config file /etc/init.d/umountfs ... Installing new version of config file /etc/init.d/umountnfs.sh ... Installing new version of config file /etc/init.d/urandom ... Installing new version of config file /etc/default/tmpfs ... (Reading database ... 11803 files and directories currently installed.) Preparing to replace libattr1 2.4.16-1 (using .../libattr1_2.4.25-1_amd64.deb) ... Unpacking replacement libattr1 ... Preparing to replace libacl1 2.2.23-1 (using .../libacl1_2.2.34-1_amd64.deb) ... Unpacking replacement libacl1 ... Setting up libattr1 (2.4.25-1) ... Setting up libacl1 (2.2.34-1) ... (Reading database ... 11803 files and directories currently installed.) Preparing to replace libblkid1 1.37-2sarge1 (using .../libblkid1_1.38+1.39-WIP-2005.12.31-1_amd64.deb) ... Unpacking replacement libblkid1 ... Setting up libblkid1 (1.38+1.39-WIP-2005.12.31-1) ... (Reading database ... 11803 files and directories currently installed.) Preparing to replace libcomerr2 1.37-2sarge1 (using .../libcomerr2_1.38+1.39-WIP-2005.12.31-1_amd64.deb) ... Unpacking replacement libcomerr2 ... Setting up libcomerr2 (1.38+1.39-WIP-2005.12.31-1) ... (Reading database ... 11803 files and directories currently installed.) Preparing to replace libss2 1.37-2sarge1 (using .../libss2_1.38+1.39-WIP-2005.12.31-1_amd64.deb) ... Unpacking replacement libss2 ... Setting up libss2 (1.38+1.39-WIP-2005.12.31-1) ... (Reading database ... 11803 files and directories currently installed.) Preparing to replace libuuid1 1.37-2sarge1 (using .../libuuid1_1.38+1.39-WIP-2005.12.31-1_amd64.deb) ... Unpacking replacement libuuid1 ... Setting up libuuid1 (1.38+1.39-WIP-2005.12.31-1) ... (Reading database ... 11803 files and directories currently installed.) Preparing to replace libgpg-error0 1.0-1 (using .../libgpg-error0_1.1-4_amd64.deb) ... Unpacking replacement libgpg-error0 ... Preparing to replace libgcrypt11 1.2.0-11.1 (using .../libgcrypt11_1.2.2-1_amd64.deb) ... Unpacking replacement libgcrypt11 ... Preparing to replace zlib1g 1:1.2.2-4 (using .../zlib1g_1%3a1.2.3-9_amd64.deb) ... Unpacking replacement zlib1g ... Setting up zlib1g (1.2.3-9) ... (Reading database ... 11803 files and directories currently installed.) Preparing to replace libopencdk8 0.5.5-10 (using .../libopencdk8_0.5.7-2_amd64.deb) ... Unpacking replacement libopencdk8 ... Preparing to replace libtasn1-2 0.2.10-3 (using .../libtasn1-2_0.2.17-1_amd64.deb) ... Unpacking replacement libtasn1-2 ... Preparing to replace liblzo1 1.08-1.2 (using .../liblzo1_1.08-3_amd64.deb) ... Unpacking replacement liblzo1 ... Selecting previously deselected package libgnutls12. Unpacking libgnutls12 (from .../libgnutls12_1.2.9-2_amd64.deb) ... Preparing to replace libdb4.2 4.2.52-18 (using .../libdb4.2_4.2.52-23_amd64.deb) ... Unpacking replacement libdb4.2 ... Preparing to replace libpcre3 4.5-1.2 (using .../libpcre3_6.4-1.1_amd64.deb) ... Unpacking replacement libpcre3 ... Preparing to replace exim4-daemon-light 4.50-8 (using .../exim4-daemon-light_4.60-3_amd64.deb) ... Unpacking replacement exim4-daemon-light ... Preparing to replace adduser 3.63 (using .../archives/adduser_3.84_all.deb) ... Unpacking replacement adduser ... Preparing to replace cron 3.0pl1-86 (using .../cron_3.0pl1-92_amd64.deb) ... Unpacking replacement cron ... Preparing to replace exim4-config 4.50-8 (using .../exim4-config_4.60-3_all.deb) ... Unpacking replacement exim4-config ... Preparing to replace netkit-inetd 0.10-10 (using .../netkit-inetd_0.10-10.3_amd64.deb) ... Unpacking replacement netkit-inetd ... Preparing to replace iputils-ping 3:20020927-2 (using .../iputils-ping_3%3a20020927-3_amd64.deb) ... Unpacking replacement iputils-ping ... Preparing to replace netbase 4.21 (using .../archives/netbase_4.24_all.deb) ... Unpacking replacement netbase ... Preparing to replace exim4-base 4.50-8 (using .../exim4-base_4.60-3_amd64.deb) ... Unpacking replacement exim4-base ... Preparing to replace passwd 1:4.0.3-31sarge5 (using .../passwd_1%3a4.0.14-6_amd64.deb) ... Unpacking replacement passwd ... Setting up passwd (4.0.14-6) ... Installing new version of config file /etc/pam.d/chfn ... Installing new version of config file /etc/pam.d/chsh ... (Reading database ... 11938 files and directories currently installed.) Preparing to replace binutils 2.15-6 (using .../binutils_2.16.1cvs20060117-1_amd64.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-12_amd64.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-12_amd64.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-12_amd64.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-12_amd64.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-12_amd64.deb) ... Unpacking replacement gcc-3.3-base ... Preparing to replace libstdc++5 1:3.3.5-13 (using .../libstdc++5_1%3a3.3.6-12_amd64.deb) ... Unpacking replacement libstdc++5 ... Setting up gcc-3.3-base (3.3.6-12) ... Setting up libstdc++5 (3.3.6-12) ... Selecting previously deselected package dmidecode. (Reading database ... 11960 files and directories currently installed.) Unpacking dmidecode (from .../dmidecode_2.8-1_amd64.deb) ... Selecting previously deselected package laptop-detect. Unpacking laptop-detect (from .../laptop-detect_0.12.1_amd64.deb) ... Preparing to replace tasksel 2.24 (using .../archives/tasksel_2.40_all.deb) ... Unpacking replacement tasksel ... Preparing to replace base-config 2.53.10-0.0.0.1.pure64 (using .../base-config_2.76_all.deb) ... Unpacking replacement base-config ... Preparing to replace bsdmainutils 6.0.17 (using .../bsdmainutils_6.1.3_amd64.deb) ... Unpacking replacement bsdmainutils ... Preparing to replace cpio 2.5-1.2 (using .../archives/cpio_2.6-10_amd64.deb) ... Unpacking replacement cpio ... Preparing to replace gettext-base 0.14.4-2 (using .../gettext-base_0.14.5-2_amd64.deb) ... Unpacking replacement gettext-base ... Preparing to replace groff-base 1.18.1.1-7 (using .../groff-base_1.18.1.1-11_amd64.deb) ... Unpacking replacement groff-base ... Preparing to replace info 4.7-2.2 (using .../archives/info_4.8-4_amd64.deb) ... Unpacking replacement info ... Preparing to replace iptables 1.2.11-10 (using .../iptables_1.3.3-2_amd64.deb) ... Unpacking replacement iptables ... Preparing to replace sysklogd 1.4.1-17 (using .../sysklogd_1.4.1-17.1_amd64.deb) ... Unpacking replacement sysklogd ... Preparing to replace klogd 1.4.1-17 (using .../klogd_1.4.1-17.1_amd64.deb) ... Unpacking replacement klogd ... Preparing to replace libgnutls11 1.0.16-13.1 (using .../libgnutls11_1.0.16-14_amd64.deb) ... Unpacking replacement libgnutls11 ... Selecting previously deselected package libssl0.9.8. Unpacking libssl0.9.8 (from .../libssl0.9.8_0.9.8a-7_amd64.deb) ... Preparing to replace logrotate 3.7-5 (using .../logrotate_3.7.1-2_amd64.deb) ... Unpacking replacement logrotate ... Preparing to replace man-db 2.4.2-21 (using .../man-db_2.4.3-3_amd64.deb) ... Unpacking replacement man-db ... Preparing to replace manpages 1.70-1 (using .../manpages_2.17-1_all.deb) ... Unpacking replacement manpages ... Preparing to replace module-init-tools 3.2-pre1-2 (using .../module-init-tools_3.2.2-2_amd64.deb) ... Unpacking replacement module-init-tools ... Preparing to replace modutils 2.4.26-1.2 (using .../modutils_2.4.27.0-4_amd64.deb) ... Unpacking replacement modutils ... Preparing to replace nano 1.2.4-5 (using .../nano_1.3.10-2_amd64.deb) ... Unpacking replacement nano ... Preparing to replace net-tools 1.60-10 (using .../net-tools_1.60-17_amd64.deb) ... Unpacking replacement net-tools ... Preparing to replace wget 1.9.1-12 (using .../wget_1.10.2-1_amd64.deb) ... Unpacking replacement wget ... Preparing to replace whiptail 0.51.6-20 (using .../whiptail_0.51.6-31_amd64.deb) ... Unpacking replacement whiptail ... Preparing to replace libnewt0.51 0.51.6-20 (using .../libnewt0.51_0.51.6-31_amd64.deb) ... Unpacking replacement libnewt0.51 ... Preparing to replace makedev 2.3.1-77 (using .../makedev_2.3.1-80_all.deb) ... Unpacking replacement makedev ... Preparing to replace procps 1:3.2.1-2 (using .../procps_1%3a3.2.6-2_amd64.deb) ... Unpacking replacement procps ... Preparing to replace at 3.1.8-11 (using .../archives/at_3.1.10_amd64.deb) ... Stopping deferred execution scheduler: atd. Unpacking replacement at ... Selecting previously deselected package cpp-4.0. Unpacking cpp-4.0 (from .../cpp-4.0_4.0.2-9_amd64.deb) ... Preparing to replace cpp 4:3.3.5-3 (using .../cpp_4%3a4.0.2-2_amd64.deb) ... Unpacking replacement cpp ... Preparing to replace patch 2.5.9-2 (using .../patch_2.5.9-4_amd64.deb) ... Unpacking replacement patch ... Preparing to replace make 3.80-9 (using .../make_3.80+3.81.b4-1_amd64.deb) ... Unpacking replacement make ... Preparing to replace dpkg-dev 1.10.28 (using .../dpkg-dev_1.13.16_all.deb) ... Unpacking replacement dpkg-dev ... Preparing to replace exim4 4.50-8 (using .../archives/exim4_4.60-3_all.deb) ... Unpacking replacement exim4 ... Selecting previously deselected package gcc-4.0. Unpacking gcc-4.0 (from .../gcc-4.0_4.0.2-9_amd64.deb) ... Preparing to replace gcc 4:3.3.5-3 (using .../gcc_4%3a4.0.2-2_amd64.deb) ... Removing old gcc doc directory. Unpacking replacement gcc ... Selecting previously deselected package libstdc++6-4.0-dev. Unpacking libstdc++6-4.0-dev (from .../libstdc++6-4.0-dev_4.0.2-9_amd64.deb) ... Selecting previously deselected package g++-4.0. Unpacking g++-4.0 (from .../g++-4.0_4.0.2-9_amd64.deb) ... Preparing to replace g++ 4:3.3.5-3 (using .../g++_4%3a4.0.2-2_amd64.deb) ... Unpacking replacement g++ ... Preparing to replace telnet 0.17-29 (using .../telnet_0.17-32_amd64.deb) ... Unpacking replacement telnet ... Preparing to replace build-essential 10.1 (using .../build-essential_11.2_amd64.deb) ... Unpacking replacement build-essential ... Preparing to replace dhcp3-client 3.0.1-2 (using .../dhcp3-client_3.0.3-6_amd64.deb) ... Unpacking replacement dhcp3-client ... Preparing to replace dhcp3-common 3.0.1-2 (using .../dhcp3-common_3.0.3-6_amd64.deb) ... Unpacking replacement dhcp3-common ... Preparing to replace libdb3 3.2.9-22 (using .../libdb3_3.2.9-23_amd64.deb) ... Unpacking replacement libdb3 ... Preparing to replace psmisc 21.5-1 (using .../psmisc_22.1-1_amd64.deb) ... Unpacking replacement psmisc ... Preparing to replace libdb1-compat 2.1.3-7 (using .../libdb1-compat_2.1.3-9_amd64.deb) ... Unpacking replacement libdb1-compat ... Preparing to replace libssl0.9.7 0.9.7e-3 (using .../libssl0.9.7_0.9.7g-5_amd64.deb) ... Unpacking replacement libssl0.9.7 ... Setting up linux-kernel-headers (2.6.13+0rc3-2) ... Setting up libc6-dev (2.3.6-1) ... Setting up libdb4.4 (4.4.20-2) ... Setting up console-data (2002.12.04dbs-52.2) ... Looking for keymap to install: NONE Setting up libconsole (0.2.3dbs-60) ... Setting up apt-utils (0.6.43.2) ... Setting up libncursesw5 (5.5-1) ... Setting up libsigc++-2.0-0c2a (2.0.16-3) ... Setting up aptitude (0.4.1-1) ... Setting up libgpg-error0 (1.1-4) ... Setting up libgcrypt11 (1.2.2-1) ... Setting up libopencdk8 (0.5.7-2) ... Setting up libtasn1-2 (0.2.17-1) ... Setting up liblzo1 (1.08-3) ... Setting up libgnutls12 (1.2.9-2) ... Setting up libdb4.2 (4.2.52-23) ... Setting up libpcre3 (6.4-1.1) ... Setting up adduser (3.84) ... Installing new version of config file /etc/deluser.conf ... Setting up cron (3.0pl1-92) ... Installing new version of config file /etc/init.d/cron ... Installing new version of config file /etc/cron.daily/standard ... Installing new version of config file /etc/pam.d/cron ... Setting up exim4-config (4.60-3) ... 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/router/400_exim4-config_system_aliases ... Installing new version of config file /etc/exim4/conf.d/router/150_exim4-config_hubbed_hosts ... Installing new version of config file /etc/exim4/conf.d/router/300_exim4-config_real_local ... Installing new version of config file /etc/exim4/conf.d/router/200_exim4-config_primary ... 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/rewrite/31_exim4-config_rewriting ... Installing new version of config file /etc/exim4/conf.d/main/03_exim4-config_tlsoptions ... Installing new version of config file /etc/exim4/conf.d/main/01_exim4-config_listmacrosdefs ... Installing new version of config file /etc/exim4/conf.d/transport/30_exim4-config_address_pipe ... Installing new version of config file /etc/exim4/passwd.client ... Installing new version of config file /etc/exim4/exim4.conf.template ... Setting up netkit-inetd (0.10-10.3) ... Setting up iputils-ping (20020927-3) ... Setting up netbase (4.24) ... Installing new version of config file /etc/protocols ... Installing new version of config file /etc/init.d/networking ... Installing new version of config file /etc/services ... Setting up exim4-base (4.60-3) ... Installing new version of config file /etc/init.d/exim4 ... Installing new version of config file /etc/cron.daily/exim4-base ... Setting up exim4-daemon-light (4.60-3) ... Setting up binutils (2.16.1cvs20060117-1) ... Setting up cpp-3.3 (3.3.6-12) ... Setting up gcc-3.3 (3.3.6-12) ... Setting up dmidecode (2.8-1) ... Setting up laptop-detect (0.12.1) ... Setting up tasksel (2.40) ... Setting up base-config (2.76) ... Setting up bsdmainutils (6.1.3) ... Setting up cpio (2.6-10) ... Setting up gettext-base (0.14.5-2) ... Setting up groff-base (1.18.1.1-11) ... Setting up info (4.8-4) ... Setting up iptables (1.3.3-2) ... Setting up libgnutls11 (1.0.16-14) ... Setting up libssl0.9.8 (0.9.8a-7) ... Setting up logrotate (3.7.1-2) ... Setting up man-db (2.4.3-3) ... Installing new version of config file /etc/manpath.config ... Setting up manpages (2.17-1) ... Setting up module-init-tools (3.2.2-2) ... Installing new version of config file /etc/init.d/module-init-tools ... Installing new version of config file /etc/modprobe.d/aliases ... Setting up modutils (2.4.27.0-4) ... 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 ... Architecture-specific modutils configuration for x86_64 not found, using defaults Setting up nano (1.3.10-2) ... Installing new version of config file /etc/nanorc ... Setting up net-tools (1.60-17) ... Setting up wget (1.10.2-1) ... Installing new version of config file /etc/wgetrc ... Setting up libnewt0.51 (0.51.6-31) ... Setting up whiptail (0.51.6-31) ... Setting up makedev (2.3.1-80) ... Installing new version of config file /etc/init.d/makedev ... Setting up procps (3.2.6-2) ... Installing new version of config file /etc/init.d/procps.sh ... Installing new version of config file /etc/sysctl.conf ... Setting up at (3.1.10) ... Installing new version of config file /etc/init.d/atd ... Setting up cpp-4.0 (4.0.2-9) ... Setting up cpp (4.0.2-2) ... Setting up patch (2.5.9-4) ... Setting up make (3.80+3.81.b4-1) ... Setting up exim4 (4.60-3) ... Setting up gcc-4.0 (4.0.2-9) ... Setting up gcc (4.0.2-2) ... Setting up telnet (0.17-32) ... Setting up dhcp3-common (3.0.3-6) ... Setting up dhcp3-client (3.0.3-6) ... Installing new version of config file /etc/dhcp3/dhclient-exit-hooks.d/debug ... Installing new version of config file /etc/dhcp3/dhclient-script ... Setting up libdb3 (3.2.9-23) ... Setting up psmisc (22.1-1) ... Setting up libdb1-compat (2.1.3-9) ... Setting up libssl0.9.7 (0.9.7g-5) ... Setting up libstdc++5-3.3-dev (3.3.6-12) ... Setting up klogd (1.4.1-17.1) ... Installing new version of config file /etc/init.d/klogd ... Stopping kernel log daemon: klogd. Setting up sysklogd (1.4.1-17.1) ... Setting up libstdc++6-4.0-dev (4.0.2-9) ... Setting up perl-modules (5.8.8-2) ... Setting up console-common (0.7.55.1) ... Installing new version of config file /etc/init.d/keymap.sh ... Looking for keymap to install: NONE Setting up console-tools (0.2.3dbs-60) ... Installing new version of config file /etc/init.d/console-screen.sh ... Setting up g++-3.3 (3.3.6-12) ... Setting up g++-4.0 (4.0.2-9) ... Setting up g++ (4.0.2-2) ... Setting up perl (5.8.8-2) ... Setting up dpkg-dev (1.13.16) ... 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.2) ... Reading package lists... Building dependency tree... build-essential is already the newest version. dpkg-dev is already the newest version. apt is already the newest version. 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. Copying back the cached apt archive contents W: no hooks of type E found -- ignoring E: Logic failure. -> unmounting dev/pts filesystem -> unmounting proc filesystem -> creating base tarball [/home/dancer/cvscheckout/external/pbuilder/pbuilder/testsuite/regression/work/base-unstable.tgz] -> cleaning the build env -> removing directory /var/cache/pbuilder/build//1950 and its subdirectories pbuilder-0.215ubuntu7/testsuite/regression/log/run-test-satisfy-depends.log0000664000000000000000000000007312312041170024116 0ustar [SUCCESS] gtk2-engines 2.8.1-3 [FAIL] gtk2-engines 2.8.1-4 pbuilder-0.215ubuntu7/testsuite/regression/526471-pdebuild-fail-scripts.sh0000775000000000000000000000165712312041170023255 0ustar #!/bin/bash # test pbuilder executes the failure script on failure # run like: # rm -r work/; mkdir work/ ; ./526471-pdebuild-fail-scripts.sh set -e mkdir work/526471 mkdir work/526471-hook echo 'echo failpkg-hook-executed' > work/526471-hook/C01_failhook chmod a+x work/526471-hook/C01_failhook echo 'echo failpkg-F-hook-executed' > work/526471-hook/F01_hook chmod a+x work/526471-hook/F01_hook echo 'echo failpkg-A-hook-executed' > work/526471-hook/A01_hook chmod a+x work/526471-hook/A01_hook HOOKDIR=$(readlink -f work/526471-hook) cd work/526471 dpkg-source -x ../../../random-manual-test-material/failpkg/failpkg_0.1.dsc cd failpkg-0.1 # the next command fails, but the error code is eaten by pipe; tee succeeds. pdebuild --use-pdebuild-internal -- --hookdir "${HOOKDIR}" | tee ../526471.log # I want to check for the output content. C01_failhook should have # been ran and output there. grep 'failpkg-hook-executed' ../526471.log pbuilder-0.215ubuntu7/testsuite/regression/287477-pkgname-logfile.sh0000664000000000000000000000040312312041170022123 0ustar #!/bin/bash # test pdebuild --pkgname-logfile set -e exec > "$OUTPUT_LOGNAME" 2>&1 mkdir work/result sudo pbuilder build --pkgname-logfile --buildresult work/result/ work/dsh*.dsc ls -1 work/result [ -f work/result/dsh*$(dpkg --print-architecture).build ] pbuilder-0.215ubuntu7/testsuite/regression/342665-pbuilder-ccache.sh0000664000000000000000000000040312312041170022063 0ustar #!/bin/bash # test pbuilder operation with ccache. set -e mkdir work/ccache chmod 1777 work/ccache sudo pbuilder build --logfile "$OUTPUT_LOGNAME" --configfile 342665-config work/dsh*.dsc [ 1 -lt $(find work/ccache | tee -a "$OUTPUT_LOGNAME" | wc -l ) ]; pbuilder-0.215ubuntu7/testsuite/regression/work/0000775000000000000000000000000012312041256016740 5ustar pbuilder-0.215ubuntu7/testsuite/regression/work/526471-hook/0000775000000000000000000000000012312041256020446 5ustar pbuilder-0.215ubuntu7/testsuite/regression/work/526471-hook/F01_hook0000775000000000000000000000003512312041170021733 0ustar echo failpkg-F-hook-executed pbuilder-0.215ubuntu7/testsuite/regression/work/526471-hook/C01_failhook0000775000000000000000000000003312312041170022562 0ustar echo failpkg-hook-executed pbuilder-0.215ubuntu7/testsuite/regression/work/526471-hook/A01_hook0000775000000000000000000000003512312041170021726 0ustar echo failpkg-A-hook-executed pbuilder-0.215ubuntu7/testsuite/regression/work/526471/0000775000000000000000000000000012312041256017510 5ustar pbuilder-0.215ubuntu7/testsuite/regression/work/526471/failpkg_0.1.dsc0000664000000000000000000000123212312041170022167 0ustar Format: 1.0 Source: failpkg Binary: failpkg Architecture: any Version: 0.1 Maintainer: Junichi Uekawa Standards-Version: 3.7.2 Build-Depends: debhelper (>= 5) Checksums-Sha1: 21acc64770c480487aaef9f2646954d0981abf23 208 failpkg_0.1.orig.tar.gz 48990149747ffcd5d082fd2af1391ebdea4cbab1 1178 failpkg_0.1.diff.gz Checksums-Sha256: 845845364e0ccc22c0414dbe01dbe43f86f2468533828d4b5f17a3c1ddeea5d0 208 failpkg_0.1.orig.tar.gz 9c94f563bff4afb2d2de6a2ea88f8f34286c045140f20445bd3d8072b9ba3a6d 1178 failpkg_0.1.diff.gz Files: 355d04744c279e26b326b18016558ba7 208 failpkg_0.1.orig.tar.gz 700b855b5c4b11364b0584f5fd604260 1178 failpkg_0.1.diff.gz pbuilder-0.215ubuntu7/testsuite/regression/work/526471/failpkg_0.1.diff.gz0000664000000000000000000000223212312041170022746 0ustar .KVmS6L~v‡pF9z-\!p7(lkbK>Iw%NJ0X>vW.%2rG@H `ePqޜNG~tJS( fIitL4 P$r`tb^&HIa%֔b ] U JV9c"M)X璃cKE`5RllL>_>3pnd,;p!2Q9( 9h~qhtRxYKA*)+ L/7 o¯!!2/ITuEǻo$˝a+}ɉv<? g@ !x*J8q0n`9ZJ?B q%S&MPSiXKIc8nP0M&nxAwY\Fe/RIuQ[nivxvػz~ďa[YI.-p"ik0MW60tu_ߘ7 1AvLv <у7=gTwߥDDjx᫖>nC^a[֤A[DӶWI:n3t[]P&ŗ~YXK>BUZ K8a6sAiMVJJ妽L{eFvA;˟U v]N:!ΓBcXxogz~H诐KC,+U֜ڧ3, xK"1 ܧrZ`syo𝞌F0ٛz'>}7 E8M+CK.V]+H_)`?*خl#Pfp2 <8&F(8ÿ4J}L(++@⬁/#lfu@}>0p2cK?Qn} pbuilder-0.215ubuntu7/testsuite/regression/work/526471/failpkg_0.1_amd64.build0000664000000000000000000002770512312041170023525 0ustar W: /home/dancer/.pbuilderrc does not exist I: Building the build Environment I: extracting base tarball [/var/cache/pbuilder/base.tgz] I: creating local configuration I: copying local configuration I: mounting /proc filesystem I: mounting /dev/pts filesystem I: Mounting /home/dancer/DEBIAN/pbuilder/pbuilder/testsuite/regression/work/526471 I: policy-rc.d already exists I: user script /var/cache/pbuilder/build//18619/tmp/hooks/F01_hook starting failpkg-F-hook-executed I: user script /var/cache/pbuilder/build//18619/tmp/hooks/F01_hook finished Reading package lists... Building dependency tree... Reading state information... passwd is already the newest version. The following extra packages will be installed: cdebootstrap libdebian-installer-extra4 libdebian-installer4 libssl0.9.8 wget Suggested packages: pbuilder-uml gdebi cowdancer Recommended packages: sudo devscripts The following NEW packages will be installed: cdebootstrap libdebian-installer-extra4 libdebian-installer4 libssl0.9.8 pbuilder wget 0 upgraded, 6 newly installed, 0 to remove and 0 not upgraded. Need to get 2144kB of archives. After this operation, 6226kB of additional disk space will be used. Get:1 http://localhost sid/main libssl0.9.8 0.9.8k-7 [979kB] Get:2 http://localhost sid/main wget 1.12-1.1 [757kB] Get:3 http://localhost sid/main libdebian-installer4 0.69 [31.0kB] Get:4 http://localhost sid/main libdebian-installer-extra4 0.69 [12.9kB] Get:5 http://localhost sid/main cdebootstrap 0.5.5 [32.3kB] Get:6 http://localhost sid/main pbuilder 0.192 [331kB] debconf: delaying package configuration, since apt-utils is not installed Fetched 2144kB in 0s (25.7MB/s) Selecting previously deselected package libssl0.9.8. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 10112 files and directories currently installed.) Unpacking libssl0.9.8 (from .../libssl0.9.8_0.9.8k-7_amd64.deb) ... Selecting previously deselected package wget. Unpacking wget (from .../wget_1.12-1.1_amd64.deb) ... Selecting previously deselected package libdebian-installer4. Unpacking libdebian-installer4 (from .../libdebian-installer4_0.69_amd64.deb) ... Selecting previously deselected package libdebian-installer-extra4. Unpacking libdebian-installer-extra4 (from .../libdebian-installer-extra4_0.69_amd64.deb) ... Selecting previously deselected package cdebootstrap. Unpacking cdebootstrap (from .../cdebootstrap_0.5.5_amd64.deb) ... Selecting previously deselected package pbuilder. Unpacking pbuilder (from .../pbuilder_0.192_all.deb) ... Setting up libssl0.9.8 (0.9.8k-7) ... Setting up wget (1.12-1.1) ... Setting up libdebian-installer4 (0.69) ... Setting up libdebian-installer-extra4 (0.69) ... Setting up cdebootstrap (0.5.5) ... Setting up pbuilder (0.192) ... I: Setting DEBBUILDOPTS= W: no hooks of type D found -- ignoring -> Attempting to satisfy build-dependencies -> Creating pbuilder-satisfydepends-dummy package Package: pbuilder-satisfydepends-dummy Version: 0.invalid.0 Architecture: amd64 Maintainer: Debian Pbuilder Team Description: Dummy package to satisfy dependencies with aptitude - created by pbuilder This package was created automatically by pbuilder and should Depends: debhelper (>= 5) dpkg-deb: building package `pbuilder-satisfydepends-dummy' in `/tmp/satisfydepends-aptitude/pbuilder-satisfydepends-dummy.deb'. Reading package lists... Building dependency tree... Reading state information... aptitude is already the newest version. 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. Selecting previously deselected package pbuilder-satisfydepends-dummy. (Reading database ... 10312 files and directories currently installed.) Unpacking pbuilder-satisfydepends-dummy (from .../pbuilder-satisfydepends-dummy.deb) ... dpkg: dependency problems prevent configuration of pbuilder-satisfydepends-dummy: pbuilder-satisfydepends-dummy depends on debhelper (>= 5); however: Package debhelper is not installed. dpkg: error processing pbuilder-satisfydepends-dummy (--install): dependency problems - leaving unconfigured Errors were encountered while processing: pbuilder-satisfydepends-dummy Reading package lists... Building dependency tree... Reading state information... Initializing package states... Writing extended state information... The following NEW packages will be installed: bsdmainutils{a} debhelper{a} file{a} gettext{a} gettext-base{a} groff-base{a} html2text{a} intltool-debian{a} libcroco3{a} libglib2.0-0{a} libmagic1{a} libpcre3{a} libxml2{a} man-db{a} po-debconf{a} The following partially installed packages will be configured: pbuilder-satisfydepends-dummy 0 packages upgraded, 15 newly installed, 0 to remove and 0 not upgraded. Need to get 8918kB of archives. After unpacking 26.3MB will be used. Writing extended state information... Get:1 http://localhost sid/main libmagic1 5.03-3 [389kB] Get:2 http://localhost sid/main file 5.03-3 [46.9kB] Get:3 http://localhost sid/main html2text 1.3.2a-14 [103kB] Get:4 http://localhost sid/main libpcre3 7.8-3 [215kB] Get:5 http://localhost sid/main libglib2.0-0 2.22.2-2 [984kB] Get:6 http://localhost sid/main libxml2 2.7.6.dfsg-1 [876kB] Get:7 http://localhost sid/main libcroco3 0.6.2-1 [125kB] Get:8 http://localhost sid/main gettext-base 0.17-8 [133kB] Get:9 http://localhost sid/main gettext 0.17-8 [2503kB] Get:10 http://localhost sid/main intltool-debian 0.35.0+20060710.1 [30.8kB] Get:11 http://localhost sid/main po-debconf 1.0.16 [224kB] Get:12 http://localhost sid/main groff-base 1.20.1-6 [1156kB] Get:13 http://localhost sid/main bsdmainutils 8.0.2 [198kB] Get:14 http://localhost sid/main man-db 2.5.6-4 [1477kB] Get:15 http://localhost sid/main debhelper 7.4.8 [458kB] debconf: delaying package configuration, since apt-utils is not installed Fetched 8918kB in 0s (40.3MB/s) Selecting previously deselected package libmagic1. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 10312 files and directories currently installed.) Unpacking libmagic1 (from .../libmagic1_5.03-3_amd64.deb) ... Selecting previously deselected package file. Unpacking file (from .../archives/file_5.03-3_amd64.deb) ... Selecting previously deselected package html2text. Unpacking html2text (from .../html2text_1.3.2a-14_amd64.deb) ... Selecting previously deselected package libpcre3. Unpacking libpcre3 (from .../libpcre3_7.8-3_amd64.deb) ... Selecting previously deselected package libglib2.0-0. Unpacking libglib2.0-0 (from .../libglib2.0-0_2.22.2-2_amd64.deb) ... Selecting previously deselected package libxml2. Unpacking libxml2 (from .../libxml2_2.7.6.dfsg-1_amd64.deb) ... Selecting previously deselected package libcroco3. Unpacking libcroco3 (from .../libcroco3_0.6.2-1_amd64.deb) ... Selecting previously deselected package gettext-base. Unpacking gettext-base (from .../gettext-base_0.17-8_amd64.deb) ... Selecting previously deselected package gettext. Unpacking gettext (from .../gettext_0.17-8_amd64.deb) ... Selecting previously deselected package intltool-debian. Unpacking intltool-debian (from .../intltool-debian_0.35.0+20060710.1_all.deb) ... Selecting previously deselected package po-debconf. Unpacking po-debconf (from .../po-debconf_1.0.16_all.deb) ... Selecting previously deselected package groff-base. Unpacking groff-base (from .../groff-base_1.20.1-6_amd64.deb) ... Selecting previously deselected package bsdmainutils. Unpacking bsdmainutils (from .../bsdmainutils_8.0.2_amd64.deb) ... Selecting previously deselected package man-db. Unpacking man-db (from .../man-db_2.5.6-4_amd64.deb) ... Selecting previously deselected package debhelper. Unpacking debhelper (from .../debhelper_7.4.8_all.deb) ... Setting up libmagic1 (5.03-3) ... Setting up file (5.03-3) ... Setting up html2text (1.3.2a-14) ... Setting up libpcre3 (7.8-3) ... Setting up libglib2.0-0 (2.22.2-2) ... Setting up libxml2 (2.7.6.dfsg-1) ... Setting up libcroco3 (0.6.2-1) ... Setting up gettext-base (0.17-8) ... Setting up gettext (0.17-8) ... Setting up intltool-debian (0.35.0+20060710.1) ... Setting up po-debconf (1.0.16) ... Setting up groff-base (1.20.1-6) ... Setting up bsdmainutils (8.0.2) ... update-alternatives: using /usr/bin/bsd-write to provide /usr/bin/write (write) in auto mode. Setting up man-db (2.5.6-4) ... Building database of manual pages ... Setting up debhelper (7.4.8) ... Setting up pbuilder-satisfydepends-dummy (0.invalid.0) ... Reading package lists... Building dependency tree... Reading state information... Reading extended state information... Initializing package states... Writing extended state information... -> Finished parsing the build-deps Reading package lists... Building dependency tree... Reading state information... fakeroot is already the newest version. 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. I: user script //tmp/hooks/A01_hook starting failpkg-A-hook-executed I: user script //tmp/hooks/A01_hook finished dpkg-buildpackage: set CFLAGS to default value: -g -O2 dpkg-buildpackage: set CPPFLAGS to default value: dpkg-buildpackage: set LDFLAGS to default value: dpkg-buildpackage: set FFLAGS to default value: -g -O2 dpkg-buildpackage: set CXXFLAGS to default value: -g -O2 dpkg-buildpackage: source package failpkg dpkg-buildpackage: source version 0.1 dpkg-buildpackage: source changed by Junichi Uekawa dpkg-buildpackage: host architecture amd64 fakeroot debian/rules clean dh_testdir dh_testroot rm -f build-stamp configure-stamp # Add here commands to clean up after the build process. /usr/bin/make clean make[1]: Entering directory `/home/dancer/DEBIAN/pbuilder/pbuilder/testsuite/regression/work/526471/failpkg-0.1' make[1]: *** No rule to make target `clean'. Stop. make[1]: Leaving directory `/home/dancer/DEBIAN/pbuilder/pbuilder/testsuite/regression/work/526471/failpkg-0.1' make: [clean] Error 2 (ignored) dh_clean dh_clean: Compatibility levels before 5 are deprecated. dpkg-source -b failpkg-0.1 dpkg-source: info: using source format `1.0' dpkg-source: info: building failpkg using existing failpkg_0.1.orig.tar.gz dpkg-source: info: building failpkg in failpkg_0.1.diff.gz dpkg-source: info: building failpkg in failpkg_0.1.dsc debian/rules build dh_testdir # Add here commands to configure the package. touch configure-stamp dh_testdir # Add here commands to compile the package. /usr/bin/make make[1]: Entering directory `/home/dancer/DEBIAN/pbuilder/pbuilder/testsuite/regression/work/526471/failpkg-0.1' make[1]: *** No targets specified and no makefile found. Stop. make[1]: Leaving directory `/home/dancer/DEBIAN/pbuilder/pbuilder/testsuite/regression/work/526471/failpkg-0.1' make: *** [build-stamp] Error 2 dpkg-buildpackage: error: debian/rules build gave error exit status 2 I: user script //tmp/hooks/C01_failhook starting failpkg-hook-executed I: user script //tmp/hooks/C01_failhook finished I: unmounting /home/dancer/DEBIAN/pbuilder/pbuilder/testsuite/regression/work/526471 filesystem I: unmounting dev/pts filesystem I: unmounting proc filesystem I: cleaning the build env I: removing directory /var/cache/pbuilder/build//18619 and its subdirectories pbuilder-0.215ubuntu7/testsuite/regression/work/526471/failpkg-0.1/0000775000000000000000000000000012312041256021421 5ustar pbuilder-0.215ubuntu7/testsuite/regression/work/526471/failpkg-0.1/debian/0000775000000000000000000000000012312041256022643 5ustar pbuilder-0.215ubuntu7/testsuite/regression/work/526471/failpkg-0.1/debian/rules0000775000000000000000000000356312312041170023725 0ustar #!/usr/bin/make -f # -*- makefile -*- # Sample debian/rules that uses debhelper. # This file was originally written by Joey Hess and Craig Small. # As a special exception, when this file is copied by dh-make into a # dh-make output file, you may use that output file without restriction. # This special exception was added by Craig Small in version 0.37 of dh-make. # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 CFLAGS = -Wall -g ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) CFLAGS += -O0 else CFLAGS += -O2 endif configure: configure-stamp configure-stamp: dh_testdir # Add here commands to configure the package. touch configure-stamp build: build-stamp build-stamp: configure-stamp dh_testdir # Add here commands to compile the package. $(MAKE) #docbook-to-man debian/failpkg.sgml > failpkg.1 touch $@ clean: dh_testdir dh_testroot rm -f build-stamp configure-stamp # Add here commands to clean up after the build process. -$(MAKE) clean dh_clean install: build dh_testdir dh_testroot dh_clean -k dh_installdirs # Add here commands to install the package into debian/failpkg. $(MAKE) DESTDIR=$(CURDIR)/debian/failpkg install # Build architecture-independent files here. binary-indep: build install # We have nothing to do by default. # Build architecture-dependent files here. binary-arch: build install dh_testdir dh_testroot dh_installchangelogs dh_installdocs dh_installexamples # dh_install # dh_installmenu # dh_installdebconf # dh_installlogrotate # dh_installemacsen # dh_installpam # dh_installmime # dh_python # dh_installinit # dh_installcron # dh_installinfo dh_installman dh_link dh_strip dh_compress dh_fixperms # dh_perl # dh_makeshlibs dh_installdeb dh_shlibdeps dh_gencontrol dh_md5sums dh_builddeb binary: binary-indep binary-arch .PHONY: build clean binary-indep binary-arch binary install configure pbuilder-0.215ubuntu7/testsuite/regression/work/526471/failpkg-0.1/debian/control0000664000000000000000000000051312312041170024240 0ustar Source: failpkg Section: unknown Priority: extra Maintainer: Junichi Uekawa Build-Depends: debhelper (>= 5) Standards-Version: 3.7.2 Package: failpkg Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} Description: pbuilder-0.215ubuntu7/testsuite/regression/work/526471/failpkg-0.1/debian/changelog0000664000000000000000000000021012312041170024501 0ustar failpkg (0.1) unstable; urgency=low * a package that fails -- Junichi Uekawa Sun, 27 May 2007 14:27:53 +0900 pbuilder-0.215ubuntu7/testsuite/regression/work/526471/failpkg-0.1/README0000664000000000000000000000006712312041170022277 0ustar This is an example package that simply fails to build. pbuilder-0.215ubuntu7/testsuite/regression/work/526471/failpkg-0.1/configure-stamp0000664000000000000000000000000012312041170024430 0ustar pbuilder-0.215ubuntu7/testsuite/regression/work/526471/526471.log0000664000000000000000000002770512312041170020771 0ustar W: /home/dancer/.pbuilderrc does not exist I: Building the build Environment I: extracting base tarball [/var/cache/pbuilder/base.tgz] I: creating local configuration I: copying local configuration I: mounting /proc filesystem I: mounting /dev/pts filesystem I: Mounting /home/dancer/DEBIAN/pbuilder/pbuilder/testsuite/regression/work/526471 I: policy-rc.d already exists I: user script /var/cache/pbuilder/build//18619/tmp/hooks/F01_hook starting failpkg-F-hook-executed I: user script /var/cache/pbuilder/build//18619/tmp/hooks/F01_hook finished Reading package lists... Building dependency tree... Reading state information... passwd is already the newest version. The following extra packages will be installed: cdebootstrap libdebian-installer-extra4 libdebian-installer4 libssl0.9.8 wget Suggested packages: pbuilder-uml gdebi cowdancer Recommended packages: sudo devscripts The following NEW packages will be installed: cdebootstrap libdebian-installer-extra4 libdebian-installer4 libssl0.9.8 pbuilder wget 0 upgraded, 6 newly installed, 0 to remove and 0 not upgraded. Need to get 2144kB of archives. After this operation, 6226kB of additional disk space will be used. Get:1 http://localhost sid/main libssl0.9.8 0.9.8k-7 [979kB] Get:2 http://localhost sid/main wget 1.12-1.1 [757kB] Get:3 http://localhost sid/main libdebian-installer4 0.69 [31.0kB] Get:4 http://localhost sid/main libdebian-installer-extra4 0.69 [12.9kB] Get:5 http://localhost sid/main cdebootstrap 0.5.5 [32.3kB] Get:6 http://localhost sid/main pbuilder 0.192 [331kB] debconf: delaying package configuration, since apt-utils is not installed Fetched 2144kB in 0s (25.7MB/s) Selecting previously deselected package libssl0.9.8. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 10112 files and directories currently installed.) Unpacking libssl0.9.8 (from .../libssl0.9.8_0.9.8k-7_amd64.deb) ... Selecting previously deselected package wget. Unpacking wget (from .../wget_1.12-1.1_amd64.deb) ... Selecting previously deselected package libdebian-installer4. Unpacking libdebian-installer4 (from .../libdebian-installer4_0.69_amd64.deb) ... Selecting previously deselected package libdebian-installer-extra4. Unpacking libdebian-installer-extra4 (from .../libdebian-installer-extra4_0.69_amd64.deb) ... Selecting previously deselected package cdebootstrap. Unpacking cdebootstrap (from .../cdebootstrap_0.5.5_amd64.deb) ... Selecting previously deselected package pbuilder. Unpacking pbuilder (from .../pbuilder_0.192_all.deb) ... Setting up libssl0.9.8 (0.9.8k-7) ... Setting up wget (1.12-1.1) ... Setting up libdebian-installer4 (0.69) ... Setting up libdebian-installer-extra4 (0.69) ... Setting up cdebootstrap (0.5.5) ... Setting up pbuilder (0.192) ... I: Setting DEBBUILDOPTS= W: no hooks of type D found -- ignoring -> Attempting to satisfy build-dependencies -> Creating pbuilder-satisfydepends-dummy package Package: pbuilder-satisfydepends-dummy Version: 0.invalid.0 Architecture: amd64 Maintainer: Debian Pbuilder Team Description: Dummy package to satisfy dependencies with aptitude - created by pbuilder This package was created automatically by pbuilder and should Depends: debhelper (>= 5) dpkg-deb: building package `pbuilder-satisfydepends-dummy' in `/tmp/satisfydepends-aptitude/pbuilder-satisfydepends-dummy.deb'. Reading package lists... Building dependency tree... Reading state information... aptitude is already the newest version. 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. Selecting previously deselected package pbuilder-satisfydepends-dummy. (Reading database ... 10312 files and directories currently installed.) Unpacking pbuilder-satisfydepends-dummy (from .../pbuilder-satisfydepends-dummy.deb) ... dpkg: dependency problems prevent configuration of pbuilder-satisfydepends-dummy: pbuilder-satisfydepends-dummy depends on debhelper (>= 5); however: Package debhelper is not installed. dpkg: error processing pbuilder-satisfydepends-dummy (--install): dependency problems - leaving unconfigured Errors were encountered while processing: pbuilder-satisfydepends-dummy Reading package lists... Building dependency tree... Reading state information... Initializing package states... Writing extended state information... The following NEW packages will be installed: bsdmainutils{a} debhelper{a} file{a} gettext{a} gettext-base{a} groff-base{a} html2text{a} intltool-debian{a} libcroco3{a} libglib2.0-0{a} libmagic1{a} libpcre3{a} libxml2{a} man-db{a} po-debconf{a} The following partially installed packages will be configured: pbuilder-satisfydepends-dummy 0 packages upgraded, 15 newly installed, 0 to remove and 0 not upgraded. Need to get 8918kB of archives. After unpacking 26.3MB will be used. Writing extended state information... Get:1 http://localhost sid/main libmagic1 5.03-3 [389kB] Get:2 http://localhost sid/main file 5.03-3 [46.9kB] Get:3 http://localhost sid/main html2text 1.3.2a-14 [103kB] Get:4 http://localhost sid/main libpcre3 7.8-3 [215kB] Get:5 http://localhost sid/main libglib2.0-0 2.22.2-2 [984kB] Get:6 http://localhost sid/main libxml2 2.7.6.dfsg-1 [876kB] Get:7 http://localhost sid/main libcroco3 0.6.2-1 [125kB] Get:8 http://localhost sid/main gettext-base 0.17-8 [133kB] Get:9 http://localhost sid/main gettext 0.17-8 [2503kB] Get:10 http://localhost sid/main intltool-debian 0.35.0+20060710.1 [30.8kB] Get:11 http://localhost sid/main po-debconf 1.0.16 [224kB] Get:12 http://localhost sid/main groff-base 1.20.1-6 [1156kB] Get:13 http://localhost sid/main bsdmainutils 8.0.2 [198kB] Get:14 http://localhost sid/main man-db 2.5.6-4 [1477kB] Get:15 http://localhost sid/main debhelper 7.4.8 [458kB] debconf: delaying package configuration, since apt-utils is not installed Fetched 8918kB in 0s (40.3MB/s) Selecting previously deselected package libmagic1. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 10312 files and directories currently installed.) Unpacking libmagic1 (from .../libmagic1_5.03-3_amd64.deb) ... Selecting previously deselected package file. Unpacking file (from .../archives/file_5.03-3_amd64.deb) ... Selecting previously deselected package html2text. Unpacking html2text (from .../html2text_1.3.2a-14_amd64.deb) ... Selecting previously deselected package libpcre3. Unpacking libpcre3 (from .../libpcre3_7.8-3_amd64.deb) ... Selecting previously deselected package libglib2.0-0. Unpacking libglib2.0-0 (from .../libglib2.0-0_2.22.2-2_amd64.deb) ... Selecting previously deselected package libxml2. Unpacking libxml2 (from .../libxml2_2.7.6.dfsg-1_amd64.deb) ... Selecting previously deselected package libcroco3. Unpacking libcroco3 (from .../libcroco3_0.6.2-1_amd64.deb) ... Selecting previously deselected package gettext-base. Unpacking gettext-base (from .../gettext-base_0.17-8_amd64.deb) ... Selecting previously deselected package gettext. Unpacking gettext (from .../gettext_0.17-8_amd64.deb) ... Selecting previously deselected package intltool-debian. Unpacking intltool-debian (from .../intltool-debian_0.35.0+20060710.1_all.deb) ... Selecting previously deselected package po-debconf. Unpacking po-debconf (from .../po-debconf_1.0.16_all.deb) ... Selecting previously deselected package groff-base. Unpacking groff-base (from .../groff-base_1.20.1-6_amd64.deb) ... Selecting previously deselected package bsdmainutils. Unpacking bsdmainutils (from .../bsdmainutils_8.0.2_amd64.deb) ... Selecting previously deselected package man-db. Unpacking man-db (from .../man-db_2.5.6-4_amd64.deb) ... Selecting previously deselected package debhelper. Unpacking debhelper (from .../debhelper_7.4.8_all.deb) ... Setting up libmagic1 (5.03-3) ... Setting up file (5.03-3) ... Setting up html2text (1.3.2a-14) ... Setting up libpcre3 (7.8-3) ... Setting up libglib2.0-0 (2.22.2-2) ... Setting up libxml2 (2.7.6.dfsg-1) ... Setting up libcroco3 (0.6.2-1) ... Setting up gettext-base (0.17-8) ... Setting up gettext (0.17-8) ... Setting up intltool-debian (0.35.0+20060710.1) ... Setting up po-debconf (1.0.16) ... Setting up groff-base (1.20.1-6) ... Setting up bsdmainutils (8.0.2) ... update-alternatives: using /usr/bin/bsd-write to provide /usr/bin/write (write) in auto mode. Setting up man-db (2.5.6-4) ... Building database of manual pages ... Setting up debhelper (7.4.8) ... Setting up pbuilder-satisfydepends-dummy (0.invalid.0) ... Reading package lists... Building dependency tree... Reading state information... Reading extended state information... Initializing package states... Writing extended state information... -> Finished parsing the build-deps Reading package lists... Building dependency tree... Reading state information... fakeroot is already the newest version. 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. I: user script //tmp/hooks/A01_hook starting failpkg-A-hook-executed I: user script //tmp/hooks/A01_hook finished dpkg-buildpackage: set CFLAGS to default value: -g -O2 dpkg-buildpackage: set CPPFLAGS to default value: dpkg-buildpackage: set LDFLAGS to default value: dpkg-buildpackage: set FFLAGS to default value: -g -O2 dpkg-buildpackage: set CXXFLAGS to default value: -g -O2 dpkg-buildpackage: source package failpkg dpkg-buildpackage: source version 0.1 dpkg-buildpackage: source changed by Junichi Uekawa dpkg-buildpackage: host architecture amd64 fakeroot debian/rules clean dh_testdir dh_testroot rm -f build-stamp configure-stamp # Add here commands to clean up after the build process. /usr/bin/make clean make[1]: Entering directory `/home/dancer/DEBIAN/pbuilder/pbuilder/testsuite/regression/work/526471/failpkg-0.1' make[1]: *** No rule to make target `clean'. Stop. make[1]: Leaving directory `/home/dancer/DEBIAN/pbuilder/pbuilder/testsuite/regression/work/526471/failpkg-0.1' make: [clean] Error 2 (ignored) dh_clean dh_clean: Compatibility levels before 5 are deprecated. dpkg-source -b failpkg-0.1 dpkg-source: info: using source format `1.0' dpkg-source: info: building failpkg using existing failpkg_0.1.orig.tar.gz dpkg-source: info: building failpkg in failpkg_0.1.diff.gz dpkg-source: info: building failpkg in failpkg_0.1.dsc debian/rules build dh_testdir # Add here commands to configure the package. touch configure-stamp dh_testdir # Add here commands to compile the package. /usr/bin/make make[1]: Entering directory `/home/dancer/DEBIAN/pbuilder/pbuilder/testsuite/regression/work/526471/failpkg-0.1' make[1]: *** No targets specified and no makefile found. Stop. make[1]: Leaving directory `/home/dancer/DEBIAN/pbuilder/pbuilder/testsuite/regression/work/526471/failpkg-0.1' make: *** [build-stamp] Error 2 dpkg-buildpackage: error: debian/rules build gave error exit status 2 I: user script //tmp/hooks/C01_failhook starting failpkg-hook-executed I: user script //tmp/hooks/C01_failhook finished I: unmounting /home/dancer/DEBIAN/pbuilder/pbuilder/testsuite/regression/work/526471 filesystem I: unmounting dev/pts filesystem I: unmounting proc filesystem I: cleaning the build env I: removing directory /var/cache/pbuilder/build//18619 and its subdirectories pbuilder-0.215ubuntu7/testsuite/regression/work/526471/failpkg_0.1.orig.tar.gz0000664000000000000000000000032012312041170023557 0ustar YYF͊0@) X$kAZ ۛ.a@f\dblLvhc5Vo0PFf7Q_wݿ_s~(nwԿVpߛI:a/)욺&,*߄^v?2|N,^e z(pbuilder-0.215ubuntu7/testsuite/regression/342665-config0000664000000000000000000000024312312041170017707 0ustar # configuration for ccache export CCACHE_DIR=$(readlink -f "work/ccache" ) export PATH="/usr/lib/ccache:${PATH}" BINDMOUNTS="${CCACHE_DIR}" EXTRAPACKAGES="ccache" pbuilder-0.215ubuntu7/testsuite/regression/satisfydepends/0000775000000000000000000000000012312041256021003 5ustar pbuilder-0.215ubuntu7/testsuite/regression/satisfydepends/gtk2-engines_2.8.1-4.changelog0000664000000000000000000002442412312041170026041 0ustar gtk2-engines (1:2.8.1-4) experimental; urgency=low * Merge 1:2.8.1-3. -- Loic Minier Fri, 13 Oct 2006 21:31:30 +0200 gtk2-engines (1:2.8.1-3) unstable; urgency=low * Backport to Gtk 2.8. - Reset libgtk2.0-dev and libgtk-directfb-2.0-dev build-deps to >= 2.4.1-3. - Remove dh_gtkmodules calls. * Stop shipping the gtkrc for Clearlooks, g-i is using its own anyway. -- Loic Minier Fri, 13 Oct 2006 21:18:58 +0200 gtk2-engines (1:2.8.1-2) experimental; urgency=low * Merge 1:2.6.10-3. - Call dh_gtkmodules for the udeb as well. - Bump up the libgtk-directfb-2.0-dev to 2.10 era. - Update *.install files since pixmaps were removed from the Crux theme. -- Loic Minier Fri, 13 Oct 2006 16:31:19 +0200 gtk2-engines (1:2.8.1-1) experimental; urgency=low * New upstream release. -- Loic Minier Tue, 3 Oct 2006 10:48:40 +0200 gtk2-engines (1:2.8.0-1) experimental; urgency=low [ Loic Minier ] * Merge 1:2.6.10-2; drop patch 10_clearlooks-memory-leak, merged upstream. [ Josselin Mouette ] * New upstream release. * Require GTK+ 2.10. [ Loic Minier ] * Convert the package to the new Gtk modules handling. - Bump up the libgtk2.0-dev build-dep to >= 2.10.1-1. - Call dh_gtkmodules. -- Loic Minier Tue, 19 Sep 2006 12:43:39 +0200 gtk2-engines (1:2.7.7-1) experimental; urgency=low * New upstream development releases. - Target at experimental. - Bump up libgtk2.0-dev build-dep to >= 2.8.0. - Configure with --enable-animation for Clearlookks' animation support. * Fix bashism in debian/rules (from the Ubuntu package). -- Loic Minier Sat, 12 Aug 2006 23:43:38 +0200 gtk2-engines (1:2.6.10-3) unstable; urgency=low * Fix bashism. * Prepare multi-build. - Set DEB_BUILDDIR to "build" and DEB_DESTDIR to $(CURDIR)/debian/tmp/. - Add a gtk2-engines.install file to ship: . /usr/lib/gtk-2.0/*/engines/*.so . /usr/share/themes/*/gtk-2.0 . /usr/share/themes/*/pixmaps - Remove the post-install cleanup snippet. * Add gtk2-engines-udeb. - Add an udeb entry in control and an install file. - Build-depend on libgtk-directfb-2.0-dev with the same version as libgtk2.0-dev. - Build twice, the standard CDBS build is x11/libgtk2.0-dev, the second build is directfb/libgtk-directfb-2.0-dev. - Build in debian/tmp/build/$flavor; install in debian/tmp/install/$flavor. - Hack PKG_CONFIG_PATH during directfb's configure to point to a symlink of gtk+-directfb-2.0.pc named gtk+-2.0.pc; fools the upstream configure script; this wont be needed in Gtk 2.10. * Strip the rpath of Gtk engines. * Ship libhcengine.so for the HighContrast theme as well. -- Loic Minier Thu, 12 Oct 2006 17:59:50 +0200 gtk2-engines (1:2.6.10-2) unstable; urgency=low * New patch, 10_clearlooks-memory-leak, to fix memory leak in the Clearlooks engine fixed in 2.7.5, suggested by Benoît Dejean; GNOME #332639. (Closes: #383790) -- Loic Minier Sat, 19 Aug 2006 20:32:35 +0200 gtk2-engines (1:2.6.10-1) unstable; urgency=low * New upstream release. * Ship full license blobs in copyright. * Add ${misc:Depends} to gtk2-engines. * Bump up Debhelper compatibility level to 5. * Update watch file to track all stable versions and use HTTP. -- Loic Minier Thu, 10 Aug 2006 16:55:51 +0200 gtk2-engines (1:2.6.9-5) unstable; urgency=low * Let gtk2-engines-industrial Recommend gnome-themes as well. -- Loic Minier Wed, 9 Aug 2006 16:15:17 +0200 gtk2-engines (1:2.6.9-4) unstable; urgency=medium * Set DEB_DESTDIR to debian/gtk2-engines. -- Loic Minier Wed, 9 Aug 2006 11:15:52 +0200 gtk2-engines (1:2.6.9-3) unstable; urgency=medium * Re-add old package names to permit partial upgrades. - Version the Conflicts to << 1:2.6.8-2. - Add gtk2-engines-crux, gtk2-engines-highcontrast, gtk2-engines-lighthouseblue, gtk2-engines-metal, gtk2-engines-mist, gtk2-engines-redmond95, gtk2-engines-smooth, gtk2-engines-thinice, gtk2-engines-industrial to Provides. - Copy Conflicts in Replaces. - Re-add removed packages gtk2-engines-clearlooks, gtk2-engines-crux, gtk2-engines-highcontrast, gtk2-engines-lighthouseblue, gtk2-engines-metal, gtk2-engines-mist, gtk2-engines-redmond95, gtk2-engines-smooth, gtk2-engines-thinice; hint to gtk2-engines in the description, and depend on gtk2-engines >= 1:2.6.8-2. - Add a new gtk2-engines-industrial; hint to gtk2-engines in the description, and depend on gtk2-engines >= 1:2.6.8-2 and industrial-cursor-theme. - Drop the gtk2-engines-industrial Provide, as it is ambiguous. -- Loic Minier Wed, 9 Aug 2006 10:41:22 +0200 gtk2-engines (1:2.6.9-2) unstable; urgency=low * Provide gtk2-engines-clearlooks while other packages update their deps. -- Loic Minier Sun, 23 Jul 2006 10:08:06 +0200 gtk2-engines (1:2.6.9-1) unstable; urgency=medium * New upstream release. * industrial_d4x_crasher.patch: removed, integrated upstream. -- Josselin Mouette Sun, 18 Jun 2006 05:09:43 +0200 gtk2-engines (1:2.6.8-2) unstable; urgency=low * Complete rework of the package. * Now build only one binary: gtk2-engines. * Include Industrial as well. * Standards-version is now 3.7.2. -- Josselin Mouette Sun, 14 May 2006 01:03:07 +0200 gtk2-engines (1:2.6.8-1) unstable; urgency=low * New upstream release. -- Josselin Mouette Mon, 3 Apr 2006 00:14:35 +0200 gtk2-engines (1:2.6.7-1) unstable; urgency=low * New upstream release. * crux_alloca.patch: removed, integrated upstream. -- Josselin Mouette Sat, 7 Jan 2006 18:06:23 +0100 gtk2-engines (1:2.6.5-3) unstable; urgency=low * Upload to unstable. * smooth_gtk_drawing-d4x.patch: removed, it hasn't been needed since 2.6.4. -- Josselin Mouette Thu, 5 Jan 2006 18:12:17 +0100 gtk2-engines (1:2.6.5-2) experimental; urgency=low * Package gtk2-engines-smooth and gtk2-engines-clearlooks, this is now the primary source for these packages. * Pull a patch from the smooth source. * compat: use debhelper compatibility level 4. * rules: use --as-needed to avoid overly long dependencies. -- Josselin Mouette Wed, 9 Nov 2005 00:08:56 +0100 gtk2-engines (1:2.6.5-1) unstable; urgency=low * New upstream release. -- Josselin Mouette Sun, 25 Sep 2005 16:45:32 +0200 gtk2-engines (1:2.6.4-1) unstable; urgency=low [ Josselin Mouette ] * Don't overwrite DEB_CONFIGURE_SCRIPT_ENV completely. [ Loic Minier ] * New upstream release. - Drop debian/patches/lighthouseblue_tree_radio.patch, merged upstream. * Bump-up Standards-Version to 3.6.2. * Add CDBS' utils. -- Loic Minier Sun, 31 Jul 2005 11:06:30 +0200 gtk2-engines (1:2.6.3-1) unstable; urgency=low * New upstream release. * Pass -Bsymbolic to ld, to avoid namespace conflicts with random software. * lighthouseblue_tree_radio.patch: patch from Dave Ahlswede to display correctly radio buttons in GtkTreeView (closes: #279937). -- Josselin Mouette Thu, 5 May 2005 12:02:09 +0200 gtk2-engines (1:2.6.1-1) unstable; urgency=low * Put the package under co-maintenance by maintainer's request. * New upstream release. + correctly links to all needed libraries (closes: #172780, #173784, #173785). * control: + move to control.in. + add the Uploaders field. + move to section: gnome. + build-depend on gnome-pkg-tools and cdbs. + remove unuseful conflicts. * Remove gtk2-engines-pixbuf, now included in the gtk+2.0 source. * Move descriptions and other stuff (including the crux patch) from gnome-themes for the crux, highcontrast, lighthouseblue, mist and thinice themes. * Add an epoch so that their version is higher. * Add a watch file. * Add a copyright file for each package. * rules: switch to CDBS. -- Josselin Mouette Sat, 19 Feb 2005 03:23:36 +0100 gtk2-engines (2.2.0-3) unstable; urgency=low * Updated to Policy 3.6.1 * Acknowledge NMUs (Closes: #240012) -- Ed Boraas Sun, 8 Aug 2004 00:06:15 -0600 gtk2-engines (2.2.0-2.2) unstable; urgency=low * NMU, with maintainer approval, to avoid breakage of themes with new GTK+. * Upload to unstable. -- Sebastien Bacher Sat, 22 May 2004 16:09:56 +0200 gtk2-engines (2.2.0-2.1) experimental; urgency=low * NMU to experimental. * Rebuild against gtk+ 2.4 (closes: #240012). * debian/control: build-depend on libgtk2.0-dev 2.4.0. -- Josselin Mouette Fri, 26 Mar 2004 16:22:01 +0100 gtk2-engines (2.2.0-2) unstable; urgency=low * Update libtool (Closes: #201939) -- Ed Boraas Mon, 21 Jul 2003 19:58:11 -0600 gtk2-engines (2.2.0-1) unstable; urgency=low * Acknowledge previous NMU (Thanks, Akira!) * Closes: #161725, #167553 * New upstream release -- Ed Boraas Tue, 21 Jan 2003 20:41:49 -0700 gtk2-engines (1.9.0-5) unstable; urgency=low * NMU * debian/rules: - support noopt and nostrip for DEB_BUILD_OPTIONS - support DEB_HOST_GNU_TYPE and DEB_BUILD_GNU_TYPE * debian/control: - bumped Standards-Version to 3.5.8. - updated Build-Depends. * debian/gtk2-engines-{metal,pixbuf,redmond95}.files: fix the wrong packaging. (closes: Bug#161725) * debian/gtk2-engines-pixbuf.README.Debian: fix documentation. (closes: Bug#167553) -- Akira TAGOH Tue, 7 Jan 2003 05:40:47 +0900 gtk2-engines (1.9.0-4) unstable; urgency=low * Rename to gtk2-engines-* -- Ed Boraas Tue, 20 Aug 2002 07:06:17 -0700 gtk2.0-engines (1.9.0-3) unstable; urgency=low * Rebuild against libpng3 * Each engine suggests its 1.2 counterpart -- Ed Boraas Sun, 18 Aug 2002 21:36:04 -0700 gtk2.0-engines (1.9.0-2) unstable; urgency=low * Update build depends -- Ed Boraas Tue, 6 Aug 2002 19:46:02 -0700 gtk2.0-engines (1.9.0-1) unstable; urgency=low * New package for GTK2 engines -- Ed Boraas Mon, 29 Jul 2002 07:08:46 -0700 pbuilder-0.215ubuntu7/testsuite/regression/satisfydepends/debian/0000775000000000000000000000000012312041256022225 5ustar pbuilder-0.215ubuntu7/testsuite/regression/satisfydepends/debian/rules0000775000000000000000000000035512312041170023303 0ustar #!/usr/bin/make -f build: touch debian/files clean: rm -f debian/files install: binary-indep: build install binary-arch: build install binary: binary-indep binary-arch .PHONY: build clean binary-indep binary-arch binary install pbuilder-0.215ubuntu7/testsuite/regression/satisfydepends/gtk2-engines_2.8.1-3.changelog0000664000000000000000000002421012312041170026031 0ustar gtk2-engines (1:2.8.1-3) unstable; urgency=low * Backport to Gtk 2.8. - Reset libgtk2.0-dev and libgtk-directfb-2.0-dev build-deps to >= 2.4.1-3. - Remove dh_gtkmodules calls. * Stop shipping the gtkrc for Clearlooks, g-i is using its own anyway. -- Loic Minier Fri, 13 Oct 2006 21:18:58 +0200 gtk2-engines (1:2.8.1-2) experimental; urgency=low * Merge 1:2.6.10-3. - Call dh_gtkmodules for the udeb as well. - Bump up the libgtk-directfb-2.0-dev to 2.10 era. - Update *.install files since pixmaps were removed from the Crux theme. -- Loic Minier Fri, 13 Oct 2006 16:31:19 +0200 gtk2-engines (1:2.8.1-1) experimental; urgency=low * New upstream release. -- Loic Minier Tue, 3 Oct 2006 10:48:40 +0200 gtk2-engines (1:2.8.0-1) experimental; urgency=low [ Loic Minier ] * Merge 1:2.6.10-2; drop patch 10_clearlooks-memory-leak, merged upstream. [ Josselin Mouette ] * New upstream release. * Require GTK+ 2.10. [ Loic Minier ] * Convert the package to the new Gtk modules handling. - Bump up the libgtk2.0-dev build-dep to >= 2.10.1-1. - Call dh_gtkmodules. -- Loic Minier Tue, 19 Sep 2006 12:43:39 +0200 gtk2-engines (1:2.7.7-1) experimental; urgency=low * New upstream development releases. - Target at experimental. - Bump up libgtk2.0-dev build-dep to >= 2.8.0. - Configure with --enable-animation for Clearlookks' animation support. * Fix bashism in debian/rules (from the Ubuntu package). -- Loic Minier Sat, 12 Aug 2006 23:43:38 +0200 gtk2-engines (1:2.6.10-3) unstable; urgency=low * Fix bashism. * Prepare multi-build. - Set DEB_BUILDDIR to "build" and DEB_DESTDIR to $(CURDIR)/debian/tmp/. - Add a gtk2-engines.install file to ship: . /usr/lib/gtk-2.0/*/engines/*.so . /usr/share/themes/*/gtk-2.0 . /usr/share/themes/*/pixmaps - Remove the post-install cleanup snippet. * Add gtk2-engines-udeb. - Add an udeb entry in control and an install file. - Build-depend on libgtk-directfb-2.0-dev with the same version as libgtk2.0-dev. - Build twice, the standard CDBS build is x11/libgtk2.0-dev, the second build is directfb/libgtk-directfb-2.0-dev. - Build in debian/tmp/build/$flavor; install in debian/tmp/install/$flavor. - Hack PKG_CONFIG_PATH during directfb's configure to point to a symlink of gtk+-directfb-2.0.pc named gtk+-2.0.pc; fools the upstream configure script; this wont be needed in Gtk 2.10. * Strip the rpath of Gtk engines. * Ship libhcengine.so for the HighContrast theme as well. -- Loic Minier Thu, 12 Oct 2006 17:59:50 +0200 gtk2-engines (1:2.6.10-2) unstable; urgency=low * New patch, 10_clearlooks-memory-leak, to fix memory leak in the Clearlooks engine fixed in 2.7.5, suggested by Benoît Dejean; GNOME #332639. (Closes: #383790) -- Loic Minier Sat, 19 Aug 2006 20:32:35 +0200 gtk2-engines (1:2.6.10-1) unstable; urgency=low * New upstream release. * Ship full license blobs in copyright. * Add ${misc:Depends} to gtk2-engines. * Bump up Debhelper compatibility level to 5. * Update watch file to track all stable versions and use HTTP. -- Loic Minier Thu, 10 Aug 2006 16:55:51 +0200 gtk2-engines (1:2.6.9-5) unstable; urgency=low * Let gtk2-engines-industrial Recommend gnome-themes as well. -- Loic Minier Wed, 9 Aug 2006 16:15:17 +0200 gtk2-engines (1:2.6.9-4) unstable; urgency=medium * Set DEB_DESTDIR to debian/gtk2-engines. -- Loic Minier Wed, 9 Aug 2006 11:15:52 +0200 gtk2-engines (1:2.6.9-3) unstable; urgency=medium * Re-add old package names to permit partial upgrades. - Version the Conflicts to << 1:2.6.8-2. - Add gtk2-engines-crux, gtk2-engines-highcontrast, gtk2-engines-lighthouseblue, gtk2-engines-metal, gtk2-engines-mist, gtk2-engines-redmond95, gtk2-engines-smooth, gtk2-engines-thinice, gtk2-engines-industrial to Provides. - Copy Conflicts in Replaces. - Re-add removed packages gtk2-engines-clearlooks, gtk2-engines-crux, gtk2-engines-highcontrast, gtk2-engines-lighthouseblue, gtk2-engines-metal, gtk2-engines-mist, gtk2-engines-redmond95, gtk2-engines-smooth, gtk2-engines-thinice; hint to gtk2-engines in the description, and depend on gtk2-engines >= 1:2.6.8-2. - Add a new gtk2-engines-industrial; hint to gtk2-engines in the description, and depend on gtk2-engines >= 1:2.6.8-2 and industrial-cursor-theme. - Drop the gtk2-engines-industrial Provide, as it is ambiguous. -- Loic Minier Wed, 9 Aug 2006 10:41:22 +0200 gtk2-engines (1:2.6.9-2) unstable; urgency=low * Provide gtk2-engines-clearlooks while other packages update their deps. -- Loic Minier Sun, 23 Jul 2006 10:08:06 +0200 gtk2-engines (1:2.6.9-1) unstable; urgency=medium * New upstream release. * industrial_d4x_crasher.patch: removed, integrated upstream. -- Josselin Mouette Sun, 18 Jun 2006 05:09:43 +0200 gtk2-engines (1:2.6.8-2) unstable; urgency=low * Complete rework of the package. * Now build only one binary: gtk2-engines. * Include Industrial as well. * Standards-version is now 3.7.2. -- Josselin Mouette Sun, 14 May 2006 01:03:07 +0200 gtk2-engines (1:2.6.8-1) unstable; urgency=low * New upstream release. -- Josselin Mouette Mon, 3 Apr 2006 00:14:35 +0200 gtk2-engines (1:2.6.7-1) unstable; urgency=low * New upstream release. * crux_alloca.patch: removed, integrated upstream. -- Josselin Mouette Sat, 7 Jan 2006 18:06:23 +0100 gtk2-engines (1:2.6.5-3) unstable; urgency=low * Upload to unstable. * smooth_gtk_drawing-d4x.patch: removed, it hasn't been needed since 2.6.4. -- Josselin Mouette Thu, 5 Jan 2006 18:12:17 +0100 gtk2-engines (1:2.6.5-2) experimental; urgency=low * Package gtk2-engines-smooth and gtk2-engines-clearlooks, this is now the primary source for these packages. * Pull a patch from the smooth source. * compat: use debhelper compatibility level 4. * rules: use --as-needed to avoid overly long dependencies. -- Josselin Mouette Wed, 9 Nov 2005 00:08:56 +0100 gtk2-engines (1:2.6.5-1) unstable; urgency=low * New upstream release. -- Josselin Mouette Sun, 25 Sep 2005 16:45:32 +0200 gtk2-engines (1:2.6.4-1) unstable; urgency=low [ Josselin Mouette ] * Don't overwrite DEB_CONFIGURE_SCRIPT_ENV completely. [ Loic Minier ] * New upstream release. - Drop debian/patches/lighthouseblue_tree_radio.patch, merged upstream. * Bump-up Standards-Version to 3.6.2. * Add CDBS' utils. -- Loic Minier Sun, 31 Jul 2005 11:06:30 +0200 gtk2-engines (1:2.6.3-1) unstable; urgency=low * New upstream release. * Pass -Bsymbolic to ld, to avoid namespace conflicts with random software. * lighthouseblue_tree_radio.patch: patch from Dave Ahlswede to display correctly radio buttons in GtkTreeView (closes: #279937). -- Josselin Mouette Thu, 5 May 2005 12:02:09 +0200 gtk2-engines (1:2.6.1-1) unstable; urgency=low * Put the package under co-maintenance by maintainer's request. * New upstream release. + correctly links to all needed libraries (closes: #172780, #173784, #173785). * control: + move to control.in. + add the Uploaders field. + move to section: gnome. + build-depend on gnome-pkg-tools and cdbs. + remove unuseful conflicts. * Remove gtk2-engines-pixbuf, now included in the gtk+2.0 source. * Move descriptions and other stuff (including the crux patch) from gnome-themes for the crux, highcontrast, lighthouseblue, mist and thinice themes. * Add an epoch so that their version is higher. * Add a watch file. * Add a copyright file for each package. * rules: switch to CDBS. -- Josselin Mouette Sat, 19 Feb 2005 03:23:36 +0100 gtk2-engines (2.2.0-3) unstable; urgency=low * Updated to Policy 3.6.1 * Acknowledge NMUs (Closes: #240012) -- Ed Boraas Sun, 8 Aug 2004 00:06:15 -0600 gtk2-engines (2.2.0-2.2) unstable; urgency=low * NMU, with maintainer approval, to avoid breakage of themes with new GTK+. * Upload to unstable. -- Sebastien Bacher Sat, 22 May 2004 16:09:56 +0200 gtk2-engines (2.2.0-2.1) experimental; urgency=low * NMU to experimental. * Rebuild against gtk+ 2.4 (closes: #240012). * debian/control: build-depend on libgtk2.0-dev 2.4.0. -- Josselin Mouette Fri, 26 Mar 2004 16:22:01 +0100 gtk2-engines (2.2.0-2) unstable; urgency=low * Update libtool (Closes: #201939) -- Ed Boraas Mon, 21 Jul 2003 19:58:11 -0600 gtk2-engines (2.2.0-1) unstable; urgency=low * Acknowledge previous NMU (Thanks, Akira!) * Closes: #161725, #167553 * New upstream release -- Ed Boraas Tue, 21 Jan 2003 20:41:49 -0700 gtk2-engines (1.9.0-5) unstable; urgency=low * NMU * debian/rules: - support noopt and nostrip for DEB_BUILD_OPTIONS - support DEB_HOST_GNU_TYPE and DEB_BUILD_GNU_TYPE * debian/control: - bumped Standards-Version to 3.5.8. - updated Build-Depends. * debian/gtk2-engines-{metal,pixbuf,redmond95}.files: fix the wrong packaging. (closes: Bug#161725) * debian/gtk2-engines-pixbuf.README.Debian: fix documentation. (closes: Bug#167553) -- Akira TAGOH Tue, 7 Jan 2003 05:40:47 +0900 gtk2-engines (1.9.0-4) unstable; urgency=low * Rename to gtk2-engines-* -- Ed Boraas Tue, 20 Aug 2002 07:06:17 -0700 gtk2.0-engines (1.9.0-3) unstable; urgency=low * Rebuild against libpng3 * Each engine suggests its 1.2 counterpart -- Ed Boraas Sun, 18 Aug 2002 21:36:04 -0700 gtk2.0-engines (1.9.0-2) unstable; urgency=low * Update build depends -- Ed Boraas Tue, 6 Aug 2002 19:46:02 -0700 gtk2.0-engines (1.9.0-1) unstable; urgency=low * New package for GTK2 engines -- Ed Boraas Mon, 29 Jul 2002 07:08:46 -0700 pbuilder-0.215ubuntu7/testsuite/regression/satisfydepends/gtk2-engines_2.8.1-3.control0000664000000000000000000001424012312041170025564 0ustar Source: gtk2-engines Section: gnome Priority: optional Maintainer: Ed Boraas Uploaders: Debian GNOME Maintainers , Andrew Lau , Clément Stenac , Dafydd Harries , Guilherme de S. Pastore , Gustavo Franco , Gustavo Noronha Silva , J.H.M. Dassen (Ray) , Jordi Mallach , Jose Carlos Garcia Sogo , Josselin Mouette , Loic Minier , Marc 'HE' Brockschmidt , Marco Cabizza , Oystein Gisnas , Ondřej Surý , Ross Burton , Sebastien Bacher , Sjoerd Simons Standards-Version: 3.7.2 Build-Depends: debhelper (>= 5), libgtk2.0-dev (>= 2.4.1-3), libgtk-directfb-2.0-dev (>= 2.4.1-3), gnome-pkg-tools, cdbs, chrpath Package: gtk2-engines Architecture: any Depends: ${misc:Depends}, ${shlibs:Depends} Conflicts: gtk2-engines-clearlooks (<< 1:2.6.8-2), gtk2-engines-crux (<< 1:2.6.8-2), gtk2-engines-highcontrast (<< 1:2.6.8-2), gtk2-engines-lighthouseblue (<< 1:2.6.8-2), gtk2-engines-metal (<< 1:2.6.8-2), gtk2-engines-mist (<< 1:2.6.8-2), gtk2-engines-redmond95 (<< 1:2.6.8-2), gtk2-engines-smooth (<< 1:2.6.8-2), gtk2-engines-thinice (<< 1:2.6.8-2), gtk2-engines-industrial (<< 1:2.6.8-2) Replaces: gtk2-engines-clearlooks (<< 1:2.6.8-2), gtk2-engines-crux (<< 1:2.6.8-2), gtk2-engines-highcontrast (<< 1:2.6.8-2), gtk2-engines-lighthouseblue (<< 1:2.6.8-2), gtk2-engines-metal (<< 1:2.6.8-2), gtk2-engines-mist (<< 1:2.6.8-2), gtk2-engines-redmond95 (<< 1:2.6.8-2), gtk2-engines-smooth (<< 1:2.6.8-2), gtk2-engines-thinice (<< 1:2.6.8-2), gtk2-engines-industrial (<< 1:2.6.8-2) Provides: gtk2-engines-clearlooks, gtk2-engines-crux, gtk2-engines-highcontrast, gtk2-engines-lighthouseblue, gtk2-engines-metal, gtk2-engines-mist, gtk2-engines-redmond95, gtk2-engines-smooth, gtk2-engines-thinice, gtk2-engines-industrial Description: theme engines for GTK+ 2.x This package contains the "engines" that hide behind the themes for GTK+ and GNOME applications. They redefine the way GTK+ widgets are drawn. The package includes the following engines: * Clearlooks, the default GNOME theme, based on Bluecurve; * Crux, formerly known as the Eazel engine; * High contrast, which is used by some accessibility themes; * Industrial, the famous engine from Novell (formerly Ximian); * LighthouseBlue, another engine based on Bluecurve; * Metal, which gives a metallic look; * Mist, a flat and high performance engine; * Redmond95, which provides a look similar to that of Windows; * Smooth, which is used by many themes as being nice, fast and configurable; * ThinIce. . A few sample themes using these engines are also included. Package: gtk2-engines-clearlooks Architecture: all Depends: gtk2-engines (>= 1:2.6.8-2) Description: Clearlooks GTK+ 2.x engine and theme (dummy package) This package is a dummy package to ease upgrades. You can safely remove it and keep gtk2-engines installed instead. Package: gtk2-engines-crux Architecture: all Depends: gtk2-engines (>= 1:2.6.8-2) Description: the Crux theme engine for GTK+ 2.x (dummy package) This package is a dummy package to ease upgrades. You can safely remove it and keep gtk2-engines installed instead. Package: gtk2-engines-highcontrast Architecture: all Depends: gtk2-engines (>= 1:2.6.8-2) Description: High contrast GTK+ 2.x theme engine (dummy package) This package is a dummy package to ease upgrades. You can safely remove it and keep gtk2-engines installed instead. Package: gtk2-engines-industrial Architecture: all Depends: gtk2-engines (>= 1:2.6.8-2), industrial-cursor-theme Recommends: gnome-themes Description: Flat-looking GTK+ 2.x engine from Ximian (dummy package) This package is a dummy package to ease upgrades. You can safely remove it and keep gtk2-engines and industrial-cursor-theme installed instead. Package: gtk2-engines-lighthouseblue Architecture: all Depends: gtk2-engines (>= 1:2.6.8-2) Description: LighthouseBlue theme for GTK+ 2.x (dummy package) This package is a dummy package to ease upgrades. You can safely remove it and keep gtk2-engines installed instead. Package: gtk2-engines-metal Architecture: all Depends: gtk2-engines (>= 1:2.6.8-2) Description: Metallic theme for GTK+ 2.x (dummy package) This package is a dummy package to ease upgrades. You can safely remove it and keep gtk2-engines installed instead. Package: gtk2-engines-mist Architecture: all Depends: gtk2-engines (>= 1:2.6.8-2) Description: flat theme for GTK+ 2.x (dummy package) This package is a dummy package to ease upgrades. You can safely remove it and keep gtk2-engines installed instead. Package: gtk2-engines-redmond95 Architecture: all Depends: gtk2-engines (>= 1:2.6.8-2) Description: Windows-like theme for GTK+ 2.x (dummy package) This package is a dummy package to ease upgrades. You can safely remove it and keep gtk2-engines installed instead. Package: gtk2-engines-smooth Architecture: all Depends: gtk2-engines (>= 1:2.6.8-2) Description: Smooth engine for GTK+ 2.x (dummy package) This package is a dummy package to ease upgrades. You can safely remove it and keep gtk2-engines installed instead. Package: gtk2-engines-thinice Architecture: all Depends: gtk2-engines (>= 1:2.6.8-2) Description: the ThinIce theme engine for GTK+ 2.x (dummy package) This package is a dummy package to ease upgrades. You can safely remove it and keep gtk2-engines installed instead. Package: gtk2-engines-udeb XC-Package-Type: udeb Section: debian-installer Priority: extra Architecture: any Depends: ${misc:Depends}, ${shlibs:Depends} Description: theme engines for GTK+ 2.x in the Debian installer This package contains the "engines" that hide behind the themes for GTK+ and GNOME applications. They redefine the way GTK+ widgets are drawn. The package currently includes the following engine: * Clearlooks, the default GNOME theme, based on Bluecurve; . This package only holds the minimal set of files for Debian installer to use GTK+ 2.x theme engines under DirectFB. pbuilder-0.215ubuntu7/testsuite/regression/satisfydepends/gtk2-engines_2.8.1-4.control0000664000000000000000000001424212312041170025567 0ustar Source: gtk2-engines Section: gnome Priority: optional Maintainer: Ed Boraas Uploaders: Debian GNOME Maintainers , Andrew Lau , Clément Stenac , Dafydd Harries , Guilherme de S. Pastore , Gustavo Franco , Gustavo Noronha Silva , J.H.M. Dassen (Ray) , Jordi Mallach , Jose Carlos Garcia Sogo , Josselin Mouette , Loic Minier , Marc 'HE' Brockschmidt , Marco Cabizza , Oystein Gisnas , Ondřej Surý , Ross Burton , Sebastien Bacher , Sjoerd Simons Standards-Version: 3.7.2 Build-Depends: debhelper (>= 5), libgtk2.0-dev (>= 2.10.1-1), libgtk-directfb-2.0-dev (>= 2.10.1-1), gnome-pkg-tools, cdbs, chrpath Package: gtk2-engines Architecture: any Depends: ${misc:Depends}, ${shlibs:Depends} Conflicts: gtk2-engines-clearlooks (<< 1:2.6.8-2), gtk2-engines-crux (<< 1:2.6.8-2), gtk2-engines-highcontrast (<< 1:2.6.8-2), gtk2-engines-lighthouseblue (<< 1:2.6.8-2), gtk2-engines-metal (<< 1:2.6.8-2), gtk2-engines-mist (<< 1:2.6.8-2), gtk2-engines-redmond95 (<< 1:2.6.8-2), gtk2-engines-smooth (<< 1:2.6.8-2), gtk2-engines-thinice (<< 1:2.6.8-2), gtk2-engines-industrial (<< 1:2.6.8-2) Replaces: gtk2-engines-clearlooks (<< 1:2.6.8-2), gtk2-engines-crux (<< 1:2.6.8-2), gtk2-engines-highcontrast (<< 1:2.6.8-2), gtk2-engines-lighthouseblue (<< 1:2.6.8-2), gtk2-engines-metal (<< 1:2.6.8-2), gtk2-engines-mist (<< 1:2.6.8-2), gtk2-engines-redmond95 (<< 1:2.6.8-2), gtk2-engines-smooth (<< 1:2.6.8-2), gtk2-engines-thinice (<< 1:2.6.8-2), gtk2-engines-industrial (<< 1:2.6.8-2) Provides: gtk2-engines-clearlooks, gtk2-engines-crux, gtk2-engines-highcontrast, gtk2-engines-lighthouseblue, gtk2-engines-metal, gtk2-engines-mist, gtk2-engines-redmond95, gtk2-engines-smooth, gtk2-engines-thinice, gtk2-engines-industrial Description: theme engines for GTK+ 2.x This package contains the "engines" that hide behind the themes for GTK+ and GNOME applications. They redefine the way GTK+ widgets are drawn. The package includes the following engines: * Clearlooks, the default GNOME theme, based on Bluecurve; * Crux, formerly known as the Eazel engine; * High contrast, which is used by some accessibility themes; * Industrial, the famous engine from Novell (formerly Ximian); * LighthouseBlue, another engine based on Bluecurve; * Metal, which gives a metallic look; * Mist, a flat and high performance engine; * Redmond95, which provides a look similar to that of Windows; * Smooth, which is used by many themes as being nice, fast and configurable; * ThinIce. . A few sample themes using these engines are also included. Package: gtk2-engines-clearlooks Architecture: all Depends: gtk2-engines (>= 1:2.6.8-2) Description: Clearlooks GTK+ 2.x engine and theme (dummy package) This package is a dummy package to ease upgrades. You can safely remove it and keep gtk2-engines installed instead. Package: gtk2-engines-crux Architecture: all Depends: gtk2-engines (>= 1:2.6.8-2) Description: the Crux theme engine for GTK+ 2.x (dummy package) This package is a dummy package to ease upgrades. You can safely remove it and keep gtk2-engines installed instead. Package: gtk2-engines-highcontrast Architecture: all Depends: gtk2-engines (>= 1:2.6.8-2) Description: High contrast GTK+ 2.x theme engine (dummy package) This package is a dummy package to ease upgrades. You can safely remove it and keep gtk2-engines installed instead. Package: gtk2-engines-industrial Architecture: all Depends: gtk2-engines (>= 1:2.6.8-2), industrial-cursor-theme Recommends: gnome-themes Description: Flat-looking GTK+ 2.x engine from Ximian (dummy package) This package is a dummy package to ease upgrades. You can safely remove it and keep gtk2-engines and industrial-cursor-theme installed instead. Package: gtk2-engines-lighthouseblue Architecture: all Depends: gtk2-engines (>= 1:2.6.8-2) Description: LighthouseBlue theme for GTK+ 2.x (dummy package) This package is a dummy package to ease upgrades. You can safely remove it and keep gtk2-engines installed instead. Package: gtk2-engines-metal Architecture: all Depends: gtk2-engines (>= 1:2.6.8-2) Description: Metallic theme for GTK+ 2.x (dummy package) This package is a dummy package to ease upgrades. You can safely remove it and keep gtk2-engines installed instead. Package: gtk2-engines-mist Architecture: all Depends: gtk2-engines (>= 1:2.6.8-2) Description: flat theme for GTK+ 2.x (dummy package) This package is a dummy package to ease upgrades. You can safely remove it and keep gtk2-engines installed instead. Package: gtk2-engines-redmond95 Architecture: all Depends: gtk2-engines (>= 1:2.6.8-2) Description: Windows-like theme for GTK+ 2.x (dummy package) This package is a dummy package to ease upgrades. You can safely remove it and keep gtk2-engines installed instead. Package: gtk2-engines-smooth Architecture: all Depends: gtk2-engines (>= 1:2.6.8-2) Description: Smooth engine for GTK+ 2.x (dummy package) This package is a dummy package to ease upgrades. You can safely remove it and keep gtk2-engines installed instead. Package: gtk2-engines-thinice Architecture: all Depends: gtk2-engines (>= 1:2.6.8-2) Description: the ThinIce theme engine for GTK+ 2.x (dummy package) This package is a dummy package to ease upgrades. You can safely remove it and keep gtk2-engines installed instead. Package: gtk2-engines-udeb XC-Package-Type: udeb Section: debian-installer Priority: extra Architecture: any Depends: ${misc:Depends}, ${shlibs:Depends} Description: theme engines for GTK+ 2.x in the Debian installer This package contains the "engines" that hide behind the themes for GTK+ and GNOME applications. They redefine the way GTK+ widgets are drawn. The package currently includes the following engine: * Clearlooks, the default GNOME theme, based on Bluecurve; . This package only holds the minimal set of files for Debian installer to use GTK+ 2.x theme engines under DirectFB. pbuilder-0.215ubuntu7/testsuite/regression/run-test-satisfy-depends.sh0000775000000000000000000000426312312041170023176 0ustar #!/bin/sh # requires a working "pdebuild" set -e log() { echo "$*" } log_i() { log "I: $*" } log_e() { log "E: $*" } result() { result=$1 package=$2 version=$3 echo "[$result] $package $version" >>$RESULTFILE } self="$(basename "$0")" log_i "Starting $self at $(LC_ALL=C date)" PDEBUILD="pdebuild" #RESULTFILE="$(readlink -f "$(basename "$0" .sh).log")" RESULTFILE="$OUTPUT_LOGNAME" log_i "Resetting result file $(basename "$RESULTFILE")" : > "$RESULTFILE" RESULTFILE="$(readlink -f "$RESULTFILE")" WORK_DIR="satisfydepends/work" [ -d "$WORK_DIR" ] && rm -rf "$WORK_DIR" mkdir -p "$WORK_DIR" WORK_DIR="$(readlink -f "$WORK_DIR")" RESULT_DIR="$WORK_DIR/result" [ -d "$RESULT_DIR" ] && rm -rf "$RESULT_DIR" mkdir -p "$RESULT_DIR" RESULT_DIR="$(readlink -f "$RESULT_DIR")" for control in satisfydepends/*.control; do changelog=satisfydepends/$(basename $control .control).changelog package=$(basename $control .control | sed 's/_.*//') version=$(basename $control .control | sed -n 's/.*_//p') if [ -z "$version" ]; then log_e "Could not extract version for package $package/$version, skipping" continue fi if ! [ -e $changelog ]; then log_e "Could not find $changelog for package $package/$version, skipping" continue fi log_i "Preparing build for package $package/$version" package_dir="$WORK_DIR/$package" # cleanup [ -d "$package_dir" ] && rm -rf "$package_dir" # create package structure mkdir -p "$package_dir/debian" cp -l satisfydepends/debian/rules "$package_dir/debian" cp -l $changelog "$package_dir/debian/changelog" cp -l $control "$package_dir/debian/control" log_i "Building package $package/$version as \"$PDEBUILD --buildresult $RESULT_DIR -- --pkgname-logfile\" in $package_dir" if (cd "$package_dir"; $PDEBUILD --buildresult "$RESULT_DIR" -- --pkgname-logfile); then log_i "Build of $package/$version successful" result SUCCESS $package $version else log_i "Build of $package/$version failed" result FAIL $package $version fi done # cleanup rm -rf "$RESULT_DIR" rm -rf "$WORK_DIR" log_i "Finishing $self at $(LC_ALL=C date)" pbuilder-0.215ubuntu7/testsuite/random-manual-test-material/0000775000000000000000000000000012312041256021102 5ustar pbuilder-0.215ubuntu7/testsuite/random-manual-test-material/control.test0000664000000000000000000000225512312041170023462 0ustar Source: pbuilder Section: devel Priority: extra Maintainer: Junichi Uekawa Build-Depends-Indep: debhelper (>> 3.0.0), dummy-error-package | gcc, textutils [!i386], mig [hurd-i386], mawk Build-Depends: shellutils Build-Conflicts: dummy-nonexistent-package Standards-Version: 3.5.6 Package: pbuilder Architecture: all Depends: debootstrap (>= 0.1.15), wget, gcc Recommends: fakeroot, sudo Description: personal package builder for Debian packages Constructs a chroot system, and builds a package inside the chroot. . Ideal system to use to check that Build-dependency is correct, and to be sure that unnecessary and wrong build dependency will not exist with the resulting binary package. . pbuilder create uses debootstrap to create a chroot image. . pbuilder update updates the image to the current state of testing/unstable/whatever . pbuilder build takes a *.dsc file to build a binary in the chroot image. . pdebuild is a wrapper for Debian Developers, to allow running pbuilder just like "debuild", from a normal user privilege . Uses apt extensively, and a local mirror, or a fast connection to a Debian mirror is ideal, but not necessary. pbuilder-0.215ubuntu7/testsuite/random-manual-test-material/build-depends-on-experimental/0000775000000000000000000000000012312041256026726 5ustar ././@LongLink0000644000000000000000000000015100000000000011600 Lustar rootrootpbuilder-0.215ubuntu7/testsuite/random-manual-test-material/build-depends-on-experimental/bde_0.1.tar.gzpbuilder-0.215ubuntu7/testsuite/random-manual-test-material/build-depends-on-experimental/bde_0.1.ta0000664000000000000000000000242712312041170030364 0ustar 1GX_o6)nH6rd5A&[ZIP7 mHþHɒnAGNwNw# 0h4Dn7`PЊzZ[)MK>=:trOTEAӗk~i0hs&4G tEiΓCZ ?bSNA׳?1s&? 2A?`B.MLjD:HW@5(^2&"H[92xʄIx|cWlA޸օYG!5!>}ҔFd o~MdB62aR B.T\*nVcp(D98LA'NNb R v`svPQi+SФuB.85kP\!Y>R5eux }Åf@v?Qӵ!Y %R̫S{E"XrFd| `ؿ#p6B[?ZOO邁7#[f8@ a⚁\3}-%@94K0|lgLۋgs(e78B.f 9MyBV2f;2~a{P(nrǐrS؃ѰUi_-Ǡ6P66m4Pu~79[-Lm,AmDŽpTbPt *srvK,/8 3~BJHd_xrsqdww]^6>afu^@.f|^@ÜI3`<&(1"HE3ZLz^5i3)qtZPS=zo~'6JJC*lX'{۪Cgա2%h п5O% Standards-Version: 3.7.2 Build-Depends: debhelper (>= 5), gcc (>= 4:4.3) Files: d05f9f50eba6d58e28ca057477ada436 1303 bde_0.1.tar.gz pbuilder-0.215ubuntu7/testsuite/random-manual-test-material/failpkg/0000775000000000000000000000000012312041256022517 5ustar pbuilder-0.215ubuntu7/testsuite/random-manual-test-material/failpkg/failpkg_0.1.dsc0000664000000000000000000000046412312041170025204 0ustar Format: 1.0 Source: failpkg Binary: failpkg Architecture: any Version: 0.1 Maintainer: Junichi Uekawa Standards-Version: 3.7.2 Build-Depends: debhelper (>= 5) Files: 355d04744c279e26b326b18016558ba7 208 failpkg_0.1.orig.tar.gz bad79f364b588bfda17ed0d51a50987a 1169 failpkg_0.1.diff.gz pbuilder-0.215ubuntu7/testsuite/random-manual-test-material/failpkg/failpkg_0.1.diff.gz0000664000000000000000000000222112312041170025753 0ustar YYFV[SF~ƿt̃,_ B!>1kHڱb<]IFx={nw.1=xqƙ 12nyVt a '!q ܲ%'0ytx2:>oa0 W.R%7!V Cp* 6"K1"s!+Nrbky C_T]< (B=K0QA(a"d*WTE?-% 4fHIJ|%QuXe((?rQ(r0AiqCVZq \( &M=lgT~PeL~qej/ϸglG$ʦ,WvdQr߳ LM KXP -%\ti9$&pR{XѲHڬo sN40j" z%0yaI pKw qئ3(FqױqX(Q zG' :m6<@fDCS n&)LV/\?z^sߧp 7֏GC߉,.!enH4xxWIL{#/j"fnmN%**Y]l$g".]1e]e*pQ׻g(]=FgZ'Ć pbuilder-0.215ubuntu7/testsuite/random-manual-test-material/failpkg/failpkg_0.1.orig.tar.gz0000664000000000000000000000032012312041170026566 0ustar YYF͊0@) X$kAZ ۛ.a@f\dblLvhc5Vo0PFf7Q_wݿ_s~(nwԿVpߛI:a/)욺&,*߄^v?2|N,^e z(pbuilder-0.215ubuntu7/testsuite/random-manual-test-material/buildarchpkg/0000775000000000000000000000000012312041256023541 5ustar pbuilder-0.215ubuntu7/testsuite/random-manual-test-material/buildarchpkg/buildarchpkg-0.1/0000775000000000000000000000000012312041256026474 5ustar pbuilder-0.215ubuntu7/testsuite/random-manual-test-material/buildarchpkg/buildarchpkg-0.1/debian/0000775000000000000000000000000012312041256027716 5ustar ././@LongLink0000644000000000000000000000016000000000000011600 Lustar rootrootpbuilder-0.215ubuntu7/testsuite/random-manual-test-material/buildarchpkg/buildarchpkg-0.1/debian/buildindeppkg/pbuilder-0.215ubuntu7/testsuite/random-manual-test-material/buildarchpkg/buildarchpkg-0.1/debian/bui0000775000000000000000000000000012312041255030415 5ustar ././@LongLink0000644000000000000000000000016700000000000011607 Lustar rootrootpbuilder-0.215ubuntu7/testsuite/random-manual-test-material/buildarchpkg/buildarchpkg-0.1/debian/buildindeppkg/DEBIAN/pbuilder-0.215ubuntu7/testsuite/random-manual-test-material/buildarchpkg/buildarchpkg-0.1/debian/bui0000775000000000000000000000000012312041256030416 5ustar ././@LongLink0000644000000000000000000000017600000000000011607 Lustar rootrootpbuilder-0.215ubuntu7/testsuite/random-manual-test-material/buildarchpkg/buildarchpkg-0.1/debian/buildindeppkg/DEBIAN/controlpbuilder-0.215ubuntu7/testsuite/random-manual-test-material/buildarchpkg/buildarchpkg-0.1/debian/bui0000664000000000000000000000042012312041170030407 0ustar Package: buildindeppkg Source: buildarchpkg Version: 0.1 Architecture: all Maintainer: Junichi Uekawa Installed-Size: 28 Section: unknown Priority: extra Description: ././@LongLink0000644000000000000000000000017600000000000011607 Lustar rootrootpbuilder-0.215ubuntu7/testsuite/random-manual-test-material/buildarchpkg/buildarchpkg-0.1/debian/buildindeppkg/DEBIAN/md5sumspbuilder-0.215ubuntu7/testsuite/random-manual-test-material/buildarchpkg/buildarchpkg-0.1/debian/bui0000664000000000000000000000011312312041170030406 0ustar bf5ff4686f2c9e13e9f495c99541b535 usr/share/doc/buildindeppkg/changelog.gz ././@LongLink0000644000000000000000000000016400000000000011604 Lustar rootrootpbuilder-0.215ubuntu7/testsuite/random-manual-test-material/buildarchpkg/buildarchpkg-0.1/debian/buildindeppkg/usr/pbuilder-0.215ubuntu7/testsuite/random-manual-test-material/buildarchpkg/buildarchpkg-0.1/debian/bui0000775000000000000000000000000012312041255030415 5ustar ././@LongLink0000644000000000000000000000017200000000000011603 Lustar rootrootpbuilder-0.215ubuntu7/testsuite/random-manual-test-material/buildarchpkg/buildarchpkg-0.1/debian/buildindeppkg/usr/share/pbuilder-0.215ubuntu7/testsuite/random-manual-test-material/buildarchpkg/buildarchpkg-0.1/debian/bui0000775000000000000000000000000012312041255030415 5ustar ././@LongLink0000644000000000000000000000017600000000000011607 Lustar rootrootpbuilder-0.215ubuntu7/testsuite/random-manual-test-material/buildarchpkg/buildarchpkg-0.1/debian/buildindeppkg/usr/share/doc/pbuilder-0.215ubuntu7/testsuite/random-manual-test-material/buildarchpkg/buildarchpkg-0.1/debian/bui0000775000000000000000000000000012312041255030415 5ustar ././@LongLink0000644000000000000000000000021400000000000011600 Lustar rootrootpbuilder-0.215ubuntu7/testsuite/random-manual-test-material/buildarchpkg/buildarchpkg-0.1/debian/buildindeppkg/usr/share/doc/buildindeppkg/pbuilder-0.215ubuntu7/testsuite/random-manual-test-material/buildarchpkg/buildarchpkg-0.1/debian/bui0000775000000000000000000000000012312041256030416 5ustar ././@LongLink0000644000000000000000000000023000000000000011576 Lustar rootrootpbuilder-0.215ubuntu7/testsuite/random-manual-test-material/buildarchpkg/buildarchpkg-0.1/debian/buildindeppkg/usr/share/doc/buildindeppkg/changelog.gzpbuilder-0.215ubuntu7/testsuite/random-manual-test-material/buildarchpkg/buildarchpkg-0.1/debian/bui0000664000000000000000000000023612312041170030414 0ustar  {b\ r*u(aAV>3[yt^\IGqZ d2#9FTiv,B(Ssf]wK~* |ٞՍ8KpVaXH)#Z././@LongLink0000644000000000000000000000014700000000000011605 Lustar rootrootpbuilder-0.215ubuntu7/testsuite/random-manual-test-material/buildarchpkg/buildarchpkg-0.1/debian/rulespbuilder-0.215ubuntu7/testsuite/random-manual-test-material/buildarchpkg/buildarchpkg-0.1/debian/rul0000775000000000000000000000242612312041170030445 0ustar #!/usr/bin/make -f CFLAGS = -Wall -g ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) CFLAGS += -O0 else CFLAGS += -O2 endif configure: configure-stamp configure-stamp: dh_testdir # Add here commands to configure the package. touch configure-stamp build: build-stamp build-stamp: configure-stamp dh_testdir # Add here commands to compile the package. touch $@ clean: dh_testdir dh_testroot rm -f build-stamp configure-stamp # Add here commands to clean up after the build process. dh_clean install: build dh_testdir dh_testroot dh_clean -k dh_installdirs # Build architecture-independent files here. binary-indep: build install # We have nothing to do by default. # Build architecture-dependent files here. binary-arch: build install dh_testdir dh_testroot dh_installchangelogs dh_installdocs dh_installexamples # dh_install # dh_installmenu # dh_installdebconf # dh_installlogrotate # dh_installemacsen # dh_installpam # dh_installmime # dh_python # dh_installinit # dh_installcron # dh_installinfo dh_installman dh_link dh_strip dh_compress dh_fixperms # dh_perl # dh_makeshlibs dh_installdeb dh_shlibdeps dh_gencontrol dh_md5sums dh_builddeb binary: binary-indep binary-arch .PHONY: build clean binary-indep binary-arch binary install configure ././@LongLink0000644000000000000000000000014600000000000011604 Lustar rootrootpbuilder-0.215ubuntu7/testsuite/random-manual-test-material/buildarchpkg/buildarchpkg-0.1/debian/tmp/pbuilder-0.215ubuntu7/testsuite/random-manual-test-material/buildarchpkg/buildarchpkg-0.1/debian/tmp0000775000000000000000000000000012312041255030436 5ustar ././@LongLink0000644000000000000000000000015500000000000011604 Lustar rootrootpbuilder-0.215ubuntu7/testsuite/random-manual-test-material/buildarchpkg/buildarchpkg-0.1/debian/tmp/DEBIAN/pbuilder-0.215ubuntu7/testsuite/random-manual-test-material/buildarchpkg/buildarchpkg-0.1/debian/tmp0000775000000000000000000000000012312041256030437 5ustar ././@LongLink0000644000000000000000000000016400000000000011604 Lustar rootrootpbuilder-0.215ubuntu7/testsuite/random-manual-test-material/buildarchpkg/buildarchpkg-0.1/debian/tmp/DEBIAN/controlpbuilder-0.215ubuntu7/testsuite/random-manual-test-material/buildarchpkg/buildarchpkg-0.1/debian/tmp0000664000000000000000000000037312312041170030437 0ustar Package: buildarchpkg Version: 0.1 Architecture: i386 Maintainer: Junichi Uekawa Installed-Size: 28 Section: unknown Priority: extra Description: ././@LongLink0000644000000000000000000000016400000000000011604 Lustar rootrootpbuilder-0.215ubuntu7/testsuite/random-manual-test-material/buildarchpkg/buildarchpkg-0.1/debian/tmp/DEBIAN/md5sumspbuilder-0.215ubuntu7/testsuite/random-manual-test-material/buildarchpkg/buildarchpkg-0.1/debian/tmp0000664000000000000000000000011212312041170030426 0ustar bf5ff4686f2c9e13e9f495c99541b535 usr/share/doc/buildarchpkg/changelog.gz ././@LongLink0000644000000000000000000000015200000000000011601 Lustar rootrootpbuilder-0.215ubuntu7/testsuite/random-manual-test-material/buildarchpkg/buildarchpkg-0.1/debian/tmp/usr/pbuilder-0.215ubuntu7/testsuite/random-manual-test-material/buildarchpkg/buildarchpkg-0.1/debian/tmp0000775000000000000000000000000012312041256030437 5ustar ././@LongLink0000644000000000000000000000016000000000000011600 Lustar rootrootpbuilder-0.215ubuntu7/testsuite/random-manual-test-material/buildarchpkg/buildarchpkg-0.1/debian/tmp/usr/share/pbuilder-0.215ubuntu7/testsuite/random-manual-test-material/buildarchpkg/buildarchpkg-0.1/debian/tmp0000775000000000000000000000000012312041256030437 5ustar ././@LongLink0000644000000000000000000000016400000000000011604 Lustar rootrootpbuilder-0.215ubuntu7/testsuite/random-manual-test-material/buildarchpkg/buildarchpkg-0.1/debian/tmp/usr/share/doc/pbuilder-0.215ubuntu7/testsuite/random-manual-test-material/buildarchpkg/buildarchpkg-0.1/debian/tmp0000775000000000000000000000000012312041256030437 5ustar ././@LongLink0000644000000000000000000000020100000000000011574 Lustar rootrootpbuilder-0.215ubuntu7/testsuite/random-manual-test-material/buildarchpkg/buildarchpkg-0.1/debian/tmp/usr/share/doc/buildarchpkg/pbuilder-0.215ubuntu7/testsuite/random-manual-test-material/buildarchpkg/buildarchpkg-0.1/debian/tmp0000775000000000000000000000000012312041256030437 5ustar ././@LongLink0000644000000000000000000000021500000000000011601 Lustar rootrootpbuilder-0.215ubuntu7/testsuite/random-manual-test-material/buildarchpkg/buildarchpkg-0.1/debian/tmp/usr/share/doc/buildarchpkg/changelog.gzpbuilder-0.215ubuntu7/testsuite/random-manual-test-material/buildarchpkg/buildarchpkg-0.1/debian/tmp0000664000000000000000000000023612312041170030435 0ustar  {b\ r*u(aAV>3[yt^\IGqZ d2#9FTiv,B(Ssf]wK~* |ٞՍ8KpVaXH)#Z././@LongLink0000644000000000000000000000015100000000000011600 Lustar rootrootpbuilder-0.215ubuntu7/testsuite/random-manual-test-material/buildarchpkg/buildarchpkg-0.1/debian/controlpbuilder-0.215ubuntu7/testsuite/random-manual-test-material/buildarchpkg/buildarchpkg-0.1/debian/con0000664000000000000000000000105612312041170030415 0ustar Source: buildarchpkg Section: unknown Priority: extra Maintainer: Junichi Uekawa Build-Depends: debhelper (>= 5) Build-Depends-Indep: ghostscript Standards-Version: 3.7.2 Package: buildarchpkg Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends} Description: Package: buildindeppkg Architecture: all Depends: ${shlibs:Depends}, ${misc:Depends} Description: ././@LongLink0000644000000000000000000000017500000000000011606 Lustar rootrootpbuilder-0.215ubuntu7/testsuite/random-manual-test-material/buildarchpkg/buildarchpkg-0.1/debian/buildindeppkg.debhelper.logpbuilder-0.215ubuntu7/testsuite/random-manual-test-material/buildarchpkg/buildarchpkg-0.1/debian/bui0000664000000000000000000000027512312041170030417 0ustar dh_installdirs dh_installchangelogs dh_installdocs dh_installexamples dh_installman dh_link dh_strip dh_compress dh_fixperms dh_installdeb dh_shlibdeps dh_gencontrol dh_md5sums dh_builddeb ././@LongLink0000644000000000000000000000015300000000000011602 Lustar rootrootpbuilder-0.215ubuntu7/testsuite/random-manual-test-material/buildarchpkg/buildarchpkg-0.1/debian/substvarspbuilder-0.215ubuntu7/testsuite/random-manual-test-material/buildarchpkg/buildarchpkg-0.1/debian/sub0000664000000000000000000000001612312041170030422 0ustar misc:Depends= ././@LongLink0000644000000000000000000000014700000000000011605 Lustar rootrootpbuilder-0.215ubuntu7/testsuite/random-manual-test-material/buildarchpkg/buildarchpkg-0.1/debian/filespbuilder-0.215ubuntu7/testsuite/random-manual-test-material/buildarchpkg/buildarchpkg-0.1/debian/fil0000664000000000000000000000012012312041170030377 0ustar buildarchpkg_0.1_i386.deb unknown extra buildindeppkg_0.1_all.deb unknown extra ././@LongLink0000644000000000000000000000015300000000000011602 Lustar rootrootpbuilder-0.215ubuntu7/testsuite/random-manual-test-material/buildarchpkg/buildarchpkg-0.1/debian/changelogpbuilder-0.215ubuntu7/testsuite/random-manual-test-material/buildarchpkg/buildarchpkg-0.1/debian/cha0000664000000000000000000000025212312041170030366 0ustar buildarchpkg (0.1) unstable; urgency=low * a package that has both arch dep and indep parts. -- Junichi Uekawa Wed, 13 Jul 2011 21:33:33 +0900 ././@LongLink0000644000000000000000000000015700000000000011606 Lustar rootrootpbuilder-0.215ubuntu7/testsuite/random-manual-test-material/buildarchpkg/buildarchpkg-0.1/debian/debhelper.logpbuilder-0.215ubuntu7/testsuite/random-manual-test-material/buildarchpkg/buildarchpkg-0.1/debian/deb0000664000000000000000000000027512312041170030372 0ustar dh_installdirs dh_installchangelogs dh_installdocs dh_installexamples dh_installman dh_link dh_strip dh_compress dh_fixperms dh_installdeb dh_shlibdeps dh_gencontrol dh_md5sums dh_builddeb ././@LongLink0000644000000000000000000000017100000000000011602 Lustar rootrootpbuilder-0.215ubuntu7/testsuite/random-manual-test-material/buildarchpkg/buildarchpkg-0.1/debian/buildindeppkg.substvarspbuilder-0.215ubuntu7/testsuite/random-manual-test-material/buildarchpkg/buildarchpkg-0.1/debian/bui0000664000000000000000000000001612312041170030410 0ustar misc:Depends= pbuilder-0.215ubuntu7/testsuite/random-manual-test-material/buildarchpkg/buildarchpkg-0.1/README0000664000000000000000000000016712312041170027353 0ustar This is an example package that simply succeeds, with a arch-indep build dependency This will excercise --binary-arch. ././@LongLink0000644000000000000000000000014600000000000011604 Lustar rootrootpbuilder-0.215ubuntu7/testsuite/random-manual-test-material/buildarchpkg/buildarchpkg-0.1/build-stamppbuilder-0.215ubuntu7/testsuite/random-manual-test-material/buildarchpkg/buildarchpkg-0.1/build-stam0000664000000000000000000000000012312041170030441 0ustar ././@LongLink0000644000000000000000000000015200000000000011601 Lustar rootrootpbuilder-0.215ubuntu7/testsuite/random-manual-test-material/buildarchpkg/buildarchpkg-0.1/configure-stamppbuilder-0.215ubuntu7/testsuite/random-manual-test-material/buildarchpkg/buildarchpkg-0.1/configure-0000664000000000000000000000000012312041170030436 0ustar ././@LongLink0000644000000000000000000000014700000000000011605 Lustar rootrootpbuilder-0.215ubuntu7/testsuite/random-manual-test-material/buildarchpkg/buildarchpkg_0.1_i386.changespbuilder-0.215ubuntu7/testsuite/random-manual-test-material/buildarchpkg/buildarchpkg_0.1_i386.chang0000664000000000000000000000276412312041170030335 0ustar Format: 1.8 Date: Wed, 13 Jul 2011 21:33:33 +0900 Source: buildarchpkg Binary: buildarchpkg buildindeppkg Architecture: source i386 all Version: 0.1 Distribution: unstable Urgency: low Maintainer: Junichi Uekawa Changed-By: Junichi Uekawa Description: buildarchpkg - buildindeppkg - Changes: buildarchpkg (0.1) unstable; urgency=low . * a package that has both arch dep and indep parts. Checksums-Sha1: 27ab5635b7b57fcf6bac5b748fc31d6bce03e51b 510 buildarchpkg_0.1.dsc ecd8d27fcb20244ae1b1af6543bc2025ce9331d1 1139 buildarchpkg_0.1.tar.gz cbe9a17df0a9b618e4be9cf95a7f7d67b0049545 1000 buildarchpkg_0.1_i386.deb e8aececcc8a80bd22c78281408c69dffede41b6b 1012 buildindeppkg_0.1_all.deb Checksums-Sha256: 35b2f922a32118b5299130a201bed5364cfa95b5c98daf5e778d97d544ee67c1 510 buildarchpkg_0.1.dsc f0627035c1081f3e07a1f50b862f3347976b79834693538a3c92341c7ad67221 1139 buildarchpkg_0.1.tar.gz 98531c45740c89bd79f0ddbd59807bfc3968064b26527a10143702d9c058380e 1000 buildarchpkg_0.1_i386.deb 0926421d1dcbe1d33bce769eca332243dc6bf14d5d6b8e236abb94d435ee9937 1012 buildindeppkg_0.1_all.deb Files: 24e69989d49f0b2a2a8197eafdac0890 510 unknown extra buildarchpkg_0.1.dsc 19e5dddcedcb5cafffb827db19f3c4c2 1139 unknown extra buildarchpkg_0.1.tar.gz d63ce8ae839d4767fd19824e165a5282 1000 unknown extra buildarchpkg_0.1_i386.deb 56f4b7dbf757f582fb315eea12275227 1012 unknown extra buildindeppkg_0.1_all.deb pbuilder-0.215ubuntu7/testsuite/random-manual-test-material/buildarchpkg/buildarchpkg_0.1.tar.gz0000664000000000000000000000216312312041170027702 0ustar ]o6Я毸!yHȑXƼ&hd[ vŞZ-\cQRTY ȼ>t;f q/?{>x4*r?~8:z;Xz_(̶囫gtrh\G>I~9KQ #r .ؔZ0qk0E3#Xq2 ˡ !éפB ˘76H'lƩ<~~OJZ.~0DGA]T:f،2eJNKVj4 ft)yCgz?)lIW^&TbU@p̽˲B YD4谽]2E5%SK%j0mJՆ $*V[[иD40331!*&nH[-0m*|S МH(\:W"eIU7 Vfζ.-gwW/ nxF.:.>qFxO)x0 % T*x!\^ 0aXZUcekz%|BIzg פI) 7fr] ;ҷ2)@jAK'r.b.[6c%}?6zobu:T}Zr4AYW"?!JoYz'RB,ewx_Ǫ. -RB^J2 3 2`C59-<"IYr[ԓDX; 0mUl6um5ɘ,ZLΧiee-,hllrޔm\rB\mTNqaYϫ(Hd?u. amK)յmW`n:iLUKܮڏ؁ 7oqHtHWp~p}۽>|%3BC>jE@Sj`@w9˩ʀ0'G V@d8}tAtAt_` 2u(pbuilder-0.215ubuntu7/testsuite/random-manual-test-material/buildarchpkg/successpkg_0.1_i386.build0000664000000000000000000000156212312041170030062 0ustar dpkg-buildpackage -rfakeroot -D -us -uc -j3 -i -I dpkg-buildpackage: export CFLAGS from dpkg-buildflags (origin: vendor): -g -O2 dpkg-buildpackage: export CPPFLAGS from dpkg-buildflags (origin: vendor): dpkg-buildpackage: export CXXFLAGS from dpkg-buildflags (origin: vendor): -g -O2 dpkg-buildpackage: export FFLAGS from dpkg-buildflags (origin: vendor): -g -O2 dpkg-buildpackage: export LDFLAGS from dpkg-buildflags (origin: vendor): dpkg-buildpackage: source package successpkg dpkg-buildpackage: source version 0.1 dpkg-buildpackage: source changed by Junichi Uekawa dpkg-source -i -I --before-build buildarchpkg-0.1 dpkg-buildpackage: host architecture i386 dpkg-source: error: source package has two conflicting values - buildarchpkg and successpkg dpkg-buildpackage: error: dpkg-source -i -I --before-build buildarchpkg-0.1 gave error exit status 255 pbuilder-0.215ubuntu7/testsuite/random-manual-test-material/buildarchpkg/buildindeppkg_0.1_all.deb0000664000000000000000000000176412312041170030247 0ustar ! debian-binary 1310560458 0 0 100644 4 ` 2.0 control.tar.gz 1310560458 0 0 100644 406 ` ݊0^)h۴Mg;,7  |0OofDԫY=?()'oYWWg+!kx=s׫-繾ZMx)D \]ߟSeWu\?9o64 '\.YqYۺշj*~DkK^碉bO3{/Bwɚ n +;#maom<#ǝew8o5%{Ay|m56^Gφ}o.^]mD G0lX̔ս!݇77?(ƱoQh@ 9YXi~UNpvS9=<B!B!B!B!/,v(data.tar.gz 1310560458 0 0 100644 413 ` g90sSS0 4mhhf`nlh`dn7774bP0e(-.I,RP`(/zE(̀oh`j4tĢTfF&OOOodln8I9)y)@qCS#OHKOOK,LLpƿ"X?́|7fbwXAz_m 늴Ji|e nۖ"ƫ;u},q2K1?G0O!Hk̶y1tK#xer?6Mki㬹9oA^ a#<"Dyz*Q0 F(`Q0 F(`Q0 F(`Q0 Fiʱ( pbuilder-0.215ubuntu7/testsuite/random-manual-test-material/buildarchpkg/buildarchpkg_0.1_i386.build0000664000000000000000000000751212312041170030350 0ustar dpkg-buildpackage -rfakeroot -D -us -uc -j3 -i -I dpkg-buildpackage: export CFLAGS from dpkg-buildflags (origin: vendor): -g -O2 dpkg-buildpackage: export CPPFLAGS from dpkg-buildflags (origin: vendor): dpkg-buildpackage: export CXXFLAGS from dpkg-buildflags (origin: vendor): -g -O2 dpkg-buildpackage: export FFLAGS from dpkg-buildflags (origin: vendor): -g -O2 dpkg-buildpackage: export LDFLAGS from dpkg-buildflags (origin: vendor): dpkg-buildpackage: source package buildarchpkg dpkg-buildpackage: source version 0.1 dpkg-buildpackage: source changed by Junichi Uekawa dpkg-source -i -I --before-build buildarchpkg-0.1 dpkg-buildpackage: host architecture i386 fakeroot debian/rules clean dh_testdir dh_testroot rm -f build-stamp configure-stamp # Add here commands to clean up after the build process. dh_clean dh_clean: Compatibility levels before 5 are deprecated. dpkg-source -i -I -b buildarchpkg-0.1 dpkg-source: warning: no source format specified in debian/source/format, see dpkg-source(1) dpkg-source: info: using source format `1.0' dpkg-source: info: building buildarchpkg in buildarchpkg_0.1.tar.gz dpkg-source: info: building buildarchpkg in buildarchpkg_0.1.dsc debian/rules build dh_testdir # Add here commands to configure the package. touch configure-stamp dh_testdir # Add here commands to compile the package. touch build-stamp fakeroot debian/rules binary dh_testdir dh_testroot dh_clean -k dh_clean: dh_clean -k is deprecated; use dh_prep instead dh_clean: Compatibility levels before 5 are deprecated. dh_installdirs dh_installdirs: Compatibility levels before 5 are deprecated. dh_testdir dh_testroot dh_installchangelogs dh_installchangelogs: Compatibility levels before 5 are deprecated. dh_installdocs dh_installdocs: Compatibility levels before 5 are deprecated. dh_installexamples dh_installexamples: Compatibility levels before 5 are deprecated. dh_installman dh_installman: Compatibility levels before 5 are deprecated. dh_link dh_link: Compatibility levels before 5 are deprecated. dh_strip dh_strip: Compatibility levels before 5 are deprecated. dh_compress dh_compress: Compatibility levels before 5 are deprecated. dh_fixperms dh_fixperms: Compatibility levels before 5 are deprecated. dh_installdeb dh_installdeb: Compatibility levels before 5 are deprecated. dh_shlibdeps dh_shlibdeps: Compatibility levels before 5 are deprecated. dh_gencontrol dh_gencontrol: Compatibility levels before 5 are deprecated. dpkg-gencontrol: warning: Depends field of package buildarchpkg: unknown substitution variable ${shlibs:Depends} dpkg-gencontrol: warning: Depends field of package buildindeppkg: unknown substitution variable ${shlibs:Depends} dh_md5sums dh_md5sums: Compatibility levels before 5 are deprecated. dh_builddeb dh_builddeb: Compatibility levels before 5 are deprecated. dpkg-deb: `../buildarchpkg_0.1_i386.deb' にパッケージ `buildarchpkg' を構築しています。 dpkg-deb: `../buildindeppkg_0.1_all.deb' にパッケージ `buildindeppkg' を構築しています。 dpkg-genchanges >../buildarchpkg_0.1_i386.changes dpkg-genchanges: including full source code in upload dpkg-source -i -I --after-build buildarchpkg-0.1 dpkg-buildpackage: full upload; Debian-native package (full source is included) Now running lintian... W: buildarchpkg source: package-uses-deprecated-debhelper-compat-version 1 W: buildarchpkg source: ancient-standards-version 3.7.2 (current is 3.9.1) E: buildarchpkg: description-is-dh_make-template E: buildarchpkg: section-is-dh_make-template E: buildarchpkg: no-copyright-file W: buildarchpkg: empty-binary-package E: buildindeppkg: description-is-dh_make-template E: buildindeppkg: section-is-dh_make-template E: buildindeppkg: no-copyright-file W: buildindeppkg: empty-binary-package Finished running lintian. Now signing changes and any dsc files... Could not find a signing program (pgp or gpg)! pbuilder-0.215ubuntu7/testsuite/random-manual-test-material/buildarchpkg/buildarchpkg_0.1_i386.deb0000664000000000000000000000175012312041170030001 0ustar ! debian-binary 1310560458 0 0 100644 4 ` 2.0 control.tar.gz 1310560458 0 0 100644 395 ` j0p_)[vJh7 eWcGĕ$O?5~A tUqr<<.D˻ZZ E>}TTYiRӉ6ͻ.p(S#`3ɨ~aֻR Standards-Version: 3.7.2 Build-Depends: debhelper (>= 5) Build-Depends-Indep: ghostscript Checksums-Sha1: ecd8d27fcb20244ae1b1af6543bc2025ce9331d1 1139 buildarchpkg_0.1.tar.gz Checksums-Sha256: f0627035c1081f3e07a1f50b862f3347976b79834693538a3c92341c7ad67221 1139 buildarchpkg_0.1.tar.gz Files: 19e5dddcedcb5cafffb827db19f3c4c2 1139 buildarchpkg_0.1.tar.gz pbuilder-0.215ubuntu7/testsuite/random-manual-test-material/successpkg/0000775000000000000000000000000012312041256023254 5ustar pbuilder-0.215ubuntu7/testsuite/random-manual-test-material/successpkg/successpkg_0.1.dsc0000664000000000000000000000037612312041170026500 0ustar Format: 1.0 Source: successpkg Binary: successpkg Architecture: any Version: 0.1 Maintainer: Junichi Uekawa Standards-Version: 3.7.2 Build-Depends: debhelper (>= 5) Files: cbf38c407d4205268b7bf13c5be30a60 1274 successpkg_0.1.tar.gz pbuilder-0.215ubuntu7/testsuite/random-manual-test-material/successpkg/successpkg_0.1.tar.gz0000664000000000000000000000237212312041170027132 0ustar /YFX_o6)nH6rd5A&[Z4MP7-eHþlKɒAGR!q:9n{z&rF}vG\QFCz`؂Ak iC@+gqN)?WÿM>E\S&i yKЙ3h0i5?M9R߆wGTX,gĿa6(v1`s`2 2O( B^o 6u48#7lN^HTcI&%]=x躤P+/Q2ou7Md|6  bP0r!ȵRq(J.)LAS{^tXDǀ]S`db ):!Ԭ;Q8A3T,Z:TKJ վi+.4Sk.Χ49&kXY0,7hF_* wGXmv~8̴:rq9'$;pBAl kR )R2;(_) c@1Lt $[4Vpo3$(e 9>+ n`֎O_ ۏ$Cf&L>2CǖJo^ŴQ<;}AP^q-@+[:_& G ZH&@棦 Kd;.;g?^MΏқߟ2#p!<7; UB ۫Oo>LI\ŚyA!!x,5^{LAtkpH1zqν]BpeFf~`B ÊYi<0 jf&\2aS\Ejjj U(pbuilder-0.215ubuntu7/testsuite/uml/0000775000000000000000000000000012312041256014373 5ustar pbuilder-0.215ubuntu7/testsuite/uml/pbuilder-user-mode-linux-build-dsh-sid.log0000664000000000000000000000654012312041170024365 0ustar Invoking: linux mem=128M eth0=tuntap,,,192.168.30.198 con0=fd:0,fd:1 con=pty root=/dev/root rootflags=/ rootfstype=hostfs ubd1=/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild/10117.cow,/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testimage devfs=mount init=/tmp/fileewbgGO rw Checking for the skas3 patch in the host...not found Checking for /proc/mm...not found Checking for /dev/anon on the host...Not available (open failed with errno 2) Checking for /dev/anon on the host...Not available (open failed with errno 2) Checking for /dev/anon on the host...Not available (open failed with errno 2) Checking for /dev/anon on the host...Not available (open failed with errno 2) Linux version 2.4.24-1um (root@atoron) (gcc С 3.3.3 20031206 (prerelease) (Debian)) #2 2004ǯ 3 13 02:28:54 JST On node 0 totalpages: 32768 zone(0): 32768 pages. zone(1): 0 pages. zone(2): 0 pages. Kernel command line: mem=128M eth0=tuntap,,,192.168.30.198 con0=fd:0,fd:1 con=pty root=/dev/root rootflags=/ rootfstype=hostfs ubd1=/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild/10117.cow,/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testimage devfs=mount init=/tmp/fileewbgGO rw Calibrating delay loop... 1667.89 BogoMIPS Memory: 124888k available Dentry cache hash table entries: 16384 (order: 5, 131072 bytes) Inode cache hash table entries: 8192 (order: 4, 65536 bytes) Mount cache hash table entries: 512 (order: 0, 4096 bytes) Buffer cache hash table entries: 4096 (order: 2, 16384 bytes) Page-cache hash table entries: 32768 (order: 5, 131072 bytes) Checking for host processor cmov support...Yes Checking for host processor xmm support...No Checking that ptrace can change system call numbers...OK Checking that host ptys support output SIGIO...Yes Checking that host ptys support SIGIO on close...No, enabling workaround POSIX conformance testing by UNIFIX Linux NET4.0 for Linux 2.4 Based upon Swansea University Computer Society NET3.039 Initializing RT netlink socket Starting kswapd VFS: Disk quotas vdquot_6.5.1 Journalled Block Device driver loaded devfs: v1.12c (20020818) Richard Gooch (rgooch@atnf.csiro.au) devfs: boot_options: 0x1 pty: 256 Unix98 ptys configured RAMDISK driver initialized: 16 RAM disks of 4096K size 1024 blocksize loop: loaded (max 8 devices) Initializing Cryptographic API Initializing software serial port version 1 mconsole (version 2) initialized on /home/dancer/.uml/I2F83c/mconsole unable to open root_fs for validation Couldn't stat "/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testimage" : err = 2 Backing file '/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testimage' mtime request failed, err = 2 unable to open /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild/10117.cow for validation Initializing stdio console driver Netdevice 0 : TUN/TAP backend - IP = 192.168.30.198 NET4: Linux TCP/IP 1.0 for NET4.0 IP: routing cache hash table of 512 buckets, 4Kbytes TCP: Hash tables configured (established 8192 bind 16384) Linux IP multicast router 0.06 plus PIM-SM NET4: Unix domain sockets 1.0/SMP for Linux NET4.0. VFS: Mounted root (hostfs filesystem). Mounted devfs on /dev mount: special device /dev/ubd/1 does not exist E: Cannot mount /dev/ubd/1, is UML root image accessible as current user? Kernel panic: Attempted to kill init! tracing thread pid = 10132 -> Successful exit from user-mode linux pbuilder-0.215ubuntu7/testsuite/uml/pbuilder-user-mode-linux-create-sid.log0000664000000000000000000013115112312041170023752 0ustar Checking for the skas3 patch in the host...not found Checking for /proc/mm...not found Checking for /dev/anon on the host...Not available (open failed with errno 2) Checking for /dev/anon on the host...Not available (open failed with errno 2) Checking for /dev/anon on the host...Not available (open failed with errno 2) Checking for /dev/anon on the host...Not available (open failed with errno 2) Linux version 2.4.24-1um (root@atoron) (gcc С 3.3.3 20031206 (prerelease) (Debian)) #2 2004ǯ 3 13 02:28:54 JST On node 0 totalpages: 8192 zone(0): 8192 pages. zone(1): 0 pages. zone(2): 0 pages. Kernel command line: eth0=tuntap,,,192.168.30.198 con0=fd:0,fd:1 con=pty root=/dev/root rootflags=/ rootfstype=hostfs ubd1=/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testimage init=/usr/lib/rootstrap/builder devfs=mount rsworkdir=/home/dancer/.pbuilder-user-mode-linux Calibrating delay loop... 1664.61 BogoMIPS Memory: 28700k available Dentry cache hash table entries: 4096 (order: 3, 32768 bytes) Inode cache hash table entries: 2048 (order: 2, 16384 bytes) Mount cache hash table entries: 512 (order: 0, 4096 bytes) Buffer cache hash table entries: 1024 (order: 0, 4096 bytes) Page-cache hash table entries: 8192 (order: 3, 32768 bytes) Checking for host processor cmov support...Yes Checking for host processor xmm support...No Checking that ptrace can change system call numbers...OK Checking that host ptys support output SIGIO...Yes Checking that host ptys support SIGIO on close...No, enabling workaround POSIX conformance testing by UNIFIX Linux NET4.0 for Linux 2.4 Based upon Swansea University Computer Society NET3.039 Initializing RT netlink socket Starting kswapd VFS: Disk quotas vdquot_6.5.1 Journalled Block Device driver loaded devfs: v1.12c (20020818) Richard Gooch (rgooch@atnf.csiro.au) devfs: boot_options: 0x1 pty: 256 Unix98 ptys configured RAMDISK driver initialized: 16 RAM disks of 4096K size 1024 blocksize loop: loaded (max 8 devices) Initializing Cryptographic API Initializing software serial port version 1 mconsole (version 2) initialized on /home/dancer/.uml/WHR4fy/mconsole unable to open root_fs for validation Partition check: ubdb: unknown partition table Initializing stdio console driver Netdevice 0 : TUN/TAP backend - IP = 192.168.30.198 NET4: Linux TCP/IP 1.0 for NET4.0 IP: routing cache hash table of 512 buckets, 4Kbytes TCP: Hash tables configured (established 2048 bind 4096) Linux IP multicast router 0.06 plus PIM-SM NET4: Unix domain sockets 1.0/SMP for Linux NET4.0. VFS: Mounted root (hostfs filesystem) readonly. Mounted devfs on /dev builder running... Using rootstrap module network from: /usr/lib/rootstrap/modules/network * modprobe tun FATAL: Module tun not found. * ifconfig tap0 192.168.30.198 netmask 255.255.255.255 up * bash -c echo 1 > /proc/sys/net/ipv4/ip_forward * route add -host 192.168.30.199 dev tap0 * bash -c echo 1 > /proc/sys/net/ipv4/conf/tap0/proxy_arp * arp -Ds 192.168.30.199 eth0 pub Using rootstrap module mkfs from: /usr/lib/rootstrap/modules/mkfs Using rootstrap module mount from: /usr/lib/rootstrap/modules/mount Using rootstrap module debian from: /usr/lib/rootstrap/modules/debian I: Retrieving debootstrap.invalid_dists_sid_Release I: Validating debootstrap.invalid_dists_sid_Release I: Retrieving debootstrap.invalid_dists_sid_main_binary-i386_Packages I: Validating debootstrap.invalid_dists_sid_main_binary-i386_Packages I: Checking adduser... I: Checking apt... I: Checking apt-utils... I: Checking aptitude... I: Checking at... I: Checking base-config... I: Checking base-files... I: Checking base-passwd... I: Checking bash... I: Checking bsdmainutils... I: Checking bsdutils... I: Checking console-common... I: Checking console-data... I: Checking console-tools... I: Checking coreutils... I: Checking cpio... I: Checking cron... I: Checking debconf... I: Checking debconf-i18n... I: Checking debianutils... I: Checking diff... I: Checking dpkg... I: Checking dselect... I: Checking e2fslibs... I: Checking e2fsprogs... I: Checking ed... I: Checking exim4... I: Checking exim4-base... I: Checking exim4-config... I: Checking exim4-daemon-light... I: Checking fdutils... I: Checking findutils... I: Checking gcc-3.3-base... I: Checking gettext-base... I: Checking grep... I: Checking groff-base... I: Checking gzip... I: Checking hostname... I: Checking ifupdown... I: Checking info... I: Checking initscripts... I: Checking ipchains... I: Checking iptables... I: Checking iputils-ping... I: Checking klogd... I: Checking libacl1... I: Checking libattr1... I: Checking libblkid1... I: Checking libc6... I: Checking libcap1... I: Checking libcomerr2... I: Checking libconsole... I: Checking libdb1-compat... I: Checking libdb3... I: Checking libdb4.2... I: Checking libgcc1... I: Checking libgcrypt7... I: Checking libgdbm3... I: Checking libgnutls10... I: Checking libgpg-error0... I: Checking liblocale-gettext-perl... I: Checking liblockfile1... I: Checking liblzo1... I: Checking libncurses5... I: Checking libnewt0.51... I: Checking libopencdk8... I: Checking libpam-modules... I: Checking libpam-runtime... I: Checking libpam0g... I: Checking libpcap0.7... I: Checking libpcre3... I: Checking libpopt0... I: Checking libsigc++-1.2-5c102... I: Checking libss2... I: Checking libssl0.9.7... I: Checking libstdc++5... I: Checking libtasn1-2... I: Checking libtext-charwidth-perl... I: Checking libtext-iconv-perl... I: Checking libtext-wrapi18n-perl... I: Checking libtextwrap1... I: Checking libuuid1... I: Checking libwrap0... I: Checking login... I: Checking logrotate... I: Checking mailx... I: Checking makedev... I: Checking man-db... I: Checking manpages... I: Checking mawk... I: Checking modutils... I: Checking mount... I: Checking nano... I: Checking ncurses-base... I: Checking ncurses-bin... I: Checking net-tools... I: Checking netbase... I: Checking netkit-inetd... I: Checking nvi... I: Checking passwd... I: Checking pciutils... I: Checking perl-base... I: Checking ppp... I: Checking pppconfig... I: Checking pppoe... I: Checking pppoeconf... I: Checking procps... I: Checking psmisc... I: Checking sed... I: Checking slang1a-utf8... I: Checking sysklogd... I: Checking sysv-rc... I: Checking sysvinit... I: Checking tar... I: Checking tasksel... I: Checking tcpd... I: Checking telnet... I: Checking util-linux... I: Checking wget... I: Checking whiptail... I: Checking zlib1g... I: Retrieving adduser I: Validating adduser I: Retrieving apt I: Validating apt I: Retrieving apt-utils I: Validating apt-utils I: Retrieving aptitude I: Validating aptitude I: Retrieving at I: Validating at I: Retrieving base-config I: Validating base-config I: Retrieving base-files I: Validating base-files I: Retrieving base-passwd I: Validating base-passwd I: Retrieving bash I: Validating bash I: Retrieving bsdmainutils I: Validating bsdmainutils I: Retrieving bsdutils I: Validating bsdutils I: Retrieving console-common I: Validating console-common I: Retrieving console-data I: Validating console-data I: Retrieving console-tools I: Validating console-tools I: Retrieving coreutils I: Validating coreutils I: Retrieving cpio I: Validating cpio I: Retrieving cron I: Validating cron I: Retrieving debconf I: Validating debconf I: Retrieving debconf-i18n I: Validating debconf-i18n I: Retrieving debianutils I: Validating debianutils I: Retrieving diff I: Validating diff I: Retrieving dpkg I: Validating dpkg I: Retrieving dselect I: Validating dselect I: Retrieving e2fslibs I: Validating e2fslibs I: Retrieving e2fsprogs I: Validating e2fsprogs I: Retrieving ed I: Validating ed I: Retrieving exim4 I: Validating exim4 I: Retrieving exim4-base I: Validating exim4-base I: Retrieving exim4-config I: Validating exim4-config I: Retrieving exim4-daemon-light I: Validating exim4-daemon-light I: Retrieving fdutils I: Validating fdutils I: Retrieving findutils I: Validating findutils I: Retrieving gcc-3.3-base I: Validating gcc-3.3-base I: Retrieving gettext-base I: Validating gettext-base I: Retrieving grep I: Validating grep I: Retrieving groff-base I: Validating groff-base I: Retrieving gzip I: Validating gzip I: Retrieving hostname I: Validating hostname I: Retrieving ifupdown I: Validating ifupdown I: Retrieving info I: Validating info I: Retrieving initscripts I: Validating initscripts I: Retrieving ipchains I: Validating ipchains I: Retrieving iptables I: Validating iptables I: Retrieving iputils-ping I: Validating iputils-ping I: Retrieving klogd I: Validating klogd I: Retrieving libacl1 I: Validating libacl1 I: Retrieving libattr1 I: Validating libattr1 I: Retrieving libblkid1 I: Validating libblkid1 I: Retrieving libc6 I: Validating libc6 I: Retrieving libcap1 I: Validating libcap1 I: Retrieving libcomerr2 I: Validating libcomerr2 I: Retrieving libconsole I: Validating libconsole I: Retrieving libdb1-compat I: Validating libdb1-compat I: Retrieving libdb3 I: Validating libdb3 I: Retrieving libdb4.2 I: Validating libdb4.2 I: Retrieving libgcc1 I: Validating libgcc1 I: Retrieving libgcrypt7 I: Validating libgcrypt7 I: Retrieving libgdbm3 I: Validating libgdbm3 I: Retrieving libgnutls10 I: Validating libgnutls10 I: Retrieving libgpg-error0 I: Validating libgpg-error0 I: Retrieving liblocale-gettext-perl I: Validating liblocale-gettext-perl I: Retrieving liblockfile1 I: Validating liblockfile1 I: Retrieving liblzo1 I: Validating liblzo1 I: Retrieving libncurses5 I: Validating libncurses5 I: Retrieving libnewt0.51 I: Validating libnewt0.51 I: Retrieving libopencdk8 I: Validating libopencdk8 I: Retrieving libpam-modules I: Validating libpam-modules I: Retrieving libpam-runtime I: Validating libpam-runtime I: Retrieving libpam0g I: Validating libpam0g I: Retrieving libpcap0.7 I: Validating libpcap0.7 I: Retrieving libpcre3 I: Validating libpcre3 I: Retrieving libpopt0 I: Validating libpopt0 I: Retrieving libsigc++-1.2-5c102 I: Validating libsigc++-1.2-5c102 I: Retrieving libss2 I: Validating libss2 I: Retrieving libssl0.9.7 I: Validating libssl0.9.7 I: Retrieving libstdc++5 I: Validating libstdc++5 I: Retrieving libtasn1-2 I: Validating libtasn1-2 I: Retrieving libtext-charwidth-perl I: Validating libtext-charwidth-perl I: Retrieving libtext-iconv-perl I: Validating libtext-iconv-perl I: Retrieving libtext-wrapi18n-perl I: Validating libtext-wrapi18n-perl I: Retrieving libtextwrap1 I: Validating libtextwrap1 I: Retrieving libuuid1 I: Validating libuuid1 I: Retrieving libwrap0 I: Validating libwrap0 I: Retrieving login I: Validating login I: Retrieving logrotate I: Validating logrotate I: Retrieving mailx I: Validating mailx I: Retrieving makedev I: Validating makedev I: Retrieving man-db I: Validating man-db I: Retrieving manpages I: Validating manpages I: Retrieving mawk I: Validating mawk I: Retrieving modutils I: Validating modutils I: Retrieving mount I: Validating mount I: Retrieving nano I: Validating nano I: Retrieving ncurses-base I: Validating ncurses-base I: Retrieving ncurses-bin I: Validating ncurses-bin I: Retrieving net-tools I: Validating net-tools I: Retrieving netbase I: Validating netbase I: Retrieving netkit-inetd I: Validating netkit-inetd I: Retrieving nvi I: Validating nvi I: Retrieving passwd I: Validating passwd I: Retrieving pciutils I: Validating pciutils I: Retrieving perl-base I: Validating perl-base I: Retrieving ppp I: Validating ppp I: Retrieving pppconfig I: Validating pppconfig I: Retrieving pppoe I: Validating pppoe I: Retrieving pppoeconf I: Validating pppoeconf I: Retrieving procps I: Validating procps I: Retrieving psmisc I: Validating psmisc I: Retrieving sed I: Validating sed I: Retrieving slang1a-utf8 I: Validating slang1a-utf8 I: Retrieving sysklogd I: Validating sysklogd I: Retrieving sysv-rc I: Validating sysv-rc I: Retrieving sysvinit I: Validating sysvinit I: Retrieving tar I: Validating tar I: Retrieving tasksel I: Validating tasksel I: Retrieving tcpd I: Validating tcpd I: Retrieving telnet I: Validating telnet I: Retrieving util-linux I: Validating util-linux I: Retrieving wget I: Validating wget I: Retrieving whiptail I: Validating whiptail I: Retrieving zlib1g I: Validating zlib1g I: Extracting base-files... I: Extracting base-passwd... I: Extracting bash... I: Extracting bsdutils... I: Extracting coreutils... I: Extracting libacl1... I: Extracting libattr1... I: Extracting debconf... I: Extracting debconf-i18n... I: Extracting liblocale-gettext-perl... I: Extracting libtext-wrapi18n-perl... I: Extracting libtext-charwidth-perl... I: Extracting debianutils... I: Extracting diff... I: Extracting dpkg... I: Extracting dselect... I: Extracting libblkid1... I: Extracting e2fsprogs... I: Extracting e2fslibs... I: Extracting libcomerr2... I: Extracting libss2... I: Extracting libuuid1... I: Extracting findutils... I: Extracting grep... I: Extracting gzip... I: Extracting hostname... I: Extracting libcap1... I: Extracting libc6... I: Extracting libdb1-compat... I: Extracting libdb3... I: Extracting libncurses5... I: Extracting libnewt0.51... I: Extracting libpam-modules... I: Extracting libpam-runtime... I: Extracting libpam0g... I: Extracting libpopt0... I: Extracting login... I: Extracting makedev... I: Extracting mawk... I: Extracting modutils... I: Extracting mount... I: Extracting ncurses-base... I: Extracting ncurses-bin... I: Extracting passwd... I: Extracting perl-base... I: Extracting procps... I: Extracting sed... I: Extracting slang1a-utf8... I: Extracting initscripts... I: Extracting sysvinit... I: Extracting sysv-rc... I: Extracting tar... I: Extracting util-linux... I: Extracting whiptail... I: Extracting libgcc1... I: Extracting gcc-3.3-base... I: Extracting libstdc++5... I: Installing core packages... Selecting previously deselected package base-files. (Reading database ... 0 files and directories currently installed.) Unpacking base-files (from .../base-files_3.0.16_i386.deb) ... Selecting previously deselected package base-passwd. Unpacking base-passwd (from .../base-passwd_3.5.7_i386.deb) ... dpkg: base-passwd: dependency problems, but configuring anyway as you request: base-passwd depends on libc6 (>= 2.3.2.ds1-4); however: Package libc6 is not installed. Setting up base-passwd (3.5.7) ... dpkg: base-files: dependency problems, but configuring anyway as you request: base-files depends on awk; however: Package awk is not installed. Setting up base-files (3.0.16) ... dpkg: regarding .../archives/dpkg_1.10.23_i386.deb containing dpkg, pre-dependency problem: dpkg pre-depends on dselect dselect is not installed. dpkg: warning - ignoring pre-dependency problem ! dpkg: regarding .../archives/dpkg_1.10.23_i386.deb containing dpkg, pre-dependency problem: dpkg pre-depends on libc6 (>= 2.3.2.ds1-4) dpkg: warning - ignoring pre-dependency problem ! (Reading database ... 84 files and directories currently installed.) Preparing to replace dpkg 1.10.23 (using .../archives/dpkg_1.10.23_i386.deb) ... Unpacking replacement dpkg ... dpkg: dpkg: dependency problems, but configuring anyway as you request: dpkg depends on dselect; however: Package dselect is not installed. dpkg depends on libc6 (>= 2.3.2.ds1-4); however: Package libc6 is not installed. Setting up dpkg (1.10.23) ... Moving /usr/info/dir to /usr/share/info/dir. Making /usr/info a symlink to /usr/share/info. Selecting previously deselected package libc6. (Reading database ... 257 files and directories currently installed.) Unpacking libc6 (from .../libc6_2.3.2.ds1-13_i386.deb) ... dpkg: libc6: dependency problems, but configuring anyway as you request: libc6 depends on libdb1-compat; however: Package libdb1-compat is not installed. Setting up libc6 (2.3.2.ds1-13) ... Current default timezone: 'UTC'. Local time is now: Sat Jul 24 01:19:56 UTC 2004. Universal Time is now: Sat Jul 24 01:19:56 UTC 2004. Run 'tzconfig' if you wish to change it. Selecting previously deselected package perl-base. (Reading database ... 2269 files and directories currently installed.) Unpacking perl-base (from .../perl-base_5.8.4-2_i386.deb) ... Setting up perl-base (5.8.4-2) ... Selecting previously deselected package mawk. (Reading database ... 2389 files and directories currently installed.) Unpacking mawk (from .../mawk_1.3.3-11_i386.deb) ... Setting up mawk (1.3.3-11) ... Selecting previously deselected package debconf. (Reading database ... 2408 files and directories currently installed.) Unpacking debconf (from .../debconf_1.4.29_all.deb) ... dpkg: debconf: dependency problems, but configuring anyway as you request: debconf depends on debconf-i18n | debconf-english; however: Package debconf-i18n is not installed. Package debconf-english is not installed. Setting up debconf (1.4.29) ... I: Unpacking required packages... (Reading database ... 2556 files and directories currently installed.) Preparing to replace base-files 3.0.16 (using .../base-files_3.0.16_i386.deb) ... Unpacking replacement base-files ... Preparing to replace base-passwd 3.5.7 (using .../base-passwd_3.5.7_i386.deb) ... Unpacking replacement base-passwd ... Selecting previously deselected package bash. dpkg: regarding .../bash_2.05b-22_i386.deb containing bash, pre-dependency problem: bash pre-depends on libncurses5 (>= 5.4-1) dpkg: warning - ignoring pre-dependency problem ! Unpacking bash (from .../bash_2.05b-22_i386.deb) ... Selecting previously deselected package bsdutils. Unpacking bsdutils (from .../bsdutils_1%3a2.12-7_i386.deb) ... Selecting previously deselected package coreutils. dpkg: regarding .../coreutils_5.2.1-2_i386.deb containing coreutils, pre-dependency problem: coreutils pre-depends on libacl1 (>= 2.2.11-1) dpkg: warning - ignoring pre-dependency problem ! Unpacking coreutils (from .../coreutils_5.2.1-2_i386.deb) ... Selecting previously deselected package libacl1. Unpacking libacl1 (from .../libacl1_2.2.23-1_i386.deb) ... Selecting previously deselected package libattr1. Unpacking libattr1 (from .../libattr1_2.4.16-1_i386.deb) ... Preparing to replace debconf 1.4.29 (using .../debconf_1.4.29_all.deb) ... Unpacking replacement debconf ... Selecting previously deselected package debconf-i18n. Unpacking debconf-i18n (from .../debconf-i18n_1.4.29_all.deb) ... Selecting previously deselected package liblocale-gettext-perl. Unpacking liblocale-gettext-perl (from .../liblocale-gettext-perl_1.01-17_i386.deb) ... Selecting previously deselected package libtext-wrapi18n-perl. Unpacking libtext-wrapi18n-perl (from .../libtext-wrapi18n-perl_0.06-1_all.deb) ... Selecting previously deselected package libtext-charwidth-perl. Unpacking libtext-charwidth-perl (from .../libtext-charwidth-perl_0.04-1_i386.deb) ... Selecting previously deselected package debianutils. dpkg: regarding .../debianutils_2.8.4_i386.deb containing debianutils, pre-dependency problem: debianutils pre-depends on coreutils (>= 4.5.8-1) coreutils is unpacked, but has never been configured. dpkg: warning - ignoring pre-dependency problem ! Unpacking debianutils (from .../debianutils_2.8.4_i386.deb) ... Selecting previously deselected package diff. Unpacking diff (from .../archives/diff_2.8.1-6_i386.deb) ... dpkg: regarding .../archives/dpkg_1.10.23_i386.deb containing dpkg, pre-dependency problem: dpkg pre-depends on dselect dselect is not installed. dpkg: warning - ignoring pre-dependency problem ! Preparing to replace dpkg 1.10.23 (using .../archives/dpkg_1.10.23_i386.deb) ... Unpacking replacement dpkg ... Selecting previously deselected package dselect. Unpacking dselect (from .../dselect_1.10.23_i386.deb) ... Selecting previously deselected package libblkid1. Unpacking libblkid1 (from .../libblkid1_1.35-6_i386.deb) ... Selecting previously deselected package e2fsprogs. dpkg: regarding .../e2fsprogs_1.35-6_i386.deb containing e2fsprogs, pre-dependency problem: e2fsprogs pre-depends on e2fslibs (= 1.35-6) dpkg: warning - ignoring pre-dependency problem ! dpkg: regarding .../e2fsprogs_1.35-6_i386.deb containing e2fsprogs, pre-dependency problem: e2fsprogs pre-depends on libblkid1 (>= 1.34-1) libblkid1 is unpacked, but has never been configured. dpkg: warning - ignoring pre-dependency problem ! dpkg: regarding .../e2fsprogs_1.35-6_i386.deb containing e2fsprogs, pre-dependency problem: e2fsprogs pre-depends on libcomerr2 (>= 1.34-1) dpkg: warning - ignoring pre-dependency problem ! dpkg: regarding .../e2fsprogs_1.35-6_i386.deb containing e2fsprogs, pre-dependency problem: e2fsprogs pre-depends on libss2 (>= 1.34-1) dpkg: warning - ignoring pre-dependency problem ! dpkg: regarding .../e2fsprogs_1.35-6_i386.deb containing e2fsprogs, pre-dependency problem: e2fsprogs pre-depends on libuuid1 (>= 1.34-1) dpkg: warning - ignoring pre-dependency problem ! Unpacking e2fsprogs (from .../e2fsprogs_1.35-6_i386.deb) ... Selecting previously deselected package e2fslibs. Unpacking e2fslibs (from .../e2fslibs_1.35-6_i386.deb) ... Selecting previously deselected package libcomerr2. Unpacking libcomerr2 (from .../libcomerr2_1.35-6_i386.deb) ... Selecting previously deselected package libss2. Unpacking libss2 (from .../libss2_1.35-6_i386.deb) ... Selecting previously deselected package libuuid1. Unpacking libuuid1 (from .../libuuid1_1.35-6_i386.deb) ... Selecting previously deselected package findutils. Unpacking findutils (from .../findutils_4.1.20-4_i386.deb) ... Selecting previously deselected package grep. Unpacking grep (from .../grep_2.5.1.ds1-2_i386.deb) ... Selecting previously deselected package gzip. Unpacking gzip (from .../archives/gzip_1.3.5-8_i386.deb) ... Selecting previously deselected package hostname. Unpacking hostname (from .../hostname_2.13_i386.deb) ... Selecting previously deselected package libcap1. Unpacking libcap1 (from .../libcap1_1%3a1.10-14_i386.deb) ... Preparing to replace libc6 2.3.2.ds1-13 (using .../libc6_2.3.2.ds1-13_i386.deb) ... Unpacking replacement libc6 ... Selecting previously deselected package libdb1-compat. Unpacking libdb1-compat (from .../libdb1-compat_2.1.3-7_i386.deb) ... Selecting previously deselected package libdb3. Unpacking libdb3 (from .../libdb3_3.2.9-20_i386.deb) ... Selecting previously deselected package libncurses5. Unpacking libncurses5 (from .../libncurses5_5.4-4_i386.deb) ... Selecting previously deselected package libnewt0.51. Unpacking libnewt0.51 (from .../libnewt0.51_0.51.6-9_i386.deb) ... Selecting previously deselected package libpam-modules. Unpacking libpam-modules (from .../libpam-modules_0.76-22_i386.deb) ... Selecting previously deselected package libpam-runtime. Unpacking libpam-runtime (from .../libpam-runtime_0.76-22_all.deb) ... Selecting previously deselected package libpam0g. Unpacking libpam0g (from .../libpam0g_0.76-22_i386.deb) ... Selecting previously deselected package libpopt0. Unpacking libpopt0 (from .../libpopt0_1.7-4_i386.deb) ... Selecting previously deselected package login. dpkg: regarding .../login_1%3a4.0.3-29.1_i386.deb containing login, pre-dependency problem: login pre-depends on libpam0g (>= 0.76) libpam0g is unpacked, but has never been configured. dpkg: warning - ignoring pre-dependency problem ! dpkg: regarding .../login_1%3a4.0.3-29.1_i386.deb containing login, pre-dependency problem: login pre-depends on libpam-runtime (>= 0.76-14) libpam-runtime is unpacked, but has never been configured. dpkg: warning - ignoring pre-dependency problem ! Unpacking login (from .../login_1%3a4.0.3-29.1_i386.deb) ... Selecting previously deselected package makedev. Unpacking makedev (from .../makedev_2.3.1-71_all.deb) ... Preparing to replace mawk 1.3.3-11 (using .../mawk_1.3.3-11_i386.deb) ... Unpacking replacement mawk ... Selecting previously deselected package modutils. Unpacking modutils (from .../modutils_2.4.26-1_i386.deb) ... Selecting previously deselected package mount. Unpacking mount (from .../archives/mount_2.12-7_i386.deb) ... Selecting previously deselected package ncurses-base. Unpacking ncurses-base (from .../ncurses-base_5.4-4_all.deb) ... Selecting previously deselected package ncurses-bin. dpkg: regarding .../ncurses-bin_5.4-4_i386.deb containing ncurses-bin, pre-dependency problem: ncurses-bin pre-depends on libncurses5 (>= 5.4-1) libncurses5 is unpacked, but has never been configured. dpkg: warning - ignoring pre-dependency problem ! Unpacking ncurses-bin (from .../ncurses-bin_5.4-4_i386.deb) ... Selecting previously deselected package passwd. Unpacking passwd (from .../passwd_1%3a4.0.3-29.1_i386.deb) ... Preparing to replace perl-base 5.8.4-2 (using .../perl-base_5.8.4-2_i386.deb) ... Unpacking replacement perl-base ... Selecting previously deselected package procps. Unpacking procps (from .../procps_1%3a3.2.1-2_i386.deb) ... Selecting previously deselected package sed. Unpacking sed (from .../archives/sed_4.1.1-1_i386.deb) ... Selecting previously deselected package slang1a-utf8. Unpacking slang1a-utf8 (from .../slang1a-utf8_1.4.9dbs-3_i386.deb) ... Selecting previously deselected package initscripts. Unpacking initscripts (from .../initscripts_2.85-22_i386.deb) ... Selecting previously deselected package sysvinit. dpkg: regarding .../sysvinit_2.85-22_i386.deb containing sysvinit, pre-dependency problem: sysvinit pre-depends on initscripts initscripts is unpacked, but has never been configured. dpkg: warning - ignoring pre-dependency problem ! dpkg: regarding .../sysvinit_2.85-22_i386.deb containing sysvinit, pre-dependency problem: sysvinit pre-depends on sysv-rc (>= 2.85-2) | file-rc (>> 0.7.0) dpkg: warning - ignoring pre-dependency problem ! Unpacking sysvinit (from .../sysvinit_2.85-22_i386.deb) ... Selecting previously deselected package sysv-rc. Unpacking sysv-rc (from .../sysv-rc_2.85-22_all.deb) ... Selecting previously deselected package tar. Unpacking tar (from .../tar_1.13.93-4_i386.deb) ... Selecting previously deselected package util-linux. dpkg: regarding .../util-linux_2.12-7_i386.deb containing util-linux, pre-dependency problem: util-linux pre-depends on libncurses5 (>= 5.3.20030510-1) libncurses5 is unpacked, but has never been configured. dpkg: warning - ignoring pre-dependency problem ! dpkg: regarding .../util-linux_2.12-7_i386.deb containing util-linux, pre-dependency problem: util-linux pre-depends on slang1a-utf8 (>> 1.4.4-7.1) slang1a-utf8 is unpacked, but has never been configured. dpkg: warning - ignoring pre-dependency problem ! dpkg: regarding .../util-linux_2.12-7_i386.deb containing util-linux, pre-dependency problem: util-linux pre-depends on zlib1g (>= 1:1.2.1) dpkg: warning - ignoring pre-dependency problem ! Unpacking util-linux (from .../util-linux_2.12-7_i386.deb) ... Selecting previously deselected package whiptail. Unpacking whiptail (from .../whiptail_0.51.6-9_i386.deb) ... Selecting previously deselected package libgcc1. Unpacking libgcc1 (from .../libgcc1_1%3a3.4.1-3_i386.deb) ... Selecting previously deselected package gcc-3.3-base. Unpacking gcc-3.3-base (from .../gcc-3.3-base_1%3a3.3.4-5_i386.deb) ... Selecting previously deselected package libstdc++5. Unpacking libstdc++5 (from .../libstdc++5_1%3a3.3.4-5_i386.deb) ... I: Configuring required packages... Setting up ncurses-base (5.4-4) ... Setting up sysv-rc (2.85-22) ... Setting up libpam-runtime (0.76-22) ... Setting up gcc-3.3-base (3.3.4-5) ... Setting up libc6 (2.3.2.ds1-13) ... Current default timezone: 'UTC'. Local time is now: Sat Jul 24 01:20:56 UTC 2004. Universal Time is now: Sat Jul 24 01:20:56 UTC 2004. Run 'tzconfig' if you wish to change it. Setting up libcap1 (1.10-14) ... Setting up libdb1-compat (2.1.3-7) ... Setting up libuuid1 (1.35-6) ... Setting up libpopt0 (1.7-4) ... Setting up libpam0g (0.76-22) ... Setting up bsdutils (2.12-7) ... Setting up perl-base (5.8.4-2) ... Setting up tar (1.13.93-4) ... Setting up slang1a-utf8 (1.4.9dbs-3) ... Setting up libgcc1 (3.4.1-3) ... Setting up mount (2.12-7) ... Setting up libncurses5 (5.4-4) ... Setting up libattr1 (2.4.16-1) ... Setting up sed (4.1.1-1) ... Setting up e2fslibs (1.35-6) ... Setting up base-passwd (3.5.7) ... Setting up libcomerr2 (1.35-6) ... Setting up mawk (1.3.3-11) ... Setting up libnewt0.51 (0.51.6-9) ... Setting up grep (2.5.1.ds1-2) ... Setting up hostname (2.13) ... Setting up libacl1 (2.2.23-1) ... Setting up libblkid1 (1.35-6) ... Setting up libss2 (1.35-6) ... Setting up findutils (4.1.20-4) ... Setting up e2fsprogs (1.35-6) ... Setting up liblocale-gettext-perl (1.01-17) ... Setting up diff (2.8.1-6) ... Setting up libdb3 (3.2.9-20) ... Setting up libstdc++5 (3.3.4-5) ... Setting up libtext-charwidth-perl (0.04-1) ... Setting up libtext-wrapi18n-perl (0.06-1) ... Setting up coreutils (5.2.1-2) ... Setting up debianutils (2.8.4) ... Setting up makedev (2.3.1-71) ... Setting up procps (3.2.1-2) ... Setting up ncurses-bin (5.4-4) ... Setting up whiptail (0.51.6-9) ... Setting up libpam-modules (0.76-22) ... Setting up base-files (3.0.16) ... Setting up gzip (1.3.5-8) ... Setting up dselect (1.10.23) ... Setting up login (4.0.3-29.1) ... Setting up passwd (4.0.3-29.1) ... Setting up dpkg (1.10.23) ... Setting up bash (2.05b-22) ... dpkg: debconf-i18n: dependency problems, but configuring anyway as you request: debconf-i18n depends on libtext-iconv-perl; however: Package libtext-iconv-perl is not installed. Setting up debconf-i18n (1.4.29) ... dpkg: util-linux: dependency problems, but configuring anyway as you request: util-linux depends on zlib1g (>= 1:1.2.1); however: Package zlib1g is not installed. Setting up util-linux (2.12-7) ... Setting up debconf (1.4.29) ... Setting up initscripts (2.85-22) ... Setting up sysvinit (2.85-22) ... sysvinit: creating /dev/initctl init: timeout opening/writing control channel /dev/initctl Setting up modutils (2.4.26-1) ... I: Installing base packages... Selecting previously deselected package adduser. (Reading database ... 4402 files and directories currently installed.) Unpacking adduser (from .../archives/adduser_3.57_all.deb) ... Selecting previously deselected package apt. Unpacking apt (from .../archives/apt_0.5.26_i386.deb) ... Selecting previously deselected package apt-utils. Unpacking apt-utils (from .../apt-utils_0.5.26_i386.deb) ... Selecting previously deselected package libdb4.2. Unpacking libdb4.2 (from .../libdb4.2_4.2.52-16_i386.deb) ... Selecting previously deselected package at. Unpacking at (from .../archives/at_3.1.8-11_i386.deb) ... Selecting previously deselected package base-config. Unpacking base-config (from .../base-config_2.37_all.deb) ... Selecting previously deselected package aptitude. Unpacking aptitude (from .../aptitude_0.2.15.4-1_i386.deb) ... Selecting previously deselected package libsigc++-1.2-5c102. Unpacking libsigc++-1.2-5c102 (from .../libsigc++-1.2-5c102_1.2.5-1_i386.deb) ... Selecting previously deselected package bsdmainutils. Unpacking bsdmainutils (from .../bsdmainutils_6.0.14_i386.deb) ... Selecting previously deselected package console-common. Unpacking console-common (from .../console-common_0.7.46_all.deb) ... Selecting previously deselected package console-tools. Unpacking console-tools (from .../console-tools_1%3a0.2.3dbs-54_i386.deb) ... Selecting previously deselected package libconsole. Unpacking libconsole (from .../libconsole_1%3a0.2.3dbs-54_i386.deb) ... Selecting previously deselected package console-data. Unpacking console-data (from .../console-data_2002.12.04dbs-43_all.deb) ... Selecting previously deselected package cpio. Unpacking cpio (from .../archives/cpio_2.5-1.1_i386.deb) ... Selecting previously deselected package cron. Unpacking cron (from .../cron_3.0pl1-83_i386.deb) ... Selecting previously deselected package ed. Unpacking ed (from .../archives/ed_0.2-20_i386.deb) ... Selecting previously deselected package exim4. Unpacking exim4 (from .../archives/exim4_4.34-3_all.deb) ... Selecting previously deselected package exim4-base. Unpacking exim4-base (from .../exim4-base_4.34-3_i386.deb) ... Selecting previously deselected package exim4-config. Unpacking exim4-config (from .../exim4-config_4.34-3_all.deb) ... Selecting previously deselected package exim4-daemon-light. Unpacking exim4-daemon-light (from .../exim4-daemon-light_4.34-3_i386.deb) ... Selecting previously deselected package libgnutls10. Unpacking libgnutls10 (from .../libgnutls10_1.0.4-3_i386.deb) ... Selecting previously deselected package libgcrypt7. Unpacking libgcrypt7 (from .../libgcrypt7_1.1.90-9_i386.deb) ... Selecting previously deselected package libgpg-error0. Unpacking libgpg-error0 (from .../libgpg-error0_0.7-3_i386.deb) ... Selecting previously deselected package libopencdk8. Unpacking libopencdk8 (from .../libopencdk8_0.5.5-3_i386.deb) ... Selecting previously deselected package libtasn1-2. Unpacking libtasn1-2 (from .../libtasn1-2_0.2.7.0-2_i386.deb) ... Selecting previously deselected package fdutils. Unpacking fdutils (from .../fdutils_5.4-20040228-1_i386.deb) ... Selecting previously deselected package gettext-base. Unpacking gettext-base (from .../gettext-base_0.14.1-5_i386.deb) ... Selecting previously deselected package groff-base. Unpacking groff-base (from .../groff-base_1.18.1.1-1_i386.deb) ... Selecting previously deselected package ifupdown. Unpacking ifupdown (from .../ifupdown_0.6.4-4.8_i386.deb) ... Selecting previously deselected package info. Unpacking info (from .../archives/info_4.7-2_i386.deb) ... Selecting previously deselected package klogd. Unpacking klogd (from .../klogd_1.4.1-14_i386.deb) ... Selecting previously deselected package libssl0.9.7. Unpacking libssl0.9.7 (from .../libssl0.9.7_0.9.7d-4_i386.deb) ... Selecting previously deselected package liblzo1. Unpacking liblzo1 (from .../liblzo1_1.08-1_i386.deb) ... Selecting previously deselected package zlib1g. Unpacking zlib1g (from .../zlib1g_1%3a1.2.1.1-5_i386.deb) ... Selecting previously deselected package liblockfile1. Unpacking liblockfile1 (from .../liblockfile1_1.06_i386.deb) ... Selecting previously deselected package libpcre3. Unpacking libpcre3 (from .../libpcre3_4.5-1.1_i386.deb) ... Selecting previously deselected package libwrap0. Unpacking libwrap0 (from .../libwrap0_7.6.dbs-4_i386.deb) ... Selecting previously deselected package logrotate. Unpacking logrotate (from .../logrotate_3.7-2_i386.deb) ... Selecting previously deselected package mailx. Unpacking mailx (from .../mailx_1%3a8.1.2-0.20040524cvs-1_i386.deb) ... Selecting previously deselected package man-db. Unpacking man-db (from .../man-db_2.4.2-18_i386.deb) ... Selecting previously deselected package libgdbm3. Unpacking libgdbm3 (from .../libgdbm3_1.8.3-2_i386.deb) ... Selecting previously deselected package manpages. Unpacking manpages (from .../manpages_1.67-1_all.deb) ... Selecting previously deselected package nano. Unpacking nano (from .../archives/nano_1.2.4-1_i386.deb) ... Selecting previously deselected package net-tools. Unpacking net-tools (from .../net-tools_1.60-10_i386.deb) ... Selecting previously deselected package netbase. Unpacking netbase (from .../archives/netbase_4.17_all.deb) ... Selecting previously deselected package netkit-inetd. Unpacking netkit-inetd (from .../netkit-inetd_0.10-9_i386.deb) ... Selecting previously deselected package iputils-ping. Unpacking iputils-ping (from .../iputils-ping_3%3a20020927-2_i386.deb) ... Selecting previously deselected package nvi. Unpacking nvi (from .../archives/nvi_1.79-21_i386.deb) ... Selecting previously deselected package ppp. Unpacking ppp (from .../ppp_2.4.2+20040428-2_i386.deb) ... Selecting previously deselected package pppconfig. Unpacking pppconfig (from .../pppconfig_2.3.4_all.deb) ... Selecting previously deselected package pppoe. Unpacking pppoe (from .../archives/pppoe_3.5-3_i386.deb) ... Selecting previously deselected package pppoeconf. Unpacking pppoeconf (from .../pppoeconf_1.0.4_all.deb) ... Selecting previously deselected package libpcap0.7. Unpacking libpcap0.7 (from .../libpcap0.7_0.7.2-7_i386.deb) ... Selecting previously deselected package sysklogd. Unpacking sysklogd (from .../sysklogd_1.4.1-14_i386.deb) ... Selecting previously deselected package tasksel. Unpacking tasksel (from .../archives/tasksel_2.06_i386.deb) ... Selecting previously deselected package libtextwrap1. Unpacking libtextwrap1 (from .../libtextwrap1_0.1-1_i386.deb) ... Selecting previously deselected package tcpd. Unpacking tcpd (from .../tcpd_7.6.dbs-4_i386.deb) ... Selecting previously deselected package telnet. Unpacking telnet (from .../telnet_0.17-24_i386.deb) ... Selecting previously deselected package libtext-iconv-perl. Unpacking libtext-iconv-perl (from .../libtext-iconv-perl_1.2-3_i386.deb) ... Selecting previously deselected package wget. Unpacking wget (from .../archives/wget_1.9.1-4_i386.deb) ... Selecting previously deselected package pciutils. Unpacking pciutils (from .../pciutils_1%3a2.1.11-15_i386.deb) ... Selecting previously deselected package psmisc. Unpacking psmisc (from .../psmisc_21.5-1_i386.deb) ... Selecting previously deselected package ipchains. Unpacking ipchains (from .../ipchains_1.3.10-15_i386.deb) ... Selecting previously deselected package iptables. Unpacking iptables (from .../iptables_1.2.9-10_i386.deb) ... Setting up gettext-base (0.14.1-5) ... Setting up libgdbm3 (1.8.3-2) ... Setting up libtasn1-2 (0.2.7.0-2) ... Setting up libgpg-error0 (0.7-3) ... Setting up psmisc (21.5-1) ... Setting up libssl0.9.7 (0.9.7d-4) ... Setting up apt (0.5.26) ... Setting up fdutils (5.4-20040228-1) ... Keeping old fdmount setuid root settings. Please note that you can run '/usr/sbin/fdutilsconfig' to change them. Setting up pciutils (2.1.11-15) ... Setting up zlib1g (1.2.1.1-5) ... Setting up adduser (3.57) ... Setting up manpages (1.67-1) ... Setting up ed (0.2-20) ... Setting up libtext-iconv-perl (1.2-3) ... Setting up libpcap0.7 (0.7.2-7) ... Setting up liblzo1 (1.08-1) ... Setting up wget (1.9.1-4) ... Setting up ipchains (1.3.10-15) ... Setting up groff-base (1.18.1.1-1) ... Setting up libdb4.2 (4.2.52-16) ... Setting up net-tools (1.60-10) ... Setting up bsdmainutils (6.0.14) ... Setting up libsigc++-1.2-5c102 (1.2.5-1) ... Setting up libpcre3 (4.5-1.1) ... Setting up aptitude (0.2.15.4-1) ... Setting up info (4.7-2) ... Setting up iputils-ping (20020927-2) ... Setting up cron (3.0pl1-83) ... Adding group crontab (101)... Done. Starting periodic command scheduler: cron Warning: Fake start-stop-daemon called, doing nothing . Setting up nano (1.2.4-1) ... Setting up netkit-inetd (0.10-9) ... Starting internet superserver: inetd Warning: Fake start-stop-daemon called, doing nothing . Setting up libconsole (0.2.3dbs-54) ... Setting up apt-utils (0.5.26) ... Setting up iptables (1.2.9-10) ... Setting up cpio (2.5-1.1) ... Setting up nvi (1.79-21) ... Setting up libwrap0 (7.6.dbs-4) ... Setting up liblockfile1 (1.06) ... Setting up tcpd (7.6.dbs-4) ... Setting up exim4-config (4.34-3) ... hostname: Host name lookup failure Adding system-user for exim (v4) Setting up man-db (2.4.2-18) ... Building database of manual pages ... Setting up libgcrypt7 (1.1.90-9) ... Setting up ifupdown (0.6.4-4.8) ... Setting up tasksel (2.06) ... Setting up logrotate (3.7-2) ... Setting up libopencdk8 (0.5.5-3) ... Setting up libgnutls10 (1.0.4-3) ... Setting up netbase (4.17) ... Setting up ppp (2.4.2+20040428-2) ... Setting up pppoe (3.5-3) ... Setting up pppoeconf (1.0.4) ... Setting up exim4-base (4.34-3) ... Setting up telnet (0.17-24) ... Setting up exim4-daemon-light (4.34-3) ... Starting MTA: Warning: Fake start-stop-daemon called, doing nothing exim4. Setting up pppconfig (2.3.4) ... Setting up mailx (8.1.2-0.20040524cvs-1) ... Setting up at (3.1.8-11) ... Starting deferred execution scheduler: atd Warning: Fake start-stop-daemon called, doing nothing . Setting up exim4 (4.34-3) ... Setting up console-data (2002.12.04dbs-43) ... Looking for keymap to install: NONE Setting up sysklogd (1.4.1-14) ... Stopping system log daemon: syslogd Warning: Fake start-stop-daemon called, doing nothing . Starting system log daemon: syslogd Warning: Fake start-stop-daemon called, doing nothing . Setting up klogd (1.4.1-14) ... Stopping kernel log daemon: klogd Warning: Fake start-stop-daemon called, doing nothing . Starting kernel log daemon: klogd Warning: Fake start-stop-daemon called, doing nothing . Setting up libtextwrap1 (0.1-1) ... Setting up console-common (0.7.46) ... Looking for keymap to install: NONE Setting up console-tools (0.2.3dbs-54) ... Setting up base-config (2.37) ... I: Base system installed successfully. umount: /tmp/target/dev/pts: not mounted umount: /tmp/target/dev/shm: not mounted umount: /tmp/target/proc/bus/usb: not found chroot /tmp/target dpkg --purge base-config console-common console-tools console-data console-tools-libs (Reading database ... 7339 files and directories currently installed.) Removing base-config ... Purging configuration files for base-config ... Removing console-tools ... Purging configuration files for console-tools ... dpkg - warning: ignoring request to remove console-tools-libs which isn't installed. Removing console-common ... Purging configuration files for console-common ... Removing console-data ... Purging configuration files for console-data ... Using rootstrap module uml from: /usr/lib/rootstrap/modules/uml ./MAKEDEV: warning: can't read /proc/devices Using rootstrap module umount from: /usr/lib/rootstrap/modules/umount umount: /tmp/target/proc: not mounted System halted. tracing thread pid = 22208 Invoking: linux mem=128M eth0=tuntap,,,192.168.30.198 con0=fd:0,fd:1 con=pty root=/dev/root rootflags=/ rootfstype=hostfs ubd1=/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testimage devfs=mount init=/tmp/fileZeFP1g rw Checking for the skas3 patch in the host...not found Checking for /proc/mm...not found Checking for /dev/anon on the host...Not available (open failed with errno 2) Checking for /dev/anon on the host...Not available (open failed with errno 2) Checking for /dev/anon on the host...Not available (open failed with errno 2) Checking for /dev/anon on the host...Not available (open failed with errno 2) Linux version 2.4.24-1um (root@atoron) (gcc С 3.3.3 20031206 (prerelease) (Debian)) #2 2004ǯ 3 13 02:28:54 JST On node 0 totalpages: 32768 zone(0): 32768 pages. zone(1): 0 pages. zone(2): 0 pages. Kernel command line: mem=128M eth0=tuntap,,,192.168.30.198 con0=fd:0,fd:1 con=pty root=/dev/root rootflags=/ rootfstype=hostfs ubd1=/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testimage devfs=mount init=/tmp/fileZeFP1g rw Calibrating delay loop... 1661.33 BogoMIPS Memory: 124888k available Dentry cache hash table entries: 16384 (order: 5, 131072 bytes) Inode cache hash table entries: 8192 (order: 4, 65536 bytes) Mount cache hash table entries: 512 (order: 0, 4096 bytes) Buffer cache hash table entries: 4096 (order: 2, 16384 bytes) Page-cache hash table entries: 32768 (order: 5, 131072 bytes) Checking for host processor cmov support...Yes Checking for host processor xmm support...No Checking that ptrace can change system call numbers...OK Checking that host ptys support output SIGIO...Yes Checking that host ptys support SIGIO on close...No, enabling workaround POSIX conformance testing by UNIFIX Linux NET4.0 for Linux 2.4 Based upon Swansea University Computer Society NET3.039 Initializing RT netlink socket Starting kswapd VFS: Disk quotas vdquot_6.5.1 Journalled Block Device driver loaded devfs: v1.12c (20020818) Richard Gooch (rgooch@atnf.csiro.au) devfs: boot_options: 0x1 pty: 256 Unix98 ptys configured RAMDISK driver initialized: 16 RAM disks of 4096K size 1024 blocksize loop: loaded (max 8 devices) Initializing Cryptographic API Initializing software serial port version 1 mconsole (version 2) initialized on /home/dancer/.uml/UTumMM/mconsole unable to open root_fs for validation unable to open /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testimage for validation Initializing stdio console driver Netdevice 0 : TUN/TAP backend - IP = 192.168.30.198 NET4: Linux TCP/IP 1.0 for NET4.0 IP: routing cache hash table of 512 buckets, 4Kbytes TCP: Hash tables configured (established 8192 bind 16384) Linux IP multicast router 0.06 plus PIM-SM NET4: Unix domain sockets 1.0/SMP for Linux NET4.0. VFS: Mounted root (hostfs filesystem). Mounted devfs on /dev mount: special device /dev/ubd/1 does not exist E: Cannot mount /dev/ubd/1, is UML root image accessible as current user? Kernel panic: Attempted to kill init! tracing thread pid = 10072 -> Successful exit from user-mode linux pbuilder-0.215ubuntu7/testsuite/uml/pbuilder-user-mode-linux-execute-sarge.log0000664000000000000000000000676212312041170024504 0ustar Invoking: linux mem=128M eth0=tuntap,,,192.168.30.198 con0=fd:0,fd:1 con=pty root=/dev/root rootflags=/ rootfstype=hostfs ubd1=/mnt/buildd/uml-cow//17209.cow,/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testimage devfs=mount init=/tmp/filesqkO9I rw Checking for the skas3 patch in the host...not found Checking for /proc/mm...not found Checking for /dev/anon on the host...Not available (open failed with errno 2) Checking for /dev/anon on the host...Not available (open failed with errno 2) Checking for /dev/anon on the host...Not available (open failed with errno 2) Checking for /dev/anon on the host...Not available (open failed with errno 2) Linux version 2.4.24-1um (root@atoron) (gcc С 3.3.3 20031206 (prerelease) (Debian)) #2 2004ǯ 3 13 02:28:54 JST On node 0 totalpages: 32768 zone(0): 32768 pages. zone(1): 0 pages. zone(2): 0 pages. Kernel command line: mem=128M eth0=tuntap,,,192.168.30.198 con0=fd:0,fd:1 con=pty root=/dev/root rootflags=/ rootfstype=hostfs ubd1=/mnt/buildd/uml-cow//17209.cow,/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testimage devfs=mount init=/tmp/filesqkO9I rw Calibrating delay loop... 1667.89 BogoMIPS Memory: 124888k available Dentry cache hash table entries: 16384 (order: 5, 131072 bytes) Inode cache hash table entries: 8192 (order: 4, 65536 bytes) Mount cache hash table entries: 512 (order: 0, 4096 bytes) Buffer cache hash table entries: 4096 (order: 2, 16384 bytes) Page-cache hash table entries: 32768 (order: 5, 131072 bytes) Checking for host processor cmov support...Yes Checking for host processor xmm support...No Checking that ptrace can change system call numbers...OK Checking that host ptys support output SIGIO...Yes Checking that host ptys support SIGIO on close...No, enabling workaround POSIX conformance testing by UNIFIX Linux NET4.0 for Linux 2.4 Based upon Swansea University Computer Society NET3.039 Initializing RT netlink socket Starting kswapd VFS: Disk quotas vdquot_6.5.1 Journalled Block Device driver loaded devfs: v1.12c (20020818) Richard Gooch (rgooch@atnf.csiro.au) devfs: boot_options: 0x1 pty: 256 Unix98 ptys configured RAMDISK driver initialized: 16 RAM disks of 4096K size 1024 blocksize loop: loaded (max 8 devices) Initializing Cryptographic API Initializing software serial port version 1 mconsole (version 2) initialized on /home/dancer/.uml/Lve9qO/mconsole unable to open root_fs for validation Creating "/mnt/buildd/uml-cow//17209.cow" as COW file for "/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testimage" Partition check: ubdb: unknown partition table Initializing stdio console driver Netdevice 0 : TUN/TAP backend - IP = 192.168.30.198 NET4: Linux TCP/IP 1.0 for NET4.0 IP: routing cache hash table of 512 buckets, 4Kbytes TCP: Hash tables configured (established 8192 bind 16384) Linux IP multicast router 0.06 plus PIM-SM NET4: Unix domain sockets 1.0/SMP for Linux NET4.0. VFS: Mounted root (hostfs filesystem). Mounted devfs on /dev EXT2-fs warning: mounting unchecked fs, running e2fsck is recommended /tmp/filesqkO9I: line 25: /var/cache/pbuilder/pbuilder-mnt/etc/network/interfaces: No such file or directory chroot: cannot run command `/tmp/chrootshell': No such file or directory -> Mount build result dir outside UML [/var/tmp] as [/var/cache/pbuilder/pbuilder-umlresult] -> Running in pbuilder-user-mode-linux mode -> copying local configuration cp: cannot create regular file `/var/cache/pbuilder/pbuilder-mnt/etc/hosts': No such file or directory System halted. tracing thread pid = 17223 -> Exit code 1 pbuilder-0.215ubuntu7/testsuite/uml/pdebuild-user-mode-linux-normal-sarge.log0000664000000000000000000001236112312041170024304 0ustar dpkg-buildpackage: source package is dsh dpkg-buildpackage: source version is 0.25.3-1 dpkg-buildpackage: source maintainer is Junichi Uekawa 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/testbuild2/dsh-0.25.3' make[1]: *** No rule to make target `clean'. Stop. make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.3' make: [clean] Error 2 (ignored) /usr/bin/make distclean make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.3' make[1]: *** No rule to make target `distclean'. Stop. make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.3' make: [clean] Error 2 (ignored) dh_clean dpkg-source -b dsh-0.25.3 dpkg-source: building dsh using existing dsh_0.25.3.orig.tar.gz dpkg-source: building dsh in dsh_0.25.3-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.3-1.dsc dpkg-genchanges -S dpkg-genchanges: including full source code in upload dpkg-buildpackage: source only upload (original source is included) Invoking: linux mem=128M eth0=tuntap,,,192.168.30.198 con0=fd:0,fd:1 con=pty root=/dev/root rootflags=/ rootfstype=hostfs ubd1=/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/16926.cow,/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.3/../../testimage devfs=mount init=/tmp/file3jSvWw rw Checking for the skas3 patch in the host...not found Checking for /proc/mm...not found Checking for /dev/anon on the host...Not available (open failed with errno 2) Checking for /dev/anon on the host...Not available (open failed with errno 2) Checking for /dev/anon on the host...Not available (open failed with errno 2) Checking for /dev/anon on the host...Not available (open failed with errno 2) Linux version 2.4.24-1um (root@atoron) (gcc С 3.3.3 20031206 (prerelease) (Debian)) #2 2004ǯ 3 13 02:28:54 JST On node 0 totalpages: 32768 zone(0): 32768 pages. zone(1): 0 pages. zone(2): 0 pages. Kernel command line: mem=128M eth0=tuntap,,,192.168.30.198 con0=fd:0,fd:1 con=pty root=/dev/root rootflags=/ rootfstype=hostfs ubd1=/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/16926.cow,/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.3/../../testimage devfs=mount init=/tmp/file3jSvWw rw Calibrating delay loop... 1648.23 BogoMIPS Memory: 124888k available Dentry cache hash table entries: 16384 (order: 5, 131072 bytes) Inode cache hash table entries: 8192 (order: 4, 65536 bytes) Mount cache hash table entries: 512 (order: 0, 4096 bytes) Buffer cache hash table entries: 4096 (order: 2, 16384 bytes) Page-cache hash table entries: 32768 (order: 5, 131072 bytes) Checking for host processor cmov support...Yes Checking for host processor xmm support...No Checking that ptrace can change system call numbers...OK Checking that host ptys support output SIGIO...Yes Checking that host ptys support SIGIO on close...No, enabling workaround POSIX conformance testing by UNIFIX Linux NET4.0 for Linux 2.4 Based upon Swansea University Computer Society NET3.039 Initializing RT netlink socket Starting kswapd VFS: Disk quotas vdquot_6.5.1 Journalled Block Device driver loaded devfs: v1.12c (20020818) Richard Gooch (rgooch@atnf.csiro.au) devfs: boot_options: 0x1 pty: 256 Unix98 ptys configured RAMDISK driver initialized: 16 RAM disks of 4096K size 1024 blocksize loop: loaded (max 8 devices) Initializing Cryptographic API Initializing software serial port version 1 mconsole (version 2) initialized on /home/dancer/.uml/rjpDAC/mconsole unable to open root_fs for validation Creating "/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/16926.cow" as COW file for "/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.3/../../testimage" Partition check: ubdb: unknown partition table Initializing stdio console driver Netdevice 0 : TUN/TAP backend - IP = 192.168.30.198 NET4: Linux TCP/IP 1.0 for NET4.0 IP: routing cache hash table of 512 buckets, 4Kbytes TCP: Hash tables configured (established 8192 bind 16384) Linux IP multicast router 0.06 plus PIM-SM NET4: Unix domain sockets 1.0/SMP for Linux NET4.0. VFS: Mounted root (hostfs filesystem). Mounted devfs on /dev EXT2-fs warning: mounting unchecked fs, running e2fsck is recommended /tmp/file3jSvWw: line 25: /var/cache/pbuilder/pbuilder-mnt/etc/network/interfaces: No such file or directory chroot: cannot run command `/tmp/chrootshell': No such file or directory -> Mount build result dir outside UML [/var/cache/pbuilder/result] as [/var/cache/pbuilder/pbuilder-umlresult] -> Running in pbuilder-user-mode-linux mode I: using fakeroot in build. pbuilder-buildpackage/i386 $Id$ $Id$ Current time: Sat Jul 24 11:04:43 JST 2004 pbuilder-time-stamp: 1090634683 -> copying local configuration cp: cannot create regular file `/var/cache/pbuilder/pbuilder-mnt/etc/hosts': No such file or directory System halted. tracing thread pid = 16941 -> Exit code 1 pbuilder-0.215ubuntu7/testsuite/uml/pdebuild-user-mode-linux-internal-sarge.log0000664000000000000000000000730712312041170024634 0ustar Invoking: linux mem=128M eth0=tuntap,,,192.168.30.198 con0=fd:0,fd:1 con=pty root=/dev/root rootflags=/ rootfstype=hostfs ubd1=/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/17087.cow,/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.3/../../testimage devfs=mount init=/tmp/fileIkvLXI rw Checking for the skas3 patch in the host...not found Checking for /proc/mm...not found Checking for /dev/anon on the host...Not available (open failed with errno 2) Checking for /dev/anon on the host...Not available (open failed with errno 2) Checking for /dev/anon on the host...Not available (open failed with errno 2) Checking for /dev/anon on the host...Not available (open failed with errno 2) Linux version 2.4.24-1um (root@atoron) (gcc С 3.3.3 20031206 (prerelease) (Debian)) #2 2004ǯ 3 13 02:28:54 JST On node 0 totalpages: 32768 zone(0): 32768 pages. zone(1): 0 pages. zone(2): 0 pages. Kernel command line: mem=128M eth0=tuntap,,,192.168.30.198 con0=fd:0,fd:1 con=pty root=/dev/root rootflags=/ rootfstype=hostfs ubd1=/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/17087.cow,/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.3/../../testimage devfs=mount init=/tmp/fileIkvLXI rw Calibrating delay loop... 1667.89 BogoMIPS Memory: 124888k available Dentry cache hash table entries: 16384 (order: 5, 131072 bytes) Inode cache hash table entries: 8192 (order: 4, 65536 bytes) Mount cache hash table entries: 512 (order: 0, 4096 bytes) Buffer cache hash table entries: 4096 (order: 2, 16384 bytes) Page-cache hash table entries: 32768 (order: 5, 131072 bytes) Checking for host processor cmov support...Yes Checking for host processor xmm support...No Checking that ptrace can change system call numbers...OK Checking that host ptys support output SIGIO...Yes Checking that host ptys support SIGIO on close...No, enabling workaround POSIX conformance testing by UNIFIX Linux NET4.0 for Linux 2.4 Based upon Swansea University Computer Society NET3.039 Initializing RT netlink socket Starting kswapd VFS: Disk quotas vdquot_6.5.1 Journalled Block Device driver loaded devfs: v1.12c (20020818) Richard Gooch (rgooch@atnf.csiro.au) devfs: boot_options: 0x1 pty: 256 Unix98 ptys configured RAMDISK driver initialized: 16 RAM disks of 4096K size 1024 blocksize loop: loaded (max 8 devices) Initializing Cryptographic API Initializing software serial port version 1 mconsole (version 2) initialized on /home/dancer/.uml/isdSQa/mconsole unable to open root_fs for validation Creating "/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/17087.cow" as COW file for "/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.3/../../testimage" Partition check: ubdb: unknown partition table Initializing stdio console driver Netdevice 0 : TUN/TAP backend - IP = 192.168.30.198 NET4: Linux TCP/IP 1.0 for NET4.0 IP: routing cache hash table of 512 buckets, 4Kbytes TCP: Hash tables configured (established 8192 bind 16384) Linux IP multicast router 0.06 plus PIM-SM NET4: Unix domain sockets 1.0/SMP for Linux NET4.0. VFS: Mounted root (hostfs filesystem). Mounted devfs on /dev EXT2-fs warning: mounting unchecked fs, running e2fsck is recommended /tmp/fileIkvLXI: line 25: /var/cache/pbuilder/pbuilder-mnt/etc/network/interfaces: No such file or directory chroot: cannot run command `/tmp/chrootshell': No such file or directory -> Mount build result dir outside UML [/var/tmp] as [/var/cache/pbuilder/pbuilder-umlresult] -> Running in pbuilder-user-mode-linux mode -> copying local configuration cp: cannot create regular file `/var/cache/pbuilder/pbuilder-mnt/etc/hosts': No such file or directory System halted. tracing thread pid = 17101 -> Exit code 1 pbuilder-0.215ubuntu7/testsuite/uml/pbuilder-user-mode-linux-create-sarge.log0000664000000000000000000001513312312041170024275 0ustar Checking for the skas3 patch in the host...not found Checking for /proc/mm...not found Checking for /dev/anon on the host...Not available (open failed with errno 2) Checking for /dev/anon on the host...Not available (open failed with errno 2) Checking for /dev/anon on the host...Not available (open failed with errno 2) Checking for /dev/anon on the host...Not available (open failed with errno 2) Linux version 2.4.24-1um (root@atoron) (gcc С 3.3.3 20031206 (prerelease) (Debian)) #2 2004ǯ 3 13 02:28:54 JST On node 0 totalpages: 8192 zone(0): 8192 pages. zone(1): 0 pages. zone(2): 0 pages. Kernel command line: eth0=tuntap,,,192.168.30.198 con0=fd:0,fd:1 con=pty root=/dev/root rootflags=/ rootfstype=hostfs ubd1=/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testimage init=/usr/lib/rootstrap/builder devfs=mount rsworkdir=/home/dancer/.pbuilder-user-mode-linux Calibrating delay loop... 1664.61 BogoMIPS Memory: 28700k available Dentry cache hash table entries: 4096 (order: 3, 32768 bytes) Inode cache hash table entries: 2048 (order: 2, 16384 bytes) Mount cache hash table entries: 512 (order: 0, 4096 bytes) Buffer cache hash table entries: 1024 (order: 0, 4096 bytes) Page-cache hash table entries: 8192 (order: 3, 32768 bytes) Checking for host processor cmov support...Yes Checking for host processor xmm support...No Checking that ptrace can change system call numbers...OK Checking that host ptys support output SIGIO...Yes Checking that host ptys support SIGIO on close...No, enabling workaround POSIX conformance testing by UNIFIX Linux NET4.0 for Linux 2.4 Based upon Swansea University Computer Society NET3.039 Initializing RT netlink socket Starting kswapd VFS: Disk quotas vdquot_6.5.1 Journalled Block Device driver loaded devfs: v1.12c (20020818) Richard Gooch (rgooch@atnf.csiro.au) devfs: boot_options: 0x1 pty: 256 Unix98 ptys configured RAMDISK driver initialized: 16 RAM disks of 4096K size 1024 blocksize loop: loaded (max 8 devices) Initializing Cryptographic API Initializing software serial port version 1 mconsole (version 2) initialized on /home/dancer/.uml/qDO2A1/mconsole unable to open root_fs for validation Partition check: ubdb: unknown partition table Initializing stdio console driver Netdevice 0 : TUN/TAP backend - IP = 192.168.30.198 NET4: Linux TCP/IP 1.0 for NET4.0 IP: routing cache hash table of 512 buckets, 4Kbytes TCP: Hash tables configured (established 2048 bind 4096) Linux IP multicast router 0.06 plus PIM-SM NET4: Unix domain sockets 1.0/SMP for Linux NET4.0. VFS: Mounted root (hostfs filesystem) readonly. Mounted devfs on /dev builder running... Using rootstrap module network from: /usr/lib/rootstrap/modules/network * modprobe tun FATAL: Module tun not found. * ifconfig tap0 192.168.30.198 netmask 255.255.255.255 up * bash -c echo 1 > /proc/sys/net/ipv4/ip_forward * route add -host 192.168.30.199 dev tap0 * bash -c echo 1 > /proc/sys/net/ipv4/conf/tap0/proxy_arp * arp -Ds 192.168.30.199 eth0 pub Using rootstrap module mkfs from: /usr/lib/rootstrap/modules/mkfs Using rootstrap module mount from: /usr/lib/rootstrap/modules/mount Using rootstrap module debian from: /usr/lib/rootstrap/modules/debian I: Retrieving debootstrap.invalid_dists_sarge_Release I: Validating debootstrap.invalid_dists_sarge_Release I: Retrieving debootstrap.invalid_dists_sarge_main_binary-i386_Packages I: Validating debootstrap.invalid_dists_sarge_main_binary-i386_Packages I: Checking adduser... I: Checking apt... I: Checking apt-utils... I: Checking aptitude... I: Checking at... I: Checking base-config... I: Checking base-files... I: Checking base-passwd... I: Checking bash... I: Checking bsdmainutils... I: Checking bsdutils... I: Checking console-common... I: Checking console-data... I: Checking console-tools... I: Checking coreutils... I: Checking cpio... I: Checking cron... I: Checking debconf... I: Checking debconf-i18n... I: Checking debianutils... I: Checking diff... I: Checking dpkg... I: Checking dselect... I: Checking e2fslibs... I: Checking e2fsprogs... I: Checking ed... I: Checking exim4... I: Checking exim4-base... I: Checking exim4-config... I: Checking exim4-daemon-light... I: Checking fdutils... I: Checking findutils... I: Checking gcc-3.3-base... I: Checking gettext-base... I: Checking grep... I: Checking groff-base... I: Checking gzip... I: Checking hostname... I: Checking ifupdown... I: Checking info... I: Checking initscripts... I: Checking ipchains... I: Checking iptables... I: Checking iputils-ping... I: Checking klogd... I: Checking libacl1... I: Checking libattr1... I: Checking libblkid1... I: Checking libc6... I: Checking libcap1... I: Checking libcomerr2... I: Checking libconsole... I: Checking libdb1-compat... I: Checking libdb3... I: Checking libdb4.2... I: Checking libgcc1... I: Checking libgcrypt7... I: Checking libgdbm3... I: Checking libgnutls10... I: Checking libgpg-error0... I: Checking liblocale-gettext-perl... I: Checking liblockfile1... I: Checking liblzo1... I: Checking libncurses5... I: Checking libnewt0.51... I: Checking libopencdk8... I: Checking libpam-modules... I: Checking libpam-runtime... I: Checking libpam0g... I: Checking libpcap0.7... I: Checking libpcre3... I: Checking libpopt0... I: Checking libsigc++-1.2-5c102... I: Checking libss2... I: Checking libssl0.9.7... I: Checking libstdc++5... I: Checking libtasn1-2... I: Checking libtext-charwidth-perl... I: Checking libtext-iconv-perl... I: Checking libtext-wrapi18n-perl... I: Checking libtextwrap1... I: Checking libuuid1... I: Checking libwrap0... I: Checking login... I: Checking logrotate... I: Checking mailx... I: Checking makedev... I: Checking man-db... I: Checking manpages... I: Checking mawk... I: Checking modutils... I: Checking mount... I: Checking nano... I: Checking ncurses-base... I: Checking ncurses-bin... I: Checking net-tools... I: Checking netbase... I: Checking netkit-inetd... I: Checking nvi... I: Checking passwd... I: Checking pciutils... I: Checking perl-base... I: Checking ppp... I: Checking pppconfig... I: Checking pppoe... I: Checking pppoeconf... I: Checking procps... I: Checking psmisc... I: Checking sed... I: Checking slang1a-utf8... I: Checking sysklogd... I: Checking sysv-rc... I: Checking sysvinit... I: Checking tar... I: Checking tasksel... I: Checking tcpd... I: Checking telnet... I: Checking util-linux... I: Checking wget... I: Checking whiptail... I: Checking zlib1g... I: Retrieving adduser I: Validating adduser I: Retrieving apt I: Validating apt I: Retrieving apt-utils tracing thread pid = 10586 UML exited with non-zero status, aborting pbuilder-0.215ubuntu7/testsuite/uml/pdebuild-user-mode-linux-internal-sid.log0000664000000000000000000000663312312041170024313 0ustar Invoking: linux mem=128M eth0=tuntap,,,192.168.30.198 con0=fd:0,fd:1 con=pty root=/dev/root rootflags=/ rootfstype=hostfs ubd1=/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/10470.cow,/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.3/../../testimage devfs=mount init=/tmp/file0LX9WG rw Checking for the skas3 patch in the host...not found Checking for /proc/mm...not found Checking for /dev/anon on the host...Not available (open failed with errno 2) Checking for /dev/anon on the host...Not available (open failed with errno 2) Checking for /dev/anon on the host...Not available (open failed with errno 2) Checking for /dev/anon on the host...Not available (open failed with errno 2) Linux version 2.4.24-1um (root@atoron) (gcc С 3.3.3 20031206 (prerelease) (Debian)) #2 2004ǯ 3 13 02:28:54 JST On node 0 totalpages: 32768 zone(0): 32768 pages. zone(1): 0 pages. zone(2): 0 pages. Kernel command line: mem=128M eth0=tuntap,,,192.168.30.198 con0=fd:0,fd:1 con=pty root=/dev/root rootflags=/ rootfstype=hostfs ubd1=/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/10470.cow,/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.3/../../testimage devfs=mount init=/tmp/file0LX9WG rw Calibrating delay loop... 1667.89 BogoMIPS Memory: 124888k available Dentry cache hash table entries: 16384 (order: 5, 131072 bytes) Inode cache hash table entries: 8192 (order: 4, 65536 bytes) Mount cache hash table entries: 512 (order: 0, 4096 bytes) Buffer cache hash table entries: 4096 (order: 2, 16384 bytes) Page-cache hash table entries: 32768 (order: 5, 131072 bytes) Checking for host processor cmov support...Yes Checking for host processor xmm support...No Checking that ptrace can change system call numbers...OK Checking that host ptys support output SIGIO...Yes Checking that host ptys support SIGIO on close...No, enabling workaround POSIX conformance testing by UNIFIX Linux NET4.0 for Linux 2.4 Based upon Swansea University Computer Society NET3.039 Initializing RT netlink socket Starting kswapd VFS: Disk quotas vdquot_6.5.1 Journalled Block Device driver loaded devfs: v1.12c (20020818) Richard Gooch (rgooch@atnf.csiro.au) devfs: boot_options: 0x1 pty: 256 Unix98 ptys configured RAMDISK driver initialized: 16 RAM disks of 4096K size 1024 blocksize loop: loaded (max 8 devices) Initializing Cryptographic API Initializing software serial port version 1 mconsole (version 2) initialized on /home/dancer/.uml/0dSey0/mconsole unable to open root_fs for validation Couldn't stat "/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testimage" : err = 2 Backing file '/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testimage' mtime request failed, err = 2 unable to open /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/10470.cow for validation Initializing stdio console driver Netdevice 0 : TUN/TAP backend - IP = 192.168.30.198 NET4: Linux TCP/IP 1.0 for NET4.0 IP: routing cache hash table of 512 buckets, 4Kbytes TCP: Hash tables configured (established 8192 bind 16384) Linux IP multicast router 0.06 plus PIM-SM NET4: Unix domain sockets 1.0/SMP for Linux NET4.0. VFS: Mounted root (hostfs filesystem). Mounted devfs on /dev mount: special device /dev/ubd/1 does not exist E: Cannot mount /dev/ubd/1, is UML root image accessible as current user? Kernel panic: Attempted to kill init! tracing thread pid = 10484 -> Successful exit from user-mode linux pbuilder-0.215ubuntu7/testsuite/uml/pbuilder-user-mode-linux-execute-sid.log0000664000000000000000000000634212312041170024154 0ustar Invoking: linux mem=128M eth0=tuntap,,,192.168.30.198 con0=fd:0,fd:1 con=pty root=/dev/root rootflags=/ rootfstype=hostfs ubd1=/mnt/buildd/uml-cow//10522.cow,/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testimage devfs=mount init=/tmp/fileBWBnNb rw Checking for the skas3 patch in the host...not found Checking for /proc/mm...not found Checking for /dev/anon on the host...Not available (open failed with errno 2) Checking for /dev/anon on the host...Not available (open failed with errno 2) Checking for /dev/anon on the host...Not available (open failed with errno 2) Checking for /dev/anon on the host...Not available (open failed with errno 2) Linux version 2.4.24-1um (root@atoron) (gcc С 3.3.3 20031206 (prerelease) (Debian)) #2 2004ǯ 3 13 02:28:54 JST On node 0 totalpages: 32768 zone(0): 32768 pages. zone(1): 0 pages. zone(2): 0 pages. Kernel command line: mem=128M eth0=tuntap,,,192.168.30.198 con0=fd:0,fd:1 con=pty root=/dev/root rootflags=/ rootfstype=hostfs ubd1=/mnt/buildd/uml-cow//10522.cow,/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testimage devfs=mount init=/tmp/fileBWBnNb rw Calibrating delay loop... 1667.89 BogoMIPS Memory: 124888k available Dentry cache hash table entries: 16384 (order: 5, 131072 bytes) Inode cache hash table entries: 8192 (order: 4, 65536 bytes) Mount cache hash table entries: 512 (order: 0, 4096 bytes) Buffer cache hash table entries: 4096 (order: 2, 16384 bytes) Page-cache hash table entries: 32768 (order: 5, 131072 bytes) Checking for host processor cmov support...Yes Checking for host processor xmm support...No Checking that ptrace can change system call numbers...OK Checking that host ptys support output SIGIO...Yes Checking that host ptys support SIGIO on close...No, enabling workaround POSIX conformance testing by UNIFIX Linux NET4.0 for Linux 2.4 Based upon Swansea University Computer Society NET3.039 Initializing RT netlink socket Starting kswapd VFS: Disk quotas vdquot_6.5.1 Journalled Block Device driver loaded devfs: v1.12c (20020818) Richard Gooch (rgooch@atnf.csiro.au) devfs: boot_options: 0x1 pty: 256 Unix98 ptys configured RAMDISK driver initialized: 16 RAM disks of 4096K size 1024 blocksize loop: loaded (max 8 devices) Initializing Cryptographic API Initializing software serial port version 1 mconsole (version 2) initialized on /home/dancer/.uml/jxJqUd/mconsole unable to open root_fs for validation Couldn't stat "/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testimage" : err = 2 Backing file '/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testimage' mtime request failed, err = 2 unable to open /mnt/buildd/uml-cow//10522.cow for validation Initializing stdio console driver Netdevice 0 : TUN/TAP backend - IP = 192.168.30.198 NET4: Linux TCP/IP 1.0 for NET4.0 IP: routing cache hash table of 512 buckets, 4Kbytes TCP: Hash tables configured (established 8192 bind 16384) Linux IP multicast router 0.06 plus PIM-SM NET4: Unix domain sockets 1.0/SMP for Linux NET4.0. VFS: Mounted root (hostfs filesystem). Mounted devfs on /dev mount: special device /dev/ubd/1 does not exist E: Cannot mount /dev/ubd/1, is UML root image accessible as current user? Kernel panic: Attempted to kill init! tracing thread pid = 10536 -> Successful exit from user-mode linux pbuilder-0.215ubuntu7/testsuite/uml/pbuilder-user-mode-linux-build-dsh-sarge.log0000664000000000000000000000740312312041170024706 0ustar Invoking: linux mem=128M eth0=tuntap,,,192.168.30.198 con0=fd:0,fd:1 con=pty root=/dev/root rootflags=/ rootfstype=hostfs ubd1=/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild/16554.cow,/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testimage devfs=mount init=/tmp/fileGFgJFZ rw Checking for the skas3 patch in the host...not found Checking for /proc/mm...not found Checking for /dev/anon on the host...Not available (open failed with errno 2) Checking for /dev/anon on the host...Not available (open failed with errno 2) Checking for /dev/anon on the host...Not available (open failed with errno 2) Checking for /dev/anon on the host...Not available (open failed with errno 2) Linux version 2.4.24-1um (root@atoron) (gcc С 3.3.3 20031206 (prerelease) (Debian)) #2 2004ǯ 3 13 02:28:54 JST On node 0 totalpages: 32768 zone(0): 32768 pages. zone(1): 0 pages. zone(2): 0 pages. Kernel command line: mem=128M eth0=tuntap,,,192.168.30.198 con0=fd:0,fd:1 con=pty root=/dev/root rootflags=/ rootfstype=hostfs ubd1=/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild/16554.cow,/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testimage devfs=mount init=/tmp/fileGFgJFZ rw Calibrating delay loop... 1667.89 BogoMIPS Memory: 124888k available Dentry cache hash table entries: 16384 (order: 5, 131072 bytes) Inode cache hash table entries: 8192 (order: 4, 65536 bytes) Mount cache hash table entries: 512 (order: 0, 4096 bytes) Buffer cache hash table entries: 4096 (order: 2, 16384 bytes) Page-cache hash table entries: 32768 (order: 5, 131072 bytes) Checking for host processor cmov support...Yes Checking for host processor xmm support...No Checking that ptrace can change system call numbers...OK Checking that host ptys support output SIGIO...Yes Checking that host ptys support SIGIO on close...No, enabling workaround POSIX conformance testing by UNIFIX Linux NET4.0 for Linux 2.4 Based upon Swansea University Computer Society NET3.039 Initializing RT netlink socket Starting kswapd VFS: Disk quotas vdquot_6.5.1 Journalled Block Device driver loaded devfs: v1.12c (20020818) Richard Gooch (rgooch@atnf.csiro.au) devfs: boot_options: 0x1 pty: 256 Unix98 ptys configured RAMDISK driver initialized: 16 RAM disks of 4096K size 1024 blocksize loop: loaded (max 8 devices) Initializing Cryptographic API Initializing software serial port version 1 mconsole (version 2) initialized on /home/dancer/.uml/bO8imN/mconsole unable to open root_fs for validation Creating "/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild/16554.cow" as COW file for "/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testimage" Partition check: ubdb: unknown partition table Initializing stdio console driver Netdevice 0 : TUN/TAP backend - IP = 192.168.30.198 NET4: Linux TCP/IP 1.0 for NET4.0 IP: routing cache hash table of 512 buckets, 4Kbytes TCP: Hash tables configured (established 8192 bind 16384) Linux IP multicast router 0.06 plus PIM-SM NET4: Unix domain sockets 1.0/SMP for Linux NET4.0. VFS: Mounted root (hostfs filesystem). Mounted devfs on /dev EXT2-fs warning: mounting unchecked fs, running e2fsck is recommended /tmp/fileGFgJFZ: line 25: /var/cache/pbuilder/pbuilder-mnt/etc/network/interfaces: No such file or directory chroot: cannot run command `/tmp/chrootshell': No such file or directory -> Mount build result dir outside UML [/var/tmp] as [/var/cache/pbuilder/pbuilder-umlresult] -> Running in pbuilder-user-mode-linux mode I: using fakeroot in build. pbuilder-buildpackage/i386 $Id$ $Id$ Current time: Sat Jul 24 11:04:37 JST 2004 pbuilder-time-stamp: 1090634677 -> copying local configuration cp: cannot create regular file `/var/cache/pbuilder/pbuilder-mnt/etc/hosts': No such file or directory System halted. tracing thread pid = 16569 -> Exit code 1 pbuilder-0.215ubuntu7/testsuite/uml/pdebuild-user-mode-linux-normal-sid.log0000664000000000000000000001144012312041170023757 0ustar dpkg-buildpackage: source package is dsh dpkg-buildpackage: source version is 0.25.3-1 dpkg-buildpackage: source maintainer is Junichi Uekawa 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/testbuild2/dsh-0.25.3' make[1]: *** No rule to make target `clean'. Stop. make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.3' make: [clean] Error 2 (ignored) /usr/bin/make distclean make[1]: Entering directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.3' make[1]: *** No rule to make target `distclean'. Stop. make[1]: Leaving directory `/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.3' make: [clean] Error 2 (ignored) dh_clean dpkg-source -b dsh-0.25.3 dpkg-source: building dsh using existing dsh_0.25.3.orig.tar.gz dpkg-source: building dsh in dsh_0.25.3-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.3-1.dsc dpkg-genchanges -S dpkg-genchanges: including full source code in upload dpkg-buildpackage: source only upload (original source is included) Invoking: linux mem=128M eth0=tuntap,,,192.168.30.198 con0=fd:0,fd:1 con=pty root=/dev/root rootflags=/ rootfstype=hostfs ubd1=/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/10399.cow,/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.3/../../testimage devfs=mount init=/tmp/fileJyTGO2 rw Checking for the skas3 patch in the host...not found Checking for /proc/mm...not found Checking for /dev/anon on the host...Not available (open failed with errno 2) Checking for /dev/anon on the host...Not available (open failed with errno 2) Checking for /dev/anon on the host...Not available (open failed with errno 2) Checking for /dev/anon on the host...Not available (open failed with errno 2) Linux version 2.4.24-1um (root@atoron) (gcc С 3.3.3 20031206 (prerelease) (Debian)) #2 2004ǯ 3 13 02:28:54 JST On node 0 totalpages: 32768 zone(0): 32768 pages. zone(1): 0 pages. zone(2): 0 pages. Kernel command line: mem=128M eth0=tuntap,,,192.168.30.198 con0=fd:0,fd:1 con=pty root=/dev/root rootflags=/ rootfstype=hostfs ubd1=/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/10399.cow,/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/dsh-0.25.3/../../testimage devfs=mount init=/tmp/fileJyTGO2 rw Calibrating delay loop... 1667.89 BogoMIPS Memory: 124888k available Dentry cache hash table entries: 16384 (order: 5, 131072 bytes) Inode cache hash table entries: 8192 (order: 4, 65536 bytes) Mount cache hash table entries: 512 (order: 0, 4096 bytes) Buffer cache hash table entries: 4096 (order: 2, 16384 bytes) Page-cache hash table entries: 32768 (order: 5, 131072 bytes) Checking for host processor cmov support...Yes Checking for host processor xmm support...No Checking that ptrace can change system call numbers...OK Checking that host ptys support output SIGIO...Yes Checking that host ptys support SIGIO on close...No, enabling workaround POSIX conformance testing by UNIFIX Linux NET4.0 for Linux 2.4 Based upon Swansea University Computer Society NET3.039 Initializing RT netlink socket Starting kswapd VFS: Disk quotas vdquot_6.5.1 Journalled Block Device driver loaded devfs: v1.12c (20020818) Richard Gooch (rgooch@atnf.csiro.au) devfs: boot_options: 0x1 pty: 256 Unix98 ptys configured RAMDISK driver initialized: 16 RAM disks of 4096K size 1024 blocksize loop: loaded (max 8 devices) Initializing Cryptographic API Initializing software serial port version 1 mconsole (version 2) initialized on /home/dancer/.uml/3CLHTT/mconsole unable to open root_fs for validation Couldn't stat "/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testimage" : err = 2 Backing file '/home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testimage' mtime request failed, err = 2 unable to open /home/dancer/cvscheckout/pbuilder/pbuilder/testsuite/testbuild2/10399.cow for validation Initializing stdio console driver Netdevice 0 : TUN/TAP backend - IP = 192.168.30.198 NET4: Linux TCP/IP 1.0 for NET4.0 IP: routing cache hash table of 512 buckets, 4Kbytes TCP: Hash tables configured (established 8192 bind 16384) Linux IP multicast router 0.06 plus PIM-SM NET4: Unix domain sockets 1.0/SMP for Linux NET4.0. VFS: Mounted root (hostfs filesystem). Mounted devfs on /dev mount: special device /dev/ubd/1 does not exist E: Cannot mount /dev/ubd/1, is UML root image accessible as current user? Kernel panic: Attempted to kill init! tracing thread pid = 10414 -> Successful exit from user-mode linux pbuilder-0.215ubuntu7/testsuite/run-test-cdebootstrap.log0000664000000000000000000000101112312041170020535 0ustar [OK] create-sid-cdebootstrap [FAIL] build-sid-dsh [OK] pdebuild-sid-dsh [FAIL] pdebuild-internal-sid-dsh [OK] create-lenny-cdebootstrap [FAIL] build-lenny-dsh [OK] pdebuild-lenny-dsh [FAIL] pdebuild-internal-lenny-dsh [OK] update-lenny-squeeze [OK] update-lenny-squeeze-sid [OK] update-lenny-squeeze-sid-experimental [OK] create-squeeze-cdebootstrap [FAIL] build-squeeze-dsh [OK] pdebuild-squeeze-dsh [FAIL] pdebuild-internal-squeeze-dsh [OK] update-squeeze-sid [OK] update-squeeze-sid-experimental pbuilder-0.215ubuntu7/testsuite/cdebootstrap/0000775000000000000000000000000012312041256016267 5ustar pbuilder-0.215ubuntu7/testsuite/cdebootstrap/pbuilder-build-dsh-lenny.log0000664000000000000000000006761612312041170023607 0ustar I: using fakeroot in build. I: Current time: Sun Nov 29 19:21:50 JST 2009 I: pbuilder-time-stamp: 1259490110 I: Building the build Environment I: extracting base tarball [/TESTDIR/testimage] I: creating local configuration I: copying local configuration I: mounting /proc filesystem I: mounting /dev/pts filesystem I: policy-rc.d already exists I: Installing the build-deps -> Attempting to satisfy build-dependencies -> Creating pbuilder-satisfydepends-dummy package Package: pbuilder-satisfydepends-dummy Version: 0.invalid.0 Architecture: amd64 Maintainer: Debian Pbuilder Team Description: Dummy package to satisfy dependencies with aptitude - created by pbuilder This package was created automatically by pbuilder and should Depends: debhelper (>> 3.0.0), libdshconfig1-dev (>= 0.20.11-1), po4a dpkg-deb: building package `pbuilder-satisfydepends-dummy' in `/tmp/satisfydepends-aptitude/pbuilder-satisfydepends-dummy.deb'. Reading package lists... Building dependency tree... Reading state information... aptitude is already the newest version. 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. Selecting previously deselected package pbuilder-satisfydepends-dummy. (Reading database ... 9634 files and directories currently installed.) Unpacking pbuilder-satisfydepends-dummy (from .../pbuilder-satisfydepends-dummy.deb) ... dpkg: dependency problems prevent configuration of pbuilder-satisfydepends-dummy: pbuilder-satisfydepends-dummy depends on debhelper (>> 3.0.0); however: Package debhelper is not installed. pbuilder-satisfydepends-dummy depends on libdshconfig1-dev (>= 0.20.11-1); however: Package libdshconfig1-dev is not installed. pbuilder-satisfydepends-dummy depends on po4a; however: Package po4a is not installed. dpkg: error processing pbuilder-satisfydepends-dummy (--install): dependency problems - leaving unconfigured Errors were encountered while processing: pbuilder-satisfydepends-dummy Reading package lists... Building dependency tree... Reading state information... Initializing package states... Writing extended state information... The following NEW packages will be installed: bsdmainutils{a} debhelper{a} file{a} gettext{a} gettext-base{a} groff-base{a} html2text{a} intltool-debian{a} libdshconfig1{a} libdshconfig1-dev{a} libmagic1{a} libsgmls-perl{a} libsp1c2{a} man-db{a} po-debconf{a} po4a{a} sp{a} The following partially installed packages will be configured: pbuilder-satisfydepends-dummy 0 packages upgraded, 17 newly installed, 0 to remove and 0 not upgraded. Need to get 8922kB of archives. After unpacking 28.1MB will be used. Writing extended state information... Get:1 http://localhost lenny/main libmagic1 4.26-1 [369kB] Get:2 http://localhost lenny/main file 4.26-1 [44.5kB] Get:3 http://localhost lenny/main html2text 1.3.2a-5 [95.9kB] Get:4 http://localhost lenny/main gettext-base 0.17-4 [136kB] Get:5 http://localhost lenny/main gettext 0.17-4 [2791kB] Get:6 http://localhost lenny/main intltool-debian 0.35.0+20060710.1 [30.8kB] Get:7 http://localhost lenny/main po-debconf 1.0.15 [237kB] Get:8 http://localhost lenny/main groff-base 1.18.1.1-21 [898kB] Get:9 http://localhost lenny/main bsdmainutils 6.1.10 [179kB] Get:10 http://localhost lenny/main man-db 2.5.2-4 [1107kB] Get:11 http://localhost lenny/main debhelper 7.0.15 [554kB] Get:12 http://localhost lenny/main libdshconfig1 0.20.13-1 [11.0kB] Get:13 http://localhost lenny/main libdshconfig1-dev 0.20.13-1 [25.4kB] Get:14 http://localhost lenny/main libsgmls-perl 1.03ii-32 [27.8kB] Get:15 http://localhost lenny/main libsp1c2 1.3.4-1.2.1-47 [1386kB] Get:16 http://localhost lenny/main sp 1.3.4-1.2.1-47 [182kB] Get:17 http://localhost lenny/main po4a 0.34-2 [847kB] debconf: delaying package configuration, since apt-utils is not installed Fetched XXXB in Xs (XXXXXB/s) Selecting previously deselected package libmagic1. (Reading database ... 9634 files and directories currently installed.) Unpacking libmagic1 (from .../libmagic1_4.26-1_amd64.deb) ... Selecting previously deselected package file. Unpacking file (from .../archives/file_4.26-1_amd64.deb) ... Selecting previously deselected package html2text. Unpacking html2text (from .../html2text_1.3.2a-5_amd64.deb) ... Selecting previously deselected package gettext-base. Unpacking gettext-base (from .../gettext-base_0.17-4_amd64.deb) ... Selecting previously deselected package gettext. Unpacking gettext (from .../gettext_0.17-4_amd64.deb) ... Selecting previously deselected package intltool-debian. Unpacking intltool-debian (from .../intltool-debian_0.35.0+20060710.1_all.deb) ... Selecting previously deselected package po-debconf. Unpacking po-debconf (from .../po-debconf_1.0.15_all.deb) ... Selecting previously deselected package groff-base. Unpacking groff-base (from .../groff-base_1.18.1.1-21_amd64.deb) ... Selecting previously deselected package bsdmainutils. Unpacking bsdmainutils (from .../bsdmainutils_6.1.10_amd64.deb) ... Selecting previously deselected package man-db. Unpacking man-db (from .../man-db_2.5.2-4_amd64.deb) ... Selecting previously deselected package debhelper. Unpacking debhelper (from .../debhelper_7.0.15_all.deb) ... Selecting previously deselected package libdshconfig1. Unpacking libdshconfig1 (from .../libdshconfig1_0.20.13-1_amd64.deb) ... Selecting previously deselected package libdshconfig1-dev. Unpacking libdshconfig1-dev (from .../libdshconfig1-dev_0.20.13-1_amd64.deb) ... Selecting previously deselected package libsgmls-perl. Unpacking libsgmls-perl (from .../libsgmls-perl_1.03ii-32_all.deb) ... Selecting previously deselected package libsp1c2. Unpacking libsp1c2 (from .../libsp1c2_1.3.4-1.2.1-47_amd64.deb) ... Selecting previously deselected package sp. Unpacking sp (from .../sp_1.3.4-1.2.1-47_amd64.deb) ... Selecting previously deselected package po4a. Unpacking po4a (from .../archives/po4a_0.34-2_all.deb) ... Setting up libmagic1 (4.26-1) ... Setting up file (4.26-1) ... Setting up html2text (1.3.2a-5) ... Setting up gettext-base (0.17-4) ... Setting up gettext (0.17-4) ... Setting up intltool-debian (0.35.0+20060710.1) ... Setting up po-debconf (1.0.15) ... Setting up groff-base (1.18.1.1-21) ... Setting up bsdmainutils (6.1.10) ... Setting up man-db (2.5.2-4) ... Building database of manual pages ... Setting up debhelper (7.0.15) ... Setting up libdshconfig1 (0.20.13-1) ... Setting up libdshconfig1-dev (0.20.13-1) ... Setting up libsgmls-perl (1.03ii-32) ... Setting up libsp1c2 (1.3.4-1.2.1-47) ... Setting up sp (1.3.4-1.2.1-47) ... Setting up po4a (0.34-2) ... Setting up pbuilder-satisfydepends-dummy (0.invalid.0) ... Reading package lists... Building dependency tree... Reading state information... Reading extended state information... Initializing package states... Writing extended state information... -> Finished parsing the build-deps Reading package lists... Building dependency tree... Reading state information... aptitude is already the newest version. fakeroot is already the newest version. 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. I: Copying source file I: copying [/TESTDIR/dir1/dsh_0.25.10-1.dsc] I: copying [/TESTDIR/dir1/dsh_0.25.10.orig.tar.gz] I: copying [/TESTDIR/dir1/dsh_0.25.10-1.diff.gz] I: Extracting source gpg: new configuration file `/tmp/buildd/.gnupg/gpg.conf' created gpg: WARNING: options in `/tmp/buildd/.gnupg/gpg.conf' are not yet active during this run gpg: Signature made Fri Dec 14 00:23:24 2007 UTC using DSA key ID E81E55C1 gpg: Can't check signature: public key not found dpkg-source: extracting dsh in dsh-0.25.10 dpkg-source: info: unpacking dsh_0.25.10.orig.tar.gz dpkg-source: info: applying dsh_0.25.10-1.diff.gz I: Building the package dpkg-buildpackage: set CFLAGS to default value: -g -O2 dpkg-buildpackage: set CPPFLAGS to default value: dpkg-buildpackage: set LDFLAGS to default value: dpkg-buildpackage: set FFLAGS to default value: -g -O2 dpkg-buildpackage: set CXXFLAGS to default value: -g -O2 dpkg-buildpackage: source package dsh dpkg-buildpackage: source version 0.25.10-1 dpkg-buildpackage: host architecture amd64 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.10' make[1]: *** No rule to make target `clean'. Stop. make[1]: Leaving directory `/tmp/buildd/dsh-0.25.10' make: [clean] Error 2 (ignored) /usr/bin/make distclean make[1]: Entering directory `/tmp/buildd/dsh-0.25.10' make[1]: *** No rule to make target `distclean'. Stop. make[1]: Leaving directory `/tmp/buildd/dsh-0.25.10' make: [clean] Error 2 (ignored) dh_clean dpkg-source -b dsh-0.25.10 dpkg-source: info: using source format `1.0' dpkg-source: info: building dsh using existing dsh_0.25.10.orig.tar.gz dpkg-source: info: building dsh in dsh_0.25.10-1.diff.gz dpkg-source: warning: file dsh-0.25.10/dcp.sh has no final newline (either original or modified version) dpkg-source: warning: file dsh-0.25.10/debian/compat has no final newline (either original or modified version) dpkg-source: info: building dsh in dsh_0.25.10-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 ISO C89... none needed checking dependency style of gcc... gcc3 checking for strerror in -lcposix... no checking for gcc... (cached) gcc checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) 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 ISO C89... (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 grep that handles long lines and -e... /bin/grep checking for egrep... /bin/grep -E checking for ANSI C header files... yes checking for sys/wait.h that is POSIX.1 compatible... yes checking build system type... x86_64-unknown-linux-gnu checking host system type... x86_64-unknown-linux-gnu checking for a sed that does not truncate output... /bin/sed checking for ld used by gcc... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for /usr/bin/ld option to reload object files... -r checking for BSD-compatible nm... /usr/bin/nm -B checking whether ln -s works... yes checking how to recognize dependent libraries... pass_all checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking dlfcn.h usability... yes checking dlfcn.h presence... yes checking for dlfcn.h... yes checking for g++... g++ checking whether we are using the GNU C++ compiler... yes checking whether g++ accepts -g... yes checking dependency style of g++... gcc3 checking how to run the C++ preprocessor... g++ -E checking for g77... no checking for xlf... no checking for f77... no checking for frt... no checking for pgf77... no checking for cf77... no checking for fort77... no checking for fl32... no checking for af77... no checking for xlf90... no checking for f90... no checking for pgf90... no checking for pghpf... no checking for epcf90... no checking for gfortran... no checking for g95... no checking for xlf95... no checking for f95... no checking for fort... no checking for ifort... no checking for ifc... no checking for efc... no checking for pgf95... no checking for lf95... no checking for ftn... no checking whether we are using the GNU Fortran 77 compiler... no checking whether accepts -g... no checking the maximum length of command line arguments... 98304 checking command to parse /usr/bin/nm -B output from gcc object... ok checking for objdir... .libs checking for ar... ar checking for ranlib... ranlib checking for strip... strip checking if gcc supports -fno-rtti -fno-exceptions... no checking for gcc option to produce PIC... -fPIC checking if gcc PIC flag -fPIC works... yes checking if gcc static flag -static works... yes checking if gcc supports -c -o file.o... yes checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) 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 -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking for g++ option to produce PIC... -fPIC checking if g++ PIC flag -fPIC works... yes checking if g++ static flag -static works... yes checking if g++ supports -c -o file.o... yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate appending configuration tag "F77" to libtool checking 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 -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) 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: WARNING: po/Makefile.in.in seems to ignore the --datarootdir setting 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.10' /usr/bin/make all-recursive make[2]: Entering directory `/tmp/buildd/dsh-0.25.10' Making all in m4 make[3]: Entering directory `/tmp/buildd/dsh-0.25.10/m4' make[3]: Nothing to be done for `all'. make[3]: Leaving directory `/tmp/buildd/dsh-0.25.10/m4' Making all in po make[3]: Entering directory `/tmp/buildd/dsh-0.25.10/po' make[3]: Nothing to be done for `all'. make[3]: Leaving directory `/tmp/buildd/dsh-0.25.10/po' make[3]: Entering directory `/tmp/buildd/dsh-0.25.10' 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 --tag=CC --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.10' make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10' make[1]: Leaving directory `/tmp/buildd/dsh-0.25.10' /usr/bin/make check make[1]: Entering directory `/tmp/buildd/dsh-0.25.10' Making check in m4 make[2]: Entering directory `/tmp/buildd/dsh-0.25.10/m4' make[2]: Nothing to be done for `check'. make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10/m4' Making check in po make[2]: Entering directory `/tmp/buildd/dsh-0.25.10/po' make[2]: Nothing to be done for `check'. make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10/po' make[2]: Entering directory `/tmp/buildd/dsh-0.25.10' /usr/bin/make dsh make[3]: Entering directory `/tmp/buildd/dsh-0.25.10' make[3]: `dsh' is up to date. make[3]: Leaving directory `/tmp/buildd/dsh-0.25.10' /usr/bin/make check-TESTS make[3]: Entering directory `/tmp/buildd/dsh-0.25.10' PASS: tests/param-f.sh dsh: File ./tests/nonexistent.file could not be opened for read PASS: tests/param-f-fail.sh PASS: tests/param-f-with-space.sh PASS: tests/param-m.sh test to check that unknown parameter checking is right. ./dsh: unrecognized option `--unknown-parameter' ./dsh: invalid option -- u PASS: tests/param-unknown.sh test1 test2 PASS: tests/param-i.sh Check that cn4 option is working. PASS: tests/param-cn4.sh test to check that -b0 is rejected, and -b1 is accepted Buffer size needs to be greater than 1 Buffer size needs to be greater than 1 a b PASS: tests/param-b-0.sh dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call success dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call success success success success success a: dsh: Failed executing ./invalid-exec-file with llexec call d: dsh: Failed executing ./invalid-exec-file with llexec call c: 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 Sun Nov 29 10:22:36 UTC 2009 2: Using sleep as the remote shell 2: Show machine names on output 2: Adding machine 5,4,3,2,1 to list 2: Setting forklimit to 3 and wait_shell to 0 2: DUMPing parameters passed to llexec 2: [2] Using sleep as the remote shell Show machine names on output Adding machine 5,4,3,2,1 to list Setting forklimit to 3 and wait_shell to 0 DUMPing parameters passed to llexec [2] 3: Using sleep as the remote shell 3: Show machine names on output 3: Adding machine 5,4,3,2,1 to list 3: Setting forklimit to 3 and wait_shell to 0 3: DUMPing parameters passed to llexec 3: [3] Using sleep as the remote shell Show machine names on output Adding machine 5,4,3,2,1 to list Setting forklimit to 3 and wait_shell to 0 DUMPing parameters passed to llexec [3] 1: Using sleep as the remote shell 1: Show machine names on output 1: Adding machine 5,4,3,2,1 to list 1: Setting forklimit to 3 and wait_shell to 0 1: ... Waiting for process to end with waitpid 1: DUMPing parameters passed to llexec 1: [1] Using sleep as the remote shell Show machine names on output Adding machine 5,4,3,2,1 to list Setting forklimit to 3 and wait_shell to 0 ... Waiting for process to end with waitpid DUMPing parameters passed to llexec [1] 4: Using sleep as the remote shell 4: Show machine names on output 4: Adding machine 5,4,3,2,1 to list 4: Setting forklimit to 3 and wait_shell to 0 4: DUMPing parameters passed to llexec 4: [4] Using sleep as the remote shell Show machine names on output Adding machine 5,4,3,2,1 to list Setting forklimit to 3 and wait_shell to 0 DUMPing parameters passed to llexec [4] 5: Using sleep as the remote shell 5: Show machine names on output 5: Adding machine 5,4,3,2,1 to list 5: Setting forklimit to 3 and wait_shell to 0 5: DUMPing parameters passed to llexec 5: [5] Using sleep as the remote shell Show machine names on output Adding machine 5,4,3,2,1 to list Setting forklimit to 3 and wait_shell to 0 DUMPing parameters passed to llexec [5] --- Terminated running Using sleep as the remote shell Show machine names on output Adding machine 5,4,3,2,1 to list Setting forklimit to 3 and wait_shell to 0 ... Waiting for process to end with waitpid ... Waiting for process to end with waitpid Sun Nov 29 10:22:41 UTC 2009 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 `/tmp/buildd/dsh-0.25.10' make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10' make[1]: Leaving directory `/tmp/buildd/dsh-0.25.10' 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.10/debian/dsh make[1]: Entering directory `/tmp/buildd/dsh-0.25.10' Making install in m4 make[2]: Entering directory `/tmp/buildd/dsh-0.25.10/m4' make[3]: Entering directory `/tmp/buildd/dsh-0.25.10/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.10/m4' make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10/m4' Making install in po make[2]: Entering directory `/tmp/buildd/dsh-0.25.10/po' /bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share mkdir -p -- /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share mkdir -p -- /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/locale/ja/LC_MESSAGES installing ja.gmo as /tmp/buildd/dsh-0.25.10/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.10/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.10/debian/dsh/usr/share/gettext/po/$file; \ done; \ else \ : ; \ fi make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10/po' make[2]: Entering directory `/tmp/buildd/dsh-0.25.10' make[3]: Entering directory `/tmp/buildd/dsh-0.25.10' test -z "/usr/bin" || mkdir -p -- "/tmp/buildd/dsh-0.25.10/debian/dsh/usr/bin" /bin/sh ./libtool --mode=install install -p -o root -g root -m 755 -s 'dsh' '/tmp/buildd/dsh-0.25.10/debian/dsh/usr/bin/dsh' install -p -o root -g root -m 755 -s dsh /tmp/buildd/dsh-0.25.10/debian/dsh/usr/bin/dsh test -z "/etc/dsh" || mkdir -p -- "/tmp/buildd/dsh-0.25.10/debian/dsh/etc/dsh" /usr/bin/install -c -m 644 'dsh.conf' '/tmp/buildd/dsh-0.25.10/debian/dsh/etc/dsh/dsh.conf' for LANGS in ja ; do \ mkdir -p /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/$LANGS/man1 ;\ mkdir -p /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/$LANGS/man5 ;\ sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.$LANGS.1 \ > /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/$LANGS/man1/dsh.1 ; \ sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.conf.$LANGS.5 \ > /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/$LANGS/man5/dsh.conf.5 ; \ done test -z "/usr/share/man/man1" || mkdir -p -- "/tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/man1" /usr/bin/install -c -m 644 './build-man/dsh.1' '/tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/man1/dsh.1' test -z "/usr/share/man/man5" || mkdir -p -- "/tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/man5" /usr/bin/install -c -m 644 './build-man/dsh.conf.5' '/tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/man5/dsh.conf.5' make[3]: Leaving directory `/tmp/buildd/dsh-0.25.10' make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10' make[1]: Leaving directory `/tmp/buildd/dsh-0.25.10' cp /tmp/buildd/dsh-0.25.10/debian/machines.list /tmp/buildd/dsh-0.25.10/debian/dsh/etc/dsh/machines.list cp /tmp/buildd/dsh-0.25.10/dsh.conf /tmp/buildd/dsh-0.25.10/debian/dsh/etc/dsh/dsh.conf ln -s ../machines.list /tmp/buildd/dsh-0.25.10/debian/dsh/etc/dsh/group/all install -d /tmp/buildd/dsh-0.25.10/debian/dsh/usr/lib/update-cluster install -m 755 /tmp/buildd/dsh-0.25.10/debian/dsh.updatelist /tmp/buildd/dsh-0.25.10/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.10-1_amd64.deb'. dpkg-genchanges -eJunichi Uekawa >../dsh_0.25.10-1_amd64.changes dpkg-genchanges: including full source code in upload dpkg-buildpackage: full upload (original source is included) I: unmounting dev/pts filesystem I: unmounting proc filesystem I: cleaning the build env I: removing directory /TESTDIR/dir1/NUM and its subdirectories I: Current time: Sun Nov 29 19:22:48 JST 2009 I: pbuilder-time-stamp: 1259490168 pbuilder-0.215ubuntu7/testsuite/cdebootstrap/pbuilder-update-lenny-squeeze-sid-experimental.log0000664000000000000000000000712312312041170030130 0ustar I: Upgrading for distribution sid I: Building the build Environment I: extracting base tarball [/TESTDIR/testimage] I: creating local configuration I: copying local configuration I: Installing apt-lines I: Installing apt-lines and pinning for experimental I: mounting /proc filesystem I: mounting /dev/pts filesystem I: policy-rc.d already exists I: Refreshing the base.tgz I: upgrading packages Hit http://localhost sid Release.gpg Get:1 http://localhost experimental Release.gpg [835B] Hit http://localhost sid Release Get:2 http://localhost experimental Release [98.5kB] Ign http://localhost sid/main Packages/DiffIndex Ign http://localhost experimental/main Packages Ign http://localhost sid/main Packages Ign http://localhost experimental/main Packages Ign http://localhost sid/main Packages Get:3 http://localhost experimental/main Packages [340kB] Hit http://localhost sid/main Packages Fetched XXXB in Xs (XXXXXB/s) Reading package lists... Reading package lists... Building dependency tree... Reading state information... The following packages will be upgraded: diff diffutils libmpfr1ldbl libsigc++-2.0-0c2a 4 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. Need to get 717kB of archives. After this operation, 324kB of additional disk space will be used. Get:1 http://localhost experimental/main diffutils 1:2.8.7-0.1 [248kB] Get:2 http://localhost experimental/main libsigc++-2.0-0c2a 2.2.2-1 [35.3kB] Get:3 http://localhost experimental/main libmpfr1ldbl 2.4.2~rc2-1 [428kB] Get:4 http://localhost experimental/main diff 1:2.8.7-0.1 [5658B] debconf: delaying package configuration, since apt-utils is not installed Fetched XXXB in Xs (XXXXXB/s) (Reading database ... 10167 files and directories currently installed.) Preparing to replace diffutils 1:2.8.1-18 (using .../diffutils_1%3a2.8.7-0.1_amd64.deb) ... Unpacking replacement diffutils ... Setting up diffutils (1:2.8.7-0.1) ... (Reading database ... 10175 files and directories currently installed.) Preparing to replace libsigc++-2.0-0c2a 2.0.18-2 (using .../libsigc++-2.0-0c2a_2.2.2-1_amd64.deb) ... Unpacking replacement libsigc++-2.0-0c2a ... Preparing to replace libmpfr1ldbl 2.4.1-2 (using .../libmpfr1ldbl_2.4.2~rc2-1_amd64.deb) ... Unpacking replacement libmpfr1ldbl ... Preparing to replace diff 1:2.8.1-18 (using .../diff_1%3a2.8.7-0.1_all.deb) ... Unpacking replacement diff ... Setting up libsigc++-2.0-0c2a (2.2.2-1) ... Setting up libmpfr1ldbl (2.4.2~rc2-1) ... Setting up diff (1:2.8.7-0.1) ... Reading package lists... Building dependency tree... Reading state information... 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. Reading package lists... Building dependency tree... Reading state information... build-essential is already the newest version. dpkg-dev is already the newest version. apt is already the newest version. aptitude is already the newest version. 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. I: user script /var/cache/pbuilder/build//NUM/tmp/hooks/E50-initscripts-2.86.ds1-7.workaround.sh starting umount: /sys: not mounted umount: /run: not found umount: /proc/bus/usb: not mounted umount: /dev/shm: not mounted umount: /lib/init/rw: not mounted cat: /var/run/inetd.pid: No such file or directory kill: 20: Usage: kill [-s sigspec | -signum | -sigspec] [pid | job]... or kill -l [exitstatus] I: user script /var/cache/pbuilder/build//NUM/tmp/hooks/E50-initscripts-2.86.ds1-7.workaround.sh finished I: unmounting dev/pts filesystem I: unmounting proc filesystem I: creating base tarball [/TESTDIR/testimage] I: cleaning the build env I: removing directory /var/cache/pbuilder/build//NUM and its subdirectories pbuilder-0.215ubuntu7/testsuite/cdebootstrap/pbuilder-execute-sid.log0000664000000000000000000000071212312041170023010 0ustar I: Building the build Environment I: extracting base tarball [/TESTDIR/testimage] I: creating local configuration I: copying local configuration I: mounting /proc filesystem I: mounting /dev/pts filesystem I: policy-rc.d already exists --- parameters given to this script [test1 test2 test3] I: unmounting dev/pts filesystem I: unmounting proc filesystem I: cleaning the build env I: removing directory /var/cache/pbuilder/build//NUM and its subdirectories pbuilder-0.215ubuntu7/testsuite/cdebootstrap/pbuilder-build-dsh-sid.log0000664000000000000000000007600012312041170023224 0ustar I: using fakeroot in build. I: Current time: Sun Nov 29 19:16:59 JST 2009 I: pbuilder-time-stamp: 1259489819 I: Building the build Environment I: extracting base tarball [/TESTDIR/testimage] I: creating local configuration I: copying local configuration I: mounting /proc filesystem I: mounting /dev/pts filesystem I: policy-rc.d already exists I: Installing the build-deps -> Attempting to satisfy build-dependencies -> Creating pbuilder-satisfydepends-dummy package Package: pbuilder-satisfydepends-dummy Version: 0.invalid.0 Architecture: amd64 Maintainer: Debian Pbuilder Team Description: Dummy package to satisfy dependencies with aptitude - created by pbuilder This package was created automatically by pbuilder and should Depends: debhelper (>> 3.0.0), libdshconfig1-dev (>= 0.20.11-1), po4a dpkg-deb: building package `pbuilder-satisfydepends-dummy' in `/tmp/satisfydepends-aptitude/pbuilder-satisfydepends-dummy.deb'. Reading package lists... Building dependency tree... Reading state information... aptitude is already the newest version. 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. Selecting previously deselected package pbuilder-satisfydepends-dummy. (Reading database ... 10112 files and directories currently installed.) Unpacking pbuilder-satisfydepends-dummy (from .../pbuilder-satisfydepends-dummy.deb) ... dpkg: dependency problems prevent configuration of pbuilder-satisfydepends-dummy: pbuilder-satisfydepends-dummy depends on debhelper (>> 3.0.0); however: Package debhelper is not installed. pbuilder-satisfydepends-dummy depends on libdshconfig1-dev (>= 0.20.11-1); however: Package libdshconfig1-dev is not installed. pbuilder-satisfydepends-dummy depends on po4a; however: Package po4a is not installed. dpkg: error processing pbuilder-satisfydepends-dummy (--install): dependency problems - leaving unconfigured Errors were encountered while processing: pbuilder-satisfydepends-dummy Reading package lists... Building dependency tree... Reading state information... Initializing package states... Writing extended state information... The following NEW packages will be installed: bsdmainutils{a} debhelper{a} file{a} gettext{a} gettext-base{a} groff-base{a} html2text{a} intltool-debian{a} libcroco3{a} libdshconfig1{a} libdshconfig1-dev{a} libglib2.0-0{a} libmagic1{a} libpcre3{a} libsgmls-perl{a} libsp1c2{a} libxml2{a} man-db{a} po-debconf{a} po4a{a} sp{a} The following partially installed packages will be configured: pbuilder-satisfydepends-dummy 0 packages upgraded, 21 newly installed, 0 to remove and 0 not upgraded. Need to get 11.6MB of archives. After unpacking 35.1MB will be used. Writing extended state information... Get:1 http://localhost sid/main libmagic1 5.03-3 [389kB] Get:2 http://localhost sid/main file 5.03-3 [46.9kB] Get:3 http://localhost sid/main html2text 1.3.2a-14 [103kB] Get:4 http://localhost sid/main libpcre3 7.8-3 [215kB] Get:5 http://localhost sid/main libglib2.0-0 2.22.2-2 [984kB] Get:6 http://localhost sid/main libxml2 2.7.6.dfsg-1 [876kB] Get:7 http://localhost sid/main libcroco3 0.6.2-1 [125kB] Get:8 http://localhost sid/main gettext-base 0.17-8 [133kB] Get:9 http://localhost sid/main gettext 0.17-8 [2503kB] Get:10 http://localhost sid/main intltool-debian 0.35.0+20060710.1 [30.8kB] Get:11 http://localhost sid/main po-debconf 1.0.16 [224kB] Get:12 http://localhost sid/main groff-base 1.20.1-6 [1156kB] Get:13 http://localhost sid/main bsdmainutils 8.0.2 [198kB] Get:14 http://localhost sid/main man-db 2.5.6-4 [1477kB] Get:15 http://localhost sid/main debhelper 7.4.8 [458kB] Get:16 http://localhost sid/main libdshconfig1 0.20.13-1 [11.0kB] Get:17 http://localhost sid/main libdshconfig1-dev 0.20.13-1 [25.4kB] Get:18 http://localhost sid/main libsgmls-perl 1.03ii-32 [27.8kB] Get:19 http://localhost sid/main libsp1c2 1.3.4-1.2.1-47 [1386kB] Get:20 http://localhost sid/main sp 1.3.4-1.2.1-47 [182kB] Get:21 http://localhost sid/main po4a 0.37.1-1 [1026kB] debconf: delaying package configuration, since apt-utils is not installed Fetched XXXB in Xs (XXXXXB/s) Selecting previously deselected package libmagic1. (Reading database ... 10112 files and directories currently installed.) Unpacking libmagic1 (from .../libmagic1_5.03-3_amd64.deb) ... Selecting previously deselected package file. Unpacking file (from .../archives/file_5.03-3_amd64.deb) ... Selecting previously deselected package html2text. Unpacking html2text (from .../html2text_1.3.2a-14_amd64.deb) ... Selecting previously deselected package libpcre3. Unpacking libpcre3 (from .../libpcre3_7.8-3_amd64.deb) ... Selecting previously deselected package libglib2.0-0. Unpacking libglib2.0-0 (from .../libglib2.0-0_2.22.2-2_amd64.deb) ... Selecting previously deselected package libxml2. Unpacking libxml2 (from .../libxml2_2.7.6.dfsg-1_amd64.deb) ... Selecting previously deselected package libcroco3. Unpacking libcroco3 (from .../libcroco3_0.6.2-1_amd64.deb) ... Selecting previously deselected package gettext-base. Unpacking gettext-base (from .../gettext-base_0.17-8_amd64.deb) ... Selecting previously deselected package gettext. Unpacking gettext (from .../gettext_0.17-8_amd64.deb) ... Selecting previously deselected package intltool-debian. Unpacking intltool-debian (from .../intltool-debian_0.35.0+20060710.1_all.deb) ... Selecting previously deselected package po-debconf. Unpacking po-debconf (from .../po-debconf_1.0.16_all.deb) ... Selecting previously deselected package groff-base. Unpacking groff-base (from .../groff-base_1.20.1-6_amd64.deb) ... Selecting previously deselected package bsdmainutils. Unpacking bsdmainutils (from .../bsdmainutils_8.0.2_amd64.deb) ... Selecting previously deselected package man-db. Unpacking man-db (from .../man-db_2.5.6-4_amd64.deb) ... Selecting previously deselected package debhelper. Unpacking debhelper (from .../debhelper_7.4.8_all.deb) ... Selecting previously deselected package libdshconfig1. Unpacking libdshconfig1 (from .../libdshconfig1_0.20.13-1_amd64.deb) ... Selecting previously deselected package libdshconfig1-dev. Unpacking libdshconfig1-dev (from .../libdshconfig1-dev_0.20.13-1_amd64.deb) ... Selecting previously deselected package libsgmls-perl. Unpacking libsgmls-perl (from .../libsgmls-perl_1.03ii-32_all.deb) ... Selecting previously deselected package libsp1c2. Unpacking libsp1c2 (from .../libsp1c2_1.3.4-1.2.1-47_amd64.deb) ... Selecting previously deselected package sp. Unpacking sp (from .../sp_1.3.4-1.2.1-47_amd64.deb) ... Selecting previously deselected package po4a. Unpacking po4a (from .../archives/po4a_0.37.1-1_all.deb) ... Setting up libmagic1 (5.03-3) ... Setting up file (5.03-3) ... Setting up html2text (1.3.2a-14) ... Setting up libpcre3 (7.8-3) ... Setting up libglib2.0-0 (2.22.2-2) ... Setting up libxml2 (2.7.6.dfsg-1) ... Setting up libcroco3 (0.6.2-1) ... Setting up gettext-base (0.17-8) ... Setting up gettext (0.17-8) ... Setting up intltool-debian (0.35.0+20060710.1) ... Setting up po-debconf (1.0.16) ... Setting up groff-base (1.20.1-6) ... Setting up bsdmainutils (8.0.2) ... update-alternatives: using /usr/bin/bsd-write to provide /usr/bin/write (write) in auto mode. Setting up man-db (2.5.6-4) ... Building database of manual pages ... Setting up debhelper (7.4.8) ... Setting up libdshconfig1 (0.20.13-1) ... Setting up libdshconfig1-dev (0.20.13-1) ... Setting up libsgmls-perl (1.03ii-32) ... Setting up libsp1c2 (1.3.4-1.2.1-47) ... Setting up sp (1.3.4-1.2.1-47) ... Setting up po4a (0.37.1-1) ... Setting up pbuilder-satisfydepends-dummy (0.invalid.0) ... Reading package lists... Building dependency tree... Reading state information... Reading extended state information... Initializing package states... Writing extended state information... -> Finished parsing the build-deps Reading package lists... Building dependency tree... Reading state information... aptitude is already the newest version. fakeroot is already the newest version. 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. I: Copying source file I: copying [/TESTDIR/dir1/dsh_0.25.10-1.dsc] I: copying [/TESTDIR/dir1/dsh_0.25.10.orig.tar.gz] I: copying [/TESTDIR/dir1/dsh_0.25.10-1.diff.gz] I: Extracting source gpgv: keyblock resource `/tmp/buildd/.gnupg/trustedkeys.gpg': file open error gpgv: Signature made Fri Dec 14 00:23:24 2007 UTC using DSA key ID E81E55C1 gpgv: Can't check signature: public key not found dpkg-source: warning: failed to verify signature on ./dsh_0.25.10-1.dsc dpkg-source: info: extracting dsh in dsh-0.25.10 dpkg-source: info: unpacking dsh_0.25.10.orig.tar.gz dpkg-source: info: applying dsh_0.25.10-1.diff.gz dpkg-source: info: upstream files that have been modified: dsh-0.25.10/.cvsignore dsh-0.25.10/CVS/Entries dsh-0.25.10/CVS/Repository dsh-0.25.10/CVS/Root dsh-0.25.10/ChangeLog.OLD dsh-0.25.10/dcp.sh dsh-0.25.10/drshd.c dsh-0.25.10/dsh.1.ja.po dsh-0.25.10/m4/.cvsignore dsh-0.25.10/m4/CVS/Entries dsh-0.25.10/m4/CVS/Repository dsh-0.25.10/m4/CVS/Root dsh-0.25.10/po/.cvsignore dsh-0.25.10/po/CVS/Entries dsh-0.25.10/po/CVS/Repository dsh-0.25.10/po/CVS/Root dsh-0.25.10/po/insert-header.sin dsh-0.25.10/tests/.cvsignore dsh-0.25.10/tests/CVS/Entries dsh-0.25.10/tests/CVS/Repository dsh-0.25.10/tests/CVS/Root I: Building the package dpkg-buildpackage: set CFLAGS to default value: -g -O2 dpkg-buildpackage: set CPPFLAGS to default value: dpkg-buildpackage: set LDFLAGS to default value: dpkg-buildpackage: set FFLAGS to default value: -g -O2 dpkg-buildpackage: set CXXFLAGS to default value: -g -O2 dpkg-buildpackage: source package dsh dpkg-buildpackage: source version 0.25.10-1 dpkg-buildpackage: host architecture amd64 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.10' make[1]: *** No rule to make target `clean'. Stop. make[1]: Leaving directory `/tmp/buildd/dsh-0.25.10' make: [clean] Error 2 (ignored) /usr/bin/make distclean make[1]: Entering directory `/tmp/buildd/dsh-0.25.10' make[1]: *** No rule to make target `distclean'. Stop. make[1]: Leaving directory `/tmp/buildd/dsh-0.25.10' make: [clean] Error 2 (ignored) dh_clean dh_clean: Compatibility levels before 5 are deprecated. dpkg-source -b dsh-0.25.10 dpkg-source: info: using source format `1.0' dpkg-source: info: building dsh using existing dsh_0.25.10.orig.tar.gz dpkg-source: info: building dsh in dsh_0.25.10-1.diff.gz dpkg-source: warning: file dsh-0.25.10/dcp.sh has no final newline (either original or modified version) dpkg-source: warning: file dsh-0.25.10/debian/compat has no final newline (either original or modified version) dpkg-source: warning: the diff modifies the following upstream files: .cvsignore CVS/Entries CVS/Repository CVS/Root ChangeLog.OLD dcp.sh drshd.c dsh.1.ja.po m4/.cvsignore m4/CVS/Entries m4/CVS/Repository m4/CVS/Root po/.cvsignore po/CVS/Entries po/CVS/Repository po/CVS/Root po/insert-header.sin tests/.cvsignore tests/CVS/Entries tests/CVS/Repository tests/CVS/Root dpkg-source: info: use the '3.0 (quilt)' format to have separate and documented changes to upstream files, see dpkg-source(1) dpkg-source: info: building dsh in dsh_0.25.10-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 ISO C89... none needed checking dependency style of gcc... gcc3 checking for strerror in -lcposix... no checking for gcc... (cached) gcc checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) 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 ISO C89... (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 grep that handles long lines and -e... /bin/grep checking for egrep... /bin/grep -E checking for ANSI C header files... yes checking for sys/wait.h that is POSIX.1 compatible... yes checking build system type... x86_64-unknown-linux-gnu checking host system type... x86_64-unknown-linux-gnu checking for a sed that does not truncate output... /bin/sed checking for ld used by gcc... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for /usr/bin/ld option to reload object files... -r checking for BSD-compatible nm... /usr/bin/nm -B checking whether ln -s works... yes checking how to recognize dependent libraries... pass_all checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking dlfcn.h usability... yes checking dlfcn.h presence... yes checking for dlfcn.h... yes checking for g++... g++ checking whether we are using the GNU C++ compiler... yes checking whether g++ accepts -g... yes checking dependency style of g++... gcc3 checking how to run the C++ preprocessor... g++ -E checking for g77... no checking for xlf... no checking for f77... no checking for frt... no checking for pgf77... no checking for cf77... no checking for fort77... no checking for fl32... no checking for af77... no checking for xlf90... no checking for f90... no checking for pgf90... no checking for pghpf... no checking for epcf90... no checking for gfortran... no checking for g95... no checking for xlf95... no checking for f95... no checking for fort... no checking for ifort... no checking for ifc... no checking for efc... no checking for pgf95... no checking for lf95... no checking for ftn... no checking whether we are using the GNU Fortran 77 compiler... no checking whether accepts -g... no checking the maximum length of command line arguments... 3458764513820540925 checking command to parse /usr/bin/nm -B output from gcc object... ok checking for objdir... .libs checking for ar... ar checking for ranlib... ranlib checking for strip... strip checking if gcc supports -fno-rtti -fno-exceptions... no checking for gcc option to produce PIC... -fPIC checking if gcc PIC flag -fPIC works... yes checking if gcc static flag -static works... yes checking if gcc supports -c -o file.o... yes checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) 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 -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking for g++ option to produce PIC... -fPIC checking if g++ PIC flag -fPIC works... yes checking if g++ static flag -static works... yes checking if g++ supports -c -o file.o... yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate appending configuration tag "F77" to libtool checking 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 -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) 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: WARNING: po/Makefile.in.in seems to ignore the --datarootdir setting 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.10' /usr/bin/make all-recursive make[2]: Entering directory `/tmp/buildd/dsh-0.25.10' Making all in m4 make[3]: Entering directory `/tmp/buildd/dsh-0.25.10/m4' make[3]: Nothing to be done for `all'. make[3]: Leaving directory `/tmp/buildd/dsh-0.25.10/m4' Making all in po make[3]: Entering directory `/tmp/buildd/dsh-0.25.10/po' make[3]: Nothing to be done for `all'. make[3]: Leaving directory `/tmp/buildd/dsh-0.25.10/po' make[3]: Entering directory `/tmp/buildd/dsh-0.25.10' 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/bash ./libtool --tag=CC --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.10' make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10' make[1]: Leaving directory `/tmp/buildd/dsh-0.25.10' /usr/bin/make check make[1]: Entering directory `/tmp/buildd/dsh-0.25.10' Making check in m4 make[2]: Entering directory `/tmp/buildd/dsh-0.25.10/m4' make[2]: Nothing to be done for `check'. make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10/m4' Making check in po make[2]: Entering directory `/tmp/buildd/dsh-0.25.10/po' make[2]: Nothing to be done for `check'. make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10/po' make[2]: Entering directory `/tmp/buildd/dsh-0.25.10' /usr/bin/make dsh make[3]: Entering directory `/tmp/buildd/dsh-0.25.10' make[3]: `dsh' is up to date. make[3]: Leaving directory `/tmp/buildd/dsh-0.25.10' /usr/bin/make check-TESTS make[3]: Entering directory `/tmp/buildd/dsh-0.25.10' PASS: tests/param-f.sh dsh: File ./tests/nonexistent.file could not be opened for read PASS: tests/param-f-fail.sh PASS: tests/param-f-with-space.sh PASS: tests/param-m.sh test to check that unknown parameter checking is right. ./dsh: unrecognized option '--unknown-parameter' ./dsh: invalid option -- 'u' PASS: tests/param-unknown.sh test1 test2 dsh: Process terminated (before write). PASS: tests/param-i.sh Check that cn4 option is working. PASS: tests/param-cn4.sh test to check that -b0 is rejected, and -b1 is accepted Buffer size needs to be greater than 1 Buffer size needs to be greater than 1 a b PASS: tests/param-b-0.sh dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call success dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call success success success success success a: dsh: Failed executing ./invalid-exec-file with llexec call b: dsh: Failed executing ./invalid-exec-file with llexec call c: dsh: Failed executing ./invalid-exec-file with llexec call d: dsh: Failed executing ./invalid-exec-file with llexec call success dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call success PASS: tests/param-r-invalid.sh 1: 1 2: 2 dsh: fork limit and wait shell cannot be specified at the same time PASS: tests/param-F-invalid.sh Sun Nov 29 10:17:52 UTC 2009 2: Using sleep as the remote shell 2: Show machine names on output 2: Adding machine 5,4,3,2,1 to list 2: Setting forklimit to 3 and wait_shell to 0 2: DUMPing parameters passed to llexec 2: [2] Using sleep as the remote shell Show machine names on output Adding machine 5,4,3,2,1 to list Setting forklimit to 3 and wait_shell to 0 DUMPing parameters passed to llexec [2] 3: Using sleep as the remote shell 3: Show machine names on output 3: Adding machine 5,4,3,2,1 to list 3: Setting forklimit to 3 and wait_shell to 0 3: DUMPing parameters passed to llexec 3: [3] Using sleep as the remote shell Show machine names on output Adding machine 5,4,3,2,1 to list Setting forklimit to 3 and wait_shell to 0 DUMPing parameters passed to llexec [3] 1: Using sleep as the remote shell 1: Show machine names on output 1: Adding machine 5,4,3,2,1 to list 1: Setting forklimit to 3 and wait_shell to 0 1: ... Waiting for process to end with waitpid 1: DUMPing parameters passed to llexec 1: [1] Using sleep as the remote shell Show machine names on output Adding machine 5,4,3,2,1 to list Setting forklimit to 3 and wait_shell to 0 ... Waiting for process to end with waitpid DUMPing parameters passed to llexec [1] 4: Using sleep as the remote shell 4: Show machine names on output 4: Adding machine 5,4,3,2,1 to list 4: Setting forklimit to 3 and wait_shell to 0 4: DUMPing parameters passed to llexec 4: [4] Using sleep as the remote shell Show machine names on output Adding machine 5,4,3,2,1 to list Setting forklimit to 3 and wait_shell to 0 DUMPing parameters passed to llexec [4] 5: Using sleep as the remote shell 5: Show machine names on output 5: Adding machine 5,4,3,2,1 to list 5: Setting forklimit to 3 and wait_shell to 0 5: DUMPing parameters passed to llexec 5: [5] Using sleep as the remote shell Show machine names on output Adding machine 5,4,3,2,1 to list Setting forklimit to 3 and wait_shell to 0 DUMPing parameters passed to llexec [5] --- Terminated running Using sleep as the remote shell Show machine names on output Adding machine 5,4,3,2,1 to list Setting forklimit to 3 and wait_shell to 0 ... Waiting for process to end with waitpid ... Waiting for process to end with waitpid Sun Nov 29 10:17:57 UTC 2009 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 `/tmp/buildd/dsh-0.25.10' make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10' make[1]: Leaving directory `/tmp/buildd/dsh-0.25.10' touch build-stamp fakeroot debian/rules binary dh_testdir dh_testroot dh_clean -k dh_clean: Compatibility levels before 5 are deprecated. dh_installdirs dh_installdirs: Compatibility levels before 5 are deprecated. # Add here commands to install the package into debian/dsh. /usr/bin/make install DESTDIR=/tmp/buildd/dsh-0.25.10/debian/dsh make[1]: Entering directory `/tmp/buildd/dsh-0.25.10' Making install in m4 make[2]: Entering directory `/tmp/buildd/dsh-0.25.10/m4' make[3]: Entering directory `/tmp/buildd/dsh-0.25.10/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.10/m4' make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10/m4' Making install in po make[2]: Entering directory `/tmp/buildd/dsh-0.25.10/po' /bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share mkdir -p -- /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share mkdir -p -- /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/locale/ja/LC_MESSAGES installing ja.gmo as /tmp/buildd/dsh-0.25.10/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.10/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.10/debian/dsh/usr/share/gettext/po/$file; \ done; \ else \ : ; \ fi make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10/po' make[2]: Entering directory `/tmp/buildd/dsh-0.25.10' make[3]: Entering directory `/tmp/buildd/dsh-0.25.10' test -z "/usr/bin" || mkdir -p -- "/tmp/buildd/dsh-0.25.10/debian/dsh/usr/bin" /bin/bash ./libtool --mode=install install -p -o root -g root -m 755 -s 'dsh' '/tmp/buildd/dsh-0.25.10/debian/dsh/usr/bin/dsh' install -p -o root -g root -m 755 -s dsh /tmp/buildd/dsh-0.25.10/debian/dsh/usr/bin/dsh test -z "/etc/dsh" || mkdir -p -- "/tmp/buildd/dsh-0.25.10/debian/dsh/etc/dsh" /usr/bin/install -c -m 644 'dsh.conf' '/tmp/buildd/dsh-0.25.10/debian/dsh/etc/dsh/dsh.conf' for LANGS in ja ; do \ mkdir -p /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/$LANGS/man1 ;\ mkdir -p /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/$LANGS/man5 ;\ sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.$LANGS.1 \ > /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/$LANGS/man1/dsh.1 ; \ sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.conf.$LANGS.5 \ > /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/$LANGS/man5/dsh.conf.5 ; \ done test -z "/usr/share/man/man1" || mkdir -p -- "/tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/man1" /usr/bin/install -c -m 644 './build-man/dsh.1' '/tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/man1/dsh.1' test -z "/usr/share/man/man5" || mkdir -p -- "/tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/man5" /usr/bin/install -c -m 644 './build-man/dsh.conf.5' '/tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/man5/dsh.conf.5' make[3]: Leaving directory `/tmp/buildd/dsh-0.25.10' make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10' make[1]: Leaving directory `/tmp/buildd/dsh-0.25.10' cp /tmp/buildd/dsh-0.25.10/debian/machines.list /tmp/buildd/dsh-0.25.10/debian/dsh/etc/dsh/machines.list cp /tmp/buildd/dsh-0.25.10/dsh.conf /tmp/buildd/dsh-0.25.10/debian/dsh/etc/dsh/dsh.conf ln -s ../machines.list /tmp/buildd/dsh-0.25.10/debian/dsh/etc/dsh/group/all install -d /tmp/buildd/dsh-0.25.10/debian/dsh/usr/lib/update-cluster install -m 755 /tmp/buildd/dsh-0.25.10/debian/dsh.updatelist /tmp/buildd/dsh-0.25.10/debian/dsh/usr/lib/update-cluster/ dh_testdir dh_testroot dh_installdocs NEWS dh_installdocs: Compatibility levels before 5 are deprecated. dh_installexamples dh_installexamples: Compatibility levels before 5 are deprecated. dh_installmenu dh_installmenu: Compatibility levels before 5 are deprecated. dh_installman dh_installman: Compatibility levels before 5 are deprecated. dh_installchangelogs ChangeLog dh_installchangelogs: Compatibility levels before 5 are deprecated. dh_link dh_link: Compatibility levels before 5 are deprecated. dh_strip dh_strip: Compatibility levels before 5 are deprecated. dh_shlibdeps dh_shlibdeps: Compatibility levels before 5 are deprecated. dh_compress dh_compress: Compatibility levels before 5 are deprecated. dh_fixperms dh_fixperms: Compatibility levels before 5 are deprecated. dh_installdeb dh_installdeb: Compatibility levels before 5 are deprecated. dh_gencontrol dh_gencontrol: Compatibility levels before 5 are deprecated. dh_md5sums dh_md5sums: Compatibility levels before 5 are deprecated. dh_builddeb dh_builddeb: Compatibility levels before 5 are deprecated. dpkg-deb: building package `dsh' in `../dsh_0.25.10-1_amd64.deb'. dpkg-genchanges -eJunichi Uekawa >../dsh_0.25.10-1_amd64.changes dpkg-genchanges: including full source code in upload dpkg-buildpackage: full upload (original source is included) I: unmounting dev/pts filesystem I: unmounting proc filesystem I: cleaning the build env I: removing directory /TESTDIR/dir1/NUM and its subdirectories I: Current time: Sun Nov 29 19:18:00 JST 2009 I: pbuilder-time-stamp: 1259489880 pbuilder-0.215ubuntu7/testsuite/cdebootstrap/pbuilder-create-lenny.log0000664000000000000000000014274112312041170023170 0ustar I: Distribution is lenny. I: Building the build environment I: running cdebootstrap /usr/bin/cdebootstrap P: Retrieving Release P: Retrieving Release.gpg P: Validating Release I: Good signature from "Debian Archive Automatic Signing Key (5.0/lenny) " I: Good signature from "Lenny Stable Release Key " P: Parsing Release P: Retrieving Packages.gz P: Validating Packages.gz P: Parsing Packages P: Retrieving gcc-4.3-base P: Validating gcc-4.3-base P: Retrieving libgcc1 P: Validating libgcc1 P: Retrieving libc6 P: Validating libc6 P: Retrieving libstdc++6 P: Validating libstdc++6 P: Retrieving libbz2-1.0 P: Validating libbz2-1.0 P: Retrieving readline-common P: Validating readline-common P: Retrieving libncurses5 P: Validating libncurses5 P: Retrieving libreadline5 P: Validating libreadline5 P: Retrieving libusb-0.1-4 P: Validating libusb-0.1-4 P: Retrieving zlib1g P: Validating zlib1g P: Retrieving gpgv P: Validating gpgv P: Retrieving gnupg P: Validating gnupg P: Retrieving debian-archive-keyring P: Validating debian-archive-keyring P: Retrieving apt P: Validating apt P: Retrieving base-passwd P: Validating base-passwd P: Retrieving mawk P: Validating mawk P: Retrieving base-files P: Validating base-files P: Retrieving debianutils P: Validating debianutils P: Retrieving bash P: Validating bash P: Retrieving bsdutils P: Validating bsdutils P: Retrieving linux-libc-dev P: Validating linux-libc-dev P: Retrieving libc6-dev P: Validating libc6-dev P: Retrieving libgmp3c2 P: Validating libgmp3c2 P: Retrieving libmpfr1ldbl P: Validating libmpfr1ldbl P: Retrieving cpp-4.3 P: Validating cpp-4.3 P: Retrieving cpp P: Validating cpp P: Retrieving binutils P: Validating binutils P: Retrieving libgomp1 P: Validating libgomp1 P: Retrieving gcc-4.3 P: Validating gcc-4.3 P: Retrieving gcc P: Validating gcc P: Retrieving libstdc++6-4.3-dev P: Validating libstdc++6-4.3-dev P: Retrieving g++-4.3 P: Validating g++-4.3 P: Retrieving g++ P: Validating g++ P: Retrieving make P: Validating make P: Retrieving libattr1 P: Validating libattr1 P: Retrieving libacl1 P: Validating libacl1 P: Retrieving libselinux1 P: Validating libselinux1 P: Retrieving coreutils P: Validating coreutils P: Retrieving lzma P: Validating lzma P: Retrieving dpkg P: Validating dpkg P: Retrieving perl-base P: Validating perl-base P: Retrieving perl-modules P: Validating perl-modules P: Retrieving libdb4.6 P: Validating libdb4.6 P: Retrieving libgdbm3 P: Validating libgdbm3 P: Retrieving perl P: Validating perl P: Retrieving cpio P: Validating cpio P: Retrieving bzip2 P: Validating bzip2 P: Retrieving patch P: Validating patch P: Retrieving libtimedate-perl P: Validating libtimedate-perl P: Retrieving dpkg-dev P: Validating dpkg-dev P: Retrieving build-essential P: Validating build-essential P: Retrieving diff P: Validating diff P: Retrieving libcomerr2 P: Validating libcomerr2 P: Retrieving e2fslibs P: Validating e2fslibs P: Retrieving liblocale-gettext-perl P: Validating liblocale-gettext-perl P: Retrieving libtext-iconv-perl P: Validating libtext-iconv-perl P: Retrieving libtext-charwidth-perl P: Validating libtext-charwidth-perl P: Retrieving libtext-wrapi18n-perl P: Validating libtext-wrapi18n-perl P: Retrieving debconf-i18n P: Validating debconf-i18n P: Retrieving debconf P: Validating debconf P: Retrieving libpam-runtime P: Validating libpam-runtime P: Retrieving libpam0g P: Validating libpam0g P: Retrieving libpam-modules P: Validating libpam-modules P: Retrieving passwd P: Validating passwd P: Retrieving libuuid1 P: Validating libuuid1 P: Retrieving libblkid1 P: Validating libblkid1 P: Retrieving libss2 P: Validating libss2 P: Retrieving e2fsprogs P: Validating e2fsprogs P: Retrieving fakeroot P: Validating fakeroot P: Retrieving findutils P: Validating findutils P: Retrieving grep P: Validating grep P: Retrieving gzip P: Validating gzip P: Retrieving hostname P: Validating hostname P: Retrieving login P: Validating login P: Retrieving mktemp P: Validating mktemp P: Retrieving mount P: Validating mount P: Retrieving ncurses-base P: Validating ncurses-base P: Retrieving ncurses-bin P: Validating ncurses-bin P: Retrieving sed P: Validating sed P: Retrieving libsepol1 P: Validating libsepol1 P: Retrieving lsb-base P: Validating lsb-base P: Retrieving sysvinit-utils P: Validating sysvinit-utils P: Retrieving initscripts P: Validating initscripts P: Retrieving sysv-rc P: Validating sysv-rc P: Retrieving sysvinit P: Validating sysvinit P: Retrieving tar P: Validating tar P: Retrieving tzdata P: Validating tzdata P: Retrieving libslang2 P: Validating libslang2 P: Retrieving util-linux P: Validating util-linux P: Extracting gcc-4.3-base P: Extracting libc6 P: Extracting libgcc1 P: Extracting libstdc++6 P: Extracting libncurses5 P: Extracting zlib1g P: Extracting base-passwd P: Extracting mawk P: Extracting base-files P: Extracting debianutils P: Extracting bash P: Extracting bsdutils P: Extracting libattr1 P: Extracting libacl1 P: Extracting libselinux1 P: Extracting coreutils P: Extracting lzma P: Extracting dpkg P: Extracting perl-base P: Extracting libdb4.6 P: Extracting diff P: Extracting libcomerr2 P: Extracting e2fslibs P: Extracting liblocale-gettext-perl P: Extracting libtext-iconv-perl P: Extracting libtext-charwidth-perl P: Extracting libtext-wrapi18n-perl P: Extracting debconf P: Extracting debconf-i18n P: Extracting libpam-runtime P: Extracting libpam0g P: Extracting libpam-modules P: Extracting passwd P: Extracting libuuid1 P: Extracting libblkid1 P: Extracting libss2 P: Extracting e2fsprogs P: Extracting findutils P: Extracting grep P: Extracting gzip P: Extracting hostname P: Extracting login P: Extracting mktemp P: Extracting mount P: Extracting ncurses-base P: Extracting ncurses-bin P: Extracting sed P: Extracting libsepol1 P: Extracting lsb-base P: Extracting sysvinit-utils P: Extracting initscripts P: Extracting sysv-rc P: Extracting sysvinit P: Extracting tar P: Extracting tzdata P: Extracting libslang2 P: Extracting util-linux O: Selecting previously deselected package dpkg. O: (Reading database ... 0 files and directories currently installed.) O: Unpacking dpkg (from .../dpkg_1.14.25_amd64.deb) ... P: Unpacking package dpkg O: dpkg: regarding .../dpkg_1.14.25_amd64.deb containing dpkg, pre-dependency problem: O: dpkg pre-depends on libc6 (>= 2.7-1) O: dpkg: warning - ignoring pre-dependency problem ! O: dpkg: regarding .../dpkg_1.14.25_amd64.deb containing dpkg, pre-dependency problem: O: dpkg pre-depends on coreutils (>= 5.93-1) O: dpkg: warning - ignoring pre-dependency problem ! O: dpkg: regarding .../dpkg_1.14.25_amd64.deb containing dpkg, pre-dependency problem: O: dpkg pre-depends on lzma O: lzma is not installed. O: dpkg: warning - ignoring pre-dependency problem ! O: dpkg: dpkg: dependency problems, but configuring anyway as you request: O: dpkg depends on libc6 (>= 2.7-1); however: O: Package libc6 is not installed. O: dpkg depends on coreutils (>= 5.93-1); however: O: Package coreutils is not installed. O: dpkg depends on lzma; however: O: Package lzma is not installed. O: Setting up dpkg (1.14.25) ... P: Configuring package dpkg P: Configuring helper cdebootstrap-helper-rc.d O: Selecting previously deselected package cdebootstrap-helper-rc.d. O: (Reading database ... O: 261 files and directories currently installed.) O: Unpacking cdebootstrap-helper-rc.d (from .../cdebootstrap-helper-rc.d.deb) ... O: Setting up cdebootstrap-helper-rc.d (1) ... P: Configuring helper cdebootstrap-helper-makedev O: Selecting previously deselected package cdebootstrap-helper-makedev. O: (Reading database ... O: 262 files and directories currently installed.) O: Unpacking cdebootstrap-helper-makedev (from .../cdebootstrap-helper-makedev.deb) ... O: Setting up cdebootstrap-helper-makedev (1) ... O: Selecting previously deselected package gcc-4.3-base. O: (Reading database ... 262 files and directories currently installed.) O: Unpacking gcc-4.3-base (from .../gcc-4.3-base_4.3.2-1.1_amd64.deb) ... P: Unpacking package gcc-4.3-base O: Selecting previously deselected package libc6. O: Unpacking libc6 (from .../libc6_2.7-18_amd64.deb) ... P: Unpacking package libc6 O: Selecting previously deselected package libgcc1. O: Unpacking libgcc1 (from .../libgcc1_4.3.2-1.1_amd64.deb) ... P: Unpacking package libgcc1 O: Selecting previously deselected package libstdc++6. O: Unpacking libstdc++6 (from .../libstdc++6_4.3.2-1.1_amd64.deb) ... P: Unpacking package libstdc++6 O: Selecting previously deselected package libncurses5. O: Unpacking libncurses5 (from .../libncurses5_5.7+20081213-1_amd64.deb) ... P: Unpacking package libncurses5 O: Selecting previously deselected package zlib1g. O: Unpacking zlib1g (from .../zlib1g_1.2.3.3.dfsg-12_amd64.deb) ... P: Unpacking package zlib1g O: Selecting previously deselected package base-passwd. O: Unpacking base-passwd (from .../base-passwd_3.5.20_amd64.deb) ... P: Unpacking package base-passwd O: Selecting previously deselected package mawk. O: dpkg: regarding .../mawk_1.3.3-11.1_amd64.deb containing mawk, pre-dependency problem: O: mawk pre-depends on libc6 (>= 2.7-1) O: libc6 is unpacked, but has never been configured. O: dpkg: warning - ignoring pre-dependency problem ! O: Unpacking mawk (from .../mawk_1.3.3-11.1_amd64.deb) ... P: Unpacking package mawk O: Selecting previously deselected package base-files. O: Unpacking base-files (from .../base-files_5lenny4_amd64.deb) ... P: Unpacking package base-files O: dpkg: regarding .../base-files_5lenny4_amd64.deb containing base-files, pre-dependency problem: O: base-files pre-depends on awk O: mawk provides awk but is unpacked but not configured. O: dpkg: warning - ignoring pre-dependency problem ! O: Selecting previously deselected package debianutils. O: dpkg: regarding .../debianutils_2.30_amd64.deb containing debianutils, pre-dependency problem: O: debianutils pre-depends on libc6 (>= 2.7-1) O: libc6 is unpacked, but has never been configured. O: dpkg: warning - ignoring pre-dependency problem ! O: Unpacking debianutils (from .../debianutils_2.30_amd64.deb) ... P: Unpacking package debianutils O: Selecting previously deselected package bash. O: Unpacking bash (from .../bootstrap/bash_3.2-4_amd64.deb) ... P: Unpacking package bash O: dpkg: regarding .../bootstrap/bash_3.2-4_amd64.deb containing bash, pre-dependency problem: O: bash pre-depends on libc6 (>= 2.7-1) O: libc6 is unpacked, but has never been configured. O: dpkg: warning - ignoring pre-dependency problem ! O: dpkg: regarding .../bootstrap/bash_3.2-4_amd64.deb containing bash, pre-dependency problem: O: bash pre-depends on libncurses5 (>= 5.6+20071006-3) O: libncurses5 is unpacked, but has never been configured. O: dpkg: warning - ignoring pre-dependency problem ! O: Selecting previously deselected package bsdutils. O: Unpacking bsdutils (from .../bsdutils_2.13.1.1-1_amd64.deb) ... P: Unpacking package bsdutils O: Selecting previously deselected package libattr1. O: Unpacking libattr1 (from .../libattr1_2.4.43-2_amd64.deb) ... P: Unpacking package libattr1 O: Selecting previously deselected package libacl1. O: Unpacking libacl1 (from .../libacl1_2.2.47-2_amd64.deb) ... P: Unpacking package libacl1 O: Selecting previously deselected package libselinux1. O: Unpacking libselinux1 (from .../libselinux1_2.0.65-5_amd64.deb) ... P: Unpacking package libselinux1 O: Selecting previously deselected package coreutils. O: Unpacking coreutils (from .../coreutils_6.10-6_amd64.deb) ... P: Unpacking package coreutils O: dpkg: regarding .../coreutils_6.10-6_amd64.deb containing coreutils, pre-dependency problem: O: coreutils pre-depends on libacl1 (>= 2.2.11-1) O: libacl1 is unpacked, but has never been configured. O: dpkg: warning - ignoring pre-dependency problem ! O: dpkg: regarding .../coreutils_6.10-6_amd64.deb containing coreutils, pre-dependency problem: O: coreutils pre-depends on libc6 (>= 2.7-1) O: libc6 is unpacked, but has never been configured. O: dpkg: warning - ignoring pre-dependency problem ! O: dpkg: regarding .../coreutils_6.10-6_amd64.deb containing coreutils, pre-dependency problem: O: coreutils pre-depends on libselinux1 (>= 2.0.59) O: libselinux1 is unpacked, but has never been configured. O: dpkg: warning - ignoring pre-dependency problem ! O: No diversion `any diversion of /usr/share/man/man1/md5sum.textutils.1.gz', none removed O: No diversion `any diversion of /usr/bin/md5sum.textutils', none removed O: Selecting previously deselected package lzma. O: Unpacking lzma (from .../lzma_4.43-14_amd64.deb) ... P: Unpacking package lzma O: Selecting previously deselected package perl-base. O: Unpacking perl-base (from .../perl-base_5.10.0-19lenny2_amd64.deb) ... P: Unpacking package perl-base O: dpkg: regarding .../perl-base_5.10.0-19lenny2_amd64.deb containing perl-base, pre-dependency problem: O: perl-base pre-depends on libc6 (>= 2.7-1) O: libc6 is unpacked, but has never been configured. O: dpkg: warning - ignoring pre-dependency problem ! O: Selecting previously deselected package libdb4.6. O: Unpacking libdb4.6 (from .../libdb4.6_4.6.21-11_amd64.deb) ... P: Unpacking package libdb4.6 O: Selecting previously deselected package diff. O: dpkg: regarding .../diff_2.8.1-12_amd64.deb containing diff, pre-dependency problem: O: diff pre-depends on libc6 (>= 2.5) O: libc6 is unpacked, but has never been configured. O: dpkg: warning - ignoring pre-dependency problem ! O: Unpacking diff (from .../diff_2.8.1-12_amd64.deb) ... P: Unpacking package diff O: Selecting previously deselected package libcomerr2. O: Unpacking libcomerr2 (from .../libcomerr2_1.41.3-1_amd64.deb) ... P: Unpacking package libcomerr2 O: Selecting previously deselected package e2fslibs. O: Unpacking e2fslibs (from .../e2fslibs_1.41.3-1_amd64.deb) ... P: Unpacking package e2fslibs O: Selecting previously deselected package liblocale-gettext-perl. O: Unpacking liblocale-gettext-perl (from .../liblocale-gettext-perl_1.05-4_amd64.deb) ... P: Unpacking package liblocale-gettext-perl O: dpkg: regarding .../liblocale-gettext-perl_1.05-4_amd64.deb containing liblocale-gettext-perl, pre-dependency problem: O: liblocale-gettext-perl pre-depends on perl-base (>= 5.10.0-9) O: perl-base is unpacked, but has never been configured. O: dpkg: warning - ignoring pre-dependency problem ! O: dpkg: regarding .../liblocale-gettext-perl_1.05-4_amd64.deb containing liblocale-gettext-perl, pre-dependency problem: O: liblocale-gettext-perl pre-depends on perlapi-5.10.0 O: perl-base provides perlapi-5.10.0 but is unpacked but not configured. O: dpkg: warning - ignoring pre-dependency problem ! O: Selecting previously deselected package libtext-iconv-perl. O: Unpacking libtext-iconv-perl (from .../libtext-iconv-perl_1.7-1+b1_amd64.deb) ... P: Unpacking package libtext-iconv-perl O: Selecting previously deselected package libtext-charwidth-perl. O: Unpacking libtext-charwidth-perl (from .../libtext-charwidth-perl_0.04-5+b1_amd64.deb) ... P: Unpacking package libtext-charwidth-perl O: Selecting previously deselected package libtext-wrapi18n-perl. O: Unpacking libtext-wrapi18n-perl (from .../libtext-wrapi18n-perl_0.06-6_all.deb) ... P: Unpacking package libtext-wrapi18n-perl O: Selecting previously deselected package debconf. O: dpkg: regarding .../debconf_1.5.24_all.deb containing debconf, pre-dependency problem: O: debconf pre-depends on perl-base (>= 5.6.1-4) O: perl-base is unpacked, but has never been configured. O: dpkg: warning - ignoring pre-dependency problem ! O: Unpacking debconf (from .../debconf_1.5.24_all.deb) ... P: Unpacking package debconf O: Selecting previously deselected package debconf-i18n. O: Unpacking debconf-i18n (from .../debconf-i18n_1.5.24_all.deb) ... P: Unpacking package debconf-i18n O: Selecting previously deselected package libpam-runtime. O: Unpacking libpam-runtime (from .../libpam-runtime_1.0.1-5+lenny1_all.deb) ... P: Unpacking package libpam-runtime O: Selecting previously deselected package libpam0g. O: Unpacking libpam0g (from .../libpam0g_1.0.1-5+lenny1_amd64.deb) ... P: Unpacking package libpam0g O: Selecting previously deselected package libpam-modules. O: Unpacking libpam-modules (from .../libpam-modules_1.0.1-5+lenny1_amd64.deb) ... P: Unpacking package libpam-modules O: dpkg: regarding .../libpam-modules_1.0.1-5+lenny1_amd64.deb containing libpam-modules, pre-dependency problem: O: libpam-modules pre-depends on libc6 (>= 2.7-1) O: libc6 is unpacked, but has never been configured. O: dpkg: warning - ignoring pre-dependency problem ! O: dpkg: regarding .../libpam-modules_1.0.1-5+lenny1_amd64.deb containing libpam-modules, pre-dependency problem: O: libpam-modules pre-depends on libdb4.6 O: libdb4.6 is unpacked, but has never been configured. O: dpkg: warning - ignoring pre-dependency problem ! O: dpkg: regarding .../libpam-modules_1.0.1-5+lenny1_amd64.deb containing libpam-modules, pre-dependency problem: O: libpam-modules pre-depends on libpam0g (>= 0.99.7.1) O: libpam0g is unpacked, but has never been configured. O: dpkg: warning - ignoring pre-dependency problem ! O: dpkg: regarding .../libpam-modules_1.0.1-5+lenny1_amd64.deb containing libpam-modules, pre-dependency problem: O: libpam-modules pre-depends on libselinux1 (>= 2.0.59) O: libselinux1 is unpacked, but has never been configured. O: dpkg: warning - ignoring pre-dependency problem ! O: dpkg: regarding .../libpam-modules_1.0.1-5+lenny1_amd64.deb containing libpam-modules, pre-dependency problem: O: libpam-modules pre-depends on debconf (>= 0.5) | debconf-2.0 O: debconf is unpacked, but has never been configured. O: debconf provides debconf-2.0 but is unpacked but not configured. O: dpkg: warning - ignoring pre-dependency problem ! O: Use of uninitialized value in concatenation (.) or string at /usr/share/perl5/Debconf/Config.pm line 22. O: Selecting previously deselected package passwd. O: Unpacking passwd (from .../passwd_4.1.1-6_amd64.deb) ... P: Unpacking package passwd O: Selecting previously deselected package libuuid1. O: Unpacking libuuid1 (from .../libuuid1_1.41.3-1_amd64.deb) ... P: Unpacking package libuuid1 O: Selecting previously deselected package libblkid1. O: Unpacking libblkid1 (from .../libblkid1_1.41.3-1_amd64.deb) ... P: Unpacking package libblkid1 O: Selecting previously deselected package libss2. O: Unpacking libss2 (from .../libss2_1.41.3-1_amd64.deb) ... P: Unpacking package libss2 O: Selecting previously deselected package e2fsprogs. O: Unpacking e2fsprogs (from .../e2fsprogs_1.41.3-1_amd64.deb) ... P: Unpacking package e2fsprogs O: dpkg: regarding .../e2fsprogs_1.41.3-1_amd64.deb containing e2fsprogs, pre-dependency problem: O: e2fsprogs pre-depends on e2fslibs (>= 1.41.1) O: e2fslibs is unpacked, but has never been configured. O: dpkg: warning - ignoring pre-dependency problem ! O: dpkg: regarding .../e2fsprogs_1.41.3-1_amd64.deb containing e2fsprogs, pre-dependency problem: O: e2fsprogs pre-depends on libblkid1 (>= 1.40) O: libblkid1 is unpacked, but has never been configured. O: dpkg: warning - ignoring pre-dependency problem ! O: dpkg: regarding .../e2fsprogs_1.41.3-1_amd64.deb containing e2fsprogs, pre-dependency problem: O: e2fsprogs pre-depends on libc6 (>= 2.7-1) O: libc6 is unpacked, but has never been configured. O: dpkg: warning - ignoring pre-dependency problem ! O: dpkg: regarding .../e2fsprogs_1.41.3-1_amd64.deb containing e2fsprogs, pre-dependency problem: O: e2fsprogs pre-depends on libcomerr2 (>= 1.34) O: libcomerr2 is unpacked, but has never been configured. O: dpkg: warning - ignoring pre-dependency problem ! O: dpkg: regarding .../e2fsprogs_1.41.3-1_amd64.deb containing e2fsprogs, pre-dependency problem: O: e2fsprogs pre-depends on libss2 (>= 1.34) O: libss2 is unpacked, but has never been configured. O: dpkg: warning - ignoring pre-dependency problem ! O: dpkg: regarding .../e2fsprogs_1.41.3-1_amd64.deb containing e2fsprogs, pre-dependency problem: O: e2fsprogs pre-depends on libuuid1 (>= 1.15) O: libuuid1 is unpacked, but has never been configured. O: dpkg: warning - ignoring pre-dependency problem ! O: Selecting previously deselected package findutils. O: Unpacking findutils (from .../findutils_4.4.0-2_amd64.deb) ... P: Unpacking package findutils O: dpkg: regarding .../findutils_4.4.0-2_amd64.deb containing findutils, pre-dependency problem: O: findutils pre-depends on libc6 (>= 2.7-1) O: libc6 is unpacked, but has never been configured. O: dpkg: warning - ignoring pre-dependency problem ! O: Selecting previously deselected package grep. O: dpkg: regarding .../grep_2.5.3~dfsg-6_amd64.deb containing grep, pre-dependency problem: O: grep pre-depends on libc6 (>= 2.7-1) O: libc6 is unpacked, but has never been configured. O: dpkg: warning - ignoring pre-dependency problem ! O: Unpacking grep (from .../grep_2.5.3~dfsg-6_amd64.deb) ... P: Unpacking package grep O: Selecting previously deselected package gzip. O: Unpacking gzip (from .../gzip_1.3.12-6_amd64.deb) ... P: Unpacking package gzip O: dpkg: regarding .../gzip_1.3.12-6_amd64.deb containing gzip, pre-dependency problem: O: gzip pre-depends on libc6 (>= 2.7-1) O: libc6 is unpacked, but has never been configured. O: dpkg: warning - ignoring pre-dependency problem ! O: Selecting previously deselected package hostname. O: Unpacking hostname (from .../hostname_2.95_amd64.deb) ... P: Unpacking package hostname O: dpkg: regarding .../hostname_2.95_amd64.deb containing hostname, pre-dependency problem: O: hostname pre-depends on libc6 (>= 2.7-1) O: libc6 is unpacked, but has never been configured. O: dpkg: warning - ignoring pre-dependency problem ! O: Selecting previously deselected package login. O: dpkg: regarding .../login_4.1.1-6_amd64.deb containing login, pre-dependency problem: O: login pre-depends on libc6 (>= 2.7-1) O: libc6 is unpacked, but has never been configured. O: dpkg: warning - ignoring pre-dependency problem ! O: Unpacking login (from .../login_4.1.1-6_amd64.deb) ... P: Unpacking package login O: dpkg: regarding .../login_4.1.1-6_amd64.deb containing login, pre-dependency problem: O: login pre-depends on libpam0g (>= 0.99.7.1) O: libpam0g is unpacked, but has never been configured. O: dpkg: warning - ignoring pre-dependency problem ! O: dpkg: regarding .../login_4.1.1-6_amd64.deb containing login, pre-dependency problem: O: login pre-depends on libpam-runtime O: libpam-runtime is unpacked, but has never been configured. O: dpkg: warning - ignoring pre-dependency problem ! O: dpkg: regarding .../login_4.1.1-6_amd64.deb containing login, pre-dependency problem: O: login pre-depends on libpam-modules O: libpam-modules is unpacked, but has never been configured. O: dpkg: warning - ignoring pre-dependency problem ! O: Selecting previously deselected package mktemp. O: Unpacking mktemp (from .../mktemp_1.5-9_amd64.deb) ... P: Unpacking package mktemp O: dpkg: regarding .../mktemp_1.5-9_amd64.deb containing mktemp, pre-dependency problem: O: mktemp pre-depends on libc6 (>= 2.7-1) O: libc6 is unpacked, but has never been configured. O: dpkg: warning - ignoring pre-dependency problem ! O: Selecting previously deselected package mount. O: Unpacking mount (from .../mount_2.13.1.1-1_amd64.deb) ... P: Unpacking package mount O: dpkg: regarding .../mount_2.13.1.1-1_amd64.deb containing mount, pre-dependency problem: O: mount pre-depends on libblkid1 (>= 1.37-1) O: libblkid1 is unpacked, but has never been configured. O: dpkg: warning - ignoring pre-dependency problem ! O: dpkg: regarding .../mount_2.13.1.1-1_amd64.deb containing mount, pre-dependency problem: O: mount pre-depends on libc6 (>= 2.7-1) O: libc6 is unpacked, but has never been configured. O: dpkg: warning - ignoring pre-dependency problem ! O: dpkg: regarding .../mount_2.13.1.1-1_amd64.deb containing mount, pre-dependency problem: O: mount pre-depends on libselinux1 (>= 2.0.59) O: libselinux1 is unpacked, but has never been configured. O: dpkg: warning - ignoring pre-dependency problem ! O: dpkg: regarding .../mount_2.13.1.1-1_amd64.deb containing mount, pre-dependency problem: O: mount pre-depends on libuuid1 O: libuuid1 is unpacked, but has never been configured. O: dpkg: warning - ignoring pre-dependency problem ! O: Selecting previously deselected package ncurses-base. O: Unpacking ncurses-base (from .../ncurses-base_5.7+20081213-1_all.deb) ... P: Unpacking package ncurses-base O: Selecting previously deselected package ncurses-bin. O: dpkg: regarding .../ncurses-bin_5.7+20081213-1_amd64.deb containing ncurses-bin, pre-dependency problem: O: ncurses-bin pre-depends on libc6 (>= 2.7-1) O: libc6 is unpacked, but has never been configured. O: dpkg: warning - ignoring pre-dependency problem ! O: dpkg: regarding .../ncurses-bin_5.7+20081213-1_amd64.deb containing ncurses-bin, pre-dependency problem: O: ncurses-bin pre-depends on libncurses5 (>= 5.6+20071006-3) O: libncurses5 is unpacked, but has never been configured. O: dpkg: warning - ignoring pre-dependency problem ! O: Unpacking ncurses-bin (from .../ncurses-bin_5.7+20081213-1_amd64.deb) ... P: Unpacking package ncurses-bin O: Selecting previously deselected package sed. O: Unpacking sed (from .../sed_4.1.5-6_amd64.deb) ... P: Unpacking package sed O: dpkg: regarding .../sed_4.1.5-6_amd64.deb containing sed, pre-dependency problem: O: sed pre-depends on libc6 (>= 2.7-1) O: libc6 is unpacked, but has never been configured. O: dpkg: warning - ignoring pre-dependency problem ! O: Selecting previously deselected package libsepol1. O: Unpacking libsepol1 (from .../libsepol1_2.0.30-2_amd64.deb) ... P: Unpacking package libsepol1 O: Selecting previously deselected package lsb-base. O: Unpacking lsb-base (from .../lsb-base_3.2-20_all.deb) ... P: Unpacking package lsb-base O: Selecting previously deselected package sysvinit-utils. O: Unpacking sysvinit-utils (from .../sysvinit-utils_2.86.ds1-61_amd64.deb) ... P: Unpacking package sysvinit-utils O: Selecting previously deselected package initscripts. O: Unpacking initscripts (from .../initscripts_2.86.ds1-61_amd64.deb) ... P: Unpacking package initscripts O: Selecting previously deselected package sysv-rc. O: Unpacking sysv-rc (from .../sysv-rc_2.86.ds1-61_all.deb) ... P: Unpacking package sysv-rc O: Selecting previously deselected package sysvinit. O: Unpacking sysvinit (from .../sysvinit_2.86.ds1-61_amd64.deb) ... P: Unpacking package sysvinit O: dpkg: regarding .../sysvinit_2.86.ds1-61_amd64.deb containing sysvinit, pre-dependency problem: O: sysvinit pre-depends on initscripts O: initscripts is unpacked, but has never been configured. O: dpkg: warning - ignoring pre-dependency problem ! O: dpkg: regarding .../sysvinit_2.86.ds1-61_amd64.deb containing sysvinit, pre-dependency problem: O: sysvinit pre-depends on sysv-rc (>= 2.86.ds1-1.2) | file-rc (>> 0.7.0) O: sysv-rc is unpacked, but has never been configured. O: dpkg: warning - ignoring pre-dependency problem ! O: dpkg: regarding .../sysvinit_2.86.ds1-61_amd64.deb containing sysvinit, pre-dependency problem: O: sysvinit pre-depends on sysvinit-utils O: sysvinit-utils is unpacked, but has never been configured. O: dpkg: warning - ignoring pre-dependency problem ! O: Selecting previously deselected package tar. O: dpkg: regarding .../bootstrap/tar_1.20-1_amd64.deb containing tar, pre-dependency problem: O: tar pre-depends on libc6 (>= 2.7-1) O: libc6 is unpacked, but has never been configured. O: dpkg: warning - ignoring pre-dependency problem ! O: Unpacking tar (from .../bootstrap/tar_1.20-1_amd64.deb) ... P: Unpacking package tar O: Selecting previously deselected package tzdata. O: Unpacking tzdata (from .../tzdata_2009l-0lenny1_all.deb) ... P: Unpacking package tzdata O: Selecting previously deselected package libslang2. O: Unpacking libslang2 (from .../libslang2_2.1.3-3_amd64.deb) ... P: Unpacking package libslang2 O: Selecting previously deselected package util-linux. O: Unpacking util-linux (from .../util-linux_2.13.1.1-1_amd64.deb) ... P: Unpacking package util-linux O: dpkg: regarding .../util-linux_2.13.1.1-1_amd64.deb containing util-linux, pre-dependency problem: O: util-linux pre-depends on libc6 (>= 2.7-1) O: libc6 is unpacked, but has never been configured. O: dpkg: warning - ignoring pre-dependency problem ! O: dpkg: regarding .../util-linux_2.13.1.1-1_amd64.deb containing util-linux, pre-dependency problem: O: util-linux pre-depends on libncurses5 (>= 5.6+20071006-3) O: libncurses5 is unpacked, but has never been configured. O: dpkg: warning - ignoring pre-dependency problem ! O: dpkg: regarding .../util-linux_2.13.1.1-1_amd64.deb containing util-linux, pre-dependency problem: O: util-linux pre-depends on libselinux1 (>= 2.0.59) O: libselinux1 is unpacked, but has never been configured. O: dpkg: warning - ignoring pre-dependency problem ! O: dpkg: regarding .../util-linux_2.13.1.1-1_amd64.deb containing util-linux, pre-dependency problem: O: util-linux pre-depends on libslang2 (>= 2.0.7-1) O: libslang2 is unpacked, but has never been configured. O: dpkg: warning - ignoring pre-dependency problem ! O: dpkg: regarding .../util-linux_2.13.1.1-1_amd64.deb containing util-linux, pre-dependency problem: O: util-linux pre-depends on libuuid1 O: libuuid1 is unpacked, but has never been configured. O: dpkg: warning - ignoring pre-dependency problem ! O: dpkg: regarding .../util-linux_2.13.1.1-1_amd64.deb containing util-linux, pre-dependency problem: O: util-linux pre-depends on zlib1g (>= 1:1.1.4) O: zlib1g is unpacked, but has never been configured. O: dpkg: warning - ignoring pre-dependency problem ! O: Setting up sysv-rc (2.86.ds1-61) ... P: Configuring package sysv-rc O: Setting up libpam-runtime (1.0.1-5+lenny1) ... P: Configuring package libpam-runtime O: Setting up gcc-4.3-base (4.3.2-1.1) ... P: Configuring package gcc-4.3-base O: Setting up libc6 (2.7-18) ... P: Configuring package libc6 O: Use of uninitialized value in concatenation (.) or string at /usr/share/perl5/Debconf/Config.pm line 22. O: ************************************ O: All rc.d operations denied by policy O: ************************************ O: Setting up mktemp (1.5-9) ... P: Configuring package mktemp O: Setting up debianutils (2.30) ... P: Configuring package debianutils O: Setting up bsdutils (1:2.13.1.1-1) ... P: Configuring package bsdutils O: Setting up perl-base (5.10.0-19lenny2) ... P: Configuring package perl-base O: Setting up libsepol1 (2.0.30-2) ... P: Configuring package libsepol1 O: telinit: O: /dev/initctl: No such file or directory O: Setting up tar (1.20-1) ... P: Configuring package tar O: Setting up zlib1g (1:1.2.3.3.dfsg-12) ... P: Configuring package zlib1g O: Setting up libgcc1 (1:4.3.2-1.1) ... P: Configuring package libgcc1 O: Setting up libtext-iconv-perl (1.7-1+b1) ... P: Configuring package libtext-iconv-perl O: Setting up libncurses5 (5.7+20081213-1) ... P: Configuring package libncurses5 O: Setting up libattr1 (1:2.4.43-2) ... P: Configuring package libattr1 O: Setting up sed (4.1.5-6) ... P: Configuring package sed O: install-info(/usr/share/info/sed.info): no backup file /var/backups/infodir.bak available, retrieving default file. O: Setting up base-passwd (3.5.20) ... P: Configuring package base-passwd O: Setting up libcomerr2 (1.41.3-1) ... P: Configuring package libcomerr2 O: Setting up mawk (1.3.3-11.1) ... P: Configuring package mawk O: Setting up libdb4.6 (4.6.21-11) ... P: Configuring package libdb4.6 O: Setting up grep (2.5.3~dfsg-6) ... P: Configuring package grep O: Setting up hostname (2.95) ... P: Configuring package hostname O: Setting up libacl1 (2.2.47-2) ... P: Configuring package libacl1 O: Setting up libslang2 (2.1.3-3) ... P: Configuring package libslang2 O: Setting up libss2 (1.41.3-1) ... P: Configuring package libss2 O: Setting up findutils (4.4.0-2) ... P: Configuring package findutils O: Setting up gzip (1.3.12-6) ... P: Configuring package gzip O: Setting up liblocale-gettext-perl (1.05-4) ... P: Configuring package liblocale-gettext-perl O: Setting up diff (2.8.1-12) ... P: Configuring package diff O: Setting up libselinux1 (2.0.65-5) ... P: Configuring package libselinux1 O: init: /dev/initctl: No such file or directory O: Setting up libstdc++6 (4.3.2-1.1) ... P: Configuring package libstdc++6 O: Setting up libtext-charwidth-perl (0.04-5+b1) ... P: Configuring package libtext-charwidth-perl O: Setting up libtext-wrapi18n-perl (0.06-6) ... P: Configuring package libtext-wrapi18n-perl O: Setting up coreutils (6.10-6) ... P: Configuring package coreutils O: Setting up lzma (4.43-14) ... P: Configuring package lzma O: Setting up ncurses-base (5.7+20081213-1) ... P: Configuring package ncurses-base O: Setting up ncurses-bin (5.7+20081213-1) ... P: Configuring package ncurses-bin O: Setting up base-files (5lenny4) ... P: Configuring package base-files O: Setting up e2fslibs (1.41.3-1) ... P: Configuring package e2fslibs O: Setting up debconf-i18n (1.5.24) ... P: Configuring package debconf-i18n O: Setting up sysvinit-utils (2.86.ds1-61) ... P: Configuring package sysvinit-utils O: Setting up bash (3.2-4) ... P: Configuring package bash O: Setting up debconf (1.5.24) ... P: Configuring package debconf O: Setting up lsb-base (3.2-20) ... P: Configuring package lsb-base O: Setting up libpam0g (1.0.1-5+lenny1) ... P: Configuring package libpam0g O: Setting up libpam-modules (1.0.1-5+lenny1) ... P: Configuring package libpam-modules O: Setting up tzdata (2009l-0lenny1) ... P: Configuring package tzdata O: O: Current default timezone: 'Etc/UTC' O: Local time is now: XXXX O: Universal Time is now: XXXX O: Run 'dpkg-reconfigure tzdata' if you wish to change it. O: O: Setting up passwd (1:4.1.1-6) ... P: Configuring package passwd O: Shadow passwords are now on. O: Setting up login (1:4.1.1-6) ... P: Configuring package login O: Setting up libuuid1 (1.41.3-1) ... P: Configuring package libuuid1 O: Setting up libblkid1 (1.41.3-1) ... P: Configuring package libblkid1 O: Setting up e2fsprogs (1.41.3-1) ... P: Configuring package e2fsprogs O: Setting up util-linux (2.13.1.1-1) ... P: Configuring package util-linux O: Setting up mount (2.13.1.1-1) ... P: Configuring package mount O: Setting up initscripts (2.86.ds1-61) ... P: Configuring package initscripts O: Setting up sysvinit (2.86.ds1-61) ... P: Configuring package sysvinit O: sysvinit: creating /dev/initctl O: init: timeout opening/writing control channel /dev/initctl O: Selecting previously deselected package libbz2-1.0. O: (Reading database ... 5460 files and directories currently installed.) O: Unpacking libbz2-1.0 (from .../libbz2-1.0_1.0.5-1_amd64.deb) ... P: Unpacking package libbz2-1.0 O: Selecting previously deselected package readline-common. O: Unpacking readline-common (from .../readline-common_5.2-3.1_all.deb) ... P: Unpacking package readline-common O: Selecting previously deselected package libreadline5. O: Unpacking libreadline5 (from .../libreadline5_5.2-3.1_amd64.deb) ... P: Unpacking package libreadline5 O: Selecting previously deselected package libusb-0.1-4. O: Unpacking libusb-0.1-4 (from .../libusb-0.1-4_0.1.12-13_amd64.deb) ... P: Unpacking package libusb-0.1-4 O: Selecting previously deselected package gpgv. O: Unpacking gpgv (from .../gpgv_1.4.9-3+lenny1_amd64.deb) ... P: Unpacking package gpgv O: Selecting previously deselected package gnupg. O: Unpacking gnupg (from .../gnupg_1.4.9-3+lenny1_amd64.deb) ... P: Unpacking package gnupg O: Selecting previously deselected package debian-archive-keyring. O: Unpacking debian-archive-keyring (from .../debian-archive-keyring_2009.01.31_all.deb) ... P: Unpacking package debian-archive-keyring O: Selecting previously deselected package apt. O: Unpacking apt (from .../apt_0.7.20.2+lenny1_amd64.deb) ... P: Unpacking package apt O: Setting up libbz2-1.0 (1.0.5-1) ... P: Configuring package libbz2-1.0 O: Setting up readline-common (5.2-3.1) ... P: Configuring package readline-common O: Setting up libreadline5 (5.2-3.1) ... P: Configuring package libreadline5 O: Setting up libusb-0.1-4 (2:0.1.12-13) ... P: Configuring package libusb-0.1-4 O: Setting up gpgv (1.4.9-3+lenny1) ... P: Configuring package gpgv O: Setting up gnupg (1.4.9-3+lenny1) ... P: Configuring package gnupg O: Setting up debian-archive-keyring (2009.01.31) ... P: Configuring package debian-archive-keyring O: gpg: keyring `/etc/apt/trusted.gpg' created O: gpg: O: /etc/apt/trustdb.gpg: trustdb created O: gpg: O: key 6070D3A1: public key "Debian Archive Automatic Signing Key (4.0/etch) " imported O: gpg: O: key ADB11277: public key "Etch Stable Release Key " imported O: gpg: O: key BBE55AB3: public key "Debian-Volatile Archive Automatic Signing Key (4.0/etch)" imported O: gpg: O: key F42584E6: public key "Lenny Stable Release Key " imported O: gpg: O: key 55BE302B: public key "Debian Archive Automatic Signing Key (5.0/lenny) " imported O: gpg: O: key 6D849617: public key "Debian-Volatile Archive Automatic Signing Key (5.0/lenny)" imported O: gpg: O: Total number processed: 6 O: gpg: O: imported: 6 O: (RSA: 2) O: O: gpg: O: no ultimately trusted keys found O: Setting up apt (0.7.20.2+lenny1) ... P: Configuring package apt O: gpg: key 6070D3A1: "Debian Archive Automatic Signing Key (4.0/etch) " not changed O: gpg: key ADB11277: "Etch Stable Release Key " not changed O: gpg: key BBE55AB3: "Debian-Volatile Archive Automatic Signing Key (4.0/etch)" not changed O: gpg: key F42584E6: "Lenny Stable Release Key " not changed O: gpg: key 55BE302B: "Debian Archive Automatic Signing Key (5.0/lenny) " not changed O: gpg: key 6D849617: "Debian-Volatile Archive Automatic Signing Key (5.0/lenny)" not changed O: gpg: Total number processed: 6 O: gpg: unchanged: 6 P: Configuring helper cdebootstrap-helper-apt O: Selecting previously deselected package cdebootstrap-helper-apt. O: (Reading database ... O: 5800 files and directories currently installed.) O: Unpacking cdebootstrap-helper-apt (from .../cdebootstrap-helper-apt.deb) ... O: Setting up cdebootstrap-helper-apt (1) ... O: Get:1 bootstrap: . Release.gpg [1032B] O: Get:2 bootstrap: . Release [73.6kB] O: Reading package lists... O: O: Reading package lists... O: O: Building dependency tree... O: O: Suggested packages: O: binutils-doc bzip2-doc cpp-doc gcc-4.3-locales debian-keyring g++-multilib O: g++-4.3-multilib gcc-4.3-doc libstdc++6-4.3-dbg gcc-multilib manpages-dev O: autoconf automake1.9 libtool flex bison gdb gcc-doc gcc-4.3-multilib O: libmudflap0-4.3-dev libgcc1-dbg libgomp1-dbg libmudflap0-dbg glibc-doc O: libstdc++6-4.3-doc make-doc ed diff-doc perl-doc libterm-readline-gnu-perl O: libterm-readline-perl-perl O: Recommended packages: O: netbase O: The following NEW packages will be installed: O: binutils build-essential bzip2 cpio cpp cpp-4.3 dpkg-dev fakeroot g++ O: g++-4.3 gcc gcc-4.3 libc6-dev libgdbm3 libgmp3c2 libgomp1 libmpfr1ldbl O: libstdc++6-4.3-dev libtimedate-perl linux-libc-dev make patch perl O: perl-modules O: 0 upgraded, 24 newly installed, 0 to remove and 0 not upgraded. O: Need to get 0B/27.8MB of archives. O: After this operation, 95.8MB of additional disk space will be used. O: WARNING: The following packages cannot be authenticated! O: cpio libgdbm3 patch perl-modules perl binutils linux-libc-dev libc6-dev O: libgmp3c2 libmpfr1ldbl cpp-4.3 cpp libgomp1 gcc-4.3 gcc libstdc++6-4.3-dev O: g++-4.3 g++ make bzip2 libtimedate-perl dpkg-dev build-essential fakeroot O: debconf: delaying package configuration, since apt-utils is not installed O: Authentication warning overridden. O: Can not write log, openpty() failed (/dev/pts not mounted?) O: Selecting previously deselected package cpio. O: (Reading database ... 5801 files and directories currently installed.) O: Unpacking cpio (from .../cpio_2.9-13_amd64.deb) ... P: Unpacking package cpio O: Selecting previously deselected package libgdbm3. O: Unpacking libgdbm3 (from .../libgdbm3_1.8.3-3_amd64.deb) ... P: Unpacking package libgdbm3 O: Selecting previously deselected package patch. O: Unpacking patch (from .../patch_2.5.9-5_amd64.deb) ... P: Unpacking package patch O: Selecting previously deselected package perl-modules. O: Unpacking perl-modules (from .../perl-modules_5.10.0-19lenny2_all.deb) ... P: Unpacking package perl-modules O: Selecting previously deselected package perl. O: Unpacking perl (from .../perl_5.10.0-19lenny2_amd64.deb) ... P: Unpacking package perl O: Selecting previously deselected package binutils. O: Unpacking binutils (from .../binutils_2.18.1~cvs20080103-7_amd64.deb) ... P: Unpacking package binutils O: Selecting previously deselected package linux-libc-dev. O: Unpacking linux-libc-dev (from .../linux-libc-dev_2.6.26-19_amd64.deb) ... P: Unpacking package linux-libc-dev O: Selecting previously deselected package libc6-dev. O: Unpacking libc6-dev (from .../libc6-dev_2.7-18_amd64.deb) ... P: Unpacking package libc6-dev O: Selecting previously deselected package libgmp3c2. O: Unpacking libgmp3c2 (from .../libgmp3c2_4.2.2+dfsg-3_amd64.deb) ... P: Unpacking package libgmp3c2 O: Selecting previously deselected package libmpfr1ldbl. O: Unpacking libmpfr1ldbl (from .../libmpfr1ldbl_2.3.1.dfsg.1-2_amd64.deb) ... P: Unpacking package libmpfr1ldbl O: Selecting previously deselected package cpp-4.3. O: Unpacking cpp-4.3 (from .../cpp-4.3_4.3.2-1.1_amd64.deb) ... P: Unpacking package cpp-4.3 O: Selecting previously deselected package cpp. O: Unpacking cpp (from .../cpp_4.3.2-2_amd64.deb) ... P: Unpacking package cpp O: Selecting previously deselected package libgomp1. O: Unpacking libgomp1 (from .../libgomp1_4.3.2-1.1_amd64.deb) ... P: Unpacking package libgomp1 O: Selecting previously deselected package gcc-4.3. O: Unpacking gcc-4.3 (from .../gcc-4.3_4.3.2-1.1_amd64.deb) ... P: Unpacking package gcc-4.3 O: Selecting previously deselected package gcc. O: Unpacking gcc (from .../gcc_4.3.2-2_amd64.deb) ... P: Unpacking package gcc O: Selecting previously deselected package libstdc++6-4.3-dev. O: Unpacking libstdc++6-4.3-dev (from .../libstdc++6-4.3-dev_4.3.2-1.1_amd64.deb) ... P: Unpacking package libstdc++6-4.3-dev O: Selecting previously deselected package g++-4.3. O: Unpacking g++-4.3 (from .../g++-4.3_4.3.2-1.1_amd64.deb) ... P: Unpacking package g++-4.3 O: Selecting previously deselected package g++. O: Unpacking g++ (from .../g++_4.3.2-2_amd64.deb) ... P: Unpacking package g++ O: Selecting previously deselected package make. O: Unpacking make (from .../make_3.81-5_amd64.deb) ... P: Unpacking package make O: Selecting previously deselected package bzip2. O: Unpacking bzip2 (from .../bzip2_1.0.5-1_amd64.deb) ... P: Unpacking package bzip2 O: Selecting previously deselected package libtimedate-perl. O: Unpacking libtimedate-perl (from .../libtimedate-perl_1.1600-9_all.deb) ... P: Unpacking package libtimedate-perl O: Selecting previously deselected package dpkg-dev. O: Unpacking dpkg-dev (from .../dpkg-dev_1.14.25_all.deb) ... P: Unpacking package dpkg-dev O: Selecting previously deselected package build-essential. O: Unpacking build-essential (from .../build-essential_11.4_amd64.deb) ... P: Unpacking package build-essential O: Selecting previously deselected package fakeroot. O: Unpacking fakeroot (from .../fakeroot_1.11_amd64.deb) ... P: Unpacking package fakeroot O: Can not write log, openpty() failed (/dev/pts not mounted?) O: Setting up cpio (2.9-13) ... P: Configuring package cpio O: Setting up libgdbm3 (1.8.3-3) ... P: Configuring package libgdbm3 O: Setting up patch (2.5.9-5) ... P: Configuring package patch O: Setting up binutils (2.18.1~cvs20080103-7) ... P: Configuring package binutils O: Setting up linux-libc-dev (2.6.26-19) ... P: Configuring package linux-libc-dev O: Setting up libc6-dev (2.7-18) ... P: Configuring package libc6-dev O: Setting up libgmp3c2 (2:4.2.2+dfsg-3) ... P: Configuring package libgmp3c2 O: Setting up libmpfr1ldbl (2.3.1.dfsg.1-2) ... P: Configuring package libmpfr1ldbl O: Setting up cpp-4.3 (4.3.2-1.1) ... P: Configuring package cpp-4.3 O: Setting up cpp (4:4.3.2-2) ... P: Configuring package cpp O: Setting up libgomp1 (4.3.2-1.1) ... P: Configuring package libgomp1 O: Setting up gcc-4.3 (4.3.2-1.1) ... P: Configuring package gcc-4.3 O: Setting up gcc (4:4.3.2-2) ... P: Configuring package gcc O: Setting up make (3.81-5) ... P: Configuring package make O: Setting up bzip2 (1.0.5-1) ... P: Configuring package bzip2 O: Setting up fakeroot (1.11) ... P: Configuring package fakeroot O: Setting up perl-modules (5.10.0-19lenny2) ... P: Configuring package perl-modules O: Setting up libstdc++6-4.3-dev (4.3.2-1.1) ... P: Configuring package libstdc++6-4.3-dev O: Setting up perl (5.10.0-19lenny2) ... P: Configuring package perl O: Setting up g++-4.3 (4.3.2-1.1) ... P: Configuring package g++-4.3 O: Setting up g++ (4:4.3.2-2) ... P: Configuring package g++ O: Setting up libtimedate-perl (1.1600-9) ... P: Configuring package libtimedate-perl O: Setting up dpkg-dev (1.14.25) ... P: Configuring package dpkg-dev O: Setting up build-essential (11.4) ... P: Configuring package build-essential P: Deconfiguring helper cdebootstrap-helper-apt O: (Reading database ... O: 9447 files and directories currently installed.) O: Removing cdebootstrap-helper-apt ... O: Purging configuration files for cdebootstrap-helper-apt ... O: Reading package lists... O: P: Deconfiguring helper cdebootstrap-helper-makedev O: (Reading database ... O: 9446 files and directories currently installed.) O: Removing cdebootstrap-helper-makedev ... O: Purging configuration files for cdebootstrap-helper-makedev ... P: Writing apt sources.list P: Writing hosts P: Writing resolv.conf I: debootstrap finished I: copying local configuration I: Installing apt-lines I: user script /var/cache/pbuilder/build//NUM/tmp/hooks/G50-initscripts-2.86.ds1-11-cdebootstrap0.3.9.sh starting warning: can't open /etc/mtab: No such file or directory umount: /sys: not mounted warning: can't open /etc/mtab: No such file or directory umount: /proc/bus/usb: not found warning: can't open /etc/mtab: No such file or directory umount: /dev/shm: not mounted warning: can't open /etc/mtab: No such file or directory umount: /proc: not mounted warning: can't open /etc/mtab: No such file or directory umount: /dev/pts: not mounted I: user script /var/cache/pbuilder/build//NUM/tmp/hooks/G50-initscripts-2.86.ds1-11-cdebootstrap0.3.9.sh finished I: Refreshing the base.tgz I: upgrading packages I: mounting /proc filesystem I: mounting /dev/pts filesystem I: policy-rc.d already exists Get:1 http://localhost lenny Release.gpg [1032B] Get:2 http://localhost lenny Release [73.6kB] Ign http://localhost lenny/main Packages Get:3 http://localhost lenny/main Packages [6848kB] Fetched XXXB in Xs (XXXXXB/s) Reading package lists... Reading package lists... Building dependency tree... Reading state information... 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. Reading package lists... Building dependency tree... Reading state information... build-essential is already the newest version. dpkg-dev is already the newest version. apt is already the newest version. The following extra packages will be installed: libcwidget3 libept0 libncursesw5 libsigc++-2.0-0c2a libxapian15 Suggested packages: tasksel debtags libcwidget-dev xapian-tools Recommended packages: aptitude-doc-en aptitude-doc libparse-debianchangelog-perl libgpm2 The following NEW packages will be installed: aptitude libcwidget3 libept0 libncursesw5 libsigc++-2.0-0c2a libxapian15 0 upgraded, 6 newly installed, 0 to remove and 0 not upgraded. Need to get 4793kB of archives. After this operation, 14.1MB of additional disk space will be used. Get:1 http://localhost lenny/main libncursesw5 5.7+20081213-1 [375kB] Get:2 http://localhost lenny/main libsigc++-2.0-0c2a 2.0.18-2 [34.2kB] Get:3 http://localhost lenny/main libcwidget3 0.5.12-4 [310kB] Get:4 http://localhost lenny/main libxapian15 1.0.7-4 [801kB] Get:5 http://localhost lenny/main libept0 0.5.22 [205kB] Get:6 http://localhost lenny/main aptitude 0.4.11.11-1~lenny1 [3068kB] debconf: delaying package configuration, since apt-utils is not installed Fetched XXXB in Xs (XXXXXB/s) Selecting previously deselected package libncursesw5. (Reading database ... 9446 files and directories currently installed.) Unpacking libncursesw5 (from .../libncursesw5_5.7+20081213-1_amd64.deb) ... Selecting previously deselected package libsigc++-2.0-0c2a. Unpacking libsigc++-2.0-0c2a (from .../libsigc++-2.0-0c2a_2.0.18-2_amd64.deb) ... Selecting previously deselected package libcwidget3. Unpacking libcwidget3 (from .../libcwidget3_0.5.12-4_amd64.deb) ... Selecting previously deselected package libxapian15. Unpacking libxapian15 (from .../libxapian15_1.0.7-4_amd64.deb) ... Selecting previously deselected package libept0. Unpacking libept0 (from .../libept0_0.5.22_amd64.deb) ... Selecting previously deselected package aptitude. Unpacking aptitude (from .../aptitude_0.4.11.11-1~lenny1_amd64.deb) ... Setting up libncursesw5 (5.7+20081213-1) ... Setting up libsigc++-2.0-0c2a (2.0.18-2) ... Setting up libcwidget3 (0.5.12-4) ... Setting up libxapian15 (1.0.7-4) ... Setting up libept0 (0.5.22) ... Setting up aptitude (0.4.11.11-1~lenny1) ... I: user script /var/cache/pbuilder/build//NUM/tmp/hooks/E50-initscripts-2.86.ds1-7.workaround.sh starting umount: none: not found umount: /sys: not mounted umount: none: not found umount: /sys: not mounted umount: /run: not found umount: usbfs: not found umount: /proc/bus/usb: not mounted umount: usbfs: not found umount: /proc/bus/usb: not mounted umount: tmpfs: not found umount: /dev/shm: not mounted umount: tmpfs: not found umount: /dev/shm: not mounted umount: tmpfs: not found umount: /lib/init/rw: not mounted umount: tmpfs: not found umount: /lib/init/rw: not mounted cat: /var/run/inetd.pid: No such file or directory kill: usage: kill [-s sigspec | -n signum | -sigspec] pid | jobspec ... or kill -l [sigspec] I: user script /var/cache/pbuilder/build//NUM/tmp/hooks/E50-initscripts-2.86.ds1-7.workaround.sh finished I: unmounting dev/pts filesystem I: unmounting proc filesystem I: creating base tarball [/TESTDIR/testimage] I: cleaning the build env I: removing directory /var/cache/pbuilder/build//NUM and its subdirectories pbuilder-0.215ubuntu7/testsuite/cdebootstrap/pbuilder-update-squeeze-sid.log0000664000000000000000000003615112312041170024315 0ustar I: Upgrading for distribution sid I: Building the build Environment I: extracting base tarball [/TESTDIR/testimage] I: creating local configuration I: copying local configuration I: Installing apt-lines I: mounting /proc filesystem I: mounting /dev/pts filesystem I: policy-rc.d already exists I: Refreshing the base.tgz I: upgrading packages Get:1 http://localhost sid Release.gpg [835B] Get:2 http://localhost sid Release [104kB] Ign http://localhost sid/main Packages Ign http://localhost sid/main Packages Get:3 http://localhost sid/main Packages [8343kB] Fetched XXXB in Xs (XXXXXB/s) Reading package lists... Reading package lists... Building dependency tree... Reading state information... The following NEW packages will be installed: cpp-4.4 g++-4.4 gcc-4.4 libapr1 libaprutil1 libboost-iostreams1.40.0 libdb4.8 libexpat1 liblog4cxx10 liblzma1 libsqlite3-0 libstdc++6-4.4-dev The following packages will be upgraded: apt aptitude bash coreutils cpp dpkg dpkg-dev g++ gcc gcc-4.4-base libgcc1 libgomp1 libmpfr1ldbl libstdc++6 linux-libc-dev sed xz-utils 17 upgraded, 12 newly installed, 0 to remove and 0 not upgraded. Need to get 32.0MB of archives. After this operation, 43.7MB of additional disk space will be used. Get:1 http://localhost sid/main bash 4.0-7 [1150kB] Get:2 http://localhost sid/main coreutils 8.0-2 [4490kB] Get:3 http://localhost sid/main dpkg 1.15.5.4 [2226kB] Get:4 http://localhost sid/main sed 4.2.1-6 [251kB] Get:5 http://localhost sid/main libgomp1 4.4.2-4 [25.3kB] Get:6 http://localhost sid/main gcc-4.4-base 4.4.2-4 [114kB] Get:7 http://localhost sid/main libgcc1 1:4.4.2-4 [44.8kB] Get:8 http://localhost sid/main libstdc++6 4.4.2-4 [342kB] Get:9 http://localhost sid/main apt 0.7.24 [1684kB] Get:10 http://localhost sid/main libboost-iostreams1.40.0 1.40.0-4 [40.7kB] Get:11 http://localhost sid/main libapr1 1.3.8-1 [123kB] Get:12 http://localhost sid/main libdb4.8 4.8.24-1 [681kB] Get:13 http://localhost sid/main libexpat1 2.0.1-5 [135kB] Get:14 http://localhost sid/main libaprutil1 1.3.9+dfsg-3 [90.7kB] Get:15 http://localhost sid/main liblog4cxx10 0.10.0-1 [574kB] Get:16 http://localhost sid/main libsqlite3-0 3.6.21-2 [304kB] Get:17 http://localhost sid/main aptitude 0.6.1.3-3 [3668kB] Get:18 http://localhost sid/main libmpfr1ldbl 2.4.2-3 [428kB] Get:19 http://localhost sid/main cpp-4.4 4.4.2-4 [3886kB] Get:20 http://localhost sid/main cpp 4:4.4.2-2 [14.7kB] Get:21 http://localhost sid/main liblzma1 4.999.9beta+20091116-1 [150kB] Get:22 http://localhost sid/main xz-utils 4.999.9beta+20091116-1 [229kB] Get:23 http://localhost sid/main dpkg-dev 1.15.5.4 [763kB] Get:24 http://localhost sid/main gcc-4.4 4.4.2-4 [2672kB] Get:25 http://localhost sid/main gcc 4:4.4.2-2 [4982B] Get:26 http://localhost sid/main libstdc++6-4.4-dev 4.4.2-4 [1552kB] Get:27 http://localhost sid/main g++-4.4 4.4.2-4 [5519kB] Get:28 http://localhost sid/main g++ 4:4.4.2-2 [1374B] Get:29 http://localhost sid/main linux-libc-dev 2.6.32-1 [849kB] debconf: delaying package configuration, since apt-utils is not installed Fetched XXXB in Xs (XXXXXB/s) (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 10094 files and directories currently installed.) Preparing to replace bash 4.0-4 (using .../archives/bash_4.0-7_amd64.deb) ... Unpacking replacement bash ... Setting up bash (4.0-7) ... update-alternatives: using /usr/share/man/man7/bash-builtins.7.gz to provide /usr/share/man/man7/builtins.7.gz (builtins.7.gz) in auto mode. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 10094 files and directories currently installed.) Preparing to replace coreutils 7.4-2 (using .../coreutils_8.0-2_amd64.deb) ... install-info: warning: maintainer scripts should not call install-info anymore, install-info: warning: this is handled now by a dpkg trigger provided by the install-info: warning: install-info package; package coreutils should be updated. Unpacking replacement coreutils ... Setting up coreutils (8.0-2) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 10105 files and directories currently installed.) Preparing to replace dpkg 1.15.5.3 (using .../dpkg_1.15.5.4_amd64.deb) ... Unpacking replacement dpkg ... Setting up dpkg (1.15.5.4) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 10105 files and directories currently installed.) Preparing to replace sed 4.2.1-4 (using .../archives/sed_4.2.1-6_amd64.deb) ... Unpacking replacement sed ... Setting up sed (4.2.1-6) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 10105 files and directories currently installed.) Preparing to replace libgomp1 4.4.2-3 (using .../libgomp1_4.4.2-4_amd64.deb) ... Unpacking replacement libgomp1 ... Preparing to replace gcc-4.4-base 4.4.2-3 (using .../gcc-4.4-base_4.4.2-4_amd64.deb) ... Unpacking replacement gcc-4.4-base ... Setting up gcc-4.4-base (4.4.2-4) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 10105 files and directories currently installed.) Preparing to replace libgcc1 1:4.4.2-3 (using .../libgcc1_1%3a4.4.2-4_amd64.deb) ... Unpacking replacement libgcc1 ... Setting up libgcc1 (1:4.4.2-4) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 10105 files and directories currently installed.) Preparing to replace libstdc++6 4.4.2-3 (using .../libstdc++6_4.4.2-4_amd64.deb) ... Unpacking replacement libstdc++6 ... Setting up libstdc++6 (4.4.2-4) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 10105 files and directories currently installed.) Preparing to replace apt 0.7.23.1 (using .../archives/apt_0.7.24_amd64.deb) ... Unpacking replacement apt ... Setting up apt (0.7.24) ... gpg: key 6070D3A1: "Debian Archive Automatic Signing Key (4.0/etch) " not changed gpg: key ADB11277: "Etch Stable Release Key " not changed gpg: key BBE55AB3: "Debian-Volatile Archive Automatic Signing Key (4.0/etch)" not changed gpg: key F42584E6: "Lenny Stable Release Key " not changed gpg: key 55BE302B: "Debian Archive Automatic Signing Key (5.0/lenny) " not changed gpg: key 6D849617: "Debian-Volatile Archive Automatic Signing Key (5.0/lenny)" not changed gpg: Total number processed: 6 gpg: unchanged: 6 Selecting previously deselected package libboost-iostreams1.40.0. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 10111 files and directories currently installed.) Unpacking libboost-iostreams1.40.0 (from .../libboost-iostreams1.40.0_1.40.0-4_amd64.deb) ... Selecting previously deselected package libapr1. Unpacking libapr1 (from .../libapr1_1.3.8-1_amd64.deb) ... Selecting previously deselected package libdb4.8. Unpacking libdb4.8 (from .../libdb4.8_4.8.24-1_amd64.deb) ... Selecting previously deselected package libexpat1. Unpacking libexpat1 (from .../libexpat1_2.0.1-5_amd64.deb) ... Selecting previously deselected package libaprutil1. Unpacking libaprutil1 (from .../libaprutil1_1.3.9+dfsg-3_amd64.deb) ... Selecting previously deselected package liblog4cxx10. Unpacking liblog4cxx10 (from .../liblog4cxx10_0.10.0-1_amd64.deb) ... Selecting previously deselected package libsqlite3-0. Unpacking libsqlite3-0 (from .../libsqlite3-0_3.6.21-2_amd64.deb) ... Preparing to replace aptitude 0.4.11.11-1+b2 (using .../aptitude_0.6.1.3-3_amd64.deb) ... Unpacking replacement aptitude ... Preparing to replace libmpfr1ldbl 2.4.1-2 (using .../libmpfr1ldbl_2.4.2-3_amd64.deb) ... Unpacking replacement libmpfr1ldbl ... Selecting previously deselected package cpp-4.4. Unpacking cpp-4.4 (from .../cpp-4.4_4.4.2-4_amd64.deb) ... Preparing to replace cpp 4:4.3.4-1 (using .../cpp_4%3a4.4.2-2_amd64.deb) ... Unpacking replacement cpp ... Selecting previously deselected package liblzma1. Unpacking liblzma1 (from .../liblzma1_4.999.9beta+20091116-1_amd64.deb) ... Preparing to replace xz-utils 4.999.9beta+20091004-1 (using .../xz-utils_4.999.9beta+20091116-1_amd64.deb) ... Unpacking replacement xz-utils ... Preparing to replace dpkg-dev 1.15.5.3 (using .../dpkg-dev_1.15.5.4_all.deb) ... Unpacking replacement dpkg-dev ... Selecting previously deselected package gcc-4.4. Unpacking gcc-4.4 (from .../gcc-4.4_4.4.2-4_amd64.deb) ... Preparing to replace gcc 4:4.3.4-1 (using .../gcc_4%3a4.4.2-2_amd64.deb) ... Removing old gcc doc directory. Unpacking replacement gcc ... Selecting previously deselected package libstdc++6-4.4-dev. Unpacking libstdc++6-4.4-dev (from .../libstdc++6-4.4-dev_4.4.2-4_amd64.deb) ... Selecting previously deselected package g++-4.4. Unpacking g++-4.4 (from .../g++-4.4_4.4.2-4_amd64.deb) ... Preparing to replace g++ 4:4.3.4-1 (using .../g++_4%3a4.4.2-2_amd64.deb) ... Unpacking replacement g++ ... Preparing to replace linux-libc-dev 2.6.30-8 (using .../linux-libc-dev_2.6.32-1_amd64.deb) ... Unpacking replacement linux-libc-dev ... Setting up libgomp1 (4.4.2-4) ... Setting up libboost-iostreams1.40.0 (1.40.0-4) ... Setting up libapr1 (1.3.8-1) ... Setting up libdb4.8 (4.8.24-1) ... Setting up libexpat1 (2.0.1-5) ... Setting up libaprutil1 (1.3.9+dfsg-3) ... Setting up liblog4cxx10 (0.10.0-1) ... Setting up libsqlite3-0 (3.6.21-2) ... Setting up aptitude (0.6.1.3-3) ... update-alternatives: using /usr/bin/aptitude-curses to provide /usr/bin/aptitude (aptitude) in auto mode. Setting up libmpfr1ldbl (2.4.2-3) ... Setting up cpp-4.4 (4.4.2-4) ... Setting up cpp (4:4.4.2-2) ... Setting up liblzma1 (4.999.9beta+20091116-1) ... Setting up xz-utils (4.999.9beta+20091116-1) ... Setting up dpkg-dev (1.15.5.4) ... Setting up gcc-4.4 (4.4.2-4) ... Setting up gcc (4:4.4.2-2) ... Setting up linux-libc-dev (2.6.32-1) ... Setting up g++-4.4 (4.4.2-4) ... Setting up libstdc++6-4.4-dev (4.4.2-4) ... Setting up g++ (4:4.4.2-2) ... Reading package lists... Building dependency tree... Reading state information... 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. Reading package lists... Building dependency tree... Reading state information... build-essential is already the newest version. dpkg-dev is already the newest version. apt is already the newest version. aptitude is already the newest version. 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. I: user script /var/cache/pbuilder/build//NUM/tmp/hooks/E50-initscripts-2.86.ds1-7.workaround.sh starting umount: /sys: not mounted umount: /run: not found umount: /proc/bus/usb: not mounted umount: /dev/shm: not mounted umount: /lib/init/rw: not mounted cat: /var/run/inetd.pid: No such file or directory kill: 20: Usage: kill [-s sigspec | -signum | -sigspec] [pid | job]... or kill -l [exitstatus] I: user script /var/cache/pbuilder/build//NUM/tmp/hooks/E50-initscripts-2.86.ds1-7.workaround.sh finished I: unmounting dev/pts filesystem I: unmounting proc filesystem I: creating base tarball [/TESTDIR/testimage] I: cleaning the build env I: removing directory /var/cache/pbuilder/build//NUM and its subdirectories pbuilder-0.215ubuntu7/testsuite/cdebootstrap/pdebuild-normal-lenny.log0000664000000000000000000007253212312041170023177 0ustar dpkg-buildpackage: set CFLAGS to default value: -g -O2 dpkg-buildpackage: set CPPFLAGS to default value: dpkg-buildpackage: set LDFLAGS to default value: dpkg-buildpackage: set FFLAGS to default value: -g -O2 dpkg-buildpackage: set CXXFLAGS to default value: -g -O2 dpkg-buildpackage: source package dsh dpkg-buildpackage: source version 0.25.10-1 dpkg-buildpackage: source changed by Junichi Uekawa fakeroot debian/rules clean dh_testdir dh_testroot rm -f build-stamp configure-stamp /usr/bin/make clean make[1]: Entering directory `/TESTDIR/dir2/dsh-0.25.10' make[1]: *** No rule to make target `clean'. Stop. make[1]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10' make: [clean] Error 2 (ignored) /usr/bin/make distclean make[1]: Entering directory `/TESTDIR/dir2/dsh-0.25.10' make[1]: *** No rule to make target `distclean'. Stop. make[1]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10' make: [clean] Error 2 (ignored) dh_clean dpkg-source -b dsh-0.25.10 dpkg-source: info: using source format `1.0' dpkg-source: info: building dsh using existing dsh_0.25.10.orig.tar.gz dpkg-source: info: building dsh in dsh_0.25.10-1.diff.gz dpkg-source: warning: file dsh-0.25.10/dcp.sh has no final newline (either original or modified version) dpkg-source: warning: file dsh-0.25.10/debian/compat has no final newline (either original or modified version) dpkg-source: info: building dsh in dsh_0.25.10-1.dsc dpkg-genchanges -S >../dsh_0.25.10-1_source.changes dpkg-genchanges: including full source code in upload dpkg-buildpackage: source only upload (original source is included) W: /home/dancer/.pbuilderrc does not exist I: using fakeroot in build. I: Current time: Sun Nov 29 19:22:51 JST 2009 I: pbuilder-time-stamp: 1259490171 I: Building the build Environment I: extracting base tarball [/TESTDIR/testimage] I: creating local configuration I: copying local configuration I: mounting /proc filesystem I: mounting /dev/pts filesystem I: policy-rc.d already exists I: Installing the build-deps -> Attempting to satisfy build-dependencies -> Creating pbuilder-satisfydepends-dummy package Package: pbuilder-satisfydepends-dummy Version: 0.invalid.0 Architecture: amd64 Maintainer: Debian Pbuilder Team Description: Dummy package to satisfy dependencies with aptitude - created by pbuilder This package was created automatically by pbuilder and should Depends: debhelper (>> 3.0.0), libdshconfig1-dev (>= 0.20.11-1), po4a dpkg-deb: building package `pbuilder-satisfydepends-dummy' in `/tmp/satisfydepends-aptitude/pbuilder-satisfydepends-dummy.deb'. Reading package lists... Building dependency tree... Reading state information... aptitude is already the newest version. 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. Selecting previously deselected package pbuilder-satisfydepends-dummy. (Reading database ... 9634 files and directories currently installed.) Unpacking pbuilder-satisfydepends-dummy (from .../pbuilder-satisfydepends-dummy.deb) ... dpkg: dependency problems prevent configuration of pbuilder-satisfydepends-dummy: pbuilder-satisfydepends-dummy depends on debhelper (>> 3.0.0); however: Package debhelper is not installed. pbuilder-satisfydepends-dummy depends on libdshconfig1-dev (>= 0.20.11-1); however: Package libdshconfig1-dev is not installed. pbuilder-satisfydepends-dummy depends on po4a; however: Package po4a is not installed. dpkg: error processing pbuilder-satisfydepends-dummy (--install): dependency problems - leaving unconfigured Errors were encountered while processing: pbuilder-satisfydepends-dummy Reading package lists... Building dependency tree... Reading state information... Initializing package states... Writing extended state information... The following NEW packages will be installed: bsdmainutils{a} debhelper{a} file{a} gettext{a} gettext-base{a} groff-base{a} html2text{a} intltool-debian{a} libdshconfig1{a} libdshconfig1-dev{a} libmagic1{a} libsgmls-perl{a} libsp1c2{a} man-db{a} po-debconf{a} po4a{a} sp{a} The following partially installed packages will be configured: pbuilder-satisfydepends-dummy 0 packages upgraded, 17 newly installed, 0 to remove and 0 not upgraded. Need to get 8922kB of archives. After unpacking 28.1MB will be used. Writing extended state information... Get:1 http://localhost lenny/main libmagic1 4.26-1 [369kB] Get:2 http://localhost lenny/main file 4.26-1 [44.5kB] Get:3 http://localhost lenny/main html2text 1.3.2a-5 [95.9kB] Get:4 http://localhost lenny/main gettext-base 0.17-4 [136kB] Get:5 http://localhost lenny/main gettext 0.17-4 [2791kB] Get:6 http://localhost lenny/main intltool-debian 0.35.0+20060710.1 [30.8kB] Get:7 http://localhost lenny/main po-debconf 1.0.15 [237kB] Get:8 http://localhost lenny/main groff-base 1.18.1.1-21 [898kB] Get:9 http://localhost lenny/main bsdmainutils 6.1.10 [179kB] Get:10 http://localhost lenny/main man-db 2.5.2-4 [1107kB] Get:11 http://localhost lenny/main debhelper 7.0.15 [554kB] Get:12 http://localhost lenny/main libdshconfig1 0.20.13-1 [11.0kB] Get:13 http://localhost lenny/main libdshconfig1-dev 0.20.13-1 [25.4kB] Get:14 http://localhost lenny/main libsgmls-perl 1.03ii-32 [27.8kB] Get:15 http://localhost lenny/main libsp1c2 1.3.4-1.2.1-47 [1386kB] Get:16 http://localhost lenny/main sp 1.3.4-1.2.1-47 [182kB] Get:17 http://localhost lenny/main po4a 0.34-2 [847kB] debconf: delaying package configuration, since apt-utils is not installed Fetched XXXB in Xs (XXXXXB/s) Selecting previously deselected package libmagic1. (Reading database ... 9634 files and directories currently installed.) Unpacking libmagic1 (from .../libmagic1_4.26-1_amd64.deb) ... Selecting previously deselected package file. Unpacking file (from .../archives/file_4.26-1_amd64.deb) ... Selecting previously deselected package html2text. Unpacking html2text (from .../html2text_1.3.2a-5_amd64.deb) ... Selecting previously deselected package gettext-base. Unpacking gettext-base (from .../gettext-base_0.17-4_amd64.deb) ... Selecting previously deselected package gettext. Unpacking gettext (from .../gettext_0.17-4_amd64.deb) ... Selecting previously deselected package intltool-debian. Unpacking intltool-debian (from .../intltool-debian_0.35.0+20060710.1_all.deb) ... Selecting previously deselected package po-debconf. Unpacking po-debconf (from .../po-debconf_1.0.15_all.deb) ... Selecting previously deselected package groff-base. Unpacking groff-base (from .../groff-base_1.18.1.1-21_amd64.deb) ... Selecting previously deselected package bsdmainutils. Unpacking bsdmainutils (from .../bsdmainutils_6.1.10_amd64.deb) ... Selecting previously deselected package man-db. Unpacking man-db (from .../man-db_2.5.2-4_amd64.deb) ... Selecting previously deselected package debhelper. Unpacking debhelper (from .../debhelper_7.0.15_all.deb) ... Selecting previously deselected package libdshconfig1. Unpacking libdshconfig1 (from .../libdshconfig1_0.20.13-1_amd64.deb) ... Selecting previously deselected package libdshconfig1-dev. Unpacking libdshconfig1-dev (from .../libdshconfig1-dev_0.20.13-1_amd64.deb) ... Selecting previously deselected package libsgmls-perl. Unpacking libsgmls-perl (from .../libsgmls-perl_1.03ii-32_all.deb) ... Selecting previously deselected package libsp1c2. Unpacking libsp1c2 (from .../libsp1c2_1.3.4-1.2.1-47_amd64.deb) ... Selecting previously deselected package sp. Unpacking sp (from .../sp_1.3.4-1.2.1-47_amd64.deb) ... Selecting previously deselected package po4a. Unpacking po4a (from .../archives/po4a_0.34-2_all.deb) ... Setting up libmagic1 (4.26-1) ... Setting up file (4.26-1) ... Setting up html2text (1.3.2a-5) ... Setting up gettext-base (0.17-4) ... Setting up gettext (0.17-4) ... Setting up intltool-debian (0.35.0+20060710.1) ... Setting up po-debconf (1.0.15) ... Setting up groff-base (1.18.1.1-21) ... Setting up bsdmainutils (6.1.10) ... Setting up man-db (2.5.2-4) ... Building database of manual pages ... Setting up debhelper (7.0.15) ... Setting up libdshconfig1 (0.20.13-1) ... Setting up libdshconfig1-dev (0.20.13-1) ... Setting up libsgmls-perl (1.03ii-32) ... Setting up libsp1c2 (1.3.4-1.2.1-47) ... Setting up sp (1.3.4-1.2.1-47) ... Setting up po4a (0.34-2) ... Setting up pbuilder-satisfydepends-dummy (0.invalid.0) ... Reading package lists... Building dependency tree... Reading state information... Reading extended state information... Initializing package states... Writing extended state information... -> Finished parsing the build-deps Reading package lists... Building dependency tree... Reading state information... aptitude is already the newest version. fakeroot is already the newest version. 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. I: Copying source file I: copying [../dsh_0.25.10-1.dsc] I: copying [../dsh_0.25.10.orig.tar.gz] I: copying [../dsh_0.25.10-1.diff.gz] I: Extracting source dpkg-source: warning: extracting unsigned source package (dsh_0.25.10-1.dsc) dpkg-source: extracting dsh in dsh-0.25.10 dpkg-source: info: unpacking dsh_0.25.10.orig.tar.gz dpkg-source: info: applying dsh_0.25.10-1.diff.gz I: Building the package dpkg-buildpackage: set CFLAGS to default value: -g -O2 dpkg-buildpackage: set CPPFLAGS to default value: dpkg-buildpackage: set LDFLAGS to default value: dpkg-buildpackage: set FFLAGS to default value: -g -O2 dpkg-buildpackage: set CXXFLAGS to default value: -g -O2 dpkg-buildpackage: source package dsh dpkg-buildpackage: source version 0.25.10-1 dpkg-buildpackage: source changed by Junichi Uekawa dpkg-buildpackage: host architecture amd64 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.10' make[1]: *** No rule to make target `clean'. Stop. make[1]: Leaving directory `/tmp/buildd/dsh-0.25.10' make: [clean] Error 2 (ignored) /usr/bin/make distclean make[1]: Entering directory `/tmp/buildd/dsh-0.25.10' make[1]: *** No rule to make target `distclean'. Stop. make[1]: Leaving directory `/tmp/buildd/dsh-0.25.10' make: [clean] Error 2 (ignored) dh_clean dpkg-source -b dsh-0.25.10 dpkg-source: info: using source format `1.0' dpkg-source: info: building dsh using existing dsh_0.25.10.orig.tar.gz dpkg-source: info: building dsh in dsh_0.25.10-1.diff.gz dpkg-source: warning: file dsh-0.25.10/dcp.sh has no final newline (either original or modified version) dpkg-source: warning: file dsh-0.25.10/debian/compat has no final newline (either original or modified version) dpkg-source: info: building dsh in dsh_0.25.10-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 ISO C89... none needed checking dependency style of gcc... gcc3 checking for strerror in -lcposix... no checking for gcc... (cached) gcc checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) 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 ISO C89... (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 grep that handles long lines and -e... /bin/grep checking for egrep... /bin/grep -E checking for ANSI C header files... yes checking for sys/wait.h that is POSIX.1 compatible... yes checking build system type... x86_64-unknown-linux-gnu checking host system type... x86_64-unknown-linux-gnu checking for a sed that does not truncate output... /bin/sed checking for ld used by gcc... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for /usr/bin/ld option to reload object files... -r checking for BSD-compatible nm... /usr/bin/nm -B checking whether ln -s works... yes checking how to recognize dependent libraries... pass_all checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking dlfcn.h usability... yes checking dlfcn.h presence... yes checking for dlfcn.h... yes checking for g++... g++ checking whether we are using the GNU C++ compiler... yes checking whether g++ accepts -g... yes checking dependency style of g++... gcc3 checking how to run the C++ preprocessor... g++ -E checking for g77... no checking for xlf... no checking for f77... no checking for frt... no checking for pgf77... no checking for cf77... no checking for fort77... no checking for fl32... no checking for af77... no checking for xlf90... no checking for f90... no checking for pgf90... no checking for pghpf... no checking for epcf90... no checking for gfortran... no checking for g95... no checking for xlf95... no checking for f95... no checking for fort... no checking for ifort... no checking for ifc... no checking for efc... no checking for pgf95... no checking for lf95... no checking for ftn... no checking whether we are using the GNU Fortran 77 compiler... no checking whether accepts -g... no checking the maximum length of command line arguments... 98304 checking command to parse /usr/bin/nm -B output from gcc object... ok checking for objdir... .libs checking for ar... ar checking for ranlib... ranlib checking for strip... strip checking if gcc supports -fno-rtti -fno-exceptions... no checking for gcc option to produce PIC... -fPIC checking if gcc PIC flag -fPIC works... yes checking if gcc static flag -static works... yes checking if gcc supports -c -o file.o... yes checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) 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 -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking for g++ option to produce PIC... -fPIC checking if g++ PIC flag -fPIC works... yes checking if g++ static flag -static works... yes checking if g++ supports -c -o file.o... yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate appending configuration tag "F77" to libtool checking 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 -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) 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: WARNING: po/Makefile.in.in seems to ignore the --datarootdir setting 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.10' /usr/bin/make all-recursive make[2]: Entering directory `/tmp/buildd/dsh-0.25.10' Making all in m4 make[3]: Entering directory `/tmp/buildd/dsh-0.25.10/m4' make[3]: Nothing to be done for `all'. make[3]: Leaving directory `/tmp/buildd/dsh-0.25.10/m4' Making all in po make[3]: Entering directory `/tmp/buildd/dsh-0.25.10/po' make[3]: Nothing to be done for `all'. make[3]: Leaving directory `/tmp/buildd/dsh-0.25.10/po' make[3]: Entering directory `/tmp/buildd/dsh-0.25.10' 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 --tag=CC --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.10' make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10' make[1]: Leaving directory `/tmp/buildd/dsh-0.25.10' /usr/bin/make check make[1]: Entering directory `/tmp/buildd/dsh-0.25.10' Making check in m4 make[2]: Entering directory `/tmp/buildd/dsh-0.25.10/m4' make[2]: Nothing to be done for `check'. make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10/m4' Making check in po make[2]: Entering directory `/tmp/buildd/dsh-0.25.10/po' make[2]: Nothing to be done for `check'. make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10/po' make[2]: Entering directory `/tmp/buildd/dsh-0.25.10' /usr/bin/make dsh make[3]: Entering directory `/tmp/buildd/dsh-0.25.10' make[3]: `dsh' is up to date. make[3]: Leaving directory `/tmp/buildd/dsh-0.25.10' /usr/bin/make check-TESTS make[3]: Entering directory `/tmp/buildd/dsh-0.25.10' PASS: tests/param-f.sh dsh: File ./tests/nonexistent.file could not be opened for read PASS: tests/param-f-fail.sh PASS: tests/param-f-with-space.sh PASS: tests/param-m.sh test to check that unknown parameter checking is right. ./dsh: unrecognized option `--unknown-parameter' ./dsh: invalid option -- u PASS: tests/param-unknown.sh test1 test2 dsh: Process terminated (before write). PASS: tests/param-i.sh Check that cn4 option is working. PASS: tests/param-cn4.sh test to check that -b0 is rejected, and -b1 is accepted Buffer size needs to be greater than 1 Buffer size needs to be greater than 1 a b PASS: tests/param-b-0.sh dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call success dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call success success success success success a: dsh: Failed executing ./invalid-exec-file with llexec call b: dsh: Failed executing ./invalid-exec-file with llexec call c: dsh: Failed executing ./invalid-exec-file with llexec call d: dsh: Failed executing ./invalid-exec-file with llexec call success dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call success PASS: tests/param-r-invalid.sh 1: 1 2: 2 dsh: fork limit and wait shell cannot be specified at the same time PASS: tests/param-F-invalid.sh Sun Nov 29 10:23:37 UTC 2009 2: Using sleep as the remote shell 2: Show machine names on output 2: Adding machine 5,4,3,2,1 to list 2: Setting forklimit to 3 and wait_shell to 0 2: DUMPing parameters passed to llexec 2: [2] Using sleep as the remote shell Show machine names on output Adding machine 5,4,3,2,1 to list Setting forklimit to 3 and wait_shell to 0 DUMPing parameters passed to llexec [2] 3: Using sleep as the remote shell 3: Show machine names on output 3: Adding machine 5,4,3,2,1 to list 3: Setting forklimit to 3 and wait_shell to 0 3: DUMPing parameters passed to llexec 3: [3] Using sleep as the remote shell Show machine names on output Adding machine 5,4,3,2,1 to list Setting forklimit to 3 and wait_shell to 0 DUMPing parameters passed to llexec [3] 1: Using sleep as the remote shell 1: Show machine names on output 1: Adding machine 5,4,3,2,1 to list 1: Setting forklimit to 3 and wait_shell to 0 1: ... Waiting for process to end with waitpid 1: DUMPing parameters passed to llexec 1: [1] Using sleep as the remote shell Show machine names on output Adding machine 5,4,3,2,1 to list Setting forklimit to 3 and wait_shell to 0 ... Waiting for process to end with waitpid DUMPing parameters passed to llexec [1] 4: Using sleep as the remote shell 4: Show machine names on output 4: Adding machine 5,4,3,2,1 to list 4: Setting forklimit to 3 and wait_shell to 0 4: DUMPing parameters passed to llexec 4: [4] Using sleep as the remote shell Show machine names on output Adding machine 5,4,3,2,1 to list Setting forklimit to 3 and wait_shell to 0 DUMPing parameters passed to llexec [4] 5: Using sleep as the remote shell 5: Show machine names on output 5: Adding machine 5,4,3,2,1 to list 5: Setting forklimit to 3 and wait_shell to 0 5: DUMPing parameters passed to llexec 5: [5] Using sleep as the remote shell Show machine names on output Adding machine 5,4,3,2,1 to list Setting forklimit to 3 and wait_shell to 0 DUMPing parameters passed to llexec [5] --- Terminated running Using sleep as the remote shell Show machine names on output Adding machine 5,4,3,2,1 to list Setting forklimit to 3 and wait_shell to 0 ... Waiting for process to end with waitpid ... Waiting for process to end with waitpid Sun Nov 29 10:23:42 UTC 2009 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.10' make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10' make[1]: Leaving directory `/tmp/buildd/dsh-0.25.10' 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.10/debian/dsh make[1]: Entering directory `/tmp/buildd/dsh-0.25.10' Making install in m4 make[2]: Entering directory `/tmp/buildd/dsh-0.25.10/m4' make[3]: Entering directory `/tmp/buildd/dsh-0.25.10/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.10/m4' make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10/m4' Making install in po make[2]: Entering directory `/tmp/buildd/dsh-0.25.10/po' /bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share mkdir -p -- /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share mkdir -p -- /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/locale/ja/LC_MESSAGES installing ja.gmo as /tmp/buildd/dsh-0.25.10/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.10/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.10/debian/dsh/usr/share/gettext/po/$file; \ done; \ else \ : ; \ fi make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10/po' make[2]: Entering directory `/tmp/buildd/dsh-0.25.10' make[3]: Entering directory `/tmp/buildd/dsh-0.25.10' test -z "/usr/bin" || mkdir -p -- "/tmp/buildd/dsh-0.25.10/debian/dsh/usr/bin" /bin/sh ./libtool --mode=install install -p -o root -g root -m 755 -s 'dsh' '/tmp/buildd/dsh-0.25.10/debian/dsh/usr/bin/dsh' install -p -o root -g root -m 755 -s dsh /tmp/buildd/dsh-0.25.10/debian/dsh/usr/bin/dsh test -z "/etc/dsh" || mkdir -p -- "/tmp/buildd/dsh-0.25.10/debian/dsh/etc/dsh" /usr/bin/install -c -m 644 'dsh.conf' '/tmp/buildd/dsh-0.25.10/debian/dsh/etc/dsh/dsh.conf' for LANGS in ja ; do \ mkdir -p /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/$LANGS/man1 ;\ mkdir -p /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/$LANGS/man5 ;\ sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.$LANGS.1 \ > /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/$LANGS/man1/dsh.1 ; \ sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.conf.$LANGS.5 \ > /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/$LANGS/man5/dsh.conf.5 ; \ done test -z "/usr/share/man/man1" || mkdir -p -- "/tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/man1" /usr/bin/install -c -m 644 './build-man/dsh.1' '/tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/man1/dsh.1' test -z "/usr/share/man/man5" || mkdir -p -- "/tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/man5" /usr/bin/install -c -m 644 './build-man/dsh.conf.5' '/tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/man5/dsh.conf.5' make[3]: Leaving directory `/tmp/buildd/dsh-0.25.10' make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10' make[1]: Leaving directory `/tmp/buildd/dsh-0.25.10' cp /tmp/buildd/dsh-0.25.10/debian/machines.list /tmp/buildd/dsh-0.25.10/debian/dsh/etc/dsh/machines.list cp /tmp/buildd/dsh-0.25.10/dsh.conf /tmp/buildd/dsh-0.25.10/debian/dsh/etc/dsh/dsh.conf ln -s ../machines.list /tmp/buildd/dsh-0.25.10/debian/dsh/etc/dsh/group/all install -d /tmp/buildd/dsh-0.25.10/debian/dsh/usr/lib/update-cluster install -m 755 /tmp/buildd/dsh-0.25.10/debian/dsh.updatelist /tmp/buildd/dsh-0.25.10/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.10-1_amd64.deb'. dpkg-genchanges >../dsh_0.25.10-1_amd64.changes dpkg-genchanges: including full source code in upload dpkg-buildpackage: full upload (original source is included) I: unmounting dev/pts filesystem I: unmounting proc filesystem I: cleaning the build env I: removing directory /TESTDIR/dir3/NUM and its subdirectories I: Current time: Sun Nov 29 19:23:45 JST 2009 I: pbuilder-time-stamp: 1259490225 pbuilder-0.215ubuntu7/testsuite/cdebootstrap/pbuilder-update-lenny-squeeze-sid.log0000664000000000000000000004151712312041170025442 0ustar I: Upgrading for distribution sid I: Building the build Environment I: extracting base tarball [/TESTDIR/testimage] I: creating local configuration I: copying local configuration I: Installing apt-lines I: mounting /proc filesystem I: mounting /dev/pts filesystem I: policy-rc.d already exists I: Refreshing the base.tgz I: upgrading packages Get:1 http://localhost sid Release.gpg [835B] Get:2 http://localhost sid Release [104kB] Ign http://localhost sid/main Packages Ign http://localhost sid/main Packages Get:3 http://localhost sid/main Packages [8278kB] Fetched XXXB in Xs (XXXXXB/s) Reading package lists... Reading package lists... Building dependency tree... Reading state information... The following NEW packages will be installed: libapr1 libaprutil1 libboost-iostreams1.40.0 libdb4.8 libexpat1 liblog4cxx10 liblzma1 libsqlite3-0 The following packages will be upgraded: apt aptitude bash coreutils cpp dpkg dpkg-dev g++ gcc libacl1 libc-bin libc-dev-bin libc6 libc6-dev libcwidget3 libdb4.6 libgdbm3 liblzma0 libselinux1 libxapian15 linux-libc-dev mktemp sensible-utils xz-utils 24 upgraded, 8 newly installed, 0 to remove and 0 not upgraded. Need to get 26.9MB of archives. After this operation, 6447kB of additional disk space will be used. Get:1 http://localhost sid/main bash 4.0-7 [1150kB] Get:2 http://localhost sid/main coreutils 8.0-2 [4490kB] Get:3 http://localhost sid/main dpkg 1.15.5.3 [2223kB] Get:4 http://localhost sid/main mktemp 8.1-1 [14.6kB] Get:5 http://localhost sid/main libc-dev-bin 2.10.2-2 [201kB] Get:6 http://localhost sid/main libc6-dev 2.10.2-2 [2546kB] Get:7 http://localhost sid/main libc-bin 2.10.2-2 [728kB] Get:8 http://localhost sid/main libc6 2.10.2-2 [4242kB] Get:9 http://localhost sid/main linux-libc-dev 2.6.32~rc8-1~experimental.1 [848kB] Get:10 http://localhost sid/main apt 0.7.24 [1684kB] Get:11 http://localhost sid/main libacl1 2.2.49-1 [19.2kB] Get:12 http://localhost sid/main libselinux1 2.0.89-4 [85.4kB] Get:13 http://localhost sid/main sensible-utils 0.0.2 [4566B] Get:14 http://localhost sid/main libboost-iostreams1.40.0 1.40.0-4 [40.7kB] Get:15 http://localhost sid/main libcwidget3 0.5.14-1 [310kB] Get:16 http://localhost sid/main libapr1 1.3.8-1 [123kB] Get:17 http://localhost sid/main libdb4.8 4.8.24-1 [681kB] Get:18 http://localhost sid/main libexpat1 2.0.1-5 [135kB] Get:19 http://localhost sid/main libaprutil1 1.3.9+dfsg-3 [90.7kB] Get:20 http://localhost sid/main liblog4cxx10 0.10.0-1 [574kB] Get:21 http://localhost sid/main libsqlite3-0 3.6.20-1 [300kB] Get:22 http://localhost sid/main libxapian15 1.0.17-1 [816kB] Get:23 http://localhost sid/main aptitude 0.6.1.3-3 [3668kB] Get:24 http://localhost sid/main libgdbm3 1.8.3-9 [46.2kB] Get:25 http://localhost sid/main libdb4.6 4.6.21-15 [591kB] Get:26 http://localhost sid/main cpp 4:4.3.4-1 [14.6kB] Get:27 http://localhost sid/main liblzma1 4.999.9beta+20091116-1 [150kB] Get:28 http://localhost sid/main xz-utils 4.999.9beta+20091116-1 [229kB] Get:29 http://localhost sid/main dpkg-dev 1.15.5.3 [758kB] Get:30 http://localhost sid/main gcc 4:4.3.4-1 [5006B] Get:31 http://localhost sid/main g++ 4:4.3.4-1 [1374B] Get:32 http://localhost sid/main liblzma0 4.999.9beta+20091016-1 [146kB] debconf: delaying package configuration, since apt-utils is not installed Fetched XXXB in Xs (XXXXXB/s) (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 10160 files and directories currently installed.) Preparing to replace bash 4.0-4 (using .../archives/bash_4.0-7_amd64.deb) ... Unpacking replacement bash ... Setting up bash (4.0-7) ... update-alternatives: using /usr/share/man/man7/bash-builtins.7.gz to provide /usr/share/man/man7/builtins.7.gz (builtins.7.gz) in auto mode. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 10160 files and directories currently installed.) Preparing to replace coreutils 7.4-2 (using .../coreutils_8.0-2_amd64.deb) ... install-info: warning: maintainer scripts should not call install-info anymore, install-info: warning: this is handled now by a dpkg trigger provided by the install-info: warning: install-info package; package coreutils should be updated. Unpacking replacement coreutils ... Setting up coreutils (8.0-2) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 10171 files and directories currently installed.) Preparing to replace dpkg 1.15.5.2 (using .../dpkg_1.15.5.3_amd64.deb) ... Unpacking replacement dpkg ... Setting up dpkg (1.15.5.3) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 10171 files and directories currently installed.) Preparing to replace mktemp 7.4-2 (using .../archives/mktemp_8.1-1_all.deb) ... Unpacking replacement mktemp ... Preparing to replace libc-dev-bin 2.10.1-7 (using .../libc-dev-bin_2.10.2-2_amd64.deb) ... Unpacking replacement libc-dev-bin ... Preparing to replace libc6-dev 2.10.1-7 (using .../libc6-dev_2.10.2-2_amd64.deb) ... Unpacking replacement libc6-dev ... Preparing to replace libc-bin 2.10.1-7 (using .../libc-bin_2.10.2-2_amd64.deb) ... Unpacking replacement libc-bin ... Setting up libc-bin (2.10.2-2) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 10171 files and directories currently installed.) Preparing to replace libc6 2.10.1-7 (using .../libc6_2.10.2-2_amd64.deb) ... Unpacking replacement libc6 ... Setting up libc6 (2.10.2-2) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 10171 files and directories currently installed.) Preparing to replace linux-libc-dev 2.6.30-8 (using .../linux-libc-dev_2.6.32~rc8-1~experimental.1_amd64.deb) ... Unpacking replacement linux-libc-dev ... Preparing to replace apt 0.7.23.1 (using .../archives/apt_0.7.24_amd64.deb) ... Unpacking replacement apt ... Setting up apt (0.7.24) ... gpg: key 6070D3A1: "Debian Archive Automatic Signing Key (4.0/etch) " not changed gpg: key ADB11277: "Etch Stable Release Key " not changed gpg: key BBE55AB3: "Debian-Volatile Archive Automatic Signing Key (4.0/etch)" not changed gpg: key F42584E6: "Lenny Stable Release Key " not changed gpg: key 55BE302B: "Debian Archive Automatic Signing Key (5.0/lenny) " not changed gpg: key 6D849617: "Debian-Volatile Archive Automatic Signing Key (5.0/lenny)" not changed gpg: Total number processed: 6 gpg: unchanged: 6 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 10115 files and directories currently installed.) Preparing to replace libacl1 2.2.48-1 (using .../libacl1_2.2.49-1_amd64.deb) ... Unpacking replacement libacl1 ... Setting up libacl1 (2.2.49-1) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 10115 files and directories currently installed.) Preparing to replace libselinux1 2.0.88-1 (using .../libselinux1_2.0.89-4_amd64.deb) ... Unpacking replacement libselinux1 ... Setting up libselinux1 (2.0.89-4) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 10115 files and directories currently installed.) Preparing to replace sensible-utils 0.0.1 (using .../sensible-utils_0.0.2_all.deb) ... Unpacking replacement sensible-utils ... Setting up sensible-utils (0.0.2) ... Selecting previously deselected package libboost-iostreams1.40.0. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 10115 files and directories currently installed.) Unpacking libboost-iostreams1.40.0 (from .../libboost-iostreams1.40.0_1.40.0-4_amd64.deb) ... Preparing to replace libcwidget3 0.5.13-1 (using .../libcwidget3_0.5.14-1_amd64.deb) ... Unpacking replacement libcwidget3 ... Selecting previously deselected package libapr1. Unpacking libapr1 (from .../libapr1_1.3.8-1_amd64.deb) ... Selecting previously deselected package libdb4.8. Unpacking libdb4.8 (from .../libdb4.8_4.8.24-1_amd64.deb) ... Selecting previously deselected package libexpat1. Unpacking libexpat1 (from .../libexpat1_2.0.1-5_amd64.deb) ... Selecting previously deselected package libaprutil1. Unpacking libaprutil1 (from .../libaprutil1_1.3.9+dfsg-3_amd64.deb) ... Selecting previously deselected package liblog4cxx10. Unpacking liblog4cxx10 (from .../liblog4cxx10_0.10.0-1_amd64.deb) ... Selecting previously deselected package libsqlite3-0. Unpacking libsqlite3-0 (from .../libsqlite3-0_3.6.20-1_amd64.deb) ... Preparing to replace libxapian15 1.0.16-3 (using .../libxapian15_1.0.17-1_amd64.deb) ... Unpacking replacement libxapian15 ... Preparing to replace aptitude 0.4.11.11-1+b2 (using .../aptitude_0.6.1.3-3_amd64.deb) ... Unpacking replacement aptitude ... Preparing to replace libgdbm3 1.8.3-8 (using .../libgdbm3_1.8.3-9_amd64.deb) ... Unpacking replacement libgdbm3 ... Preparing to replace libdb4.6 4.6.21-14 (using .../libdb4.6_4.6.21-15_amd64.deb) ... Unpacking replacement libdb4.6 ... Preparing to replace cpp 4:4.3.3-9+nmu1 (using .../cpp_4%3a4.3.4-1_amd64.deb) ... Unpacking replacement cpp ... Selecting previously deselected package liblzma1. Unpacking liblzma1 (from .../liblzma1_4.999.9beta+20091116-1_amd64.deb) ... Preparing to replace xz-utils 4.999.9beta+20091004-1 (using .../xz-utils_4.999.9beta+20091116-1_amd64.deb) ... Unpacking replacement xz-utils ... Preparing to replace dpkg-dev 1.15.5.2 (using .../dpkg-dev_1.15.5.3_all.deb) ... Unpacking replacement dpkg-dev ... Preparing to replace gcc 4:4.3.3-9+nmu1 (using .../gcc_4%3a4.3.4-1_amd64.deb) ... Removing old gcc doc directory. Unpacking replacement gcc ... Preparing to replace g++ 4:4.3.3-9+nmu1 (using .../g++_4%3a4.3.4-1_amd64.deb) ... Unpacking replacement g++ ... Preparing to replace liblzma0 4.999.9beta+20091004-1 (using .../liblzma0_4.999.9beta+20091016-1_amd64.deb) ... Unpacking replacement liblzma0 ... Setting up mktemp (8.1-1) ... Setting up libc-dev-bin (2.10.2-2) ... Setting up linux-libc-dev (2.6.32~rc8-1~experimental.1) ... Setting up libc6-dev (2.10.2-2) ... Setting up libboost-iostreams1.40.0 (1.40.0-4) ... Setting up libcwidget3 (0.5.14-1) ... Setting up libapr1 (1.3.8-1) ... Setting up libdb4.8 (4.8.24-1) ... Setting up libexpat1 (2.0.1-5) ... Setting up libaprutil1 (1.3.9+dfsg-3) ... Setting up liblog4cxx10 (0.10.0-1) ... Setting up libsqlite3-0 (3.6.20-1) ... Setting up libxapian15 (1.0.17-1) ... Setting up aptitude (0.6.1.3-3) ... update-alternatives: using /usr/bin/aptitude-curses to provide /usr/bin/aptitude (aptitude) in auto mode. Setting up libgdbm3 (1.8.3-9) ... Setting up libdb4.6 (4.6.21-15) ... Setting up cpp (4:4.3.4-1) ... Setting up liblzma1 (4.999.9beta+20091116-1) ... Setting up xz-utils (4.999.9beta+20091116-1) ... Setting up dpkg-dev (1.15.5.3) ... Setting up gcc (4:4.3.4-1) ... Setting up g++ (4:4.3.4-1) ... Setting up liblzma0 (4.999.9beta+20091016-1) ... Reading package lists... Building dependency tree... Reading state information... The following packages will be REMOVED: liblzma0 0 upgraded, 0 newly installed, 1 to remove and 0 not upgraded. After this operation, 287kB disk space will be freed. (Reading database ... 10175 files and directories currently installed.) Removing liblzma0 ... Reading package lists... Building dependency tree... Reading state information... build-essential is already the newest version. dpkg-dev is already the newest version. apt is already the newest version. aptitude is already the newest version. 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. I: user script /var/cache/pbuilder/build//NUM/tmp/hooks/E50-initscripts-2.86.ds1-7.workaround.sh starting umount: /sys: not mounted umount: /run: not found umount: /proc/bus/usb: not mounted umount: /dev/shm: not mounted umount: /lib/init/rw: not mounted cat: /var/run/inetd.pid: No such file or directory kill: 20: Usage: kill [-s sigspec | -signum | -sigspec] [pid | job]... or kill -l [exitstatus] I: user script /var/cache/pbuilder/build//NUM/tmp/hooks/E50-initscripts-2.86.ds1-7.workaround.sh finished I: unmounting dev/pts filesystem I: unmounting proc filesystem I: creating base tarball [/TESTDIR/testimage] I: cleaning the build env I: removing directory /var/cache/pbuilder/build//NUM and its subdirectories pbuilder-0.215ubuntu7/testsuite/cdebootstrap/pdebuild-normal-sid.log0000664000000000000000000010060012312041170022615 0ustar dpkg-buildpackage: set CFLAGS to default value: -g -O2 dpkg-buildpackage: set CPPFLAGS to default value: dpkg-buildpackage: set LDFLAGS to default value: dpkg-buildpackage: set FFLAGS to default value: -g -O2 dpkg-buildpackage: set CXXFLAGS to default value: -g -O2 dpkg-buildpackage: source package dsh dpkg-buildpackage: source version 0.25.10-1 dpkg-buildpackage: source changed by Junichi Uekawa fakeroot debian/rules clean dh_testdir dh_testroot rm -f build-stamp configure-stamp /usr/bin/make clean make[1]: Entering directory `/TESTDIR/dir2/dsh-0.25.10' make[1]: *** No rule to make target `clean'. Stop. make[1]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10' make: [clean] Error 2 (ignored) /usr/bin/make distclean make[1]: Entering directory `/TESTDIR/dir2/dsh-0.25.10' make[1]: *** No rule to make target `distclean'. Stop. make[1]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10' make: [clean] Error 2 (ignored) dh_clean dpkg-source -b dsh-0.25.10 dpkg-source: info: using source format `1.0' dpkg-source: info: building dsh using existing dsh_0.25.10.orig.tar.gz dpkg-source: info: building dsh in dsh_0.25.10-1.diff.gz dpkg-source: warning: file dsh-0.25.10/dcp.sh has no final newline (either original or modified version) dpkg-source: warning: file dsh-0.25.10/debian/compat has no final newline (either original or modified version) dpkg-source: info: building dsh in dsh_0.25.10-1.dsc dpkg-genchanges -S >../dsh_0.25.10-1_source.changes dpkg-genchanges: including full source code in upload dpkg-buildpackage: source only upload (original source is included) W: /home/dancer/.pbuilderrc does not exist I: using fakeroot in build. I: Current time: Sun Nov 29 19:18:03 JST 2009 I: pbuilder-time-stamp: 1259489883 I: Building the build Environment I: extracting base tarball [/TESTDIR/testimage] I: creating local configuration I: copying local configuration I: mounting /proc filesystem I: mounting /dev/pts filesystem I: policy-rc.d already exists I: Installing the build-deps -> Attempting to satisfy build-dependencies -> Creating pbuilder-satisfydepends-dummy package Package: pbuilder-satisfydepends-dummy Version: 0.invalid.0 Architecture: amd64 Maintainer: Debian Pbuilder Team Description: Dummy package to satisfy dependencies with aptitude - created by pbuilder This package was created automatically by pbuilder and should Depends: debhelper (>> 3.0.0), libdshconfig1-dev (>= 0.20.11-1), po4a dpkg-deb: building package `pbuilder-satisfydepends-dummy' in `/tmp/satisfydepends-aptitude/pbuilder-satisfydepends-dummy.deb'. Reading package lists... Building dependency tree... Reading state information... aptitude is already the newest version. 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. Selecting previously deselected package pbuilder-satisfydepends-dummy. (Reading database ... 10112 files and directories currently installed.) Unpacking pbuilder-satisfydepends-dummy (from .../pbuilder-satisfydepends-dummy.deb) ... dpkg: dependency problems prevent configuration of pbuilder-satisfydepends-dummy: pbuilder-satisfydepends-dummy depends on debhelper (>> 3.0.0); however: Package debhelper is not installed. pbuilder-satisfydepends-dummy depends on libdshconfig1-dev (>= 0.20.11-1); however: Package libdshconfig1-dev is not installed. pbuilder-satisfydepends-dummy depends on po4a; however: Package po4a is not installed. dpkg: error processing pbuilder-satisfydepends-dummy (--install): dependency problems - leaving unconfigured Errors were encountered while processing: pbuilder-satisfydepends-dummy Reading package lists... Building dependency tree... Reading state information... Initializing package states... Writing extended state information... The following NEW packages will be installed: bsdmainutils{a} debhelper{a} file{a} gettext{a} gettext-base{a} groff-base{a} html2text{a} intltool-debian{a} libcroco3{a} libdshconfig1{a} libdshconfig1-dev{a} libglib2.0-0{a} libmagic1{a} libpcre3{a} libsgmls-perl{a} libsp1c2{a} libxml2{a} man-db{a} po-debconf{a} po4a{a} sp{a} The following partially installed packages will be configured: pbuilder-satisfydepends-dummy 0 packages upgraded, 21 newly installed, 0 to remove and 0 not upgraded. Need to get 11.6MB of archives. After unpacking 35.1MB will be used. Writing extended state information... Get:1 http://localhost sid/main libmagic1 5.03-3 [389kB] Get:2 http://localhost sid/main file 5.03-3 [46.9kB] Get:3 http://localhost sid/main html2text 1.3.2a-14 [103kB] Get:4 http://localhost sid/main libpcre3 7.8-3 [215kB] Get:5 http://localhost sid/main libglib2.0-0 2.22.2-2 [984kB] Get:6 http://localhost sid/main libxml2 2.7.6.dfsg-1 [876kB] Get:7 http://localhost sid/main libcroco3 0.6.2-1 [125kB] Get:8 http://localhost sid/main gettext-base 0.17-8 [133kB] Get:9 http://localhost sid/main gettext 0.17-8 [2503kB] Get:10 http://localhost sid/main intltool-debian 0.35.0+20060710.1 [30.8kB] Get:11 http://localhost sid/main po-debconf 1.0.16 [224kB] Get:12 http://localhost sid/main groff-base 1.20.1-6 [1156kB] Get:13 http://localhost sid/main bsdmainutils 8.0.2 [198kB] Get:14 http://localhost sid/main man-db 2.5.6-4 [1477kB] Get:15 http://localhost sid/main debhelper 7.4.8 [458kB] Get:16 http://localhost sid/main libdshconfig1 0.20.13-1 [11.0kB] Get:17 http://localhost sid/main libdshconfig1-dev 0.20.13-1 [25.4kB] Get:18 http://localhost sid/main libsgmls-perl 1.03ii-32 [27.8kB] Get:19 http://localhost sid/main libsp1c2 1.3.4-1.2.1-47 [1386kB] Get:20 http://localhost sid/main sp 1.3.4-1.2.1-47 [182kB] Get:21 http://localhost sid/main po4a 0.37.1-1 [1026kB] debconf: delaying package configuration, since apt-utils is not installed Fetched XXXB in Xs (XXXXXB/s) Selecting previously deselected package libmagic1. (Reading database ... 10112 files and directories currently installed.) Unpacking libmagic1 (from .../libmagic1_5.03-3_amd64.deb) ... Selecting previously deselected package file. Unpacking file (from .../archives/file_5.03-3_amd64.deb) ... Selecting previously deselected package html2text. Unpacking html2text (from .../html2text_1.3.2a-14_amd64.deb) ... Selecting previously deselected package libpcre3. Unpacking libpcre3 (from .../libpcre3_7.8-3_amd64.deb) ... Selecting previously deselected package libglib2.0-0. Unpacking libglib2.0-0 (from .../libglib2.0-0_2.22.2-2_amd64.deb) ... Selecting previously deselected package libxml2. Unpacking libxml2 (from .../libxml2_2.7.6.dfsg-1_amd64.deb) ... Selecting previously deselected package libcroco3. Unpacking libcroco3 (from .../libcroco3_0.6.2-1_amd64.deb) ... Selecting previously deselected package gettext-base. Unpacking gettext-base (from .../gettext-base_0.17-8_amd64.deb) ... Selecting previously deselected package gettext. Unpacking gettext (from .../gettext_0.17-8_amd64.deb) ... Selecting previously deselected package intltool-debian. Unpacking intltool-debian (from .../intltool-debian_0.35.0+20060710.1_all.deb) ... Selecting previously deselected package po-debconf. Unpacking po-debconf (from .../po-debconf_1.0.16_all.deb) ... Selecting previously deselected package groff-base. Unpacking groff-base (from .../groff-base_1.20.1-6_amd64.deb) ... Selecting previously deselected package bsdmainutils. Unpacking bsdmainutils (from .../bsdmainutils_8.0.2_amd64.deb) ... Selecting previously deselected package man-db. Unpacking man-db (from .../man-db_2.5.6-4_amd64.deb) ... Selecting previously deselected package debhelper. Unpacking debhelper (from .../debhelper_7.4.8_all.deb) ... Selecting previously deselected package libdshconfig1. Unpacking libdshconfig1 (from .../libdshconfig1_0.20.13-1_amd64.deb) ... Selecting previously deselected package libdshconfig1-dev. Unpacking libdshconfig1-dev (from .../libdshconfig1-dev_0.20.13-1_amd64.deb) ... Selecting previously deselected package libsgmls-perl. Unpacking libsgmls-perl (from .../libsgmls-perl_1.03ii-32_all.deb) ... Selecting previously deselected package libsp1c2. Unpacking libsp1c2 (from .../libsp1c2_1.3.4-1.2.1-47_amd64.deb) ... Selecting previously deselected package sp. Unpacking sp (from .../sp_1.3.4-1.2.1-47_amd64.deb) ... Selecting previously deselected package po4a. Unpacking po4a (from .../archives/po4a_0.37.1-1_all.deb) ... Setting up libmagic1 (5.03-3) ... Setting up file (5.03-3) ... Setting up html2text (1.3.2a-14) ... Setting up libpcre3 (7.8-3) ... Setting up libglib2.0-0 (2.22.2-2) ... Setting up libxml2 (2.7.6.dfsg-1) ... Setting up libcroco3 (0.6.2-1) ... Setting up gettext-base (0.17-8) ... Setting up gettext (0.17-8) ... Setting up intltool-debian (0.35.0+20060710.1) ... Setting up po-debconf (1.0.16) ... Setting up groff-base (1.20.1-6) ... Setting up bsdmainutils (8.0.2) ... update-alternatives: using /usr/bin/bsd-write to provide /usr/bin/write (write) in auto mode. Setting up man-db (2.5.6-4) ... Building database of manual pages ... Setting up debhelper (7.4.8) ... Setting up libdshconfig1 (0.20.13-1) ... Setting up libdshconfig1-dev (0.20.13-1) ... Setting up libsgmls-perl (1.03ii-32) ... Setting up libsp1c2 (1.3.4-1.2.1-47) ... Setting up sp (1.3.4-1.2.1-47) ... Setting up po4a (0.37.1-1) ... Setting up pbuilder-satisfydepends-dummy (0.invalid.0) ... Reading package lists... Building dependency tree... Reading state information... Reading extended state information... Initializing package states... Writing extended state information... -> Finished parsing the build-deps Reading package lists... Building dependency tree... Reading state information... aptitude is already the newest version. fakeroot is already the newest version. 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. I: Copying source file I: copying [../dsh_0.25.10-1.dsc] I: copying [../dsh_0.25.10.orig.tar.gz] I: copying [../dsh_0.25.10-1.diff.gz] I: Extracting source dpkg-source: warning: extracting unsigned source package (dsh_0.25.10-1.dsc) dpkg-source: info: extracting dsh in dsh-0.25.10 dpkg-source: info: unpacking dsh_0.25.10.orig.tar.gz dpkg-source: info: applying dsh_0.25.10-1.diff.gz dpkg-source: info: upstream files that have been modified: dsh-0.25.10/.cvsignore dsh-0.25.10/CVS/Entries dsh-0.25.10/CVS/Repository dsh-0.25.10/CVS/Root dsh-0.25.10/ChangeLog.OLD dsh-0.25.10/dcp.sh dsh-0.25.10/drshd.c dsh-0.25.10/dsh.1.ja.po dsh-0.25.10/m4/.cvsignore dsh-0.25.10/m4/CVS/Entries dsh-0.25.10/m4/CVS/Repository dsh-0.25.10/m4/CVS/Root dsh-0.25.10/po/.cvsignore dsh-0.25.10/po/CVS/Entries dsh-0.25.10/po/CVS/Repository dsh-0.25.10/po/CVS/Root dsh-0.25.10/po/insert-header.sin dsh-0.25.10/tests/.cvsignore dsh-0.25.10/tests/CVS/Entries dsh-0.25.10/tests/CVS/Repository dsh-0.25.10/tests/CVS/Root I: Building the package dpkg-buildpackage: set CFLAGS to default value: -g -O2 dpkg-buildpackage: set CPPFLAGS to default value: dpkg-buildpackage: set LDFLAGS to default value: dpkg-buildpackage: set FFLAGS to default value: -g -O2 dpkg-buildpackage: set CXXFLAGS to default value: -g -O2 dpkg-buildpackage: source package dsh dpkg-buildpackage: source version 0.25.10-1 dpkg-buildpackage: source changed by Junichi Uekawa dpkg-buildpackage: host architecture amd64 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.10' make[1]: *** No rule to make target `clean'. Stop. make[1]: Leaving directory `/tmp/buildd/dsh-0.25.10' make: [clean] Error 2 (ignored) /usr/bin/make distclean make[1]: Entering directory `/tmp/buildd/dsh-0.25.10' make[1]: *** No rule to make target `distclean'. Stop. make[1]: Leaving directory `/tmp/buildd/dsh-0.25.10' make: [clean] Error 2 (ignored) dh_clean dh_clean: Compatibility levels before 5 are deprecated. dpkg-source -b dsh-0.25.10 dpkg-source: info: using source format `1.0' dpkg-source: info: building dsh using existing dsh_0.25.10.orig.tar.gz dpkg-source: info: building dsh in dsh_0.25.10-1.diff.gz dpkg-source: warning: file dsh-0.25.10/dcp.sh has no final newline (either original or modified version) dpkg-source: warning: file dsh-0.25.10/debian/compat has no final newline (either original or modified version) dpkg-source: warning: the diff modifies the following upstream files: .cvsignore CVS/Entries CVS/Repository CVS/Root ChangeLog.OLD dcp.sh drshd.c dsh.1.ja.po m4/.cvsignore m4/CVS/Entries m4/CVS/Repository m4/CVS/Root po/.cvsignore po/CVS/Entries po/CVS/Repository po/CVS/Root po/insert-header.sin tests/.cvsignore tests/CVS/Entries tests/CVS/Repository tests/CVS/Root dpkg-source: info: use the '3.0 (quilt)' format to have separate and documented changes to upstream files, see dpkg-source(1) dpkg-source: info: building dsh in dsh_0.25.10-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 ISO C89... none needed checking dependency style of gcc... gcc3 checking for strerror in -lcposix... no checking for gcc... (cached) gcc checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) 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 ISO C89... (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 grep that handles long lines and -e... /bin/grep checking for egrep... /bin/grep -E checking for ANSI C header files... yes checking for sys/wait.h that is POSIX.1 compatible... yes checking build system type... x86_64-unknown-linux-gnu checking host system type... x86_64-unknown-linux-gnu checking for a sed that does not truncate output... /bin/sed checking for ld used by gcc... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for /usr/bin/ld option to reload object files... -r checking for BSD-compatible nm... /usr/bin/nm -B checking whether ln -s works... yes checking how to recognize dependent libraries... pass_all checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking dlfcn.h usability... yes checking dlfcn.h presence... yes checking for dlfcn.h... yes checking for g++... g++ checking whether we are using the GNU C++ compiler... yes checking whether g++ accepts -g... yes checking dependency style of g++... gcc3 checking how to run the C++ preprocessor... g++ -E checking for g77... no checking for xlf... no checking for f77... no checking for frt... no checking for pgf77... no checking for cf77... no checking for fort77... no checking for fl32... no checking for af77... no checking for xlf90... no checking for f90... no checking for pgf90... no checking for pghpf... no checking for epcf90... no checking for gfortran... no checking for g95... no checking for xlf95... no checking for f95... no checking for fort... no checking for ifort... no checking for ifc... no checking for efc... no checking for pgf95... no checking for lf95... no checking for ftn... no checking whether we are using the GNU Fortran 77 compiler... no checking whether accepts -g... no checking the maximum length of command line arguments... 3458764513820540925 checking command to parse /usr/bin/nm -B output from gcc object... ok checking for objdir... .libs checking for ar... ar checking for ranlib... ranlib checking for strip... strip checking if gcc supports -fno-rtti -fno-exceptions... no checking for gcc option to produce PIC... -fPIC checking if gcc PIC flag -fPIC works... yes checking if gcc static flag -static works... yes checking if gcc supports -c -o file.o... yes checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) 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 -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking for g++ option to produce PIC... -fPIC checking if g++ PIC flag -fPIC works... yes checking if g++ static flag -static works... yes checking if g++ supports -c -o file.o... yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate appending configuration tag "F77" to libtool checking 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 -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) 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: WARNING: po/Makefile.in.in seems to ignore the --datarootdir setting 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.10' /usr/bin/make all-recursive make[2]: Entering directory `/tmp/buildd/dsh-0.25.10' Making all in m4 make[3]: Entering directory `/tmp/buildd/dsh-0.25.10/m4' make[3]: Nothing to be done for `all'. make[3]: Leaving directory `/tmp/buildd/dsh-0.25.10/m4' Making all in po make[3]: Entering directory `/tmp/buildd/dsh-0.25.10/po' make[3]: Nothing to be done for `all'. make[3]: Leaving directory `/tmp/buildd/dsh-0.25.10/po' make[3]: Entering directory `/tmp/buildd/dsh-0.25.10' 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/bash ./libtool --tag=CC --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.10' make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10' make[1]: Leaving directory `/tmp/buildd/dsh-0.25.10' /usr/bin/make check make[1]: Entering directory `/tmp/buildd/dsh-0.25.10' Making check in m4 make[2]: Entering directory `/tmp/buildd/dsh-0.25.10/m4' make[2]: Nothing to be done for `check'. make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10/m4' Making check in po make[2]: Entering directory `/tmp/buildd/dsh-0.25.10/po' make[2]: Nothing to be done for `check'. make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10/po' make[2]: Entering directory `/tmp/buildd/dsh-0.25.10' /usr/bin/make dsh make[3]: Entering directory `/tmp/buildd/dsh-0.25.10' make[3]: `dsh' is up to date. make[3]: Leaving directory `/tmp/buildd/dsh-0.25.10' /usr/bin/make check-TESTS make[3]: Entering directory `/tmp/buildd/dsh-0.25.10' PASS: tests/param-f.sh dsh: File ./tests/nonexistent.file could not be opened for read PASS: tests/param-f-fail.sh PASS: tests/param-f-with-space.sh PASS: tests/param-m.sh test to check that unknown parameter checking is right. ./dsh: unrecognized option '--unknown-parameter' ./dsh: invalid option -- 'u' PASS: tests/param-unknown.sh test1 test2 PASS: tests/param-i.sh Check that cn4 option is working. PASS: tests/param-cn4.sh test to check that -b0 is rejected, and -b1 is accepted Buffer size needs to be greater than 1 Buffer size needs to be greater than 1 a b PASS: tests/param-b-0.sh dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call success dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call success success success success success a: dsh: Failed executing ./invalid-exec-file with llexec call b: dsh: Failed executing ./invalid-exec-file with llexec call 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 dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call success PASS: tests/param-r-invalid.sh 1: 1 2: 2 dsh: fork limit and wait shell cannot be specified at the same time PASS: tests/param-F-invalid.sh Sun Nov 29 10:18:55 UTC 2009 2: Using sleep as the remote shell 2: Show machine names on output 2: Adding machine 5,4,3,2,1 to list 2: Setting forklimit to 3 and wait_shell to 0 2: DUMPing parameters passed to llexec 2: [2] Using sleep as the remote shell Show machine names on output Adding machine 5,4,3,2,1 to list Setting forklimit to 3 and wait_shell to 0 DUMPing parameters passed to llexec [2] 3: Using sleep as the remote shell 3: Show machine names on output 3: Adding machine 5,4,3,2,1 to list 3: Setting forklimit to 3 and wait_shell to 0 3: DUMPing parameters passed to llexec 3: [3] Using sleep as the remote shell Show machine names on output Adding machine 5,4,3,2,1 to list Setting forklimit to 3 and wait_shell to 0 DUMPing parameters passed to llexec [3] 1: Using sleep as the remote shell 1: Show machine names on output 1: Adding machine 5,4,3,2,1 to list 1: Setting forklimit to 3 and wait_shell to 0 1: ... Waiting for process to end with waitpid 1: DUMPing parameters passed to llexec 1: [1] Using sleep as the remote shell Show machine names on output Adding machine 5,4,3,2,1 to list Setting forklimit to 3 and wait_shell to 0 ... Waiting for process to end with waitpid DUMPing parameters passed to llexec [1] 4: Using sleep as the remote shell 4: Show machine names on output 4: Adding machine 5,4,3,2,1 to list 4: Setting forklimit to 3 and wait_shell to 0 4: DUMPing parameters passed to llexec 4: [4] Using sleep as the remote shell Show machine names on output Adding machine 5,4,3,2,1 to list Setting forklimit to 3 and wait_shell to 0 DUMPing parameters passed to llexec [4] 5: Using sleep as the remote shell 5: Show machine names on output 5: Adding machine 5,4,3,2,1 to list 5: Setting forklimit to 3 and wait_shell to 0 5: DUMPing parameters passed to llexec 5: [5] Using sleep as the remote shell Show machine names on output Adding machine 5,4,3,2,1 to list Setting forklimit to 3 and wait_shell to 0 DUMPing parameters passed to llexec [5] --- Terminated running Using sleep as the remote shell Show machine names on output Adding machine 5,4,3,2,1 to list Setting forklimit to 3 and wait_shell to 0 ... Waiting for process to end with waitpid ... Waiting for process to end with waitpid Sun Nov 29 10:19:00 UTC 2009 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 `/tmp/buildd/dsh-0.25.10' make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10' make[1]: Leaving directory `/tmp/buildd/dsh-0.25.10' touch build-stamp fakeroot debian/rules binary dh_testdir dh_testroot dh_clean -k dh_clean: Compatibility levels before 5 are deprecated. dh_installdirs dh_installdirs: Compatibility levels before 5 are deprecated. # Add here commands to install the package into debian/dsh. /usr/bin/make install DESTDIR=/tmp/buildd/dsh-0.25.10/debian/dsh make[1]: Entering directory `/tmp/buildd/dsh-0.25.10' Making install in m4 make[2]: Entering directory `/tmp/buildd/dsh-0.25.10/m4' make[3]: Entering directory `/tmp/buildd/dsh-0.25.10/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.10/m4' make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10/m4' Making install in po make[2]: Entering directory `/tmp/buildd/dsh-0.25.10/po' /bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share mkdir -p -- /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share mkdir -p -- /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/locale/ja/LC_MESSAGES installing ja.gmo as /tmp/buildd/dsh-0.25.10/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.10/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.10/debian/dsh/usr/share/gettext/po/$file; \ done; \ else \ : ; \ fi make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10/po' make[2]: Entering directory `/tmp/buildd/dsh-0.25.10' make[3]: Entering directory `/tmp/buildd/dsh-0.25.10' test -z "/usr/bin" || mkdir -p -- "/tmp/buildd/dsh-0.25.10/debian/dsh/usr/bin" /bin/bash ./libtool --mode=install install -p -o root -g root -m 755 -s 'dsh' '/tmp/buildd/dsh-0.25.10/debian/dsh/usr/bin/dsh' install -p -o root -g root -m 755 -s dsh /tmp/buildd/dsh-0.25.10/debian/dsh/usr/bin/dsh test -z "/etc/dsh" || mkdir -p -- "/tmp/buildd/dsh-0.25.10/debian/dsh/etc/dsh" /usr/bin/install -c -m 644 'dsh.conf' '/tmp/buildd/dsh-0.25.10/debian/dsh/etc/dsh/dsh.conf' for LANGS in ja ; do \ mkdir -p /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/$LANGS/man1 ;\ mkdir -p /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/$LANGS/man5 ;\ sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.$LANGS.1 \ > /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/$LANGS/man1/dsh.1 ; \ sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.conf.$LANGS.5 \ > /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/$LANGS/man5/dsh.conf.5 ; \ done test -z "/usr/share/man/man1" || mkdir -p -- "/tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/man1" /usr/bin/install -c -m 644 './build-man/dsh.1' '/tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/man1/dsh.1' test -z "/usr/share/man/man5" || mkdir -p -- "/tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/man5" /usr/bin/install -c -m 644 './build-man/dsh.conf.5' '/tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/man5/dsh.conf.5' make[3]: Leaving directory `/tmp/buildd/dsh-0.25.10' make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10' make[1]: Leaving directory `/tmp/buildd/dsh-0.25.10' cp /tmp/buildd/dsh-0.25.10/debian/machines.list /tmp/buildd/dsh-0.25.10/debian/dsh/etc/dsh/machines.list cp /tmp/buildd/dsh-0.25.10/dsh.conf /tmp/buildd/dsh-0.25.10/debian/dsh/etc/dsh/dsh.conf ln -s ../machines.list /tmp/buildd/dsh-0.25.10/debian/dsh/etc/dsh/group/all install -d /tmp/buildd/dsh-0.25.10/debian/dsh/usr/lib/update-cluster install -m 755 /tmp/buildd/dsh-0.25.10/debian/dsh.updatelist /tmp/buildd/dsh-0.25.10/debian/dsh/usr/lib/update-cluster/ dh_testdir dh_testroot dh_installdocs NEWS dh_installdocs: Compatibility levels before 5 are deprecated. dh_installexamples dh_installexamples: Compatibility levels before 5 are deprecated. dh_installmenu dh_installmenu: Compatibility levels before 5 are deprecated. dh_installman dh_installman: Compatibility levels before 5 are deprecated. dh_installchangelogs ChangeLog dh_installchangelogs: Compatibility levels before 5 are deprecated. dh_link dh_link: Compatibility levels before 5 are deprecated. dh_strip dh_strip: Compatibility levels before 5 are deprecated. dh_shlibdeps dh_shlibdeps: Compatibility levels before 5 are deprecated. dh_compress dh_compress: Compatibility levels before 5 are deprecated. dh_fixperms dh_fixperms: Compatibility levels before 5 are deprecated. dh_installdeb dh_installdeb: Compatibility levels before 5 are deprecated. dh_gencontrol dh_gencontrol: Compatibility levels before 5 are deprecated. dh_md5sums dh_md5sums: Compatibility levels before 5 are deprecated. dh_builddeb dh_builddeb: Compatibility levels before 5 are deprecated. dpkg-deb: building package `dsh' in `../dsh_0.25.10-1_amd64.deb'. dpkg-genchanges >../dsh_0.25.10-1_amd64.changes dpkg-genchanges: including full source code in upload dpkg-buildpackage: full upload (original source is included) I: unmounting dev/pts filesystem I: unmounting proc filesystem I: cleaning the build env I: removing directory /TESTDIR/dir3/NUM and its subdirectories I: Current time: Sun Nov 29 19:19:04 JST 2009 I: pbuilder-time-stamp: 1259489944 pbuilder-0.215ubuntu7/testsuite/cdebootstrap/pbuilder-create-sid.log0000664000000000000000000015464412312041170022627 0ustar I: Distribution is sid. I: Building the build environment I: running cdebootstrap /usr/bin/cdebootstrap P: Retrieving Release P: Retrieving Release.gpg P: Validating Release I: Good signature from "Debian Archive Automatic Signing Key (5.0/lenny) " P: Parsing Release P: Retrieving Packages.gz P: Validating Packages.gz P: Parsing Packages P: Retrieving libc-bin P: Validating libc-bin P: Retrieving gcc-4.4-base P: Validating gcc-4.4-base P: Retrieving libgcc1 P: Validating libgcc1 P: Retrieving libc6 P: Validating libc6 P: Retrieving libstdc++6 P: Validating libstdc++6 P: Retrieving libbz2-1.0 P: Validating libbz2-1.0 P: Retrieving libattr1 P: Validating libattr1 P: Retrieving libacl1 P: Validating libacl1 P: Retrieving libselinux1 P: Validating libselinux1 P: Retrieving coreutils P: Validating coreutils P: Retrieving lzma P: Validating lzma P: Retrieving dpkg P: Validating dpkg P: Retrieving readline-common P: Validating readline-common P: Retrieving libncurses5 P: Validating libncurses5 P: Retrieving libreadline6 P: Validating libreadline6 P: Retrieving libusb-0.1-4 P: Validating libusb-0.1-4 P: Retrieving zlib1g P: Validating zlib1g P: Retrieving gpgv P: Validating gpgv P: Retrieving gnupg P: Validating gnupg P: Retrieving debian-archive-keyring P: Validating debian-archive-keyring P: Retrieving apt P: Validating apt P: Retrieving base-passwd P: Validating base-passwd P: Retrieving mawk P: Validating mawk P: Retrieving base-files P: Validating base-files P: Retrieving sensible-utils P: Validating sensible-utils P: Retrieving debianutils P: Validating debianutils P: Retrieving dash P: Validating dash P: Retrieving bash P: Validating bash P: Retrieving bsdutils P: Validating bsdutils P: Retrieving libc-dev-bin P: Validating libc-dev-bin P: Retrieving linux-libc-dev P: Validating linux-libc-dev P: Retrieving libc6-dev P: Validating libc6-dev P: Retrieving gcc-4.3-base P: Validating gcc-4.3-base P: Retrieving libgmp3c2 P: Validating libgmp3c2 P: Retrieving libmpfr1ldbl P: Validating libmpfr1ldbl P: Retrieving cpp-4.3 P: Validating cpp-4.3 P: Retrieving cpp P: Validating cpp P: Retrieving binutils P: Validating binutils P: Retrieving libgomp1 P: Validating libgomp1 P: Retrieving gcc-4.3 P: Validating gcc-4.3 P: Retrieving gcc P: Validating gcc P: Retrieving libstdc++6-4.3-dev P: Validating libstdc++6-4.3-dev P: Retrieving g++-4.3 P: Validating g++-4.3 P: Retrieving g++ P: Validating g++ P: Retrieving make P: Validating make P: Retrieving perl-base P: Validating perl-base P: Retrieving perl-modules P: Validating perl-modules P: Retrieving libdb4.7 P: Validating libdb4.7 P: Retrieving libgdbm3 P: Validating libgdbm3 P: Retrieving perl P: Validating perl P: Retrieving bzip2 P: Validating bzip2 P: Retrieving liblzma1 P: Validating liblzma1 P: Retrieving xz-utils P: Validating xz-utils P: Retrieving patch P: Validating patch P: Retrieving libtimedate-perl P: Validating libtimedate-perl P: Retrieving dpkg-dev P: Validating dpkg-dev P: Retrieving build-essential P: Validating build-essential P: Retrieving diffutils P: Validating diffutils P: Retrieving e2fslibs P: Validating e2fslibs P: Retrieving liblocale-gettext-perl P: Validating liblocale-gettext-perl P: Retrieving libtext-iconv-perl P: Validating libtext-iconv-perl P: Retrieving libtext-charwidth-perl P: Validating libtext-charwidth-perl P: Retrieving libtext-wrapi18n-perl P: Validating libtext-wrapi18n-perl P: Retrieving debconf-i18n P: Validating debconf-i18n P: Retrieving debconf P: Validating debconf P: Retrieving libpam0g P: Validating libpam0g P: Retrieving libpam-modules P: Validating libpam-modules P: Retrieving passwd P: Validating passwd P: Retrieving libuuid1 P: Validating libuuid1 P: Retrieving libblkid1 P: Validating libblkid1 P: Retrieving libcomerr2 P: Validating libcomerr2 P: Retrieving libss2 P: Validating libss2 P: Retrieving e2fsprogs P: Validating e2fsprogs P: Retrieving fakeroot P: Validating fakeroot P: Retrieving findutils P: Validating findutils P: Retrieving grep P: Validating grep P: Retrieving gzip P: Validating gzip P: Retrieving hostname P: Validating hostname P: Retrieving libpam-runtime P: Validating libpam-runtime P: Retrieving login P: Validating login P: Retrieving libsepol1 P: Validating libsepol1 P: Retrieving mount P: Validating mount P: Retrieving ncurses-base P: Validating ncurses-base P: Retrieving ncurses-bin P: Validating ncurses-bin P: Retrieving sed P: Validating sed P: Retrieving lsb-base P: Validating lsb-base P: Retrieving sysvinit-utils P: Validating sysvinit-utils P: Retrieving insserv P: Validating insserv P: Retrieving sysv-rc P: Validating sysv-rc P: Retrieving initscripts P: Validating initscripts P: Retrieving sysvinit P: Validating sysvinit P: Retrieving tar P: Validating tar P: Retrieving tzdata P: Validating tzdata P: Retrieving libslang2 P: Validating libslang2 P: Retrieving util-linux P: Validating util-linux P: Extracting libc-bin P: Extracting gcc-4.4-base P: Extracting libc6 P: Extracting libgcc1 P: Extracting libstdc++6 P: Extracting libattr1 P: Extracting libacl1 P: Extracting libselinux1 P: Extracting coreutils P: Extracting lzma P: Extracting dpkg P: Extracting libncurses5 P: Extracting zlib1g P: Extracting base-passwd P: Extracting mawk P: Extracting base-files P: Extracting sensible-utils P: Extracting debianutils P: Extracting dash P: Extracting bash P: Extracting bsdutils P: Extracting gcc-4.3-base P: Extracting perl-base P: Extracting diffutils P: Extracting e2fslibs P: Extracting liblocale-gettext-perl P: Extracting libtext-iconv-perl P: Extracting libtext-charwidth-perl P: Extracting libtext-wrapi18n-perl P: Extracting debconf P: Extracting debconf-i18n P: Extracting libpam0g P: Extracting libdb4.7 P: Extracting libpam-modules P: Extracting passwd P: Extracting libuuid1 P: Extracting libblkid1 P: Extracting libcomerr2 P: Extracting libss2 P: Extracting e2fsprogs P: Extracting findutils P: Extracting grep P: Extracting gzip P: Extracting hostname P: Extracting libpam-runtime P: Extracting login P: Extracting libsepol1 P: Extracting mount P: Extracting ncurses-base P: Extracting ncurses-bin P: Extracting sed P: Extracting lsb-base P: Extracting sysvinit-utils P: Extracting insserv P: Extracting sysv-rc P: Extracting initscripts P: Extracting sysvinit P: Extracting tar P: Extracting tzdata P: Extracting libslang2 P: Extracting util-linux O: Selecting previously deselected package dpkg. O: (Reading database ... 0 files and directories currently installed.) O: dpkg: regarding .../dpkg_1.15.5.3_amd64.deb containing dpkg, pre-dependency problem: O: dpkg pre-depends on libc6 (>= 2.3.4) O: dpkg: warning: ignoring pre-dependency problem! O: dpkg: regarding .../dpkg_1.15.5.3_amd64.deb containing dpkg, pre-dependency problem: O: dpkg pre-depends on coreutils (>= 5.93-1) O: dpkg: warning: ignoring pre-dependency problem! O: dpkg: regarding .../dpkg_1.15.5.3_amd64.deb containing dpkg, pre-dependency problem: O: dpkg pre-depends on lzma O: lzma is not installed. O: dpkg: warning: ignoring pre-dependency problem! O: Unpacking dpkg (from .../dpkg_1.15.5.3_amd64.deb) ... P: Unpacking package dpkg O: dpkg: dpkg: dependency problems, but configuring anyway as you requested: O: dpkg depends on libc6 (>= 2.3.4); however: O: Package libc6 is not installed. O: dpkg depends on coreutils (>= 5.93-1); however: O: Package coreutils is not installed. O: dpkg depends on lzma; however: O: Package lzma is not installed. O: Setting up dpkg (1.15.5.3) ... P: Configuring package dpkg P: Configuring helper cdebootstrap-helper-rc.d O: Selecting previously deselected package cdebootstrap-helper-rc.d. O: (Reading database ... 257 files and directories currently installed.) O: Unpacking cdebootstrap-helper-rc.d (from .../cdebootstrap-helper-rc.d.deb) ... O: Setting up cdebootstrap-helper-rc.d (1) ... P: Configuring helper cdebootstrap-helper-makedev O: Selecting previously deselected package cdebootstrap-helper-makedev. O: (Reading database ... O: 258 files and directories currently installed.) O: Unpacking cdebootstrap-helper-makedev (from .../cdebootstrap-helper-makedev.deb) ... O: Setting up cdebootstrap-helper-makedev (1) ... O: Selecting previously deselected package libc-bin. O: (Reading database ... 258 files and directories currently installed.) O: Unpacking libc-bin (from .../libc-bin_2.10.2-2_amd64.deb) ... P: Unpacking package libc-bin O: Selecting previously deselected package gcc-4.4-base. O: Unpacking gcc-4.4-base (from .../gcc-4.4-base_4.4.2-3_amd64.deb) ... P: Unpacking package gcc-4.4-base O: Selecting previously deselected package libc6. O: Unpacking libc6 (from .../libc6_2.10.2-2_amd64.deb) ... P: Unpacking package libc6 O: Selecting previously deselected package libgcc1. O: Unpacking libgcc1 (from .../libgcc1_4.4.2-3_amd64.deb) ... P: Unpacking package libgcc1 O: Selecting previously deselected package libstdc++6. O: Unpacking libstdc++6 (from .../libstdc++6_4.4.2-3_amd64.deb) ... P: Unpacking package libstdc++6 O: Selecting previously deselected package libattr1. O: Unpacking libattr1 (from .../libattr1_2.4.44-1_amd64.deb) ... P: Unpacking package libattr1 O: Selecting previously deselected package libacl1. O: Unpacking libacl1 (from .../libacl1_2.2.49-1_amd64.deb) ... P: Unpacking package libacl1 O: Selecting previously deselected package libselinux1. O: Unpacking libselinux1 (from .../libselinux1_2.0.89-4_amd64.deb) ... P: Unpacking package libselinux1 O: Selecting previously deselected package coreutils. O: dpkg: regarding .../coreutils_8.0-2_amd64.deb containing coreutils, pre-dependency problem: O: coreutils pre-depends on libacl1 (>= 2.2.11-1) O: libacl1 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: dpkg: regarding .../coreutils_8.0-2_amd64.deb containing coreutils, pre-dependency problem: O: coreutils pre-depends on libattr1 (>= 2.4.41-1) O: libattr1 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: dpkg: regarding .../coreutils_8.0-2_amd64.deb containing coreutils, pre-dependency problem: O: coreutils pre-depends on libc6 (>= 2.6) O: libc6 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: dpkg: regarding .../coreutils_8.0-2_amd64.deb containing coreutils, pre-dependency problem: O: coreutils pre-depends on libselinux1 (>= 1.32) O: libselinux1 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: Unpacking coreutils (from .../coreutils_8.0-2_amd64.deb) ... P: Unpacking package coreutils O: Selecting previously deselected package lzma. O: Unpacking lzma (from .../lzma_4.43-14_amd64.deb) ... P: Unpacking package lzma O: Selecting previously deselected package libncurses5. O: Unpacking libncurses5 (from .../libncurses5_5.7+20090803-2_amd64.deb) ... P: Unpacking package libncurses5 O: Selecting previously deselected package zlib1g. O: Unpacking zlib1g (from .../zlib1g_1.2.3.3.dfsg-15_amd64.deb) ... P: Unpacking package zlib1g O: Selecting previously deselected package base-passwd. O: Unpacking base-passwd (from .../base-passwd_3.5.22_amd64.deb) ... P: Unpacking package base-passwd O: Selecting previously deselected package mawk. O: Unpacking mawk (from .../mawk_1.3.3-15_amd64.deb) ... P: Unpacking package mawk O: dpkg: regarding .../mawk_1.3.3-15_amd64.deb containing mawk, pre-dependency problem: O: mawk pre-depends on libc6 (>= 2.2.5) O: libc6 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: Selecting previously deselected package base-files. O: dpkg: regarding .../base-files_5.0.0_amd64.deb containing base-files, pre-dependency problem: O: base-files pre-depends on awk O: mawk provides awk but is unpacked but not configured. O: dpkg: warning: ignoring pre-dependency problem! O: Unpacking base-files (from .../base-files_5.0.0_amd64.deb) ... P: Unpacking package base-files O: Selecting previously deselected package sensible-utils. O: Unpacking sensible-utils (from .../sensible-utils_0.0.2_all.deb) ... P: Unpacking package sensible-utils O: Selecting previously deselected package debianutils. O: dpkg: regarding .../debianutils_3.2.2_amd64.deb containing debianutils, pre-dependency problem: O: debianutils pre-depends on libc6 (>= 2.7) O: libc6 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: Unpacking debianutils (from .../debianutils_3.2.2_amd64.deb) ... P: Unpacking package debianutils O: Selecting previously deselected package dash. O: dpkg: regarding .../dash_0.5.5.1-3_amd64.deb containing dash, pre-dependency problem: O: dash pre-depends on libc6 (>= 2.3) O: libc6 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: Unpacking dash (from .../dash_0.5.5.1-3_amd64.deb) ... P: Unpacking package dash O: Adding `diversion of /bin/sh to /bin/sh.distrib by dash' O: Adding `diversion of /usr/share/man/man1/sh.1.gz to /usr/share/man/man1/sh.distrib.1.gz by dash' O: Selecting previously deselected package bash. O: Unpacking bash (from .../bootstrap/bash_4.0-7_amd64.deb) ... P: Unpacking package bash O: dpkg: regarding .../bootstrap/bash_4.0-7_amd64.deb containing bash, pre-dependency problem: O: bash pre-depends on dash (>= 0.5.5.1-2.2) O: dash is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: dpkg: regarding .../bootstrap/bash_4.0-7_amd64.deb containing bash, pre-dependency problem: O: bash pre-depends on libc6 (>= 2.4) O: libc6 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: dpkg: regarding .../bootstrap/bash_4.0-7_amd64.deb containing bash, pre-dependency problem: O: bash pre-depends on libncurses5 (>= 5.6+20071006-3) O: libncurses5 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: Selecting previously deselected package bsdutils. O: Unpacking bsdutils (from .../bsdutils_2.16.1-4_amd64.deb) ... P: Unpacking package bsdutils O: Selecting previously deselected package gcc-4.3-base. O: Unpacking gcc-4.3-base (from .../gcc-4.3-base_4.3.4-6_amd64.deb) ... P: Unpacking package gcc-4.3-base O: Selecting previously deselected package perl-base. O: Unpacking perl-base (from .../perl-base_5.10.1-8_amd64.deb) ... P: Unpacking package perl-base O: dpkg: regarding .../perl-base_5.10.1-8_amd64.deb containing perl-base, pre-dependency problem: O: perl-base pre-depends on libc6 (>= 2.4) O: libc6 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: Selecting previously deselected package diffutils. O: Unpacking diffutils (from .../diffutils_2.8.1-18_amd64.deb) ... P: Unpacking package diffutils O: dpkg: regarding .../diffutils_2.8.1-18_amd64.deb containing diffutils, pre-dependency problem: O: diffutils pre-depends on libc6 (>= 2.3) O: libc6 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: Selecting previously deselected package e2fslibs. O: Unpacking e2fslibs (from .../e2fslibs_1.41.9-1_amd64.deb) ... P: Unpacking package e2fslibs O: Selecting previously deselected package liblocale-gettext-perl. O: Unpacking liblocale-gettext-perl (from .../liblocale-gettext-perl_1.05-6_amd64.deb) ... P: Unpacking package liblocale-gettext-perl O: dpkg: regarding .../liblocale-gettext-perl_1.05-6_amd64.deb containing liblocale-gettext-perl, pre-dependency problem: O: liblocale-gettext-perl pre-depends on perl-base (>= 5.10.0-25) O: perl-base is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: dpkg: regarding .../liblocale-gettext-perl_1.05-6_amd64.deb containing liblocale-gettext-perl, pre-dependency problem: O: liblocale-gettext-perl pre-depends on perlapi-5.10.0 O: perl-base provides perlapi-5.10.0 but is unpacked but not configured. O: dpkg: warning: ignoring pre-dependency problem! O: Selecting previously deselected package libtext-iconv-perl. O: Unpacking libtext-iconv-perl (from .../libtext-iconv-perl_1.7-2_amd64.deb) ... P: Unpacking package libtext-iconv-perl O: Selecting previously deselected package libtext-charwidth-perl. O: Unpacking libtext-charwidth-perl (from .../libtext-charwidth-perl_0.04-6_amd64.deb) ... P: Unpacking package libtext-charwidth-perl O: Selecting previously deselected package libtext-wrapi18n-perl. O: Unpacking libtext-wrapi18n-perl (from .../libtext-wrapi18n-perl_0.06-7_all.deb) ... P: Unpacking package libtext-wrapi18n-perl O: Selecting previously deselected package debconf. O: Unpacking debconf (from .../debconf_1.5.28_all.deb) ... P: Unpacking package debconf O: dpkg: regarding .../debconf_1.5.28_all.deb containing debconf, pre-dependency problem: O: debconf pre-depends on perl-base (>= 5.6.1-4) O: perl-base is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: Selecting previously deselected package debconf-i18n. O: Unpacking debconf-i18n (from .../debconf-i18n_1.5.28_all.deb) ... P: Unpacking package debconf-i18n O: Selecting previously deselected package libpam0g. O: Unpacking libpam0g (from .../libpam0g_1.1.0-4_amd64.deb) ... P: Unpacking package libpam0g O: Selecting previously deselected package libdb4.7. O: Unpacking libdb4.7 (from .../libdb4.7_4.7.25-8_amd64.deb) ... P: Unpacking package libdb4.7 O: Selecting previously deselected package libpam-modules. O: dpkg: regarding .../libpam-modules_1.1.0-4_amd64.deb containing libpam-modules, pre-dependency problem: O: libpam-modules pre-depends on libc6 (>= 2.4) O: libc6 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: dpkg: regarding .../libpam-modules_1.1.0-4_amd64.deb containing libpam-modules, pre-dependency problem: O: libpam-modules pre-depends on libdb4.7 O: libdb4.7 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: dpkg: regarding .../libpam-modules_1.1.0-4_amd64.deb containing libpam-modules, pre-dependency problem: O: libpam-modules pre-depends on libpam0g (>= 1.1.0) O: libpam0g is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: dpkg: regarding .../libpam-modules_1.1.0-4_amd64.deb containing libpam-modules, pre-dependency problem: O: libpam-modules pre-depends on libselinux1 (>= 2.0.85) O: libselinux1 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: dpkg: regarding .../libpam-modules_1.1.0-4_amd64.deb containing libpam-modules, pre-dependency problem: O: libpam-modules pre-depends on debconf (>= 0.5) | debconf-2.0 O: debconf is unpacked, but has never been configured. O: debconf provides debconf-2.0 but is unpacked but not configured. O: dpkg: warning: ignoring pre-dependency problem! O: Unpacking libpam-modules (from .../libpam-modules_1.1.0-4_amd64.deb) ... P: Unpacking package libpam-modules O: Use of uninitialized value in concatenation (.) or string at /usr/share/perl5/Debconf/Config.pm line 22. O: Selecting previously deselected package passwd. O: Unpacking passwd (from .../passwd_4.1.4.2-1_amd64.deb) ... P: Unpacking package passwd O: Selecting previously deselected package libuuid1. O: Unpacking libuuid1 (from .../libuuid1_2.16.1-4_amd64.deb) ... P: Unpacking package libuuid1 O: Selecting previously deselected package libblkid1. O: Unpacking libblkid1 (from .../libblkid1_2.16.1-4_amd64.deb) ... P: Unpacking package libblkid1 O: Selecting previously deselected package libcomerr2. O: Unpacking libcomerr2 (from .../libcomerr2_1.41.9-1_amd64.deb) ... P: Unpacking package libcomerr2 O: Selecting previously deselected package libss2. O: Unpacking libss2 (from .../libss2_1.41.9-1_amd64.deb) ... P: Unpacking package libss2 O: Selecting previously deselected package e2fsprogs. O: dpkg: regarding .../e2fsprogs_1.41.9-1_amd64.deb containing e2fsprogs, pre-dependency problem: O: e2fsprogs pre-depends on e2fslibs (= 1.41.9-1) O: e2fslibs is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: dpkg: regarding .../e2fsprogs_1.41.9-1_amd64.deb containing e2fsprogs, pre-dependency problem: O: e2fsprogs pre-depends on libblkid1 (>= 1.34-1) O: libblkid1 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: dpkg: regarding .../e2fsprogs_1.41.9-1_amd64.deb containing e2fsprogs, pre-dependency problem: O: e2fsprogs pre-depends on libc6 (>= 2.7) O: libc6 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: dpkg: regarding .../e2fsprogs_1.41.9-1_amd64.deb containing e2fsprogs, pre-dependency problem: O: e2fsprogs pre-depends on libcomerr2 (>= 1.34-1) O: libcomerr2 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: dpkg: regarding .../e2fsprogs_1.41.9-1_amd64.deb containing e2fsprogs, pre-dependency problem: O: e2fsprogs pre-depends on libss2 (>= 1.34-1) O: libss2 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: dpkg: regarding .../e2fsprogs_1.41.9-1_amd64.deb containing e2fsprogs, pre-dependency problem: O: e2fsprogs pre-depends on libuuid1 (>= 1.34-1) O: libuuid1 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: Unpacking e2fsprogs (from .../e2fsprogs_1.41.9-1_amd64.deb) ... P: Unpacking package e2fsprogs O: Selecting previously deselected package findutils. O: Unpacking findutils (from .../findutils_4.4.2-1_amd64.deb) ... P: Unpacking package findutils O: dpkg: regarding .../findutils_4.4.2-1_amd64.deb containing findutils, pre-dependency problem: O: findutils pre-depends on libc6 (>= 2.4) O: libc6 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: Selecting previously deselected package grep. O: dpkg: regarding .../grep_2.5.4-4_amd64.deb containing grep, pre-dependency problem: O: grep pre-depends on libc6 (>= 2.7-1) O: libc6 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: Unpacking grep (from .../grep_2.5.4-4_amd64.deb) ... P: Unpacking package grep O: Selecting previously deselected package gzip. O: dpkg: regarding .../gzip_1.3.12-8_amd64.deb containing gzip, pre-dependency problem: O: gzip pre-depends on libc6 (>= 2.4) O: libc6 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: Unpacking gzip (from .../gzip_1.3.12-8_amd64.deb) ... P: Unpacking package gzip O: Selecting previously deselected package hostname. O: dpkg: regarding .../hostname_3.01_amd64.deb containing hostname, pre-dependency problem: O: hostname pre-depends on libc6 (>= 2.3) O: libc6 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: Unpacking hostname (from .../hostname_3.01_amd64.deb) ... P: Unpacking package hostname O: Selecting previously deselected package libpam-runtime. O: Unpacking libpam-runtime (from .../libpam-runtime_1.1.0-4_all.deb) ... P: Unpacking package libpam-runtime O: Selecting previously deselected package login. O: dpkg: regarding .../login_4.1.4.2-1_amd64.deb containing login, pre-dependency problem: O: login pre-depends on libc6 (>= 2.3) O: libc6 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: dpkg: regarding .../login_4.1.4.2-1_amd64.deb containing login, pre-dependency problem: O: login pre-depends on libpam0g (>= 0.99.7.1) O: libpam0g is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: dpkg: regarding .../login_4.1.4.2-1_amd64.deb containing login, pre-dependency problem: O: login pre-depends on libpam-runtime O: libpam-runtime is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: dpkg: regarding .../login_4.1.4.2-1_amd64.deb containing login, pre-dependency problem: O: login pre-depends on libpam-modules O: libpam-modules is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: Unpacking login (from .../login_4.1.4.2-1_amd64.deb) ... P: Unpacking package login O: Selecting previously deselected package libsepol1. O: Unpacking libsepol1 (from .../libsepol1_2.0.40-2_amd64.deb) ... P: Unpacking package libsepol1 O: Selecting previously deselected package mount. O: dpkg: regarding .../mount_2.16.1-4_amd64.deb containing mount, pre-dependency problem: O: mount pre-depends on libblkid1 (>= 2.16) O: libblkid1 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: dpkg: regarding .../mount_2.16.1-4_amd64.deb containing mount, pre-dependency problem: O: mount pre-depends on libc6 (>= 2.3) O: libc6 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: dpkg: regarding .../mount_2.16.1-4_amd64.deb containing mount, pre-dependency problem: O: mount pre-depends on libselinux1 (>= 2.0.15) O: libselinux1 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: dpkg: regarding .../mount_2.16.1-4_amd64.deb containing mount, pre-dependency problem: O: mount pre-depends on libsepol1 (>= 1.14) O: libsepol1 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: dpkg: regarding .../mount_2.16.1-4_amd64.deb containing mount, pre-dependency problem: O: mount pre-depends on libuuid1 (>= 2.16) O: libuuid1 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: Unpacking mount (from .../mount_2.16.1-4_amd64.deb) ... P: Unpacking package mount O: Selecting previously deselected package ncurses-base. O: Unpacking ncurses-base (from .../ncurses-base_5.7+20090803-2_all.deb) ... P: Unpacking package ncurses-base O: Selecting previously deselected package ncurses-bin. O: Unpacking ncurses-bin (from .../ncurses-bin_5.7+20090803-2_amd64.deb) ... P: Unpacking package ncurses-bin O: dpkg: regarding .../ncurses-bin_5.7+20090803-2_amd64.deb containing ncurses-bin, pre-dependency problem: O: ncurses-bin pre-depends on libc6 (>= 2.3) O: libc6 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: dpkg: regarding .../ncurses-bin_5.7+20090803-2_amd64.deb containing ncurses-bin, pre-dependency problem: O: ncurses-bin pre-depends on libncurses5 (>= 5.6+20071006-3) O: libncurses5 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: Selecting previously deselected package sed. O: Unpacking sed (from .../sed_4.2.1-4_amd64.deb) ... P: Unpacking package sed O: dpkg: regarding .../sed_4.2.1-4_amd64.deb containing sed, pre-dependency problem: O: sed pre-depends on libc6 (>= 2.3) O: libc6 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: dpkg: regarding .../sed_4.2.1-4_amd64.deb containing sed, pre-dependency problem: O: sed pre-depends on libselinux1 (>= 1.32) O: libselinux1 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: Selecting previously deselected package lsb-base. O: Unpacking lsb-base (from .../lsb-base_3.2-23_all.deb) ... P: Unpacking package lsb-base O: Selecting previously deselected package sysvinit-utils. O: Unpacking sysvinit-utils (from .../sysvinit-utils_2.87dsf-8_amd64.deb) ... P: Unpacking package sysvinit-utils O: Selecting previously deselected package insserv. O: Unpacking insserv (from .../insserv_1.12.0-14_amd64.deb) ... P: Unpacking package insserv O: Selecting previously deselected package sysv-rc. O: Unpacking sysv-rc (from .../sysv-rc_2.87dsf-8_all.deb) ... P: Unpacking package sysv-rc O: Selecting previously deselected package initscripts. O: Unpacking initscripts (from .../initscripts_2.87dsf-8_amd64.deb) ... P: Unpacking package initscripts O: Selecting previously deselected package sysvinit. O: Unpacking sysvinit (from .../sysvinit_2.87dsf-8_amd64.deb) ... P: Unpacking package sysvinit O: dpkg: regarding .../sysvinit_2.87dsf-8_amd64.deb containing sysvinit, pre-dependency problem: O: sysvinit pre-depends on initscripts O: initscripts is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: dpkg: regarding .../sysvinit_2.87dsf-8_amd64.deb containing sysvinit, pre-dependency problem: O: sysvinit pre-depends on sysv-rc | file-rc O: sysv-rc is unpacked, but has never been configured. O: file-rc is not installed. O: dpkg: warning: ignoring pre-dependency problem! O: dpkg: regarding .../sysvinit_2.87dsf-8_amd64.deb containing sysvinit, pre-dependency problem: O: sysvinit pre-depends on sysvinit-utils (>= 2.86.ds1-66) O: sysvinit-utils is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: Selecting previously deselected package tar. O: dpkg: regarding .../bootstrap/tar_1.22-2_amd64.deb containing tar, pre-dependency problem: O: tar pre-depends on libc6 (>= 2.6) O: libc6 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: Unpacking tar (from .../bootstrap/tar_1.22-2_amd64.deb) ... P: Unpacking package tar O: Selecting previously deselected package tzdata. O: Unpacking tzdata (from .../tzdata_2009s-1_all.deb) ... P: Unpacking package tzdata O: Selecting previously deselected package libslang2. O: Unpacking libslang2 (from .../libslang2_2.2.1-1_amd64.deb) ... P: Unpacking package libslang2 O: Selecting previously deselected package util-linux. O: Unpacking util-linux (from .../util-linux_2.16.1-4_amd64.deb) ... P: Unpacking package util-linux O: dpkg: regarding .../util-linux_2.16.1-4_amd64.deb containing util-linux, pre-dependency problem: O: util-linux pre-depends on libblkid1 (>= 2.16) O: libblkid1 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: dpkg: regarding .../util-linux_2.16.1-4_amd64.deb containing util-linux, pre-dependency problem: O: util-linux pre-depends on libc6 (>= 2.4) O: libc6 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: dpkg: regarding .../util-linux_2.16.1-4_amd64.deb containing util-linux, pre-dependency problem: O: util-linux pre-depends on libncurses5 (>= 5.6+20071006-3) O: libncurses5 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: dpkg: regarding .../util-linux_2.16.1-4_amd64.deb containing util-linux, pre-dependency problem: O: util-linux pre-depends on libselinux1 (>= 1.32) O: libselinux1 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: dpkg: regarding .../util-linux_2.16.1-4_amd64.deb containing util-linux, pre-dependency problem: O: util-linux pre-depends on libslang2 (>= 2.0.7-1) O: libslang2 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: dpkg: regarding .../util-linux_2.16.1-4_amd64.deb containing util-linux, pre-dependency problem: O: util-linux pre-depends on libuuid1 (>= 2.16) O: libuuid1 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: dpkg: regarding .../util-linux_2.16.1-4_amd64.deb containing util-linux, pre-dependency problem: O: util-linux pre-depends on zlib1g (>= 1:1.1.4) O: zlib1g is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: Setting up sensible-utils (0.0.2) ... P: Configuring package sensible-utils O: Setting up gcc-4.3-base (4.3.4-6) ... P: Configuring package gcc-4.3-base O: Setting up libc-bin (2.10.2-2) ... P: Configuring package libc-bin O: Setting up gcc-4.4-base (4.4.2-3) ... P: Configuring package gcc-4.4-base O: Setting up libc6 (2.10.2-2) ... P: Configuring package libc6 O: Use of uninitialized value in concatenation (.) or string at /usr/share/perl5/Debconf/Config.pm line 22. O: Setting up debianutils (3.2.2) ... P: Configuring package debianutils O: Setting up bsdutils (1:2.16.1-4) ... P: Configuring package bsdutils O: Setting up perl-base (5.10.1-8) ... P: Configuring package perl-base O: Setting up libsepol1 (2.0.40-2) ... P: Configuring package libsepol1 O: Setting up diffutils (1:2.8.1-18) ... P: Configuring package diffutils O: Setting up tar (1.22-2) ... P: Configuring package tar O: update-alternatives: using /usr/sbin/rmt-tar to provide /usr/sbin/rmt (rmt) in auto mode. O: Setting up zlib1g (1:1.2.3.3.dfsg-15) ... P: Configuring package zlib1g O: Setting up libgcc1 (1:4.4.2-3) ... P: Configuring package libgcc1 O: Setting up libtext-iconv-perl (1.7-2) ... P: Configuring package libtext-iconv-perl O: Setting up libncurses5 (5.7+20090803-2) ... P: Configuring package libncurses5 O: Setting up libattr1 (1:2.4.44-1) ... P: Configuring package libattr1 O: Setting up e2fslibs (1.41.9-1) ... P: Configuring package e2fslibs O: Setting up base-passwd (3.5.22) ... P: Configuring package base-passwd O: Setting up libcomerr2 (1.41.9-1) ... P: Configuring package libcomerr2 O: Setting up mawk (1.3.3-15) ... P: Configuring package mawk O: Setting up libdb4.7 (4.7.25-8) ... P: Configuring package libdb4.7 O: Setting up grep (2.5.4-4) ... P: Configuring package grep O: Setting up hostname (3.01) ... P: Configuring package hostname O: Setting up libacl1 (2.2.49-1) ... P: Configuring package libacl1 O: Setting up libslang2 (2.2.1-1) ... P: Configuring package libslang2 O: Setting up libss2 (1.41.9-1) ... P: Configuring package libss2 O: Setting up findutils (4.4.2-1) ... P: Configuring package findutils O: install-info: warning: maintainer scripts should not call install-info anymore, O: install-info: warning: this is handled now by a dpkg trigger provided by the O: install-info: warning: install-info package; package findutils should be updated. O: Setting up insserv (1.12.0-14) ... P: Configuring package insserv O: Setting up gzip (1.3.12-8) ... P: Configuring package gzip O: install-info: warning: maintainer scripts should not call install-info anymore, O: install-info: warning: this is handled now by a dpkg trigger provided by the O: install-info: warning: install-info package; package gzip should be updated. O: Setting up liblocale-gettext-perl (1.05-6) ... P: Configuring package liblocale-gettext-perl O: Setting up libselinux1 (2.0.89-4) ... P: Configuring package libselinux1 O: Setting up libstdc++6 (4.4.2-3) ... P: Configuring package libstdc++6 O: Setting up libtext-charwidth-perl (0.04-6) ... P: Configuring package libtext-charwidth-perl O: Setting up libtext-wrapi18n-perl (0.06-7) ... P: Configuring package libtext-wrapi18n-perl O: Setting up dash (0.5.5.1-3) ... P: Configuring package dash O: Setting up coreutils (8.0-2) ... P: Configuring package coreutils O: Setting up lzma (4.43-14) ... P: Configuring package lzma O: Setting up ncurses-base (5.7+20090803-2) ... P: Configuring package ncurses-base O: Setting up ncurses-bin (5.7+20090803-2) ... P: Configuring package ncurses-bin O: Setting up base-files (5.0.0) ... P: Configuring package base-files O: Setting up sed (4.2.1-4) ... P: Configuring package sed O: Setting up debconf-i18n (1.5.28) ... P: Configuring package debconf-i18n O: Setting up sysvinit-utils (2.87dsf-8) ... P: Configuring package sysvinit-utils O: Setting up bash (4.0-7) ... P: Configuring package bash O: update-alternatives: using /usr/share/man/man7/bash-builtins.7.gz to provide /usr/share/man/man7/builtins.7.gz (builtins.7.gz) in auto mode. O: Setting up debconf (1.5.28) ... P: Configuring package debconf O: Setting up lsb-base (3.2-23) ... P: Configuring package lsb-base O: Setting up libpam0g (1.1.0-4) ... P: Configuring package libpam0g O: Setting up sysv-rc (2.87dsf-8) ... P: Configuring package sysv-rc O: Setting up libpam-modules (1.1.0-4) ... P: Configuring package libpam-modules O: Setting up tzdata (2009s-1) ... P: Configuring package tzdata O: O: Current default time zone: 'Etc/UTC' O: Local time is now: XXXX O: Universal Time is now: XXXX O: Run 'dpkg-reconfigure tzdata' if you wish to change it. O: O: Setting up passwd (1:4.1.4.2-1) ... P: Configuring package passwd O: Shadow passwords are now on. O: Setting up libpam-runtime (1.1.0-4) ... P: Configuring package libpam-runtime O: Setting up login (1:4.1.4.2-1) ... P: Configuring package login O: Setting up libuuid1 (2.16.1-4) ... P: Configuring package libuuid1 O: Setting up libblkid1 (2.16.1-4) ... P: Configuring package libblkid1 O: Setting up e2fsprogs (1.41.9-1) ... P: Configuring package e2fsprogs O: Setting up mount (2.16.1-4) ... P: Configuring package mount O: Setting up initscripts (2.87dsf-8) ... P: Configuring package initscripts O: Setting up util-linux (2.16.1-4) ... P: Configuring package util-linux O: update-alternatives: using /bin/more to provide /usr/bin/pager (pager) in auto mode. O: Setting up sysvinit (2.87dsf-8) ... P: Configuring package sysvinit O: sysvinit: creating /dev/initctl O: init: timeout opening/writing control channel /dev/initctl O: Selecting previously deselected package libbz2-1.0. O: (Reading database ... O: 5633 files and directories currently installed.) O: Unpacking libbz2-1.0 (from .../libbz2-1.0_1.0.5-3_amd64.deb) ... P: Unpacking package libbz2-1.0 O: Selecting previously deselected package readline-common. O: Unpacking readline-common (from .../readline-common_6.0-5_all.deb) ... P: Unpacking package readline-common O: Selecting previously deselected package libreadline6. O: Unpacking libreadline6 (from .../libreadline6_6.0-5_amd64.deb) ... P: Unpacking package libreadline6 O: Selecting previously deselected package libusb-0.1-4. O: Unpacking libusb-0.1-4 (from .../libusb-0.1-4_0.1.12-13_amd64.deb) ... P: Unpacking package libusb-0.1-4 O: Selecting previously deselected package gpgv. O: Unpacking gpgv (from .../gpgv_1.4.10-2_amd64.deb) ... P: Unpacking package gpgv O: Selecting previously deselected package gnupg. O: Unpacking gnupg (from .../gnupg_1.4.10-2_amd64.deb) ... P: Unpacking package gnupg O: Selecting previously deselected package debian-archive-keyring. O: Unpacking debian-archive-keyring (from .../debian-archive-keyring_2009.01.31_all.deb) ... P: Unpacking package debian-archive-keyring O: Selecting previously deselected package apt. O: Unpacking apt (from .../bootstrap/apt_0.7.24_amd64.deb) ... P: Unpacking package apt O: Setting up libbz2-1.0 (1.0.5-3) ... P: Configuring package libbz2-1.0 O: Setting up readline-common (6.0-5) ... P: Configuring package readline-common O: Setting up libreadline6 (6.0-5) ... P: Configuring package libreadline6 O: Setting up libusb-0.1-4 (2:0.1.12-13) ... P: Configuring package libusb-0.1-4 O: Setting up gpgv (1.4.10-2) ... P: Configuring package gpgv O: Setting up gnupg (1.4.10-2) ... P: Configuring package gnupg O: Setting up debian-archive-keyring (2009.01.31) ... P: Configuring package debian-archive-keyring O: gpg: O: keyring `/etc/apt/trusted.gpg' created O: gpg: O: /etc/apt/trustdb.gpg: trustdb created O: gpg: O: key 6070D3A1: public key "Debian Archive Automatic Signing Key (4.0/etch) " imported O: gpg: O: key ADB11277: public key "Etch Stable Release Key " imported O: gpg: O: key BBE55AB3: public key "Debian-Volatile Archive Automatic Signing Key (4.0/etch)" imported O: gpg: O: key F42584E6: public key "Lenny Stable Release Key " imported O: gpg: O: key 55BE302B: public key "Debian Archive Automatic Signing Key (5.0/lenny) " imported O: gpg: O: key 6D849617: public key "Debian-Volatile Archive Automatic Signing Key (5.0/lenny)" imported O: gpg: O: Total number processed: 6 O: gpg: O: imported: 6 O: (RSA: 2) O: O: gpg: O: no ultimately trusted keys found O: Setting up apt (0.7.24) ... P: Configuring package apt O: gpg: O: key 6070D3A1: "Debian Archive Automatic Signing Key (4.0/etch) " not changed O: gpg: O: key ADB11277: "Etch Stable Release Key " not changed O: gpg: O: key BBE55AB3: "Debian-Volatile Archive Automatic Signing Key (4.0/etch)" not changed O: gpg: O: key F42584E6: "Lenny Stable Release Key " not changed O: gpg: O: key 55BE302B: "Debian Archive Automatic Signing Key (5.0/lenny) " not changed O: gpg: O: key 6D849617: "Debian-Volatile Archive Automatic Signing Key (5.0/lenny)" not changed O: gpg: O: Total number processed: 6 O: gpg: O: unchanged: 6 P: Configuring helper cdebootstrap-helper-apt O: Selecting previously deselected package cdebootstrap-helper-apt. O: (Reading database ... O: 5992 files and directories currently installed.) O: Unpacking cdebootstrap-helper-apt (from .../cdebootstrap-helper-apt.deb) ... O: Setting up cdebootstrap-helper-apt (1) ... O: Get:1 bootstrap: . Release.gpg [835B] O: Get:2 bootstrap: . Release [104kB] O: Ign bootstrap: ./main Packages O: Reading package lists... O: O: Reading package lists... O: O: Building dependency tree... O: O: Suggested packages: O: binutils-doc bzip2-doc cpp-doc gcc-4.3-locales debian-keyring O: debian-maintainers g++-multilib g++-4.3-multilib gcc-4.3-doc O: libstdc++6-4.3-dbg gcc-multilib manpages-dev autoconf automake1.9 libtool O: flex bison gdb gcc-doc gcc-4.3-multilib libmudflap0-4.3-dev libgcc1-dbg O: libgomp1-dbg libmudflap0-dbg glibc-doc libstdc++6-4.3-doc make-doc ed O: diff-doc perl-doc libterm-readline-gnu-perl libterm-readline-perl-perl O: Recommended packages: O: netbase O: The following NEW packages will be installed: O: binutils build-essential bzip2 cpp cpp-4.3 dpkg-dev fakeroot g++ g++-4.3 gcc O: gcc-4.3 libc-dev-bin libc6-dev libgdbm3 libgmp3c2 libgomp1 liblzma1 O: libmpfr1ldbl libstdc++6-4.3-dev libtimedate-perl linux-libc-dev make patch O: perl perl-modules xz-utils O: 0 upgraded, 26 newly installed, 0 to remove and 0 not upgraded. O: Need to get 0B/29.6MB of archives. O: After this operation, 102MB of additional disk space will be used. O: WARNING: The following packages cannot be authenticated! O: libgdbm3 patch perl-modules perl binutils libc-dev-bin linux-libc-dev O: libc6-dev libgmp3c2 libmpfr1ldbl cpp-4.3 cpp libgomp1 gcc-4.3 gcc O: libstdc++6-4.3-dev g++-4.3 g++ make bzip2 liblzma1 xz-utils libtimedate-perl O: dpkg-dev build-essential fakeroot O: debconf: delaying package configuration, since apt-utils is not installed O: Authentication warning overridden. O: Selecting previously deselected package libgdbm3. O: (Reading database ... 5993 files and directories currently installed.) O: Unpacking libgdbm3 (from .../libgdbm3_1.8.3-9_amd64.deb) ... P: Unpacking package libgdbm3 O: Selecting previously deselected package patch. O: Unpacking patch (from .../patch_2.5.9-5_amd64.deb) ... P: Unpacking package patch O: Selecting previously deselected package perl-modules. O: Unpacking perl-modules (from .../perl-modules_5.10.1-8_all.deb) ... P: Unpacking package perl-modules O: Selecting previously deselected package perl. O: Unpacking perl (from .../perl_5.10.1-8_amd64.deb) ... P: Unpacking package perl O: Selecting previously deselected package binutils. O: Unpacking binutils (from .../binutils_2.20-4_amd64.deb) ... P: Unpacking package binutils O: Selecting previously deselected package libc-dev-bin. O: Unpacking libc-dev-bin (from .../libc-dev-bin_2.10.2-2_amd64.deb) ... P: Unpacking package libc-dev-bin O: Selecting previously deselected package linux-libc-dev. O: Unpacking linux-libc-dev (from .../linux-libc-dev_2.6.32~rc8-1~experimental.1_amd64.deb) ... P: Unpacking package linux-libc-dev O: Selecting previously deselected package libc6-dev. O: Unpacking libc6-dev (from .../libc6-dev_2.10.2-2_amd64.deb) ... P: Unpacking package libc6-dev O: Selecting previously deselected package libgmp3c2. O: Unpacking libgmp3c2 (from .../libgmp3c2_4.3.1+dfsg-3_amd64.deb) ... P: Unpacking package libgmp3c2 O: Selecting previously deselected package libmpfr1ldbl. O: Unpacking libmpfr1ldbl (from .../libmpfr1ldbl_2.4.1-2_amd64.deb) ... P: Unpacking package libmpfr1ldbl O: Selecting previously deselected package cpp-4.3. O: Unpacking cpp-4.3 (from .../cpp-4.3_4.3.4-6_amd64.deb) ... P: Unpacking package cpp-4.3 O: Selecting previously deselected package cpp. O: Unpacking cpp (from .../cpp_4.3.4-1_amd64.deb) ... P: Unpacking package cpp O: Selecting previously deselected package libgomp1. O: Unpacking libgomp1 (from .../libgomp1_4.4.2-3_amd64.deb) ... P: Unpacking package libgomp1 O: Selecting previously deselected package gcc-4.3. O: Unpacking gcc-4.3 (from .../gcc-4.3_4.3.4-6_amd64.deb) ... P: Unpacking package gcc-4.3 O: Selecting previously deselected package gcc. O: Unpacking gcc (from .../gcc_4.3.4-1_amd64.deb) ... P: Unpacking package gcc O: Selecting previously deselected package libstdc++6-4.3-dev. O: Unpacking libstdc++6-4.3-dev (from .../libstdc++6-4.3-dev_4.3.4-6_amd64.deb) ... P: Unpacking package libstdc++6-4.3-dev O: Selecting previously deselected package g++-4.3. O: Unpacking g++-4.3 (from .../g++-4.3_4.3.4-6_amd64.deb) ... P: Unpacking package g++-4.3 O: Selecting previously deselected package g++. O: Unpacking g++ (from .../g++_4.3.4-1_amd64.deb) ... P: Unpacking package g++ O: Selecting previously deselected package make. O: Unpacking make (from .../make_3.81-7_amd64.deb) ... P: Unpacking package make O: Selecting previously deselected package bzip2. O: Unpacking bzip2 (from .../bzip2_1.0.5-3_amd64.deb) ... P: Unpacking package bzip2 O: Selecting previously deselected package liblzma1. O: Unpacking liblzma1 (from .../liblzma1_4.999.9beta+20091116-1_amd64.deb) ... P: Unpacking package liblzma1 O: Selecting previously deselected package xz-utils. O: Unpacking xz-utils (from .../xz-utils_4.999.9beta+20091116-1_amd64.deb) ... P: Unpacking package xz-utils O: Selecting previously deselected package libtimedate-perl. O: Unpacking libtimedate-perl (from .../libtimedate-perl_1.1900-1_all.deb) ... P: Unpacking package libtimedate-perl O: Selecting previously deselected package dpkg-dev. O: Unpacking dpkg-dev (from .../dpkg-dev_1.15.5.3_all.deb) ... P: Unpacking package dpkg-dev O: Selecting previously deselected package build-essential. O: Unpacking build-essential (from .../build-essential_11.4_amd64.deb) ... P: Unpacking package build-essential O: Selecting previously deselected package fakeroot. O: Unpacking fakeroot (from .../fakeroot_1.14.4-1_amd64.deb) ... P: Unpacking package fakeroot O: Setting up libgdbm3 (1.8.3-9) ... P: Configuring package libgdbm3 O: Setting up patch (2.5.9-5) ... P: Configuring package patch O: Setting up binutils (2.20-4) ... P: Configuring package binutils O: Setting up libc-dev-bin (2.10.2-2) ... P: Configuring package libc-dev-bin O: Setting up linux-libc-dev (2.6.32~rc8-1~experimental.1) ... P: Configuring package linux-libc-dev O: Setting up libc6-dev (2.10.2-2) ... P: Configuring package libc6-dev O: Setting up libgmp3c2 (2:4.3.1+dfsg-3) ... P: Configuring package libgmp3c2 O: Setting up libmpfr1ldbl (2.4.1-2) ... P: Configuring package libmpfr1ldbl O: Setting up cpp-4.3 (4.3.4-6) ... P: Configuring package cpp-4.3 O: Setting up cpp (4:4.3.4-1) ... P: Configuring package cpp O: Setting up libgomp1 (4.4.2-3) ... P: Configuring package libgomp1 O: Setting up gcc-4.3 (4.3.4-6) ... P: Configuring package gcc-4.3 O: Setting up gcc (4:4.3.4-1) ... P: Configuring package gcc O: Setting up make (3.81-7) ... P: Configuring package make O: Setting up bzip2 (1.0.5-3) ... P: Configuring package bzip2 O: Setting up liblzma1 (4.999.9beta+20091116-1) ... P: Configuring package liblzma1 O: Setting up xz-utils (4.999.9beta+20091116-1) ... P: Configuring package xz-utils O: Setting up fakeroot (1.14.4-1) ... P: Configuring package fakeroot O: update-alternatives: using /usr/bin/fakeroot-sysv to provide /usr/bin/fakeroot (fakeroot) in auto mode. O: Setting up perl-modules (5.10.1-8) ... P: Configuring package perl-modules O: Setting up libstdc++6-4.3-dev (4.3.4-6) ... P: Configuring package libstdc++6-4.3-dev O: Setting up perl (5.10.1-8) ... P: Configuring package perl O: update-alternatives: using /usr/bin/prename to provide /usr/bin/rename (rename) in auto mode. O: Setting up g++-4.3 (4.3.4-6) ... P: Configuring package g++-4.3 O: Setting up g++ (4:4.3.4-1) ... P: Configuring package g++ O: update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode. O: Setting up libtimedate-perl (1.1900-1) ... P: Configuring package libtimedate-perl O: Setting up dpkg-dev (1.15.5.3) ... P: Configuring package dpkg-dev O: Setting up build-essential (11.4) ... P: Configuring package build-essential P: Deconfiguring helper cdebootstrap-helper-apt O: (Reading database ... O: 9874 files and directories currently installed.) O: Removing cdebootstrap-helper-apt ... O: Purging configuration files for cdebootstrap-helper-apt ... O: Reading package lists... O: P: Deconfiguring helper cdebootstrap-helper-makedev O: (Reading database ... O: 9873 files and directories currently installed.) O: Removing cdebootstrap-helper-makedev ... O: Purging configuration files for cdebootstrap-helper-makedev ... P: Writing apt sources.list P: Writing hosts P: Writing resolv.conf I: debootstrap finished I: copying local configuration I: Installing apt-lines I: user script /var/cache/pbuilder/build//NUM/tmp/hooks/G50-initscripts-2.86.ds1-11-cdebootstrap0.3.9.sh starting warning: can't open /etc/mtab: No such file or directory umount: /sys: not mounted warning: can't open /etc/mtab: No such file or directory umount: /proc/bus/usb: not found warning: can't open /etc/mtab: No such file or directory umount: /dev/shm: not mounted warning: can't open /etc/mtab: No such file or directory umount: /proc: not mounted warning: can't open /etc/mtab: No such file or directory umount: /dev/pts: not mounted I: user script /var/cache/pbuilder/build//NUM/tmp/hooks/G50-initscripts-2.86.ds1-11-cdebootstrap0.3.9.sh finished I: Refreshing the base.tgz I: upgrading packages I: mounting /proc filesystem I: mounting /dev/pts filesystem I: policy-rc.d already exists Get:1 http://localhost sid Release.gpg [835B] Get:2 http://localhost sid Release [104kB] Ign http://localhost sid/main Packages Ign http://localhost sid/main Packages Get:3 http://localhost sid/main Packages [8278kB] Fetched XXXB in Xs (XXXXXB/s) Reading package lists... Reading package lists... Building dependency tree... Reading state information... 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. Reading package lists... Building dependency tree... Reading state information... build-essential is already the newest version. dpkg-dev is already the newest version. apt is already the newest version. The following extra packages will be installed: libapr1 libaprutil1 libboost-iostreams1.40.0 libcwidget3 libdb4.8 libept0 libexpat1 liblog4cxx10 libncursesw5 libsigc++-2.0-0c2a libsqlite3-0 libxapian15 Suggested packages: tasksel debtags libcwidget-dev xapian-tools Recommended packages: aptitude-doc-en aptitude-doc apt-xapian-index libparse-debianchangelog-perl libgpm2 The following NEW packages will be installed: aptitude libapr1 libaprutil1 libboost-iostreams1.40.0 libcwidget3 libdb4.8 libept0 libexpat1 liblog4cxx10 libncursesw5 libsigc++-2.0-0c2a libsqlite3-0 libxapian15 0 upgraded, 13 newly installed, 0 to remove and 0 not upgraded. Need to get 7357kB of archives. After this operation, 21.3MB of additional disk space will be used. Get:1 http://localhost sid/main libboost-iostreams1.40.0 1.40.0-4 [40.7kB] Get:2 http://localhost sid/main libncursesw5 5.7+20090803-2 [379kB] Get:3 http://localhost sid/main libsigc++-2.0-0c2a 2.0.18-2 [34.2kB] Get:4 http://localhost sid/main libcwidget3 0.5.14-1 [310kB] Get:5 http://localhost sid/main libxapian15 1.0.17-1 [816kB] Get:6 http://localhost sid/main libept0 0.5.29 [204kB] Get:7 http://localhost sid/main libapr1 1.3.8-1 [123kB] Get:8 http://localhost sid/main libdb4.8 4.8.24-1 [681kB] Get:9 http://localhost sid/main libexpat1 2.0.1-5 [135kB] Get:10 http://localhost sid/main libaprutil1 1.3.9+dfsg-3 [90.7kB] Get:11 http://localhost sid/main liblog4cxx10 0.10.0-1 [574kB] Get:12 http://localhost sid/main libsqlite3-0 3.6.20-1 [300kB] Get:13 http://localhost sid/main aptitude 0.6.1.3-3 [3668kB] debconf: delaying package configuration, since apt-utils is not installed Fetched XXXB in Xs (XXXXXB/s) Selecting previously deselected package libboost-iostreams1.40.0. (Reading database ... 9873 files and directories currently installed.) Unpacking libboost-iostreams1.40.0 (from .../libboost-iostreams1.40.0_1.40.0-4_amd64.deb) ... Selecting previously deselected package libncursesw5. Unpacking libncursesw5 (from .../libncursesw5_5.7+20090803-2_amd64.deb) ... Selecting previously deselected package libsigc++-2.0-0c2a. Unpacking libsigc++-2.0-0c2a (from .../libsigc++-2.0-0c2a_2.0.18-2_amd64.deb) ... Selecting previously deselected package libcwidget3. Unpacking libcwidget3 (from .../libcwidget3_0.5.14-1_amd64.deb) ... Selecting previously deselected package libxapian15. Unpacking libxapian15 (from .../libxapian15_1.0.17-1_amd64.deb) ... Selecting previously deselected package libept0. Unpacking libept0 (from .../libept0_0.5.29_amd64.deb) ... Selecting previously deselected package libapr1. Unpacking libapr1 (from .../libapr1_1.3.8-1_amd64.deb) ... Selecting previously deselected package libdb4.8. Unpacking libdb4.8 (from .../libdb4.8_4.8.24-1_amd64.deb) ... Selecting previously deselected package libexpat1. Unpacking libexpat1 (from .../libexpat1_2.0.1-5_amd64.deb) ... Selecting previously deselected package libaprutil1. Unpacking libaprutil1 (from .../libaprutil1_1.3.9+dfsg-3_amd64.deb) ... Selecting previously deselected package liblog4cxx10. Unpacking liblog4cxx10 (from .../liblog4cxx10_0.10.0-1_amd64.deb) ... Selecting previously deselected package libsqlite3-0. Unpacking libsqlite3-0 (from .../libsqlite3-0_3.6.20-1_amd64.deb) ... Selecting previously deselected package aptitude. Unpacking aptitude (from .../aptitude_0.6.1.3-3_amd64.deb) ... Setting up libboost-iostreams1.40.0 (1.40.0-4) ... Setting up libncursesw5 (5.7+20090803-2) ... Setting up libsigc++-2.0-0c2a (2.0.18-2) ... Setting up libcwidget3 (0.5.14-1) ... Setting up libxapian15 (1.0.17-1) ... Setting up libept0 (0.5.29) ... Setting up libapr1 (1.3.8-1) ... Setting up libdb4.8 (4.8.24-1) ... Setting up libexpat1 (2.0.1-5) ... Setting up libaprutil1 (1.3.9+dfsg-3) ... Setting up liblog4cxx10 (0.10.0-1) ... Setting up libsqlite3-0 (3.6.20-1) ... Setting up aptitude (0.6.1.3-3) ... update-alternatives: using /usr/bin/aptitude-curses to provide /usr/bin/aptitude (aptitude) in auto mode. I: user script /var/cache/pbuilder/build//NUM/tmp/hooks/E50-initscripts-2.86.ds1-7.workaround.sh starting umount: /sys: not mounted umount: /run: not found umount: /proc/bus/usb: not mounted umount: /dev/shm: not mounted umount: /lib/init/rw: not mounted cat: /var/run/inetd.pid: No such file or directory kill: 20: Usage: kill [-s sigspec | -signum | -sigspec] [pid | job]... or kill -l [exitstatus] I: user script /var/cache/pbuilder/build//NUM/tmp/hooks/E50-initscripts-2.86.ds1-7.workaround.sh finished I: unmounting dev/pts filesystem I: unmounting proc filesystem I: creating base tarball [/TESTDIR/testimage] I: cleaning the build env I: removing directory /var/cache/pbuilder/build//NUM and its subdirectories pbuilder-0.215ubuntu7/testsuite/cdebootstrap/pbuilder-execute-lenny.log0000664000000000000000000000071212312041170023356 0ustar I: Building the build Environment I: extracting base tarball [/TESTDIR/testimage] I: creating local configuration I: copying local configuration I: mounting /proc filesystem I: mounting /dev/pts filesystem I: policy-rc.d already exists --- parameters given to this script [test1 test2 test3] I: unmounting dev/pts filesystem I: unmounting proc filesystem I: cleaning the build env I: removing directory /var/cache/pbuilder/build//NUM and its subdirectories pbuilder-0.215ubuntu7/testsuite/cdebootstrap/pbuilder-update-squeeze-sid-experimental.log0000664000000000000000000001156212312041170027007 0ustar I: Upgrading for distribution sid I: Building the build Environment I: extracting base tarball [/TESTDIR/testimage] I: creating local configuration I: copying local configuration I: Installing apt-lines I: Installing apt-lines and pinning for experimental I: mounting /proc filesystem I: mounting /dev/pts filesystem I: policy-rc.d already exists I: Refreshing the base.tgz I: upgrading packages Hit http://localhost sid Release.gpg Get:1 http://localhost experimental Release.gpg [835B] Hit http://localhost sid Release Get:2 http://localhost experimental Release [98.8kB] Ign http://localhost sid/main Packages/DiffIndex Ign http://localhost experimental/main Packages Ign http://localhost sid/main Packages Ign http://localhost experimental/main Packages Ign http://localhost sid/main Packages Get:3 http://localhost experimental/main Packages [315kB] Hit http://localhost sid/main Packages Fetched XXXB in Xs (XXXXXB/s) Reading package lists... Reading package lists... Building dependency tree... Reading state information... The following packages will be upgraded: bsdutils diffutils libblkid1 libsigc++-2.0-0c2a libuuid1 mount util-linux 7 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. Need to get 1415kB of archives. After this operation, 389kB of additional disk space will be used. Get:1 http://localhost experimental/main diffutils 1:2.8.7-0.1 [248kB] Get:2 http://localhost experimental/main libuuid1 2.17~rc1-1 [55.8kB] Get:3 http://localhost experimental/main libblkid1 2.17~rc1-1 [103kB] Get:4 http://localhost experimental/main mount 2.17~rc1-1 [170kB] Get:5 http://localhost experimental/main util-linux 2.17~rc1-1 [726kB] Get:6 http://localhost experimental/main bsdutils 1:2.17~rc1-1 [76.8kB] Get:7 http://localhost experimental/main libsigc++-2.0-0c2a 2.2.2-1 [35.3kB] debconf: delaying package configuration, since apt-utils is not installed Fetched XXXB in Xs (XXXXXB/s) (Reading database ... 10904 files and directories currently installed.) Preparing to replace diffutils 1:2.8.1-18 (using .../diffutils_1%3a2.8.7-0.1_amd64.deb) ... Unpacking replacement diffutils ... Setting up diffutils (1:2.8.7-0.1) ... (Reading database ... 10912 files and directories currently installed.) Preparing to replace libuuid1 2.16.2-0 (using .../libuuid1_2.17~rc1-1_amd64.deb) ... Unpacking replacement libuuid1 ... Setting up libuuid1 (2.17~rc1-1) ... (Reading database ... 10912 files and directories currently installed.) Preparing to replace libblkid1 2.16.2-0 (using .../libblkid1_2.17~rc1-1_amd64.deb) ... Unpacking replacement libblkid1 ... Setting up libblkid1 (2.17~rc1-1) ... (Reading database ... 10912 files and directories currently installed.) Preparing to replace mount 2.16.2-0 (using .../mount_2.17~rc1-1_amd64.deb) ... Unpacking replacement mount ... Setting up mount (2.17~rc1-1) ... (Reading database ... 10912 files and directories currently installed.) Preparing to replace util-linux 2.16.2-0 (using .../util-linux_2.17~rc1-1_amd64.deb) ... Unpacking replacement util-linux ... Setting up util-linux (2.17~rc1-1) ... install-info: warning: maintainer scripts should not call install-info anymore, install-info: warning: this is handled now by a dpkg trigger provided by the install-info: warning: install-info package; package util-linux should be updated. (Reading database ... 10915 files and directories currently installed.) Preparing to replace bsdutils 1:2.16.2-0 (using .../bsdutils_1%3a2.17~rc1-1_amd64.deb) ... Unpacking replacement bsdutils ... Setting up bsdutils (1:2.17~rc1-1) ... (Reading database ... 10915 files and directories currently installed.) Preparing to replace libsigc++-2.0-0c2a 2.0.18-2 (using .../libsigc++-2.0-0c2a_2.2.2-1_amd64.deb) ... Unpacking replacement libsigc++-2.0-0c2a ... Setting up libsigc++-2.0-0c2a (2.2.2-1) ... Reading package lists... Building dependency tree... Reading state information... 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. Reading package lists... Building dependency tree... Reading state information... build-essential is already the newest version. dpkg-dev is already the newest version. apt is already the newest version. aptitude is already the newest version. 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. I: user script /var/cache/pbuilder/build//NUM/tmp/hooks/E50-initscripts-2.86.ds1-7.workaround.sh starting umount: /sys: not mounted umount: /run: not found umount: /proc/bus/usb: not mounted umount: /dev/shm: not mounted umount: /lib/init/rw: not mounted cat: /var/run/inetd.pid: No such file or directory kill: 20: Usage: kill [-s sigspec | -signum | -sigspec] [pid | job]... or kill -l [exitstatus] I: user script /var/cache/pbuilder/build//NUM/tmp/hooks/E50-initscripts-2.86.ds1-7.workaround.sh finished I: unmounting dev/pts filesystem I: unmounting proc filesystem I: creating base tarball [/TESTDIR/testimage] I: cleaning the build env I: removing directory /var/cache/pbuilder/build//NUM and its subdirectories pbuilder-0.215ubuntu7/testsuite/cdebootstrap/pdebuild-internal-lenny.log0000664000000000000000000007312312312041170023520 0ustar W: /home/dancer/.pbuilderrc does not exist I: Building the build Environment I: extracting base tarball [/TESTDIR/testimage] I: creating local configuration I: copying local configuration I: mounting /proc filesystem I: mounting /dev/pts filesystem I: Mounting /TESTDIR/dir2 I: policy-rc.d already exists Reading package lists... Building dependency tree... Reading state information... passwd is already the newest version. The following extra packages will be installed: cdebootstrap libdebian-installer-extra4 libdebian-installer4 libssl0.9.8 wget Suggested packages: pbuilder-uml Recommended packages: sudo devscripts cowdancer The following NEW packages will be installed: cdebootstrap libdebian-installer-extra4 libdebian-installer4 libssl0.9.8 pbuilder wget 0 upgraded, 6 newly installed, 0 to remove and 0 not upgraded. Need to get 1897kB of archives. After this operation, 5775kB of additional disk space will be used. Get:1 http://localhost lenny/main libssl0.9.8 0.9.8g-15+lenny3 [975kB] Get:2 http://localhost lenny/main wget 1.11.4-2 [616kB] Get:3 http://localhost lenny/main libdebian-installer4 0.61 [30.1kB] Get:4 http://localhost lenny/main libdebian-installer-extra4 0.61 [11.6kB] Get:5 http://localhost lenny/main cdebootstrap 0.5.4 [32.3kB] Get:6 http://localhost lenny/main pbuilder 0.181 [231kB] debconf: delaying package configuration, since apt-utils is not installed Fetched XXXB in Xs (XXXXXB/s) Selecting previously deselected package libssl0.9.8. (Reading database ... 9634 files and directories currently installed.) Unpacking libssl0.9.8 (from .../libssl0.9.8_0.9.8g-15+lenny3_amd64.deb) ... Selecting previously deselected package wget. Unpacking wget (from .../wget_1.11.4-2_amd64.deb) ... Selecting previously deselected package libdebian-installer4. Unpacking libdebian-installer4 (from .../libdebian-installer4_0.61_amd64.deb) ... Selecting previously deselected package libdebian-installer-extra4. Unpacking libdebian-installer-extra4 (from .../libdebian-installer-extra4_0.61_amd64.deb) ... Selecting previously deselected package cdebootstrap. Unpacking cdebootstrap (from .../cdebootstrap_0.5.4_amd64.deb) ... Selecting previously deselected package pbuilder. Unpacking pbuilder (from .../pbuilder_0.181_all.deb) ... Setting up libssl0.9.8 (0.9.8g-15+lenny3) ... Setting up wget (1.11.4-2) ... Setting up libdebian-installer4 (0.61) ... Setting up libdebian-installer-extra4 (0.61) ... Setting up cdebootstrap (0.5.4) ... Setting up pbuilder (0.181) ... I: Setting DEBBUILDOPTS= W: no hooks of type D found -- ignoring -> Attempting to satisfy build-dependencies -> Creating pbuilder-satisfydepends-dummy package Package: pbuilder-satisfydepends-dummy Version: 0.invalid.0 Architecture: amd64 Maintainer: Debian Pbuilder Team Description: Dummy package to satisfy dependencies with aptitude - created by pbuilder This package was created automatically by pbuilder and should Depends: debhelper (>> 3.0.0), libdshconfig1-dev (>= 0.20.11-1), po4a dpkg-deb: building package `pbuilder-satisfydepends-dummy' in `/tmp/satisfydepends-aptitude/pbuilder-satisfydepends-dummy.deb'. Reading package lists... Building dependency tree... Reading state information... aptitude is already the newest version. 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. Selecting previously deselected package pbuilder-satisfydepends-dummy. (Reading database ... 9825 files and directories currently installed.) Unpacking pbuilder-satisfydepends-dummy (from .../pbuilder-satisfydepends-dummy.deb) ... dpkg: dependency problems prevent configuration of pbuilder-satisfydepends-dummy: pbuilder-satisfydepends-dummy depends on debhelper (>> 3.0.0); however: Package debhelper is not installed. pbuilder-satisfydepends-dummy depends on libdshconfig1-dev (>= 0.20.11-1); however: Package libdshconfig1-dev is not installed. pbuilder-satisfydepends-dummy depends on po4a; however: Package po4a is not installed. dpkg: error processing pbuilder-satisfydepends-dummy (--install): dependency problems - leaving unconfigured Errors were encountered while processing: pbuilder-satisfydepends-dummy Reading package lists... Building dependency tree... Reading state information... Initializing package states... Writing extended state information... The following NEW packages will be installed: bsdmainutils{a} debhelper{a} file{a} gettext{a} gettext-base{a} groff-base{a} html2text{a} intltool-debian{a} libdshconfig1{a} libdshconfig1-dev{a} libmagic1{a} libsgmls-perl{a} libsp1c2{a} man-db{a} po-debconf{a} po4a{a} sp{a} The following partially installed packages will be configured: pbuilder-satisfydepends-dummy 0 packages upgraded, 17 newly installed, 0 to remove and 0 not upgraded. Need to get 8922kB of archives. After unpacking 28.1MB will be used. Writing extended state information... Get:1 http://localhost lenny/main libmagic1 4.26-1 [369kB] Get:2 http://localhost lenny/main file 4.26-1 [44.5kB] Get:3 http://localhost lenny/main html2text 1.3.2a-5 [95.9kB] Get:4 http://localhost lenny/main gettext-base 0.17-4 [136kB] Get:5 http://localhost lenny/main gettext 0.17-4 [2791kB] Get:6 http://localhost lenny/main intltool-debian 0.35.0+20060710.1 [30.8kB] Get:7 http://localhost lenny/main po-debconf 1.0.15 [237kB] Get:8 http://localhost lenny/main groff-base 1.18.1.1-21 [898kB] Get:9 http://localhost lenny/main bsdmainutils 6.1.10 [179kB] Get:10 http://localhost lenny/main man-db 2.5.2-4 [1107kB] Get:11 http://localhost lenny/main debhelper 7.0.15 [554kB] Get:12 http://localhost lenny/main libdshconfig1 0.20.13-1 [11.0kB] Get:13 http://localhost lenny/main libdshconfig1-dev 0.20.13-1 [25.4kB] Get:14 http://localhost lenny/main libsgmls-perl 1.03ii-32 [27.8kB] Get:15 http://localhost lenny/main libsp1c2 1.3.4-1.2.1-47 [1386kB] Get:16 http://localhost lenny/main sp 1.3.4-1.2.1-47 [182kB] Get:17 http://localhost lenny/main po4a 0.34-2 [847kB] debconf: delaying package configuration, since apt-utils is not installed Fetched XXXB in Xs (XXXXXB/s) Selecting previously deselected package libmagic1. (Reading database ... 9825 files and directories currently installed.) Unpacking libmagic1 (from .../libmagic1_4.26-1_amd64.deb) ... Selecting previously deselected package file. Unpacking file (from .../archives/file_4.26-1_amd64.deb) ... Selecting previously deselected package html2text. Unpacking html2text (from .../html2text_1.3.2a-5_amd64.deb) ... Selecting previously deselected package gettext-base. Unpacking gettext-base (from .../gettext-base_0.17-4_amd64.deb) ... Selecting previously deselected package gettext. Unpacking gettext (from .../gettext_0.17-4_amd64.deb) ... Selecting previously deselected package intltool-debian. Unpacking intltool-debian (from .../intltool-debian_0.35.0+20060710.1_all.deb) ... Selecting previously deselected package po-debconf. Unpacking po-debconf (from .../po-debconf_1.0.15_all.deb) ... Selecting previously deselected package groff-base. Unpacking groff-base (from .../groff-base_1.18.1.1-21_amd64.deb) ... Selecting previously deselected package bsdmainutils. Unpacking bsdmainutils (from .../bsdmainutils_6.1.10_amd64.deb) ... Selecting previously deselected package man-db. Unpacking man-db (from .../man-db_2.5.2-4_amd64.deb) ... Selecting previously deselected package debhelper. Unpacking debhelper (from .../debhelper_7.0.15_all.deb) ... Selecting previously deselected package libdshconfig1. Unpacking libdshconfig1 (from .../libdshconfig1_0.20.13-1_amd64.deb) ... Selecting previously deselected package libdshconfig1-dev. Unpacking libdshconfig1-dev (from .../libdshconfig1-dev_0.20.13-1_amd64.deb) ... Selecting previously deselected package libsgmls-perl. Unpacking libsgmls-perl (from .../libsgmls-perl_1.03ii-32_all.deb) ... Selecting previously deselected package libsp1c2. Unpacking libsp1c2 (from .../libsp1c2_1.3.4-1.2.1-47_amd64.deb) ... Selecting previously deselected package sp. Unpacking sp (from .../sp_1.3.4-1.2.1-47_amd64.deb) ... Selecting previously deselected package po4a. Unpacking po4a (from .../archives/po4a_0.34-2_all.deb) ... Setting up libmagic1 (4.26-1) ... Setting up file (4.26-1) ... Setting up html2text (1.3.2a-5) ... Setting up gettext-base (0.17-4) ... Setting up gettext (0.17-4) ... Setting up intltool-debian (0.35.0+20060710.1) ... Setting up po-debconf (1.0.15) ... Setting up groff-base (1.18.1.1-21) ... Setting up bsdmainutils (6.1.10) ... Setting up man-db (2.5.2-4) ... Building database of manual pages ... Setting up debhelper (7.0.15) ... Setting up libdshconfig1 (0.20.13-1) ... Setting up libdshconfig1-dev (0.20.13-1) ... Setting up libsgmls-perl (1.03ii-32) ... Setting up libsp1c2 (1.3.4-1.2.1-47) ... Setting up sp (1.3.4-1.2.1-47) ... Setting up po4a (0.34-2) ... Setting up pbuilder-satisfydepends-dummy (0.invalid.0) ... Reading package lists... Building dependency tree... Reading state information... Reading extended state information... Initializing package states... Writing extended state information... -> Finished parsing the build-deps Reading package lists... Building dependency tree... Reading state information... fakeroot is already the newest version. 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. W: no hooks of type A found -- ignoring dpkg-buildpackage: set CFLAGS to default value: -g -O2 dpkg-buildpackage: set CPPFLAGS to default value: dpkg-buildpackage: set LDFLAGS to default value: dpkg-buildpackage: set FFLAGS to default value: -g -O2 dpkg-buildpackage: set CXXFLAGS to default value: -g -O2 dpkg-buildpackage: source package dsh dpkg-buildpackage: source version 0.25.10-1 dpkg-buildpackage: source changed by Junichi Uekawa dpkg-buildpackage: host architecture amd64 fakeroot debian/rules clean dh_testdir dh_testroot rm -f build-stamp configure-stamp /usr/bin/make clean make[1]: Entering directory `/TESTDIR/dir2/dsh-0.25.10' make[1]: *** No rule to make target `clean'. Stop. make[1]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10' make: [clean] Error 2 (ignored) /usr/bin/make distclean make[1]: Entering directory `/TESTDIR/dir2/dsh-0.25.10' make[1]: *** No rule to make target `distclean'. Stop. make[1]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10' make: [clean] Error 2 (ignored) dh_clean dpkg-source -b dsh-0.25.10 dpkg-source: info: using source format `1.0' dpkg-source: info: building dsh using existing dsh_0.25.10.orig.tar.gz dpkg-source: info: building dsh in dsh_0.25.10-1.diff.gz dpkg-source: warning: file dsh-0.25.10/dcp.sh has no final newline (either original or modified version) dpkg-source: warning: file dsh-0.25.10/debian/compat has no final newline (either original or modified version) dpkg-source: info: building dsh in dsh_0.25.10-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 ISO C89... none needed checking dependency style of gcc... gcc3 checking for strerror in -lcposix... no checking for gcc... (cached) gcc checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) 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 ISO C89... (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 grep that handles long lines and -e... /bin/grep checking for egrep... /bin/grep -E checking for ANSI C header files... yes checking for sys/wait.h that is POSIX.1 compatible... yes checking build system type... x86_64-unknown-linux-gnu checking host system type... x86_64-unknown-linux-gnu checking for a sed that does not truncate output... /bin/sed checking for ld used by gcc... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for /usr/bin/ld option to reload object files... -r checking for BSD-compatible nm... /usr/bin/nm -B checking whether ln -s works... yes checking how to recognize dependent libraries... pass_all checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking dlfcn.h usability... yes checking dlfcn.h presence... yes checking for dlfcn.h... yes checking for g++... g++ checking whether we are using the GNU C++ compiler... yes checking whether g++ accepts -g... yes checking dependency style of g++... gcc3 checking how to run the C++ preprocessor... g++ -E checking for g77... no checking for xlf... no checking for f77... no checking for frt... no checking for pgf77... no checking for cf77... no checking for fort77... no checking for fl32... no checking for af77... no checking for xlf90... no checking for f90... no checking for pgf90... no checking for pghpf... no checking for epcf90... no checking for gfortran... no checking for g95... no checking for xlf95... no checking for f95... no checking for fort... no checking for ifort... no checking for ifc... no checking for efc... no checking for pgf95... no checking for lf95... no checking for ftn... no checking whether we are using the GNU Fortran 77 compiler... no checking whether accepts -g... no checking the maximum length of command line arguments... 98304 checking command to parse /usr/bin/nm -B output from gcc object... ok checking for objdir... .libs checking for ar... ar checking for ranlib... ranlib checking for strip... strip checking if gcc supports -fno-rtti -fno-exceptions... no checking for gcc option to produce PIC... -fPIC checking if gcc PIC flag -fPIC works... yes checking if gcc static flag -static works... yes checking if gcc supports -c -o file.o... yes checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) 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 -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking for g++ option to produce PIC... -fPIC checking if g++ PIC flag -fPIC works... yes checking if g++ static flag -static works... yes checking if g++ supports -c -o file.o... yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate appending configuration tag "F77" to libtool checking 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 -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) 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: WARNING: po/Makefile.in.in seems to ignore the --datarootdir setting 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 `/TESTDIR/dir2/dsh-0.25.10' /usr/bin/make all-recursive make[2]: Entering directory `/TESTDIR/dir2/dsh-0.25.10' Making all in m4 make[3]: Entering directory `/TESTDIR/dir2/dsh-0.25.10/m4' make[3]: Nothing to be done for `all'. make[3]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10/m4' Making all in po make[3]: Entering directory `/TESTDIR/dir2/dsh-0.25.10/po' make[3]: Nothing to be done for `all'. make[3]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10/po' make[3]: Entering directory `/TESTDIR/dir2/dsh-0.25.10' 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 --tag=CC --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 `/TESTDIR/dir2/dsh-0.25.10' make[2]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10' make[1]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10' /usr/bin/make check make[1]: Entering directory `/TESTDIR/dir2/dsh-0.25.10' Making check in m4 make[2]: Entering directory `/TESTDIR/dir2/dsh-0.25.10/m4' make[2]: Nothing to be done for `check'. make[2]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10/m4' Making check in po make[2]: Entering directory `/TESTDIR/dir2/dsh-0.25.10/po' make[2]: Nothing to be done for `check'. make[2]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10/po' make[2]: Entering directory `/TESTDIR/dir2/dsh-0.25.10' /usr/bin/make dsh make[3]: Entering directory `/TESTDIR/dir2/dsh-0.25.10' make[3]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10' /usr/bin/make check-TESTS make[3]: Entering directory `/TESTDIR/dir2/dsh-0.25.10' PASS: tests/param-f.sh dsh: File ./tests/nonexistent.file could not be opened for read PASS: tests/param-f-fail.sh PASS: tests/param-f-with-space.sh PASS: tests/param-m.sh test to check that unknown parameter checking is right. ./dsh: unrecognized option `--unknown-parameter' ./dsh: invalid option -- u PASS: tests/param-unknown.sh test1 test2 dsh: Process terminated (before write). PASS: tests/param-i.sh Check that cn4 option is working. PASS: tests/param-cn4.sh test to check that -b0 is rejected, and -b1 is accepted Buffer size needs to be greater than 1 Buffer size needs to be greater than 1 a b PASS: tests/param-b-0.sh dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call success dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call success success success success success a: dsh: Failed executing ./invalid-exec-file with llexec call b: dsh: Failed executing ./invalid-exec-file with llexec call c: dsh: Failed executing ./invalid-exec-file with llexec call d: dsh: Failed executing ./invalid-exec-file with llexec call success dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call success PASS: tests/param-r-invalid.sh 1: 1 2: 2 dsh: fork limit and wait shell cannot be specified at the same time PASS: tests/param-F-invalid.sh Sun Nov 29 10:24:45 UTC 2009 2: Using sleep as the remote shell 2: Show machine names on output 2: Adding machine 5,4,3,2,1 to list 2: Setting forklimit to 3 and wait_shell to 0 2: DUMPing parameters passed to llexec 2: [2] Using sleep as the remote shell Show machine names on output Adding machine 5,4,3,2,1 to list Setting forklimit to 3 and wait_shell to 0 DUMPing parameters passed to llexec [2] 3: Using sleep as the remote shell 3: Show machine names on output 3: Adding machine 5,4,3,2,1 to list 3: Setting forklimit to 3 and wait_shell to 0 3: DUMPing parameters passed to llexec 3: [3] Using sleep as the remote shell Show machine names on output Adding machine 5,4,3,2,1 to list Setting forklimit to 3 and wait_shell to 0 DUMPing parameters passed to llexec [3] 1: Using sleep as the remote shell 1: Show machine names on output 1: Adding machine 5,4,3,2,1 to list 1: Setting forklimit to 3 and wait_shell to 0 1: ... Waiting for process to end with waitpid 1: DUMPing parameters passed to llexec 1: [1] Using sleep as the remote shell Show machine names on output Adding machine 5,4,3,2,1 to list Setting forklimit to 3 and wait_shell to 0 ... Waiting for process to end with waitpid DUMPing parameters passed to llexec [1] 4: Using sleep as the remote shell 4: Show machine names on output 4: Adding machine 5,4,3,2,1 to list 4: Setting forklimit to 3 and wait_shell to 0 4: DUMPing parameters passed to llexec 4: [4] Using sleep as the remote shell Show machine names on output Adding machine 5,4,3,2,1 to list Setting forklimit to 3 and wait_shell to 0 DUMPing parameters passed to llexec [4] 5: Using sleep as the remote shell 5: Show machine names on output 5: Adding machine 5,4,3,2,1 to list 5: Setting forklimit to 3 and wait_shell to 0 5: DUMPing parameters passed to llexec 5: [5] Using sleep as the remote shell Show machine names on output Adding machine 5,4,3,2,1 to list Setting forklimit to 3 and wait_shell to 0 DUMPing parameters passed to llexec [5] --- Terminated running Using sleep as the remote shell Show machine names on output Adding machine 5,4,3,2,1 to list Setting forklimit to 3 and wait_shell to 0 ... Waiting for process to end with waitpid ... Waiting for process to end with waitpid Sun Nov 29 10:24:50 UTC 2009 PASS: tests/param-F-forklimit.sh PASS: tests/param-gnu-getopt.sh PASS: tests/news-okay.sh c: c dsh: Process terminated (before write). b: b 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 `/TESTDIR/dir2/dsh-0.25.10' make[2]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10' make[1]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10' 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=/TESTDIR/dir2/dsh-0.25.10/debian/dsh make[1]: Entering directory `/TESTDIR/dir2/dsh-0.25.10' Making install in m4 make[2]: Entering directory `/TESTDIR/dir2/dsh-0.25.10/m4' make[3]: Entering directory `/TESTDIR/dir2/dsh-0.25.10/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 `/TESTDIR/dir2/dsh-0.25.10/m4' make[2]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10/m4' Making install in po make[2]: Entering directory `/TESTDIR/dir2/dsh-0.25.10/po' /bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/share mkdir -p -- /TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/share mkdir -p -- /TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/share/locale/ja/LC_MESSAGES installing ja.gmo as /TESTDIR/dir2/dsh-0.25.10/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` /TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/share/gettext/po; \ for file in Makefile.in.in Makevars remove-potcdate.sin ; do \ /usr/bin/install -c -m 644 ./$file \ /TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/share/gettext/po/$file; \ done; \ else \ : ; \ fi make[2]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10/po' make[2]: Entering directory `/TESTDIR/dir2/dsh-0.25.10' make[3]: Entering directory `/TESTDIR/dir2/dsh-0.25.10' test -z "/usr/bin" || mkdir -p -- "/TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/bin" /bin/sh ./libtool --mode=install install -p -o root -g root -m 755 -s 'dsh' '/TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/bin/dsh' install -p -o root -g root -m 755 -s dsh /TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/bin/dsh test -z "/etc/dsh" || mkdir -p -- "/TESTDIR/dir2/dsh-0.25.10/debian/dsh/etc/dsh" /usr/bin/install -c -m 644 'dsh.conf' '/TESTDIR/dir2/dsh-0.25.10/debian/dsh/etc/dsh/dsh.conf' for LANGS in ja ; do \ mkdir -p /TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/share/man/$LANGS/man1 ;\ mkdir -p /TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/share/man/$LANGS/man5 ;\ sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.$LANGS.1 \ > /TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/share/man/$LANGS/man1/dsh.1 ; \ sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.conf.$LANGS.5 \ > /TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/share/man/$LANGS/man5/dsh.conf.5 ; \ done test -z "/usr/share/man/man1" || mkdir -p -- "/TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/share/man/man1" /usr/bin/install -c -m 644 './build-man/dsh.1' '/TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/share/man/man1/dsh.1' test -z "/usr/share/man/man5" || mkdir -p -- "/TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/share/man/man5" /usr/bin/install -c -m 644 './build-man/dsh.conf.5' '/TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/share/man/man5/dsh.conf.5' make[3]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10' make[2]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10' make[1]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10' cp /TESTDIR/dir2/dsh-0.25.10/debian/machines.list /TESTDIR/dir2/dsh-0.25.10/debian/dsh/etc/dsh/machines.list cp /TESTDIR/dir2/dsh-0.25.10/dsh.conf /TESTDIR/dir2/dsh-0.25.10/debian/dsh/etc/dsh/dsh.conf ln -s ../machines.list /TESTDIR/dir2/dsh-0.25.10/debian/dsh/etc/dsh/group/all install -d /TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/lib/update-cluster install -m 755 /TESTDIR/dir2/dsh-0.25.10/debian/dsh.updatelist /TESTDIR/dir2/dsh-0.25.10/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.10-1_amd64.deb'. dpkg-genchanges >../dsh_0.25.10-1_amd64.changes dpkg-genchanges: including full source code in upload dpkg-buildpackage: full upload (original source is included) W: no hooks of type B found -- ignoring I: unmounting /TESTDIR/dir2 filesystem I: unmounting dev/pts filesystem I: unmounting proc filesystem I: cleaning the build env I: removing directory /TESTDIR/dir3/NUM and its subdirectories pbuilder-0.215ubuntu7/testsuite/cdebootstrap/pbuilder-create-squeeze.log0000664000000000000000000015234512312041170023525 0ustar I: Distribution is squeeze. I: Building the build environment I: running cdebootstrap /usr/bin/cdebootstrap P: Retrieving Release P: Retrieving Release.gpg P: Validating Release I: Good signature from "Debian Archive Automatic Signing Key (5.0/lenny) " P: Parsing Release P: Retrieving Packages.gz P: Validating Packages.gz P: Parsing Packages P: Retrieving libc-bin P: Validating libc-bin P: Retrieving gcc-4.4-base P: Validating gcc-4.4-base P: Retrieving libgcc1 P: Validating libgcc1 P: Retrieving libc6 P: Validating libc6 P: Retrieving libstdc++6 P: Validating libstdc++6 P: Retrieving libbz2-1.0 P: Validating libbz2-1.0 P: Retrieving libattr1 P: Validating libattr1 P: Retrieving libacl1 P: Validating libacl1 P: Retrieving libselinux1 P: Validating libselinux1 P: Retrieving coreutils P: Validating coreutils P: Retrieving lzma P: Validating lzma P: Retrieving dpkg P: Validating dpkg P: Retrieving readline-common P: Validating readline-common P: Retrieving libncurses5 P: Validating libncurses5 P: Retrieving libreadline6 P: Validating libreadline6 P: Retrieving libusb-0.1-4 P: Validating libusb-0.1-4 P: Retrieving zlib1g P: Validating zlib1g P: Retrieving gpgv P: Validating gpgv P: Retrieving gnupg P: Validating gnupg P: Retrieving debian-archive-keyring P: Validating debian-archive-keyring P: Retrieving apt P: Validating apt P: Retrieving base-passwd P: Validating base-passwd P: Retrieving mawk P: Validating mawk P: Retrieving base-files P: Validating base-files P: Retrieving sensible-utils P: Validating sensible-utils P: Retrieving debianutils P: Validating debianutils P: Retrieving bash P: Validating bash P: Retrieving bsdutils P: Validating bsdutils P: Retrieving libc-dev-bin P: Validating libc-dev-bin P: Retrieving linux-libc-dev P: Validating linux-libc-dev P: Retrieving libc6-dev P: Validating libc6-dev P: Retrieving gcc-4.3-base P: Validating gcc-4.3-base P: Retrieving libgmp3c2 P: Validating libgmp3c2 P: Retrieving libmpfr1ldbl P: Validating libmpfr1ldbl P: Retrieving cpp-4.3 P: Validating cpp-4.3 P: Retrieving cpp P: Validating cpp P: Retrieving binutils P: Validating binutils P: Retrieving libgomp1 P: Validating libgomp1 P: Retrieving gcc-4.3 P: Validating gcc-4.3 P: Retrieving gcc P: Validating gcc P: Retrieving libstdc++6-4.3-dev P: Validating libstdc++6-4.3-dev P: Retrieving g++-4.3 P: Validating g++-4.3 P: Retrieving g++ P: Validating g++ P: Retrieving make P: Validating make P: Retrieving perl-base P: Validating perl-base P: Retrieving perl-modules P: Validating perl-modules P: Retrieving libdb4.7 P: Validating libdb4.7 P: Retrieving libgdbm3 P: Validating libgdbm3 P: Retrieving perl P: Validating perl P: Retrieving bzip2 P: Validating bzip2 P: Retrieving liblzma0 P: Validating liblzma0 P: Retrieving xz-utils P: Validating xz-utils P: Retrieving patch P: Validating patch P: Retrieving libtimedate-perl P: Validating libtimedate-perl P: Retrieving dpkg-dev P: Validating dpkg-dev P: Retrieving build-essential P: Validating build-essential P: Retrieving dash P: Validating dash P: Retrieving diffutils P: Validating diffutils P: Retrieving e2fslibs P: Validating e2fslibs P: Retrieving liblocale-gettext-perl P: Validating liblocale-gettext-perl P: Retrieving libtext-iconv-perl P: Validating libtext-iconv-perl P: Retrieving libtext-charwidth-perl P: Validating libtext-charwidth-perl P: Retrieving libtext-wrapi18n-perl P: Validating libtext-wrapi18n-perl P: Retrieving debconf-i18n P: Validating debconf-i18n P: Retrieving debconf P: Validating debconf P: Retrieving libpam0g P: Validating libpam0g P: Retrieving libpam-modules P: Validating libpam-modules P: Retrieving passwd P: Validating passwd P: Retrieving libuuid1 P: Validating libuuid1 P: Retrieving libblkid1 P: Validating libblkid1 P: Retrieving libcomerr2 P: Validating libcomerr2 P: Retrieving libss2 P: Validating libss2 P: Retrieving e2fsprogs P: Validating e2fsprogs P: Retrieving fakeroot P: Validating fakeroot P: Retrieving findutils P: Validating findutils P: Retrieving grep P: Validating grep P: Retrieving gzip P: Validating gzip P: Retrieving hostname P: Validating hostname P: Retrieving libpam-runtime P: Validating libpam-runtime P: Retrieving login P: Validating login P: Retrieving libsepol1 P: Validating libsepol1 P: Retrieving mount P: Validating mount P: Retrieving ncurses-base P: Validating ncurses-base P: Retrieving ncurses-bin P: Validating ncurses-bin P: Retrieving sed P: Validating sed P: Retrieving lsb-base P: Validating lsb-base P: Retrieving sysvinit-utils P: Validating sysvinit-utils P: Retrieving insserv P: Validating insserv P: Retrieving sysv-rc P: Validating sysv-rc P: Retrieving initscripts P: Validating initscripts P: Retrieving sysvinit P: Validating sysvinit P: Retrieving tar P: Validating tar P: Retrieving tzdata P: Validating tzdata P: Retrieving libslang2 P: Validating libslang2 P: Retrieving util-linux P: Validating util-linux P: Extracting libc-bin P: Extracting gcc-4.4-base P: Extracting libc6 P: Extracting libgcc1 P: Extracting libstdc++6 P: Extracting libattr1 P: Extracting libacl1 P: Extracting libselinux1 P: Extracting coreutils P: Extracting lzma P: Extracting dpkg P: Extracting libncurses5 P: Extracting zlib1g P: Extracting base-passwd P: Extracting mawk P: Extracting base-files P: Extracting sensible-utils P: Extracting debianutils P: Extracting bash P: Extracting bsdutils P: Extracting gcc-4.3-base P: Extracting perl-base P: Extracting diffutils P: Extracting e2fslibs P: Extracting liblocale-gettext-perl P: Extracting libtext-iconv-perl P: Extracting libtext-charwidth-perl P: Extracting libtext-wrapi18n-perl P: Extracting debconf P: Extracting debconf-i18n P: Extracting libpam0g P: Extracting libdb4.7 P: Extracting libpam-modules P: Extracting passwd P: Extracting libuuid1 P: Extracting libblkid1 P: Extracting libcomerr2 P: Extracting libss2 P: Extracting e2fsprogs P: Extracting findutils P: Extracting grep P: Extracting gzip P: Extracting hostname P: Extracting libpam-runtime P: Extracting login P: Extracting libsepol1 P: Extracting mount P: Extracting ncurses-base P: Extracting ncurses-bin P: Extracting sed P: Extracting lsb-base P: Extracting sysvinit-utils P: Extracting insserv P: Extracting sysv-rc P: Extracting initscripts P: Extracting sysvinit P: Extracting tar P: Extracting tzdata P: Extracting libslang2 P: Extracting util-linux O: Selecting previously deselected package dpkg. O: (Reading database ... 0 files and directories currently installed.) O: Unpacking dpkg (from .../dpkg_1.15.5.2_amd64.deb) ... P: Unpacking package dpkg O: dpkg: regarding .../dpkg_1.15.5.2_amd64.deb containing dpkg, pre-dependency problem: O: dpkg pre-depends on libc6 (>= 2.3.4) O: dpkg: warning: ignoring pre-dependency problem! O: dpkg: regarding .../dpkg_1.15.5.2_amd64.deb containing dpkg, pre-dependency problem: O: dpkg pre-depends on coreutils (>= 5.93-1) O: dpkg: warning: ignoring pre-dependency problem! O: dpkg: regarding .../dpkg_1.15.5.2_amd64.deb containing dpkg, pre-dependency problem: O: dpkg pre-depends on lzma O: lzma is not installed. O: dpkg: warning: ignoring pre-dependency problem! O: Setting up dpkg (1.15.5.2) ... P: Configuring package dpkg O: dpkg: dpkg: dependency problems, but configuring anyway as you requested: O: dpkg depends on libc6 (>= 2.3.4); however: O: Package libc6 is not installed. O: dpkg depends on coreutils (>= 5.93-1); however: O: Package coreutils is not installed. O: dpkg depends on lzma; however: O: Package lzma is not installed. P: Configuring helper cdebootstrap-helper-rc.d O: Selecting previously deselected package cdebootstrap-helper-rc.d. O: (Reading database ... 257 files and directories currently installed.) O: Unpacking cdebootstrap-helper-rc.d (from .../cdebootstrap-helper-rc.d.deb) ... O: Setting up cdebootstrap-helper-rc.d (1) ... P: Configuring helper cdebootstrap-helper-makedev O: Selecting previously deselected package cdebootstrap-helper-makedev. O: (Reading database ... O: 258 files and directories currently installed.) O: Unpacking cdebootstrap-helper-makedev (from .../cdebootstrap-helper-makedev.deb) ... O: Setting up cdebootstrap-helper-makedev (1) ... O: Selecting previously deselected package libc-bin. O: (Reading database ... 258 files and directories currently installed.) O: Unpacking libc-bin (from .../libc-bin_2.10.1-7_amd64.deb) ... P: Unpacking package libc-bin O: Selecting previously deselected package gcc-4.4-base. O: Unpacking gcc-4.4-base (from .../gcc-4.4-base_4.4.2-3_amd64.deb) ... P: Unpacking package gcc-4.4-base O: Selecting previously deselected package libc6. O: Unpacking libc6 (from .../libc6_2.10.1-7_amd64.deb) ... P: Unpacking package libc6 O: Selecting previously deselected package libgcc1. O: Unpacking libgcc1 (from .../libgcc1_4.4.2-3_amd64.deb) ... P: Unpacking package libgcc1 O: Selecting previously deselected package libstdc++6. O: Unpacking libstdc++6 (from .../libstdc++6_4.4.2-3_amd64.deb) ... P: Unpacking package libstdc++6 O: Selecting previously deselected package libattr1. O: Unpacking libattr1 (from .../libattr1_2.4.44-1_amd64.deb) ... P: Unpacking package libattr1 O: Selecting previously deselected package libacl1. O: Unpacking libacl1 (from .../libacl1_2.2.48-1_amd64.deb) ... P: Unpacking package libacl1 O: Selecting previously deselected package libselinux1. O: Unpacking libselinux1 (from .../libselinux1_2.0.88-1_amd64.deb) ... P: Unpacking package libselinux1 O: Selecting previously deselected package coreutils. O: dpkg: regarding .../coreutils_7.4-2_amd64.deb containing coreutils, pre-dependency problem: O: coreutils pre-depends on libacl1 (>= 2.2.11-1) O: libacl1 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: dpkg: regarding .../coreutils_7.4-2_amd64.deb containing coreutils, pre-dependency problem: O: coreutils pre-depends on libattr1 (>= 2.4.41-1) O: libattr1 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: dpkg: regarding .../coreutils_7.4-2_amd64.deb containing coreutils, pre-dependency problem: O: coreutils pre-depends on libc6 (>= 2.6) O: libc6 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: dpkg: regarding .../coreutils_7.4-2_amd64.deb containing coreutils, pre-dependency problem: O: coreutils pre-depends on libselinux1 (>= 2.0.59) O: libselinux1 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: Unpacking coreutils (from .../coreutils_7.4-2_amd64.deb) ... P: Unpacking package coreutils O: Selecting previously deselected package lzma. O: Unpacking lzma (from .../lzma_4.43-14_amd64.deb) ... P: Unpacking package lzma O: Selecting previously deselected package libncurses5. O: Unpacking libncurses5 (from .../libncurses5_5.7+20090803-2_amd64.deb) ... P: Unpacking package libncurses5 O: Selecting previously deselected package zlib1g. O: Unpacking zlib1g (from .../zlib1g_1.2.3.3.dfsg-15_amd64.deb) ... P: Unpacking package zlib1g O: Selecting previously deselected package base-passwd. O: Unpacking base-passwd (from .../base-passwd_3.5.22_amd64.deb) ... P: Unpacking package base-passwd O: Selecting previously deselected package mawk. O: dpkg: regarding .../mawk_1.3.3-15_amd64.deb containing mawk, pre-dependency problem: O: mawk pre-depends on libc6 (>= 2.2.5) O: libc6 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: Unpacking mawk (from .../mawk_1.3.3-15_amd64.deb) ... P: Unpacking package mawk O: Selecting previously deselected package base-files. O: Unpacking base-files (from .../base-files_5.0.0_amd64.deb) ... P: Unpacking package base-files O: dpkg: regarding .../base-files_5.0.0_amd64.deb containing base-files, pre-dependency problem: O: base-files pre-depends on awk O: mawk provides awk but is unpacked but not configured. O: dpkg: warning: ignoring pre-dependency problem! O: Selecting previously deselected package sensible-utils. O: Unpacking sensible-utils (from .../sensible-utils_0.0.1_all.deb) ... P: Unpacking package sensible-utils O: Selecting previously deselected package debianutils. O: dpkg: regarding .../debianutils_3.2.2_amd64.deb containing debianutils, pre-dependency problem: O: debianutils pre-depends on libc6 (>= 2.7) O: libc6 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: Unpacking debianutils (from .../debianutils_3.2.2_amd64.deb) ... P: Unpacking package debianutils O: Selecting previously deselected package bash. O: dpkg: regarding .../bootstrap/bash_4.0-4_amd64.deb containing bash, pre-dependency problem: O: bash pre-depends on libc6 (>= 2.4) O: libc6 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: dpkg: regarding .../bootstrap/bash_4.0-4_amd64.deb containing bash, pre-dependency problem: O: bash pre-depends on libncurses5 (>= 5.6+20071006-3) O: libncurses5 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: Unpacking bash (from .../bootstrap/bash_4.0-4_amd64.deb) ... P: Unpacking package bash O: Selecting previously deselected package bsdutils. O: Unpacking bsdutils (from .../bsdutils_2.16.1-4_amd64.deb) ... P: Unpacking package bsdutils O: Selecting previously deselected package gcc-4.3-base. O: Unpacking gcc-4.3-base (from .../gcc-4.3-base_4.3.4-6_amd64.deb) ... P: Unpacking package gcc-4.3-base O: Selecting previously deselected package perl-base. O: dpkg: regarding .../perl-base_5.10.1-8_amd64.deb containing perl-base, pre-dependency problem: O: perl-base pre-depends on libc6 (>= 2.4) O: libc6 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: Unpacking perl-base (from .../perl-base_5.10.1-8_amd64.deb) ... P: Unpacking package perl-base O: Selecting previously deselected package diffutils. O: dpkg: regarding .../diffutils_2.8.1-18_amd64.deb containing diffutils, pre-dependency problem: O: diffutils pre-depends on libc6 (>= 2.3) O: libc6 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: Unpacking diffutils (from .../diffutils_2.8.1-18_amd64.deb) ... P: Unpacking package diffutils O: Selecting previously deselected package e2fslibs. O: Unpacking e2fslibs (from .../e2fslibs_1.41.9-1_amd64.deb) ... P: Unpacking package e2fslibs O: Selecting previously deselected package liblocale-gettext-perl. O: dpkg: regarding .../liblocale-gettext-perl_1.05-6_amd64.deb containing liblocale-gettext-perl, pre-dependency problem: O: liblocale-gettext-perl pre-depends on perl-base (>= 5.10.0-25) O: perl-base is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: dpkg: regarding .../liblocale-gettext-perl_1.05-6_amd64.deb containing liblocale-gettext-perl, pre-dependency problem: O: liblocale-gettext-perl pre-depends on perlapi-5.10.0 O: perl-base provides perlapi-5.10.0 but is unpacked but not configured. O: dpkg: warning: ignoring pre-dependency problem! O: Unpacking liblocale-gettext-perl (from .../liblocale-gettext-perl_1.05-6_amd64.deb) ... P: Unpacking package liblocale-gettext-perl O: Selecting previously deselected package libtext-iconv-perl. O: Unpacking libtext-iconv-perl (from .../libtext-iconv-perl_1.7-2_amd64.deb) ... P: Unpacking package libtext-iconv-perl O: Selecting previously deselected package libtext-charwidth-perl. O: Unpacking libtext-charwidth-perl (from .../libtext-charwidth-perl_0.04-6_amd64.deb) ... P: Unpacking package libtext-charwidth-perl O: Selecting previously deselected package libtext-wrapi18n-perl. O: Unpacking libtext-wrapi18n-perl (from .../libtext-wrapi18n-perl_0.06-7_all.deb) ... P: Unpacking package libtext-wrapi18n-perl O: Selecting previously deselected package debconf. O: Unpacking debconf (from .../debconf_1.5.28_all.deb) ... P: Unpacking package debconf O: dpkg: regarding .../debconf_1.5.28_all.deb containing debconf, pre-dependency problem: O: debconf pre-depends on perl-base (>= 5.6.1-4) O: perl-base is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: Selecting previously deselected package debconf-i18n. O: Unpacking debconf-i18n (from .../debconf-i18n_1.5.28_all.deb) ... P: Unpacking package debconf-i18n O: Selecting previously deselected package libpam0g. O: Unpacking libpam0g (from .../libpam0g_1.1.0-4_amd64.deb) ... P: Unpacking package libpam0g O: Selecting previously deselected package libdb4.7. O: Unpacking libdb4.7 (from .../libdb4.7_4.7.25-8_amd64.deb) ... P: Unpacking package libdb4.7 O: Selecting previously deselected package libpam-modules. O: Unpacking libpam-modules (from .../libpam-modules_1.1.0-4_amd64.deb) ... P: Unpacking package libpam-modules O: dpkg: regarding .../libpam-modules_1.1.0-4_amd64.deb containing libpam-modules, pre-dependency problem: O: libpam-modules pre-depends on libc6 (>= 2.4) O: libc6 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: dpkg: regarding .../libpam-modules_1.1.0-4_amd64.deb containing libpam-modules, pre-dependency problem: O: libpam-modules pre-depends on libdb4.7 O: libdb4.7 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: dpkg: regarding .../libpam-modules_1.1.0-4_amd64.deb containing libpam-modules, pre-dependency problem: O: libpam-modules pre-depends on libpam0g (>= 1.1.0) O: libpam0g is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: dpkg: regarding .../libpam-modules_1.1.0-4_amd64.deb containing libpam-modules, pre-dependency problem: O: libpam-modules pre-depends on libselinux1 (>= 2.0.85) O: libselinux1 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: dpkg: regarding .../libpam-modules_1.1.0-4_amd64.deb containing libpam-modules, pre-dependency problem: O: libpam-modules pre-depends on debconf (>= 0.5) | debconf-2.0 O: debconf is unpacked, but has never been configured. O: debconf provides debconf-2.0 but is unpacked but not configured. O: dpkg: warning: ignoring pre-dependency problem! O: Use of uninitialized value in concatenation (.) or string at /usr/share/perl5/Debconf/Config.pm line 22. O: Selecting previously deselected package passwd. O: Unpacking passwd (from .../passwd_4.1.4.2-1_amd64.deb) ... P: Unpacking package passwd O: Selecting previously deselected package libuuid1. O: Unpacking libuuid1 (from .../libuuid1_2.16.1-4_amd64.deb) ... P: Unpacking package libuuid1 O: Selecting previously deselected package libblkid1. O: Unpacking libblkid1 (from .../libblkid1_2.16.1-4_amd64.deb) ... P: Unpacking package libblkid1 O: Selecting previously deselected package libcomerr2. O: Unpacking libcomerr2 (from .../libcomerr2_1.41.9-1_amd64.deb) ... P: Unpacking package libcomerr2 O: Selecting previously deselected package libss2. O: Unpacking libss2 (from .../libss2_1.41.9-1_amd64.deb) ... P: Unpacking package libss2 O: Selecting previously deselected package e2fsprogs. O: dpkg: regarding .../e2fsprogs_1.41.9-1_amd64.deb containing e2fsprogs, pre-dependency problem: O: e2fsprogs pre-depends on e2fslibs (= 1.41.9-1) O: e2fslibs is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: dpkg: regarding .../e2fsprogs_1.41.9-1_amd64.deb containing e2fsprogs, pre-dependency problem: O: e2fsprogs pre-depends on libblkid1 (>= 1.34-1) O: libblkid1 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: dpkg: regarding .../e2fsprogs_1.41.9-1_amd64.deb containing e2fsprogs, pre-dependency problem: O: e2fsprogs pre-depends on libc6 (>= 2.7) O: libc6 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: dpkg: regarding .../e2fsprogs_1.41.9-1_amd64.deb containing e2fsprogs, pre-dependency problem: O: e2fsprogs pre-depends on libcomerr2 (>= 1.34-1) O: libcomerr2 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: dpkg: regarding .../e2fsprogs_1.41.9-1_amd64.deb containing e2fsprogs, pre-dependency problem: O: e2fsprogs pre-depends on libss2 (>= 1.34-1) O: libss2 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: dpkg: regarding .../e2fsprogs_1.41.9-1_amd64.deb containing e2fsprogs, pre-dependency problem: O: e2fsprogs pre-depends on libuuid1 (>= 1.34-1) O: libuuid1 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: Unpacking e2fsprogs (from .../e2fsprogs_1.41.9-1_amd64.deb) ... P: Unpacking package e2fsprogs O: Selecting previously deselected package findutils. O: dpkg: regarding .../findutils_4.4.2-1_amd64.deb containing findutils, pre-dependency problem: O: findutils pre-depends on libc6 (>= 2.4) O: libc6 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: Unpacking findutils (from .../findutils_4.4.2-1_amd64.deb) ... P: Unpacking package findutils O: Selecting previously deselected package grep. O: Unpacking grep (from .../grep_2.5.4-4_amd64.deb) ... P: Unpacking package grep O: dpkg: regarding .../grep_2.5.4-4_amd64.deb containing grep, pre-dependency problem: O: grep pre-depends on libc6 (>= 2.7-1) O: libc6 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: Selecting previously deselected package gzip. O: dpkg: regarding .../gzip_1.3.12-8_amd64.deb containing gzip, pre-dependency problem: O: gzip pre-depends on libc6 (>= 2.4) O: libc6 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: Unpacking gzip (from .../gzip_1.3.12-8_amd64.deb) ... P: Unpacking package gzip O: Selecting previously deselected package hostname. O: Unpacking hostname (from .../hostname_3.01_amd64.deb) ... P: Unpacking package hostname O: dpkg: regarding .../hostname_3.01_amd64.deb containing hostname, pre-dependency problem: O: hostname pre-depends on libc6 (>= 2.3) O: libc6 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: Selecting previously deselected package libpam-runtime. O: Unpacking libpam-runtime (from .../libpam-runtime_1.1.0-4_all.deb) ... P: Unpacking package libpam-runtime O: Selecting previously deselected package login. O: dpkg: regarding .../login_4.1.4.2-1_amd64.deb containing login, pre-dependency problem: O: login pre-depends on libc6 (>= 2.3) O: libc6 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: dpkg: regarding .../login_4.1.4.2-1_amd64.deb containing login, pre-dependency problem: O: login pre-depends on libpam0g (>= 0.99.7.1) O: libpam0g is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: dpkg: regarding .../login_4.1.4.2-1_amd64.deb containing login, pre-dependency problem: O: login pre-depends on libpam-runtime O: libpam-runtime is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: dpkg: regarding .../login_4.1.4.2-1_amd64.deb containing login, pre-dependency problem: O: login pre-depends on libpam-modules O: libpam-modules is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: Unpacking login (from .../login_4.1.4.2-1_amd64.deb) ... P: Unpacking package login O: Selecting previously deselected package libsepol1. O: Unpacking libsepol1 (from .../libsepol1_2.0.40-2_amd64.deb) ... P: Unpacking package libsepol1 O: Selecting previously deselected package mount. O: Unpacking mount (from .../mount_2.16.1-4_amd64.deb) ... P: Unpacking package mount O: dpkg: regarding .../mount_2.16.1-4_amd64.deb containing mount, pre-dependency problem: O: mount pre-depends on libblkid1 (>= 2.16) O: libblkid1 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: dpkg: regarding .../mount_2.16.1-4_amd64.deb containing mount, pre-dependency problem: O: mount pre-depends on libc6 (>= 2.3) O: libc6 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: dpkg: regarding .../mount_2.16.1-4_amd64.deb containing mount, pre-dependency problem: O: mount pre-depends on libselinux1 (>= 2.0.15) O: libselinux1 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: dpkg: regarding .../mount_2.16.1-4_amd64.deb containing mount, pre-dependency problem: O: mount pre-depends on libsepol1 (>= 1.14) O: libsepol1 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: dpkg: regarding .../mount_2.16.1-4_amd64.deb containing mount, pre-dependency problem: O: mount pre-depends on libuuid1 (>= 2.16) O: libuuid1 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: Selecting previously deselected package ncurses-base. O: Unpacking ncurses-base (from .../ncurses-base_5.7+20090803-2_all.deb) ... P: Unpacking package ncurses-base O: Selecting previously deselected package ncurses-bin. O: Unpacking ncurses-bin (from .../ncurses-bin_5.7+20090803-2_amd64.deb) ... P: Unpacking package ncurses-bin O: dpkg: regarding .../ncurses-bin_5.7+20090803-2_amd64.deb containing ncurses-bin, pre-dependency problem: O: ncurses-bin pre-depends on libc6 (>= 2.3) O: libc6 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: dpkg: regarding .../ncurses-bin_5.7+20090803-2_amd64.deb containing ncurses-bin, pre-dependency problem: O: ncurses-bin pre-depends on libncurses5 (>= 5.6+20071006-3) O: libncurses5 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: Selecting previously deselected package sed. O: dpkg: regarding .../sed_4.2.1-4_amd64.deb containing sed, pre-dependency problem: O: sed pre-depends on libc6 (>= 2.3) O: libc6 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: dpkg: regarding .../sed_4.2.1-4_amd64.deb containing sed, pre-dependency problem: O: sed pre-depends on libselinux1 (>= 1.32) O: libselinux1 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: Unpacking sed (from .../sed_4.2.1-4_amd64.deb) ... P: Unpacking package sed O: Selecting previously deselected package lsb-base. O: Unpacking lsb-base (from .../lsb-base_3.2-23_all.deb) ... P: Unpacking package lsb-base O: Selecting previously deselected package sysvinit-utils. O: Unpacking sysvinit-utils (from .../sysvinit-utils_2.87dsf-8_amd64.deb) ... P: Unpacking package sysvinit-utils O: Selecting previously deselected package insserv. O: Unpacking insserv (from .../insserv_1.12.0-14_amd64.deb) ... P: Unpacking package insserv O: Selecting previously deselected package sysv-rc. O: Unpacking sysv-rc (from .../sysv-rc_2.87dsf-8_all.deb) ... P: Unpacking package sysv-rc O: Selecting previously deselected package initscripts. O: Unpacking initscripts (from .../initscripts_2.87dsf-8_amd64.deb) ... P: Unpacking package initscripts O: Selecting previously deselected package sysvinit. O: Unpacking sysvinit (from .../sysvinit_2.87dsf-8_amd64.deb) ... P: Unpacking package sysvinit O: dpkg: regarding .../sysvinit_2.87dsf-8_amd64.deb containing sysvinit, pre-dependency problem: O: sysvinit pre-depends on initscripts O: initscripts is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: dpkg: regarding .../sysvinit_2.87dsf-8_amd64.deb containing sysvinit, pre-dependency problem: O: sysvinit pre-depends on sysv-rc | file-rc O: sysv-rc is unpacked, but has never been configured. O: file-rc is not installed. O: dpkg: warning: ignoring pre-dependency problem! O: dpkg: regarding .../sysvinit_2.87dsf-8_amd64.deb containing sysvinit, pre-dependency problem: O: sysvinit pre-depends on sysvinit-utils (>= 2.86.ds1-66) O: sysvinit-utils is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: Selecting previously deselected package tar. O: Unpacking tar (from .../bootstrap/tar_1.22-2_amd64.deb) ... P: Unpacking package tar O: dpkg: regarding .../bootstrap/tar_1.22-2_amd64.deb containing tar, pre-dependency problem: O: tar pre-depends on libc6 (>= 2.6) O: libc6 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: Selecting previously deselected package tzdata. O: Unpacking tzdata (from .../tzdata_2009s-1_all.deb) ... P: Unpacking package tzdata O: Selecting previously deselected package libslang2. O: Unpacking libslang2 (from .../libslang2_2.2.1-1_amd64.deb) ... P: Unpacking package libslang2 O: Selecting previously deselected package util-linux. O: Unpacking util-linux (from .../util-linux_2.16.1-4_amd64.deb) ... P: Unpacking package util-linux O: dpkg: regarding .../util-linux_2.16.1-4_amd64.deb containing util-linux, pre-dependency problem: O: util-linux pre-depends on libblkid1 (>= 2.16) O: libblkid1 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: dpkg: regarding .../util-linux_2.16.1-4_amd64.deb containing util-linux, pre-dependency problem: O: util-linux pre-depends on libc6 (>= 2.4) O: libc6 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: dpkg: regarding .../util-linux_2.16.1-4_amd64.deb containing util-linux, pre-dependency problem: O: util-linux pre-depends on libncurses5 (>= 5.6+20071006-3) O: libncurses5 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: dpkg: regarding .../util-linux_2.16.1-4_amd64.deb containing util-linux, pre-dependency problem: O: util-linux pre-depends on libselinux1 (>= 1.32) O: libselinux1 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: dpkg: regarding .../util-linux_2.16.1-4_amd64.deb containing util-linux, pre-dependency problem: O: util-linux pre-depends on libslang2 (>= 2.0.7-1) O: libslang2 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: dpkg: regarding .../util-linux_2.16.1-4_amd64.deb containing util-linux, pre-dependency problem: O: util-linux pre-depends on libuuid1 (>= 2.16) O: libuuid1 is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: dpkg: regarding .../util-linux_2.16.1-4_amd64.deb containing util-linux, pre-dependency problem: O: util-linux pre-depends on zlib1g (>= 1:1.1.4) O: zlib1g is unpacked, but has never been configured. O: dpkg: warning: ignoring pre-dependency problem! O: Setting up sensible-utils (0.0.1) ... P: Configuring package sensible-utils O: Setting up gcc-4.3-base (4.3.4-6) ... P: Configuring package gcc-4.3-base O: Setting up libc-bin (2.10.1-7) ... P: Configuring package libc-bin O: Setting up gcc-4.4-base (4.4.2-3) ... P: Configuring package gcc-4.4-base O: Setting up libc6 (2.10.1-7) ... P: Configuring package libc6 O: Use of uninitialized value in concatenation (.) or string at /usr/share/perl5/Debconf/Config.pm line 22. O: Setting up debianutils (3.2.2) ... P: Configuring package debianutils O: Setting up bsdutils (1:2.16.1-4) ... P: Configuring package bsdutils O: Setting up perl-base (5.10.1-8) ... P: Configuring package perl-base O: Setting up libsepol1 (2.0.40-2) ... P: Configuring package libsepol1 O: Setting up diffutils (1:2.8.1-18) ... P: Configuring package diffutils O: Setting up tar (1.22-2) ... P: Configuring package tar O: update-alternatives: using /usr/sbin/rmt-tar to provide /usr/sbin/rmt (rmt) in auto mode. O: Setting up zlib1g (1:1.2.3.3.dfsg-15) ... P: Configuring package zlib1g O: Setting up libgcc1 (1:4.4.2-3) ... P: Configuring package libgcc1 O: Setting up libtext-iconv-perl (1.7-2) ... P: Configuring package libtext-iconv-perl O: Setting up libncurses5 (5.7+20090803-2) ... P: Configuring package libncurses5 O: Setting up libattr1 (1:2.4.44-1) ... P: Configuring package libattr1 O: Setting up e2fslibs (1.41.9-1) ... P: Configuring package e2fslibs O: Setting up base-passwd (3.5.22) ... P: Configuring package base-passwd O: Setting up libcomerr2 (1.41.9-1) ... P: Configuring package libcomerr2 O: Setting up mawk (1.3.3-15) ... P: Configuring package mawk O: Setting up libdb4.7 (4.7.25-8) ... P: Configuring package libdb4.7 O: Setting up grep (2.5.4-4) ... P: Configuring package grep O: Setting up hostname (3.01) ... P: Configuring package hostname O: Setting up libacl1 (2.2.48-1) ... P: Configuring package libacl1 O: Setting up libslang2 (2.2.1-1) ... P: Configuring package libslang2 O: Setting up libss2 (1.41.9-1) ... P: Configuring package libss2 O: Setting up findutils (4.4.2-1) ... P: Configuring package findutils O: install-info: warning: maintainer scripts should not call install-info anymore, O: install-info: warning: this is handled now by a dpkg trigger provided by the O: install-info: warning: install-info package; package findutils should be updated. O: Setting up insserv (1.12.0-14) ... P: Configuring package insserv O: Setting up gzip (1.3.12-8) ... P: Configuring package gzip O: install-info: warning: maintainer scripts should not call install-info anymore, O: install-info: warning: this is handled now by a dpkg trigger provided by the O: install-info: warning: install-info package; package gzip should be updated. O: Setting up liblocale-gettext-perl (1.05-6) ... P: Configuring package liblocale-gettext-perl O: Setting up libselinux1 (2.0.88-1) ... P: Configuring package libselinux1 O: Setting up libstdc++6 (4.4.2-3) ... P: Configuring package libstdc++6 O: Setting up libtext-charwidth-perl (0.04-6) ... P: Configuring package libtext-charwidth-perl O: Setting up libtext-wrapi18n-perl (0.06-7) ... P: Configuring package libtext-wrapi18n-perl O: Setting up coreutils (7.4-2) ... P: Configuring package coreutils O: install-info: warning: maintainer scripts should not call install-info anymore, O: install-info: warning: this is handled now by a dpkg trigger provided by the O: install-info: warning: install-info package; package coreutils should be updated. O: Setting up lzma (4.43-14) ... P: Configuring package lzma O: Setting up ncurses-base (5.7+20090803-2) ... P: Configuring package ncurses-base O: Setting up ncurses-bin (5.7+20090803-2) ... P: Configuring package ncurses-bin O: Setting up base-files (5.0.0) ... P: Configuring package base-files O: Setting up sed (4.2.1-4) ... P: Configuring package sed O: Setting up debconf-i18n (1.5.28) ... P: Configuring package debconf-i18n O: Setting up sysvinit-utils (2.87dsf-8) ... P: Configuring package sysvinit-utils O: Setting up bash (4.0-4) ... P: Configuring package bash O: update-alternatives: using /usr/share/man/man7/bash-builtins.7.gz to provide /usr/share/man/man7/builtins.7.gz (builtins.7.gz) in auto mode. O: Setting up debconf (1.5.28) ... P: Configuring package debconf O: Setting up lsb-base (3.2-23) ... P: Configuring package lsb-base O: Setting up libpam0g (1.1.0-4) ... P: Configuring package libpam0g O: Setting up sysv-rc (2.87dsf-8) ... P: Configuring package sysv-rc O: Setting up libpam-modules (1.1.0-4) ... P: Configuring package libpam-modules O: Setting up tzdata (2009s-1) ... P: Configuring package tzdata O: O: Current default time zone: 'Etc/UTC' O: Local time is now: XXXX O: Universal Time is now: XXXX O: Run 'dpkg-reconfigure tzdata' if you wish to change it. O: O: Setting up passwd (1:4.1.4.2-1) ... P: Configuring package passwd O: Shadow passwords are now on. O: Setting up libpam-runtime (1.1.0-4) ... P: Configuring package libpam-runtime O: Setting up login (1:4.1.4.2-1) ... P: Configuring package login O: Setting up libuuid1 (2.16.1-4) ... P: Configuring package libuuid1 O: Setting up libblkid1 (2.16.1-4) ... P: Configuring package libblkid1 O: Setting up e2fsprogs (1.41.9-1) ... P: Configuring package e2fsprogs O: Setting up mount (2.16.1-4) ... P: Configuring package mount O: Setting up initscripts (2.87dsf-8) ... P: Configuring package initscripts O: Setting up util-linux (2.16.1-4) ... P: Configuring package util-linux O: update-alternatives: using /bin/more to provide /usr/bin/pager (pager) in auto mode. O: Setting up sysvinit (2.87dsf-8) ... P: Configuring package sysvinit O: sysvinit: creating /dev/initctl O: init: timeout opening/writing control channel /dev/initctl O: Selecting previously deselected package libbz2-1.0. O: (Reading database ... O: 5611 files and directories currently installed.) O: Unpacking libbz2-1.0 (from .../libbz2-1.0_1.0.5-3_amd64.deb) ... P: Unpacking package libbz2-1.0 O: Selecting previously deselected package readline-common. O: Unpacking readline-common (from .../readline-common_6.0-5_all.deb) ... P: Unpacking package readline-common O: Selecting previously deselected package libreadline6. O: Unpacking libreadline6 (from .../libreadline6_6.0-5_amd64.deb) ... P: Unpacking package libreadline6 O: Selecting previously deselected package libusb-0.1-4. O: Unpacking libusb-0.1-4 (from .../libusb-0.1-4_0.1.12-13_amd64.deb) ... P: Unpacking package libusb-0.1-4 O: Selecting previously deselected package gpgv. O: Unpacking gpgv (from .../gpgv_1.4.10-2_amd64.deb) ... P: Unpacking package gpgv O: Selecting previously deselected package gnupg. O: Unpacking gnupg (from .../gnupg_1.4.10-2_amd64.deb) ... P: Unpacking package gnupg O: Selecting previously deselected package debian-archive-keyring. O: Unpacking debian-archive-keyring (from .../debian-archive-keyring_2009.01.31_all.deb) ... P: Unpacking package debian-archive-keyring O: Selecting previously deselected package apt. O: Unpacking apt (from .../apt_0.7.23.1_amd64.deb) ... P: Unpacking package apt O: Setting up libbz2-1.0 (1.0.5-3) ... P: Configuring package libbz2-1.0 O: Setting up readline-common (6.0-5) ... P: Configuring package readline-common O: Setting up libreadline6 (6.0-5) ... P: Configuring package libreadline6 O: Setting up libusb-0.1-4 (2:0.1.12-13) ... P: Configuring package libusb-0.1-4 O: Setting up gpgv (1.4.10-2) ... P: Configuring package gpgv O: Setting up gnupg (1.4.10-2) ... P: Configuring package gnupg O: Setting up debian-archive-keyring (2009.01.31) ... P: Configuring package debian-archive-keyring O: gpg: O: keyring `/etc/apt/trusted.gpg' created O: gpg: O: /etc/apt/trustdb.gpg: trustdb created O: gpg: O: key 6070D3A1: public key "Debian Archive Automatic Signing Key (4.0/etch) " imported O: gpg: O: key ADB11277: public key "Etch Stable Release Key " imported O: gpg: O: key BBE55AB3: public key "Debian-Volatile Archive Automatic Signing Key (4.0/etch)" imported O: gpg: O: key F42584E6: public key "Lenny Stable Release Key " imported O: gpg: O: key 55BE302B: public key "Debian Archive Automatic Signing Key (5.0/lenny) " imported O: gpg: O: key 6D849617: public key "Debian-Volatile Archive Automatic Signing Key (5.0/lenny)" imported O: gpg: O: Total number processed: 6 O: gpg: O: imported: 6 O: (RSA: 2) O: O: gpg: O: no ultimately trusted keys found O: Setting up apt (0.7.23.1) ... P: Configuring package apt O: gpg: O: key 6070D3A1: "Debian Archive Automatic Signing Key (4.0/etch) " not changed O: gpg: O: key ADB11277: "Etch Stable Release Key " not changed O: gpg: O: key BBE55AB3: "Debian-Volatile Archive Automatic Signing Key (4.0/etch)" not changed O: gpg: O: key F42584E6: "Lenny Stable Release Key " not changed O: gpg: O: key 55BE302B: "Debian Archive Automatic Signing Key (5.0/lenny) " not changed O: gpg: O: key 6D849617: "Debian-Volatile Archive Automatic Signing Key (5.0/lenny)" not changed O: gpg: O: Total number processed: 6 O: gpg: O: unchanged: 6 P: Configuring helper cdebootstrap-helper-apt O: Selecting previously deselected package cdebootstrap-helper-apt. O: (Reading database ... O: 5964 files and directories currently installed.) O: Unpacking cdebootstrap-helper-apt (from .../cdebootstrap-helper-apt.deb) ... O: Setting up cdebootstrap-helper-apt (1) ... O: Get:1 bootstrap: . Release.gpg [835B] O: Get:2 bootstrap: . Release [89.5kB] O: Ign bootstrap: ./main Packages O: Reading package lists... O: O: Reading package lists... O: O: Building dependency tree... O: O: Suggested packages: O: binutils-doc bzip2-doc cpp-doc gcc-4.3-locales debian-keyring O: debian-maintainers g++-multilib g++-4.3-multilib gcc-4.3-doc O: libstdc++6-4.3-dbg gcc-multilib manpages-dev autoconf automake1.9 libtool O: flex bison gdb gcc-doc gcc-4.3-multilib libmudflap0-4.3-dev libgcc1-dbg O: libgomp1-dbg libmudflap0-dbg glibc-doc libstdc++6-4.3-doc make-doc ed O: diff-doc perl-doc libterm-readline-gnu-perl libterm-readline-perl-perl O: Recommended packages: O: netbase O: The following NEW packages will be installed: O: binutils build-essential bzip2 cpp cpp-4.3 dash dpkg-dev fakeroot g++ O: g++-4.3 gcc gcc-4.3 libc-dev-bin libc6-dev libgdbm3 libgmp3c2 libgomp1 O: liblzma0 libmpfr1ldbl libstdc++6-4.3-dev libtimedate-perl linux-libc-dev O: make patch perl perl-modules xz-utils O: 0 upgraded, 27 newly installed, 0 to remove and 0 not upgraded. O: Need to get 0B/29.6MB of archives. O: After this operation, 102MB of additional disk space will be used. O: WARNING: The following packages cannot be authenticated! O: dash libgdbm3 patch perl-modules perl binutils libc-dev-bin linux-libc-dev O: libc6-dev libgmp3c2 libmpfr1ldbl cpp-4.3 cpp libgomp1 gcc-4.3 gcc O: libstdc++6-4.3-dev g++-4.3 g++ make bzip2 liblzma0 xz-utils libtimedate-perl O: dpkg-dev build-essential fakeroot O: debconf: delaying package configuration, since apt-utils is not installed O: Authentication warning overridden. O: Can not write log, openpty() failed (/dev/pts not mounted?) O: Selecting previously deselected package dash. O: (Reading database ... 5965 files and directories currently installed.) O: Unpacking dash (from .../dash_0.5.5.1-3_amd64.deb) ... P: Unpacking package dash O: Adding `diversion of /bin/sh to /bin/sh.distrib by dash' O: Adding `diversion of /usr/share/man/man1/sh.1.gz to /usr/share/man/man1/sh.distrib.1.gz by dash' O: Can not write log, openpty() failed (/dev/pts not mounted?) O: Setting up dash (0.5.5.1-3) ... P: Configuring package dash O: Can not write log, openpty() failed (/dev/pts not mounted?) O: Selecting previously deselected package libgdbm3. O: (Reading database ... O: 5976 files and directories currently installed.) O: Unpacking libgdbm3 (from .../libgdbm3_1.8.3-8_amd64.deb) ... P: Unpacking package libgdbm3 O: Selecting previously deselected package patch. O: Unpacking patch (from .../patch_2.5.9-5_amd64.deb) ... P: Unpacking package patch O: Selecting previously deselected package perl-modules. O: Unpacking perl-modules (from .../perl-modules_5.10.1-8_all.deb) ... P: Unpacking package perl-modules O: Selecting previously deselected package perl. O: Unpacking perl (from .../perl_5.10.1-8_amd64.deb) ... P: Unpacking package perl O: Selecting previously deselected package binutils. O: Unpacking binutils (from .../binutils_2.20-4_amd64.deb) ... P: Unpacking package binutils O: Selecting previously deselected package libc-dev-bin. O: Unpacking libc-dev-bin (from .../libc-dev-bin_2.10.1-7_amd64.deb) ... P: Unpacking package libc-dev-bin O: Selecting previously deselected package linux-libc-dev. O: Unpacking linux-libc-dev (from .../linux-libc-dev_2.6.30-8_amd64.deb) ... P: Unpacking package linux-libc-dev O: Selecting previously deselected package libc6-dev. O: Unpacking libc6-dev (from .../libc6-dev_2.10.1-7_amd64.deb) ... P: Unpacking package libc6-dev O: Selecting previously deselected package libgmp3c2. O: Unpacking libgmp3c2 (from .../libgmp3c2_4.3.1+dfsg-3_amd64.deb) ... P: Unpacking package libgmp3c2 O: Selecting previously deselected package libmpfr1ldbl. O: Unpacking libmpfr1ldbl (from .../libmpfr1ldbl_2.4.1-2_amd64.deb) ... P: Unpacking package libmpfr1ldbl O: Selecting previously deselected package cpp-4.3. O: Unpacking cpp-4.3 (from .../cpp-4.3_4.3.4-6_amd64.deb) ... P: Unpacking package cpp-4.3 O: Selecting previously deselected package cpp. O: Unpacking cpp (from .../cpp_4.3.3-9+nmu1_amd64.deb) ... P: Unpacking package cpp O: Selecting previously deselected package libgomp1. O: Unpacking libgomp1 (from .../libgomp1_4.4.2-3_amd64.deb) ... P: Unpacking package libgomp1 O: Selecting previously deselected package gcc-4.3. O: Unpacking gcc-4.3 (from .../gcc-4.3_4.3.4-6_amd64.deb) ... P: Unpacking package gcc-4.3 O: Selecting previously deselected package gcc. O: Unpacking gcc (from .../gcc_4.3.3-9+nmu1_amd64.deb) ... P: Unpacking package gcc O: Selecting previously deselected package libstdc++6-4.3-dev. O: Unpacking libstdc++6-4.3-dev (from .../libstdc++6-4.3-dev_4.3.4-6_amd64.deb) ... P: Unpacking package libstdc++6-4.3-dev O: Selecting previously deselected package g++-4.3. O: Unpacking g++-4.3 (from .../g++-4.3_4.3.4-6_amd64.deb) ... P: Unpacking package g++-4.3 O: Selecting previously deselected package g++. O: Unpacking g++ (from .../g++_4.3.3-9+nmu1_amd64.deb) ... P: Unpacking package g++ O: Selecting previously deselected package make. O: Unpacking make (from .../make_3.81-7_amd64.deb) ... P: Unpacking package make O: Selecting previously deselected package bzip2. O: Unpacking bzip2 (from .../bzip2_1.0.5-3_amd64.deb) ... P: Unpacking package bzip2 O: Selecting previously deselected package liblzma0. O: Unpacking liblzma0 (from .../liblzma0_4.999.9beta+20091004-1_amd64.deb) ... P: Unpacking package liblzma0 O: Selecting previously deselected package xz-utils. O: Unpacking xz-utils (from .../xz-utils_4.999.9beta+20091004-1_amd64.deb) ... P: Unpacking package xz-utils O: Selecting previously deselected package libtimedate-perl. O: Unpacking libtimedate-perl (from .../libtimedate-perl_1.1900-1_all.deb) ... P: Unpacking package libtimedate-perl O: Selecting previously deselected package dpkg-dev. O: Unpacking dpkg-dev (from .../dpkg-dev_1.15.5.2_all.deb) ... P: Unpacking package dpkg-dev O: Selecting previously deselected package build-essential. O: Unpacking build-essential (from .../build-essential_11.4_amd64.deb) ... P: Unpacking package build-essential O: Selecting previously deselected package fakeroot. O: Unpacking fakeroot (from .../fakeroot_1.14.4-1_amd64.deb) ... P: Unpacking package fakeroot O: Can not write log, openpty() failed (/dev/pts not mounted?) O: Setting up libgdbm3 (1.8.3-8) ... P: Configuring package libgdbm3 O: Setting up patch (2.5.9-5) ... P: Configuring package patch O: Setting up binutils (2.20-4) ... P: Configuring package binutils O: Setting up libc-dev-bin (2.10.1-7) ... P: Configuring package libc-dev-bin O: Setting up linux-libc-dev (2.6.30-8) ... P: Configuring package linux-libc-dev O: Setting up libc6-dev (2.10.1-7) ... P: Configuring package libc6-dev O: Setting up libgmp3c2 (2:4.3.1+dfsg-3) ... P: Configuring package libgmp3c2 O: Setting up libmpfr1ldbl (2.4.1-2) ... P: Configuring package libmpfr1ldbl O: Setting up cpp-4.3 (4.3.4-6) ... P: Configuring package cpp-4.3 O: Setting up cpp (4:4.3.3-9+nmu1) ... P: Configuring package cpp O: Setting up libgomp1 (4.4.2-3) ... P: Configuring package libgomp1 O: Setting up gcc-4.3 (4.3.4-6) ... P: Configuring package gcc-4.3 O: Setting up gcc (4:4.3.3-9+nmu1) ... P: Configuring package gcc O: Setting up make (3.81-7) ... P: Configuring package make O: Setting up bzip2 (1.0.5-3) ... P: Configuring package bzip2 O: Setting up liblzma0 (4.999.9beta+20091004-1) ... P: Configuring package liblzma0 O: Setting up xz-utils (4.999.9beta+20091004-1) ... P: Configuring package xz-utils O: Setting up fakeroot (1.14.4-1) ... P: Configuring package fakeroot O: update-alternatives: using /usr/bin/fakeroot-sysv to provide /usr/bin/fakeroot (fakeroot) in auto mode. O: Setting up perl-modules (5.10.1-8) ... P: Configuring package perl-modules O: Setting up libstdc++6-4.3-dev (4.3.4-6) ... P: Configuring package libstdc++6-4.3-dev O: Setting up perl (5.10.1-8) ... P: Configuring package perl O: update-alternatives: using /usr/bin/prename to provide /usr/bin/rename (rename) in auto mode. O: Setting up g++-4.3 (4.3.4-6) ... P: Configuring package g++-4.3 O: Setting up g++ (4:4.3.3-9+nmu1) ... P: Configuring package g++ O: update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode. O: Setting up libtimedate-perl (1.1900-1) ... P: Configuring package libtimedate-perl O: Setting up dpkg-dev (1.15.5.2) ... P: Configuring package dpkg-dev O: Setting up build-essential (11.4) ... P: Configuring package build-essential P: Deconfiguring helper cdebootstrap-helper-apt O: (Reading database ... O: 9918 files and directories currently installed.) O: Removing cdebootstrap-helper-apt ... O: Purging configuration files for cdebootstrap-helper-apt ... O: Reading package lists... O: P: Deconfiguring helper cdebootstrap-helper-makedev O: (Reading database ... 9917 files and directories currently installed.) O: Removing cdebootstrap-helper-makedev ... O: Purging configuration files for cdebootstrap-helper-makedev ... P: Writing apt sources.list P: Writing hosts P: Writing resolv.conf I: debootstrap finished I: copying local configuration I: Installing apt-lines I: user script /var/cache/pbuilder/build//NUM/tmp/hooks/G50-initscripts-2.86.ds1-11-cdebootstrap0.3.9.sh starting warning: can't open /etc/mtab: No such file or directory umount: /sys: not mounted warning: can't open /etc/mtab: No such file or directory umount: /proc/bus/usb: not found warning: can't open /etc/mtab: No such file or directory umount: /dev/shm: not mounted warning: can't open /etc/mtab: No such file or directory umount: /proc: not mounted warning: can't open /etc/mtab: No such file or directory umount: /dev/pts: not mounted I: user script /var/cache/pbuilder/build//NUM/tmp/hooks/G50-initscripts-2.86.ds1-11-cdebootstrap0.3.9.sh finished I: Refreshing the base.tgz I: upgrading packages I: mounting /proc filesystem I: mounting /dev/pts filesystem I: policy-rc.d already exists Get:1 http://localhost squeeze Release.gpg [835B] Get:2 http://localhost squeeze Release [89.5kB] Ign http://localhost squeeze/main Packages Ign http://localhost squeeze/main Packages Get:3 http://localhost squeeze/main Packages [7916kB] Fetched XXXB in Xs (XXXXXB/s) Reading package lists... Reading package lists... Building dependency tree... Reading state information... 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. Reading package lists... Building dependency tree... Reading state information... build-essential is already the newest version. dpkg-dev is already the newest version. apt is already the newest version. The following extra packages will be installed: libcwidget3 libept0 libncursesw5 libsigc++-2.0-0c2a libxapian15 Suggested packages: tasksel debtags libcwidget-dev xapian-tools Recommended packages: aptitude-doc-en aptitude-doc libparse-debianchangelog-perl libgpm2 The following NEW packages will be installed: aptitude libcwidget3 libept0 libncursesw5 libsigc++-2.0-0c2a libxapian15 0 upgraded, 6 newly installed, 0 to remove and 0 not upgraded. Need to get 4807kB of archives. After this operation, 14.1MB of additional disk space will be used. Get:1 http://localhost squeeze/main libncursesw5 5.7+20090803-2 [379kB] Get:2 http://localhost squeeze/main libsigc++-2.0-0c2a 2.0.18-2 [34.2kB] Get:3 http://localhost squeeze/main libcwidget3 0.5.13-1 [309kB] Get:4 http://localhost squeeze/main libxapian15 1.0.16-3 [815kB] Get:5 http://localhost squeeze/main libept0 0.5.29 [204kB] Get:6 http://localhost squeeze/main aptitude 0.4.11.11-1+b2 [3067kB] debconf: delaying package configuration, since apt-utils is not installed Fetched XXXB in Xs (XXXXXB/s) Selecting previously deselected package libncursesw5. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 9917 files and directories currently installed.) Unpacking libncursesw5 (from .../libncursesw5_5.7+20090803-2_amd64.deb) ... Selecting previously deselected package libsigc++-2.0-0c2a. Unpacking libsigc++-2.0-0c2a (from .../libsigc++-2.0-0c2a_2.0.18-2_amd64.deb) ... Selecting previously deselected package libcwidget3. Unpacking libcwidget3 (from .../libcwidget3_0.5.13-1_amd64.deb) ... Selecting previously deselected package libxapian15. Unpacking libxapian15 (from .../libxapian15_1.0.16-3_amd64.deb) ... Selecting previously deselected package libept0. Unpacking libept0 (from .../libept0_0.5.29_amd64.deb) ... Selecting previously deselected package aptitude. Unpacking aptitude (from .../aptitude_0.4.11.11-1+b2_amd64.deb) ... Setting up libncursesw5 (5.7+20090803-2) ... Setting up libsigc++-2.0-0c2a (2.0.18-2) ... Setting up libcwidget3 (0.5.13-1) ... Setting up libxapian15 (1.0.16-3) ... Setting up libept0 (0.5.29) ... Setting up aptitude (0.4.11.11-1+b2) ... I: user script /var/cache/pbuilder/build//NUM/tmp/hooks/E50-initscripts-2.86.ds1-7.workaround.sh starting umount: /sys: not mounted umount: /run: not found umount: /proc/bus/usb: not mounted umount: /dev/shm: not mounted umount: /lib/init/rw: not mounted cat: /var/run/inetd.pid: No such file or directory kill: 20: Usage: kill [-s sigspec | -signum | -sigspec] [pid | job]... or kill -l [exitstatus] I: user script /var/cache/pbuilder/build//NUM/tmp/hooks/E50-initscripts-2.86.ds1-7.workaround.sh finished I: unmounting dev/pts filesystem I: unmounting proc filesystem I: creating base tarball [/TESTDIR/testimage] I: cleaning the build env I: removing directory /var/cache/pbuilder/build//NUM and its subdirectories pbuilder-0.215ubuntu7/testsuite/cdebootstrap/pdebuild-internal-squeeze.log0000664000000000000000000010517012312041170024052 0ustar W: /home/dancer/.pbuilderrc does not exist I: Building the build Environment I: extracting base tarball [/TESTDIR/testimage] I: creating local configuration I: copying local configuration I: mounting /proc filesystem I: mounting /dev/pts filesystem I: Mounting /home/dancer/DEBIAN/pbuilder I: policy-rc.d already exists Reading package lists... Building dependency tree... Reading state information... passwd is already the newest version. The following extra packages will be installed: cdebootstrap libdebian-installer-extra4 libdebian-installer4 libssl0.9.8 wget Suggested packages: pbuilder-uml gdebi cowdancer Recommended packages: sudo devscripts The following NEW packages will be installed: cdebootstrap libdebian-installer-extra4 libdebian-installer4 libssl0.9.8 pbuilder wget 0 upgraded, 6 newly installed, 0 to remove and 0 not upgraded. Need to get 2145kB of archives. After this operation, 6226kB of additional disk space will be used. Get:1 http://localhost squeeze/main libssl0.9.8 0.9.8k-7 [979kB] Get:2 http://localhost squeeze/main wget 1.12-1.1 [757kB] Get:3 http://localhost squeeze/main libdebian-installer4 0.69 [31.0kB] Get:4 http://localhost squeeze/main libdebian-installer-extra4 0.69 [12.9kB] Get:5 http://localhost squeeze/main cdebootstrap 0.5.5 [32.3kB] Get:6 http://localhost squeeze/main pbuilder 0.194 [332kB] debconf: delaying package configuration, since apt-utils is not installed Fetched XXXB in Xs (XXXXXB/s) Selecting previously deselected package libssl0.9.8. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 10094 files and directories currently installed.) Unpacking libssl0.9.8 (from .../libssl0.9.8_0.9.8k-7_amd64.deb) ... Selecting previously deselected package wget. Unpacking wget (from .../wget_1.12-1.1_amd64.deb) ... Selecting previously deselected package libdebian-installer4. Unpacking libdebian-installer4 (from .../libdebian-installer4_0.69_amd64.deb) ... Selecting previously deselected package libdebian-installer-extra4. Unpacking libdebian-installer-extra4 (from .../libdebian-installer-extra4_0.69_amd64.deb) ... Selecting previously deselected package cdebootstrap. Unpacking cdebootstrap (from .../cdebootstrap_0.5.5_amd64.deb) ... Selecting previously deselected package pbuilder. Unpacking pbuilder (from .../pbuilder_0.194_all.deb) ... Setting up libssl0.9.8 (0.9.8k-7) ... Setting up wget (1.12-1.1) ... Setting up libdebian-installer4 (0.69) ... Setting up libdebian-installer-extra4 (0.69) ... Setting up cdebootstrap (0.5.5) ... Setting up pbuilder (0.194) ... I: Setting DEBBUILDOPTS= I: Setting DEBBUILDOPTS= W: no hooks of type D found -- ignoring -> Attempting to satisfy build-dependencies -> Creating pbuilder-satisfydepends-dummy package Package: pbuilder-satisfydepends-dummy Version: 0.invalid.0 Architecture: amd64 Maintainer: Debian Pbuilder Team Description: Dummy package to satisfy dependencies with aptitude - created by pbuilder This package was created automatically by pbuilder and should Depends: debhelper (>= 7), docbook-xsl, ldp-docbook-xsl (>= 0.0.20040321-0.1), xsltproc, dpkg-dev (>= 1.13.19), dblatex, debconf | debconf-2.0, po-debconf, po4a dpkg-deb: building package `pbuilder-satisfydepends-dummy' in `/tmp/satisfydepends-aptitude/pbuilder-satisfydepends-dummy.deb'. Reading package lists... Building dependency tree... Reading state information... aptitude is already the newest version. 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. Selecting previously deselected package pbuilder-satisfydepends-dummy. (Reading database ... 10294 files and directories currently installed.) Unpacking pbuilder-satisfydepends-dummy (from .../pbuilder-satisfydepends-dummy.deb) ... dpkg: dependency problems prevent configuration of pbuilder-satisfydepends-dummy: pbuilder-satisfydepends-dummy depends on debhelper (>= 7); however: Package debhelper is not installed. pbuilder-satisfydepends-dummy depends on docbook-xsl; however: Package docbook-xsl is not installed. pbuilder-satisfydepends-dummy depends on ldp-docbook-xsl (>= 0.0.20040321-0.1); however: Package ldp-docbook-xsl is not installed. pbuilder-satisfydepends-dummy depends on xsltproc; however: Package xsltproc is not installed. pbuilder-satisfydepends-dummy depends on dblatex; however: Package dblatex is not installed. pbuilder-satisfydepends-dummy depends on po-debconf; however: Package po-debconf is not installed. pbuilder-satisfydepends-dummy depends on po4a; however: Package po4a is not installed. dpkg: error processing pbuilder-satisfydepends-dummy (--install): dependency problems - leaving unconfigured Errors were encountered while processing: pbuilder-satisfydepends-dummy Reading package lists... Building dependency tree... Reading state information... Initializing package states... Writing extended state information... The following NEW packages will be installed: apt-utils{a} bsdmainutils{a} dblatex{a} debhelper{a} defoma{a} docbook-xml{a} docbook-xsl{a} ed{a} file{a} fontconfig-config{a} gettext{a} gettext-base{a} groff-base{a} html2text{a} intltool-debian{a} ldp-docbook-xsl{a} libcroco3{a} libdb4.5{a} libexpat1{a} libfontconfig1{a} libfreetype6{a} libgcrypt11{a} libglib2.0-0{a} libgpg-error0{a} libice6{a} libjpeg62{a} libkpathsea4{a} liblcms1{a} libmagic1{a} libnewt0.52{a} libopenjpeg2{a} libpcre3{a} libpng12-0{a} libpoppler5{a} libpopt0{a} libsgmls-perl{a} libslang2{a} libsm6{a} libsp1c2{a} libsqlite3-0{a} libx11-6{a} libx11-data{a} libxau6{a} libxaw7{a} libxcb1{a} libxdmcp6{a} libxext6{a} libxml2{a} libxmu6{a} libxpm4{a} libxslt1.1{a} libxt6{a} lsb-release{a} man-db{a} mime-support{a} po-debconf{a} po4a{a} preview-latex-style{a} python{a} python-apt{a} python-central{a} python-minimal{a} python-support{a} python2.5{a} python2.5-minimal{a} sgml-base{a} sgml-data{a} sp{a} tex-common{a} texlive{a} texlive-base{a} texlive-base-bin{a} texlive-bibtex-extra{a} texlive-common{a} texlive-doc-base{a} texlive-extra-utils{a} texlive-fonts-recommended{a} texlive-latex-base{a} texlive-latex-extra{a} texlive-latex-recommended{a} texlive-math-extra{a} texlive-pictures{a} ttf-dejavu{a} ttf-dejavu-core{a} ttf-dejavu-extra{a} ucf{a} whiptail{a} x11-common{a} xml-core{a} xsltproc{a} The following partially installed packages will be configured: pbuilder-satisfydepends-dummy 0 packages upgraded, 90 newly installed, 0 to remove and 0 not upgraded. Need to get 64.4MB of archives. After unpacking 225MB will be used. Writing extended state information... Get:1 http://localhost squeeze/main libmagic1 5.03-3 [389kB] Get:2 http://localhost squeeze/main file 5.03-3 [46.9kB] Get:3 http://localhost squeeze/main html2text 1.3.2a-14 [103kB] Get:4 http://localhost squeeze/main libpcre3 7.8-3 [215kB] Get:5 http://localhost squeeze/main libglib2.0-0 2.22.3-1 [988kB] Get:6 http://localhost squeeze/main libxml2 2.7.6.dfsg-1 [876kB] Get:7 http://localhost squeeze/main libcroco3 0.6.2-1 [125kB] Get:8 http://localhost squeeze/main gettext-base 0.17-8 [133kB] Get:9 http://localhost squeeze/main gettext 0.17-8 [2503kB] Get:10 http://localhost squeeze/main intltool-debian 0.35.0+20060710.1 [30.8kB] Get:11 http://localhost squeeze/main po-debconf 1.0.16 [224kB] Get:12 http://localhost squeeze/main groff-base 1.20.1-6 [1156kB] Get:13 http://localhost squeeze/main bsdmainutils 8.0.2 [198kB] Get:14 http://localhost squeeze/main man-db 2.5.6-4 [1477kB] Get:15 http://localhost squeeze/main debhelper 7.4.3 [454kB] Get:16 http://localhost squeeze/main sgml-base 1.26 [11.7kB] Get:17 http://localhost squeeze/main xml-core 0.13 [23.4kB] Get:18 http://localhost squeeze/main docbook-xsl 1.75.2+dfsg-3 [1618kB] Get:19 http://localhost squeeze/main ldp-docbook-xsl 0.0.20040321-2 [29.5kB] Get:20 http://localhost squeeze/main libgpg-error0 1.6-1 [43.9kB] Get:21 http://localhost squeeze/main libgcrypt11 1.4.4-6 [274kB] Get:22 http://localhost squeeze/main libxslt1.1 1.1.26-1 [243kB] Get:23 http://localhost squeeze/main xsltproc 1.1.26-1 [114kB] Get:24 http://localhost squeeze/main python2.5-minimal 2.5.4-3 [1286kB] Get:25 http://localhost squeeze/main mime-support 3.47-1 [34.3kB] Get:26 http://localhost squeeze/main libdb4.5 4.5.20-13.1 [553kB] Get:27 http://localhost squeeze/main libsqlite3-0 3.6.20-1 [300kB] Get:28 http://localhost squeeze/main python2.5 2.5.4-3 [3035kB] Get:29 http://localhost squeeze/main python-minimal 2.5.4-2 [13.9kB] Get:30 http://localhost squeeze/main python 2.5.4-2 [142kB] Get:31 http://localhost squeeze/main python-support 1.0.4 [32.0kB] Get:32 http://localhost squeeze/main sgml-data 2.0.3 [279kB] Get:33 http://localhost squeeze/main docbook-xml 4.5-7 [345kB] Get:34 http://localhost squeeze/main python-central 0.6.13 [45.8kB] Get:35 http://localhost squeeze/main apt-utils 0.7.23.1 [198kB] Get:36 http://localhost squeeze/main lsb-release 3.2-23 [21.5kB] Get:37 http://localhost squeeze/main python-apt 0.7.13.3 [377kB] Get:38 http://localhost squeeze/main ucf 3.0025 [66.0kB] Get:39 http://localhost squeeze/main tex-common 1.20 [722kB] Get:40 http://localhost squeeze/main texlive-common 2007.dfsg.2-4 [92.9kB] Get:41 http://localhost squeeze/main texlive-doc-base 2007.dfsg.2-2 [760kB] Get:42 http://localhost squeeze/main ed 1.4-1 [61.5kB] Get:43 http://localhost squeeze/main libkpathsea4 2007.dfsg.2-8 [124kB] Get:44 http://localhost squeeze/main libpng12-0 1.2.40-1 [173kB] Get:45 http://localhost squeeze/main libexpat1 2.0.1-5 [135kB] Get:46 http://localhost squeeze/main libfreetype6 2.3.11-1 [432kB] Get:47 http://localhost squeeze/main libslang2 2.2.1-1 [539kB] Get:48 http://localhost squeeze/main libnewt0.52 0.52.10-4.1 [67.9kB] Get:49 http://localhost squeeze/main libpopt0 1.15-1 [51.6kB] Get:50 http://localhost squeeze/main whiptail 0.52.10-4.1 [39.1kB] Get:51 http://localhost squeeze/main defoma 0.11.10-3 [99.0kB] Get:52 http://localhost squeeze/main ttf-dejavu-core 2.30-1 [1437kB] Get:53 http://localhost squeeze/main ttf-dejavu-extra 2.30-1 [3180kB] Get:54 http://localhost squeeze/main ttf-dejavu 2.30-1 [28.7kB] Get:55 http://localhost squeeze/main fontconfig-config 2.6.0-4 [184kB] Get:56 http://localhost squeeze/main libfontconfig1 2.6.0-4 [240kB] Get:57 http://localhost squeeze/main libjpeg62 6b-15 [92.2kB] Get:58 http://localhost squeeze/main liblcms1 1.18.dfsg-1 [111kB] Get:59 http://localhost squeeze/main libopenjpeg2 1.3+dfsg-4 [79.5kB] Get:60 http://localhost squeeze/main libpoppler5 0.12.2-2 [943kB] Get:61 http://localhost squeeze/main libxau6 1:1.0.5-1 [14.2kB] Get:62 http://localhost squeeze/main libxdmcp6 1:1.0.3-1 [18.9kB] Get:63 http://localhost squeeze/main libxcb1 1.4-1 [43.3kB] Get:64 http://localhost squeeze/main libx11-data 2:1.3.2-1 [219kB] Get:65 http://localhost squeeze/main libx11-6 2:1.3.2-1 [844kB] Get:66 http://localhost squeeze/main x11-common 1:7.4+4 [287kB] Get:67 http://localhost squeeze/main libxext6 2:1.0.4-1 [36.6kB] Get:68 http://localhost squeeze/main libice6 2:1.0.6-1 [53.8kB] Get:69 http://localhost squeeze/main libsm6 2:1.1.1-1 [25.0kB] Get:70 http://localhost squeeze/main libxt6 1:1.0.7-1 [192kB] Get:71 http://localhost squeeze/main libxmu6 2:1.0.5-1 [57.6kB] Get:72 http://localhost squeeze/main libxpm4 1:3.5.8-1 [44.2kB] Get:73 http://localhost squeeze/main libxaw7 2:1.0.7-1 [211kB] Get:74 http://localhost squeeze/main texlive-base-bin 2007.dfsg.2-8 [2628kB] Get:75 http://localhost squeeze/main texlive-base 2007.dfsg.2-4 [6297kB] Get:76 http://localhost squeeze/main texlive-fonts-recommended 2007.dfsg.2-4 [7320kB] Get:77 http://localhost squeeze/main texlive-latex-base 2007.dfsg.2-4 [1287kB] Get:78 http://localhost squeeze/main texlive-latex-recommended 2007.dfsg.2-4 [1920kB] Get:79 http://localhost squeeze/main texlive 2007.dfsg.2-4 [25.8kB] Get:80 http://localhost squeeze/main texlive-bibtex-extra 2007.dfsg.17-2 [3924kB] Get:81 http://localhost squeeze/main preview-latex-style 11.85-1 [122kB] Get:82 http://localhost squeeze/main texlive-pictures 2007.dfsg.2-4 [570kB] Get:83 http://localhost squeeze/main texlive-latex-extra 2007.dfsg.17-2 [3457kB] Get:84 http://localhost squeeze/main texlive-math-extra 2007.dfsg.17-2 [2582kB] Get:85 http://localhost squeeze/main texlive-extra-utils 2007.dfsg.2-8 [690kB] Get:86 http://localhost squeeze/main dblatex 0.2.12-2 [1278kB] Get:87 http://localhost squeeze/main libsgmls-perl 1.03ii-32 [27.8kB] Get:88 http://localhost squeeze/main libsp1c2 1.3.4-1.2.1-47 [1386kB] Get:89 http://localhost squeeze/main sp 1.3.4-1.2.1-47 [182kB] Get:90 http://localhost squeeze/main po4a 0.37.1-1 [1026kB] debconf: delaying package configuration, since apt-utils is not installed Fetched XXXB in Xs (XXXXXB/s) Selecting previously deselected package libmagic1. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 10294 files and directories currently installed.) Unpacking libmagic1 (from .../libmagic1_5.03-3_amd64.deb) ... Selecting previously deselected package file. Unpacking file (from .../archives/file_5.03-3_amd64.deb) ... Selecting previously deselected package html2text. Unpacking html2text (from .../html2text_1.3.2a-14_amd64.deb) ... Selecting previously deselected package libpcre3. Unpacking libpcre3 (from .../libpcre3_7.8-3_amd64.deb) ... Selecting previously deselected package libglib2.0-0. Unpacking libglib2.0-0 (from .../libglib2.0-0_2.22.3-1_amd64.deb) ... Selecting previously deselected package libxml2. Unpacking libxml2 (from .../libxml2_2.7.6.dfsg-1_amd64.deb) ... Selecting previously deselected package libcroco3. Unpacking libcroco3 (from .../libcroco3_0.6.2-1_amd64.deb) ... Selecting previously deselected package gettext-base. Unpacking gettext-base (from .../gettext-base_0.17-8_amd64.deb) ... Selecting previously deselected package gettext. Unpacking gettext (from .../gettext_0.17-8_amd64.deb) ... Selecting previously deselected package intltool-debian. Unpacking intltool-debian (from .../intltool-debian_0.35.0+20060710.1_all.deb) ... Selecting previously deselected package po-debconf. Unpacking po-debconf (from .../po-debconf_1.0.16_all.deb) ... Selecting previously deselected package groff-base. Unpacking groff-base (from .../groff-base_1.20.1-6_amd64.deb) ... Selecting previously deselected package bsdmainutils. Unpacking bsdmainutils (from .../bsdmainutils_8.0.2_amd64.deb) ... Selecting previously deselected package man-db. Unpacking man-db (from .../man-db_2.5.6-4_amd64.deb) ... Selecting previously deselected package debhelper. Unpacking debhelper (from .../debhelper_7.4.3_all.deb) ... Selecting previously deselected package sgml-base. Unpacking sgml-base (from .../sgml-base_1.26_all.deb) ... Selecting previously deselected package xml-core. Unpacking xml-core (from .../archives/xml-core_0.13_all.deb) ... Selecting previously deselected package docbook-xsl. Unpacking docbook-xsl (from .../docbook-xsl_1.75.2+dfsg-3_all.deb) ... Selecting previously deselected package ldp-docbook-xsl. Unpacking ldp-docbook-xsl (from .../ldp-docbook-xsl_0.0.20040321-2_all.deb) ... Selecting previously deselected package libgpg-error0. Unpacking libgpg-error0 (from .../libgpg-error0_1.6-1_amd64.deb) ... Selecting previously deselected package libgcrypt11. Unpacking libgcrypt11 (from .../libgcrypt11_1.4.4-6_amd64.deb) ... Selecting previously deselected package libxslt1.1. Unpacking libxslt1.1 (from .../libxslt1.1_1.1.26-1_amd64.deb) ... Selecting previously deselected package xsltproc. Unpacking xsltproc (from .../xsltproc_1.1.26-1_amd64.deb) ... Selecting previously deselected package python2.5-minimal. Unpacking python2.5-minimal (from .../python2.5-minimal_2.5.4-3_amd64.deb) ... Selecting previously deselected package mime-support. Unpacking mime-support (from .../mime-support_3.47-1_all.deb) ... Selecting previously deselected package libdb4.5. Unpacking libdb4.5 (from .../libdb4.5_4.5.20-13.1_amd64.deb) ... Selecting previously deselected package libsqlite3-0. Unpacking libsqlite3-0 (from .../libsqlite3-0_3.6.20-1_amd64.deb) ... Selecting previously deselected package python2.5. Unpacking python2.5 (from .../python2.5_2.5.4-3_amd64.deb) ... Selecting previously deselected package python-minimal. Unpacking python-minimal (from .../python-minimal_2.5.4-2_all.deb) ... Selecting previously deselected package python. Unpacking python (from .../python_2.5.4-2_all.deb) ... Selecting previously deselected package python-support. Unpacking python-support (from .../python-support_1.0.4_all.deb) ... Selecting previously deselected package sgml-data. Unpacking sgml-data (from .../sgml-data_2.0.3_all.deb) ... Setting up sgml-base (1.26) ... Setting up xml-core (0.13) ... Selecting previously deselected package docbook-xml. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 13310 files and directories currently installed.) Unpacking docbook-xml (from .../docbook-xml_4.5-7_all.deb) ... Selecting previously deselected package python-central. Unpacking python-central (from .../python-central_0.6.13_all.deb) ... Selecting previously deselected package apt-utils. Unpacking apt-utils (from .../apt-utils_0.7.23.1_amd64.deb) ... Selecting previously deselected package lsb-release. Unpacking lsb-release (from .../lsb-release_3.2-23_all.deb) ... Selecting previously deselected package python-apt. Unpacking python-apt (from .../python-apt_0.7.13.3_amd64.deb) ... Selecting previously deselected package ucf. Unpacking ucf (from .../archives/ucf_3.0025_all.deb) ... Moving old data out of the way Selecting previously deselected package tex-common. Unpacking tex-common (from .../tex-common_1.20_all.deb) ... Selecting previously deselected package texlive-common. Unpacking texlive-common (from .../texlive-common_2007.dfsg.2-4_all.deb) ... Selecting previously deselected package texlive-doc-base. Unpacking texlive-doc-base (from .../texlive-doc-base_2007.dfsg.2-2_all.deb) ... Selecting previously deselected package ed. Unpacking ed (from .../archives/ed_1.4-1_amd64.deb) ... Selecting previously deselected package libkpathsea4. Unpacking libkpathsea4 (from .../libkpathsea4_2007.dfsg.2-8_amd64.deb) ... Selecting previously deselected package libpng12-0. Unpacking libpng12-0 (from .../libpng12-0_1.2.40-1_amd64.deb) ... Selecting previously deselected package libexpat1. Unpacking libexpat1 (from .../libexpat1_2.0.1-5_amd64.deb) ... Selecting previously deselected package libfreetype6. Unpacking libfreetype6 (from .../libfreetype6_2.3.11-1_amd64.deb) ... Selecting previously deselected package libslang2. Unpacking libslang2 (from .../libslang2_2.2.1-1_amd64.deb) ... Selecting previously deselected package libnewt0.52. Unpacking libnewt0.52 (from .../libnewt0.52_0.52.10-4.1_amd64.deb) ... Selecting previously deselected package libpopt0. Unpacking libpopt0 (from .../libpopt0_1.15-1_amd64.deb) ... Selecting previously deselected package whiptail. Unpacking whiptail (from .../whiptail_0.52.10-4.1_amd64.deb) ... Selecting previously deselected package defoma. Unpacking defoma (from .../defoma_0.11.10-3_all.deb) ... Selecting previously deselected package ttf-dejavu-core. Unpacking ttf-dejavu-core (from .../ttf-dejavu-core_2.30-1_all.deb) ... Selecting previously deselected package ttf-dejavu-extra. Unpacking ttf-dejavu-extra (from .../ttf-dejavu-extra_2.30-1_all.deb) ... Selecting previously deselected package ttf-dejavu. Unpacking ttf-dejavu (from .../ttf-dejavu_2.30-1_all.deb) ... Selecting previously deselected package fontconfig-config. Unpacking fontconfig-config (from .../fontconfig-config_2.6.0-4_all.deb) ... Selecting previously deselected package libfontconfig1. Unpacking libfontconfig1 (from .../libfontconfig1_2.6.0-4_amd64.deb) ... Selecting previously deselected package libjpeg62. Unpacking libjpeg62 (from .../libjpeg62_6b-15_amd64.deb) ... Selecting previously deselected package liblcms1. Unpacking liblcms1 (from .../liblcms1_1.18.dfsg-1_amd64.deb) ... Selecting previously deselected package libopenjpeg2. Unpacking libopenjpeg2 (from .../libopenjpeg2_1.3+dfsg-4_amd64.deb) ... Selecting previously deselected package libpoppler5. Unpacking libpoppler5 (from .../libpoppler5_0.12.2-2_amd64.deb) ... Selecting previously deselected package libxau6. Unpacking libxau6 (from .../libxau6_1%3a1.0.5-1_amd64.deb) ... Selecting previously deselected package libxdmcp6. Unpacking libxdmcp6 (from .../libxdmcp6_1%3a1.0.3-1_amd64.deb) ... Selecting previously deselected package libxcb1. Unpacking libxcb1 (from .../libxcb1_1.4-1_amd64.deb) ... Selecting previously deselected package libx11-data. Unpacking libx11-data (from .../libx11-data_2%3a1.3.2-1_all.deb) ... Selecting previously deselected package libx11-6. Unpacking libx11-6 (from .../libx11-6_2%3a1.3.2-1_amd64.deb) ... Selecting previously deselected package x11-common. Unpacking x11-common (from .../x11-common_1%3a7.4+4_all.deb) ... Selecting previously deselected package libxext6. Unpacking libxext6 (from .../libxext6_2%3a1.0.4-1_amd64.deb) ... Selecting previously deselected package libice6. Unpacking libice6 (from .../libice6_2%3a1.0.6-1_amd64.deb) ... Selecting previously deselected package libsm6. Unpacking libsm6 (from .../libsm6_2%3a1.1.1-1_amd64.deb) ... Selecting previously deselected package libxt6. Unpacking libxt6 (from .../libxt6_1%3a1.0.7-1_amd64.deb) ... Selecting previously deselected package libxmu6. Unpacking libxmu6 (from .../libxmu6_2%3a1.0.5-1_amd64.deb) ... Selecting previously deselected package libxpm4. Unpacking libxpm4 (from .../libxpm4_1%3a3.5.8-1_amd64.deb) ... Selecting previously deselected package libxaw7. Unpacking libxaw7 (from .../libxaw7_2%3a1.0.7-1_amd64.deb) ... Selecting previously deselected package texlive-base-bin. Unpacking texlive-base-bin (from .../texlive-base-bin_2007.dfsg.2-8_amd64.deb) ... Selecting previously deselected package texlive-base. Unpacking texlive-base (from .../texlive-base_2007.dfsg.2-4_all.deb) ... Selecting previously deselected package texlive-fonts-recommended. Unpacking texlive-fonts-recommended (from .../texlive-fonts-recommended_2007.dfsg.2-4_all.deb) ... Selecting previously deselected package texlive-latex-base. Unpacking texlive-latex-base (from .../texlive-latex-base_2007.dfsg.2-4_all.deb) ... Selecting previously deselected package texlive-latex-recommended. Unpacking texlive-latex-recommended (from .../texlive-latex-recommended_2007.dfsg.2-4_all.deb) ... Selecting previously deselected package texlive. Unpacking texlive (from .../texlive_2007.dfsg.2-4_all.deb) ... Selecting previously deselected package texlive-bibtex-extra. Unpacking texlive-bibtex-extra (from .../texlive-bibtex-extra_2007.dfsg.17-2_all.deb) ... Selecting previously deselected package preview-latex-style. Unpacking preview-latex-style (from .../preview-latex-style_11.85-1_all.deb) ... Selecting previously deselected package texlive-pictures. Unpacking texlive-pictures (from .../texlive-pictures_2007.dfsg.2-4_all.deb) ... Selecting previously deselected package texlive-latex-extra. Unpacking texlive-latex-extra (from .../texlive-latex-extra_2007.dfsg.17-2_all.deb) ... Selecting previously deselected package texlive-math-extra. Unpacking texlive-math-extra (from .../texlive-math-extra_2007.dfsg.17-2_all.deb) ... Selecting previously deselected package texlive-extra-utils. Unpacking texlive-extra-utils (from .../texlive-extra-utils_2007.dfsg.2-8_amd64.deb) ... Selecting previously deselected package dblatex. Unpacking dblatex (from .../dblatex_0.2.12-2_all.deb) ... Selecting previously deselected package libsgmls-perl. Unpacking libsgmls-perl (from .../libsgmls-perl_1.03ii-32_all.deb) ... Selecting previously deselected package libsp1c2. Unpacking libsp1c2 (from .../libsp1c2_1.3.4-1.2.1-47_amd64.deb) ... Selecting previously deselected package sp. Unpacking sp (from .../sp_1.3.4-1.2.1-47_amd64.deb) ... Selecting previously deselected package po4a. Unpacking po4a (from .../archives/po4a_0.37.1-1_all.deb) ... Setting up libmagic1 (5.03-3) ... Setting up file (5.03-3) ... Setting up html2text (1.3.2a-14) ... Setting up libpcre3 (7.8-3) ... Setting up libglib2.0-0 (2.22.3-1) ... Setting up libxml2 (2.7.6.dfsg-1) ... Setting up libcroco3 (0.6.2-1) ... Setting up gettext-base (0.17-8) ... Setting up gettext (0.17-8) ... Setting up intltool-debian (0.35.0+20060710.1) ... Setting up po-debconf (1.0.16) ... Setting up groff-base (1.20.1-6) ... Setting up bsdmainutils (8.0.2) ... update-alternatives: using /usr/bin/bsd-write to provide /usr/bin/write (write) in auto mode. Setting up man-db (2.5.6-4) ... Building database of manual pages ... Setting up debhelper (7.4.3) ... Setting up docbook-xsl (1.75.2+dfsg-3) ... Setting up ldp-docbook-xsl (0.0.20040321-2) ... Setting up libgpg-error0 (1.6-1) ... Setting up libgcrypt11 (1.4.4-6) ... Setting up libxslt1.1 (1.1.26-1) ... Setting up xsltproc (1.1.26-1) ... Setting up python2.5-minimal (2.5.4-3) ... Setting up mime-support (3.47-1) ... update-alternatives: using /usr/bin/see to provide /usr/bin/view (view) in auto mode. Setting up libdb4.5 (4.5.20-13.1) ... Setting up libsqlite3-0 (3.6.20-1) ... Setting up python2.5 (2.5.4-3) ... Setting up python-minimal (2.5.4-2) ... Setting up python (2.5.4-2) ... Setting up python-support (1.0.4) ... Setting up sgml-data (2.0.3) ... Setting up docbook-xml (4.5-7) ... Setting up python-central (0.6.13) ... Setting up apt-utils (0.7.23.1) ... Setting up lsb-release (3.2-23) ... Setting up python-apt (0.7.13.3) ... Setting up ucf (3.0025) ... Setting up tex-common (1.20) ... Creating config file /etc/texmf/texmf.d/05TeXMF.cnf with new version Creating config file /etc/texmf/texmf.d/15Plain.cnf with new version Creating config file /etc/texmf/texmf.d/45TeXinputs.cnf with new version Creating config file /etc/texmf/texmf.d/55Fonts.cnf with new version Creating config file /etc/texmf/texmf.d/65BibTeX.cnf with new version Creating config file /etc/texmf/texmf.d/75DviPS.cnf with new version Creating config file /etc/texmf/texmf.d/85Misc.cnf with new version Creating config file /etc/texmf/texmf.d/90TeXDoc.cnf with new version Creating config file /etc/texmf/texmf.d/95NonPath.cnf with new version Creating config file /etc/texmf/updmap.d/00updmap.cfg with new version Creating config file /etc/texmf/texmf.cnf with new version Running mktexlsr. This may take some time... done. Running updmap-sys. This may take some time... done. Building format(s) --all. This may take some time... done. Setting up texlive-common (2007.dfsg.2-4) ... Setting up texlive-doc-base (2007.dfsg.2-2) ... Running mktexlsr. This may take some time... done. Setting up ed (1.4-1) ... Setting up libkpathsea4 (2007.dfsg.2-8) ... Setting up libpng12-0 (1.2.40-1) ... Setting up libexpat1 (2.0.1-5) ... Setting up libfreetype6 (2.3.11-1) ... Setting up libslang2 (2.2.1-1) ... Setting up libnewt0.52 (0.52.10-4.1) ... Setting up libpopt0 (1.15-1) ... Setting up whiptail (0.52.10-4.1) ... Setting up defoma (0.11.10-3) ... Setting up ttf-dejavu-core (2.30-1) ... Setting up ttf-dejavu-extra (2.30-1) ... Setting up ttf-dejavu (2.30-1) ... Setting up fontconfig-config (2.6.0-4) ... Setting up libfontconfig1 (2.6.0-4) ... Setting up libjpeg62 (6b-15) ... Setting up liblcms1 (1.18.dfsg-1) ... Setting up libopenjpeg2 (1.3+dfsg-4) ... Setting up libpoppler5 (0.12.2-2) ... Setting up libxau6 (1:1.0.5-1) ... Setting up libxdmcp6 (1:1.0.3-1) ... Setting up libxcb1 (1.4-1) ... Setting up libx11-data (2:1.3.2-1) ... Setting up libx11-6 (2:1.3.2-1) ... Setting up x11-common (1:7.4+4) ... ************************************ All rc.d operations denied by policy ************************************ Setting up libxext6 (2:1.0.4-1) ... Setting up libice6 (2:1.0.6-1) ... Setting up libsm6 (2:1.1.1-1) ... Setting up libxt6 (1:1.0.7-1) ... Setting up libxmu6 (2:1.0.5-1) ... Setting up libxpm4 (1:3.5.8-1) ... Setting up libxaw7 (2:1.0.7-1) ... Setting up texlive-base-bin (2007.dfsg.2-8) ... Running mktexlsr. This may take some time... done. Building format(s) --all. This may take some time... done. update-alternatives: using /usr/bin/xdvi-xaw.bin to provide /usr/bin/xdvi.bin (xdvi.bin) in auto mode. Setting up texlive-base (2007.dfsg.2-4) ... Running mktexlsr. This may take some time... done. Building format(s) --all. This may take some time... done. Setting up preview-latex-style (11.85-1) ... mktexlsr: Updating /usr/local/share/texmf/ls-R... mktexlsr: Updating /var/lib/texmf/ls-R-TEXMFMAIN... mktexlsr: Updating /var/lib/texmf/ls-R-TEXLIVE... mktexlsr: Updating /var/lib/texmf/ls-R... mktexlsr: Done. Setting up libsgmls-perl (1.03ii-32) ... Setting up libsp1c2 (1.3.4-1.2.1-47) ... Setting up sp (1.3.4-1.2.1-47) ... Setting up po4a (0.37.1-1) ... Processing triggers for tex-common ... Running mktexlsr. This may take some time... done. Running updmap-sys. This may take some time... done. Setting up texlive-latex-base (2007.dfsg.2-4) ... Running mktexlsr. This may take some time... done. Building format(s) --all --cnffile /etc/texmf/fmt.d/10texlive-latex-base.cnf. This may take some time... done. Setting up texlive-pictures (2007.dfsg.2-4) ... Running mktexlsr. This may take some time... done. Setting up texlive-extra-utils (2007.dfsg.2-8) ... Running mktexlsr. This may take some time... done. Setting up texlive-fonts-recommended (2007.dfsg.2-4) ... Running mktexlsr. This may take some time... done. Processing triggers for tex-common ... Running mktexlsr. This may take some time... done. Running updmap-sys. This may take some time... done. Setting up texlive-bibtex-extra (2007.dfsg.17-2) ... Running mktexlsr. This may take some time... done. Setting up texlive-latex-extra (2007.dfsg.17-2) ... Running mktexlsr. This may take some time... done. Setting up texlive-math-extra (2007.dfsg.17-2) ... Running mktexlsr. This may take some time... done. Building format(s) --all --cnffile /etc/texmf/fmt.d/10texlive-math-extra.cnf. This may take some time... done. Setting up texlive-latex-recommended (2007.dfsg.2-4) ... Running mktexlsr. This may take some time... done. Setting up texlive (2007.dfsg.2-4) ... Processing triggers for tex-common ... Running mktexlsr. This may take some time... done. Running updmap-sys. This may take some time... done. Setting up dblatex (0.2.12-2) ... mktexlsr: Updating /var/lib/texmf/ls-R-TEXMFMAIN... mktexlsr: Done. Setting up pbuilder-satisfydepends-dummy (0.invalid.0) ... Processing triggers for python-support ... Reading package lists... Building dependency tree... Reading state information... Reading extended state information... Initializing package states... Writing extended state information... -> Finished parsing the build-deps Reading package lists... Building dependency tree... Reading state information... fakeroot is already the newest version. 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. W: no hooks of type A found -- ignoring I: Running /usr/bin/dpkg-buildpackage -rfakeroot -us -uc '${DEBBUILDOPTS}' dpkg-buildpackage: unknown option or argument ${DEBBUILDOPTS} Usage: dpkg-buildpackage [ ...] Options: -r command to gain root privileges (default is fakeroot). -R rules file to execute (default is debian/rules). -p -d do not check build dependencies and conflicts. -D check build dependencies and conflicts. -T call debian/rules with the proper environment --as-root ensure -T calls the target with root rights -j[] specify jobs to run simultaneously } passed to debian/rules -k the key to use for signing. -sgpg the sign-command is called like GPG. -spgp the sign-command is called like PGP. -us unsigned source. -uc unsigned changes. -a Debian architecture we build for (implies -d). -b binary-only, do not build source. } also passed to -B binary-only, no arch-indep files. } dpkg-genchanges -A binary-only, only arch-indep files. } -S source only, no binary files. } -t set GNU system type. } passed to dpkg-architecture -v changes since version . } -m maintainer for package is . } -e maintainer for release is . } only passed -C changes are described in . } to dpkg-genchanges -si (default) src includes orig if new upstream. } -sa uploaded src always includes orig. } -sd uploaded src is diff and .dsc only. } -sn force Debian native source format. } -s[sAkurKUR] see dpkg-source for explanation. } only passed -z compression level of source } to dpkg-source -Z compression to use for source } -nc do not clean source tree (implies -b). -tc clean source tree when finished. -ap add pause before starting signature process. -i[] ignore diffs of files matching regex. } only passed -I[] filter out files when building tarballs. } to dpkg-source --admindir= change the administrative directory. -h, --help show this help message. --version show the version. W: no hooks of type C found -- ignoring I: unmounting /home/dancer/DEBIAN/pbuilder filesystem I: unmounting dev/pts filesystem I: unmounting proc filesystem I: cleaning the build env I: removing directory /TESTDIR/dir3/NUM and its subdirectories pbuilder-0.215ubuntu7/testsuite/cdebootstrap/pbuilder-update-lenny-squeeze.log0000664000000000000000000020141512312041170024660 0ustar I: Upgrading for distribution squeeze I: Building the build Environment I: extracting base tarball [/TESTDIR/testimage] I: creating local configuration I: copying local configuration I: Installing apt-lines I: mounting /proc filesystem I: mounting /dev/pts filesystem I: policy-rc.d already exists I: Refreshing the base.tgz I: upgrading packages Get:1 http://localhost squeeze Release.gpg [835B] Get:2 http://localhost squeeze Release [89.5kB] Ign http://localhost squeeze/main Packages Get:3 http://localhost squeeze/main Packages [7916kB] Fetched XXXB in Xs (XXXXXB/s) Reading package lists... Reading package lists... Building dependency tree... Reading state information... The following NEW packages will be installed: dash diffutils gcc-4.4-base insserv libc-bin libc-dev-bin libdb4.7 liblzma0 libreadline6 sensible-utils xz-utils The following packages will be upgraded: apt aptitude base-files base-passwd bash binutils bsdutils bzip2 coreutils cpio cpp cpp-4.3 debconf debconf-i18n debianutils diff dpkg dpkg-dev e2fslibs e2fsprogs fakeroot findutils g++ g++-4.3 gcc gcc-4.3 gcc-4.3-base gnupg gpgv grep gzip hostname initscripts libacl1 libattr1 libblkid1 libbz2-1.0 libc6 libc6-dev libcomerr2 libcwidget3 libdb4.6 libept0 libgcc1 libgdbm3 libgmp3c2 libgomp1 liblocale-gettext-perl libmpfr1ldbl libncurses5 libncursesw5 libpam-modules libpam-runtime libpam0g libreadline5 libselinux1 libsepol1 libslang2 libss2 libstdc++6 libstdc++6-4.3-dev libtext-charwidth-perl libtext-iconv-perl libtext-wrapi18n-perl libtimedate-perl libuuid1 libxapian15 linux-libc-dev login lsb-base make mawk mktemp mount ncurses-base ncurses-bin passwd perl perl-base perl-modules readline-common sed sysv-rc sysvinit sysvinit-utils tar tzdata util-linux zlib1g 89 upgraded, 11 newly installed, 0 to remove and 0 not upgraded. Need to get 65.7MB of archives. After this operation, 12.2MB of additional disk space will be used. Get:1 http://localhost squeeze/main libc-dev-bin 2.10.1-7 [200kB] Get:2 http://localhost squeeze/main libc6-dev 2.10.1-7 [2546kB] Get:3 http://localhost squeeze/main libc-bin 2.10.1-7 [727kB] Get:4 http://localhost squeeze/main libc6 2.10.1-7 [4244kB] Get:5 http://localhost squeeze/main linux-libc-dev 2.6.30-8 [827kB] Get:6 http://localhost squeeze/main gcc-4.4-base 4.4.2-3 [113kB] Get:7 http://localhost squeeze/main libgcc1 1:4.4.2-3 [44.8kB] Get:8 http://localhost squeeze/main base-passwd 3.5.22 [41.9kB] Get:9 http://localhost squeeze/main base-files 5.0.0 [70.3kB] Get:10 http://localhost squeeze/main sensible-utils 0.0.1 [4442B] Get:11 http://localhost squeeze/main debianutils 3.2.2 [49.1kB] Get:12 http://localhost squeeze/main bash 4.0-4 [1154kB] Get:13 http://localhost squeeze/main coreutils 7.4-2 [4883kB] Get:14 http://localhost squeeze/main diffutils 1:2.8.1-18 [193kB] Get:15 http://localhost squeeze/main dpkg 1.15.5.2 [2223kB] Get:16 http://localhost squeeze/main e2fslibs 1.41.9-1 [141kB] Get:17 http://localhost squeeze/main e2fsprogs 1.41.9-1 [796kB] Get:18 http://localhost squeeze/main findutils 4.4.2-1 [689kB] Get:19 http://localhost squeeze/main grep 2.5.4-4 [317kB] Get:20 http://localhost squeeze/main gzip 1.3.12-8 [107kB] Get:21 http://localhost squeeze/main hostname 3.01 [14.2kB] Get:22 http://localhost squeeze/main login 1:4.1.4.2-1 [755kB] Get:23 http://localhost squeeze/main libselinux1 2.0.88-1 [85.0kB] Get:24 http://localhost squeeze/main perl-modules 5.10.1-8 [3478kB] Get:25 http://localhost squeeze/main libdb4.7 4.7.25-8 [650kB] Get:26 http://localhost squeeze/main bzip2 1.0.5-3 [48.6kB] Get:27 http://localhost squeeze/main libbz2-1.0 1.0.5-3 [45.4kB] Get:28 http://localhost squeeze/main libgdbm3 1.8.3-8 [46.1kB] Get:29 http://localhost squeeze/main zlib1g 1:1.2.3.3.dfsg-15 [75.8kB] Get:30 http://localhost squeeze/main perl 5.10.1-8 [4417kB] Get:31 http://localhost squeeze/main perl-base 5.10.1-8 [1086kB] Get:32 http://localhost squeeze/main liblocale-gettext-perl 1.05-6 [21.6kB] Get:33 http://localhost squeeze/main libtext-iconv-perl 1.7-2 [18.5kB] Get:34 http://localhost squeeze/main libtext-charwidth-perl 0.04-6 [11.9kB] Get:35 http://localhost squeeze/main libtext-wrapi18n-perl 0.06-7 [9004B] Get:36 http://localhost squeeze/main debconf-i18n 1.5.28 [178kB] Get:37 http://localhost squeeze/main debconf 1.5.28 [149kB] Get:38 http://localhost squeeze/main libpam0g 1.1.0-4 [116kB] Get:39 http://localhost squeeze/main libpam-modules 1.1.0-4 [351kB] Get:40 http://localhost squeeze/main passwd 1:4.1.4.2-1 [1054kB] Get:41 http://localhost squeeze/main libuuid1 2.16.1-4 [56.7kB] Get:42 http://localhost squeeze/main libblkid1 2.16.1-4 [86.2kB] Get:43 http://localhost squeeze/main mount 2.16.1-4 [170kB] Get:44 http://localhost squeeze/main ncurses-bin 5.7+20090803-2 [312kB] Get:45 http://localhost squeeze/main sed 4.2.1-4 [251kB] Get:46 http://localhost squeeze/main sysvinit-utils 2.87dsf-8 [110kB] Get:47 http://localhost squeeze/main libsepol1 2.0.40-2 [129kB] Get:48 http://localhost squeeze/main sysvinit 2.87dsf-8 [112kB] Get:49 http://localhost squeeze/main tar 1.22-2 [881kB] Get:50 http://localhost squeeze/main lsb-base 3.2-23 [20.0kB] Get:51 http://localhost squeeze/main tzdata 2009s-1 [765kB] Get:52 http://localhost squeeze/main initscripts 2.87dsf-8 [64.0kB] Get:53 http://localhost squeeze/main insserv 1.12.0-14 [68.7kB] Get:54 http://localhost squeeze/main sysv-rc 2.87dsf-8 [54.2kB] Get:55 http://localhost squeeze/main util-linux 2.16.1-4 [623kB] Get:56 http://localhost squeeze/main dash 0.5.5.1-3 [101kB] Get:57 http://localhost squeeze/main diff 1:2.8.1-18 [5842B] Get:58 http://localhost squeeze/main mktemp 7.4-2 [13.9kB] Get:59 http://localhost squeeze/main bsdutils 1:2.16.1-4 [78.0kB] Get:60 http://localhost squeeze/main libncurses5 5.7+20090803-2 [355kB] Get:61 http://localhost squeeze/main ncurses-base 5.7+20090803-2 [182kB] Get:62 http://localhost squeeze/main mawk 1.3.3-15 [90.1kB] Get:63 http://localhost squeeze/main libstdc++6 4.4.2-3 [342kB] Get:64 http://localhost squeeze/main libxapian15 1.0.16-3 [815kB] Get:65 http://localhost squeeze/main libept0 0.5.29 [204kB] Get:66 http://localhost squeeze/main libncursesw5 5.7+20090803-2 [379kB] Get:67 http://localhost squeeze/main libcwidget3 0.5.13-1 [309kB] Get:68 http://localhost squeeze/main aptitude 0.4.11.11-1+b2 [3067kB] Get:69 http://localhost squeeze/main apt 0.7.23.1 [1652kB] Get:70 http://localhost squeeze/main readline-common 6.0-5 [51.9kB] Get:71 http://localhost squeeze/main libreadline6 6.0-5 [152kB] Get:72 http://localhost squeeze/main gpgv 1.4.10-2 [218kB] Get:73 http://localhost squeeze/main gnupg 1.4.10-2 [2137kB] Get:74 http://localhost squeeze/main libattr1 1:2.4.44-1 [12.7kB] Get:75 http://localhost squeeze/main libacl1 2.2.48-1 [19.2kB] Get:76 http://localhost squeeze/main libcomerr2 1.41.9-1 [46.4kB] Get:77 http://localhost squeeze/main libpam-runtime 1.1.0-4 [219kB] Get:78 http://localhost squeeze/main libslang2 2.2.1-1 [539kB] Get:79 http://localhost squeeze/main libss2 1.41.9-1 [51.9kB] Get:80 http://localhost squeeze/main cpio 2.10-1 [245kB] Get:81 http://localhost squeeze/main libreadline5 5.2-7 [146kB] Get:82 http://localhost squeeze/main libgomp1 4.4.2-3 [25.3kB] Get:83 http://localhost squeeze/main libgmp3c2 2:4.3.1+dfsg-3 [307kB] Get:84 http://localhost squeeze/main libmpfr1ldbl 2.4.1-2 [419kB] Get:85 http://localhost squeeze/main libstdc++6-4.3-dev 4.3.4-6 [1384kB] Get:86 http://localhost squeeze/main g++-4.3 4.3.4-6 [4804kB] Get:87 http://localhost squeeze/main gcc-4.3 4.3.4-6 [2595kB] Get:88 http://localhost squeeze/main cpp-4.3 4.3.4-6 [3349kB] Get:89 http://localhost squeeze/main binutils 2.20-4 [3300kB] Get:90 http://localhost squeeze/main gcc-4.3-base 4.3.4-6 [108kB] Get:91 http://localhost squeeze/main libdb4.6 4.6.21-14 [590kB] Get:92 http://localhost squeeze/main cpp 4:4.3.3-9+nmu1 [14.5kB] Get:93 http://localhost squeeze/main liblzma0 4.999.9beta+20091004-1 [146kB] Get:94 http://localhost squeeze/main xz-utils 4.999.9beta+20091004-1 [223kB] Get:95 http://localhost squeeze/main make 3.81-7 [404kB] Get:96 http://localhost squeeze/main libtimedate-perl 1.1900-1 [40.5kB] Get:97 http://localhost squeeze/main dpkg-dev 1.15.5.2 [756kB] Get:98 http://localhost squeeze/main fakeroot 1.14.4-1 [100kB] Get:99 http://localhost squeeze/main gcc 4:4.3.3-9+nmu1 [5032B] Get:100 http://localhost squeeze/main g++ 4:4.3.3-9+nmu1 [1386B] debconf: delaying package configuration, since apt-utils is not installed Fetched XXXB in Xs (XXXXXB/s) Selecting previously deselected package libc-dev-bin. (Reading database ... 9634 files and directories currently installed.) Unpacking libc-dev-bin (from .../libc-dev-bin_2.10.1-7_amd64.deb) ... Replacing files in old package libc6-dev ... Preparing to replace libc6-dev 2.7-18 (using .../libc6-dev_2.10.1-7_amd64.deb) ... Unpacking replacement libc6-dev ... Selecting previously deselected package libc-bin. dpkg: considering deconfiguration of libc6, which would be broken by installation of libc-bin ... dpkg: yes, will deconfigure libc6 (broken by libc-bin). Unpacking libc-bin (from .../libc-bin_2.10.1-7_amd64.deb) ... De-configuring libc6 ... Replacing files in old package libc6 ... Setting up libc-bin (2.10.1-7) ... Installing new version of config file /etc/gai.conf ... Installing new version of config file /etc/bindresvport.blacklist ... (Reading database ... 9660 files and directories currently installed.) Preparing to replace libc6 2.7-18 (using .../libc6_2.10.1-7_amd64.deb) ... Removing obsolete conffile /etc/init.d/glibc.sh ... Checking for services that may need to be restarted... Checking init scripts... Unpacking replacement libc6 ... Setting up libc6 (2.10.1-7) ... Checking for services that may need to be restarted... Checking init scripts... Nothing to restart. (Reading database ... 9655 files and directories currently installed.) Preparing to replace linux-libc-dev 2.6.26-19 (using .../linux-libc-dev_2.6.30-8_amd64.deb) ... Unpacking replacement linux-libc-dev ... Selecting previously deselected package gcc-4.4-base. Unpacking gcc-4.4-base (from .../gcc-4.4-base_4.4.2-3_amd64.deb) ... Setting up gcc-4.4-base (4.4.2-3) ... (Reading database ... 9749 files and directories currently installed.) Preparing to replace libgcc1 1:4.3.2-1.1 (using .../libgcc1_1%3a4.4.2-3_amd64.deb) ... Unpacking replacement libgcc1 ... Setting up libgcc1 (1:4.4.2-3) ... (Reading database ... 9749 files and directories currently installed.) Preparing to replace base-passwd 3.5.20 (using .../base-passwd_3.5.22_amd64.deb) ... Unpacking replacement base-passwd ... Setting up base-passwd (3.5.22) ... (Reading database ... 9749 files and directories currently installed.) Preparing to replace base-files 5lenny4 (using .../base-files_5.0.0_amd64.deb) ... Unpacking replacement base-files ... Replacing files in old package dpkg ... Setting up base-files (5.0.0) ... 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 ... Selecting previously deselected package sensible-utils. (Reading database ... 9748 files and directories currently installed.) Unpacking sensible-utils (from .../sensible-utils_0.0.1_all.deb) ... Replacing files in old package debianutils ... Setting up sensible-utils (0.0.1) ... (Reading database ... 9752 files and directories currently installed.) Preparing to replace debianutils 2.30 (using .../debianutils_3.2.2_amd64.deb) ... Unpacking replacement debianutils ... Setting up debianutils (3.2.2) ... (Reading database ... 9748 files and directories currently installed.) Preparing to replace bash 3.2-4 (using .../archives/bash_4.0-4_amd64.deb) ... Unpacking replacement bash ... Setting up bash (4.0-4) ... Installing new version of config file /etc/skel/.bashrc ... Installing new version of config file /etc/bash.bashrc ... (Reading database ... 9769 files and directories currently installed.) Preparing to replace coreutils 6.10-6 (using .../coreutils_7.4-2_amd64.deb) ... Unpacking replacement coreutils ... Replacing files in old package mktemp ... Setting up coreutils (7.4-2) ... Selecting previously deselected package diffutils. (Reading database ... 9776 files and directories currently installed.) Unpacking diffutils (from .../diffutils_1%3a2.8.1-18_amd64.deb) ... Replacing files in old package diff ... Setting up diffutils (1:2.8.1-18) ... (Reading database ... 9781 files and directories currently installed.) Preparing to replace dpkg 1.14.25 (using .../dpkg_1.15.5.2_amd64.deb) ... Unpacking replacement dpkg ... Setting up dpkg (1.15.5.2) ... Installing new version of config file /etc/logrotate.d/dpkg ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 9778 files and directories currently installed.) Preparing to replace e2fslibs 1.41.3-1 (using .../e2fslibs_1.41.9-1_amd64.deb) ... Unpacking replacement e2fslibs ... Setting up e2fslibs (1.41.9-1) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 9778 files and directories currently installed.) Preparing to replace e2fsprogs 1.41.3-1 (using .../e2fsprogs_1.41.9-1_amd64.deb) ... Unpacking replacement e2fsprogs ... Setting up e2fsprogs (1.41.9-1) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 9775 files and directories currently installed.) Preparing to replace findutils 4.4.0-2 (using .../findutils_4.4.2-1_amd64.deb) ... install-info: warning: maintainer scripts should not call install-info anymore, install-info: warning: this is handled now by a dpkg trigger provided by the install-info: warning: install-info package; package findutils should be updated. Unpacking replacement findutils ... Setting up findutils (4.4.2-1) ... install-info: warning: maintainer scripts should not call install-info anymore, install-info: warning: this is handled now by a dpkg trigger provided by the install-info: warning: install-info package; package findutils should be updated. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 9777 files and directories currently installed.) Preparing to replace grep 2.5.3~dfsg-6 (using .../grep_2.5.4-4_amd64.deb) ... Unpacking replacement grep ... Setting up grep (2.5.4-4) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 9778 files and directories currently installed.) Preparing to replace gzip 1.3.12-6 (using .../gzip_1.3.12-8_amd64.deb) ... install-info: warning: maintainer scripts should not call install-info anymore, install-info: warning: this is handled now by a dpkg trigger provided by the install-info: warning: install-info package; package gzip should be updated. Unpacking replacement gzip ... Setting up gzip (1.3.12-8) ... install-info: warning: maintainer scripts should not call install-info anymore, install-info: warning: this is handled now by a dpkg trigger provided by the install-info: warning: install-info package; package gzip should be updated. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 9778 files and directories currently installed.) Preparing to replace hostname 2.95 (using .../hostname_3.01_amd64.deb) ... Unpacking replacement hostname ... Setting up hostname (3.01) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 9784 files and directories currently installed.) Preparing to replace login 1:4.1.1-6 (using .../login_1%3a4.1.4.2-1_amd64.deb) ... Unpacking replacement login ... Setting up login (1:4.1.4.2-1) ... Installing new version of config file /etc/login.defs ... Installing new version of config file /etc/securetty ... Installing new version of config file /etc/pam.d/login ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 9783 files and directories currently installed.) Preparing to replace libselinux1 2.0.65-5 (using .../libselinux1_2.0.88-1_amd64.deb) ... Unpacking replacement libselinux1 ... Setting up libselinux1 (2.0.88-1) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 9783 files and directories currently installed.) Preparing to replace perl-modules 5.10.0-19lenny2 (using .../perl-modules_5.10.1-8_all.deb) ... Unpacking replacement perl-modules ... Selecting previously deselected package libdb4.7. Unpacking libdb4.7 (from .../libdb4.7_4.7.25-8_amd64.deb) ... Setting up libdb4.7 (4.7.25-8) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 9888 files and directories currently installed.) Preparing to replace bzip2 1.0.5-1 (using .../bzip2_1.0.5-3_amd64.deb) ... Unpacking replacement bzip2 ... Preparing to replace libbz2-1.0 1.0.5-1 (using .../libbz2-1.0_1.0.5-3_amd64.deb) ... Unpacking replacement libbz2-1.0 ... Setting up libbz2-1.0 (1.0.5-3) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 9888 files and directories currently installed.) Preparing to replace libgdbm3 1.8.3-3 (using .../libgdbm3_1.8.3-8_amd64.deb) ... Unpacking replacement libgdbm3 ... Preparing to replace zlib1g 1:1.2.3.3.dfsg-12 (using .../zlib1g_1%3a1.2.3.3.dfsg-15_amd64.deb) ... Unpacking replacement zlib1g ... Setting up zlib1g (1:1.2.3.3.dfsg-15) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 9891 files and directories currently installed.) Preparing to replace perl 5.10.0-19lenny2 (using .../perl_5.10.1-8_amd64.deb) ... Unpacking replacement perl ... Preparing to replace perl-base 5.10.0-19lenny2 (using .../perl-base_5.10.1-8_amd64.deb) ... Unpacking replacement perl-base ... Setting up perl-base (5.10.1-8) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 9951 files and directories currently installed.) Preparing to replace liblocale-gettext-perl 1.05-4 (using .../liblocale-gettext-perl_1.05-6_amd64.deb) ... Unpacking replacement liblocale-gettext-perl ... Setting up liblocale-gettext-perl (1.05-6) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 9951 files and directories currently installed.) Preparing to replace libtext-iconv-perl 1.7-1+b1 (using .../libtext-iconv-perl_1.7-2_amd64.deb) ... Unpacking replacement libtext-iconv-perl ... Setting up libtext-iconv-perl (1.7-2) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 9952 files and directories currently installed.) Preparing to replace libtext-charwidth-perl 0.04-5+b1 (using .../libtext-charwidth-perl_0.04-6_amd64.deb) ... Unpacking replacement libtext-charwidth-perl ... Setting up libtext-charwidth-perl (0.04-6) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 9952 files and directories currently installed.) Preparing to replace libtext-wrapi18n-perl 0.06-6 (using .../libtext-wrapi18n-perl_0.06-7_all.deb) ... Unpacking replacement libtext-wrapi18n-perl ... Setting up libtext-wrapi18n-perl (0.06-7) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 9952 files and directories currently installed.) Preparing to replace debconf-i18n 1.5.24 (using .../debconf-i18n_1.5.28_all.deb) ... Unpacking replacement debconf-i18n ... Setting up debconf-i18n (1.5.28) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 9956 files and directories currently installed.) Preparing to replace debconf 1.5.24 (using .../debconf_1.5.28_all.deb) ... Unpacking replacement debconf ... Setting up debconf (1.5.28) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 9942 files and directories currently installed.) Preparing to replace libpam0g 1.0.1-5+lenny1 (using .../libpam0g_1.1.0-4_amd64.deb) ... Unpacking replacement libpam0g ... Setting up libpam0g (1.1.0-4) ... Checking for services that may need to be restarted...Checking init scripts... Nothing to restart. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 9942 files and directories currently installed.) Preparing to replace libpam-modules 1.0.1-5+lenny1 (using .../libpam-modules_1.1.0-4_amd64.deb) ... Unpacking replacement libpam-modules ... Setting up libpam-modules (1.1.0-4) ... Installing new version of config file /etc/security/limits.conf ... Installing new version of config file /etc/security/namespace.init ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 9947 files and directories currently installed.) Preparing to replace passwd 1:4.1.1-6 (using .../passwd_1%3a4.1.4.2-1_amd64.deb) ... Unpacking replacement passwd ... Setting up passwd (1:4.1.4.2-1) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 9941 files and directories currently installed.) Preparing to replace libuuid1 1.41.3-1 (using .../libuuid1_2.16.1-4_amd64.deb) ... Unpacking replacement libuuid1 ... Setting up libuuid1 (2.16.1-4) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 9941 files and directories currently installed.) Preparing to replace libblkid1 1.41.3-1 (using .../libblkid1_2.16.1-4_amd64.deb) ... Unpacking replacement libblkid1 ... Setting up libblkid1 (2.16.1-4) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 9942 files and directories currently installed.) Preparing to replace mount 2.13.1.1-1 (using .../mount_2.16.1-4_amd64.deb) ... Unpacking replacement mount ... Setting up mount (2.16.1-4) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 9942 files and directories currently installed.) Preparing to replace ncurses-bin 5.7+20081213-1 (using .../ncurses-bin_5.7+20090803-2_amd64.deb) ... Unpacking replacement ncurses-bin ... Setting up ncurses-bin (5.7+20090803-2) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 9942 files and directories currently installed.) Preparing to replace sed 4.1.5-6 (using .../archives/sed_4.2.1-4_amd64.deb) ... Unpacking replacement sed ... Setting up sed (4.2.1-4) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 9945 files and directories currently installed.) Preparing to replace sysvinit-utils 2.86.ds1-61 (using .../sysvinit-utils_2.87dsf-8_amd64.deb) ... Unpacking replacement sysvinit-utils ... Replacing files in old package sysvinit ... Setting up sysvinit-utils (2.87dsf-8) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 9949 files and directories currently installed.) Preparing to replace libsepol1 2.0.30-2 (using .../libsepol1_2.0.40-2_amd64.deb) ... Unpacking replacement libsepol1 ... Setting up libsepol1 (2.0.40-2) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 9949 files and directories currently installed.) Preparing to replace sysvinit 2.86.ds1-61 (using .../sysvinit_2.87dsf-8_amd64.deb) ... Unpacking replacement sysvinit ... Setting up sysvinit (2.87dsf-8) ... sysvinit: creating /dev/initctl init: timeout opening/writing control channel /dev/initctl (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 9950 files and directories currently installed.) Preparing to replace tar 1.20-1 (using .../archives/tar_1.22-2_amd64.deb) ... Unpacking replacement tar ... Setting up tar (1.22-2) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 9950 files and directories currently installed.) Preparing to replace lsb-base 3.2-20 (using .../lsb-base_3.2-23_all.deb) ... Unpacking replacement lsb-base ... Setting up lsb-base (3.2-23) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 9950 files and directories currently installed.) Preparing to replace tzdata 2009l-0lenny1 (using .../tzdata_2009s-1_all.deb) ... Unpacking replacement tzdata ... Setting up tzdata (2009s-1) ... Current default time zone: 'Etc/UTC' Local time is now: XXXX Universal Time is now: XXXX Run 'dpkg-reconfigure tzdata' if you wish to change it. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 9956 files and directories currently installed.) Preparing to replace initscripts 2.86.ds1-61 (using .../initscripts_2.87dsf-8_amd64.deb) ... Unpacking replacement initscripts ... Setting up initscripts (2.87dsf-8) ... Installing new version of config file /etc/init.d/bootlogd ... Installing new version of config file /etc/init.d/stop-bootlogd ... Installing new version of config file /etc/init.d/stop-bootlogd-single ... Installing new version of config file /etc/init.d/bootmisc.sh ... Installing new version of config file /etc/init.d/checkfs.sh ... Installing new version of config file /etc/init.d/checkroot.sh ... Installing new version of config file /etc/init.d/hostname.sh ... Installing new version of config file /etc/init.d/killprocs ... Installing new version of config file /etc/init.d/mountnfs-bootclean.sh ... Installing new version of config file /etc/init.d/mountoverflowtmp ... Installing new version of config file /etc/init.d/mountdevsubfs.sh ... Installing new version of config file /etc/init.d/mountkernfs.sh ... Installing new version of config file /etc/init.d/mtab.sh ... Installing new version of config file /etc/init.d/rc.local ... Installing new version of config file /etc/init.d/rmnologin ... Installing new version of config file /etc/init.d/umountfs ... Installing new version of config file /etc/init.d/umountnfs.sh ... Installing new version of config file /etc/init.d/urandom ... Installing new version of config file /etc/network/if-up.d/mountnfs ... Selecting previously deselected package insserv. dpkg: considering deconfiguration of sysv-rc, which would be broken by installation of insserv ... dpkg: yes, will deconfigure sysv-rc (broken by insserv). (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 9958 files and directories currently installed.) Unpacking insserv (from .../insserv_1.12.0-14_amd64.deb) ... De-configuring sysv-rc ... Setting up insserv (1.12.0-14) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 9987 files and directories currently installed.) Preparing to replace sysv-rc 2.86.ds1-61 (using .../sysv-rc_2.87dsf-8_all.deb) ... Unpacking replacement sysv-rc ... Setting up sysv-rc (2.87dsf-8) ... info: Checking if it is safe to convert to dependency based boot. info: Reordering boot system, log to /var/lib/insserv/run-20091129T1026.log success: Enabled dependency based boot system. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 9987 files and directories currently installed.) Preparing to replace util-linux 2.13.1.1-1 (using .../util-linux_2.16.1-4_amd64.deb) ... install-info: warning: maintainer scripts should not call install-info anymore, install-info: warning: this is handled now by a dpkg trigger provided by the install-info: warning: install-info package; package util-linux should be updated. Unpacking replacement util-linux ... Setting up util-linux (2.16.1-4) ... Installing new version of config file /etc/init.d/hwclockfirst.sh ... Installing new version of config file /etc/init.d/hwclock.sh ... Selecting previously deselected package dash. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 10006 files and directories currently installed.) Unpacking dash (from .../dash_0.5.5.1-3_amd64.deb) ... Adding `diversion of /bin/sh to /bin/sh.distrib by dash' Adding `diversion of /usr/share/man/man1/sh.1.gz to /usr/share/man/man1/sh.distrib.1.gz by dash' Setting up dash (0.5.5.1-3) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 10017 files and directories currently installed.) Preparing to replace diff 2.8.1-12 (using .../diff_1%3a2.8.1-18_all.deb) ... Unpacking replacement diff ... Setting up diff (1:2.8.1-18) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 10015 files and directories currently installed.) Preparing to replace mktemp 1.5-9 (using .../archives/mktemp_7.4-2_all.deb) ... Unpacking replacement mktemp ... Setting up mktemp (7.4-2) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 10015 files and directories currently installed.) Preparing to replace bsdutils 1:2.13.1.1-1 (using .../bsdutils_1%3a2.16.1-4_amd64.deb) ... Unpacking replacement bsdutils ... Setting up bsdutils (1:2.16.1-4) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 10015 files and directories currently installed.) Preparing to replace libncurses5 5.7+20081213-1 (using .../libncurses5_5.7+20090803-2_amd64.deb) ... Unpacking replacement libncurses5 ... Setting up libncurses5 (5.7+20090803-2) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 10015 files and directories currently installed.) Preparing to replace ncurses-base 5.7+20081213-1 (using .../ncurses-base_5.7+20090803-2_all.deb) ... Unpacking replacement ncurses-base ... Setting up ncurses-base (5.7+20090803-2) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 10015 files and directories currently installed.) Preparing to replace mawk 1.3.3-11.1 (using .../mawk_1.3.3-15_amd64.deb) ... Unpacking replacement mawk ... Preparing to replace libstdc++6 4.3.2-1.1 (using .../libstdc++6_4.4.2-3_amd64.deb) ... Unpacking replacement libstdc++6 ... Setting up libstdc++6 (4.4.2-3) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 10015 files and directories currently installed.) Preparing to replace libxapian15 1.0.7-4 (using .../libxapian15_1.0.16-3_amd64.deb) ... Unpacking replacement libxapian15 ... Preparing to replace libept0 0.5.22 (using .../libept0_0.5.29_amd64.deb) ... Unpacking replacement libept0 ... Preparing to replace libncursesw5 5.7+20081213-1 (using .../libncursesw5_5.7+20090803-2_amd64.deb) ... Unpacking replacement libncursesw5 ... Preparing to replace libcwidget3 0.5.12-4 (using .../libcwidget3_0.5.13-1_amd64.deb) ... Unpacking replacement libcwidget3 ... Preparing to replace aptitude 0.4.11.11-1~lenny1 (using .../aptitude_0.4.11.11-1+b2_amd64.deb) ... Unpacking replacement aptitude ... Preparing to replace apt 0.7.20.2+lenny1 (using .../apt_0.7.23.1_amd64.deb) ... Unpacking replacement apt ... Setting up apt (0.7.23.1) ... Installing new version of config file /etc/cron.daily/apt ... gpg: key 6070D3A1: "Debian Archive Automatic Signing Key (4.0/etch) " not changed gpg: key ADB11277: "Etch Stable Release Key " not changed gpg: key BBE55AB3: "Debian-Volatile Archive Automatic Signing Key (4.0/etch)" not changed gpg: key F42584E6: "Lenny Stable Release Key " not changed gpg: key 55BE302B: "Debian Archive Automatic Signing Key (5.0/lenny) " not changed gpg: key 6D849617: "Debian-Volatile Archive Automatic Signing Key (5.0/lenny)" not changed gpg: Total number processed: 6 gpg: unchanged: 6 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 10017 files and directories currently installed.) Preparing to replace readline-common 5.2-3.1 (using .../readline-common_6.0-5_all.deb) ... install-info: warning: maintainer scripts should not call install-info anymore, install-info: warning: this is handled now by a dpkg trigger provided by the install-info: warning: install-info package; package readline-common should be updated. Unpacking replacement readline-common ... Setting up readline-common (6.0-5) ... Selecting previously deselected package libreadline6. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 10017 files and directories currently installed.) Unpacking libreadline6 (from .../libreadline6_6.0-5_amd64.deb) ... Setting up libreadline6 (6.0-5) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 10030 files and directories currently installed.) Preparing to replace gpgv 1.4.9-3+lenny1 (using .../gpgv_1.4.10-2_amd64.deb) ... Unpacking replacement gpgv ... Setting up gpgv (1.4.10-2) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 10031 files and directories currently installed.) Preparing to replace gnupg 1.4.9-3+lenny1 (using .../gnupg_1.4.10-2_amd64.deb) ... Unpacking replacement gnupg ... Setting up gnupg (1.4.10-2) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 10039 files and directories currently installed.) Preparing to replace libattr1 1:2.4.43-2 (using .../libattr1_1%3a2.4.44-1_amd64.deb) ... Unpacking replacement libattr1 ... Setting up libattr1 (1:2.4.44-1) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 10039 files and directories currently installed.) Preparing to replace libacl1 2.2.47-2 (using .../libacl1_2.2.48-1_amd64.deb) ... Unpacking replacement libacl1 ... Setting up libacl1 (2.2.48-1) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 10039 files and directories currently installed.) Preparing to replace libcomerr2 1.41.3-1 (using .../libcomerr2_1.41.9-1_amd64.deb) ... Unpacking replacement libcomerr2 ... Setting up libcomerr2 (1.41.9-1) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 10039 files and directories currently installed.) Preparing to replace libpam-runtime 1.0.1-5+lenny1 (using .../libpam-runtime_1.1.0-4_all.deb) ... Unpacking replacement libpam-runtime ... Setting up libpam-runtime (1.1.0-4) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 10056 files and directories currently installed.) Preparing to replace libslang2 2.1.3-3 (using .../libslang2_2.2.1-1_amd64.deb) ... Unpacking replacement libslang2 ... Setting up libslang2 (2.2.1-1) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 10056 files and directories currently installed.) Preparing to replace libss2 1.41.3-1 (using .../libss2_1.41.9-1_amd64.deb) ... Unpacking replacement libss2 ... Setting up libss2 (1.41.9-1) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 10056 files and directories currently installed.) Preparing to replace cpio 2.9-13 (using .../archives/cpio_2.10-1_amd64.deb) ... Unpacking replacement cpio ... Preparing to replace libreadline5 5.2-3.1 (using .../libreadline5_5.2-7_amd64.deb) ... Unpacking replacement libreadline5 ... Preparing to replace libgomp1 4.3.2-1.1 (using .../libgomp1_4.4.2-3_amd64.deb) ... Unpacking replacement libgomp1 ... Preparing to replace libgmp3c2 2:4.2.2+dfsg-3 (using .../libgmp3c2_2%3a4.3.1+dfsg-3_amd64.deb) ... Unpacking replacement libgmp3c2 ... Preparing to replace libmpfr1ldbl 2.3.1.dfsg.1-2 (using .../libmpfr1ldbl_2.4.1-2_amd64.deb) ... Unpacking replacement libmpfr1ldbl ... Preparing to replace libstdc++6-4.3-dev 4.3.2-1.1 (using .../libstdc++6-4.3-dev_4.3.4-6_amd64.deb) ... Unpacking replacement libstdc++6-4.3-dev ... Preparing to replace g++-4.3 4.3.2-1.1 (using .../g++-4.3_4.3.4-6_amd64.deb) ... Unpacking replacement g++-4.3 ... Preparing to replace gcc-4.3 4.3.2-1.1 (using .../gcc-4.3_4.3.4-6_amd64.deb) ... Unpacking replacement gcc-4.3 ... Preparing to replace cpp-4.3 4.3.2-1.1 (using .../cpp-4.3_4.3.4-6_amd64.deb) ... Unpacking replacement cpp-4.3 ... Preparing to replace binutils 2.18.1~cvs20080103-7 (using .../binutils_2.20-4_amd64.deb) ... Unpacking replacement binutils ... Preparing to replace gcc-4.3-base 4.3.2-1.1 (using .../gcc-4.3-base_4.3.4-6_amd64.deb) ... Unpacking replacement gcc-4.3-base ... Preparing to replace libdb4.6 4.6.21-11 (using .../libdb4.6_4.6.21-14_amd64.deb) ... Unpacking replacement libdb4.6 ... Preparing to replace cpp 4:4.3.2-2 (using .../cpp_4%3a4.3.3-9+nmu1_amd64.deb) ... Unpacking replacement cpp ... Selecting previously deselected package liblzma0. Unpacking liblzma0 (from .../liblzma0_4.999.9beta+20091004-1_amd64.deb) ... Selecting previously deselected package xz-utils. Unpacking xz-utils (from .../xz-utils_4.999.9beta+20091004-1_amd64.deb) ... Preparing to replace make 3.81-5 (using .../archives/make_3.81-7_amd64.deb) ... Unpacking replacement make ... Preparing to replace libtimedate-perl 1.1600-9 (using .../libtimedate-perl_1.1900-1_all.deb) ... Unpacking replacement libtimedate-perl ... Preparing to replace dpkg-dev 1.14.25 (using .../dpkg-dev_1.15.5.2_all.deb) ... Unpacking replacement dpkg-dev ... Preparing to replace fakeroot 1.11 (using .../fakeroot_1.14.4-1_amd64.deb) ... Unpacking replacement fakeroot ... Preparing to replace gcc 4:4.3.2-2 (using .../gcc_4%3a4.3.3-9+nmu1_amd64.deb) ... Removing old gcc doc directory. Unpacking replacement gcc ... Preparing to replace g++ 4:4.3.2-2 (using .../g++_4%3a4.3.3-9+nmu1_amd64.deb) ... Unpacking replacement g++ ... Setting up libc-dev-bin (2.10.1-7) ... Setting up linux-libc-dev (2.6.30-8) ... Setting up libc6-dev (2.10.1-7) ... Setting up libgdbm3 (1.8.3-8) ... Setting up bzip2 (1.0.5-3) ... Setting up mawk (1.3.3-15) ... Setting up libxapian15 (1.0.16-3) ... Setting up libept0 (0.5.29) ... Setting up libncursesw5 (5.7+20090803-2) ... Setting up libcwidget3 (0.5.13-1) ... Setting up aptitude (0.4.11.11-1+b2) ... Setting up cpio (2.10-1) ... install-info: warning: maintainer scripts should not call install-info anymore, install-info: warning: this is handled now by a dpkg trigger provided by the install-info: warning: install-info package; package cpio should be updated. Setting up libreadline5 (5.2-7) ... Setting up libgomp1 (4.4.2-3) ... Setting up libgmp3c2 (2:4.3.1+dfsg-3) ... Setting up libmpfr1ldbl (2.4.1-2) ... Setting up gcc-4.3-base (4.3.4-6) ... Setting up cpp-4.3 (4.3.4-6) ... Setting up binutils (2.20-4) ... Setting up gcc-4.3 (4.3.4-6) ... Setting up libdb4.6 (4.6.21-14) ... Setting up cpp (4:4.3.3-9+nmu1) ... Setting up liblzma0 (4.999.9beta+20091004-1) ... Setting up xz-utils (4.999.9beta+20091004-1) ... Setting up make (3.81-7) ... Setting up fakeroot (1.14.4-1) ... Setting up gcc (4:4.3.3-9+nmu1) ... Setting up perl-modules (5.10.1-8) ... Setting up g++-4.3 (4.3.4-6) ... Setting up libstdc++6-4.3-dev (4.3.4-6) ... Setting up g++ (4:4.3.3-9+nmu1) ... Setting up perl (5.10.1-8) ... Setting up libtimedate-perl (1.1900-1) ... Setting up dpkg-dev (1.15.5.2) ... Reading package lists... Building dependency tree... Reading state information... 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. Reading package lists... Building dependency tree... Reading state information... build-essential is already the newest version. dpkg-dev is already the newest version. apt is already the newest version. apt set to manually installed. aptitude is already the newest version. 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. I: user script /var/cache/pbuilder/build//NUM/tmp/hooks/E50-initscripts-2.86.ds1-7.workaround.sh starting umount: /sys: not mounted umount: /run: not found umount: /proc/bus/usb: not mounted umount: /dev/shm: not mounted umount: /lib/init/rw: not mounted cat: /var/run/inetd.pid: No such file or directory kill: 20: Usage: kill [-s sigspec | -signum | -sigspec] [pid | job]... or kill -l [exitstatus] I: user script /var/cache/pbuilder/build//NUM/tmp/hooks/E50-initscripts-2.86.ds1-7.workaround.sh finished I: unmounting dev/pts filesystem I: unmounting proc filesystem I: creating base tarball [/TESTDIR/testimage] I: cleaning the build env I: removing directory /var/cache/pbuilder/build//NUM and its subdirectories pbuilder-0.215ubuntu7/testsuite/cdebootstrap/pdebuild-normal-squeeze.log0000664000000000000000000007776512312041170023550 0ustar dpkg-buildpackage: set CFLAGS to default value: -g -O2 dpkg-buildpackage: set CPPFLAGS to default value: dpkg-buildpackage: set LDFLAGS to default value: dpkg-buildpackage: set FFLAGS to default value: -g -O2 dpkg-buildpackage: set CXXFLAGS to default value: -g -O2 dpkg-buildpackage: source package dsh dpkg-buildpackage: source version 0.25.10-1 dpkg-buildpackage: source changed by Junichi Uekawa fakeroot debian/rules clean dh_testdir dh_testroot rm -f build-stamp configure-stamp /usr/bin/make clean make[1]: Entering directory `/TESTDIR/dir2/dsh-0.25.10' make[1]: *** No rule to make target `clean'. Stop. make[1]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10' make: [clean] Error 2 (ignored) /usr/bin/make distclean make[1]: Entering directory `/TESTDIR/dir2/dsh-0.25.10' make[1]: *** No rule to make target `distclean'. Stop. make[1]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10' make: [clean] Error 2 (ignored) dh_clean dpkg-source -b dsh-0.25.10 dpkg-source: info: using source format `1.0' dpkg-source: info: building dsh using existing dsh_0.25.10.orig.tar.gz dpkg-source: info: building dsh in dsh_0.25.10-1.diff.gz dpkg-source: warning: file dsh-0.25.10/dcp.sh has no final newline (either original or modified version) dpkg-source: warning: file dsh-0.25.10/debian/compat has no final newline (either original or modified version) dpkg-source: info: building dsh in dsh_0.25.10-1.dsc dpkg-genchanges -S >../dsh_0.25.10-1_source.changes dpkg-genchanges: including full source code in upload dpkg-buildpackage: source only upload (original source is included) W: /home/dancer/.pbuilderrc does not exist I: using fakeroot in build. I: Current time: Sun Nov 29 19:33:34 JST 2009 I: pbuilder-time-stamp: 1259490814 I: Building the build Environment I: extracting base tarball [/TESTDIR/testimage] I: creating local configuration I: copying local configuration I: mounting /proc filesystem I: mounting /dev/pts filesystem I: policy-rc.d already exists I: Installing the build-deps -> Attempting to satisfy build-dependencies -> Creating pbuilder-satisfydepends-dummy package Package: pbuilder-satisfydepends-dummy Version: 0.invalid.0 Architecture: amd64 Maintainer: Debian Pbuilder Team Description: Dummy package to satisfy dependencies with aptitude - created by pbuilder This package was created automatically by pbuilder and should Depends: debhelper (>> 3.0.0), libdshconfig1-dev (>= 0.20.11-1), po4a dpkg-deb: building package `pbuilder-satisfydepends-dummy' in `/tmp/satisfydepends-aptitude/pbuilder-satisfydepends-dummy.deb'. Reading package lists... Building dependency tree... Reading state information... aptitude is already the newest version. 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. Selecting previously deselected package pbuilder-satisfydepends-dummy. (Reading database ... 10105 files and directories currently installed.) Unpacking pbuilder-satisfydepends-dummy (from .../pbuilder-satisfydepends-dummy.deb) ... dpkg: dependency problems prevent configuration of pbuilder-satisfydepends-dummy: pbuilder-satisfydepends-dummy depends on debhelper (>> 3.0.0); however: Package debhelper is not installed. pbuilder-satisfydepends-dummy depends on libdshconfig1-dev (>= 0.20.11-1); however: Package libdshconfig1-dev is not installed. pbuilder-satisfydepends-dummy depends on po4a; however: Package po4a is not installed. dpkg: error processing pbuilder-satisfydepends-dummy (--install): dependency problems - leaving unconfigured Errors were encountered while processing: pbuilder-satisfydepends-dummy Reading package lists... Building dependency tree... Reading state information... Initializing package states... Writing extended state information... The following NEW packages will be installed: bsdmainutils{a} debhelper{a} file{a} gettext{a} gettext-base{a} groff-base{a} html2text{a} intltool-debian{a} libcroco3{a} libdshconfig1{a} libdshconfig1-dev{a} libglib2.0-0{a} libmagic1{a} libpcre3{a} libsgmls-perl{a} libsp1c2{a} libxml2{a} man-db{a} po-debconf{a} po4a{a} sp{a} The following partially installed packages will be configured: pbuilder-satisfydepends-dummy 0 packages upgraded, 21 newly installed, 0 to remove and 0 not upgraded. Need to get 11.5MB of archives. After unpacking 34.5MB will be used. Writing extended state information... Get:1 http://localhost squeeze/main libmagic1 5.03-3 [389kB] Get:2 http://localhost squeeze/main file 5.03-3 [46.9kB] Get:3 http://localhost squeeze/main html2text 1.3.2a-14 [103kB] Get:4 http://localhost squeeze/main libpcre3 7.8-3 [215kB] Get:5 http://localhost squeeze/main libglib2.0-0 2.22.2-2 [984kB] Get:6 http://localhost squeeze/main libxml2 2.7.6.dfsg-1 [876kB] Get:7 http://localhost squeeze/main libcroco3 0.6.2-1 [125kB] Get:8 http://localhost squeeze/main gettext-base 0.17-8 [133kB] Get:9 http://localhost squeeze/main gettext 0.17-8 [2503kB] Get:10 http://localhost squeeze/main intltool-debian 0.35.0+20060710.1 [30.8kB] Get:11 http://localhost squeeze/main po-debconf 1.0.16 [224kB] Get:12 http://localhost squeeze/main groff-base 1.20.1-6 [1156kB] Get:13 http://localhost squeeze/main bsdmainutils 8.0.1 [197kB] Get:14 http://localhost squeeze/main man-db 2.5.6-4 [1477kB] Get:15 http://localhost squeeze/main debhelper 7.4.3 [454kB] Get:16 http://localhost squeeze/main libdshconfig1 0.20.13-1 [11.0kB] Get:17 http://localhost squeeze/main libdshconfig1-dev 0.20.13-1 [25.4kB] Get:18 http://localhost squeeze/main libsgmls-perl 1.03ii-32 [27.8kB] Get:19 http://localhost squeeze/main libsp1c2 1.3.4-1.2.1-47 [1386kB] Get:20 http://localhost squeeze/main sp 1.3.4-1.2.1-47 [182kB] Get:21 http://localhost squeeze/main po4a 0.36.6-1 [946kB] debconf: delaying package configuration, since apt-utils is not installed Fetched XXXB in Xs (XXXXXB/s) Selecting previously deselected package libmagic1. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 10105 files and directories currently installed.) Unpacking libmagic1 (from .../libmagic1_5.03-3_amd64.deb) ... Selecting previously deselected package file. Unpacking file (from .../archives/file_5.03-3_amd64.deb) ... Selecting previously deselected package html2text. Unpacking html2text (from .../html2text_1.3.2a-14_amd64.deb) ... Selecting previously deselected package libpcre3. Unpacking libpcre3 (from .../libpcre3_7.8-3_amd64.deb) ... Selecting previously deselected package libglib2.0-0. Unpacking libglib2.0-0 (from .../libglib2.0-0_2.22.2-2_amd64.deb) ... Selecting previously deselected package libxml2. Unpacking libxml2 (from .../libxml2_2.7.6.dfsg-1_amd64.deb) ... Selecting previously deselected package libcroco3. Unpacking libcroco3 (from .../libcroco3_0.6.2-1_amd64.deb) ... Selecting previously deselected package gettext-base. Unpacking gettext-base (from .../gettext-base_0.17-8_amd64.deb) ... Selecting previously deselected package gettext. Unpacking gettext (from .../gettext_0.17-8_amd64.deb) ... Selecting previously deselected package intltool-debian. Unpacking intltool-debian (from .../intltool-debian_0.35.0+20060710.1_all.deb) ... Selecting previously deselected package po-debconf. Unpacking po-debconf (from .../po-debconf_1.0.16_all.deb) ... Selecting previously deselected package groff-base. Unpacking groff-base (from .../groff-base_1.20.1-6_amd64.deb) ... Selecting previously deselected package bsdmainutils. Unpacking bsdmainutils (from .../bsdmainutils_8.0.1_amd64.deb) ... Selecting previously deselected package man-db. Unpacking man-db (from .../man-db_2.5.6-4_amd64.deb) ... Selecting previously deselected package debhelper. Unpacking debhelper (from .../debhelper_7.4.3_all.deb) ... Selecting previously deselected package libdshconfig1. Unpacking libdshconfig1 (from .../libdshconfig1_0.20.13-1_amd64.deb) ... Selecting previously deselected package libdshconfig1-dev. Unpacking libdshconfig1-dev (from .../libdshconfig1-dev_0.20.13-1_amd64.deb) ... Selecting previously deselected package libsgmls-perl. Unpacking libsgmls-perl (from .../libsgmls-perl_1.03ii-32_all.deb) ... Selecting previously deselected package libsp1c2. Unpacking libsp1c2 (from .../libsp1c2_1.3.4-1.2.1-47_amd64.deb) ... Selecting previously deselected package sp. Unpacking sp (from .../sp_1.3.4-1.2.1-47_amd64.deb) ... Selecting previously deselected package po4a. Unpacking po4a (from .../archives/po4a_0.36.6-1_all.deb) ... Setting up libmagic1 (5.03-3) ... Setting up file (5.03-3) ... Setting up html2text (1.3.2a-14) ... Setting up libpcre3 (7.8-3) ... Setting up libglib2.0-0 (2.22.2-2) ... Setting up libxml2 (2.7.6.dfsg-1) ... Setting up libcroco3 (0.6.2-1) ... Setting up gettext-base (0.17-8) ... Setting up gettext (0.17-8) ... Setting up intltool-debian (0.35.0+20060710.1) ... Setting up po-debconf (1.0.16) ... Setting up groff-base (1.20.1-6) ... Setting up bsdmainutils (8.0.1) ... update-alternatives: using /usr/bin/bsd-write to provide /usr/bin/write (write) in auto mode. Setting up man-db (2.5.6-4) ... Building database of manual pages ... Setting up debhelper (7.4.3) ... Setting up libdshconfig1 (0.20.13-1) ... Setting up libdshconfig1-dev (0.20.13-1) ... Setting up libsgmls-perl (1.03ii-32) ... Setting up libsp1c2 (1.3.4-1.2.1-47) ... Setting up sp (1.3.4-1.2.1-47) ... Setting up po4a (0.36.6-1) ... Setting up pbuilder-satisfydepends-dummy (0.invalid.0) ... Reading package lists... Building dependency tree... Reading state information... Reading extended state information... Initializing package states... Writing extended state information... -> Finished parsing the build-deps Reading package lists... Building dependency tree... Reading state information... aptitude is already the newest version. fakeroot is already the newest version. 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. I: Copying source file I: copying [../dsh_0.25.10-1.dsc] I: copying [../dsh_0.25.10.orig.tar.gz] I: copying [../dsh_0.25.10-1.diff.gz] I: Extracting source dpkg-source: warning: extracting unsigned source package (dsh_0.25.10-1.dsc) dpkg-source: info: extracting dsh in dsh-0.25.10 dpkg-source: info: unpacking dsh_0.25.10.orig.tar.gz dpkg-source: info: applying dsh_0.25.10-1.diff.gz dpkg-source: info: upstream files that have been modified: dsh-0.25.10/.cvsignore dsh-0.25.10/CVS/Entries dsh-0.25.10/CVS/Repository dsh-0.25.10/CVS/Root dsh-0.25.10/ChangeLog.OLD dsh-0.25.10/dcp.sh dsh-0.25.10/drshd.c dsh-0.25.10/dsh.1.ja.po dsh-0.25.10/m4/.cvsignore dsh-0.25.10/m4/CVS/Entries dsh-0.25.10/m4/CVS/Repository dsh-0.25.10/m4/CVS/Root dsh-0.25.10/po/.cvsignore dsh-0.25.10/po/CVS/Entries dsh-0.25.10/po/CVS/Repository dsh-0.25.10/po/CVS/Root dsh-0.25.10/po/insert-header.sin dsh-0.25.10/tests/.cvsignore dsh-0.25.10/tests/CVS/Entries dsh-0.25.10/tests/CVS/Repository dsh-0.25.10/tests/CVS/Root I: Building the package dpkg-buildpackage: set CFLAGS to default value: -g -O2 dpkg-buildpackage: set CPPFLAGS to default value: dpkg-buildpackage: set LDFLAGS to default value: dpkg-buildpackage: set FFLAGS to default value: -g -O2 dpkg-buildpackage: set CXXFLAGS to default value: -g -O2 dpkg-buildpackage: source package dsh dpkg-buildpackage: source version 0.25.10-1 dpkg-buildpackage: source changed by Junichi Uekawa dpkg-buildpackage: host architecture amd64 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.10' make[1]: *** No rule to make target `clean'. Stop. make[1]: Leaving directory `/tmp/buildd/dsh-0.25.10' make: [clean] Error 2 (ignored) /usr/bin/make distclean make[1]: Entering directory `/tmp/buildd/dsh-0.25.10' make[1]: *** No rule to make target `distclean'. Stop. make[1]: Leaving directory `/tmp/buildd/dsh-0.25.10' make: [clean] Error 2 (ignored) dh_clean dpkg-source -b dsh-0.25.10 dpkg-source: info: using source format `1.0' dpkg-source: info: building dsh using existing dsh_0.25.10.orig.tar.gz dpkg-source: info: building dsh in dsh_0.25.10-1.diff.gz dpkg-source: warning: file dsh-0.25.10/dcp.sh has no final newline (either original or modified version) dpkg-source: warning: file dsh-0.25.10/debian/compat has no final newline (either original or modified version) dpkg-source: warning: the diff modifies the following upstream files: .cvsignore CVS/Entries CVS/Repository CVS/Root ChangeLog.OLD dcp.sh drshd.c dsh.1.ja.po m4/.cvsignore m4/CVS/Entries m4/CVS/Repository m4/CVS/Root po/.cvsignore po/CVS/Entries po/CVS/Repository po/CVS/Root po/insert-header.sin tests/.cvsignore tests/CVS/Entries tests/CVS/Repository tests/CVS/Root dpkg-source: info: use the '3.0 (quilt)' format to have separate and documented changes to upstream files, see dpkg-source(1) dpkg-source: info: building dsh in dsh_0.25.10-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 ISO C89... none needed checking dependency style of gcc... gcc3 checking for strerror in -lcposix... no checking for gcc... (cached) gcc checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) 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 ISO C89... (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 grep that handles long lines and -e... /bin/grep checking for egrep... /bin/grep -E checking for ANSI C header files... yes checking for sys/wait.h that is POSIX.1 compatible... yes checking build system type... x86_64-unknown-linux-gnu checking host system type... x86_64-unknown-linux-gnu checking for a sed that does not truncate output... /bin/sed checking for ld used by gcc... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for /usr/bin/ld option to reload object files... -r checking for BSD-compatible nm... /usr/bin/nm -B checking whether ln -s works... yes checking how to recognize dependent libraries... pass_all checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking dlfcn.h usability... yes checking dlfcn.h presence... yes checking for dlfcn.h... yes checking for g++... g++ checking whether we are using the GNU C++ compiler... yes checking whether g++ accepts -g... yes checking dependency style of g++... gcc3 checking how to run the C++ preprocessor... g++ -E checking for g77... no checking for xlf... no checking for f77... no checking for frt... no checking for pgf77... no checking for cf77... no checking for fort77... no checking for fl32... no checking for af77... no checking for xlf90... no checking for f90... no checking for pgf90... no checking for pghpf... no checking for epcf90... no checking for gfortran... no checking for g95... no checking for xlf95... no checking for f95... no checking for fort... no checking for ifort... no checking for ifc... no checking for efc... no checking for pgf95... no checking for lf95... no checking for ftn... no checking whether we are using the GNU Fortran 77 compiler... no checking whether accepts -g... no checking the maximum length of command line arguments... 3458764513820540925 checking command to parse /usr/bin/nm -B output from gcc object... ok checking for objdir... .libs checking for ar... ar checking for ranlib... ranlib checking for strip... strip checking if gcc supports -fno-rtti -fno-exceptions... no checking for gcc option to produce PIC... -fPIC checking if gcc PIC flag -fPIC works... yes checking if gcc static flag -static works... yes checking if gcc supports -c -o file.o... yes checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) 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 -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking for g++ option to produce PIC... -fPIC checking if g++ PIC flag -fPIC works... yes checking if g++ static flag -static works... yes checking if g++ supports -c -o file.o... yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate appending configuration tag "F77" to libtool checking 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 -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) 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: WARNING: po/Makefile.in.in seems to ignore the --datarootdir setting 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.10' /usr/bin/make all-recursive make[2]: Entering directory `/tmp/buildd/dsh-0.25.10' Making all in m4 make[3]: Entering directory `/tmp/buildd/dsh-0.25.10/m4' make[3]: Nothing to be done for `all'. make[3]: Leaving directory `/tmp/buildd/dsh-0.25.10/m4' Making all in po make[3]: Entering directory `/tmp/buildd/dsh-0.25.10/po' make[3]: Nothing to be done for `all'. make[3]: Leaving directory `/tmp/buildd/dsh-0.25.10/po' make[3]: Entering directory `/tmp/buildd/dsh-0.25.10' 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/bash ./libtool --tag=CC --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.10' make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10' make[1]: Leaving directory `/tmp/buildd/dsh-0.25.10' /usr/bin/make check make[1]: Entering directory `/tmp/buildd/dsh-0.25.10' Making check in m4 make[2]: Entering directory `/tmp/buildd/dsh-0.25.10/m4' make[2]: Nothing to be done for `check'. make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10/m4' Making check in po make[2]: Entering directory `/tmp/buildd/dsh-0.25.10/po' make[2]: Nothing to be done for `check'. make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10/po' make[2]: Entering directory `/tmp/buildd/dsh-0.25.10' /usr/bin/make dsh make[3]: Entering directory `/tmp/buildd/dsh-0.25.10' make[3]: `dsh' is up to date. make[3]: Leaving directory `/tmp/buildd/dsh-0.25.10' /usr/bin/make check-TESTS make[3]: Entering directory `/tmp/buildd/dsh-0.25.10' PASS: tests/param-f.sh dsh: File ./tests/nonexistent.file could not be opened for read PASS: tests/param-f-fail.sh PASS: tests/param-f-with-space.sh PASS: tests/param-m.sh test to check that unknown parameter checking is right. ./dsh: unrecognized option '--unknown-parameter' ./dsh: invalid option -- 'u' PASS: tests/param-unknown.sh test1 test2 dsh: Process terminated (before write). PASS: tests/param-i.sh Check that cn4 option is working. PASS: tests/param-cn4.sh test to check that -b0 is rejected, and -b1 is accepted Buffer size needs to be greater than 1 Buffer size needs to be greater than 1 a b PASS: tests/param-b-0.sh dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call success dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call success success success success success a: dsh: Failed executing ./invalid-exec-file with llexec call b: dsh: Failed executing ./invalid-exec-file with llexec call c: dsh: Failed executing ./invalid-exec-file with llexec call d: dsh: Failed executing ./invalid-exec-file with llexec call success dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call success PASS: tests/param-r-invalid.sh 1: 1 2: 2 dsh: fork limit and wait shell cannot be specified at the same time PASS: tests/param-F-invalid.sh Sun Nov 29 10:34:36 UTC 2009 2: Using sleep as the remote shell 2: Show machine names on output 2: Adding machine 5,4,3,2,1 to list 2: Setting forklimit to 3 and wait_shell to 0 2: DUMPing parameters passed to llexec 2: [2] Using sleep as the remote shell Show machine names on output Adding machine 5,4,3,2,1 to list Setting forklimit to 3 and wait_shell to 0 DUMPing parameters passed to llexec [2] 3: Using sleep as the remote shell 3: Show machine names on output 3: Adding machine 5,4,3,2,1 to list 3: Setting forklimit to 3 and wait_shell to 0 3: DUMPing parameters passed to llexec 3: [3] Using sleep as the remote shell Show machine names on output Adding machine 5,4,3,2,1 to list Setting forklimit to 3 and wait_shell to 0 DUMPing parameters passed to llexec [3] 1: Using sleep as the remote shell 1: Show machine names on output 1: Adding machine 5,4,3,2,1 to list 1: Setting forklimit to 3 and wait_shell to 0 1: ... Waiting for process to end with waitpid 1: DUMPing parameters passed to llexec 1: [1] Using sleep as the remote shell Show machine names on output Adding machine 5,4,3,2,1 to list Setting forklimit to 3 and wait_shell to 0 ... Waiting for process to end with waitpid DUMPing parameters passed to llexec [1] 4: Using sleep as the remote shell 4: Show machine names on output 4: Adding machine 5,4,3,2,1 to list 4: Setting forklimit to 3 and wait_shell to 0 4: DUMPing parameters passed to llexec 4: [4] Using sleep as the remote shell Show machine names on output Adding machine 5,4,3,2,1 to list Setting forklimit to 3 and wait_shell to 0 DUMPing parameters passed to llexec [4] 5: Using sleep as the remote shell 5: Show machine names on output 5: Adding machine 5,4,3,2,1 to list 5: Setting forklimit to 3 and wait_shell to 0 5: DUMPing parameters passed to llexec 5: [5] Using sleep as the remote shell Show machine names on output Adding machine 5,4,3,2,1 to list Setting forklimit to 3 and wait_shell to 0 DUMPing parameters passed to llexec [5] --- Terminated running Using sleep as the remote shell Show machine names on output Adding machine 5,4,3,2,1 to list Setting forklimit to 3 and wait_shell to 0 ... Waiting for process to end with waitpid ... Waiting for process to end with waitpid Sun Nov 29 10:34:41 UTC 2009 PASS: tests/param-F-forklimit.sh PASS: tests/param-gnu-getopt.sh PASS: tests/news-okay.sh c: c a: a 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.10' make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10' make[1]: Leaving directory `/tmp/buildd/dsh-0.25.10' 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.10/debian/dsh make[1]: Entering directory `/tmp/buildd/dsh-0.25.10' Making install in m4 make[2]: Entering directory `/tmp/buildd/dsh-0.25.10/m4' make[3]: Entering directory `/tmp/buildd/dsh-0.25.10/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.10/m4' make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10/m4' Making install in po make[2]: Entering directory `/tmp/buildd/dsh-0.25.10/po' /bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share mkdir -p -- /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share mkdir -p -- /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/locale/ja/LC_MESSAGES installing ja.gmo as /tmp/buildd/dsh-0.25.10/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.10/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.10/debian/dsh/usr/share/gettext/po/$file; \ done; \ else \ : ; \ fi make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10/po' make[2]: Entering directory `/tmp/buildd/dsh-0.25.10' make[3]: Entering directory `/tmp/buildd/dsh-0.25.10' test -z "/usr/bin" || mkdir -p -- "/tmp/buildd/dsh-0.25.10/debian/dsh/usr/bin" /bin/bash ./libtool --mode=install install -p -o root -g root -m 755 -s 'dsh' '/tmp/buildd/dsh-0.25.10/debian/dsh/usr/bin/dsh' install -p -o root -g root -m 755 -s dsh /tmp/buildd/dsh-0.25.10/debian/dsh/usr/bin/dsh test -z "/etc/dsh" || mkdir -p -- "/tmp/buildd/dsh-0.25.10/debian/dsh/etc/dsh" /usr/bin/install -c -m 644 'dsh.conf' '/tmp/buildd/dsh-0.25.10/debian/dsh/etc/dsh/dsh.conf' for LANGS in ja ; do \ mkdir -p /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/$LANGS/man1 ;\ mkdir -p /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/$LANGS/man5 ;\ sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.$LANGS.1 \ > /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/$LANGS/man1/dsh.1 ; \ sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.conf.$LANGS.5 \ > /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/$LANGS/man5/dsh.conf.5 ; \ done test -z "/usr/share/man/man1" || mkdir -p -- "/tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/man1" /usr/bin/install -c -m 644 './build-man/dsh.1' '/tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/man1/dsh.1' test -z "/usr/share/man/man5" || mkdir -p -- "/tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/man5" /usr/bin/install -c -m 644 './build-man/dsh.conf.5' '/tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/man5/dsh.conf.5' make[3]: Leaving directory `/tmp/buildd/dsh-0.25.10' make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10' make[1]: Leaving directory `/tmp/buildd/dsh-0.25.10' cp /tmp/buildd/dsh-0.25.10/debian/machines.list /tmp/buildd/dsh-0.25.10/debian/dsh/etc/dsh/machines.list cp /tmp/buildd/dsh-0.25.10/dsh.conf /tmp/buildd/dsh-0.25.10/debian/dsh/etc/dsh/dsh.conf ln -s ../machines.list /tmp/buildd/dsh-0.25.10/debian/dsh/etc/dsh/group/all install -d /tmp/buildd/dsh-0.25.10/debian/dsh/usr/lib/update-cluster install -m 755 /tmp/buildd/dsh-0.25.10/debian/dsh.updatelist /tmp/buildd/dsh-0.25.10/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.10-1_amd64.deb'. dpkg-genchanges >../dsh_0.25.10-1_amd64.changes dpkg-genchanges: including full source code in upload dpkg-buildpackage: full upload (original source is included) I: unmounting dev/pts filesystem I: unmounting proc filesystem I: cleaning the build env I: removing directory /TESTDIR/dir3/NUM and its subdirectories I: Current time: Sun Nov 29 19:34:45 JST 2009 I: pbuilder-time-stamp: 1259490885 pbuilder-0.215ubuntu7/testsuite/cdebootstrap/pbuilder-build-dsh-squeeze.log0000664000000000000000000007516512312041170024141 0ustar I: using fakeroot in build. I: Current time: Sun Nov 29 19:32:13 JST 2009 I: pbuilder-time-stamp: 1259490733 I: Building the build Environment I: extracting base tarball [/TESTDIR/testimage] I: creating local configuration I: copying local configuration I: mounting /proc filesystem I: mounting /dev/pts filesystem I: policy-rc.d already exists I: Installing the build-deps -> Attempting to satisfy build-dependencies -> Creating pbuilder-satisfydepends-dummy package Package: pbuilder-satisfydepends-dummy Version: 0.invalid.0 Architecture: amd64 Maintainer: Debian Pbuilder Team Description: Dummy package to satisfy dependencies with aptitude - created by pbuilder This package was created automatically by pbuilder and should Depends: debhelper (>> 3.0.0), libdshconfig1-dev (>= 0.20.11-1), po4a dpkg-deb: building package `pbuilder-satisfydepends-dummy' in `/tmp/satisfydepends-aptitude/pbuilder-satisfydepends-dummy.deb'. Reading package lists... Building dependency tree... Reading state information... aptitude is already the newest version. 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. Selecting previously deselected package pbuilder-satisfydepends-dummy. (Reading database ... 10105 files and directories currently installed.) Unpacking pbuilder-satisfydepends-dummy (from .../pbuilder-satisfydepends-dummy.deb) ... dpkg: dependency problems prevent configuration of pbuilder-satisfydepends-dummy: pbuilder-satisfydepends-dummy depends on debhelper (>> 3.0.0); however: Package debhelper is not installed. pbuilder-satisfydepends-dummy depends on libdshconfig1-dev (>= 0.20.11-1); however: Package libdshconfig1-dev is not installed. pbuilder-satisfydepends-dummy depends on po4a; however: Package po4a is not installed. dpkg: error processing pbuilder-satisfydepends-dummy (--install): dependency problems - leaving unconfigured Errors were encountered while processing: pbuilder-satisfydepends-dummy Reading package lists... Building dependency tree... Reading state information... Initializing package states... Writing extended state information... The following NEW packages will be installed: bsdmainutils{a} debhelper{a} file{a} gettext{a} gettext-base{a} groff-base{a} html2text{a} intltool-debian{a} libcroco3{a} libdshconfig1{a} libdshconfig1-dev{a} libglib2.0-0{a} libmagic1{a} libpcre3{a} libsgmls-perl{a} libsp1c2{a} libxml2{a} man-db{a} po-debconf{a} po4a{a} sp{a} The following partially installed packages will be configured: pbuilder-satisfydepends-dummy 0 packages upgraded, 21 newly installed, 0 to remove and 0 not upgraded. Need to get 11.5MB of archives. After unpacking 34.5MB will be used. Writing extended state information... Get:1 http://localhost squeeze/main libmagic1 5.03-3 [389kB] Get:2 http://localhost squeeze/main file 5.03-3 [46.9kB] Get:3 http://localhost squeeze/main html2text 1.3.2a-14 [103kB] Get:4 http://localhost squeeze/main libpcre3 7.8-3 [215kB] Get:5 http://localhost squeeze/main libglib2.0-0 2.22.2-2 [984kB] Get:6 http://localhost squeeze/main libxml2 2.7.6.dfsg-1 [876kB] Get:7 http://localhost squeeze/main libcroco3 0.6.2-1 [125kB] Get:8 http://localhost squeeze/main gettext-base 0.17-8 [133kB] Get:9 http://localhost squeeze/main gettext 0.17-8 [2503kB] Get:10 http://localhost squeeze/main intltool-debian 0.35.0+20060710.1 [30.8kB] Get:11 http://localhost squeeze/main po-debconf 1.0.16 [224kB] Get:12 http://localhost squeeze/main groff-base 1.20.1-6 [1156kB] Get:13 http://localhost squeeze/main bsdmainutils 8.0.1 [197kB] Get:14 http://localhost squeeze/main man-db 2.5.6-4 [1477kB] Get:15 http://localhost squeeze/main debhelper 7.4.3 [454kB] Get:16 http://localhost squeeze/main libdshconfig1 0.20.13-1 [11.0kB] Get:17 http://localhost squeeze/main libdshconfig1-dev 0.20.13-1 [25.4kB] Get:18 http://localhost squeeze/main libsgmls-perl 1.03ii-32 [27.8kB] Get:19 http://localhost squeeze/main libsp1c2 1.3.4-1.2.1-47 [1386kB] Get:20 http://localhost squeeze/main sp 1.3.4-1.2.1-47 [182kB] Get:21 http://localhost squeeze/main po4a 0.36.6-1 [946kB] debconf: delaying package configuration, since apt-utils is not installed Fetched XXXB in Xs (XXXXXB/s) Selecting previously deselected package libmagic1. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 10105 files and directories currently installed.) Unpacking libmagic1 (from .../libmagic1_5.03-3_amd64.deb) ... Selecting previously deselected package file. Unpacking file (from .../archives/file_5.03-3_amd64.deb) ... Selecting previously deselected package html2text. Unpacking html2text (from .../html2text_1.3.2a-14_amd64.deb) ... Selecting previously deselected package libpcre3. Unpacking libpcre3 (from .../libpcre3_7.8-3_amd64.deb) ... Selecting previously deselected package libglib2.0-0. Unpacking libglib2.0-0 (from .../libglib2.0-0_2.22.2-2_amd64.deb) ... Selecting previously deselected package libxml2. Unpacking libxml2 (from .../libxml2_2.7.6.dfsg-1_amd64.deb) ... Selecting previously deselected package libcroco3. Unpacking libcroco3 (from .../libcroco3_0.6.2-1_amd64.deb) ... Selecting previously deselected package gettext-base. Unpacking gettext-base (from .../gettext-base_0.17-8_amd64.deb) ... Selecting previously deselected package gettext. Unpacking gettext (from .../gettext_0.17-8_amd64.deb) ... Selecting previously deselected package intltool-debian. Unpacking intltool-debian (from .../intltool-debian_0.35.0+20060710.1_all.deb) ... Selecting previously deselected package po-debconf. Unpacking po-debconf (from .../po-debconf_1.0.16_all.deb) ... Selecting previously deselected package groff-base. Unpacking groff-base (from .../groff-base_1.20.1-6_amd64.deb) ... Selecting previously deselected package bsdmainutils. Unpacking bsdmainutils (from .../bsdmainutils_8.0.1_amd64.deb) ... Selecting previously deselected package man-db. Unpacking man-db (from .../man-db_2.5.6-4_amd64.deb) ... Selecting previously deselected package debhelper. Unpacking debhelper (from .../debhelper_7.4.3_all.deb) ... Selecting previously deselected package libdshconfig1. Unpacking libdshconfig1 (from .../libdshconfig1_0.20.13-1_amd64.deb) ... Selecting previously deselected package libdshconfig1-dev. Unpacking libdshconfig1-dev (from .../libdshconfig1-dev_0.20.13-1_amd64.deb) ... Selecting previously deselected package libsgmls-perl. Unpacking libsgmls-perl (from .../libsgmls-perl_1.03ii-32_all.deb) ... Selecting previously deselected package libsp1c2. Unpacking libsp1c2 (from .../libsp1c2_1.3.4-1.2.1-47_amd64.deb) ... Selecting previously deselected package sp. Unpacking sp (from .../sp_1.3.4-1.2.1-47_amd64.deb) ... Selecting previously deselected package po4a. Unpacking po4a (from .../archives/po4a_0.36.6-1_all.deb) ... Setting up libmagic1 (5.03-3) ... Setting up file (5.03-3) ... Setting up html2text (1.3.2a-14) ... Setting up libpcre3 (7.8-3) ... Setting up libglib2.0-0 (2.22.2-2) ... Setting up libxml2 (2.7.6.dfsg-1) ... Setting up libcroco3 (0.6.2-1) ... Setting up gettext-base (0.17-8) ... Setting up gettext (0.17-8) ... Setting up intltool-debian (0.35.0+20060710.1) ... Setting up po-debconf (1.0.16) ... Setting up groff-base (1.20.1-6) ... Setting up bsdmainutils (8.0.1) ... update-alternatives: using /usr/bin/bsd-write to provide /usr/bin/write (write) in auto mode. Setting up man-db (2.5.6-4) ... Building database of manual pages ... Setting up debhelper (7.4.3) ... Setting up libdshconfig1 (0.20.13-1) ... Setting up libdshconfig1-dev (0.20.13-1) ... Setting up libsgmls-perl (1.03ii-32) ... Setting up libsp1c2 (1.3.4-1.2.1-47) ... Setting up sp (1.3.4-1.2.1-47) ... Setting up po4a (0.36.6-1) ... Setting up pbuilder-satisfydepends-dummy (0.invalid.0) ... Reading package lists... Building dependency tree... Reading state information... Reading extended state information... Initializing package states... Writing extended state information... -> Finished parsing the build-deps Reading package lists... Building dependency tree... Reading state information... aptitude is already the newest version. fakeroot is already the newest version. 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. I: Copying source file I: copying [/TESTDIR/dir1/dsh_0.25.10-1.dsc] I: copying [/TESTDIR/dir1/dsh_0.25.10.orig.tar.gz] I: copying [/TESTDIR/dir1/dsh_0.25.10-1.diff.gz] I: Extracting source gpgv: keyblock resource `/tmp/buildd/.gnupg/trustedkeys.gpg': file open error gpgv: Signature made Fri Dec 14 00:23:24 2007 UTC using DSA key ID E81E55C1 gpgv: Can't check signature: public key not found dpkg-source: warning: failed to verify signature on ./dsh_0.25.10-1.dsc dpkg-source: info: extracting dsh in dsh-0.25.10 dpkg-source: info: unpacking dsh_0.25.10.orig.tar.gz dpkg-source: info: applying dsh_0.25.10-1.diff.gz dpkg-source: info: upstream files that have been modified: dsh-0.25.10/.cvsignore dsh-0.25.10/CVS/Entries dsh-0.25.10/CVS/Repository dsh-0.25.10/CVS/Root dsh-0.25.10/ChangeLog.OLD dsh-0.25.10/dcp.sh dsh-0.25.10/drshd.c dsh-0.25.10/dsh.1.ja.po dsh-0.25.10/m4/.cvsignore dsh-0.25.10/m4/CVS/Entries dsh-0.25.10/m4/CVS/Repository dsh-0.25.10/m4/CVS/Root dsh-0.25.10/po/.cvsignore dsh-0.25.10/po/CVS/Entries dsh-0.25.10/po/CVS/Repository dsh-0.25.10/po/CVS/Root dsh-0.25.10/po/insert-header.sin dsh-0.25.10/tests/.cvsignore dsh-0.25.10/tests/CVS/Entries dsh-0.25.10/tests/CVS/Repository dsh-0.25.10/tests/CVS/Root I: Building the package dpkg-buildpackage: set CFLAGS to default value: -g -O2 dpkg-buildpackage: set CPPFLAGS to default value: dpkg-buildpackage: set LDFLAGS to default value: dpkg-buildpackage: set FFLAGS to default value: -g -O2 dpkg-buildpackage: set CXXFLAGS to default value: -g -O2 dpkg-buildpackage: source package dsh dpkg-buildpackage: source version 0.25.10-1 dpkg-buildpackage: host architecture amd64 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.10' make[1]: *** No rule to make target `clean'. Stop. make[1]: Leaving directory `/tmp/buildd/dsh-0.25.10' make: [clean] Error 2 (ignored) /usr/bin/make distclean make[1]: Entering directory `/tmp/buildd/dsh-0.25.10' make[1]: *** No rule to make target `distclean'. Stop. make[1]: Leaving directory `/tmp/buildd/dsh-0.25.10' make: [clean] Error 2 (ignored) dh_clean dpkg-source -b dsh-0.25.10 dpkg-source: info: using source format `1.0' dpkg-source: info: building dsh using existing dsh_0.25.10.orig.tar.gz dpkg-source: info: building dsh in dsh_0.25.10-1.diff.gz dpkg-source: warning: file dsh-0.25.10/dcp.sh has no final newline (either original or modified version) dpkg-source: warning: file dsh-0.25.10/debian/compat has no final newline (either original or modified version) dpkg-source: warning: the diff modifies the following upstream files: .cvsignore CVS/Entries CVS/Repository CVS/Root ChangeLog.OLD dcp.sh drshd.c dsh.1.ja.po m4/.cvsignore m4/CVS/Entries m4/CVS/Repository m4/CVS/Root po/.cvsignore po/CVS/Entries po/CVS/Repository po/CVS/Root po/insert-header.sin tests/.cvsignore tests/CVS/Entries tests/CVS/Repository tests/CVS/Root dpkg-source: info: use the '3.0 (quilt)' format to have separate and documented changes to upstream files, see dpkg-source(1) dpkg-source: info: building dsh in dsh_0.25.10-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 ISO C89... none needed checking dependency style of gcc... gcc3 checking for strerror in -lcposix... no checking for gcc... (cached) gcc checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) 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 ISO C89... (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 grep that handles long lines and -e... /bin/grep checking for egrep... /bin/grep -E checking for ANSI C header files... yes checking for sys/wait.h that is POSIX.1 compatible... yes checking build system type... x86_64-unknown-linux-gnu checking host system type... x86_64-unknown-linux-gnu checking for a sed that does not truncate output... /bin/sed checking for ld used by gcc... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for /usr/bin/ld option to reload object files... -r checking for BSD-compatible nm... /usr/bin/nm -B checking whether ln -s works... yes checking how to recognize dependent libraries... pass_all checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking dlfcn.h usability... yes checking dlfcn.h presence... yes checking for dlfcn.h... yes checking for g++... g++ checking whether we are using the GNU C++ compiler... yes checking whether g++ accepts -g... yes checking dependency style of g++... gcc3 checking how to run the C++ preprocessor... g++ -E checking for g77... no checking for xlf... no checking for f77... no checking for frt... no checking for pgf77... no checking for cf77... no checking for fort77... no checking for fl32... no checking for af77... no checking for xlf90... no checking for f90... no checking for pgf90... no checking for pghpf... no checking for epcf90... no checking for gfortran... no checking for g95... no checking for xlf95... no checking for f95... no checking for fort... no checking for ifort... no checking for ifc... no checking for efc... no checking for pgf95... no checking for lf95... no checking for ftn... no checking whether we are using the GNU Fortran 77 compiler... no checking whether accepts -g... no checking the maximum length of command line arguments... 3458764513820540925 checking command to parse /usr/bin/nm -B output from gcc object... ok checking for objdir... .libs checking for ar... ar checking for ranlib... ranlib checking for strip... strip checking if gcc supports -fno-rtti -fno-exceptions... no checking for gcc option to produce PIC... -fPIC checking if gcc PIC flag -fPIC works... yes checking if gcc static flag -static works... yes checking if gcc supports -c -o file.o... yes checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) 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 -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking for g++ option to produce PIC... -fPIC checking if g++ PIC flag -fPIC works... yes checking if g++ static flag -static works... yes checking if g++ supports -c -o file.o... yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate appending configuration tag "F77" to libtool checking 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 -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) 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: WARNING: po/Makefile.in.in seems to ignore the --datarootdir setting 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.10' /usr/bin/make all-recursive make[2]: Entering directory `/tmp/buildd/dsh-0.25.10' Making all in m4 make[3]: Entering directory `/tmp/buildd/dsh-0.25.10/m4' make[3]: Nothing to be done for `all'. make[3]: Leaving directory `/tmp/buildd/dsh-0.25.10/m4' Making all in po make[3]: Entering directory `/tmp/buildd/dsh-0.25.10/po' make[3]: Nothing to be done for `all'. make[3]: Leaving directory `/tmp/buildd/dsh-0.25.10/po' make[3]: Entering directory `/tmp/buildd/dsh-0.25.10' 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/bash ./libtool --tag=CC --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.10' make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10' make[1]: Leaving directory `/tmp/buildd/dsh-0.25.10' /usr/bin/make check make[1]: Entering directory `/tmp/buildd/dsh-0.25.10' Making check in m4 make[2]: Entering directory `/tmp/buildd/dsh-0.25.10/m4' make[2]: Nothing to be done for `check'. make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10/m4' Making check in po make[2]: Entering directory `/tmp/buildd/dsh-0.25.10/po' make[2]: Nothing to be done for `check'. make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10/po' make[2]: Entering directory `/tmp/buildd/dsh-0.25.10' /usr/bin/make dsh make[3]: Entering directory `/tmp/buildd/dsh-0.25.10' make[3]: `dsh' is up to date. make[3]: Leaving directory `/tmp/buildd/dsh-0.25.10' /usr/bin/make check-TESTS make[3]: Entering directory `/tmp/buildd/dsh-0.25.10' PASS: tests/param-f.sh dsh: File ./tests/nonexistent.file could not be opened for read PASS: tests/param-f-fail.sh PASS: tests/param-f-with-space.sh PASS: tests/param-m.sh test to check that unknown parameter checking is right. ./dsh: unrecognized option '--unknown-parameter' ./dsh: invalid option -- 'u' PASS: tests/param-unknown.sh test1 test2 dsh: Process terminated (before write). PASS: tests/param-i.sh Check that cn4 option is working. PASS: tests/param-cn4.sh test to check that -b0 is rejected, and -b1 is accepted Buffer size needs to be greater than 1 Buffer size needs to be greater than 1 a b PASS: tests/param-b-0.sh dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call success dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call success success success success success a: dsh: Failed executing ./invalid-exec-file with llexec call b: dsh: Failed executing ./invalid-exec-file with llexec call c: dsh: Failed executing ./invalid-exec-file with llexec call d: dsh: Failed executing ./invalid-exec-file with llexec call success dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call success PASS: tests/param-r-invalid.sh 1: 1 2: 2 dsh: fork limit and wait shell cannot be specified at the same time PASS: tests/param-F-invalid.sh Sun Nov 29 10:33:22 UTC 2009 2: Using sleep as the remote shell 2: Show machine names on output 2: Adding machine 5,4,3,2,1 to list 2: Setting forklimit to 3 and wait_shell to 0 2: DUMPing parameters passed to llexec 2: [2] Using sleep as the remote shell Show machine names on output Adding machine 5,4,3,2,1 to list Setting forklimit to 3 and wait_shell to 0 DUMPing parameters passed to llexec [2] 3: Using sleep as the remote shell 3: Show machine names on output 3: Adding machine 5,4,3,2,1 to list 3: Setting forklimit to 3 and wait_shell to 0 3: DUMPing parameters passed to llexec 3: [3] Using sleep as the remote shell Show machine names on output Adding machine 5,4,3,2,1 to list Setting forklimit to 3 and wait_shell to 0 DUMPing parameters passed to llexec [3] 1: Using sleep as the remote shell 1: Show machine names on output 1: Adding machine 5,4,3,2,1 to list 1: Setting forklimit to 3 and wait_shell to 0 1: ... Waiting for process to end with waitpid 1: DUMPing parameters passed to llexec 1: [1] Using sleep as the remote shell Show machine names on output Adding machine 5,4,3,2,1 to list Setting forklimit to 3 and wait_shell to 0 ... Waiting for process to end with waitpid DUMPing parameters passed to llexec [1] 4: Using sleep as the remote shell 4: Show machine names on output 4: Adding machine 5,4,3,2,1 to list 4: Setting forklimit to 3 and wait_shell to 0 4: DUMPing parameters passed to llexec 4: [4] Using sleep as the remote shell Show machine names on output Adding machine 5,4,3,2,1 to list Setting forklimit to 3 and wait_shell to 0 DUMPing parameters passed to llexec [4] 5: Using sleep as the remote shell 5: Show machine names on output 5: Adding machine 5,4,3,2,1 to list 5: Setting forklimit to 3 and wait_shell to 0 5: DUMPing parameters passed to llexec 5: [5] Using sleep as the remote shell Show machine names on output Adding machine 5,4,3,2,1 to list Setting forklimit to 3 and wait_shell to 0 DUMPing parameters passed to llexec [5] --- Terminated running Using sleep as the remote shell Show machine names on output Adding machine 5,4,3,2,1 to list Setting forklimit to 3 and wait_shell to 0 ... Waiting for process to end with waitpid ... Waiting for process to end with waitpid Sun Nov 29 10:33:27 UTC 2009 PASS: tests/param-F-forklimit.sh PASS: tests/param-gnu-getopt.sh PASS: tests/news-okay.sh b: b a: a c: c dsh: Process terminated (before write). 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.10' make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10' make[1]: Leaving directory `/tmp/buildd/dsh-0.25.10' 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.10/debian/dsh make[1]: Entering directory `/tmp/buildd/dsh-0.25.10' Making install in m4 make[2]: Entering directory `/tmp/buildd/dsh-0.25.10/m4' make[3]: Entering directory `/tmp/buildd/dsh-0.25.10/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.10/m4' make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10/m4' Making install in po make[2]: Entering directory `/tmp/buildd/dsh-0.25.10/po' /bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share mkdir -p -- /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share mkdir -p -- /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/locale/ja/LC_MESSAGES installing ja.gmo as /tmp/buildd/dsh-0.25.10/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.10/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.10/debian/dsh/usr/share/gettext/po/$file; \ done; \ else \ : ; \ fi make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10/po' make[2]: Entering directory `/tmp/buildd/dsh-0.25.10' make[3]: Entering directory `/tmp/buildd/dsh-0.25.10' test -z "/usr/bin" || mkdir -p -- "/tmp/buildd/dsh-0.25.10/debian/dsh/usr/bin" /bin/bash ./libtool --mode=install install -p -o root -g root -m 755 -s 'dsh' '/tmp/buildd/dsh-0.25.10/debian/dsh/usr/bin/dsh' install -p -o root -g root -m 755 -s dsh /tmp/buildd/dsh-0.25.10/debian/dsh/usr/bin/dsh test -z "/etc/dsh" || mkdir -p -- "/tmp/buildd/dsh-0.25.10/debian/dsh/etc/dsh" /usr/bin/install -c -m 644 'dsh.conf' '/tmp/buildd/dsh-0.25.10/debian/dsh/etc/dsh/dsh.conf' for LANGS in ja ; do \ mkdir -p /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/$LANGS/man1 ;\ mkdir -p /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/$LANGS/man5 ;\ sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.$LANGS.1 \ > /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/$LANGS/man1/dsh.1 ; \ sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.conf.$LANGS.5 \ > /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/$LANGS/man5/dsh.conf.5 ; \ done test -z "/usr/share/man/man1" || mkdir -p -- "/tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/man1" /usr/bin/install -c -m 644 './build-man/dsh.1' '/tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/man1/dsh.1' test -z "/usr/share/man/man5" || mkdir -p -- "/tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/man5" /usr/bin/install -c -m 644 './build-man/dsh.conf.5' '/tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/man5/dsh.conf.5' make[3]: Leaving directory `/tmp/buildd/dsh-0.25.10' make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10' make[1]: Leaving directory `/tmp/buildd/dsh-0.25.10' cp /tmp/buildd/dsh-0.25.10/debian/machines.list /tmp/buildd/dsh-0.25.10/debian/dsh/etc/dsh/machines.list cp /tmp/buildd/dsh-0.25.10/dsh.conf /tmp/buildd/dsh-0.25.10/debian/dsh/etc/dsh/dsh.conf ln -s ../machines.list /tmp/buildd/dsh-0.25.10/debian/dsh/etc/dsh/group/all install -d /tmp/buildd/dsh-0.25.10/debian/dsh/usr/lib/update-cluster install -m 755 /tmp/buildd/dsh-0.25.10/debian/dsh.updatelist /tmp/buildd/dsh-0.25.10/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.10-1_amd64.deb'. dpkg-genchanges -eJunichi Uekawa >../dsh_0.25.10-1_amd64.changes dpkg-genchanges: including full source code in upload dpkg-buildpackage: full upload (original source is included) I: unmounting dev/pts filesystem I: unmounting proc filesystem I: cleaning the build env I: removing directory /TESTDIR/dir1/NUM and its subdirectories I: Current time: Sun Nov 29 19:33:31 JST 2009 I: pbuilder-time-stamp: 1259490811 pbuilder-0.215ubuntu7/testsuite/cdebootstrap/pbuilder-update-lenny-sid.log0000664000000000000000000002336512312041170023764 0ustar Upgrading for distribution sid Building the build Environment -> extracting base tarball [/TESTDIR/testimage] -> creating local configuration -> copying local configuration -> Installing apt-lines -> mounting /proc filesystem -> mounting /dev/pts filesystem -> policy-rc.d already exists Refreshing the base.tgz -> upgrading packages Get:1 http://localhost sid Release.gpg [189B] Get:2 http://localhost sid Release [86.5kB] Ign http://localhost sid/main Packages Get:3 http://localhost sid/main Packages [7261kB] Fetched XXXB in Xs (XXXXXB/s) Reading package lists... Obtaining the cached apt archive contents Reading package lists... Building dependency tree... Reading state information... The following packages will be upgraded: aptitude cpio cpp cpp-4.3 debconf debconf-i18n e2fslibs e2fsprogs fakeroot g++ g++-4.3 gcc gcc-4.3 gcc-4.3-base libblkid1 libcomerr2 libdb4.6 libept0 libgcc1 libgdbm3 libgomp1 libncurses5 libncursesw5 libss2 libstdc++6 libstdc++6-4.3-dev libusb-0.1-4 libuuid1 linux-libc-dev mawk ncurses-base ncurses-bin perl perl-base perl-modules sed tzdata debconf: delaying package configuration, since apt-utils is not installed 37 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. Need to get 0B/29.1MB of archives. After this operation, 1737kB of additional disk space will be used. (Reading database ... 9615 files and directories currently installed.) Preparing to replace libcomerr2 1.41.0-3 (using .../libcomerr2_1.41.1-3_i386.deb) ... Unpacking replacement libcomerr2 ... Setting up libcomerr2 (1.41.1-3) ... (Reading database ... 9615 files and directories currently installed.) Preparing to replace e2fslibs 1.41.0-3 (using .../e2fslibs_1.41.1-3_i386.deb) ... Unpacking replacement e2fslibs ... Setting up e2fslibs (1.41.1-3) ... (Reading database ... 9615 files and directories currently installed.) Preparing to replace e2fsprogs 1.41.0-3 (using .../e2fsprogs_1.41.1-3_i386.deb) ... Unpacking replacement e2fsprogs ... Setting up e2fsprogs (1.41.1-3) ... (Reading database ... 9616 files and directories currently installed.) Preparing to replace ncurses-bin 5.6+20080830-1 (using .../ncurses-bin_5.6+20080925-1_i386.deb) ... Unpacking replacement ncurses-bin ... Setting up ncurses-bin (5.6+20080925-1) ... (Reading database ... 9616 files and directories currently installed.) Preparing to replace perl-modules 5.10.0-14 (using .../perl-modules_5.10.0-15_all.deb) ... Unpacking replacement perl-modules ... Preparing to replace libdb4.6 4.6.21-8 (using .../libdb4.6_4.6.21-11_i386.deb) ... Unpacking replacement libdb4.6 ... Setting up libdb4.6 (4.6.21-11) ... (Reading database ... 9616 files and directories currently installed.) Preparing to replace libgdbm3 1.8.3-3 (using .../libgdbm3_1.8.3-4_i386.deb) ... Unpacking replacement libgdbm3 ... Preparing to replace perl 5.10.0-14 (using .../perl_5.10.0-15_i386.deb) ... Unpacking replacement perl ... Preparing to replace perl-base 5.10.0-14 (using .../perl-base_5.10.0-15_i386.deb) ... Unpacking replacement perl-base ... Setting up perl-base (5.10.0-15) ... (Reading database ... 9616 files and directories currently installed.) Preparing to replace sed 4.1.5-6 (using .../archives/sed_4.1.5-8_i386.deb) ... Unpacking replacement sed ... Setting up sed (4.1.5-8) ... (Reading database ... 9616 files and directories currently installed.) Preparing to replace libncurses5 5.6+20080830-1 (using .../libncurses5_5.6+20080925-1_i386.deb) ... Unpacking replacement libncurses5 ... Setting up libncurses5 (5.6+20080925-1) ... (Reading database ... 9616 files and directories currently installed.) Preparing to replace ncurses-base 5.6+20080830-1 (using .../ncurses-base_5.6+20080925-1_all.deb) ... Unpacking replacement ncurses-base ... Setting up ncurses-base (5.6+20080925-1) ... (Reading database ... 9619 files and directories currently installed.) Preparing to replace debconf-i18n 1.5.22 (using .../debconf-i18n_1.5.23_all.deb) ... Unpacking replacement debconf-i18n ... Setting up debconf-i18n (1.5.23) ... (Reading database ... 9612 files and directories currently installed.) Preparing to replace debconf 1.5.22 (using .../debconf_1.5.23_all.deb) ... Unpacking replacement debconf ... Setting up debconf (1.5.23) ... (Reading database ... 9612 files and directories currently installed.) Preparing to replace mawk 1.3.3-11.1 (using .../mawk_1.3.3-13_i386.deb) ... Unpacking replacement mawk ... Preparing to replace libusb-0.1-4 2:0.1.12-12 (using .../libusb-0.1-4_2%3a0.1.12-13_i386.deb) ... Unpacking replacement libusb-0.1-4 ... Setting up libusb-0.1-4 (2:0.1.12-13) ... (Reading database ... 9612 files and directories currently installed.) Preparing to replace libgomp1 4.3.1-9 (using .../libgomp1_4.3.2-1_i386.deb) ... Unpacking replacement libgomp1 ... Preparing to replace gcc-4.3-base 4.3.1-9 (using .../gcc-4.3-base_4.3.2-1_i386.deb) ... Unpacking replacement gcc-4.3-base ... Setting up gcc-4.3-base (4.3.2-1) ... (Reading database ... 9612 files and directories currently installed.) Preparing to replace libstdc++6 4.3.1-9 (using .../libstdc++6_4.3.2-1_i386.deb) ... Unpacking replacement libstdc++6 ... Setting up libstdc++6 (4.3.2-1) ... (Reading database ... 9612 files and directories currently installed.) Preparing to replace cpp-4.3 4.3.1-9 (using .../cpp-4.3_4.3.2-1_i386.deb) ... Unpacking replacement cpp-4.3 ... Preparing to replace gcc-4.3 4.3.1-9 (using .../gcc-4.3_4.3.2-1_i386.deb) ... Unpacking replacement gcc-4.3 ... Preparing to replace g++-4.3 4.3.1-9 (using .../g++-4.3_4.3.2-1_i386.deb) ... Unpacking replacement g++-4.3 ... Preparing to replace libstdc++6-4.3-dev 4.3.1-9 (using .../libstdc++6-4.3-dev_4.3.2-1_i386.deb) ... Unpacking replacement libstdc++6-4.3-dev ... Preparing to replace libgcc1 1:4.3.1-9 (using .../libgcc1_1%3a4.3.2-1_i386.deb) ... Unpacking replacement libgcc1 ... Setting up libgcc1 (1:4.3.2-1) ... (Reading database ... 9612 files and directories currently installed.) Preparing to replace libuuid1 1.41.0-3 (using .../libuuid1_1.41.1-3_i386.deb) ... Unpacking replacement libuuid1 ... Setting up libuuid1 (1.41.1-3) ... (Reading database ... 9613 files and directories currently installed.) Preparing to replace libblkid1 1.41.0-3 (using .../libblkid1_1.41.1-3_i386.deb) ... Unpacking replacement libblkid1 ... Setting up libblkid1 (1.41.1-3) ... (Reading database ... 9613 files and directories currently installed.) Preparing to replace libss2 1.41.0-3 (using .../libss2_1.41.1-3_i386.deb) ... Unpacking replacement libss2 ... Setting up libss2 (1.41.1-3) ... (Reading database ... 9613 files and directories currently installed.) Preparing to replace tzdata 2008e-3 (using .../tzdata_2008f-1_all.deb) ... Unpacking replacement tzdata ... Setting up tzdata (2008f-1) ... Current default timezone: 'Etc/UTC' Local time is now: XXXX Universal Time is now: XXXX Run 'dpkg-reconfigure tzdata' if you wish to change it. (Reading database ... 9614 files and directories currently installed.) Preparing to replace libept0 0.5.22 (using .../libept0_0.5.25_i386.deb) ... Unpacking replacement libept0 ... Preparing to replace libncursesw5 5.6+20080830-1 (using .../libncursesw5_5.6+20080925-1_i386.deb) ... Unpacking replacement libncursesw5 ... Preparing to replace aptitude 0.4.11.8-1 (using .../aptitude_0.4.11.10-1_i386.deb) ... Unpacking replacement aptitude ... Preparing to replace cpio 2.9-13 (using .../archives/cpio_2.9-14_i386.deb) ... Unpacking replacement cpio ... Preparing to replace cpp 4:4.3.1-2 (using .../cpp_4%3a4.3.2-2_i386.deb) ... Unpacking replacement cpp ... Preparing to replace fakeroot 1.9.5 (using .../fakeroot_1.9.7_i386.deb) ... Unpacking replacement fakeroot ... Preparing to replace gcc 4:4.3.1-2 (using .../gcc_4%3a4.3.2-2_i386.deb) ... Removing old gcc doc directory. Unpacking replacement gcc ... Preparing to replace g++ 4:4.3.1-2 (using .../g++_4%3a4.3.2-2_i386.deb) ... Unpacking replacement g++ ... Preparing to replace linux-libc-dev 2.6.26-5 (using .../linux-libc-dev_2.6.26-6_i386.deb) ... Unpacking replacement linux-libc-dev ... Setting up libgdbm3 (1.8.3-4) ... Setting up mawk (1.3.3-13) ... Setting up libgomp1 (4.3.2-1) ... Setting up cpp-4.3 (4.3.2-1) ... Setting up gcc-4.3 (4.3.2-1) ... Setting up libept0 (0.5.25) ... Setting up libncursesw5 (5.6+20080925-1) ... Setting up aptitude (0.4.11.10-1) ... Setting up cpio (2.9-14) ... Setting up cpp (4:4.3.2-2) ... Setting up fakeroot (1.9.7) ... Setting up gcc (4:4.3.2-2) ... Setting up linux-libc-dev (2.6.26-6) ... Setting up perl-modules (5.10.0-15) ... Setting up libstdc++6-4.3-dev (4.3.2-1) ... Setting up g++-4.3 (4.3.2-1) ... Setting up g++ (4:4.3.2-2) ... Setting up perl (5.10.0-15) ... Reading package lists... Building dependency tree... Reading state information... build-essential is already the newest version. dpkg-dev is already the newest version. apt is already the newest version. aptitude is already the newest version. 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. Copying back the cached apt archive contents umount: none: not found umount: /sys: not mounted umount: none: not found umount: /sys: not mounted umount: /run: not found umount: usbfs: not found umount: /proc/bus/usb: not mounted umount: usbfs: not found umount: /proc/bus/usb: not mounted umount: tmpfs: not found umount: /dev/shm: not mounted umount: tmpfs: not found umount: /dev/shm: not mounted umount: tmpfs: not found umount: /lib/init/rw: not mounted umount: tmpfs: not found umount: /lib/init/rw: not mounted cat: /var/run/inetd.pid: No such file or directory kill: usage: kill [-s sigspec | -n signum | -sigspec] pid | jobspec ... or kill -l [sigspec] -> user script /var/cache/pbuilder/build//NUM/tmp/hooks/E50-initscripts-2.86.ds1-7.workaround.sh finished -> unmounting dev/pts filesystem -> unmounting proc filesystem -> creating base tarball [/TESTDIR/testimage] -> cleaning the build env -> removing directory /var/cache/pbuilder/build//NUM and its subdirectories pbuilder-0.215ubuntu7/testsuite/cdebootstrap/pbuilder-execute-squeeze.log0000664000000000000000000000071212312041170023712 0ustar I: Building the build Environment I: extracting base tarball [/TESTDIR/testimage] I: creating local configuration I: copying local configuration I: mounting /proc filesystem I: mounting /dev/pts filesystem I: policy-rc.d already exists --- parameters given to this script [test1 test2 test3] I: unmounting dev/pts filesystem I: unmounting proc filesystem I: cleaning the build env I: removing directory /var/cache/pbuilder/build//NUM and its subdirectories pbuilder-0.215ubuntu7/testsuite/cdebootstrap/pdebuild-internal-sid.log0000664000000000000000000010227112312041170023147 0ustar W: /home/dancer/.pbuilderrc does not exist I: Building the build Environment I: extracting base tarball [/TESTDIR/testimage] I: creating local configuration I: copying local configuration I: mounting /proc filesystem I: mounting /dev/pts filesystem I: Mounting /TESTDIR/dir2 I: policy-rc.d already exists Reading package lists... Building dependency tree... Reading state information... passwd is already the newest version. The following extra packages will be installed: cdebootstrap libdebian-installer-extra4 libdebian-installer4 libssl0.9.8 wget Suggested packages: pbuilder-uml gdebi cowdancer Recommended packages: sudo devscripts The following NEW packages will be installed: cdebootstrap libdebian-installer-extra4 libdebian-installer4 libssl0.9.8 pbuilder wget 0 upgraded, 6 newly installed, 0 to remove and 0 not upgraded. Need to get 2144kB of archives. After this operation, 6226kB of additional disk space will be used. Get:1 http://localhost sid/main libssl0.9.8 0.9.8k-7 [979kB] Get:2 http://localhost sid/main wget 1.12-1.1 [757kB] Get:3 http://localhost sid/main libdebian-installer4 0.69 [31.0kB] Get:4 http://localhost sid/main libdebian-installer-extra4 0.69 [12.9kB] Get:5 http://localhost sid/main cdebootstrap 0.5.5 [32.3kB] Get:6 http://localhost sid/main pbuilder 0.192 [331kB] debconf: delaying package configuration, since apt-utils is not installed Fetched XXXB in Xs (XXXXXB/s) Selecting previously deselected package libssl0.9.8. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 10112 files and directories currently installed.) Unpacking libssl0.9.8 (from .../libssl0.9.8_0.9.8k-7_amd64.deb) ... Selecting previously deselected package wget. Unpacking wget (from .../wget_1.12-1.1_amd64.deb) ... Selecting previously deselected package libdebian-installer4. Unpacking libdebian-installer4 (from .../libdebian-installer4_0.69_amd64.deb) ... Selecting previously deselected package libdebian-installer-extra4. Unpacking libdebian-installer-extra4 (from .../libdebian-installer-extra4_0.69_amd64.deb) ... Selecting previously deselected package cdebootstrap. Unpacking cdebootstrap (from .../cdebootstrap_0.5.5_amd64.deb) ... Selecting previously deselected package pbuilder. Unpacking pbuilder (from .../pbuilder_0.192_all.deb) ... Setting up libssl0.9.8 (0.9.8k-7) ... Setting up wget (1.12-1.1) ... Setting up libdebian-installer4 (0.69) ... Setting up libdebian-installer-extra4 (0.69) ... Setting up cdebootstrap (0.5.5) ... Setting up pbuilder (0.192) ... I: Setting DEBBUILDOPTS= W: no hooks of type D found -- ignoring -> Attempting to satisfy build-dependencies -> Creating pbuilder-satisfydepends-dummy package Package: pbuilder-satisfydepends-dummy Version: 0.invalid.0 Architecture: amd64 Maintainer: Debian Pbuilder Team Description: Dummy package to satisfy dependencies with aptitude - created by pbuilder This package was created automatically by pbuilder and should Depends: debhelper (>> 3.0.0), libdshconfig1-dev (>= 0.20.11-1), po4a dpkg-deb: building package `pbuilder-satisfydepends-dummy' in `/tmp/satisfydepends-aptitude/pbuilder-satisfydepends-dummy.deb'. Reading package lists... Building dependency tree... Reading state information... aptitude is already the newest version. 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. Selecting previously deselected package pbuilder-satisfydepends-dummy. (Reading database ... 10312 files and directories currently installed.) Unpacking pbuilder-satisfydepends-dummy (from .../pbuilder-satisfydepends-dummy.deb) ... dpkg: dependency problems prevent configuration of pbuilder-satisfydepends-dummy: pbuilder-satisfydepends-dummy depends on debhelper (>> 3.0.0); however: Package debhelper is not installed. pbuilder-satisfydepends-dummy depends on libdshconfig1-dev (>= 0.20.11-1); however: Package libdshconfig1-dev is not installed. pbuilder-satisfydepends-dummy depends on po4a; however: Package po4a is not installed. dpkg: error processing pbuilder-satisfydepends-dummy (--install): dependency problems - leaving unconfigured Errors were encountered while processing: pbuilder-satisfydepends-dummy Reading package lists... Building dependency tree... Reading state information... Initializing package states... Writing extended state information... The following NEW packages will be installed: bsdmainutils{a} debhelper{a} file{a} gettext{a} gettext-base{a} groff-base{a} html2text{a} intltool-debian{a} libcroco3{a} libdshconfig1{a} libdshconfig1-dev{a} libglib2.0-0{a} libmagic1{a} libpcre3{a} libsgmls-perl{a} libsp1c2{a} libxml2{a} man-db{a} po-debconf{a} po4a{a} sp{a} The following partially installed packages will be configured: pbuilder-satisfydepends-dummy 0 packages upgraded, 21 newly installed, 0 to remove and 0 not upgraded. Need to get 11.6MB of archives. After unpacking 35.1MB will be used. Writing extended state information... Get:1 http://localhost sid/main libmagic1 5.03-3 [389kB] Get:2 http://localhost sid/main file 5.03-3 [46.9kB] Get:3 http://localhost sid/main html2text 1.3.2a-14 [103kB] Get:4 http://localhost sid/main libpcre3 7.8-3 [215kB] Get:5 http://localhost sid/main libglib2.0-0 2.22.2-2 [984kB] Get:6 http://localhost sid/main libxml2 2.7.6.dfsg-1 [876kB] Get:7 http://localhost sid/main libcroco3 0.6.2-1 [125kB] Get:8 http://localhost sid/main gettext-base 0.17-8 [133kB] Get:9 http://localhost sid/main gettext 0.17-8 [2503kB] Get:10 http://localhost sid/main intltool-debian 0.35.0+20060710.1 [30.8kB] Get:11 http://localhost sid/main po-debconf 1.0.16 [224kB] Get:12 http://localhost sid/main groff-base 1.20.1-6 [1156kB] Get:13 http://localhost sid/main bsdmainutils 8.0.2 [198kB] Get:14 http://localhost sid/main man-db 2.5.6-4 [1477kB] Get:15 http://localhost sid/main debhelper 7.4.8 [458kB] Get:16 http://localhost sid/main libdshconfig1 0.20.13-1 [11.0kB] Get:17 http://localhost sid/main libdshconfig1-dev 0.20.13-1 [25.4kB] Get:18 http://localhost sid/main libsgmls-perl 1.03ii-32 [27.8kB] Get:19 http://localhost sid/main libsp1c2 1.3.4-1.2.1-47 [1386kB] Get:20 http://localhost sid/main sp 1.3.4-1.2.1-47 [182kB] Get:21 http://localhost sid/main po4a 0.37.1-1 [1026kB] debconf: delaying package configuration, since apt-utils is not installed Fetched XXXB in Xs (XXXXXB/s) Selecting previously deselected package libmagic1. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 10312 files and directories currently installed.) Unpacking libmagic1 (from .../libmagic1_5.03-3_amd64.deb) ... Selecting previously deselected package file. Unpacking file (from .../archives/file_5.03-3_amd64.deb) ... Selecting previously deselected package html2text. Unpacking html2text (from .../html2text_1.3.2a-14_amd64.deb) ... Selecting previously deselected package libpcre3. Unpacking libpcre3 (from .../libpcre3_7.8-3_amd64.deb) ... Selecting previously deselected package libglib2.0-0. Unpacking libglib2.0-0 (from .../libglib2.0-0_2.22.2-2_amd64.deb) ... Selecting previously deselected package libxml2. Unpacking libxml2 (from .../libxml2_2.7.6.dfsg-1_amd64.deb) ... Selecting previously deselected package libcroco3. Unpacking libcroco3 (from .../libcroco3_0.6.2-1_amd64.deb) ... Selecting previously deselected package gettext-base. Unpacking gettext-base (from .../gettext-base_0.17-8_amd64.deb) ... Selecting previously deselected package gettext. Unpacking gettext (from .../gettext_0.17-8_amd64.deb) ... Selecting previously deselected package intltool-debian. Unpacking intltool-debian (from .../intltool-debian_0.35.0+20060710.1_all.deb) ... Selecting previously deselected package po-debconf. Unpacking po-debconf (from .../po-debconf_1.0.16_all.deb) ... Selecting previously deselected package groff-base. Unpacking groff-base (from .../groff-base_1.20.1-6_amd64.deb) ... Selecting previously deselected package bsdmainutils. Unpacking bsdmainutils (from .../bsdmainutils_8.0.2_amd64.deb) ... Selecting previously deselected package man-db. Unpacking man-db (from .../man-db_2.5.6-4_amd64.deb) ... Selecting previously deselected package debhelper. Unpacking debhelper (from .../debhelper_7.4.8_all.deb) ... Selecting previously deselected package libdshconfig1. Unpacking libdshconfig1 (from .../libdshconfig1_0.20.13-1_amd64.deb) ... Selecting previously deselected package libdshconfig1-dev. Unpacking libdshconfig1-dev (from .../libdshconfig1-dev_0.20.13-1_amd64.deb) ... Selecting previously deselected package libsgmls-perl. Unpacking libsgmls-perl (from .../libsgmls-perl_1.03ii-32_all.deb) ... Selecting previously deselected package libsp1c2. Unpacking libsp1c2 (from .../libsp1c2_1.3.4-1.2.1-47_amd64.deb) ... Selecting previously deselected package sp. Unpacking sp (from .../sp_1.3.4-1.2.1-47_amd64.deb) ... Selecting previously deselected package po4a. Unpacking po4a (from .../archives/po4a_0.37.1-1_all.deb) ... Setting up libmagic1 (5.03-3) ... Setting up file (5.03-3) ... Setting up html2text (1.3.2a-14) ... Setting up libpcre3 (7.8-3) ... Setting up libglib2.0-0 (2.22.2-2) ... Setting up libxml2 (2.7.6.dfsg-1) ... Setting up libcroco3 (0.6.2-1) ... Setting up gettext-base (0.17-8) ... Setting up gettext (0.17-8) ... Setting up intltool-debian (0.35.0+20060710.1) ... Setting up po-debconf (1.0.16) ... Setting up groff-base (1.20.1-6) ... Setting up bsdmainutils (8.0.2) ... update-alternatives: using /usr/bin/bsd-write to provide /usr/bin/write (write) in auto mode. Setting up man-db (2.5.6-4) ... Building database of manual pages ... Setting up debhelper (7.4.8) ... Setting up libdshconfig1 (0.20.13-1) ... Setting up libdshconfig1-dev (0.20.13-1) ... Setting up libsgmls-perl (1.03ii-32) ... Setting up libsp1c2 (1.3.4-1.2.1-47) ... Setting up sp (1.3.4-1.2.1-47) ... Setting up po4a (0.37.1-1) ... Setting up pbuilder-satisfydepends-dummy (0.invalid.0) ... Reading package lists... Building dependency tree... Reading state information... Reading extended state information... Initializing package states... Writing extended state information... -> Finished parsing the build-deps Reading package lists... Building dependency tree... Reading state information... fakeroot is already the newest version. 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. W: no hooks of type A found -- ignoring dpkg-buildpackage: set CFLAGS to default value: -g -O2 dpkg-buildpackage: set CPPFLAGS to default value: dpkg-buildpackage: set LDFLAGS to default value: dpkg-buildpackage: set FFLAGS to default value: -g -O2 dpkg-buildpackage: set CXXFLAGS to default value: -g -O2 dpkg-buildpackage: source package dsh dpkg-buildpackage: source version 0.25.10-1 dpkg-buildpackage: source changed by Junichi Uekawa dpkg-buildpackage: host architecture amd64 fakeroot debian/rules clean dh_testdir dh_testroot rm -f build-stamp configure-stamp /usr/bin/make clean make[1]: Entering directory `/TESTDIR/dir2/dsh-0.25.10' make[1]: *** No rule to make target `clean'. Stop. make[1]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10' make: [clean] Error 2 (ignored) /usr/bin/make distclean make[1]: Entering directory `/TESTDIR/dir2/dsh-0.25.10' make[1]: *** No rule to make target `distclean'. Stop. make[1]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10' make: [clean] Error 2 (ignored) dh_clean dh_clean: Compatibility levels before 5 are deprecated. dpkg-source -b dsh-0.25.10 dpkg-source: info: using source format `1.0' dpkg-source: info: building dsh using existing dsh_0.25.10.orig.tar.gz dpkg-source: info: building dsh in dsh_0.25.10-1.diff.gz dpkg-source: warning: file dsh-0.25.10/dcp.sh has no final newline (either original or modified version) dpkg-source: warning: file dsh-0.25.10/debian/compat has no final newline (either original or modified version) dpkg-source: warning: the diff modifies the following upstream files: .cvsignore CVS/Entries CVS/Repository CVS/Root ChangeLog.OLD dcp.sh drshd.c dsh.1.ja.po m4/.cvsignore m4/CVS/Entries m4/CVS/Repository m4/CVS/Root po/.cvsignore po/CVS/Entries po/CVS/Repository po/CVS/Root po/insert-header.sin tests/.cvsignore tests/CVS/Entries tests/CVS/Repository tests/CVS/Root dpkg-source: info: use the '3.0 (quilt)' format to have separate and documented changes to upstream files, see dpkg-source(1) dpkg-source: info: building dsh in dsh_0.25.10-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 ISO C89... none needed checking dependency style of gcc... gcc3 checking for strerror in -lcposix... no checking for gcc... (cached) gcc checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) 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 ISO C89... (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 grep that handles long lines and -e... /bin/grep checking for egrep... /bin/grep -E checking for ANSI C header files... yes checking for sys/wait.h that is POSIX.1 compatible... yes checking build system type... x86_64-unknown-linux-gnu checking host system type... x86_64-unknown-linux-gnu checking for a sed that does not truncate output... /bin/sed checking for ld used by gcc... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for /usr/bin/ld option to reload object files... -r checking for BSD-compatible nm... /usr/bin/nm -B checking whether ln -s works... yes checking how to recognize dependent libraries... pass_all checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking dlfcn.h usability... yes checking dlfcn.h presence... yes checking for dlfcn.h... yes checking for g++... g++ checking whether we are using the GNU C++ compiler... yes checking whether g++ accepts -g... yes checking dependency style of g++... gcc3 checking how to run the C++ preprocessor... g++ -E checking for g77... no checking for xlf... no checking for f77... no checking for frt... no checking for pgf77... no checking for cf77... no checking for fort77... no checking for fl32... no checking for af77... no checking for xlf90... no checking for f90... no checking for pgf90... no checking for pghpf... no checking for epcf90... no checking for gfortran... no checking for g95... no checking for xlf95... no checking for f95... no checking for fort... no checking for ifort... no checking for ifc... no checking for efc... no checking for pgf95... no checking for lf95... no checking for ftn... no checking whether we are using the GNU Fortran 77 compiler... no checking whether accepts -g... no checking the maximum length of command line arguments... 3458764513820540925 checking command to parse /usr/bin/nm -B output from gcc object... ok checking for objdir... .libs checking for ar... ar checking for ranlib... ranlib checking for strip... strip checking if gcc supports -fno-rtti -fno-exceptions... no checking for gcc option to produce PIC... -fPIC checking if gcc PIC flag -fPIC works... yes checking if gcc static flag -static works... yes checking if gcc supports -c -o file.o... yes checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) 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 -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking for g++ option to produce PIC... -fPIC checking if g++ PIC flag -fPIC works... yes checking if g++ static flag -static works... yes checking if g++ supports -c -o file.o... yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate appending configuration tag "F77" to libtool checking 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 -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) 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: WARNING: po/Makefile.in.in seems to ignore the --datarootdir setting 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 `/TESTDIR/dir2/dsh-0.25.10' /usr/bin/make all-recursive make[2]: Entering directory `/TESTDIR/dir2/dsh-0.25.10' Making all in m4 make[3]: Entering directory `/TESTDIR/dir2/dsh-0.25.10/m4' make[3]: Nothing to be done for `all'. make[3]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10/m4' Making all in po make[3]: Entering directory `/TESTDIR/dir2/dsh-0.25.10/po' make[3]: Nothing to be done for `all'. make[3]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10/po' make[3]: Entering directory `/TESTDIR/dir2/dsh-0.25.10' 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/bash ./libtool --tag=CC --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 `/TESTDIR/dir2/dsh-0.25.10' make[2]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10' make[1]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10' /usr/bin/make check make[1]: Entering directory `/TESTDIR/dir2/dsh-0.25.10' Making check in m4 make[2]: Entering directory `/TESTDIR/dir2/dsh-0.25.10/m4' make[2]: Nothing to be done for `check'. make[2]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10/m4' Making check in po make[2]: Entering directory `/TESTDIR/dir2/dsh-0.25.10/po' make[2]: Nothing to be done for `check'. make[2]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10/po' make[2]: Entering directory `/TESTDIR/dir2/dsh-0.25.10' /usr/bin/make dsh make[3]: Entering directory `/TESTDIR/dir2/dsh-0.25.10' make[3]: `dsh' is up to date. make[3]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10' /usr/bin/make check-TESTS make[3]: Entering directory `/TESTDIR/dir2/dsh-0.25.10' PASS: tests/param-f.sh dsh: File ./tests/nonexistent.file could not be opened for read PASS: tests/param-f-fail.sh PASS: tests/param-f-with-space.sh PASS: tests/param-m.sh test to check that unknown parameter checking is right. ./dsh: unrecognized option '--unknown-parameter' ./dsh: invalid option -- 'u' PASS: tests/param-unknown.sh test1 test2 dsh: Process terminated (before write). PASS: tests/param-i.sh Check that cn4 option is working. PASS: tests/param-cn4.sh test to check that -b0 is rejected, and -b1 is accepted Buffer size needs to be greater than 1 Buffer size needs to be greater than 1 a b PASS: tests/param-b-0.sh dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call success dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call success success success success success a: dsh: Failed executing ./invalid-exec-file with llexec call b: dsh: Failed executing ./invalid-exec-file with llexec call 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 dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call success PASS: tests/param-r-invalid.sh 1: 1 2: 2 dsh: fork limit and wait shell cannot be specified at the same time PASS: tests/param-F-invalid.sh Sun Nov 29 10:20:01 UTC 2009 2: Using sleep as the remote shell 2: Show machine names on output 2: Adding machine 5,4,3,2,1 to list 2: Setting forklimit to 3 and wait_shell to 0 2: DUMPing parameters passed to llexec 2: [2] Using sleep as the remote shell Show machine names on output Adding machine 5,4,3,2,1 to list Setting forklimit to 3 and wait_shell to 0 DUMPing parameters passed to llexec [2] 3: Using sleep as the remote shell 3: Show machine names on output 3: Adding machine 5,4,3,2,1 to list 3: Setting forklimit to 3 and wait_shell to 0 3: DUMPing parameters passed to llexec 3: [3] Using sleep as the remote shell Show machine names on output Adding machine 5,4,3,2,1 to list Setting forklimit to 3 and wait_shell to 0 DUMPing parameters passed to llexec [3] 1: Using sleep as the remote shell 1: Show machine names on output 1: Adding machine 5,4,3,2,1 to list 1: Setting forklimit to 3 and wait_shell to 0 1: ... Waiting for process to end with waitpid 1: DUMPing parameters passed to llexec 1: [1] Using sleep as the remote shell Show machine names on output Adding machine 5,4,3,2,1 to list Setting forklimit to 3 and wait_shell to 0 ... Waiting for process to end with waitpid DUMPing parameters passed to llexec [1] 4: Using sleep as the remote shell 4: Show machine names on output 4: Adding machine 5,4,3,2,1 to list 4: Setting forklimit to 3 and wait_shell to 0 4: DUMPing parameters passed to llexec 4: [4] Using sleep as the remote shell Show machine names on output Adding machine 5,4,3,2,1 to list Setting forklimit to 3 and wait_shell to 0 DUMPing parameters passed to llexec [4] 5: Using sleep as the remote shell 5: Show machine names on output 5: Adding machine 5,4,3,2,1 to list 5: Setting forklimit to 3 and wait_shell to 0 5: DUMPing parameters passed to llexec 5: [5] Using sleep as the remote shell Show machine names on output Adding machine 5,4,3,2,1 to list Setting forklimit to 3 and wait_shell to 0 DUMPing parameters passed to llexec [5] --- Terminated running Using sleep as the remote shell Show machine names on output Adding machine 5,4,3,2,1 to list Setting forklimit to 3 and wait_shell to 0 ... Waiting for process to end with waitpid ... Waiting for process to end with waitpid Sun Nov 29 10:20:06 UTC 2009 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 `/TESTDIR/dir2/dsh-0.25.10' make[2]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10' make[1]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10' touch build-stamp fakeroot debian/rules binary dh_testdir dh_testroot dh_clean -k dh_clean: Compatibility levels before 5 are deprecated. dh_installdirs dh_installdirs: Compatibility levels before 5 are deprecated. # Add here commands to install the package into debian/dsh. /usr/bin/make install DESTDIR=/TESTDIR/dir2/dsh-0.25.10/debian/dsh make[1]: Entering directory `/TESTDIR/dir2/dsh-0.25.10' Making install in m4 make[2]: Entering directory `/TESTDIR/dir2/dsh-0.25.10/m4' make[3]: Entering directory `/TESTDIR/dir2/dsh-0.25.10/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 `/TESTDIR/dir2/dsh-0.25.10/m4' make[2]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10/m4' Making install in po make[2]: Entering directory `/TESTDIR/dir2/dsh-0.25.10/po' /bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/share mkdir -p -- /TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/share mkdir -p -- /TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/share/locale/ja/LC_MESSAGES installing ja.gmo as /TESTDIR/dir2/dsh-0.25.10/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` /TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/share/gettext/po; \ for file in Makefile.in.in Makevars remove-potcdate.sin ; do \ /usr/bin/install -c -m 644 ./$file \ /TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/share/gettext/po/$file; \ done; \ else \ : ; \ fi make[2]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10/po' make[2]: Entering directory `/TESTDIR/dir2/dsh-0.25.10' make[3]: Entering directory `/TESTDIR/dir2/dsh-0.25.10' test -z "/usr/bin" || mkdir -p -- "/TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/bin" /bin/bash ./libtool --mode=install install -p -o root -g root -m 755 -s 'dsh' '/TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/bin/dsh' install -p -o root -g root -m 755 -s dsh /TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/bin/dsh test -z "/etc/dsh" || mkdir -p -- "/TESTDIR/dir2/dsh-0.25.10/debian/dsh/etc/dsh" /usr/bin/install -c -m 644 'dsh.conf' '/TESTDIR/dir2/dsh-0.25.10/debian/dsh/etc/dsh/dsh.conf' for LANGS in ja ; do \ mkdir -p /TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/share/man/$LANGS/man1 ;\ mkdir -p /TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/share/man/$LANGS/man5 ;\ sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.$LANGS.1 \ > /TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/share/man/$LANGS/man1/dsh.1 ; \ sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.conf.$LANGS.5 \ > /TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/share/man/$LANGS/man5/dsh.conf.5 ; \ done test -z "/usr/share/man/man1" || mkdir -p -- "/TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/share/man/man1" /usr/bin/install -c -m 644 './build-man/dsh.1' '/TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/share/man/man1/dsh.1' test -z "/usr/share/man/man5" || mkdir -p -- "/TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/share/man/man5" /usr/bin/install -c -m 644 './build-man/dsh.conf.5' '/TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/share/man/man5/dsh.conf.5' make[3]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10' make[2]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10' make[1]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10' cp /TESTDIR/dir2/dsh-0.25.10/debian/machines.list /TESTDIR/dir2/dsh-0.25.10/debian/dsh/etc/dsh/machines.list cp /TESTDIR/dir2/dsh-0.25.10/dsh.conf /TESTDIR/dir2/dsh-0.25.10/debian/dsh/etc/dsh/dsh.conf ln -s ../machines.list /TESTDIR/dir2/dsh-0.25.10/debian/dsh/etc/dsh/group/all install -d /TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/lib/update-cluster install -m 755 /TESTDIR/dir2/dsh-0.25.10/debian/dsh.updatelist /TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/lib/update-cluster/ dh_testdir dh_testroot dh_installdocs NEWS dh_installdocs: Compatibility levels before 5 are deprecated. dh_installexamples dh_installexamples: Compatibility levels before 5 are deprecated. dh_installmenu dh_installmenu: Compatibility levels before 5 are deprecated. dh_installman dh_installman: Compatibility levels before 5 are deprecated. dh_installchangelogs ChangeLog dh_installchangelogs: Compatibility levels before 5 are deprecated. dh_link dh_link: Compatibility levels before 5 are deprecated. dh_strip dh_strip: Compatibility levels before 5 are deprecated. dh_shlibdeps dh_shlibdeps: Compatibility levels before 5 are deprecated. dh_compress dh_compress: Compatibility levels before 5 are deprecated. dh_fixperms dh_fixperms: Compatibility levels before 5 are deprecated. dh_installdeb dh_installdeb: Compatibility levels before 5 are deprecated. dh_gencontrol dh_gencontrol: Compatibility levels before 5 are deprecated. dh_md5sums dh_md5sums: Compatibility levels before 5 are deprecated. dh_builddeb dh_builddeb: Compatibility levels before 5 are deprecated. dpkg-deb: building package `dsh' in `../dsh_0.25.10-1_amd64.deb'. dpkg-genchanges >../dsh_0.25.10-1_amd64.changes dpkg-genchanges: including full source code in upload dpkg-buildpackage: full upload (original source is included) W: no hooks of type B found -- ignoring I: unmounting /TESTDIR/dir2 filesystem I: unmounting dev/pts filesystem I: unmounting proc filesystem I: cleaning the build env I: removing directory /TESTDIR/dir3/NUM and its subdirectories pbuilder-0.215ubuntu7/testsuite/cdebootstrap/pbuilder-update-lenny-sid-experimental.log0000664000000000000000000001325512312041170026454 0ustar Upgrading for distribution sid Building the build Environment -> extracting base tarball [/TESTDIR/testimage] -> creating local configuration -> copying local configuration -> Installing apt-lines -> Installing apt-lines and pinning for experimental -> mounting /proc filesystem -> mounting /dev/pts filesystem -> policy-rc.d already exists Refreshing the base.tgz -> upgrading packages Hit http://localhost sid Release.gpg Get:1 http://localhost experimental Release.gpg [189B] Hit http://localhost sid Release Get:2 http://localhost experimental Release [85.6kB] Ign http://localhost sid/main Packages/DiffIndex Ign http://localhost experimental/main Packages Ign http://localhost sid/main Packages Get:3 http://localhost experimental/main Packages [521kB] Hit http://localhost sid/main Packages Fetched XXXB in Xs (XXXXXB/s) Reading package lists... Obtaining the cached apt archive contents Reading package lists... Building dependency tree... Reading state information... The following packages will be upgraded: apt binutils bsdutils cpio diff libc6 libc6-dev libgmp3c2 libsigc++-2.0-0c2a mktemp mount util-linux debconf: delaying package configuration, since apt-utils is not installed 12 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. Need to get 0B/13.9MB of archives. After this operation, 2601kB of additional disk space will be used. (Reading database ... 9622 files and directories currently installed.) Preparing to replace diff 2.8.1-12 (using .../diff_2.8.7-0.2_i386.deb) ... Unpacking replacement diff ... Setting up diff (2.8.7-0.2) ... (Reading database ... 9630 files and directories currently installed.) Preparing to replace mktemp 1.5-9 (using .../mktemp_1.6-0exp1_i386.deb) ... Unpacking replacement mktemp ... Setting up mktemp (1.6-0exp1) ... (Reading database ... 9630 files and directories currently installed.) Preparing to replace mount 2.13.1.1-1 (using .../mount_2.14~rc2-0_i386.deb) ... Unpacking replacement mount ... Setting up mount (2.14~rc2-0) ... (Reading database ... 9630 files and directories currently installed.) Preparing to replace util-linux 2.13.1.1-1 (using .../util-linux_2.14~rc2-0_i386.deb) ... Unpacking replacement util-linux ... Setting up util-linux (2.14~rc2-0) ... (Reading database ... 9632 files and directories currently installed.) Preparing to replace libc6-dev 2.7-13 (using .../libc6-dev_2.8+20080809-1_i386.deb) ... Unpacking replacement libc6-dev ... Preparing to replace libc6 2.7-13 (using .../libc6_2.8+20080809-1_i386.deb) ... Unpacking replacement libc6 ... Setting up libc6 (2.8+20080809-1) ... Installing new version of config file /etc/gai.conf ... ************************************ All rc.d operations denied by policy ************************************ (Reading database ... 9641 files and directories currently installed.) Preparing to replace bsdutils 1:2.13.1.1-1 (using .../bsdutils_1%3a2.14~rc2-0_i386.deb) ... Unpacking replacement bsdutils ... Setting up bsdutils (1:2.14~rc2-0) ... (Reading database ... 9641 files and directories currently installed.) Preparing to replace apt 0.7.14+b1 (using .../apt_0.7.15~exp3_i386.deb) ... Unpacking replacement apt ... Setting up apt (0.7.15~exp3) ... Installing new version of config file /etc/cron.daily/apt ... gpg: key 6070D3A1: "Debian Archive Automatic Signing Key (4.0/etch) " not changed gpg: key ADB11277: "Etch Stable Release Key " not changed gpg: key BBE55AB3: "Debian-Volatile Archive Automatic Signing Key (4.0/etch)" not changed gpg: key F42584E6: "Lenny Stable Release Key " not changed gpg: Total number processed: 4 gpg: unchanged: 4 (Reading database ... 9642 files and directories currently installed.) Preparing to replace cpio 2.9-14 (using .../cpio_2.9.90-1_i386.deb) ... Unpacking replacement cpio ... Preparing to replace libsigc++-2.0-0c2a 2.0.18-2 (using .../libsigc++-2.0-0c2a_2.2.2-1_i386.deb) ... Unpacking replacement libsigc++-2.0-0c2a ... Preparing to replace binutils 2.18.1~cvs20080103-7 (using .../binutils_2.18.90.20080910-1_i386.deb) ... Unpacking replacement binutils ... Preparing to replace libgmp3c2 2:4.2.2+dfsg-3 (using .../libgmp3c2_2%3a4.2.4+dfsg-1_i386.deb) ... Unpacking replacement libgmp3c2 ... Setting up libc6-dev (2.8+20080809-1) ... Setting up cpio (2.9.90-1) ... Setting up libsigc++-2.0-0c2a (2.2.2-1) ... Setting up binutils (2.18.90.20080910-1) ... Setting up libgmp3c2 (2:4.2.4+dfsg-1) ... Reading package lists... Building dependency tree... Reading state information... build-essential is already the newest version. dpkg-dev is already the newest version. apt is already the newest version. aptitude is already the newest version. 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. Copying back the cached apt archive contents umount: none: not found umount: /sys: not mounted umount: none: not found umount: /sys: not mounted umount: /run: not found umount: usbfs: not found umount: /proc/bus/usb: not mounted umount: usbfs: not found umount: /proc/bus/usb: not mounted umount: tmpfs: not found umount: /dev/shm: not mounted umount: tmpfs: not found umount: /dev/shm: not mounted umount: tmpfs: not found umount: /lib/init/rw: not mounted umount: tmpfs: not found umount: /lib/init/rw: not mounted cat: /var/run/inetd.pid: No such file or directory kill: usage: kill [-s sigspec | -n signum | -sigspec] pid | jobspec ... or kill -l [sigspec] -> user script /var/cache/pbuilder/build//NUM/tmp/hooks/E50-initscripts-2.86.ds1-7.workaround.sh finished -> unmounting dev/pts filesystem -> unmounting proc filesystem -> creating base tarball [/TESTDIR/testimage] -> cleaning the build env -> removing directory /var/cache/pbuilder/build//NUM and its subdirectories pbuilder-0.215ubuntu7/testsuite/hooks/0000775000000000000000000000000012312041255014720 5ustar pbuilder-0.215ubuntu7/testsuite/normal/0000775000000000000000000000000012312041256015066 5ustar pbuilder-0.215ubuntu7/testsuite/normal/pbuilder-build-dsh-lenny.log0000664000000000000000000007071512312041170022400 0ustar I: using fakeroot in build. I: Current time: Sun Nov 29 18:57:27 JST 2009 I: pbuilder-time-stamp: 1259488647 I: Building the build Environment I: extracting base tarball [/TESTDIR/testimage] I: creating local configuration I: copying local configuration I: mounting /proc filesystem I: mounting /dev/pts filesystem I: policy-rc.d already exists I: Installing the build-deps -> Attempting to satisfy build-dependencies -> Creating pbuilder-satisfydepends-dummy package Package: pbuilder-satisfydepends-dummy Version: 0.invalid.0 Architecture: amd64 Maintainer: Debian Pbuilder Team Description: Dummy package to satisfy dependencies with aptitude - created by pbuilder This package was created automatically by pbuilder and should Depends: debhelper (>> 3.0.0), libdshconfig1-dev (>= 0.20.11-1), po4a dpkg-deb: building package `pbuilder-satisfydepends-dummy' in `/tmp/satisfydepends-aptitude/pbuilder-satisfydepends-dummy.deb'. Reading package lists... Building dependency tree... Reading state information... aptitude is already the newest version. 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. Selecting previously deselected package pbuilder-satisfydepends-dummy. (Reading database ... 9662 files and directories currently installed.) Unpacking pbuilder-satisfydepends-dummy (from .../pbuilder-satisfydepends-dummy.deb) ... dpkg: dependency problems prevent configuration of pbuilder-satisfydepends-dummy: pbuilder-satisfydepends-dummy depends on debhelper (>> 3.0.0); however: Package debhelper is not installed. pbuilder-satisfydepends-dummy depends on libdshconfig1-dev (>= 0.20.11-1); however: Package libdshconfig1-dev is not installed. pbuilder-satisfydepends-dummy depends on po4a; however: Package po4a is not installed. dpkg: error processing pbuilder-satisfydepends-dummy (--install): dependency problems - leaving unconfigured Errors were encountered while processing: pbuilder-satisfydepends-dummy Reading package lists... Building dependency tree... Reading state information... Initializing package states... Writing extended state information... The following NEW packages will be installed: bsdmainutils{a} debhelper{a} file{a} gettext{a} gettext-base{a} groff-base{a} html2text{a} intltool-debian{a} libdshconfig1{a} libdshconfig1-dev{a} libmagic1{a} libsgmls-perl{a} libsp1c2{a} man-db{a} po-debconf{a} po4a{a} sp{a} The following partially installed packages will be configured: pbuilder-satisfydepends-dummy 0 packages upgraded, 17 newly installed, 0 to remove and 0 not upgraded. Need to get 8922kB of archives. After unpacking 28.1MB will be used. Writing extended state information... Get:1 http://localhost lenny/main libmagic1 4.26-1 [369kB] Get:2 http://localhost lenny/main file 4.26-1 [44.5kB] Get:3 http://localhost lenny/main html2text 1.3.2a-5 [95.9kB] Get:4 http://localhost lenny/main gettext-base 0.17-4 [136kB] Get:5 http://localhost lenny/main gettext 0.17-4 [2791kB] Get:6 http://localhost lenny/main intltool-debian 0.35.0+20060710.1 [30.8kB] Get:7 http://localhost lenny/main po-debconf 1.0.15 [237kB] Get:8 http://localhost lenny/main groff-base 1.18.1.1-21 [898kB] Get:9 http://localhost lenny/main bsdmainutils 6.1.10 [179kB] Get:10 http://localhost lenny/main man-db 2.5.2-4 [1107kB] Get:11 http://localhost lenny/main debhelper 7.0.15 [554kB] Get:12 http://localhost lenny/main libdshconfig1 0.20.13-1 [11.0kB] Get:13 http://localhost lenny/main libdshconfig1-dev 0.20.13-1 [25.4kB] Get:14 http://localhost lenny/main libsgmls-perl 1.03ii-32 [27.8kB] Get:15 http://localhost lenny/main libsp1c2 1.3.4-1.2.1-47 [1386kB] Get:16 http://localhost lenny/main sp 1.3.4-1.2.1-47 [182kB] Get:17 http://localhost lenny/main po4a 0.34-2 [847kB] debconf: delaying package configuration, since apt-utils is not installed Fetched XXXB in Xs (XXXXXB/s) SELECTING PREVIOUSLY DESELECTED PACKAGE LIBMAGIC1. (READING DATABASE ... 9662 FILES AND DIRECTORIES CURRENTLY INSTALLED.) UNPACKING LIBMAGIC1 (FROM .../LIBMAGIC1_4.26-1_AMD64.DEB) ... SELECTING PREVIOUSLY DESELECTED PACKAGE FILE. UNPACKING FILE (FROM .../ARCHIVES/FILE_4.26-1_AMD64.DEB) ... SELECTING PREVIOUSLY DESELECTED PACKAGE HTML2TEXT. UNPACKING HTML2TEXT (FROM .../HTML2TEXT_1.3.2A-5_AMD64.DEB) ... SELECTING PREVIOUSLY DESELECTED PACKAGE GETTEXT-BASE. UNPACKING GETTEXT-BASE (FROM .../GETTEXT-BASE_0.17-4_AMD64.DEB) ... SELECTING PREVIOUSLY DESELECTED PACKAGE GETTEXT. UNPACKING GETTEXT (FROM .../GETTEXT_0.17-4_AMD64.DEB) ... SELECTING PREVIOUSLY DESELECTED PACKAGE INTLTOOL-DEBIAN. UNPACKING INTLTOOL-DEBIAN (FROM .../INTLTOOL-DEBIAN_0.35.0+20060710.1_ALL.DEB) ... SELECTING PREVIOUSLY DESELECTED PACKAGE PO-DEBCONF. UNPACKING PO-DEBCONF (FROM .../PO-DEBCONF_1.0.15_ALL.DEB) ... SELECTING PREVIOUSLY DESELECTED PACKAGE GROFF-BASE. UNPACKING GROFF-BASE (FROM .../GROFF-BASE_1.18.1.1-21_AMD64.DEB) ... SELECTING PREVIOUSLY DESELECTED PACKAGE BSDMAINUTILS. UNPACKING BSDMAINUTILS (FROM .../BSDMAINUTILS_6.1.10_AMD64.DEB) ... SELECTING PREVIOUSLY DESELECTED PACKAGE MAN-DB. UNPACKING MAN-DB (FROM .../MAN-DB_2.5.2-4_AMD64.DEB) ... SELECTING PREVIOUSLY DESELECTED PACKAGE DEBHELPER. UNPACKING DEBHELPER (FROM .../DEBHELPER_7.0.15_ALL.DEB) ... SELECTING PREVIOUSLY DESELECTED PACKAGE LIBDSHCONFIG1. UNPACKING LIBDSHCONFIG1 (FROM .../LIBDSHCONFIG1_0.20.13-1_AMD64.DEB) ... SELECTING PREVIOUSLY DESELECTED PACKAGE LIBDSHCONFIG1-DEV. UNPACKING LIBDSHCONFIG1-DEV (FROM .../LIBDSHCONFIG1-DEV_0.20.13-1_AMD64.DEB) ... SELECTING PREVIOUSLY DESELECTED PACKAGE LIBSGMLS-PERL. UNPACKING LIBSGMLS-PERL (FROM .../LIBSGMLS-PERL_1.03II-32_ALL.DEB) ... SELECTING PREVIOUSLY DESELECTED PACKAGE LIBSP1C2. UNPACKING LIBSP1C2 (FROM .../LIBSP1C2_1.3.4-1.2.1-47_AMD64.DEB) ... SELECTING PREVIOUSLY DESELECTED PACKAGE SP. UNPACKING SP (FROM .../SP_1.3.4-1.2.1-47_AMD64.DEB) ... SELECTING PREVIOUSLY DESELECTED PACKAGE PO4A. UNPACKING PO4A (FROM .../ARCHIVES/PO4A_0.34-2_ALL.DEB) ... SETTING UP LIBMAGIC1 (4.26-1) ... SETTING UP FILE (4.26-1) ... SETTING UP HTML2TEXT (1.3.2A-5) ... SETTING UP GETTEXT-BASE (0.17-4) ... SETTING UP GETTEXT (0.17-4) ... SETTING UP INTLTOOL-DEBIAN (0.35.0+20060710.1) ... SETTING UP PO-DEBCONF (1.0.15) ... SETTING UP GROFF-BASE (1.18.1.1-21) ... SETTING UP BSDMAINUTILS (6.1.10) ... SETTING UP MAN-DB (2.5.2-4) ... BUILDING DATABASE OF MANUAL PAGES ... SETTING UP DEBHELPER (7.0.15) ... SETTING UP LIBDSHCONFIG1 (0.20.13-1) ... SETTING UP LIBDSHCONFIG1-DEV (0.20.13-1) ... SETTING UP LIBSGMLS-PERL (1.03II-32) ... SETTING UP LIBSP1C2 (1.3.4-1.2.1-47) ... SETTING UP SP (1.3.4-1.2.1-47) ... SETTING UP PO4A (0.34-2) ... SETTING UP PBUILDER-SATISFYDEPENDS-DUMMY (0.INVALID.0) ... Reading package lists... Building dependency tree... Reading state information... Reading extended state information... Initializing package states... Writing extended state information... -> Finished parsing the build-deps Reading package lists... Building dependency tree... Reading state information... aptitude is already the newest version. The following NEW packages will be installed: fakeroot 0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded. Need to get 116kB of archives. After this operation, 467kB of additional disk space will be used. Get:1 http://localhost lenny/main fakeroot 1.11 [116kB] debconf: delaying package configuration, since apt-utils is not installed Fetched XXXB in Xs (XXXXXB/s) Selecting previously deselected package fakeroot. (Reading database ... 11149 files and directories currently installed.) Unpacking fakeroot (from .../fakeroot_1.11_amd64.deb) ... Processing triggers for man-db ... Setting up fakeroot (1.11) ... I: Copying source file I: copying [/TESTDIR/dir1/dsh_0.25.10-1.dsc] I: copying [/TESTDIR/dir1/dsh_0.25.10.orig.tar.gz] I: copying [/TESTDIR/dir1/dsh_0.25.10-1.diff.gz] I: Extracting source gpg: new configuration file `/tmp/buildd/.gnupg/gpg.conf' created gpg: WARNING: options in `/tmp/buildd/.gnupg/gpg.conf' are not yet active during this run gpg: Signature made Fri Dec 14 00:23:24 2007 UTC using DSA key ID E81E55C1 gpg: Can't check signature: public key not found dpkg-source: extracting dsh in dsh-0.25.10 dpkg-source: info: unpacking dsh_0.25.10.orig.tar.gz dpkg-source: info: applying dsh_0.25.10-1.diff.gz I: Building the package dpkg-buildpackage: set CFLAGS to default value: -g -O2 dpkg-buildpackage: set CPPFLAGS to default value: dpkg-buildpackage: set LDFLAGS to default value: dpkg-buildpackage: set FFLAGS to default value: -g -O2 dpkg-buildpackage: set CXXFLAGS to default value: -g -O2 dpkg-buildpackage: source package dsh dpkg-buildpackage: source version 0.25.10-1 dpkg-buildpackage: host architecture amd64 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.10' make[1]: *** No rule to make target `clean'. Stop. make[1]: Leaving directory `/tmp/buildd/dsh-0.25.10' make: [clean] Error 2 (ignored) /usr/bin/make distclean make[1]: Entering directory `/tmp/buildd/dsh-0.25.10' make[1]: *** No rule to make target `distclean'. Stop. make[1]: Leaving directory `/tmp/buildd/dsh-0.25.10' make: [clean] Error 2 (ignored) dh_clean dpkg-source -b dsh-0.25.10 dpkg-source: info: using source format `1.0' dpkg-source: info: building dsh using existing dsh_0.25.10.orig.tar.gz dpkg-source: info: building dsh in dsh_0.25.10-1.diff.gz dpkg-source: warning: file dsh-0.25.10/dcp.sh has no final newline (either original or modified version) dpkg-source: warning: file dsh-0.25.10/debian/compat has no final newline (either original or modified version) dpkg-source: info: building dsh in dsh_0.25.10-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 ISO C89... none needed checking dependency style of gcc... gcc3 checking for strerror in -lcposix... no checking for gcc... (cached) gcc checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) 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 ISO C89... (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 grep that handles long lines and -e... /bin/grep checking for egrep... /bin/grep -E checking for ANSI C header files... yes checking for sys/wait.h that is POSIX.1 compatible... yes checking build system type... x86_64-unknown-linux-gnu checking host system type... x86_64-unknown-linux-gnu checking for a sed that does not truncate output... /bin/sed checking for ld used by gcc... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for /usr/bin/ld option to reload object files... -r checking for BSD-compatible nm... /usr/bin/nm -B checking whether ln -s works... yes checking how to recognize dependent libraries... pass_all checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking dlfcn.h usability... yes checking dlfcn.h presence... yes checking for dlfcn.h... yes checking for g++... g++ checking whether we are using the GNU C++ compiler... yes checking whether g++ accepts -g... yes checking dependency style of g++... gcc3 checking how to run the C++ preprocessor... g++ -E checking for g77... no checking for xlf... no checking for f77... no checking for frt... no checking for pgf77... no checking for cf77... no checking for fort77... no checking for fl32... no checking for af77... no checking for xlf90... no checking for f90... no checking for pgf90... no checking for pghpf... no checking for epcf90... no checking for gfortran... no checking for g95... no checking for xlf95... no checking for f95... no checking for fort... no checking for ifort... no checking for ifc... no checking for efc... no checking for pgf95... no checking for lf95... no checking for ftn... no checking whether we are using the GNU Fortran 77 compiler... no checking whether accepts -g... no checking the maximum length of command line arguments... 98304 checking command to parse /usr/bin/nm -B output from gcc object... ok checking for objdir... .libs checking for ar... ar checking for ranlib... ranlib checking for strip... strip checking if gcc supports -fno-rtti -fno-exceptions... no checking for gcc option to produce PIC... -fPIC checking if gcc PIC flag -fPIC works... yes checking if gcc static flag -static works... yes checking if gcc supports -c -o file.o... yes checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) 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 -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking for g++ option to produce PIC... -fPIC checking if g++ PIC flag -fPIC works... yes checking if g++ static flag -static works... yes checking if g++ supports -c -o file.o... yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate appending configuration tag "F77" to libtool checking 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 -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) 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: WARNING: po/Makefile.in.in seems to ignore the --datarootdir setting 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.10' /usr/bin/make all-recursive make[2]: Entering directory `/tmp/buildd/dsh-0.25.10' Making all in m4 make[3]: Entering directory `/tmp/buildd/dsh-0.25.10/m4' make[3]: Nothing to be done for `all'. make[3]: Leaving directory `/tmp/buildd/dsh-0.25.10/m4' Making all in po make[3]: Entering directory `/tmp/buildd/dsh-0.25.10/po' make[3]: Nothing to be done for `all'. make[3]: Leaving directory `/tmp/buildd/dsh-0.25.10/po' make[3]: Entering directory `/tmp/buildd/dsh-0.25.10' 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 --tag=CC --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.10' make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10' make[1]: Leaving directory `/tmp/buildd/dsh-0.25.10' /usr/bin/make check make[1]: Entering directory `/tmp/buildd/dsh-0.25.10' Making check in m4 make[2]: Entering directory `/tmp/buildd/dsh-0.25.10/m4' make[2]: Nothing to be done for `check'. make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10/m4' Making check in po make[2]: Entering directory `/tmp/buildd/dsh-0.25.10/po' make[2]: Nothing to be done for `check'. make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10/po' make[2]: Entering directory `/tmp/buildd/dsh-0.25.10' /usr/bin/make dsh make[3]: Entering directory `/tmp/buildd/dsh-0.25.10' make[3]: `dsh' is up to date. make[3]: Leaving directory `/tmp/buildd/dsh-0.25.10' /usr/bin/make check-TESTS make[3]: Entering directory `/tmp/buildd/dsh-0.25.10' PASS: tests/param-f.sh dsh: File ./tests/nonexistent.file could not be opened for read PASS: tests/param-f-fail.sh PASS: tests/param-f-with-space.sh PASS: tests/param-m.sh test to check that unknown parameter checking is right. ./dsh: unrecognized option `--unknown-parameter' ./dsh: invalid option -- u PASS: tests/param-unknown.sh test1 test2 dsh: Process terminated (before write). PASS: tests/param-i.sh Check that cn4 option is working. PASS: tests/param-cn4.sh test to check that -b0 is rejected, and -b1 is accepted Buffer size needs to be greater than 1 Buffer size needs to be greater than 1 a b PASS: tests/param-b-0.sh dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call success dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call success success success success success a: dsh: Failed executing ./invalid-exec-file with llexec call b: dsh: Failed executing ./invalid-exec-file with llexec call c: dsh: Failed executing ./invalid-exec-file with llexec call d: dsh: Failed executing ./invalid-exec-file with llexec call success dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call success PASS: tests/param-r-invalid.sh 1: 1 2: 2 dsh: fork limit and wait shell cannot be specified at the same time PASS: tests/param-F-invalid.sh Sun Nov 29 09:58:26 UTC 2009 2: Using sleep as the remote shell 2: Show machine names on output 2: Adding machine 5,4,3,2,1 to list 2: Setting forklimit to 3 and wait_shell to 0 2: DUMPing parameters passed to llexec 2: [2] Using sleep as the remote shell Show machine names on output Adding machine 5,4,3,2,1 to list Setting forklimit to 3 and wait_shell to 0 DUMPing parameters passed to llexec [2] 3: Using sleep as the remote shell 3: Show machine names on output 3: Adding machine 5,4,3,2,1 to list 3: Setting forklimit to 3 and wait_shell to 0 3: DUMPing parameters passed to llexec 3: [3] Using sleep as the remote shell Show machine names on output Adding machine 5,4,3,2,1 to list Setting forklimit to 3 and wait_shell to 0 DUMPing parameters passed to llexec [3] 1: Using sleep as the remote shell 1: Show machine names on output 1: Adding machine 5,4,3,2,1 to list 1: Setting forklimit to 3 and wait_shell to 0 1: ... Waiting for process to end with waitpid 1: DUMPing parameters passed to llexec 1: [1] Using sleep as the remote shell Show machine names on output Adding machine 5,4,3,2,1 to list Setting forklimit to 3 and wait_shell to 0 ... Waiting for process to end with waitpid DUMPing parameters passed to llexec [1] 4: Using sleep as the remote shell 4: Show machine names on output 4: Adding machine 5,4,3,2,1 to list 4: Setting forklimit to 3 and wait_shell to 0 4: DUMPing parameters passed to llexec 4: [4] Using sleep as the remote shell Show machine names on output Adding machine 5,4,3,2,1 to list Setting forklimit to 3 and wait_shell to 0 DUMPing parameters passed to llexec [4] 5: Using sleep as the remote shell 5: Show machine names on output 5: Adding machine 5,4,3,2,1 to list 5: Setting forklimit to 3 and wait_shell to 0 5: DUMPing parameters passed to llexec 5: [5] Using sleep as the remote shell Show machine names on output Adding machine 5,4,3,2,1 to list Setting forklimit to 3 and wait_shell to 0 DUMPing parameters passed to llexec [5] --- Terminated running Using sleep as the remote shell Show machine names on output Adding machine 5,4,3,2,1 to list Setting forklimit to 3 and wait_shell to 0 ... Waiting for process to end with waitpid ... Waiting for process to end with waitpid Sun Nov 29 09:58:31 UTC 2009 PASS: tests/param-F-forklimit.sh PASS: tests/param-gnu-getopt.sh PASS: tests/news-okay.sh b: b a: a c: c PASS: tests/segv-catcher.sh l w PASS: tests/test-bufferoverflow.sh PASS: tests/machinelist-comment-test.sh PASS: tests/machinelist-order.sh =================== All 17 tests passed =================== make[3]: Leaving directory `/tmp/buildd/dsh-0.25.10' make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10' make[1]: Leaving directory `/tmp/buildd/dsh-0.25.10' 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.10/debian/dsh make[1]: Entering directory `/tmp/buildd/dsh-0.25.10' Making install in m4 make[2]: Entering directory `/tmp/buildd/dsh-0.25.10/m4' make[3]: Entering directory `/tmp/buildd/dsh-0.25.10/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.10/m4' make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10/m4' Making install in po make[2]: Entering directory `/tmp/buildd/dsh-0.25.10/po' /bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share mkdir -p -- /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share mkdir -p -- /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/locale/ja/LC_MESSAGES installing ja.gmo as /tmp/buildd/dsh-0.25.10/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.10/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.10/debian/dsh/usr/share/gettext/po/$file; \ done; \ else \ : ; \ fi make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10/po' make[2]: Entering directory `/tmp/buildd/dsh-0.25.10' make[3]: Entering directory `/tmp/buildd/dsh-0.25.10' test -z "/usr/bin" || mkdir -p -- "/tmp/buildd/dsh-0.25.10/debian/dsh/usr/bin" /bin/sh ./libtool --mode=install install -p -o root -g root -m 755 -s 'dsh' '/tmp/buildd/dsh-0.25.10/debian/dsh/usr/bin/dsh' install -p -o root -g root -m 755 -s dsh /tmp/buildd/dsh-0.25.10/debian/dsh/usr/bin/dsh test -z "/etc/dsh" || mkdir -p -- "/tmp/buildd/dsh-0.25.10/debian/dsh/etc/dsh" /usr/bin/install -c -m 644 'dsh.conf' '/tmp/buildd/dsh-0.25.10/debian/dsh/etc/dsh/dsh.conf' for LANGS in ja ; do \ mkdir -p /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/$LANGS/man1 ;\ mkdir -p /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/$LANGS/man5 ;\ sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.$LANGS.1 \ > /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/$LANGS/man1/dsh.1 ; \ sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.conf.$LANGS.5 \ > /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/$LANGS/man5/dsh.conf.5 ; \ done test -z "/usr/share/man/man1" || mkdir -p -- "/tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/man1" /usr/bin/install -c -m 644 './build-man/dsh.1' '/tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/man1/dsh.1' test -z "/usr/share/man/man5" || mkdir -p -- "/tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/man5" /usr/bin/install -c -m 644 './build-man/dsh.conf.5' '/tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/man5/dsh.conf.5' make[3]: Leaving directory `/tmp/buildd/dsh-0.25.10' make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10' make[1]: Leaving directory `/tmp/buildd/dsh-0.25.10' cp /tmp/buildd/dsh-0.25.10/debian/machines.list /tmp/buildd/dsh-0.25.10/debian/dsh/etc/dsh/machines.list cp /tmp/buildd/dsh-0.25.10/dsh.conf /tmp/buildd/dsh-0.25.10/debian/dsh/etc/dsh/dsh.conf ln -s ../machines.list /tmp/buildd/dsh-0.25.10/debian/dsh/etc/dsh/group/all install -d /tmp/buildd/dsh-0.25.10/debian/dsh/usr/lib/update-cluster install -m 755 /tmp/buildd/dsh-0.25.10/debian/dsh.updatelist /tmp/buildd/dsh-0.25.10/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.10-1_amd64.deb'. dpkg-genchanges -eJunichi Uekawa >../dsh_0.25.10-1_amd64.changes dpkg-genchanges: including full source code in upload dpkg-buildpackage: full upload (original source is included) I: unmounting dev/pts filesystem I: unmounting proc filesystem I: cleaning the build env I: removing directory /TESTDIR/dir1/NUM and its subdirectories I: Current time: Sun Nov 29 18:58:34 JST 2009 I: pbuilder-time-stamp: 1259488714 pbuilder-0.215ubuntu7/testsuite/normal/pbuilder-update-lenny-squeeze-sid-experimental.log0000664000000000000000000000764312312041170026736 0ustar I: Upgrading for distribution sid I: Building the build Environment I: extracting base tarball [/TESTDIR/testimage] I: creating local configuration I: copying local configuration I: Installing apt-lines I: Installing apt-lines and pinning for experimental I: mounting /proc filesystem I: mounting /dev/pts filesystem I: policy-rc.d already exists I: Refreshing the base.tgz I: upgrading packages Hit http://localhost sid Release.gpg Get:1 http://localhost experimental Release.gpg [835B] Hit http://localhost sid Release Get:2 http://localhost experimental Release [98.5kB] Ign http://localhost experimental Release Ign http://localhost sid/main Packages/DiffIndex Ign http://localhost experimental/main Packages Ign http://localhost sid/main Packages Ign http://localhost experimental/main Packages Ign http://localhost sid/main Packages Get:3 http://localhost experimental/main Packages [340kB] Hit http://localhost sid/main Packages Fetched XXXB in Xs (XXXXXB/s) Reading package lists... W: GPG error: http://localhost experimental Release: The following signatures were invalid: BADSIG 9AA38DCD55BE302B Debian Archive Automatic Signing Key (5.0/lenny) Reading package lists... Building dependency tree... Reading state information... The following packages will be upgraded: diff diffutils libmpfr1ldbl libsigc++-2.0-0c2a 4 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. Need to get 717kB of archives. After this operation, 324kB of additional disk space will be used. WARNING: The following packages cannot be authenticated! diffutils libsigc++-2.0-0c2a libmpfr1ldbl diff Get:1 http://localhost experimental/main diffutils 1:2.8.7-0.1 [248kB] Get:2 http://localhost experimental/main libsigc++-2.0-0c2a 2.2.2-1 [35.3kB] Get:3 http://localhost experimental/main libmpfr1ldbl 2.4.2~rc2-1 [428kB] Get:4 http://localhost experimental/main diff 1:2.8.7-0.1 [5658B] debconf: delaying package configuration, since apt-utils is not installed Fetched XXXB in Xs (XXXXXB/s) (Reading database ... 10202 files and directories currently installed.) Preparing to replace diffutils 1:2.8.1-18 (using .../diffutils_1%3a2.8.7-0.1_amd64.deb) ... Unpacking replacement diffutils ... Setting up diffutils (1:2.8.7-0.1) ... (Reading database ... 10210 files and directories currently installed.) Preparing to replace libsigc++-2.0-0c2a 2.0.18-2 (using .../libsigc++-2.0-0c2a_2.2.2-1_amd64.deb) ... Unpacking replacement libsigc++-2.0-0c2a ... Preparing to replace libmpfr1ldbl 2.4.1-2 (using .../libmpfr1ldbl_2.4.2~rc2-1_amd64.deb) ... Unpacking replacement libmpfr1ldbl ... Preparing to replace diff 1:2.8.1-18 (using .../diff_1%3a2.8.7-0.1_all.deb) ... Unpacking replacement diff ... Setting up libsigc++-2.0-0c2a (2.2.2-1) ... Setting up libmpfr1ldbl (2.4.2~rc2-1) ... Setting up diff (1:2.8.7-0.1) ... Reading package lists... Building dependency tree... Reading state information... 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. Reading package lists... Building dependency tree... Reading state information... build-essential is already the newest version. dpkg-dev is already the newest version. apt is already the newest version. aptitude is already the newest version. 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. I: user script /var/cache/pbuilder/build//NUM/tmp/hooks/E50-initscripts-2.86.ds1-7.workaround.sh starting umount: /sys: not mounted umount: /run: not found umount: /proc/bus/usb: not mounted umount: /dev/shm: not mounted umount: /lib/init/rw: not mounted cat: /var/run/inetd.pid: No such file or directory kill: 20: Usage: kill [-s sigspec | -signum | -sigspec] [pid | job]... or kill -l [exitstatus] I: user script /var/cache/pbuilder/build//NUM/tmp/hooks/E50-initscripts-2.86.ds1-7.workaround.sh finished I: unmounting dev/pts filesystem I: unmounting proc filesystem I: creating base tarball [/TESTDIR/testimage] I: cleaning the build env I: removing directory /var/cache/pbuilder/build//NUM and its subdirectories pbuilder-0.215ubuntu7/testsuite/normal/pbuilder-execute-sid.log0000664000000000000000000000104712312041170021611 0ustar I: Building the build Environment I: extracting base tarball [/TESTDIR/testimage] I: creating local configuration I: copying local configuration I: mounting /proc filesystem I: mounting /dev/pts filesystem I: policy-rc.d already exists I: Obtaining the cached apt archive contents --- parameters given to this script [test1 test2 test3] I: Copying back the cached apt archive contents I: unmounting dev/pts filesystem I: unmounting proc filesystem I: cleaning the build env I: removing directory /var/cache/pbuilder/build//NUM and its subdirectories pbuilder-0.215ubuntu7/testsuite/normal/pbuilder-build-dsh-sid.log0000664000000000000000000032227012312041170022026 0ustar I: using fakeroot in build. I: Current time: Fri Jan 1 18:58:34 UTC 2010 I: pbuilder-time-stamp: 1262372314 I: Building the build Environment I: extracting base tarball [/TESTDIR/testimage] I: creating local configuration I: copying local configuration I: mounting /proc filesystem I: mounting /dev/pts filesystem I: policy-rc.d already exists I: Obtaining the cached apt archive contents ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/liblzma0_4.999.9beta+20091004-1_amd64.deb' => `/var/cache/pbuilder/aptcache/liblzma0_4.999.9beta+20091004-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/hello_2.4-3_amd64.deb' => `/var/cache/pbuilder/aptcache/hello_2.4-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libcurl3-gnutls_7.19.5-1ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/libcurl3-gnutls_7.19.5-1ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libsasl2-2_2.1.23.dfsg1-1ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/libsasl2-2_2.1.23.dfsg1-1ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/binutils_2.20-0ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/binutils_2.20-0ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/util-linux_2.16.1-4_amd64.deb' => `/var/cache/pbuilder/aptcache/util-linux_2.16.1-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libssl0.9.8_0.9.8k-6_amd64.deb' => `/var/cache/pbuilder/aptcache/libssl0.9.8_0.9.8k-6_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libcroco3_0.6.1-2_i386.deb' => `/var/cache/pbuilder/aptcache/libcroco3_0.6.1-2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libssl0.9.8_0.9.8k-7_amd64.deb' => `/var/cache/pbuilder/aptcache/libssl0.9.8_0.9.8k-7_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/bzip2_1.0.5-3_amd64.deb' => `/var/cache/pbuilder/aptcache/bzip2_1.0.5-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libc-bin_2.10.2-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libc-bin_2.10.2-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libssl0.9.8_0.9.8g-16ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/libssl0.9.8_0.9.8g-16ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libkrb5support0_1.7dfsg~beta3-1_i386.deb' => `/var/cache/pbuilder/aptcache/libkrb5support0_1.7dfsg~beta3-1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/gcc_4%3a4.4.2-2_amd64.deb' => `/var/cache/pbuilder/aptcache/gcc_4%3a4.4.2-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/gpgv_1.4.9-4ubuntu7_i386.deb' => `/var/cache/pbuilder/aptcache/gpgv_1.4.9-4ubuntu7_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/gcc-4.4-base_4.4.2-3_amd64.deb' => `/var/cache/pbuilder/aptcache/gcc-4.4-base_4.4.2-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/bsdutils_1%3a2.16.2-0_amd64.deb' => `/var/cache/pbuilder/aptcache/bsdutils_1%3a2.16.2-0_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libslang2_2.2.2-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libslang2_2.2.2-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/linux-libc-dev_2.6.30-8_amd64.deb' => `/var/cache/pbuilder/aptcache/linux-libc-dev_2.6.30-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/bash_4.0-5ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/bash_4.0-5ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/dpkg-dev_1.15.4ubuntu2_all.deb' => `/var/cache/pbuilder/aptcache/dpkg-dev_1.15.4ubuntu2_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/netbase_4.40_all.deb' => `/var/cache/pbuilder/aptcache/netbase_4.40_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libcomerr2_1.41.9-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libcomerr2_1.41.9-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libgdbm3_1.8.3-4_i386.deb' => `/var/cache/pbuilder/aptcache/libgdbm3_1.8.3-4_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/bzip2_1.0.5-3_i386.deb' => `/var/cache/pbuilder/aptcache/bzip2_1.0.5-3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libdbus-1-3_1.2.16-0ubuntu9_i386.deb' => `/var/cache/pbuilder/aptcache/libdbus-1-3_1.2.16-0ubuntu9_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/bsdutils_1%3a2.16-1ubuntu5_i386.deb' => `/var/cache/pbuilder/aptcache/bsdutils_1%3a2.16-1ubuntu5_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libxapian15_1.0.17-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libxapian15_1.0.17-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/python-support_1.0.4_all.deb' => `/var/cache/pbuilder/aptcache/python-support_1.0.4_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libcomerr2_1.41.9-1ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/libcomerr2_1.41.9-1ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/sysvinit-utils_2.87dsf-4ubuntu11_i386.deb' => `/var/cache/pbuilder/aptcache/sysvinit-utils_2.87dsf-4ubuntu11_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/login_1%3a4.1.4.1-1ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/login_1%3a4.1.4.1-1ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libudev0_149-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libudev0_149-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libstdc++6-4.4-dev_4.4.2-8_amd64.deb' => `/var/cache/pbuilder/aptcache/libstdc++6-4.4-dev_4.4.2-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libdb4.5_4.5.20-13.1_amd64.deb' => `/var/cache/pbuilder/aptcache/libdb4.5_4.5.20-13.1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libncurses5_5.7+20090803-2ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/libncurses5_5.7+20090803-2ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libusb-0.1-4_2%3a0.1.12-13_i386.deb' => `/var/cache/pbuilder/aptcache/libusb-0.1-4_2%3a0.1.12-13_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libpam-runtime_1.1.0-2ubuntu1_all.deb' => `/var/cache/pbuilder/aptcache/libpam-runtime_1.1.0-2ubuntu1_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libept0_0.5.26ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/libept0_0.5.26ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/lsb-release_3.2-23_all.deb' => `/var/cache/pbuilder/aptcache/lsb-release_3.2-23_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libldap-2.4-2_2.4.18-0ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/libldap-2.4-2_2.4.18-0ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/liblzma1_4.999.9beta+20091116-1_amd64.deb' => `/var/cache/pbuilder/aptcache/liblzma1_4.999.9beta+20091116-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/logrotate_3.7.8-4_amd64.deb' => `/var/cache/pbuilder/aptcache/logrotate_3.7.8-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/mountall_1.0_i386.deb' => `/var/cache/pbuilder/aptcache/mountall_1.0_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/ubuntu-keyring_2009.08.28_all.deb' => `/var/cache/pbuilder/aptcache/ubuntu-keyring_2009.08.28_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/tasksel_2.80_all.deb' => `/var/cache/pbuilder/aptcache/tasksel_2.80_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/debianutils_3.2.2_amd64.deb' => `/var/cache/pbuilder/aptcache/debianutils_3.2.2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libboost-iostreams1.40.0_1.40.0-5_amd64.deb' => `/var/cache/pbuilder/aptcache/libboost-iostreams1.40.0_1.40.0-5_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libacl1_2.2.49-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libacl1_2.2.49-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/dmidecode_2.9-1.2_amd64.deb' => `/var/cache/pbuilder/aptcache/dmidecode_2.9-1.2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libtimedate-perl_1.1600-9_all.deb' => `/var/cache/pbuilder/aptcache/libtimedate-perl_1.1600-9_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/gcc-4.4_4.4.2-8_amd64.deb' => `/var/cache/pbuilder/aptcache/gcc-4.4_4.4.2-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/sysv-rc_2.87dsf-4ubuntu11_all.deb' => `/var/cache/pbuilder/aptcache/sysv-rc_2.87dsf-4ubuntu11_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/po-debconf_1.0.16_all.deb' => `/var/cache/pbuilder/aptcache/po-debconf_1.0.16_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/mime-support_3.46-1_all.deb' => `/var/cache/pbuilder/aptcache/mime-support_3.46-1_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/apt_0.7.23.1ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/apt_0.7.23.1ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/lsb-base_3.2-23_all.deb' => `/var/cache/pbuilder/aptcache/lsb-base_3.2-23_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libkrb5-3_1.7dfsg~beta3-1_i386.deb' => `/var/cache/pbuilder/aptcache/libkrb5-3_1.7dfsg~beta3-1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libtasn1-3_2.2-1_i386.deb' => `/var/cache/pbuilder/aptcache/libtasn1-3_2.2-1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/dash_0.5.5.1-3_amd64.deb' => `/var/cache/pbuilder/aptcache/dash_0.5.5.1-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libwrap0_7.6.q-18_amd64.deb' => `/var/cache/pbuilder/aptcache/libwrap0_7.6.q-18_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libgssapi-krb5-2_1.7dfsg~beta3-1_i386.deb' => `/var/cache/pbuilder/aptcache/libgssapi-krb5-2_1.7dfsg~beta3-1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libss2_1.41.9-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libss2_1.41.9-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libsqlite3-0_3.6.21-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libsqlite3-0_3.6.21-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libslang2_2.2.1-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libslang2_2.2.1-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libgcc1_1%3a4.4.2-3_amd64.deb' => `/var/cache/pbuilder/aptcache/libgcc1_1%3a4.4.2-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/procps_1%3a3.2.8-2_amd64.deb' => `/var/cache/pbuilder/aptcache/procps_1%3a3.2.8-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/aptitude_0.6.1.3-3_amd64.deb' => `/var/cache/pbuilder/aptcache/aptitude_0.6.1.3-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libstdc++6_4.4.1-4ubuntu8_i386.deb' => `/var/cache/pbuilder/aptcache/libstdc++6_4.4.1-4ubuntu8_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/perl-base_5.10.1-8_amd64.deb' => `/var/cache/pbuilder/aptcache/perl-base_5.10.1-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libusb-0.1-4_2%3a0.1.12-13_amd64.deb' => `/var/cache/pbuilder/aptcache/libusb-0.1-4_2%3a0.1.12-13_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/mawk_1.3.3-15ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/mawk_1.3.3-15ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libpam0g_1.1.0-4_amd64.deb' => `/var/cache/pbuilder/aptcache/libpam0g_1.1.0-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/liblocale-gettext-perl_1.05-4build1_i386.deb' => `/var/cache/pbuilder/aptcache/liblocale-gettext-perl_1.05-4build1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/login_1%3a4.1.4.2-1_amd64.deb' => `/var/cache/pbuilder/aptcache/login_1%3a4.1.4.2-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/man-db_2.5.6-4_amd64.deb' => `/var/cache/pbuilder/aptcache/man-db_2.5.6-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libgdbm3_1.8.3-9_amd64.deb' => `/var/cache/pbuilder/aptcache/libgdbm3_1.8.3-9_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/ed_1.4-1_amd64.deb' => `/var/cache/pbuilder/aptcache/ed_1.4-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libselinux1_2.0.85-2ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/libselinux1_2.0.85-2ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libblkid1_2.16.1-4_amd64.deb' => `/var/cache/pbuilder/aptcache/libblkid1_2.16.1-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libcroco3_0.6.2-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libcroco3_0.6.2-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/cpp_4%3a4.4.2-2_amd64.deb' => `/var/cache/pbuilder/aptcache/cpp_4%3a4.4.2-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/debconf_1.5.28_all.deb' => `/var/cache/pbuilder/aptcache/debconf_1.5.28_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/liblog4cxx10_0.10.0-1.1_amd64.deb' => `/var/cache/pbuilder/aptcache/liblog4cxx10_0.10.0-1.1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/coreutils_7.4-2ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/coreutils_7.4-2ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libsqlite3-0_3.6.20-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libsqlite3-0_3.6.20-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/diffutils_1%3a2.8.7-0.1_amd64.deb' => `/var/cache/pbuilder/aptcache/diffutils_1%3a2.8.7-0.1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/build-essential_11.4_i386.deb' => `/var/cache/pbuilder/aptcache/build-essential_11.4_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/python2.5-minimal_2.5.4-3_amd64.deb' => `/var/cache/pbuilder/aptcache/python2.5-minimal_2.5.4-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/groff-base_1.20.1-5_i386.deb' => `/var/cache/pbuilder/aptcache/groff-base_1.20.1-5_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/sysv-rc_2.87dsf-8_all.deb' => `/var/cache/pbuilder/aptcache/sysv-rc_2.87dsf-8_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/debconf_1.5.27ubuntu2_all.deb' => `/var/cache/pbuilder/aptcache/debconf_1.5.27ubuntu2_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/mount_2.17~rc3-1_amd64.deb' => `/var/cache/pbuilder/aptcache/mount_2.17~rc3-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/vim-common_2%3a7.2.284-1_amd64.deb' => `/var/cache/pbuilder/aptcache/vim-common_2%3a7.2.284-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/module-init-tools_3.11-1_amd64.deb' => `/var/cache/pbuilder/aptcache/module-init-tools_3.11-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libgcrypt11_1.4.4-2ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/libgcrypt11_1.4.4-2ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/lsb-base_4.0-0ubuntu5_all.deb' => `/var/cache/pbuilder/aptcache/lsb-base_4.0-0ubuntu5_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/html2text_1.3.2a-14_amd64.deb' => `/var/cache/pbuilder/aptcache/html2text_1.3.2a-14_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libxml2_2.7.6.dfsg-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libxml2_2.7.6.dfsg-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/g++_4%3a4.4.1-1ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/g++_4%3a4.4.1-1ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libcwidget3_0.5.12-4ubuntu4_i386.deb' => `/var/cache/pbuilder/aptcache/libcwidget3_0.5.12-4ubuntu4_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/manpages_3.23-1_all.deb' => `/var/cache/pbuilder/aptcache/manpages_3.23-1_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/findutils_4.4.2-1_amd64.deb' => `/var/cache/pbuilder/aptcache/findutils_4.4.2-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/cowbuilder_0.58_amd64.deb' => `/var/cache/pbuilder/aptcache/cowbuilder_0.58_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libstdc++6_4.4.2-3_amd64.deb' => `/var/cache/pbuilder/aptcache/libstdc++6_4.4.2-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/dpkg-dev_1.15.5.2_all.deb' => `/var/cache/pbuilder/aptcache/dpkg-dev_1.15.5.2_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/initscripts_2.87dsf-4ubuntu11_i386.deb' => `/var/cache/pbuilder/aptcache/initscripts_2.87dsf-4ubuntu11_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/nano_2.2.1-1_amd64.deb' => `/var/cache/pbuilder/aptcache/nano_2.2.1-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/base-passwd_3.5.22_amd64.deb' => `/var/cache/pbuilder/aptcache/base-passwd_3.5.22_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libc-bin_2.11~0exp1-0exp1_amd64.deb' => `/var/cache/pbuilder/aptcache/libc-bin_2.11~0exp1-0exp1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libgomp1_4.4.2-8_amd64.deb' => `/var/cache/pbuilder/aptcache/libgomp1_4.4.2-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/cpp-4.4_4.4.1-4ubuntu8_i386.deb' => `/var/cache/pbuilder/aptcache/cpp-4.4_4.4.1-4ubuntu8_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/gettext-base_0.17-8ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/gettext-base_0.17-8ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/liblocale-gettext-perl_1.05-6_amd64.deb' => `/var/cache/pbuilder/aptcache/liblocale-gettext-perl_1.05-6_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libkeyutils1_1.2-10_i386.deb' => `/var/cache/pbuilder/aptcache/libkeyutils1_1.2-10_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/hostname_2.95ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/hostname_2.95ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/procps_1%3a3.2.8-1ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/procps_1%3a3.2.8-1ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libsigc++-2.0-0c2a_2.2.2-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libsigc++-2.0-0c2a_2.2.2-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/gettext_0.17-8ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/gettext_0.17-8ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/gcc-4.4-base_4.4.1-4ubuntu8_i386.deb' => `/var/cache/pbuilder/aptcache/gcc-4.4-base_4.4.1-4ubuntu8_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libcwidget3_0.5.16-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libcwidget3_0.5.16-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libgpg-error0_1.6-1ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/libgpg-error0_1.6-1ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/dpkg-dev_1.15.5.5_all.deb' => `/var/cache/pbuilder/aptcache/dpkg-dev_1.15.5.5_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libsepol1_2.0.37-1_i386.deb' => `/var/cache/pbuilder/aptcache/libsepol1_2.0.37-1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libstdc++6_4.4.2-8_amd64.deb' => `/var/cache/pbuilder/aptcache/libstdc++6_4.4.2-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libss2_1.41.9-1ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/libss2_1.41.9-1ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libsigc++-2.0-0c2a_2.0.18-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libsigc++-2.0-0c2a_2.0.18-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libk5crypto3_1.7dfsg~beta3-1_i386.deb' => `/var/cache/pbuilder/aptcache/libk5crypto3_1.7dfsg~beta3-1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/fakeroot_1.14.4-1_amd64.deb' => `/var/cache/pbuilder/aptcache/fakeroot_1.14.4-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/ncurses-bin_5.7+20090803-2_amd64.deb' => `/var/cache/pbuilder/aptcache/ncurses-bin_5.7+20090803-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/util-linux_2.17~rc3-1_amd64.deb' => `/var/cache/pbuilder/aptcache/util-linux_2.17~rc3-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/cron_3.0pl1-106_amd64.deb' => `/var/cache/pbuilder/aptcache/cron_3.0pl1-106_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libacl1_2.2.47-2_i386.deb' => `/var/cache/pbuilder/aptcache/libacl1_2.2.47-2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/netcat-traditional_1.10-38_amd64.deb' => `/var/cache/pbuilder/aptcache/netcat-traditional_1.10-38_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/e2fslibs_1.41.9-1_amd64.deb' => `/var/cache/pbuilder/aptcache/e2fslibs_1.41.9-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/g++-4.4_4.4.2-8_amd64.deb' => `/var/cache/pbuilder/aptcache/g++-4.4_4.4.2-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/bsdmainutils_6.1.10ubuntu4_i386.deb' => `/var/cache/pbuilder/aptcache/bsdmainutils_6.1.10ubuntu4_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/python-debian_0.1.14_all.deb' => `/var/cache/pbuilder/aptcache/python-debian_0.1.14_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/python-apt_0.7.13.3_amd64.deb' => `/var/cache/pbuilder/aptcache/python-apt_0.7.13.3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/build-essential_11.4_amd64.deb' => `/var/cache/pbuilder/aptcache/build-essential_11.4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/gnupg_1.4.9-4ubuntu7_i386.deb' => `/var/cache/pbuilder/aptcache/gnupg_1.4.9-4ubuntu7_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libsigc++-2.0-0c2a_2.0.18-2_i386.deb' => `/var/cache/pbuilder/aptcache/libsigc++-2.0-0c2a_2.0.18-2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/initscripts_2.87dsf-8_amd64.deb' => `/var/cache/pbuilder/aptcache/initscripts_2.87dsf-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/mount_2.16-1ubuntu5_i386.deb' => `/var/cache/pbuilder/aptcache/mount_2.16-1ubuntu5_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libc6_2.10.1-0ubuntu15_i386.deb' => `/var/cache/pbuilder/aptcache/libc6_2.10.1-0ubuntu15_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/dash_0.5.5.1-2ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/dash_0.5.5.1-2ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/zlib1g_1%3a1.2.3.4.dfsg-3_amd64.deb' => `/var/cache/pbuilder/aptcache/zlib1g_1%3a1.2.3.4.dfsg-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libreadline5_5.2-7_amd64.deb' => `/var/cache/pbuilder/aptcache/libreadline5_5.2-7_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/pbuilder_0.192_all.deb' => `/var/cache/pbuilder/aptcache/pbuilder_0.192_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/nano_2.2.0-1_amd64.deb' => `/var/cache/pbuilder/aptcache/nano_2.2.0-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/e2fsprogs_1.41.9-1ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/e2fsprogs_1.41.9-1ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/aptitude_0.4.11.11-1ubuntu6_i386.deb' => `/var/cache/pbuilder/aptcache/aptitude_0.4.11.11-1ubuntu6_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/bsdutils_1%3a2.16.1-4_amd64.deb' => `/var/cache/pbuilder/aptcache/bsdutils_1%3a2.16.1-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libglib2.0-0_2.22.3-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libglib2.0-0_2.22.3-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/python_2.5.4-2_all.deb' => `/var/cache/pbuilder/aptcache/python_2.5.4-2_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libdebian-installer-extra4_0.69_amd64.deb' => `/var/cache/pbuilder/aptcache/libdebian-installer-extra4_0.69_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/file_5.03-1ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/file_5.03-1ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libc6_2.11~0exp1-0exp1_amd64.deb' => `/var/cache/pbuilder/aptcache/libc6_2.11~0exp1-0exp1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/patch_2.5.9-5_amd64.deb' => `/var/cache/pbuilder/aptcache/patch_2.5.9-5_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/cdebootstrap_0.5.5_amd64.deb' => `/var/cache/pbuilder/aptcache/cdebootstrap_0.5.5_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libbz2-1.0_1.0.5-3_i386.deb' => `/var/cache/pbuilder/aptcache/libbz2-1.0_1.0.5-3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libsasl2-modules_2.1.23.dfsg1-1ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/libsasl2-modules_2.1.23.dfsg1-1ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/perl-modules_5.10.1-8_all.deb' => `/var/cache/pbuilder/aptcache/perl-modules_5.10.1-8_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libdb4.7_4.7.25-9_amd64.deb' => `/var/cache/pbuilder/aptcache/libdb4.7_4.7.25-9_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/debian-archive-keyring_2009.01.31_all.deb' => `/var/cache/pbuilder/aptcache/debian-archive-keyring_2009.01.31_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/grep_2.5.4-4_amd64.deb' => `/var/cache/pbuilder/aptcache/grep_2.5.4-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/udev_149-1_amd64.deb' => `/var/cache/pbuilder/aptcache/udev_149-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/isc-dhcp-common_4.1.0-1_amd64.deb' => `/var/cache/pbuilder/aptcache/isc-dhcp-common_4.1.0-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/base-passwd_3.5.21_i386.deb' => `/var/cache/pbuilder/aptcache/base-passwd_3.5.21_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/gdebi-core_0.5.9debian2_all.deb' => `/var/cache/pbuilder/aptcache/gdebi-core_0.5.9debian2_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/g++-4.3_4.3.4-6_amd64.deb' => `/var/cache/pbuilder/aptcache/g++-4.3_4.3.4-6_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/bsdmainutils_8.0.2_amd64.deb' => `/var/cache/pbuilder/aptcache/bsdmainutils_8.0.2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/sed_4.2.1-1_i386.deb' => `/var/cache/pbuilder/aptcache/sed_4.2.1-1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/sed_4.2.1-4_amd64.deb' => `/var/cache/pbuilder/aptcache/sed_4.2.1-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/dhcp3-client_3.1.3-1_amd64.deb' => `/var/cache/pbuilder/aptcache/dhcp3-client_3.1.3-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/tar_1.22-2_amd64.deb' => `/var/cache/pbuilder/aptcache/tar_1.22-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/netbase_4.35ubuntu2_all.deb' => `/var/cache/pbuilder/aptcache/netbase_4.35ubuntu2_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libapr1_1.3.8-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libapr1_1.3.8-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/gcc-4.3-base_4.3.4-6_amd64.deb' => `/var/cache/pbuilder/aptcache/gcc-4.3-base_4.3.4-6_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libstdc++6-4.4-dev_4.4.1-4ubuntu8_i386.deb' => `/var/cache/pbuilder/aptcache/libstdc++6-4.4-dev_4.4.1-4ubuntu8_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/iproute_20090324-1_amd64.deb' => `/var/cache/pbuilder/aptcache/iproute_20090324-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/iptables_1.4.6-2_amd64.deb' => `/var/cache/pbuilder/aptcache/iptables_1.4.6-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/perl_5.10.1-8_amd64.deb' => `/var/cache/pbuilder/aptcache/perl_5.10.1-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/dpkg_1.15.5.4_amd64.deb' => `/var/cache/pbuilder/aptcache/dpkg_1.15.5.4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libtext-wrapi18n-perl_0.06-7_all.deb' => `/var/cache/pbuilder/aptcache/libtext-wrapi18n-perl_0.06-7_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/apt_0.7.25_amd64.deb' => `/var/cache/pbuilder/aptcache/apt_0.7.25_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/g++_4%3a4.3.4-1_amd64.deb' => `/var/cache/pbuilder/aptcache/g++_4%3a4.3.4-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/util-linux_2.16-1ubuntu5_i386.deb' => `/var/cache/pbuilder/aptcache/util-linux_2.16-1ubuntu5_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/gcc-4.4-base_4.4.2-8_amd64.deb' => `/var/cache/pbuilder/aptcache/gcc-4.4-base_4.4.2-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/mount_2.16.1-4_amd64.deb' => `/var/cache/pbuilder/aptcache/mount_2.16.1-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libc6-dev_2.10.2-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libc6-dev_2.10.2-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/sysvinit_2.87dsf-8_amd64.deb' => `/var/cache/pbuilder/aptcache/sysvinit_2.87dsf-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/passwd_1%3a4.1.4.2-1_amd64.deb' => `/var/cache/pbuilder/aptcache/passwd_1%3a4.1.4.2-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/perl-modules_5.10.0-24ubuntu4_all.deb' => `/var/cache/pbuilder/aptcache/perl-modules_5.10.0-24ubuntu4_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/dpkg-dev_1.15.5.4_all.deb' => `/var/cache/pbuilder/aptcache/dpkg-dev_1.15.5.4_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/gcc-4.3_4.3.4-6_amd64.deb' => `/var/cache/pbuilder/aptcache/gcc-4.3_4.3.4-6_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libaprutil1_1.3.9+dfsg-3_amd64.deb' => `/var/cache/pbuilder/aptcache/libaprutil1_1.3.9+dfsg-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/bsdmainutils_8.0.3_amd64.deb' => `/var/cache/pbuilder/aptcache/bsdmainutils_8.0.3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/tasksel-data_2.80_all.deb' => `/var/cache/pbuilder/aptcache/tasksel-data_2.80_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/bash_4.0-7_amd64.deb' => `/var/cache/pbuilder/aptcache/bash_4.0-7_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/lzma_4.43-14ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/lzma_4.43-14ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/diff_2.8.1-13_i386.deb' => `/var/cache/pbuilder/aptcache/diff_2.8.1-13_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libpcre3_7.8-3_i386.deb' => `/var/cache/pbuilder/aptcache/libpcre3_7.8-3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/python2.6-minimal_2.6.4~rc2-0ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/python2.6-minimal_2.6.4~rc2-0ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/tzdata_2009u-1_all.deb' => `/var/cache/pbuilder/aptcache/tzdata_2009u-1_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/intltool-debian_0.35.0+20060710.1_all.deb' => `/var/cache/pbuilder/aptcache/intltool-debian_0.35.0+20060710.1_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libsepol1_2.0.40-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libsepol1_2.0.40-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libtasn1-3_2.3-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libtasn1-3_2.3-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libdb4.8_4.8.26-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libdb4.8_4.8.26-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/openssl_0.9.8g-16ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/openssl_0.9.8g-16ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/cpp-4.4_4.4.2-8_amd64.deb' => `/var/cache/pbuilder/aptcache/cpp-4.4_4.4.2-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libexpat1_2.0.1-7_amd64.deb' => `/var/cache/pbuilder/aptcache/libexpat1_2.0.1-7_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/adduser_3.112_all.deb' => `/var/cache/pbuilder/aptcache/adduser_3.112_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/zlib1g_1%3a1.2.3.3.dfsg-13ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/zlib1g_1%3a1.2.3.3.dfsg-13ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/patch_2.6-2_amd64.deb' => `/var/cache/pbuilder/aptcache/patch_2.6-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/python-central_0.6.13_all.deb' => `/var/cache/pbuilder/aptcache/python-central_0.6.13_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/util-linux_2.16.2-0_amd64.deb' => `/var/cache/pbuilder/aptcache/util-linux_2.16.2-0_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libreadline6_6.0-5_i386.deb' => `/var/cache/pbuilder/aptcache/libreadline6_6.0-5_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libept0_0.5.29_amd64.deb' => `/var/cache/pbuilder/aptcache/libept0_0.5.29_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/tzdata_2009o-1ubuntu2_all.deb' => `/var/cache/pbuilder/aptcache/tzdata_2009o-1ubuntu2_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libc6-dev_2.10.1-0ubuntu15_i386.deb' => `/var/cache/pbuilder/aptcache/libc6-dev_2.10.1-0ubuntu15_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/tzdata_2009s-1_all.deb' => `/var/cache/pbuilder/aptcache/tzdata_2009s-1_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/traceroute_2.0.13-2_amd64.deb' => `/var/cache/pbuilder/aptcache/traceroute_2.0.13-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/iputils-ping_3%3a20071127-2_amd64.deb' => `/var/cache/pbuilder/aptcache/iputils-ping_3%3a20071127-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libgcc1_1%3a4.4.1-4ubuntu8_i386.deb' => `/var/cache/pbuilder/aptcache/libgcc1_1%3a4.4.1-4ubuntu8_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libreadline6_6.0-5_amd64.deb' => `/var/cache/pbuilder/aptcache/libreadline6_6.0-5_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libgmp3c2_2%3a4.3.1+dfsg-3_amd64.deb' => `/var/cache/pbuilder/aptcache/libgmp3c2_2%3a4.3.1+dfsg-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/cowdancer_0.58_amd64.deb' => `/var/cache/pbuilder/aptcache/cowdancer_0.58_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libgomp1_4.4.1-4ubuntu8_i386.deb' => `/var/cache/pbuilder/aptcache/libgomp1_4.4.1-4ubuntu8_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/dpkg_1.15.5.2_amd64.deb' => `/var/cache/pbuilder/aptcache/dpkg_1.15.5.2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libxml2_2.7.5.dfsg-1ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/libxml2_2.7.5.dfsg-1ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libgmp3c2_2%3a4.3.1+dfsg-1ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/libgmp3c2_2%3a4.3.1+dfsg-1ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libslang2_2.1.4-3_i386.deb' => `/var/cache/pbuilder/aptcache/libslang2_2.1.4-3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libnewt0.52_0.52.10-5_amd64.deb' => `/var/cache/pbuilder/aptcache/libnewt0.52_0.52.10-5_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/make_3.81-6_i386.deb' => `/var/cache/pbuilder/aptcache/make_3.81-6_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/gpgv_1.4.10-2_amd64.deb' => `/var/cache/pbuilder/aptcache/gpgv_1.4.10-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libpam0g_1.1.0-2ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/libpam0g_1.1.0-2ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/python-minimal_2.6.4~rc1-0ubuntu1_all.deb' => `/var/cache/pbuilder/aptcache/python-minimal_2.6.4~rc1-0ubuntu1_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/install-info_4.13a.dfsg.1-5_amd64.deb' => `/var/cache/pbuilder/aptcache/install-info_4.13a.dfsg.1-5_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libblkid1_2.17~rc3-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libblkid1_2.17~rc3-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libtimedate-perl_1.1900-1_all.deb' => `/var/cache/pbuilder/aptcache/libtimedate-perl_1.1900-1_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/ca-certificates_20090814_all.deb' => `/var/cache/pbuilder/aptcache/ca-certificates_20090814_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libmpfr1ldbl_2.4.2-3_amd64.deb' => `/var/cache/pbuilder/aptcache/libmpfr1ldbl_2.4.2-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/net-tools_1.60-23ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/net-tools_1.60-23ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/dhcp3-common_3.1.3-1_amd64.deb' => `/var/cache/pbuilder/aptcache/dhcp3-common_3.1.3-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/debianutils_2.30ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/debianutils_2.30ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/cpp_4%3a4.3.4-1_amd64.deb' => `/var/cache/pbuilder/aptcache/cpp_4%3a4.3.4-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/apt-utils_0.7.23.1_amd64.deb' => `/var/cache/pbuilder/aptcache/apt-utils_0.7.23.1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/dpkg_1.15.5.5_amd64.deb' => `/var/cache/pbuilder/aptcache/dpkg_1.15.5.5_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libpam-runtime_1.1.0-4_all.deb' => `/var/cache/pbuilder/aptcache/libpam-runtime_1.1.0-4_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libc-dev-bin_2.10.2-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libc-dev-bin_2.10.2-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/sysvinit-utils_2.87dsf-8_amd64.deb' => `/var/cache/pbuilder/aptcache/sysvinit-utils_2.87dsf-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/aptitude_0.4.11.11-1+b2_amd64.deb' => `/var/cache/pbuilder/aptcache/aptitude_0.4.11.11-1+b2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libc-bin_2.10.1-0ubuntu15_i386.deb' => `/var/cache/pbuilder/aptcache/libc-bin_2.10.1-0ubuntu15_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/iptables_1.4.5-1_amd64.deb' => `/var/cache/pbuilder/aptcache/iptables_1.4.5-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/bsdutils_1%3a2.17~rc3-1_amd64.deb' => `/var/cache/pbuilder/aptcache/bsdutils_1%3a2.17~rc3-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/sensible-utils_0.0.2_all.deb' => `/var/cache/pbuilder/aptcache/sensible-utils_0.0.2_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/grep_2.5.4-4_i386.deb' => `/var/cache/pbuilder/aptcache/grep_2.5.4-4_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/passwd_1%3a4.1.4.1-1ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/passwd_1%3a4.1.4.1-1ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/whiptail_0.52.10-5_amd64.deb' => `/var/cache/pbuilder/aptcache/whiptail_0.52.10-5_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libblkid1_2.16.2-0_amd64.deb' => `/var/cache/pbuilder/aptcache/libblkid1_2.16.2-0_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/zlib1g_1%3a1.2.3.3.dfsg-15_amd64.deb' => `/var/cache/pbuilder/aptcache/zlib1g_1%3a1.2.3.3.dfsg-15_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/apt-utils_0.7.25_amd64.deb' => `/var/cache/pbuilder/aptcache/apt-utils_0.7.25_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libtext-iconv-perl_1.7-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libtext-iconv-perl_1.7-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/make_3.81-7_amd64.deb' => `/var/cache/pbuilder/aptcache/make_3.81-7_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libudev0_147~-6_i386.deb' => `/var/cache/pbuilder/aptcache/libudev0_147~-6_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/gzip_1.3.12-8ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/gzip_1.3.12-8ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/diffutils_1%3a2.8.1-18_amd64.deb' => `/var/cache/pbuilder/aptcache/diffutils_1%3a2.8.1-18_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/debconf-i18n_1.5.27ubuntu2_all.deb' => `/var/cache/pbuilder/aptcache/debconf-i18n_1.5.27ubuntu2_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libblkid1_2.16-1ubuntu5_i386.deb' => `/var/cache/pbuilder/aptcache/libblkid1_2.16-1ubuntu5_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libselinux1_2.0.89-4_amd64.deb' => `/var/cache/pbuilder/aptcache/libselinux1_2.0.89-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/debhelper_7.3.15ubuntu3_all.deb' => `/var/cache/pbuilder/aptcache/debhelper_7.3.15ubuntu3_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libpcre3_7.8-3_amd64.deb' => `/var/cache/pbuilder/aptcache/libpcre3_7.8-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/net-tools_1.60-23_amd64.deb' => `/var/cache/pbuilder/aptcache/net-tools_1.60-23_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/xz-utils_4.999.9beta+20091004-1_amd64.deb' => `/var/cache/pbuilder/aptcache/xz-utils_4.999.9beta+20091004-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libdb4.7_4.7.25-7ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/libdb4.7_4.7.25-7ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libattr1_1%3a2.4.43-3_i386.deb' => `/var/cache/pbuilder/aptcache/libattr1_1%3a2.4.43-3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/python2.5_2.5.4-3_amd64.deb' => `/var/cache/pbuilder/aptcache/python2.5_2.5.4-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libmagic1_5.03-1ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/libmagic1_5.03-1ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/udev_149-2_amd64.deb' => `/var/cache/pbuilder/aptcache/udev_149-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libdevmapper1.02.1_2%3a1.02.39-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libdevmapper1.02.1_2%3a1.02.39-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libidn11_1.15-1_i386.deb' => `/var/cache/pbuilder/aptcache/libidn11_1.15-1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/g++-4.4_4.4.1-4ubuntu8_i386.deb' => `/var/cache/pbuilder/aptcache/g++-4.4_4.4.1-4ubuntu8_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libmagic1_5.03-3_amd64.deb' => `/var/cache/pbuilder/aptcache/libmagic1_5.03-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libncursesw5_5.7+20090803-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libncursesw5_5.7+20090803-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libtext-charwidth-perl_0.04-5build1_i386.deb' => `/var/cache/pbuilder/aptcache/libtext-charwidth-perl_0.04-5build1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libunwind7_0.99-0.2_amd64.deb' => `/var/cache/pbuilder/aptcache/libunwind7_0.99-0.2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libtext-iconv-perl_1.7-1build1_i386.deb' => `/var/cache/pbuilder/aptcache/libtext-iconv-perl_1.7-1build1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/mount_2.16.2-0_amd64.deb' => `/var/cache/pbuilder/aptcache/mount_2.16.2-0_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libc6_2.10.2-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libc6_2.10.2-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libpopt0_1.15-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libpopt0_1.15-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libudev0_149-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libudev0_149-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/debconf-i18n_1.5.28_all.deb' => `/var/cache/pbuilder/aptcache/debconf-i18n_1.5.28_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/rsyslog_4.4.2-1_amd64.deb' => `/var/cache/pbuilder/aptcache/rsyslog_4.4.2-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/fakeroot_1.12.4ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/fakeroot_1.12.4ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/gcc-4.4_4.4.1-4ubuntu8_i386.deb' => `/var/cache/pbuilder/aptcache/gcc-4.4_4.4.1-4ubuntu8_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/groff-base_1.20.1-6_amd64.deb' => `/var/cache/pbuilder/aptcache/groff-base_1.20.1-6_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/makedev_2.3.1-88_all.deb' => `/var/cache/pbuilder/aptcache/makedev_2.3.1-88_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/xz-utils_4.999.9beta+20091116-1_amd64.deb' => `/var/cache/pbuilder/aptcache/xz-utils_4.999.9beta+20091116-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/ncurses-base_5.7+20090803-2_all.deb' => `/var/cache/pbuilder/aptcache/ncurses-base_5.7+20090803-2_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/html2text_1.3.2a-14_i386.deb' => `/var/cache/pbuilder/aptcache/html2text_1.3.2a-14_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/hostname_3.01_amd64.deb' => `/var/cache/pbuilder/aptcache/hostname_3.01_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/ifupdown_0.6.8ubuntu21_i386.deb' => `/var/cache/pbuilder/aptcache/ifupdown_0.6.8ubuntu21_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libncursesw5_5.7+20090803-2ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/libncursesw5_5.7+20090803-2ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libbz2-1.0_1.0.5-3_amd64.deb' => `/var/cache/pbuilder/aptcache/libbz2-1.0_1.0.5-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/python-minimal_2.5.4-2_all.deb' => `/var/cache/pbuilder/aptcache/python-minimal_2.5.4-2_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/ncurses-base_5.7+20090803-2ubuntu2_all.deb' => `/var/cache/pbuilder/aptcache/ncurses-base_5.7+20090803-2ubuntu2_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/perl-base_5.10.0-24ubuntu4_i386.deb' => `/var/cache/pbuilder/aptcache/perl-base_5.10.0-24ubuntu4_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libpam-modules_1.1.0-2ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/libpam-modules_1.1.0-2ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/gettext_0.17-8_amd64.deb' => `/var/cache/pbuilder/aptcache/gettext_0.17-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/insserv_1.12.0-11_i386.deb' => `/var/cache/pbuilder/aptcache/insserv_1.12.0-11_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/gnupg_1.4.10-2_amd64.deb' => `/var/cache/pbuilder/aptcache/gnupg_1.4.10-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/locales_2.9+git20090617-3_all.deb' => `/var/cache/pbuilder/aptcache/locales_2.9+git20090617-3_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/dmidecode_2.9-1.1_amd64.deb' => `/var/cache/pbuilder/aptcache/dmidecode_2.9-1.1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/findutils_4.4.2-1_i386.deb' => `/var/cache/pbuilder/aptcache/findutils_4.4.2-1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libmpfr1ldbl_2.4.1-1ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/libmpfr1ldbl_2.4.1-1ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/perl_5.10.0-24ubuntu4_i386.deb' => `/var/cache/pbuilder/aptcache/perl_5.10.0-24ubuntu4_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/cpp-4.3_4.3.4-6_amd64.deb' => `/var/cache/pbuilder/aptcache/cpp-4.3_4.3.4-6_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libmpfr1ldbl_2.4.1-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libmpfr1ldbl_2.4.1-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libuuid1_2.16-1ubuntu5_i386.deb' => `/var/cache/pbuilder/aptcache/libuuid1_2.16-1ubuntu5_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/base-files_5.0.0ubuntu7_i386.deb' => `/var/cache/pbuilder/aptcache/base-files_5.0.0ubuntu7_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/wget_1.12-1.1_amd64.deb' => `/var/cache/pbuilder/aptcache/wget_1.12-1.1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/insserv_1.12.0-14_amd64.deb' => `/var/cache/pbuilder/aptcache/insserv_1.12.0-14_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libxapian15_1.0.15-2ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/libxapian15_1.0.15-2ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/cpio_2.10-1_amd64.deb' => `/var/cache/pbuilder/aptcache/cpio_2.10-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/sed_4.2.1-6_amd64.deb' => `/var/cache/pbuilder/aptcache/sed_4.2.1-6_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/gcc_4%3a4.3.4-1_amd64.deb' => `/var/cache/pbuilder/aptcache/gcc_4%3a4.3.4-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/lzma_4.43-14_amd64.deb' => `/var/cache/pbuilder/aptcache/lzma_4.43-14_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/ncurses-bin_5.7+20090803-2ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/ncurses-bin_5.7+20090803-2ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/dpkg_1.15.4ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/dpkg_1.15.4ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/man-db_2.5.6-2_i386.deb' => `/var/cache/pbuilder/aptcache/man-db_2.5.6-2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/linux-libc-dev_2.6.32-3_amd64.deb' => `/var/cache/pbuilder/aptcache/linux-libc-dev_2.6.32-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/e2fslibs_1.41.9-1ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/e2fslibs_1.41.9-1ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libdb4.7_4.7.25-8_amd64.deb' => `/var/cache/pbuilder/aptcache/libdb4.7_4.7.25-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libgomp1_4.4.2-3_amd64.deb' => `/var/cache/pbuilder/aptcache/libgomp1_4.4.2-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/apt_0.7.23.1_amd64.deb' => `/var/cache/pbuilder/aptcache/apt_0.7.23.1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/linux-libc-dev_2.6.31-14.48_i386.deb' => `/var/cache/pbuilder/aptcache/linux-libc-dev_2.6.31-14.48_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libncurses5_5.7+20090803-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libncurses5_5.7+20090803-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/g++_4%3a4.4.2-2_amd64.deb' => `/var/cache/pbuilder/aptcache/g++_4%3a4.4.2-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/tar_1.22-1_i386.deb' => `/var/cache/pbuilder/aptcache/tar_1.22-1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/cpp_4%3a4.4.1-1ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/cpp_4%3a4.4.1-1ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/isc-dhcp-client_4.1.0-1_amd64.deb' => `/var/cache/pbuilder/aptcache/isc-dhcp-client_4.1.0-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/gcc_4%3a4.4.1-1ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/gcc_4%3a4.4.1-1ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/ifupdown_0.6.9_amd64.deb' => `/var/cache/pbuilder/aptcache/ifupdown_0.6.9_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libtext-charwidth-perl_0.04-6_amd64.deb' => `/var/cache/pbuilder/aptcache/libtext-charwidth-perl_0.04-6_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libuuid1_2.16.2-0_amd64.deb' => `/var/cache/pbuilder/aptcache/libuuid1_2.16.2-0_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/patch_2.5.9-5_i386.deb' => `/var/cache/pbuilder/aptcache/patch_2.5.9-5_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/gettext-base_0.17-8_amd64.deb' => `/var/cache/pbuilder/aptcache/gettext-base_0.17-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/readline-common_6.0-5_all.deb' => `/var/cache/pbuilder/aptcache/readline-common_6.0-5_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/ifupdown_0.7~alpha3_amd64.deb' => `/var/cache/pbuilder/aptcache/ifupdown_0.7~alpha3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/bsdmainutils_8.0.5_amd64.deb' => `/var/cache/pbuilder/aptcache/bsdmainutils_8.0.5_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/coreutils_7.4-2_amd64.deb' => `/var/cache/pbuilder/aptcache/coreutils_7.4-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/gzip_1.3.12-8_amd64.deb' => `/var/cache/pbuilder/aptcache/gzip_1.3.12-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libstdc++6-4.3-dev_4.3.4-6_amd64.deb' => `/var/cache/pbuilder/aptcache/libstdc++6-4.3-dev_4.3.4-6_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libattr1_1%3a2.4.44-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libattr1_1%3a2.4.44-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/coreutils_8.0-2_amd64.deb' => `/var/cache/pbuilder/aptcache/coreutils_8.0-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/base-files_5.0.0_amd64.deb' => `/var/cache/pbuilder/aptcache/base-files_5.0.0_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/binutils_2.20-4_amd64.deb' => `/var/cache/pbuilder/aptcache/binutils_2.20-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libpam-modules_1.1.0-4_amd64.deb' => `/var/cache/pbuilder/aptcache/libpam-modules_1.1.0-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/info_4.13a.dfsg.1-5_amd64.deb' => `/var/cache/pbuilder/aptcache/info_4.13a.dfsg.1-5_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libuuid1_2.16.1-4_amd64.deb' => `/var/cache/pbuilder/aptcache/libuuid1_2.16.1-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/bash_4.0-4_amd64.deb' => `/var/cache/pbuilder/aptcache/bash_4.0-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libc-dev-bin_2.10.1-0ubuntu15_i386.deb' => `/var/cache/pbuilder/aptcache/libc-dev-bin_2.10.1-0ubuntu15_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/e2fsprogs_1.41.9-1_amd64.deb' => `/var/cache/pbuilder/aptcache/e2fsprogs_1.41.9-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libept0_0.5.30_amd64.deb' => `/var/cache/pbuilder/aptcache/libept0_0.5.30_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/debhelper_7.4.3_all.deb' => `/var/cache/pbuilder/aptcache/debhelper_7.4.3_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/upstart_0.6.3-10_i386.deb' => `/var/cache/pbuilder/aptcache/upstart_0.6.3-10_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libgnutls26_2.8.3-2_i386.deb' => `/var/cache/pbuilder/aptcache/libgnutls26_2.8.3-2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libdb4.8_4.8.24-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libdb4.8_4.8.24-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libuuid1_2.17~rc3-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libuuid1_2.17~rc3-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libglib2.0-0_2.22.2-0ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/libglib2.0-0_2.22.2-0ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/vim-tiny_2%3a7.2.284-1_amd64.deb' => `/var/cache/pbuilder/aptcache/vim-tiny_2%3a7.2.284-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/mawk_1.3.3-15_amd64.deb' => `/var/cache/pbuilder/aptcache/mawk_1.3.3-15_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libgcc1_1%3a4.4.2-8_amd64.deb' => `/var/cache/pbuilder/aptcache/libgcc1_1%3a4.4.2-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libcwidget3_0.5.13-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libcwidget3_0.5.13-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/file_5.03-3_amd64.deb' => `/var/cache/pbuilder/aptcache/file_5.03-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libdebian-installer4_0.69_amd64.deb' => `/var/cache/pbuilder/aptcache/libdebian-installer4_0.69_amd64.deb': Invalid cross-device link I: Installing the build-deps -> Attempting to satisfy build-dependencies -> Creating pbuilder-satisfydepends-dummy package Package: pbuilder-satisfydepends-dummy Version: 0.invalid.0 Architecture: amd64 Maintainer: Debian Pbuilder Team Description: Dummy package to satisfy dependencies with aptitude - created by pbuilder This package was created automatically by pbuilder and should Depends: debhelper (>> 3.0.0), libdshconfig1-dev (>= 0.20.11-1), po4a dpkg-deb: building package `pbuilder-satisfydepends-dummy' in `/tmp/satisfydepends-aptitude/pbuilder-satisfydepends-dummy.deb'. Reading package lists... Building dependency tree... Reading state information... aptitude is already the newest version. 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. Selecting previously deselected package pbuilder-satisfydepends-dummy. (Reading database ... 12215 files and directories currently installed.) Unpacking pbuilder-satisfydepends-dummy (from .../pbuilder-satisfydepends-dummy.deb) ... dpkg: dependency problems prevent configuration of pbuilder-satisfydepends-dummy: pbuilder-satisfydepends-dummy depends on debhelper (>> 3.0.0); however: Package debhelper is not installed. pbuilder-satisfydepends-dummy depends on libdshconfig1-dev (>= 0.20.11-1); however: Package libdshconfig1-dev is not installed. pbuilder-satisfydepends-dummy depends on po4a; however: Package po4a is not installed. dpkg: error processing pbuilder-satisfydepends-dummy (--install): dependency problems - leaving unconfigured Errors were encountered while processing: pbuilder-satisfydepends-dummy Reading package lists... Building dependency tree... Reading state information... Initializing package states... Writing extended state information... Reading task descriptions... The following NEW packages will be installed: debhelper{a} file{a} gettext{a} gettext-base{a} html2text{a} intltool-debian{a} libcroco3{a} libdshconfig1{a} libdshconfig1-dev{a} libglib2.0-0{a} libmagic1{a} libpcre3{a} libsgmls-perl{a} libsp1c2{a} libxml2{a} po-debconf{a} po4a{a} sp{a} The following partially installed packages will be configured: pbuilder-satisfydepends-dummy 0 packages upgraded, 18 newly installed, 0 to remove and 0 not upgraded. Need to get 8766kB of archives. After unpacking 27.3MB will be used. Writing extended state information... Get:1 http://ftp.de.debian.org sid/main libmagic1 5.03-5 [393kB] Get:2 http://ftp.de.debian.org sid/main file 5.03-5 [47.6kB] Get:3 http://ftp.de.debian.org sid/main html2text 1.3.2a-14 [103kB] Get:4 http://ftp.de.debian.org sid/main libpcre3 7.8-3 [215kB] Get:5 http://ftp.de.debian.org sid/main libglib2.0-0 2.22.3-2 [999kB] Get:6 http://ftp.de.debian.org sid/main libxml2 2.7.6.dfsg-1 [876kB] Get:7 http://ftp.de.debian.org sid/main libcroco3 0.6.2-1 [125kB] Get:8 http://ftp.de.debian.org sid/main gettext-base 0.17-8 [133kB] Get:9 http://ftp.de.debian.org sid/main gettext 0.17-8 [2503kB] Get:10 http://ftp.de.debian.org sid/main intltool-debian 0.35.0+20060710.1 [30.8kB] Get:11 http://ftp.de.debian.org sid/main po-debconf 1.0.16 [224kB] Get:12 http://ftp.de.debian.org sid/main debhelper 7.4.11 [459kB] Get:13 http://ftp.de.debian.org sid/main libdshconfig1 0.20.13-1 [11.0kB] Get:14 http://ftp.de.debian.org sid/main libdshconfig1-dev 0.20.13-1 [25.4kB] Get:15 http://ftp.de.debian.org sid/main libsgmls-perl 1.03ii-32 [27.8kB] Get:16 http://ftp.de.debian.org sid/main libsp1c2 1.3.4-1.2.1-47 [1386kB] Get:17 http://ftp.de.debian.org sid/main sp 1.3.4-1.2.1-47 [182kB] Get:18 http://ftp.de.debian.org sid/main po4a 0.37.1-1 [1026kB] Fetched XXXB in Xs (XXXXXB/s) Selecting previously deselected package libmagic1. (Reading database ... 12215 files and directories currently installed.) Unpacking libmagic1 (from .../libmagic1_5.03-5_amd64.deb) ... Selecting previously deselected package file. Unpacking file (from .../archives/file_5.03-5_amd64.deb) ... Selecting previously deselected package html2text. Unpacking html2text (from .../html2text_1.3.2a-14_amd64.deb) ... Selecting previously deselected package libpcre3. Unpacking libpcre3 (from .../libpcre3_7.8-3_amd64.deb) ... Selecting previously deselected package libglib2.0-0. Unpacking libglib2.0-0 (from .../libglib2.0-0_2.22.3-2_amd64.deb) ... Selecting previously deselected package libxml2. Unpacking libxml2 (from .../libxml2_2.7.6.dfsg-1_amd64.deb) ... Selecting previously deselected package libcroco3. Unpacking libcroco3 (from .../libcroco3_0.6.2-1_amd64.deb) ... Selecting previously deselected package gettext-base. Unpacking gettext-base (from .../gettext-base_0.17-8_amd64.deb) ... Selecting previously deselected package gettext. Unpacking gettext (from .../gettext_0.17-8_amd64.deb) ... Selecting previously deselected package intltool-debian. Unpacking intltool-debian (from .../intltool-debian_0.35.0+20060710.1_all.deb) ... Selecting previously deselected package po-debconf. Unpacking po-debconf (from .../po-debconf_1.0.16_all.deb) ... Selecting previously deselected package debhelper. Unpacking debhelper (from .../debhelper_7.4.11_all.deb) ... Selecting previously deselected package libdshconfig1. Unpacking libdshconfig1 (from .../libdshconfig1_0.20.13-1_amd64.deb) ... Selecting previously deselected package libdshconfig1-dev. Unpacking libdshconfig1-dev (from .../libdshconfig1-dev_0.20.13-1_amd64.deb) ... Selecting previously deselected package libsgmls-perl. Unpacking libsgmls-perl (from .../libsgmls-perl_1.03ii-32_all.deb) ... Selecting previously deselected package libsp1c2. Unpacking libsp1c2 (from .../libsp1c2_1.3.4-1.2.1-47_amd64.deb) ... Selecting previously deselected package sp. Unpacking sp (from .../sp_1.3.4-1.2.1-47_amd64.deb) ... Selecting previously deselected package po4a. Unpacking po4a (from .../archives/po4a_0.37.1-1_all.deb) ... Processing triggers for man-db ... Processing triggers for install-info ... Setting up libmagic1 (5.03-5) ... Setting up file (5.03-5) ... Setting up html2text (1.3.2a-14) ... Setting up libpcre3 (7.8-3) ... Setting up libglib2.0-0 (2.22.3-2) ... Setting up libxml2 (2.7.6.dfsg-1) ... Setting up libcroco3 (0.6.2-1) ... Setting up gettext-base (0.17-8) ... Setting up gettext (0.17-8) ... Setting up intltool-debian (0.35.0+20060710.1) ... Setting up po-debconf (1.0.16) ... Setting up debhelper (7.4.11) ... Setting up libdshconfig1 (0.20.13-1) ... Setting up libdshconfig1-dev (0.20.13-1) ... Setting up libsgmls-perl (1.03ii-32) ... Setting up libsp1c2 (1.3.4-1.2.1-47) ... Setting up sp (1.3.4-1.2.1-47) ... Setting up po4a (0.37.1-1) ... Setting up pbuilder-satisfydepends-dummy (0.invalid.0) ... Reading package lists... Building dependency tree... Reading state information... Reading extended state information... Initializing package states... Writing extended state information... Reading task descriptions... -> Finished parsing the build-deps Reading package lists... Building dependency tree... Reading state information... aptitude is already the newest version. The following NEW packages will be installed: fakeroot 0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded. Need to get 100kB of archives. After this operation, 385kB of additional disk space will be used. Get:1 http://ftp.de.debian.org sid/main fakeroot 1.14.4-1 [100kB] Fetched XXXB in Xs (XXXXXB/s) Selecting previously deselected package fakeroot. (Reading database ... 13377 files and directories currently installed.) Unpacking fakeroot (from .../fakeroot_1.14.4-1_amd64.deb) ... Processing triggers for man-db ... Setting up fakeroot (1.14.4-1) ... update-alternatives: using /usr/bin/fakeroot-sysv to provide /usr/bin/fakeroot (fakeroot) in auto mode. I: Copying back the cached apt archive contents I: new cache content debhelper_7.4.11_all.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/debhelper_7.4.11_all.deb' => `/TESTDIR/dir1/NUM/var/cache/apt/archives/debhelper_7.4.11_all.deb': Invalid cross-device link I: new cache content sp_1.3.4-1.2.1-47_amd64.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/sp_1.3.4-1.2.1-47_amd64.deb' => `/TESTDIR/dir1/NUM/var/cache/apt/archives/sp_1.3.4-1.2.1-47_amd64.deb': Invalid cross-device link I: new cache content po4a_0.37.1-1_all.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/po4a_0.37.1-1_all.deb' => `/TESTDIR/dir1/NUM/var/cache/apt/archives/po4a_0.37.1-1_all.deb': Invalid cross-device link I: new cache content libglib2.0-0_2.22.3-2_amd64.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/libglib2.0-0_2.22.3-2_amd64.deb' => `/TESTDIR/dir1/NUM/var/cache/apt/archives/libglib2.0-0_2.22.3-2_amd64.deb': Invalid cross-device link I: new cache content libdshconfig1_0.20.13-1_amd64.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/libdshconfig1_0.20.13-1_amd64.deb' => `/TESTDIR/dir1/NUM/var/cache/apt/archives/libdshconfig1_0.20.13-1_amd64.deb': Invalid cross-device link I: new cache content libmagic1_5.03-5_amd64.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/libmagic1_5.03-5_amd64.deb' => `/TESTDIR/dir1/NUM/var/cache/apt/archives/libmagic1_5.03-5_amd64.deb': Invalid cross-device link I: new cache content libsp1c2_1.3.4-1.2.1-47_amd64.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/libsp1c2_1.3.4-1.2.1-47_amd64.deb' => `/TESTDIR/dir1/NUM/var/cache/apt/archives/libsp1c2_1.3.4-1.2.1-47_amd64.deb': Invalid cross-device link I: new cache content libsgmls-perl_1.03ii-32_all.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/libsgmls-perl_1.03ii-32_all.deb' => `/TESTDIR/dir1/NUM/var/cache/apt/archives/libsgmls-perl_1.03ii-32_all.deb': Invalid cross-device link I: new cache content libdshconfig1-dev_0.20.13-1_amd64.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/libdshconfig1-dev_0.20.13-1_amd64.deb' => `/TESTDIR/dir1/NUM/var/cache/apt/archives/libdshconfig1-dev_0.20.13-1_amd64.deb': Invalid cross-device link I: new cache content file_5.03-5_amd64.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/file_5.03-5_amd64.deb' => `/TESTDIR/dir1/NUM/var/cache/apt/archives/file_5.03-5_amd64.deb': Invalid cross-device link I: Copying source file I: copying [/TESTDIR/dir1/dsh_0.25.10-1.dsc] I: copying [/TESTDIR/dir1/dsh_0.25.10.orig.tar.gz] I: copying [/TESTDIR/dir1/dsh_0.25.10-1.diff.gz] I: Extracting source gpgv: keyblock resource `/tmp/buildd/.gnupg/trustedkeys.gpg': file open error gpgv: Signature made Fri Dec 14 00:23:24 2007 UTC using DSA key ID E81E55C1 gpgv: Can't check signature: public key not found dpkg-source: warning: failed to verify signature on ./dsh_0.25.10-1.dsc dpkg-source: info: extracting dsh in dsh-0.25.10 dpkg-source: info: unpacking dsh_0.25.10.orig.tar.gz dpkg-source: info: applying dsh_0.25.10-1.diff.gz dpkg-source: info: upstream files that have been modified: dsh-0.25.10/.cvsignore dsh-0.25.10/CVS/Entries dsh-0.25.10/CVS/Repository dsh-0.25.10/CVS/Root dsh-0.25.10/ChangeLog.OLD dsh-0.25.10/dcp.sh dsh-0.25.10/drshd.c dsh-0.25.10/dsh.1.ja.po dsh-0.25.10/m4/.cvsignore dsh-0.25.10/m4/CVS/Entries dsh-0.25.10/m4/CVS/Repository dsh-0.25.10/m4/CVS/Root dsh-0.25.10/po/.cvsignore dsh-0.25.10/po/CVS/Entries dsh-0.25.10/po/CVS/Repository dsh-0.25.10/po/CVS/Root dsh-0.25.10/po/insert-header.sin dsh-0.25.10/tests/.cvsignore dsh-0.25.10/tests/CVS/Entries dsh-0.25.10/tests/CVS/Repository dsh-0.25.10/tests/CVS/Root I: Building the package I: Running cd tmp/buildd/*/ && dpkg-buildpackage -us -uc "-eJunichi Uekawa " -rfakeroot dpkg-buildpackage: set CFLAGS to default value: -g -O2 dpkg-buildpackage: set CPPFLAGS to default value: dpkg-buildpackage: set LDFLAGS to default value: dpkg-buildpackage: set FFLAGS to default value: -g -O2 dpkg-buildpackage: set CXXFLAGS to default value: -g -O2 dpkg-buildpackage: source package dsh dpkg-buildpackage: source version 0.25.10-1 dpkg-buildpackage: host architecture amd64 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.10' make[1]: *** No rule to make target `clean'. Stop. make[1]: Leaving directory `/tmp/buildd/dsh-0.25.10' make: [clean] Error 2 (ignored) /usr/bin/make distclean make[1]: Entering directory `/tmp/buildd/dsh-0.25.10' make[1]: *** No rule to make target `distclean'. Stop. make[1]: Leaving directory `/tmp/buildd/dsh-0.25.10' make: [clean] Error 2 (ignored) dh_clean dh_clean: Compatibility levels before 5 are deprecated. dpkg-source -b dsh-0.25.10 dpkg-source: info: using source format `1.0' dpkg-source: info: building dsh using existing dsh_0.25.10.orig.tar.gz dpkg-source: info: building dsh in dsh_0.25.10-1.diff.gz dpkg-source: warning: file dsh-0.25.10/dcp.sh has no final newline (either original or modified version) dpkg-source: warning: file dsh-0.25.10/debian/compat has no final newline (either original or modified version) dpkg-source: warning: the diff modifies the following upstream files: .cvsignore CVS/Entries CVS/Repository CVS/Root ChangeLog.OLD dcp.sh drshd.c dsh.1.ja.po m4/.cvsignore m4/CVS/Entries m4/CVS/Repository m4/CVS/Root po/.cvsignore po/CVS/Entries po/CVS/Repository po/CVS/Root po/insert-header.sin tests/.cvsignore tests/CVS/Entries tests/CVS/Repository tests/CVS/Root dpkg-source: info: use the '3.0 (quilt)' format to have separate and documented changes to upstream files, see dpkg-source(1) dpkg-source: info: building dsh in dsh_0.25.10-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 ISO C89... none needed checking dependency style of gcc... gcc3 checking for strerror in -lcposix... no checking for gcc... (cached) gcc checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) 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 ISO C89... (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 grep that handles long lines and -e... /bin/grep checking for egrep... /bin/grep -E checking for ANSI C header files... yes checking for sys/wait.h that is POSIX.1 compatible... yes checking build system type... x86_64-unknown-linux-gnu checking host system type... x86_64-unknown-linux-gnu checking for a sed that does not truncate output... /bin/sed checking for ld used by gcc... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for /usr/bin/ld option to reload object files... -r checking for BSD-compatible nm... /usr/bin/nm -B checking whether ln -s works... yes checking how to recognize dependent libraries... pass_all checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking dlfcn.h usability... yes checking dlfcn.h presence... yes checking for dlfcn.h... yes checking for g++... g++ checking whether we are using the GNU C++ compiler... yes checking whether g++ accepts -g... yes checking dependency style of g++... gcc3 checking how to run the C++ preprocessor... g++ -E checking for g77... no checking for xlf... no checking for f77... no checking for frt... no checking for pgf77... no checking for cf77... no checking for fort77... no checking for fl32... no checking for af77... no checking for xlf90... no checking for f90... no checking for pgf90... no checking for pghpf... no checking for epcf90... no checking for gfortran... no checking for g95... no checking for xlf95... no checking for f95... no checking for fort... no checking for ifort... no checking for ifc... no checking for efc... no checking for pgf95... no checking for lf95... no checking for ftn... no checking whether we are using the GNU Fortran 77 compiler... no checking whether accepts -g... no checking the maximum length of command line arguments... 3458764513820540925 checking command to parse /usr/bin/nm -B output from gcc object... ok checking for objdir... .libs checking for ar... ar checking for ranlib... ranlib checking for strip... strip checking if gcc supports -fno-rtti -fno-exceptions... no checking for gcc option to produce PIC... -fPIC checking if gcc PIC flag -fPIC works... yes checking if gcc static flag -static works... yes checking if gcc supports -c -o file.o... yes checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) 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 -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking for g++ option to produce PIC... -fPIC checking if g++ PIC flag -fPIC works... yes checking if g++ static flag -static works... yes checking if g++ supports -c -o file.o... yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate appending configuration tag "F77" to libtool checking 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 -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) 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: WARNING: po/Makefile.in.in seems to ignore the --datarootdir setting 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.10' /usr/bin/make all-recursive make[2]: Entering directory `/tmp/buildd/dsh-0.25.10' Making all in m4 make[3]: Entering directory `/tmp/buildd/dsh-0.25.10/m4' make[3]: Nothing to be done for `all'. make[3]: Leaving directory `/tmp/buildd/dsh-0.25.10/m4' Making all in po make[3]: Entering directory `/tmp/buildd/dsh-0.25.10/po' make[3]: Nothing to be done for `all'. make[3]: Leaving directory `/tmp/buildd/dsh-0.25.10/po' make[3]: Entering directory `/tmp/buildd/dsh-0.25.10' 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/bash ./libtool --tag=CC --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.10' make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10' make[1]: Leaving directory `/tmp/buildd/dsh-0.25.10' /usr/bin/make check make[1]: Entering directory `/tmp/buildd/dsh-0.25.10' Making check in m4 make[2]: Entering directory `/tmp/buildd/dsh-0.25.10/m4' make[2]: Nothing to be done for `check'. make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10/m4' Making check in po make[2]: Entering directory `/tmp/buildd/dsh-0.25.10/po' make[2]: Nothing to be done for `check'. make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10/po' make[2]: Entering directory `/tmp/buildd/dsh-0.25.10' /usr/bin/make dsh make[3]: Entering directory `/tmp/buildd/dsh-0.25.10' make[3]: `dsh' is up to date. make[3]: Leaving directory `/tmp/buildd/dsh-0.25.10' /usr/bin/make check-TESTS make[3]: Entering directory `/tmp/buildd/dsh-0.25.10' PASS: tests/param-f.sh dsh: File ./tests/nonexistent.file could not be opened for read PASS: tests/param-f-fail.sh PASS: tests/param-f-with-space.sh PASS: tests/param-m.sh test to check that unknown parameter checking is right. ./dsh: unrecognized option '--unknown-parameter' ./dsh: invalid option -- 'u' PASS: tests/param-unknown.sh test1 test2 dsh: Process terminated (before write). PASS: tests/param-i.sh Check that cn4 option is working. PASS: tests/param-cn4.sh test to check that -b0 is rejected, and -b1 is accepted Buffer size needs to be greater than 1 Buffer size needs to be greater than 1 a b PASS: tests/param-b-0.sh dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call success dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call success success success success success a: dsh: Failed executing ./invalid-exec-file with llexec call b: dsh: Failed executing ./invalid-exec-file with llexec call c: dsh: Failed executing ./invalid-exec-file with llexec call d: dsh: Failed executing ./invalid-exec-file with llexec call success dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call success PASS: tests/param-r-invalid.sh 1: 1 2: 2 dsh: fork limit and wait shell cannot be specified at the same time PASS: tests/param-F-invalid.sh Fri Jan 1 19:00:21 UTC 2010 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 Fri Jan 1 19:00:26 UTC 2010 PASS: tests/param-F-forklimit.sh PASS: tests/param-gnu-getopt.sh PASS: tests/news-okay.sh b: b c: c 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.10' make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10' make[1]: Leaving directory `/tmp/buildd/dsh-0.25.10' touch build-stamp fakeroot debian/rules binary dh_testdir dh_testroot dh_clean -k dh_clean: Compatibility levels before 5 are deprecated. dh_installdirs dh_installdirs: Compatibility levels before 5 are deprecated. # Add here commands to install the package into debian/dsh. /usr/bin/make install DESTDIR=/tmp/buildd/dsh-0.25.10/debian/dsh make[1]: Entering directory `/tmp/buildd/dsh-0.25.10' Making install in m4 make[2]: Entering directory `/tmp/buildd/dsh-0.25.10/m4' make[3]: Entering directory `/tmp/buildd/dsh-0.25.10/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.10/m4' make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10/m4' Making install in po make[2]: Entering directory `/tmp/buildd/dsh-0.25.10/po' /bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share mkdir -p -- /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share mkdir -p -- /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/locale/ja/LC_MESSAGES installing ja.gmo as /tmp/buildd/dsh-0.25.10/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.10/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.10/debian/dsh/usr/share/gettext/po/$file; \ done; \ else \ : ; \ fi make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10/po' make[2]: Entering directory `/tmp/buildd/dsh-0.25.10' make[3]: Entering directory `/tmp/buildd/dsh-0.25.10' test -z "/usr/bin" || mkdir -p -- "/tmp/buildd/dsh-0.25.10/debian/dsh/usr/bin" /bin/bash ./libtool --mode=install install -p -o root -g root -m 755 -s 'dsh' '/tmp/buildd/dsh-0.25.10/debian/dsh/usr/bin/dsh' install -p -o root -g root -m 755 -s dsh /tmp/buildd/dsh-0.25.10/debian/dsh/usr/bin/dsh test -z "/etc/dsh" || mkdir -p -- "/tmp/buildd/dsh-0.25.10/debian/dsh/etc/dsh" /usr/bin/install -c -m 644 'dsh.conf' '/tmp/buildd/dsh-0.25.10/debian/dsh/etc/dsh/dsh.conf' for LANGS in ja ; do \ mkdir -p /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/$LANGS/man1 ;\ mkdir -p /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/$LANGS/man5 ;\ sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.$LANGS.1 \ > /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/$LANGS/man1/dsh.1 ; \ sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.conf.$LANGS.5 \ > /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/$LANGS/man5/dsh.conf.5 ; \ done test -z "/usr/share/man/man1" || mkdir -p -- "/tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/man1" /usr/bin/install -c -m 644 './build-man/dsh.1' '/tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/man1/dsh.1' test -z "/usr/share/man/man5" || mkdir -p -- "/tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/man5" /usr/bin/install -c -m 644 './build-man/dsh.conf.5' '/tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/man5/dsh.conf.5' make[3]: Leaving directory `/tmp/buildd/dsh-0.25.10' make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10' make[1]: Leaving directory `/tmp/buildd/dsh-0.25.10' cp /tmp/buildd/dsh-0.25.10/debian/machines.list /tmp/buildd/dsh-0.25.10/debian/dsh/etc/dsh/machines.list cp /tmp/buildd/dsh-0.25.10/dsh.conf /tmp/buildd/dsh-0.25.10/debian/dsh/etc/dsh/dsh.conf ln -s ../machines.list /tmp/buildd/dsh-0.25.10/debian/dsh/etc/dsh/group/all install -d /tmp/buildd/dsh-0.25.10/debian/dsh/usr/lib/update-cluster install -m 755 /tmp/buildd/dsh-0.25.10/debian/dsh.updatelist /tmp/buildd/dsh-0.25.10/debian/dsh/usr/lib/update-cluster/ dh_testdir dh_testroot dh_installdocs NEWS dh_installdocs: Compatibility levels before 5 are deprecated. dh_installexamples dh_installexamples: Compatibility levels before 5 are deprecated. dh_installmenu dh_installmenu: Compatibility levels before 5 are deprecated. dh_installman dh_installman: Compatibility levels before 5 are deprecated. dh_installchangelogs ChangeLog dh_installchangelogs: Compatibility levels before 5 are deprecated. dh_link dh_link: Compatibility levels before 5 are deprecated. dh_strip dh_strip: Compatibility levels before 5 are deprecated. dh_shlibdeps dh_shlibdeps: Compatibility levels before 5 are deprecated. dh_compress dh_compress: Compatibility levels before 5 are deprecated. dh_fixperms dh_fixperms: Compatibility levels before 5 are deprecated. dh_installdeb dh_installdeb: Compatibility levels before 5 are deprecated. dh_gencontrol dh_gencontrol: Compatibility levels before 5 are deprecated. dh_md5sums dh_md5sums: Compatibility levels before 5 are deprecated. dh_builddeb dh_builddeb: Compatibility levels before 5 are deprecated. dpkg-deb: building package `dsh' in `../dsh_0.25.10-1_amd64.deb'. dpkg-genchanges -eJunichi Uekawa >../dsh_0.25.10-1_amd64.changes dpkg-genchanges: including full source code in upload dpkg-buildpackage: full upload (original source is included) I: Copying back the cached apt archive contents I: new cache content debhelper_7.4.11_all.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/debhelper_7.4.11_all.deb' => `/TESTDIR/dir1/NUM/var/cache/apt/archives/debhelper_7.4.11_all.deb': Invalid cross-device link I: new cache content sp_1.3.4-1.2.1-47_amd64.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/sp_1.3.4-1.2.1-47_amd64.deb' => `/TESTDIR/dir1/NUM/var/cache/apt/archives/sp_1.3.4-1.2.1-47_amd64.deb': Invalid cross-device link I: new cache content po4a_0.37.1-1_all.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/po4a_0.37.1-1_all.deb' => `/TESTDIR/dir1/NUM/var/cache/apt/archives/po4a_0.37.1-1_all.deb': Invalid cross-device link I: new cache content libglib2.0-0_2.22.3-2_amd64.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/libglib2.0-0_2.22.3-2_amd64.deb' => `/TESTDIR/dir1/NUM/var/cache/apt/archives/libglib2.0-0_2.22.3-2_amd64.deb': Invalid cross-device link I: new cache content libdshconfig1_0.20.13-1_amd64.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/libdshconfig1_0.20.13-1_amd64.deb' => `/TESTDIR/dir1/NUM/var/cache/apt/archives/libdshconfig1_0.20.13-1_amd64.deb': Invalid cross-device link I: new cache content libmagic1_5.03-5_amd64.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/libmagic1_5.03-5_amd64.deb' => `/TESTDIR/dir1/NUM/var/cache/apt/archives/libmagic1_5.03-5_amd64.deb': Invalid cross-device link I: new cache content libsp1c2_1.3.4-1.2.1-47_amd64.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/libsp1c2_1.3.4-1.2.1-47_amd64.deb' => `/TESTDIR/dir1/NUM/var/cache/apt/archives/libsp1c2_1.3.4-1.2.1-47_amd64.deb': Invalid cross-device link I: new cache content libsgmls-perl_1.03ii-32_all.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/libsgmls-perl_1.03ii-32_all.deb' => `/TESTDIR/dir1/NUM/var/cache/apt/archives/libsgmls-perl_1.03ii-32_all.deb': Invalid cross-device link I: new cache content libdshconfig1-dev_0.20.13-1_amd64.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/libdshconfig1-dev_0.20.13-1_amd64.deb' => `/TESTDIR/dir1/NUM/var/cache/apt/archives/libdshconfig1-dev_0.20.13-1_amd64.deb': Invalid cross-device link I: new cache content file_5.03-5_amd64.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/file_5.03-5_amd64.deb' => `/TESTDIR/dir1/NUM/var/cache/apt/archives/file_5.03-5_amd64.deb': Invalid cross-device link I: unmounting dev/pts filesystem I: unmounting proc filesystem I: cleaning the build env I: removing directory /TESTDIR/dir1/NUM and its subdirectories I: Current time: Fri Jan 1 19:00:29 UTC 2010 I: pbuilder-time-stamp: 1262372429 pbuilder-0.215ubuntu7/testsuite/normal/pbuilder-create-lenny.log0000664000000000000000000004004312312041170021757 0ustar I: Distribution is lenny. I: Building the build environment I: running debootstrap /usr/sbin/debootstrap I: Retrieving Release I: Retrieving Packages I: Retrieving Packages I: Validating Packages I: Resolving dependencies of required packages... I: Resolving dependencies of base packages... I: Found additional base dependencies: bzip2 cpp-4.3 debian-archive-keyring g++-4.3 gcc-4.3 gnupg gpgv libbz2-1.0 libgdbm3 libgmp3c2 libgomp1 libmpfr1ldbl libreadline5 libstdc++6-4.3-dev libtimedate-perl libusb-0.1-4 linux-libc-dev readline-common I: Checking component main on http://localhost:9999/debian... I: Retrieving apt I: Validating apt I: Retrieving base-files I: Validating base-files I: Retrieving base-passwd I: Validating base-passwd I: Retrieving bash I: Validating bash I: Retrieving binutils I: Validating binutils I: Retrieving bsdutils I: Validating bsdutils I: Retrieving build-essential I: Validating build-essential I: Retrieving bzip2 I: Validating bzip2 I: Retrieving coreutils I: Validating coreutils I: Retrieving cpio I: Validating cpio I: Retrieving cpp I: Validating cpp I: Retrieving cpp-4.3 I: Validating cpp-4.3 I: Retrieving debconf I: Validating debconf I: Retrieving debconf-i18n I: Validating debconf-i18n I: Retrieving debian-archive-keyring I: Validating debian-archive-keyring I: Retrieving debianutils I: Validating debianutils I: Retrieving diff I: Validating diff I: Retrieving dpkg I: Validating dpkg I: Retrieving dpkg-dev I: Validating dpkg-dev I: Retrieving e2fslibs I: Validating e2fslibs I: Retrieving e2fsprogs I: Validating e2fsprogs I: Retrieving findutils I: Validating findutils I: Retrieving g++ I: Validating g++ I: Retrieving g++-4.3 I: Validating g++-4.3 I: Retrieving gcc I: Validating gcc I: Retrieving gcc-4.2-base I: Validating gcc-4.2-base I: Retrieving gcc-4.3 I: Validating gcc-4.3 I: Retrieving gcc-4.3-base I: Validating gcc-4.3-base I: Retrieving gnupg I: Validating gnupg I: Retrieving gpgv I: Validating gpgv I: Retrieving grep I: Validating grep I: Retrieving gzip I: Validating gzip I: Retrieving hostname I: Validating hostname I: Retrieving initscripts I: Validating initscripts I: Retrieving libacl1 I: Validating libacl1 I: Retrieving libattr1 I: Validating libattr1 I: Retrieving libblkid1 I: Validating libblkid1 I: Retrieving libbz2-1.0 I: Validating libbz2-1.0 I: Retrieving libc6 I: Validating libc6 I: Retrieving libc6-dev I: Validating libc6-dev I: Retrieving libcomerr2 I: Validating libcomerr2 I: Retrieving libdb4.6 I: Validating libdb4.6 I: Retrieving libdevmapper1.02.1 I: Validating libdevmapper1.02.1 I: Retrieving libgcc1 I: Validating libgcc1 I: Retrieving libgdbm3 I: Validating libgdbm3 I: Retrieving libgmp3c2 I: Validating libgmp3c2 I: Retrieving libgomp1 I: Validating libgomp1 I: Retrieving liblocale-gettext-perl I: Validating liblocale-gettext-perl I: Retrieving libmpfr1ldbl I: Validating libmpfr1ldbl I: Retrieving libncurses5 I: Validating libncurses5 I: Retrieving libpam-modules I: Validating libpam-modules I: Retrieving libpam-runtime I: Validating libpam-runtime I: Retrieving libpam0g I: Validating libpam0g I: Retrieving libreadline5 I: Validating libreadline5 I: Retrieving libselinux1 I: Validating libselinux1 I: Retrieving libsepol1 I: Validating libsepol1 I: Retrieving libslang2 I: Validating libslang2 I: Retrieving libss2 I: Validating libss2 I: Retrieving libstdc++6 I: Validating libstdc++6 I: Retrieving libstdc++6-4.3-dev I: Validating libstdc++6-4.3-dev I: Retrieving libtext-charwidth-perl I: Validating libtext-charwidth-perl I: Retrieving libtext-iconv-perl I: Validating libtext-iconv-perl I: Retrieving libtext-wrapi18n-perl I: Validating libtext-wrapi18n-perl I: Retrieving libtimedate-perl I: Validating libtimedate-perl I: Retrieving libusb-0.1-4 I: Validating libusb-0.1-4 I: Retrieving libuuid1 I: Validating libuuid1 I: Retrieving linux-libc-dev I: Validating linux-libc-dev I: Retrieving login I: Validating login I: Retrieving lsb-base I: Validating lsb-base I: Retrieving lzma I: Validating lzma I: Retrieving make I: Validating make I: Retrieving makedev I: Validating makedev I: Retrieving mawk I: Validating mawk I: Retrieving mktemp I: Validating mktemp I: Retrieving mount I: Validating mount I: Retrieving ncurses-base I: Validating ncurses-base I: Retrieving ncurses-bin I: Validating ncurses-bin I: Retrieving passwd I: Validating passwd I: Retrieving patch I: Validating patch I: Retrieving perl I: Validating perl I: Retrieving perl-base I: Validating perl-base I: Retrieving perl-modules I: Validating perl-modules I: Retrieving procps I: Validating procps I: Retrieving readline-common I: Validating readline-common I: Retrieving sed I: Validating sed I: Retrieving sysv-rc I: Validating sysv-rc I: Retrieving sysvinit I: Validating sysvinit I: Retrieving sysvinit-utils I: Validating sysvinit-utils I: Retrieving tar I: Validating tar I: Retrieving tzdata I: Validating tzdata I: Retrieving util-linux I: Validating util-linux I: Retrieving zlib1g I: Validating zlib1g I: Extracting base-files... I: Extracting base-passwd... I: Extracting bash... I: Extracting bsdutils... I: Extracting coreutils... I: Extracting debconf... I: Extracting debconf-i18n... I: Extracting debianutils... I: Extracting diff... I: Extracting dpkg... I: Extracting e2fslibs... I: Extracting e2fsprogs... I: Extracting findutils... I: Extracting gcc-4.2-base... I: Extracting gcc-4.3-base... I: Extracting grep... I: Extracting gzip... I: Extracting hostname... I: Extracting initscripts... I: Extracting libacl1... I: Extracting libattr1... I: Extracting libblkid1... I: Extracting libc6... I: Extracting libcomerr2... I: Extracting libdb4.6... I: Extracting libdevmapper1.02.1... I: Extracting libgcc1... I: Extracting liblocale-gettext-perl... I: Extracting libncurses5... I: Extracting libpam-modules... I: Extracting libpam-runtime... I: Extracting libpam0g... I: Extracting libselinux1... I: Extracting libsepol1... I: Extracting libslang2... I: Extracting libss2... I: Extracting libstdc++6... I: Extracting libtext-charwidth-perl... I: Extracting libtext-iconv-perl... I: Extracting libtext-wrapi18n-perl... I: Extracting libuuid1... I: Extracting login... I: Extracting lsb-base... I: Extracting lzma... I: Extracting makedev... I: Extracting mawk... I: Extracting mktemp... I: Extracting mount... I: Extracting ncurses-base... I: Extracting ncurses-bin... I: Extracting passwd... I: Extracting perl-base... I: Extracting procps... I: Extracting sed... I: Extracting sysv-rc... I: Extracting sysvinit... I: Extracting sysvinit-utils... I: Extracting tar... I: Extracting tzdata... I: Extracting util-linux... I: Extracting zlib1g... I: Installing core packages... I: Unpacking required packages... I: Unpacking base-files... I: Unpacking base-passwd... I: Unpacking bash... I: Unpacking bsdutils... I: Unpacking coreutils... I: Unpacking debconf... I: Unpacking debconf-i18n... I: Unpacking debianutils... I: Unpacking diff... I: Unpacking dpkg... I: Unpacking e2fslibs... I: Unpacking e2fsprogs... I: Unpacking findutils... I: Unpacking gcc-4.2-base... I: Unpacking gcc-4.3-base... I: Unpacking grep... I: Unpacking gzip... I: Unpacking hostname... I: Unpacking initscripts... I: Unpacking libacl1... I: Unpacking libattr1... I: Unpacking libblkid1... I: Unpacking libc6... I: Unpacking libcomerr2... I: Unpacking libdb4.6... I: Unpacking libdevmapper1.02.1... I: Unpacking libgcc1... I: Unpacking liblocale-gettext-perl... I: Unpacking libncurses5... I: Unpacking libpam-modules... I: Unpacking libpam-runtime... I: Unpacking libpam0g... I: Unpacking libselinux1... I: Unpacking libsepol1... I: Unpacking libslang2... I: Unpacking libss2... I: Unpacking libstdc++6... I: Unpacking libtext-charwidth-perl... I: Unpacking libtext-iconv-perl... I: Unpacking libtext-wrapi18n-perl... I: Unpacking libuuid1... I: Unpacking login... I: Unpacking lsb-base... I: Unpacking lzma... I: Unpacking makedev... I: Unpacking mawk... I: Unpacking mktemp... I: Unpacking mount... I: Unpacking ncurses-base... I: Unpacking ncurses-bin... I: Unpacking passwd... I: Unpacking perl-base... I: Unpacking procps... I: Unpacking sed... I: Unpacking sysv-rc... I: Unpacking sysvinit... I: Unpacking sysvinit-utils... I: Unpacking tar... I: Unpacking tzdata... I: Unpacking util-linux... I: Unpacking zlib1g... I: Configuring required packages... I: Configuring sysv-rc... I: Configuring gcc-4.2-base... I: Configuring libpam-runtime... I: Configuring gcc-4.3-base... I: Configuring libc6... I: Configuring mktemp... I: Configuring debianutils... I: Configuring bsdutils... I: Configuring libsepol1... I: Configuring tar... I: Configuring zlib1g... I: Configuring libgcc1... I: Configuring libncurses5... I: Configuring libattr1... I: Configuring sed... I: Configuring base-passwd... I: Configuring libcomerr2... I: Configuring mawk... I: Configuring libdb4.6... I: Configuring grep... I: Configuring hostname... I: Configuring libacl1... I: Configuring libslang2... I: Configuring libss2... I: Configuring findutils... I: Configuring gzip... I: Configuring diff... I: Configuring libselinux1... I: Configuring libstdc++6... I: Configuring coreutils... I: Configuring makedev... I: Configuring lzma... I: Configuring ncurses-base... I: Configuring ncurses-bin... I: Configuring base-files... I: Configuring libdevmapper1.02.1... I: Configuring e2fslibs... I: Configuring dpkg... I: Configuring sysvinit-utils... I: Configuring bash... I: Configuring lsb-base... I: Configuring procps... I: Configuring perl-base... I: Configuring libtext-iconv-perl... I: Configuring liblocale-gettext-perl... I: Configuring libtext-charwidth-perl... I: Configuring libtext-wrapi18n-perl... I: Configuring debconf-i18n... I: Configuring debconf... I: Configuring libpam0g... I: Configuring libpam-modules... I: Configuring tzdata... I: Configuring passwd... I: Configuring login... I: Configuring libuuid1... I: Configuring libblkid1... I: Configuring e2fsprogs... I: Configuring util-linux... I: Configuring mount... I: Configuring initscripts... I: Configuring sysvinit... I: Unpacking the base system... I: Unpacking apt... I: Unpacking binutils... I: Unpacking build-essential... I: Unpacking bzip2... I: Unpacking cpio... I: Unpacking cpp... I: Unpacking cpp-4.3... I: Unpacking debian-archive-keyring... I: Unpacking dpkg-dev... I: Unpacking g++... I: Unpacking g++-4.3... I: Unpacking gcc... I: Unpacking gcc-4.3... I: Unpacking gnupg... I: Unpacking gpgv... I: Unpacking libbz2-1.0... I: Unpacking libc6-dev... I: Unpacking libgdbm3... I: Unpacking libgmp3c2... I: Unpacking libgomp1... I: Unpacking libmpfr1ldbl... I: Unpacking libreadline5... I: Unpacking libstdc++6-4.3-dev... I: Unpacking libtimedate-perl... I: Unpacking libusb-0.1-4... I: Unpacking linux-libc-dev... I: Unpacking make... I: Unpacking patch... I: Unpacking perl... I: Unpacking perl-modules... I: Unpacking readline-common... I: Configuring the base system... I: Configuring gpgv... I: Configuring libgmp3c2... I: Configuring libgdbm3... I: Configuring libusb-0.1-4... I: Configuring linux-libc-dev... I: Configuring patch... I: Configuring libbz2-1.0... I: Configuring make... I: Configuring cpio... I: Configuring binutils... I: Configuring libgomp1... I: Configuring readline-common... I: Configuring libmpfr1ldbl... I: Configuring cpp-4.3... I: Configuring libc6-dev... I: Configuring bzip2... I: Configuring gcc-4.3... I: Configuring libreadline5... I: Configuring gnupg... I: Configuring cpp... I: Configuring debian-archive-keyring... I: Configuring gcc... I: Configuring apt... I: Configuring perl-modules... I: Configuring libstdc++6-4.3-dev... I: Configuring perl... I: Configuring g++-4.3... I: Configuring libtimedate-perl... I: Configuring g++... I: Configuring dpkg-dev... I: Configuring build-essential... I: Base system installed successfully. I: debootstrap finished I: copying local configuration I: Installing apt-lines I: user script /var/cache/pbuilder/build//NUM/tmp/hooks/G50-initscripts-2.86.ds1-11-cdebootstrap0.3.9.sh starting warning: can't open /etc/mtab: No such file or directory umount: /sys: not mounted warning: can't open /etc/mtab: No such file or directory umount: /proc/bus/usb: not found warning: can't open /etc/mtab: No such file or directory umount: /dev/shm: not mounted warning: can't open /etc/mtab: No such file or directory umount: /proc: not mounted warning: can't open /etc/mtab: No such file or directory umount: /dev/pts: not mounted I: user script /var/cache/pbuilder/build//NUM/tmp/hooks/G50-initscripts-2.86.ds1-11-cdebootstrap0.3.9.sh finished I: Refreshing the base.tgz I: upgrading packages I: mounting /proc filesystem I: mounting /dev/pts filesystem I: installing dummy policy-rc.d Get:1 http://localhost lenny Release.gpg [1032B] Hit http://localhost lenny Release Ign http://localhost lenny/main Packages/DiffIndex Ign http://localhost lenny/main Packages Hit http://localhost lenny/main Packages Fetched XXXB in Xs (XXXXXB/s) Reading package lists... Reading package lists... Building dependency tree... 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. 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. The following extra packages will be installed: libcwidget3 libept0 libncursesw5 libsigc++-2.0-0c2a libxapian15 Suggested packages: tasksel debtags libcwidget-dev xapian-tools Recommended packages: aptitude-doc-en aptitude-doc libparse-debianchangelog-perl libgpm2 The following NEW packages will be installed: aptitude libcwidget3 libept0 libncursesw5 libsigc++-2.0-0c2a libxapian15 0 upgraded, 6 newly installed, 0 to remove and 0 not upgraded. Need to get 4793kB of archives. After this operation, 14.1MB of additional disk space will be used. Get:1 http://localhost lenny/main libncursesw5 5.7+20081213-1 [375kB] Get:2 http://localhost lenny/main libsigc++-2.0-0c2a 2.0.18-2 [34.2kB] Get:3 http://localhost lenny/main libcwidget3 0.5.12-4 [310kB] Get:4 http://localhost lenny/main libxapian15 1.0.7-4 [801kB] Get:5 http://localhost lenny/main libept0 0.5.22 [205kB] Get:6 http://localhost lenny/main aptitude 0.4.11.11-1~lenny1 [3068kB] debconf: delaying package configuration, since apt-utils is not installed Fetched XXXB in Xs (XXXXXB/s) Selecting previously deselected package libncursesw5. (Reading database ... 9474 files and directories currently installed.) Unpacking libncursesw5 (from .../libncursesw5_5.7+20081213-1_amd64.deb) ... Selecting previously deselected package libsigc++-2.0-0c2a. Unpacking libsigc++-2.0-0c2a (from .../libsigc++-2.0-0c2a_2.0.18-2_amd64.deb) ... Selecting previously deselected package libcwidget3. Unpacking libcwidget3 (from .../libcwidget3_0.5.12-4_amd64.deb) ... Selecting previously deselected package libxapian15. Unpacking libxapian15 (from .../libxapian15_1.0.7-4_amd64.deb) ... Selecting previously deselected package libept0. Unpacking libept0 (from .../libept0_0.5.22_amd64.deb) ... Selecting previously deselected package aptitude. Unpacking aptitude (from .../aptitude_0.4.11.11-1~lenny1_amd64.deb) ... Setting up libncursesw5 (5.7+20081213-1) ... Setting up libsigc++-2.0-0c2a (2.0.18-2) ... Setting up libcwidget3 (0.5.12-4) ... Setting up libxapian15 (1.0.7-4) ... Setting up libept0 (0.5.22) ... Setting up aptitude (0.4.11.11-1~lenny1) ... I: user script /var/cache/pbuilder/build//NUM/tmp/hooks/E50-initscripts-2.86.ds1-7.workaround.sh starting umount: none: not found umount: /sys: not mounted umount: none: not found umount: /sys: not mounted umount: /run: not found umount: usbfs: not found umount: /proc/bus/usb: not mounted umount: usbfs: not found umount: /proc/bus/usb: not mounted umount: tmpfs: not found umount: /dev/shm: not mounted umount: tmpfs: not found umount: /dev/shm: not mounted umount: tmpfs: not found umount: /lib/init/rw: not mounted umount: tmpfs: not found umount: /lib/init/rw: not mounted cat: /var/run/inetd.pid: No such file or directory kill: usage: kill [-s sigspec | -n signum | -sigspec] pid | jobspec ... or kill -l [sigspec] I: user script /var/cache/pbuilder/build//NUM/tmp/hooks/E50-initscripts-2.86.ds1-7.workaround.sh finished I: unmounting dev/pts filesystem I: unmounting proc filesystem I: creating base tarball [/TESTDIR/testimage] I: cleaning the build env I: removing directory /var/cache/pbuilder/build//NUM and its subdirectories pbuilder-0.215ubuntu7/testsuite/normal/pbuilder-update-squeeze-sid.log0000664000000000000000000002135712312041170023116 0ustar I: Upgrading for distribution sid I: Building the build Environment I: extracting base tarball [/TESTDIR/testimage] I: creating local configuration I: copying local configuration I: Installing apt-lines I: mounting /proc filesystem I: mounting /dev/pts filesystem I: policy-rc.d already exists I: Refreshing the base.tgz I: upgrading packages Get:1 http://ftp.de.debian.org sid Release.gpg [835B] Get:2 http://ftp.de.debian.org sid Release [104kB] Get:3 http://ftp.de.debian.org sid/main Packages [6313kB] Fetched XXXB in Xs (XXXXXB/s) Reading package lists... I: Obtaining the cached apt archive contents Reading package lists... Building dependency tree... Reading state information... The following NEW packages will be installed: cpp-4.4 g++-4.4 gcc-4.4 libapr1 libaprutil1 libboost-iostreams1.40.0 libexpat1 liblog4cxx10 libsqlite3-0 libstdc++6-4.4-dev The following packages will be upgraded: aptitude bsdmainutils coreutils cpp dmidecode dpkg dpkg-dev g++ gcc gcc-4.4-base libdb4.7 libdb4.8 libgcc1 libgomp1 libstdc++6 libudev0 linux-libc-dev nano tzdata udev zlib1g Extracting templates from packages: 96% Extracting templates from packages: 100% Preconfiguring packages ... 21 upgraded, 10 newly installed, 0 to remove and 0 not upgraded. Need to get 0B/31.0MB of archives. After this operation, 41.0MB of additional disk space will be used. (Reading database ... 12190 files and directories currently installed.) Preparing to replace coreutils 7.4-2 (using .../coreutils_8.0-2_amd64.deb) ... Unpacking replacement coreutils ... Processing triggers for install-info ... Processing triggers for man-db ... Setting up coreutils (8.0-2) ... (Reading database ... 12201 files and directories currently installed.) Preparing to replace dpkg 1.15.5.4 (using .../dpkg_1.15.5.5_amd64.deb) ... Unpacking replacement dpkg ... Processing triggers for man-db ... Setting up dpkg (1.15.5.5) ... (Reading database ... 12201 files and directories currently installed.) Preparing to replace libudev0 149-1 (using .../libudev0_149-2_amd64.deb) ... Unpacking replacement libudev0 ... Preparing to replace udev 149-1 (using .../archives/udev_149-2_amd64.deb) ... Unpacking replacement udev ... Preparing to replace libgomp1 4.4.2-3 (using .../libgomp1_4.4.2-8_amd64.deb) ... Unpacking replacement libgomp1 ... Preparing to replace gcc-4.4-base 4.4.2-3 (using .../gcc-4.4-base_4.4.2-8_amd64.deb) ... Unpacking replacement gcc-4.4-base ... Processing triggers for man-db ... Setting up gcc-4.4-base (4.4.2-8) ... (Reading database ... 12201 files and directories currently installed.) Preparing to replace libstdc++6 4.4.2-3 (using .../libstdc++6_4.4.2-8_amd64.deb) ... Unpacking replacement libstdc++6 ... Setting up libstdc++6 (4.4.2-8) ... (Reading database ... 12201 files and directories currently installed.) Preparing to replace libgcc1 1:4.4.2-3 (using .../libgcc1_1%3a4.4.2-8_amd64.deb) ... Unpacking replacement libgcc1 ... Setting up libgcc1 (1:4.4.2-8) ... (Reading database ... 12201 files and directories currently installed.) Preparing to replace tzdata 2009s-1 (using .../tzdata_2009u-1_all.deb) ... Unpacking replacement tzdata ... Setting up tzdata (2009u-1) ... Current default time zone: 'Etc/UTC' Local time is now: XXXX Universal Time is now: XXXX Run 'dpkg-reconfigure tzdata' if you wish to change it. (Reading database ... 12201 files and directories currently installed.) Preparing to replace zlib1g 1:1.2.3.3.dfsg-15 (using .../zlib1g_1%3a1.2.3.4.dfsg-3_amd64.deb) ... Unpacking replacement zlib1g ... Setting up zlib1g (1:1.2.3.4.dfsg-3) ... (Reading database ... 12201 files and directories currently installed.) Preparing to replace libdb4.7 4.7.25-8 (using .../libdb4.7_4.7.25-9_amd64.deb) ... Unpacking replacement libdb4.7 ... Setting up libdb4.7 (4.7.25-9) ... Selecting previously deselected package libboost-iostreams1.40.0. (Reading database ... 12201 files and directories currently installed.) Unpacking libboost-iostreams1.40.0 (from .../libboost-iostreams1.40.0_1.40.0-5_amd64.deb) ... Selecting previously deselected package libapr1. Unpacking libapr1 (from .../libapr1_1.3.8-1_amd64.deb) ... Preparing to replace libdb4.8 4.8.24-1 (using .../libdb4.8_4.8.26-1_amd64.deb) ... Unpacking replacement libdb4.8 ... Selecting previously deselected package libexpat1. Unpacking libexpat1 (from .../libexpat1_2.0.1-7_amd64.deb) ... Selecting previously deselected package libaprutil1. Unpacking libaprutil1 (from .../libaprutil1_1.3.9+dfsg-3_amd64.deb) ... Selecting previously deselected package liblog4cxx10. Unpacking liblog4cxx10 (from .../liblog4cxx10_0.10.0-1.1_amd64.deb) ... Selecting previously deselected package libsqlite3-0. Unpacking libsqlite3-0 (from .../libsqlite3-0_3.6.21-2_amd64.deb) ... Preparing to replace aptitude 0.4.11.11-1+b2 (using .../aptitude_0.6.1.3-3_amd64.deb) ... Unpacking replacement aptitude ... Preparing to replace bsdmainutils 8.0.3 (using .../bsdmainutils_8.0.5_amd64.deb) ... Unpacking replacement bsdmainutils ... Preparing to replace dmidecode 2.9-1.1 (using .../dmidecode_2.9-1.2_amd64.deb) ... Unpacking replacement dmidecode ... Preparing to replace nano 2.2.0-1 (using .../nano_2.2.1-1_amd64.deb) ... Unpacking replacement nano ... Selecting previously deselected package cpp-4.4. Unpacking cpp-4.4 (from .../cpp-4.4_4.4.2-8_amd64.deb) ... Preparing to replace cpp 4:4.3.4-1 (using .../cpp_4%3a4.4.2-2_amd64.deb) ... Unpacking replacement cpp ... Preparing to replace dpkg-dev 1.15.5.4 (using .../dpkg-dev_1.15.5.5_all.deb) ... Unpacking replacement dpkg-dev ... Selecting previously deselected package gcc-4.4. Unpacking gcc-4.4 (from .../gcc-4.4_4.4.2-8_amd64.deb) ... Preparing to replace gcc 4:4.3.4-1 (using .../gcc_4%3a4.4.2-2_amd64.deb) ... Removing old gcc doc directory. Unpacking replacement gcc ... Selecting previously deselected package libstdc++6-4.4-dev. Unpacking libstdc++6-4.4-dev (from .../libstdc++6-4.4-dev_4.4.2-8_amd64.deb) ... Selecting previously deselected package g++-4.4. Unpacking g++-4.4 (from .../g++-4.4_4.4.2-8_amd64.deb) ... Preparing to replace g++ 4:4.3.4-1 (using .../g++_4%3a4.4.2-2_amd64.deb) ... Unpacking replacement g++ ... Preparing to replace linux-libc-dev 2.6.30-8 (using .../linux-libc-dev_2.6.32-3_amd64.deb) ... Unpacking replacement linux-libc-dev ... Processing triggers for man-db ... Processing triggers for install-info ... Setting up libudev0 (149-2) ... Setting up udev (149-2) ... A chroot environment has been detected, udev not started. Setting up libgomp1 (4.4.2-8) ... Setting up libboost-iostreams1.40.0 (1.40.0-5) ... Setting up libapr1 (1.3.8-1) ... Setting up libdb4.8 (4.8.26-1) ... Setting up libexpat1 (2.0.1-7) ... Setting up libaprutil1 (1.3.9+dfsg-3) ... Setting up liblog4cxx10 (0.10.0-1.1) ... Setting up libsqlite3-0 (3.6.21-2) ... Setting up aptitude (0.6.1.3-3) ... update-alternatives: using /usr/bin/aptitude-curses to provide /usr/bin/aptitude (aptitude) in auto mode. Setting up bsdmainutils (8.0.5) ... update-alternatives: using /usr/bin/bsd-write to provide /usr/bin/write (write) in auto mode. Setting up dmidecode (2.9-1.2) ... Setting up nano (2.2.1-1) ... Setting up cpp-4.4 (4.4.2-8) ... Setting up cpp (4:4.4.2-2) ... Setting up dpkg-dev (1.15.5.5) ... Setting up gcc-4.4 (4.4.2-8) ... Setting up gcc (4:4.4.2-2) ... Setting up linux-libc-dev (2.6.32-3) ... Setting up g++-4.4 (4.4.2-8) ... Setting up libstdc++6-4.4-dev (4.4.2-8) ... Setting up g++ (4:4.4.2-2) ... Reading package lists... Building dependency tree... Reading state information... The following packages will be REMOVED: g++-4.3 libstdc++6-4.3-dev 0 upgraded, 0 newly installed, 2 to remove and 0 not upgraded. After this operation, 20.7MB disk space will be freed. (Reading database ... 12980 files and directories currently installed.) Removing g++-4.3 ... Removing libstdc++6-4.3-dev ... Reading package lists... Building dependency tree... Reading state information... build-essential is already the newest version. dpkg-dev is already the newest version. dpkg-dev set to manually installed. apt is already the newest version. aptitude is already the newest version. 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. I: Copying back the cached apt archive contents I: user script /var/cache/pbuilder/build//NUM/tmp/hooks/E50-initscripts-2.86.ds1-7.workaround.sh starting umount: /sys: not mounted umount: /run: not found umount: /proc/bus/usb: not mounted umount: /dev/shm: not mounted umount: /lib/init/rw: not mounted cat: /var/run/inetd.pid: No such file or directory kill: 20: Usage: kill [-s sigspec | -signum | -sigspec] [pid | job]... or kill -l [exitstatus] I: user script /var/cache/pbuilder/build//NUM/tmp/hooks/E50-initscripts-2.86.ds1-7.workaround.sh finished I: unmounting dev/pts filesystem I: unmounting proc filesystem I: creating base tarball [/TESTDIR/testimage] I: cleaning the build env I: removing directory /var/cache/pbuilder/build//NUM and its subdirectories pbuilder-0.215ubuntu7/testsuite/normal/pdebuild-normal-lenny.log0000664000000000000000000007347312312041170022003 0ustar dpkg-buildpackage: set CFLAGS to default value: -g -O2 dpkg-buildpackage: set CPPFLAGS to default value: dpkg-buildpackage: set LDFLAGS to default value: dpkg-buildpackage: set FFLAGS to default value: -g -O2 dpkg-buildpackage: set CXXFLAGS to default value: -g -O2 dpkg-buildpackage: source package dsh dpkg-buildpackage: source version 0.25.10-1 dpkg-buildpackage: source changed by Junichi Uekawa fakeroot debian/rules clean dh_testdir dh_testroot rm -f build-stamp configure-stamp /usr/bin/make clean make[1]: Entering directory `/TESTDIR/dir2/dsh-0.25.10' make[1]: *** No rule to make target `clean'. Stop. make[1]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10' make: [clean] Error 2 (ignored) /usr/bin/make distclean make[1]: Entering directory `/TESTDIR/dir2/dsh-0.25.10' make[1]: *** No rule to make target `distclean'. Stop. make[1]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10' make: [clean] Error 2 (ignored) dh_clean dpkg-source -b dsh-0.25.10 dpkg-source: info: using source format `1.0' dpkg-source: info: building dsh using existing dsh_0.25.10.orig.tar.gz dpkg-source: info: building dsh in dsh_0.25.10-1.diff.gz dpkg-source: warning: file dsh-0.25.10/dcp.sh has no final newline (either original or modified version) dpkg-source: warning: file dsh-0.25.10/debian/compat has no final newline (either original or modified version) dpkg-source: info: building dsh in dsh_0.25.10-1.dsc dpkg-genchanges -S >../dsh_0.25.10-1_source.changes dpkg-genchanges: including full source code in upload dpkg-buildpackage: source only upload (original source is included) W: /home/dancer/.pbuilderrc does not exist I: using fakeroot in build. I: Current time: Sun Nov 29 18:58:37 JST 2009 I: pbuilder-time-stamp: 1259488717 I: Building the build Environment I: extracting base tarball [/TESTDIR/testimage] I: creating local configuration I: copying local configuration I: mounting /proc filesystem I: mounting /dev/pts filesystem I: policy-rc.d already exists I: Installing the build-deps -> Attempting to satisfy build-dependencies -> Creating pbuilder-satisfydepends-dummy package Package: pbuilder-satisfydepends-dummy Version: 0.invalid.0 Architecture: amd64 Maintainer: Debian Pbuilder Team Description: Dummy package to satisfy dependencies with aptitude - created by pbuilder This package was created automatically by pbuilder and should Depends: debhelper (>> 3.0.0), libdshconfig1-dev (>= 0.20.11-1), po4a dpkg-deb: building package `pbuilder-satisfydepends-dummy' in `/tmp/satisfydepends-aptitude/pbuilder-satisfydepends-dummy.deb'. Reading package lists... Building dependency tree... Reading state information... aptitude is already the newest version. 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. Selecting previously deselected package pbuilder-satisfydepends-dummy. (Reading database ... 9662 files and directories currently installed.) Unpacking pbuilder-satisfydepends-dummy (from .../pbuilder-satisfydepends-dummy.deb) ... dpkg: dependency problems prevent configuration of pbuilder-satisfydepends-dummy: pbuilder-satisfydepends-dummy depends on debhelper (>> 3.0.0); however: Package debhelper is not installed. pbuilder-satisfydepends-dummy depends on libdshconfig1-dev (>= 0.20.11-1); however: Package libdshconfig1-dev is not installed. pbuilder-satisfydepends-dummy depends on po4a; however: Package po4a is not installed. dpkg: error processing pbuilder-satisfydepends-dummy (--install): dependency problems - leaving unconfigured Errors were encountered while processing: pbuilder-satisfydepends-dummy Reading package lists... Building dependency tree... Reading state information... Initializing package states... Writing extended state information... The following NEW packages will be installed: bsdmainutils{a} debhelper{a} file{a} gettext{a} gettext-base{a} groff-base{a} html2text{a} intltool-debian{a} libdshconfig1{a} libdshconfig1-dev{a} libmagic1{a} libsgmls-perl{a} libsp1c2{a} man-db{a} po-debconf{a} po4a{a} sp{a} The following partially installed packages will be configured: pbuilder-satisfydepends-dummy 0 packages upgraded, 17 newly installed, 0 to remove and 0 not upgraded. Need to get 8922kB of archives. After unpacking 28.1MB will be used. Writing extended state information... Get:1 http://localhost lenny/main libmagic1 4.26-1 [369kB] Get:2 http://localhost lenny/main file 4.26-1 [44.5kB] Get:3 http://localhost lenny/main html2text 1.3.2a-5 [95.9kB] Get:4 http://localhost lenny/main gettext-base 0.17-4 [136kB] Get:5 http://localhost lenny/main gettext 0.17-4 [2791kB] Get:6 http://localhost lenny/main intltool-debian 0.35.0+20060710.1 [30.8kB] Get:7 http://localhost lenny/main po-debconf 1.0.15 [237kB] Get:8 http://localhost lenny/main groff-base 1.18.1.1-21 [898kB] Get:9 http://localhost lenny/main bsdmainutils 6.1.10 [179kB] Get:10 http://localhost lenny/main man-db 2.5.2-4 [1107kB] Get:11 http://localhost lenny/main debhelper 7.0.15 [554kB] Get:12 http://localhost lenny/main libdshconfig1 0.20.13-1 [11.0kB] Get:13 http://localhost lenny/main libdshconfig1-dev 0.20.13-1 [25.4kB] Get:14 http://localhost lenny/main libsgmls-perl 1.03ii-32 [27.8kB] Get:15 http://localhost lenny/main libsp1c2 1.3.4-1.2.1-47 [1386kB] Get:16 http://localhost lenny/main sp 1.3.4-1.2.1-47 [182kB] Get:17 http://localhost lenny/main po4a 0.34-2 [847kB] debconf: delaying package configuration, since apt-utils is not installed Fetched XXXB in Xs (XXXXXB/s) Selecting previously deselected package libmagic1. (Reading database ... 9662 files and directories currently installed.) Unpacking libmagic1 (from .../libmagic1_4.26-1_amd64.deb) ... Selecting previously deselected package file. Unpacking file (from .../archives/file_4.26-1_amd64.deb) ... Selecting previously deselected package html2text. Unpacking html2text (from .../html2text_1.3.2a-5_amd64.deb) ... Selecting previously deselected package gettext-base. Unpacking gettext-base (from .../gettext-base_0.17-4_amd64.deb) ... Selecting previously deselected package gettext. Unpacking gettext (from .../gettext_0.17-4_amd64.deb) ... Selecting previously deselected package intltool-debian. Unpacking intltool-debian (from .../intltool-debian_0.35.0+20060710.1_all.deb) ... Selecting previously deselected package po-debconf. Unpacking po-debconf (from .../po-debconf_1.0.15_all.deb) ... Selecting previously deselected package groff-base. Unpacking groff-base (from .../groff-base_1.18.1.1-21_amd64.deb) ... Selecting previously deselected package bsdmainutils. Unpacking bsdmainutils (from .../bsdmainutils_6.1.10_amd64.deb) ... Selecting previously deselected package man-db. Unpacking man-db (from .../man-db_2.5.2-4_amd64.deb) ... Selecting previously deselected package debhelper. Unpacking debhelper (from .../debhelper_7.0.15_all.deb) ... Selecting previously deselected package libdshconfig1. Unpacking libdshconfig1 (from .../libdshconfig1_0.20.13-1_amd64.deb) ... Selecting previously deselected package libdshconfig1-dev. Unpacking libdshconfig1-dev (from .../libdshconfig1-dev_0.20.13-1_amd64.deb) ... Selecting previously deselected package libsgmls-perl. Unpacking libsgmls-perl (from .../libsgmls-perl_1.03ii-32_all.deb) ... Selecting previously deselected package libsp1c2. Unpacking libsp1c2 (from .../libsp1c2_1.3.4-1.2.1-47_amd64.deb) ... Selecting previously deselected package sp. Unpacking sp (from .../sp_1.3.4-1.2.1-47_amd64.deb) ... Selecting previously deselected package po4a. Unpacking po4a (from .../archives/po4a_0.34-2_all.deb) ... Setting up libmagic1 (4.26-1) ... Setting up file (4.26-1) ... Setting up html2text (1.3.2a-5) ... Setting up gettext-base (0.17-4) ... Setting up gettext (0.17-4) ... Setting up intltool-debian (0.35.0+20060710.1) ... Setting up po-debconf (1.0.15) ... Setting up groff-base (1.18.1.1-21) ... Setting up bsdmainutils (6.1.10) ... Setting up man-db (2.5.2-4) ... Building database of manual pages ... Setting up debhelper (7.0.15) ... Setting up libdshconfig1 (0.20.13-1) ... Setting up libdshconfig1-dev (0.20.13-1) ... Setting up libsgmls-perl (1.03ii-32) ... Setting up libsp1c2 (1.3.4-1.2.1-47) ... Setting up sp (1.3.4-1.2.1-47) ... Setting up po4a (0.34-2) ... Setting up pbuilder-satisfydepends-dummy (0.invalid.0) ... Reading package lists... Building dependency tree... Reading state information... Reading extended state information... Initializing package states... Writing extended state information... -> Finished parsing the build-deps Reading package lists... Building dependency tree... Reading state information... aptitude is already the newest version. The following NEW packages will be installed: fakeroot 0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded. Need to get 116kB of archives. After this operation, 467kB of additional disk space will be used. Get:1 http://localhost lenny/main fakeroot 1.11 [116kB] debconf: delaying package configuration, since apt-utils is not installed Fetched XXXB in Xs (XXXXXB/s) Selecting previously deselected package fakeroot. (Reading database ... 11149 files and directories currently installed.) Unpacking fakeroot (from .../fakeroot_1.11_amd64.deb) ... Processing triggers for man-db ... Setting up fakeroot (1.11) ... I: Copying source file I: copying [../dsh_0.25.10-1.dsc] I: copying [../dsh_0.25.10.orig.tar.gz] I: copying [../dsh_0.25.10-1.diff.gz] I: Extracting source dpkg-source: warning: extracting unsigned source package (dsh_0.25.10-1.dsc) dpkg-source: extracting dsh in dsh-0.25.10 dpkg-source: info: unpacking dsh_0.25.10.orig.tar.gz dpkg-source: info: applying dsh_0.25.10-1.diff.gz I: Building the package dpkg-buildpackage: set CFLAGS to default value: -g -O2 dpkg-buildpackage: set CPPFLAGS to default value: dpkg-buildpackage: set LDFLAGS to default value: dpkg-buildpackage: set FFLAGS to default value: -g -O2 dpkg-buildpackage: set CXXFLAGS to default value: -g -O2 dpkg-buildpackage: source package dsh dpkg-buildpackage: source version 0.25.10-1 dpkg-buildpackage: source changed by Junichi Uekawa dpkg-buildpackage: host architecture amd64 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.10' make[1]: *** No rule to make target `clean'. Stop. make[1]: Leaving directory `/tmp/buildd/dsh-0.25.10' make: [clean] Error 2 (ignored) /usr/bin/make distclean make[1]: Entering directory `/tmp/buildd/dsh-0.25.10' make[1]: *** No rule to make target `distclean'. Stop. make[1]: Leaving directory `/tmp/buildd/dsh-0.25.10' make: [clean] Error 2 (ignored) dh_clean dpkg-source -b dsh-0.25.10 dpkg-source: info: using source format `1.0' dpkg-source: info: building dsh using existing dsh_0.25.10.orig.tar.gz dpkg-source: info: building dsh in dsh_0.25.10-1.diff.gz dpkg-source: warning: file dsh-0.25.10/dcp.sh has no final newline (either original or modified version) dpkg-source: warning: file dsh-0.25.10/debian/compat has no final newline (either original or modified version) dpkg-source: info: building dsh in dsh_0.25.10-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 ISO C89... none needed checking dependency style of gcc... gcc3 checking for strerror in -lcposix... no checking for gcc... (cached) gcc checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) 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 ISO C89... (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 grep that handles long lines and -e... /bin/grep checking for egrep... /bin/grep -E checking for ANSI C header files... yes checking for sys/wait.h that is POSIX.1 compatible... yes checking build system type... x86_64-unknown-linux-gnu checking host system type... x86_64-unknown-linux-gnu checking for a sed that does not truncate output... /bin/sed checking for ld used by gcc... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for /usr/bin/ld option to reload object files... -r checking for BSD-compatible nm... /usr/bin/nm -B checking whether ln -s works... yes checking how to recognize dependent libraries... pass_all checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking dlfcn.h usability... yes checking dlfcn.h presence... yes checking for dlfcn.h... yes checking for g++... g++ checking whether we are using the GNU C++ compiler... yes checking whether g++ accepts -g... yes checking dependency style of g++... gcc3 checking how to run the C++ preprocessor... g++ -E checking for g77... no checking for xlf... no checking for f77... no checking for frt... no checking for pgf77... no checking for cf77... no checking for fort77... no checking for fl32... no checking for af77... no checking for xlf90... no checking for f90... no checking for pgf90... no checking for pghpf... no checking for epcf90... no checking for gfortran... no checking for g95... no checking for xlf95... no checking for f95... no checking for fort... no checking for ifort... no checking for ifc... no checking for efc... no checking for pgf95... no checking for lf95... no checking for ftn... no checking whether we are using the GNU Fortran 77 compiler... no checking whether accepts -g... no checking the maximum length of command line arguments... 98304 checking command to parse /usr/bin/nm -B output from gcc object... ok checking for objdir... .libs checking for ar... ar checking for ranlib... ranlib checking for strip... strip checking if gcc supports -fno-rtti -fno-exceptions... no checking for gcc option to produce PIC... -fPIC checking if gcc PIC flag -fPIC works... yes checking if gcc static flag -static works... yes checking if gcc supports -c -o file.o... yes checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) 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 -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking for g++ option to produce PIC... -fPIC checking if g++ PIC flag -fPIC works... yes checking if g++ static flag -static works... yes checking if g++ supports -c -o file.o... yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate appending configuration tag "F77" to libtool checking 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 -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) 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: WARNING: po/Makefile.in.in seems to ignore the --datarootdir setting 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.10' /usr/bin/make all-recursive make[2]: Entering directory `/tmp/buildd/dsh-0.25.10' Making all in m4 make[3]: Entering directory `/tmp/buildd/dsh-0.25.10/m4' make[3]: Nothing to be done for `all'. make[3]: Leaving directory `/tmp/buildd/dsh-0.25.10/m4' Making all in po make[3]: Entering directory `/tmp/buildd/dsh-0.25.10/po' make[3]: Nothing to be done for `all'. make[3]: Leaving directory `/tmp/buildd/dsh-0.25.10/po' make[3]: Entering directory `/tmp/buildd/dsh-0.25.10' 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 --tag=CC --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.10' make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10' make[1]: Leaving directory `/tmp/buildd/dsh-0.25.10' /usr/bin/make check make[1]: Entering directory `/tmp/buildd/dsh-0.25.10' Making check in m4 make[2]: Entering directory `/tmp/buildd/dsh-0.25.10/m4' make[2]: Nothing to be done for `check'. make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10/m4' Making check in po make[2]: Entering directory `/tmp/buildd/dsh-0.25.10/po' make[2]: Nothing to be done for `check'. make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10/po' make[2]: Entering directory `/tmp/buildd/dsh-0.25.10' /usr/bin/make dsh make[3]: Entering directory `/tmp/buildd/dsh-0.25.10' make[3]: `dsh' is up to date. make[3]: Leaving directory `/tmp/buildd/dsh-0.25.10' /usr/bin/make check-TESTS make[3]: Entering directory `/tmp/buildd/dsh-0.25.10' PASS: tests/param-f.sh dsh: File ./tests/nonexistent.file could not be opened for read PASS: tests/param-f-fail.sh PASS: tests/param-f-with-space.sh PASS: tests/param-m.sh test to check that unknown parameter checking is right. ./dsh: unrecognized option `--unknown-parameter' ./dsh: invalid option -- u PASS: tests/param-unknown.sh test1 test2 PASS: tests/param-i.sh Check that cn4 option is working. PASS: tests/param-cn4.sh test to check that -b0 is rejected, and -b1 is accepted Buffer size needs to be greater than 1 Buffer size needs to be greater than 1 a b PASS: tests/param-b-0.sh dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call success dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call success success success success success a: dsh: Failed executing ./invalid-exec-file with llexec call b: dsh: Failed executing ./invalid-exec-file with llexec call c: dsh: Failed executing ./invalid-exec-file with llexec call d: dsh: Failed executing ./invalid-exec-file with llexec call success dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call success PASS: tests/param-r-invalid.sh 2: 2 1: 1 dsh: fork limit and wait shell cannot be specified at the same time PASS: tests/param-F-invalid.sh Sun Nov 29 09:59:25 UTC 2009 2: Using sleep as the remote shell 2: Show machine names on output 2: Adding machine 5,4,3,2,1 to list 2: Setting forklimit to 3 and wait_shell to 0 2: DUMPing parameters passed to llexec 2: [2] Using sleep as the remote shell Show machine names on output Adding machine 5,4,3,2,1 to list Setting forklimit to 3 and wait_shell to 0 DUMPing parameters passed to llexec [2] 3: Using sleep as the remote shell 3: Show machine names on output 3: Adding machine 5,4,3,2,1 to list 3: Setting forklimit to 3 and wait_shell to 0 3: DUMPing parameters passed to llexec 3: [3] Using sleep as the remote shell Show machine names on output Adding machine 5,4,3,2,1 to list Setting forklimit to 3 and wait_shell to 0 DUMPing parameters passed to llexec [3] 1: Using sleep as the remote shell 1: Show machine names on output 1: Adding machine 5,4,3,2,1 to list 1: Setting forklimit to 3 and wait_shell to 0 1: ... Waiting for process to end with waitpid 1: DUMPing parameters passed to llexec 1: [1] Using sleep as the remote shell Show machine names on output Adding machine 5,4,3,2,1 to list Setting forklimit to 3 and wait_shell to 0 ... Waiting for process to end with waitpid DUMPing parameters passed to llexec [1] 4: Using sleep as the remote shell 4: Show machine names on output 4: Adding machine 5,4,3,2,1 to list 4: Setting forklimit to 3 and wait_shell to 0 4: DUMPing parameters passed to llexec 4: [4] Using sleep as the remote shell Show machine names on output Adding machine 5,4,3,2,1 to list Setting forklimit to 3 and wait_shell to 0 DUMPing parameters passed to llexec [4] 5: Using sleep as the remote shell 5: Show machine names on output 5: Adding machine 5,4,3,2,1 to list 5: Setting forklimit to 3 and wait_shell to 0 5: DUMPing parameters passed to llexec 5: [5] Using sleep as the remote shell Show machine names on output Adding machine 5,4,3,2,1 to list Setting forklimit to 3 and wait_shell to 0 DUMPing parameters passed to llexec [5] --- Terminated running Using sleep as the remote shell Show machine names on output Adding machine 5,4,3,2,1 to list Setting forklimit to 3 and wait_shell to 0 ... Waiting for process to end with waitpid ... Waiting for process to end with waitpid Sun Nov 29 09:59:30 UTC 2009 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.10' make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10' make[1]: Leaving directory `/tmp/buildd/dsh-0.25.10' 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.10/debian/dsh make[1]: Entering directory `/tmp/buildd/dsh-0.25.10' Making install in m4 make[2]: Entering directory `/tmp/buildd/dsh-0.25.10/m4' make[3]: Entering directory `/tmp/buildd/dsh-0.25.10/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.10/m4' make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10/m4' Making install in po make[2]: Entering directory `/tmp/buildd/dsh-0.25.10/po' /bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share mkdir -p -- /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share mkdir -p -- /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/locale/ja/LC_MESSAGES installing ja.gmo as /tmp/buildd/dsh-0.25.10/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.10/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.10/debian/dsh/usr/share/gettext/po/$file; \ done; \ else \ : ; \ fi make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10/po' make[2]: Entering directory `/tmp/buildd/dsh-0.25.10' make[3]: Entering directory `/tmp/buildd/dsh-0.25.10' test -z "/usr/bin" || mkdir -p -- "/tmp/buildd/dsh-0.25.10/debian/dsh/usr/bin" /bin/sh ./libtool --mode=install install -p -o root -g root -m 755 -s 'dsh' '/tmp/buildd/dsh-0.25.10/debian/dsh/usr/bin/dsh' install -p -o root -g root -m 755 -s dsh /tmp/buildd/dsh-0.25.10/debian/dsh/usr/bin/dsh test -z "/etc/dsh" || mkdir -p -- "/tmp/buildd/dsh-0.25.10/debian/dsh/etc/dsh" /usr/bin/install -c -m 644 'dsh.conf' '/tmp/buildd/dsh-0.25.10/debian/dsh/etc/dsh/dsh.conf' for LANGS in ja ; do \ mkdir -p /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/$LANGS/man1 ;\ mkdir -p /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/$LANGS/man5 ;\ sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.$LANGS.1 \ > /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/$LANGS/man1/dsh.1 ; \ sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.conf.$LANGS.5 \ > /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/$LANGS/man5/dsh.conf.5 ; \ done test -z "/usr/share/man/man1" || mkdir -p -- "/tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/man1" /usr/bin/install -c -m 644 './build-man/dsh.1' '/tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/man1/dsh.1' test -z "/usr/share/man/man5" || mkdir -p -- "/tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/man5" /usr/bin/install -c -m 644 './build-man/dsh.conf.5' '/tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/man5/dsh.conf.5' make[3]: Leaving directory `/tmp/buildd/dsh-0.25.10' make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10' make[1]: Leaving directory `/tmp/buildd/dsh-0.25.10' cp /tmp/buildd/dsh-0.25.10/debian/machines.list /tmp/buildd/dsh-0.25.10/debian/dsh/etc/dsh/machines.list cp /tmp/buildd/dsh-0.25.10/dsh.conf /tmp/buildd/dsh-0.25.10/debian/dsh/etc/dsh/dsh.conf ln -s ../machines.list /tmp/buildd/dsh-0.25.10/debian/dsh/etc/dsh/group/all install -d /tmp/buildd/dsh-0.25.10/debian/dsh/usr/lib/update-cluster install -m 755 /tmp/buildd/dsh-0.25.10/debian/dsh.updatelist /tmp/buildd/dsh-0.25.10/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.10-1_amd64.deb'. dpkg-genchanges >../dsh_0.25.10-1_amd64.changes dpkg-genchanges: including full source code in upload dpkg-buildpackage: full upload (original source is included) I: unmounting dev/pts filesystem I: unmounting proc filesystem I: cleaning the build env I: removing directory /TESTDIR/dir3/NUM and its subdirectories I: Current time: Sun Nov 29 18:59:35 JST 2009 I: pbuilder-time-stamp: 1259488775 pbuilder-0.215ubuntu7/testsuite/normal/pbuilder-update-lenny-squeeze-sid.log0000664000000000000000000004132712312041170024240 0ustar I: Upgrading for distribution sid I: Building the build Environment I: extracting base tarball [/TESTDIR/testimage] I: creating local configuration I: copying local configuration I: Installing apt-lines I: mounting /proc filesystem I: mounting /dev/pts filesystem I: policy-rc.d already exists I: Refreshing the base.tgz I: upgrading packages Get:1 http://localhost sid Release.gpg [835B] Get:2 http://localhost sid Release [104kB] Ign http://localhost sid/main Packages Ign http://localhost sid/main Packages Get:3 http://localhost sid/main Packages [8278kB] Fetched XXXB in Xs (XXXXXB/s) Reading package lists... Reading package lists... Building dependency tree... Reading state information... The following NEW packages will be installed: libapr1 libaprutil1 libboost-iostreams1.40.0 libdb4.8 libexpat1 liblog4cxx10 liblzma1 libsqlite3-0 The following packages will be upgraded: apt aptitude bash coreutils cpp dpkg dpkg-dev g++ gcc libacl1 libc-bin libc-dev-bin libc6 libc6-dev libcwidget3 libdb4.6 libgdbm3 liblzma0 libselinux1 libxapian15 linux-libc-dev mktemp sensible-utils xz-utils 24 upgraded, 8 newly installed, 0 to remove and 0 not upgraded. Need to get 26.9MB of archives. After this operation, 6447kB of additional disk space will be used. Get:1 http://localhost sid/main bash 4.0-7 [1150kB] Get:2 http://localhost sid/main coreutils 8.0-2 [4490kB] Get:3 http://localhost sid/main dpkg 1.15.5.3 [2223kB] Get:4 http://localhost sid/main mktemp 8.1-1 [14.6kB] Get:5 http://localhost sid/main libc-dev-bin 2.10.2-2 [201kB] Get:6 http://localhost sid/main libc6-dev 2.10.2-2 [2546kB] Get:7 http://localhost sid/main libc-bin 2.10.2-2 [728kB] Get:8 http://localhost sid/main libc6 2.10.2-2 [4242kB] Get:9 http://localhost sid/main linux-libc-dev 2.6.32~rc8-1~experimental.1 [848kB] Get:10 http://localhost sid/main apt 0.7.24 [1684kB] Get:11 http://localhost sid/main libacl1 2.2.49-1 [19.2kB] Get:12 http://localhost sid/main libselinux1 2.0.89-4 [85.4kB] Get:13 http://localhost sid/main sensible-utils 0.0.2 [4566B] Get:14 http://localhost sid/main libboost-iostreams1.40.0 1.40.0-4 [40.7kB] Get:15 http://localhost sid/main libcwidget3 0.5.14-1 [310kB] Get:16 http://localhost sid/main libapr1 1.3.8-1 [123kB] Get:17 http://localhost sid/main libdb4.8 4.8.24-1 [681kB] Get:18 http://localhost sid/main libexpat1 2.0.1-5 [135kB] Get:19 http://localhost sid/main libaprutil1 1.3.9+dfsg-3 [90.7kB] Get:20 http://localhost sid/main liblog4cxx10 0.10.0-1 [574kB] Get:21 http://localhost sid/main libsqlite3-0 3.6.20-1 [300kB] Get:22 http://localhost sid/main libxapian15 1.0.17-1 [816kB] Get:23 http://localhost sid/main aptitude 0.6.1.3-3 [3668kB] Get:24 http://localhost sid/main libgdbm3 1.8.3-9 [46.2kB] Get:25 http://localhost sid/main libdb4.6 4.6.21-15 [591kB] Get:26 http://localhost sid/main cpp 4:4.3.4-1 [14.6kB] Get:27 http://localhost sid/main liblzma1 4.999.9beta+20091116-1 [150kB] Get:28 http://localhost sid/main xz-utils 4.999.9beta+20091116-1 [229kB] Get:29 http://localhost sid/main dpkg-dev 1.15.5.3 [758kB] Get:30 http://localhost sid/main gcc 4:4.3.4-1 [5006B] Get:31 http://localhost sid/main g++ 4:4.3.4-1 [1374B] Get:32 http://localhost sid/main liblzma0 4.999.9beta+20091016-1 [146kB] debconf: delaying package configuration, since apt-utils is not installed Fetched XXXB in Xs (XXXXXB/s) (READING DATABASE ... (READING DATABASE ... 5% (READING DATABASE ... 10% (READING DATABASE ... 15% (READING DATABASE ... 20% (READING DATABASE ... 25% (READING DATABASE ... 30% (READING DATABASE ... 35% (READING DATABASE ... 40% (READING DATABASE ... 45% (READING DATABASE ... 50% (READING DATABASE ... 55% (READING DATABASE ... 60% (READING DATABASE ... 65% (READING DATABASE ... 70% (READING DATABASE ... 75% (READING DATABASE ... 80% (READING DATABASE ... 85% (READING DATABASE ... 90% (READING DATABASE ... 95% (READING DATABASE ... 100% (READING DATABASE ... 10195 FILES AND DIRECTORIES CURRENTLY INSTALLED.) PREPARING TO REPLACE BASH 4.0-4 (USING .../ARCHIVES/BASH_4.0-7_AMD64.DEB) ... UNPACKING REPLACEMENT BASH ... SETTING UP BASH (4.0-7) ... UPDATE-ALTERNATIVES: USING /USR/SHARE/MAN/MAN7/BASH-BUILTINS.7.GZ TO PROVIDE /USR/SHARE/MAN/MAN7/BUILTINS.7.GZ (BUILTINS.7.GZ) IN AUTO MODE. (READING DATABASE ... (READING DATABASE ... 5% (READING DATABASE ... 10% (READING DATABASE ... 15% (READING DATABASE ... 20% (READING DATABASE ... 25% (READING DATABASE ... 30% (READING DATABASE ... 35% (READING DATABASE ... 40% (READING DATABASE ... 45% (READING DATABASE ... 50% (READING DATABASE ... 55% (READING DATABASE ... 60% (READING DATABASE ... 65% (READING DATABASE ... 70% (READING DATABASE ... 75% (READING DATABASE ... 80% (READING DATABASE ... 85% (READING DATABASE ... 90% (READING DATABASE ... 95% (READING DATABASE ... 100% (READING DATABASE ... 10195 FILES AND DIRECTORIES CURRENTLY INSTALLED.) PREPARING TO REPLACE COREUTILS 7.4-2 (USING .../COREUTILS_8.0-2_AMD64.DEB) ... INSTALL-INFO: WARNING: MAINTAINER SCRIPTS SHOULD NOT CALL INSTALL-INFO ANYMORE, INSTALL-INFO: WARNING: THIS IS HANDLED NOW BY A DPKG TRIGGER PROVIDED BY THE INSTALL-INFO: WARNING: INSTALL-INFO PACKAGE; PACKAGE COREUTILS SHOULD BE UPDATED. UNPACKING REPLACEMENT COREUTILS ... SETTING UP COREUTILS (8.0-2) ... (READING DATABASE ... (READING DATABASE ... 5% (READING DATABASE ... 10% (READING DATABASE ... 15% (READING DATABASE ... 20% (READING DATABASE ... 25% (READING DATABASE ... 30% (READING DATABASE ... 35% (READING DATABASE ... 40% (READING DATABASE ... 45% (READING DATABASE ... 50% (READING DATABASE ... 55% (READING DATABASE ... 60% (READING DATABASE ... 65% (READING DATABASE ... 70% (READING DATABASE ... 75% (READING DATABASE ... 80% (READING DATABASE ... 85% (READING DATABASE ... 90% (READING DATABASE ... 95% (READING DATABASE ... 100% (READING DATABASE ... 10206 FILES AND DIRECTORIES CURRENTLY INSTALLED.) PREPARING TO REPLACE DPKG 1.15.5.2 (USING .../DPKG_1.15.5.3_AMD64.DEB) ... UNPACKING REPLACEMENT DPKG ... SETTING UP DPKG (1.15.5.3) ... (READING DATABASE ... (READING DATABASE ... 5% (READING DATABASE ... 10% (READING DATABASE ... 15% (READING DATABASE ... 20% (READING DATABASE ... 25% (READING DATABASE ... 30% (READING DATABASE ... 35% (READING DATABASE ... 40% (READING DATABASE ... 45% (READING DATABASE ... 50% (READING DATABASE ... 55% (READING DATABASE ... 60% (READING DATABASE ... 65% (READING DATABASE ... 70% (READING DATABASE ... 75% (READING DATABASE ... 80% (READING DATABASE ... 85% (READING DATABASE ... 90% (READING DATABASE ... 95% (READING DATABASE ... 100% (READING DATABASE ... 10206 FILES AND DIRECTORIES CURRENTLY INSTALLED.) PREPARING TO REPLACE MKTEMP 7.4-2 (USING .../ARCHIVES/MKTEMP_8.1-1_ALL.DEB) ... UNPACKING REPLACEMENT MKTEMP ... PREPARING TO REPLACE LIBC-DEV-BIN 2.10.1-7 (USING .../LIBC-DEV-BIN_2.10.2-2_AMD64.DEB) ... UNPACKING REPLACEMENT LIBC-DEV-BIN ... PREPARING TO REPLACE LIBC6-DEV 2.10.1-7 (USING .../LIBC6-DEV_2.10.2-2_AMD64.DEB) ... UNPACKING REPLACEMENT LIBC6-DEV ... PREPARING TO REPLACE LIBC-BIN 2.10.1-7 (USING .../LIBC-BIN_2.10.2-2_AMD64.DEB) ... UNPACKING REPLACEMENT LIBC-BIN ... SETTING UP LIBC-BIN (2.10.2-2) ... (READING DATABASE ... (READING DATABASE ... 5% (READING DATABASE ... 10% (READING DATABASE ... 15% (READING DATABASE ... 20% (READING DATABASE ... 25% (READING DATABASE ... 30% (READING DATABASE ... 35% (READING DATABASE ... 40% (READING DATABASE ... 45% (READING DATABASE ... 50% (READING DATABASE ... 55% (READING DATABASE ... 60% (READING DATABASE ... 65% (READING DATABASE ... 70% (READING DATABASE ... 75% (READING DATABASE ... 80% (READING DATABASE ... 85% (READING DATABASE ... 90% (READING DATABASE ... 95% (READING DATABASE ... 100% (READING DATABASE ... 10206 FILES AND DIRECTORIES CURRENTLY INSTALLED.) PREPARING TO REPLACE LIBC6 2.10.1-7 (USING .../LIBC6_2.10.2-2_AMD64.DEB) ... UNPACKING REPLACEMENT LIBC6 ... SETTING UP LIBC6 (2.10.2-2) ... (READING DATABASE ... (READING DATABASE ... 5% (READING DATABASE ... 10% (READING DATABASE ... 15% (READING DATABASE ... 20% (READING DATABASE ... 25% (READING DATABASE ... 30% (READING DATABASE ... 35% (READING DATABASE ... 40% (READING DATABASE ... 45% (READING DATABASE ... 50% (READING DATABASE ... 55% (READING DATABASE ... 60% (READING DATABASE ... 65% (READING DATABASE ... 70% (READING DATABASE ... 75% (READING DATABASE ... 80% (READING DATABASE ... 85% (READING DATABASE ... 90% (READING DATABASE ... 95% (READING DATABASE ... 100% (READING DATABASE ... 10206 FILES AND DIRECTORIES CURRENTLY INSTALLED.) PREPARING TO REPLACE LINUX-LIBC-DEV 2.6.30-8 (USING .../LINUX-LIBC-DEV_2.6.32~RC8-1~EXPERIMENTAL.1_AMD64.DEB) ... UNPACKING REPLACEMENT LINUX-LIBC-DEV ... PREPARING TO REPLACE APT 0.7.23.1 (USING .../ARCHIVES/APT_0.7.24_AMD64.DEB) ... UNPACKING REPLACEMENT APT ... SETTING UP APT (0.7.24) ... GPG: KEY 6070D3A1: "DEBIAN ARCHIVE AUTOMATIC SIGNING KEY (4.0/ETCH) " NOT CHANGED GPG: KEY ADB11277: "ETCH STABLE RELEASE KEY " NOT CHANGED GPG: KEY BBE55AB3: "DEBIAN-VOLATILE ARCHIVE AUTOMATIC SIGNING KEY (4.0/ETCH)" NOT CHANGED GPG: KEY F42584E6: "LENNY STABLE RELEASE KEY " NOT CHANGED GPG: KEY 55BE302B: "DEBIAN ARCHIVE AUTOMATIC SIGNING KEY (5.0/LENNY) " NOT CHANGED GPG: KEY 6D849617: "DEBIAN-VOLATILE ARCHIVE AUTOMATIC SIGNING KEY (5.0/LENNY)" NOT CHANGED GPG: TOTAL NUMBER PROCESSED: 6 GPG: UNCHANGED: 6 (READING DATABASE ... (READING DATABASE ... 5% (READING DATABASE ... 10% (READING DATABASE ... 15% (READING DATABASE ... 20% (READING DATABASE ... 25% (READING DATABASE ... 30% (READING DATABASE ... 35% (READING DATABASE ... 40% (READING DATABASE ... 45% (READING DATABASE ... 50% (READING DATABASE ... 55% (READING DATABASE ... 60% (READING DATABASE ... 65% (READING DATABASE ... 70% (READING DATABASE ... 75% (READING DATABASE ... 80% (READING DATABASE ... 85% (READING DATABASE ... 90% (READING DATABASE ... 95% (READING DATABASE ... 100% (READING DATABASE ... 10150 FILES AND DIRECTORIES CURRENTLY INSTALLED.) PREPARING TO REPLACE LIBACL1 2.2.48-1 (USING .../LIBACL1_2.2.49-1_AMD64.DEB) ... UNPACKING REPLACEMENT LIBACL1 ... SETTING UP LIBACL1 (2.2.49-1) ... (READING DATABASE ... (READING DATABASE ... 5% (READING DATABASE ... 10% (READING DATABASE ... 15% (READING DATABASE ... 20% (READING DATABASE ... 25% (READING DATABASE ... 30% (READING DATABASE ... 35% (READING DATABASE ... 40% (READING DATABASE ... 45% (READING DATABASE ... 50% (READING DATABASE ... 55% (READING DATABASE ... 60% (READING DATABASE ... 65% (READING DATABASE ... 70% (READING DATABASE ... 75% (READING DATABASE ... 80% (READING DATABASE ... 85% (READING DATABASE ... 90% (READING DATABASE ... 95% (READING DATABASE ... 100% (READING DATABASE ... 10150 FILES AND DIRECTORIES CURRENTLY INSTALLED.) PREPARING TO REPLACE LIBSELINUX1 2.0.88-1 (USING .../LIBSELINUX1_2.0.89-4_AMD64.DEB) ... UNPACKING REPLACEMENT LIBSELINUX1 ... SETTING UP LIBSELINUX1 (2.0.89-4) ... (READING DATABASE ... (READING DATABASE ... 5% (READING DATABASE ... 10% (READING DATABASE ... 15% (READING DATABASE ... 20% (READING DATABASE ... 25% (READING DATABASE ... 30% (READING DATABASE ... 35% (READING DATABASE ... 40% (READING DATABASE ... 45% (READING DATABASE ... 50% (READING DATABASE ... 55% (READING DATABASE ... 60% (READING DATABASE ... 65% (READING DATABASE ... 70% (READING DATABASE ... 75% (READING DATABASE ... 80% (READING DATABASE ... 85% (READING DATABASE ... 90% (READING DATABASE ... 95% (READING DATABASE ... 100% (READING DATABASE ... 10150 FILES AND DIRECTORIES CURRENTLY INSTALLED.) PREPARING TO REPLACE SENSIBLE-UTILS 0.0.1 (USING .../SENSIBLE-UTILS_0.0.2_ALL.DEB) ... UNPACKING REPLACEMENT SENSIBLE-UTILS ... SETTING UP SENSIBLE-UTILS (0.0.2) ... SELECTING PREVIOUSLY DESELECTED PACKAGE LIBBOOST-IOSTREAMS1.40.0. (READING DATABASE ... (READING DATABASE ... 5% (READING DATABASE ... 10% (READING DATABASE ... 15% (READING DATABASE ... 20% (READING DATABASE ... 25% (READING DATABASE ... 30% (READING DATABASE ... 35% (READING DATABASE ... 40% (READING DATABASE ... 45% (READING DATABASE ... 50% (READING DATABASE ... 55% (READING DATABASE ... 60% (READING DATABASE ... 65% (READING DATABASE ... 70% (READING DATABASE ... 75% (READING DATABASE ... 80% (READING DATABASE ... 85% (READING DATABASE ... 90% (READING DATABASE ... 95% (READING DATABASE ... 100% (READING DATABASE ... 10150 FILES AND DIRECTORIES CURRENTLY INSTALLED.) UNPACKING LIBBOOST-IOSTREAMS1.40.0 (FROM .../LIBBOOST-IOSTREAMS1.40.0_1.40.0-4_AMD64.DEB) ... PREPARING TO REPLACE LIBCWIDGET3 0.5.13-1 (USING .../LIBCWIDGET3_0.5.14-1_AMD64.DEB) ... UNPACKING REPLACEMENT LIBCWIDGET3 ... SELECTING PREVIOUSLY DESELECTED PACKAGE LIBAPR1. UNPACKING LIBAPR1 (FROM .../LIBAPR1_1.3.8-1_AMD64.DEB) ... SELECTING PREVIOUSLY DESELECTED PACKAGE LIBDB4.8. UNPACKING LIBDB4.8 (FROM .../LIBDB4.8_4.8.24-1_AMD64.DEB) ... SELECTING PREVIOUSLY DESELECTED PACKAGE LIBEXPAT1. UNPACKING LIBEXPAT1 (FROM .../LIBEXPAT1_2.0.1-5_AMD64.DEB) ... SELECTING PREVIOUSLY DESELECTED PACKAGE LIBAPRUTIL1. UNPACKING LIBAPRUTIL1 (FROM .../LIBAPRUTIL1_1.3.9+DFSG-3_AMD64.DEB) ... SELECTING PREVIOUSLY DESELECTED PACKAGE LIBLOG4CXX10. UNPACKING LIBLOG4CXX10 (FROM .../LIBLOG4CXX10_0.10.0-1_AMD64.DEB) ... SELECTING PREVIOUSLY DESELECTED PACKAGE LIBSQLITE3-0. UNPACKING LIBSQLITE3-0 (FROM .../LIBSQLITE3-0_3.6.20-1_AMD64.DEB) ... PREPARING TO REPLACE LIBXAPIAN15 1.0.16-3 (USING .../LIBXAPIAN15_1.0.17-1_AMD64.DEB) ... UNPACKING REPLACEMENT LIBXAPIAN15 ... PREPARING TO REPLACE APTITUDE 0.4.11.11-1+B2 (USING .../APTITUDE_0.6.1.3-3_AMD64.DEB) ... UNPACKING REPLACEMENT APTITUDE ... PREPARING TO REPLACE LIBGDBM3 1.8.3-8 (USING .../LIBGDBM3_1.8.3-9_AMD64.DEB) ... UNPACKING REPLACEMENT LIBGDBM3 ... PREPARING TO REPLACE LIBDB4.6 4.6.21-14 (USING .../LIBDB4.6_4.6.21-15_AMD64.DEB) ... UNPACKING REPLACEMENT LIBDB4.6 ... PREPARING TO REPLACE CPP 4:4.3.3-9+NMU1 (USING .../CPP_4%3A4.3.4-1_AMD64.DEB) ... UNPACKING REPLACEMENT CPP ... SELECTING PREVIOUSLY DESELECTED PACKAGE LIBLZMA1. UNPACKING LIBLZMA1 (FROM .../LIBLZMA1_4.999.9BETA+20091116-1_AMD64.DEB) ... PREPARING TO REPLACE XZ-UTILS 4.999.9BETA+20091004-1 (USING .../XZ-UTILS_4.999.9BETA+20091116-1_AMD64.DEB) ... UNPACKING REPLACEMENT XZ-UTILS ... PREPARING TO REPLACE DPKG-DEV 1.15.5.2 (USING .../DPKG-DEV_1.15.5.3_ALL.DEB) ... UNPACKING REPLACEMENT DPKG-DEV ... PREPARING TO REPLACE GCC 4:4.3.3-9+NMU1 (USING .../GCC_4%3A4.3.4-1_AMD64.DEB) ... REMOVING OLD GCC DOC DIRECTORY. UNPACKING REPLACEMENT GCC ... PREPARING TO REPLACE G++ 4:4.3.3-9+NMU1 (USING .../G++_4%3A4.3.4-1_AMD64.DEB) ... UNPACKING REPLACEMENT G++ ... PREPARING TO REPLACE LIBLZMA0 4.999.9BETA+20091004-1 (USING .../LIBLZMA0_4.999.9BETA+20091016-1_AMD64.DEB) ... UNPACKING REPLACEMENT LIBLZMA0 ... SETTING UP MKTEMP (8.1-1) ... SETTING UP LIBC-DEV-BIN (2.10.2-2) ... SETTING UP LINUX-LIBC-DEV (2.6.32~RC8-1~EXPERIMENTAL.1) ... SETTING UP LIBC6-DEV (2.10.2-2) ... SETTING UP LIBBOOST-IOSTREAMS1.40.0 (1.40.0-4) ... SETTING UP LIBCWIDGET3 (0.5.14-1) ... SETTING UP LIBAPR1 (1.3.8-1) ... SETTING UP LIBDB4.8 (4.8.24-1) ... SETTING UP LIBEXPAT1 (2.0.1-5) ... SETTING UP LIBAPRUTIL1 (1.3.9+DFSG-3) ... SETTING UP LIBLOG4CXX10 (0.10.0-1) ... SETTING UP LIBSQLITE3-0 (3.6.20-1) ... SETTING UP LIBXAPIAN15 (1.0.17-1) ... SETTING UP APTITUDE (0.6.1.3-3) ... UPDATE-ALTERNATIVES: USING /USR/BIN/APTITUDE-CURSES TO PROVIDE /USR/BIN/APTITUDE (APTITUDE) IN AUTO MODE. SETTING UP LIBGDBM3 (1.8.3-9) ... SETTING UP LIBDB4.6 (4.6.21-15) ... SETTING UP CPP (4:4.3.4-1) ... SETTING UP LIBLZMA1 (4.999.9BETA+20091116-1) ... SETTING UP XZ-UTILS (4.999.9BETA+20091116-1) ... SETTING UP DPKG-DEV (1.15.5.3) ... SETTING UP GCC (4:4.3.4-1) ... SETTING UP G++ (4:4.3.4-1) ... SETTING UP LIBLZMA0 (4.999.9BETA+20091016-1) ... Reading package lists... Building dependency tree... Reading state information... The following packages will be REMOVED: liblzma0 0 upgraded, 0 newly installed, 1 to remove and 0 not upgraded. After this operation, 287kB disk space will be freed. (Reading database ... 10210 files and directories currently installed.) Removing liblzma0 ... Reading package lists... Building dependency tree... Reading state information... build-essential is already the newest version. dpkg-dev is already the newest version. apt is already the newest version. aptitude is already the newest version. 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. I: user script /var/cache/pbuilder/build//NUM/tmp/hooks/E50-initscripts-2.86.ds1-7.workaround.sh starting umount: /sys: not mounted umount: /run: not found umount: /proc/bus/usb: not mounted umount: /dev/shm: not mounted umount: /lib/init/rw: not mounted cat: /var/run/inetd.pid: No such file or directory kill: 20: Usage: kill [-s sigspec | -signum | -sigspec] [pid | job]... or kill -l [exitstatus] I: user script /var/cache/pbuilder/build//NUM/tmp/hooks/E50-initscripts-2.86.ds1-7.workaround.sh finished I: unmounting dev/pts filesystem I: unmounting proc filesystem I: creating base tarball [/TESTDIR/testimage] I: cleaning the build env I: removing directory /var/cache/pbuilder/build//NUM and its subdirectories pbuilder-0.215ubuntu7/testsuite/normal/pdebuild-normal-sid.log0000664000000000000000000032703312312041170021427 0ustar dpkg-checkbuilddeps: Unmet build dependencies: libdshconfig1-dev (>= 0.20.11-1) W: Unmet build-dependency in source dpkg-buildpackage: set CFLAGS to default value: -g -O2 dpkg-buildpackage: set CPPFLAGS to default value: dpkg-buildpackage: set LDFLAGS to default value: dpkg-buildpackage: set FFLAGS to default value: -g -O2 dpkg-buildpackage: set CXXFLAGS to default value: -g -O2 dpkg-buildpackage: source package dsh dpkg-buildpackage: source version 0.25.10-1 dpkg-buildpackage: source changed by Junichi Uekawa dpkg-checkbuilddeps: Unmet build dependencies: libdshconfig1-dev (>= 0.20.11-1) dpkg-buildpackage: warning: Build dependencies/conflicts unsatisfied; aborting. dpkg-buildpackage: warning: (Use -d flag to override.) dpkg-buildpackage: warning: This is currently a non-fatal warning with -S, but dpkg-buildpackage: warning: will probably become fatal in the future. fakeroot debian/rules clean dh_testdir dh_testroot rm -f build-stamp configure-stamp /usr/bin/make clean make[1]: Entering directory `/TESTDIR/dir2/dsh-0.25.10' make[1]: *** No rule to make target `clean'. Stop. make[1]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10' make: [clean] Error 2 (ignored) /usr/bin/make distclean make[1]: Entering directory `/TESTDIR/dir2/dsh-0.25.10' make[1]: *** No rule to make target `distclean'. Stop. make[1]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10' make: [clean] Error 2 (ignored) dh_clean dpkg-source -b dsh-0.25.10 dpkg-source: info: using source format `1.0' dpkg-source: info: building dsh using existing dsh_0.25.10.orig.tar.gz dpkg-source: info: building dsh in dsh_0.25.10-1.diff.gz dpkg-source: warning: file dsh-0.25.10/dcp.sh has no final newline (either original or modified version) dpkg-source: warning: file dsh-0.25.10/debian/compat has no final newline (either original or modified version) dpkg-source: warning: the diff modifies the following upstream files: .cvsignore CVS/Entries CVS/Repository CVS/Root ChangeLog.OLD dcp.sh drshd.c dsh.1.ja.po m4/.cvsignore m4/CVS/Entries m4/CVS/Repository m4/CVS/Root po/.cvsignore po/CVS/Entries po/CVS/Repository po/CVS/Root po/insert-header.sin tests/.cvsignore tests/CVS/Entries tests/CVS/Repository tests/CVS/Root dpkg-source: info: use the '3.0 (quilt)' format to have separate and documented changes to upstream files, see dpkg-source(1) dpkg-source: info: building dsh in dsh_0.25.10-1.dsc dpkg-genchanges -S >../dsh_0.25.10-1_source.changes dpkg-genchanges: including full source code in upload dpkg-buildpackage: source only upload (original source is included) I: using fakeroot in build. I: Current time: Fri Jan 1 19:00:35 UTC 2010 I: pbuilder-time-stamp: 1262372435 I: Building the build Environment I: extracting base tarball [/TESTDIR/testimage] I: creating local configuration I: copying local configuration I: mounting /proc filesystem I: mounting /dev/pts filesystem I: policy-rc.d already exists I: Obtaining the cached apt archive contents ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/liblzma0_4.999.9beta+20091004-1_amd64.deb' => `/var/cache/pbuilder/aptcache/liblzma0_4.999.9beta+20091004-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/hello_2.4-3_amd64.deb' => `/var/cache/pbuilder/aptcache/hello_2.4-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libcurl3-gnutls_7.19.5-1ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/libcurl3-gnutls_7.19.5-1ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libsasl2-2_2.1.23.dfsg1-1ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/libsasl2-2_2.1.23.dfsg1-1ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/binutils_2.20-0ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/binutils_2.20-0ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/util-linux_2.16.1-4_amd64.deb' => `/var/cache/pbuilder/aptcache/util-linux_2.16.1-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libssl0.9.8_0.9.8k-6_amd64.deb' => `/var/cache/pbuilder/aptcache/libssl0.9.8_0.9.8k-6_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libcroco3_0.6.1-2_i386.deb' => `/var/cache/pbuilder/aptcache/libcroco3_0.6.1-2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libssl0.9.8_0.9.8k-7_amd64.deb' => `/var/cache/pbuilder/aptcache/libssl0.9.8_0.9.8k-7_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/bzip2_1.0.5-3_amd64.deb' => `/var/cache/pbuilder/aptcache/bzip2_1.0.5-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libc-bin_2.10.2-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libc-bin_2.10.2-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libssl0.9.8_0.9.8g-16ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/libssl0.9.8_0.9.8g-16ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libkrb5support0_1.7dfsg~beta3-1_i386.deb' => `/var/cache/pbuilder/aptcache/libkrb5support0_1.7dfsg~beta3-1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gcc_4%3a4.4.2-2_amd64.deb' => `/var/cache/pbuilder/aptcache/gcc_4%3a4.4.2-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gpgv_1.4.9-4ubuntu7_i386.deb' => `/var/cache/pbuilder/aptcache/gpgv_1.4.9-4ubuntu7_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gcc-4.4-base_4.4.2-3_amd64.deb' => `/var/cache/pbuilder/aptcache/gcc-4.4-base_4.4.2-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/bsdutils_1%3a2.16.2-0_amd64.deb' => `/var/cache/pbuilder/aptcache/bsdutils_1%3a2.16.2-0_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libslang2_2.2.2-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libslang2_2.2.2-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/linux-libc-dev_2.6.30-8_amd64.deb' => `/var/cache/pbuilder/aptcache/linux-libc-dev_2.6.30-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/bash_4.0-5ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/bash_4.0-5ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/dpkg-dev_1.15.4ubuntu2_all.deb' => `/var/cache/pbuilder/aptcache/dpkg-dev_1.15.4ubuntu2_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/netbase_4.40_all.deb' => `/var/cache/pbuilder/aptcache/netbase_4.40_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libcomerr2_1.41.9-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libcomerr2_1.41.9-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libgdbm3_1.8.3-4_i386.deb' => `/var/cache/pbuilder/aptcache/libgdbm3_1.8.3-4_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/bzip2_1.0.5-3_i386.deb' => `/var/cache/pbuilder/aptcache/bzip2_1.0.5-3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libdbus-1-3_1.2.16-0ubuntu9_i386.deb' => `/var/cache/pbuilder/aptcache/libdbus-1-3_1.2.16-0ubuntu9_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/bsdutils_1%3a2.16-1ubuntu5_i386.deb' => `/var/cache/pbuilder/aptcache/bsdutils_1%3a2.16-1ubuntu5_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libxapian15_1.0.17-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libxapian15_1.0.17-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/python-support_1.0.4_all.deb' => `/var/cache/pbuilder/aptcache/python-support_1.0.4_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libcomerr2_1.41.9-1ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/libcomerr2_1.41.9-1ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/sysvinit-utils_2.87dsf-4ubuntu11_i386.deb' => `/var/cache/pbuilder/aptcache/sysvinit-utils_2.87dsf-4ubuntu11_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/login_1%3a4.1.4.1-1ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/login_1%3a4.1.4.1-1ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libudev0_149-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libudev0_149-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libstdc++6-4.4-dev_4.4.2-8_amd64.deb' => `/var/cache/pbuilder/aptcache/libstdc++6-4.4-dev_4.4.2-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libdb4.5_4.5.20-13.1_amd64.deb' => `/var/cache/pbuilder/aptcache/libdb4.5_4.5.20-13.1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libncurses5_5.7+20090803-2ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/libncurses5_5.7+20090803-2ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libusb-0.1-4_2%3a0.1.12-13_i386.deb' => `/var/cache/pbuilder/aptcache/libusb-0.1-4_2%3a0.1.12-13_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libpam-runtime_1.1.0-2ubuntu1_all.deb' => `/var/cache/pbuilder/aptcache/libpam-runtime_1.1.0-2ubuntu1_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libept0_0.5.26ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/libept0_0.5.26ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/lsb-release_3.2-23_all.deb' => `/var/cache/pbuilder/aptcache/lsb-release_3.2-23_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libldap-2.4-2_2.4.18-0ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/libldap-2.4-2_2.4.18-0ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/liblzma1_4.999.9beta+20091116-1_amd64.deb' => `/var/cache/pbuilder/aptcache/liblzma1_4.999.9beta+20091116-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/logrotate_3.7.8-4_amd64.deb' => `/var/cache/pbuilder/aptcache/logrotate_3.7.8-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/mountall_1.0_i386.deb' => `/var/cache/pbuilder/aptcache/mountall_1.0_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/ubuntu-keyring_2009.08.28_all.deb' => `/var/cache/pbuilder/aptcache/ubuntu-keyring_2009.08.28_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/tasksel_2.80_all.deb' => `/var/cache/pbuilder/aptcache/tasksel_2.80_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/debianutils_3.2.2_amd64.deb' => `/var/cache/pbuilder/aptcache/debianutils_3.2.2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libboost-iostreams1.40.0_1.40.0-5_amd64.deb' => `/var/cache/pbuilder/aptcache/libboost-iostreams1.40.0_1.40.0-5_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libacl1_2.2.49-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libacl1_2.2.49-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/dmidecode_2.9-1.2_amd64.deb' => `/var/cache/pbuilder/aptcache/dmidecode_2.9-1.2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libtimedate-perl_1.1600-9_all.deb' => `/var/cache/pbuilder/aptcache/libtimedate-perl_1.1600-9_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gcc-4.4_4.4.2-8_amd64.deb' => `/var/cache/pbuilder/aptcache/gcc-4.4_4.4.2-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/sysv-rc_2.87dsf-4ubuntu11_all.deb' => `/var/cache/pbuilder/aptcache/sysv-rc_2.87dsf-4ubuntu11_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/po-debconf_1.0.16_all.deb' => `/var/cache/pbuilder/aptcache/po-debconf_1.0.16_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/mime-support_3.46-1_all.deb' => `/var/cache/pbuilder/aptcache/mime-support_3.46-1_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/apt_0.7.23.1ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/apt_0.7.23.1ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/lsb-base_3.2-23_all.deb' => `/var/cache/pbuilder/aptcache/lsb-base_3.2-23_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libkrb5-3_1.7dfsg~beta3-1_i386.deb' => `/var/cache/pbuilder/aptcache/libkrb5-3_1.7dfsg~beta3-1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libtasn1-3_2.2-1_i386.deb' => `/var/cache/pbuilder/aptcache/libtasn1-3_2.2-1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/dash_0.5.5.1-3_amd64.deb' => `/var/cache/pbuilder/aptcache/dash_0.5.5.1-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libwrap0_7.6.q-18_amd64.deb' => `/var/cache/pbuilder/aptcache/libwrap0_7.6.q-18_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libgssapi-krb5-2_1.7dfsg~beta3-1_i386.deb' => `/var/cache/pbuilder/aptcache/libgssapi-krb5-2_1.7dfsg~beta3-1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libss2_1.41.9-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libss2_1.41.9-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libsqlite3-0_3.6.21-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libsqlite3-0_3.6.21-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libslang2_2.2.1-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libslang2_2.2.1-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libgcc1_1%3a4.4.2-3_amd64.deb' => `/var/cache/pbuilder/aptcache/libgcc1_1%3a4.4.2-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/procps_1%3a3.2.8-2_amd64.deb' => `/var/cache/pbuilder/aptcache/procps_1%3a3.2.8-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/aptitude_0.6.1.3-3_amd64.deb' => `/var/cache/pbuilder/aptcache/aptitude_0.6.1.3-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libstdc++6_4.4.1-4ubuntu8_i386.deb' => `/var/cache/pbuilder/aptcache/libstdc++6_4.4.1-4ubuntu8_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/perl-base_5.10.1-8_amd64.deb' => `/var/cache/pbuilder/aptcache/perl-base_5.10.1-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libusb-0.1-4_2%3a0.1.12-13_amd64.deb' => `/var/cache/pbuilder/aptcache/libusb-0.1-4_2%3a0.1.12-13_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/mawk_1.3.3-15ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/mawk_1.3.3-15ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libpam0g_1.1.0-4_amd64.deb' => `/var/cache/pbuilder/aptcache/libpam0g_1.1.0-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/liblocale-gettext-perl_1.05-4build1_i386.deb' => `/var/cache/pbuilder/aptcache/liblocale-gettext-perl_1.05-4build1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/login_1%3a4.1.4.2-1_amd64.deb' => `/var/cache/pbuilder/aptcache/login_1%3a4.1.4.2-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/man-db_2.5.6-4_amd64.deb' => `/var/cache/pbuilder/aptcache/man-db_2.5.6-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libgdbm3_1.8.3-9_amd64.deb' => `/var/cache/pbuilder/aptcache/libgdbm3_1.8.3-9_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/ed_1.4-1_amd64.deb' => `/var/cache/pbuilder/aptcache/ed_1.4-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libselinux1_2.0.85-2ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/libselinux1_2.0.85-2ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libblkid1_2.16.1-4_amd64.deb' => `/var/cache/pbuilder/aptcache/libblkid1_2.16.1-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libcroco3_0.6.2-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libcroco3_0.6.2-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/cpp_4%3a4.4.2-2_amd64.deb' => `/var/cache/pbuilder/aptcache/cpp_4%3a4.4.2-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/debconf_1.5.28_all.deb' => `/var/cache/pbuilder/aptcache/debconf_1.5.28_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/liblog4cxx10_0.10.0-1.1_amd64.deb' => `/var/cache/pbuilder/aptcache/liblog4cxx10_0.10.0-1.1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/coreutils_7.4-2ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/coreutils_7.4-2ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libsqlite3-0_3.6.20-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libsqlite3-0_3.6.20-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/diffutils_1%3a2.8.7-0.1_amd64.deb' => `/var/cache/pbuilder/aptcache/diffutils_1%3a2.8.7-0.1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/build-essential_11.4_i386.deb' => `/var/cache/pbuilder/aptcache/build-essential_11.4_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/python2.5-minimal_2.5.4-3_amd64.deb' => `/var/cache/pbuilder/aptcache/python2.5-minimal_2.5.4-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/groff-base_1.20.1-5_i386.deb' => `/var/cache/pbuilder/aptcache/groff-base_1.20.1-5_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/sysv-rc_2.87dsf-8_all.deb' => `/var/cache/pbuilder/aptcache/sysv-rc_2.87dsf-8_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/debconf_1.5.27ubuntu2_all.deb' => `/var/cache/pbuilder/aptcache/debconf_1.5.27ubuntu2_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/mount_2.17~rc3-1_amd64.deb' => `/var/cache/pbuilder/aptcache/mount_2.17~rc3-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/vim-common_2%3a7.2.284-1_amd64.deb' => `/var/cache/pbuilder/aptcache/vim-common_2%3a7.2.284-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/module-init-tools_3.11-1_amd64.deb' => `/var/cache/pbuilder/aptcache/module-init-tools_3.11-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libgcrypt11_1.4.4-2ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/libgcrypt11_1.4.4-2ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/lsb-base_4.0-0ubuntu5_all.deb' => `/var/cache/pbuilder/aptcache/lsb-base_4.0-0ubuntu5_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/html2text_1.3.2a-14_amd64.deb' => `/var/cache/pbuilder/aptcache/html2text_1.3.2a-14_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libxml2_2.7.6.dfsg-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libxml2_2.7.6.dfsg-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/g++_4%3a4.4.1-1ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/g++_4%3a4.4.1-1ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libcwidget3_0.5.12-4ubuntu4_i386.deb' => `/var/cache/pbuilder/aptcache/libcwidget3_0.5.12-4ubuntu4_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/manpages_3.23-1_all.deb' => `/var/cache/pbuilder/aptcache/manpages_3.23-1_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/findutils_4.4.2-1_amd64.deb' => `/var/cache/pbuilder/aptcache/findutils_4.4.2-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/cowbuilder_0.58_amd64.deb' => `/var/cache/pbuilder/aptcache/cowbuilder_0.58_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libstdc++6_4.4.2-3_amd64.deb' => `/var/cache/pbuilder/aptcache/libstdc++6_4.4.2-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/dpkg-dev_1.15.5.2_all.deb' => `/var/cache/pbuilder/aptcache/dpkg-dev_1.15.5.2_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/initscripts_2.87dsf-4ubuntu11_i386.deb' => `/var/cache/pbuilder/aptcache/initscripts_2.87dsf-4ubuntu11_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/nano_2.2.1-1_amd64.deb' => `/var/cache/pbuilder/aptcache/nano_2.2.1-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/base-passwd_3.5.22_amd64.deb' => `/var/cache/pbuilder/aptcache/base-passwd_3.5.22_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libc-bin_2.11~0exp1-0exp1_amd64.deb' => `/var/cache/pbuilder/aptcache/libc-bin_2.11~0exp1-0exp1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libgomp1_4.4.2-8_amd64.deb' => `/var/cache/pbuilder/aptcache/libgomp1_4.4.2-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/cpp-4.4_4.4.1-4ubuntu8_i386.deb' => `/var/cache/pbuilder/aptcache/cpp-4.4_4.4.1-4ubuntu8_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gettext-base_0.17-8ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/gettext-base_0.17-8ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/liblocale-gettext-perl_1.05-6_amd64.deb' => `/var/cache/pbuilder/aptcache/liblocale-gettext-perl_1.05-6_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libkeyutils1_1.2-10_i386.deb' => `/var/cache/pbuilder/aptcache/libkeyutils1_1.2-10_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/hostname_2.95ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/hostname_2.95ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/procps_1%3a3.2.8-1ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/procps_1%3a3.2.8-1ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libsigc++-2.0-0c2a_2.2.2-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libsigc++-2.0-0c2a_2.2.2-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gettext_0.17-8ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/gettext_0.17-8ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gcc-4.4-base_4.4.1-4ubuntu8_i386.deb' => `/var/cache/pbuilder/aptcache/gcc-4.4-base_4.4.1-4ubuntu8_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libcwidget3_0.5.16-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libcwidget3_0.5.16-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libgpg-error0_1.6-1ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/libgpg-error0_1.6-1ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/dpkg-dev_1.15.5.5_all.deb' => `/var/cache/pbuilder/aptcache/dpkg-dev_1.15.5.5_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libsepol1_2.0.37-1_i386.deb' => `/var/cache/pbuilder/aptcache/libsepol1_2.0.37-1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libstdc++6_4.4.2-8_amd64.deb' => `/var/cache/pbuilder/aptcache/libstdc++6_4.4.2-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libss2_1.41.9-1ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/libss2_1.41.9-1ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libsigc++-2.0-0c2a_2.0.18-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libsigc++-2.0-0c2a_2.0.18-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libk5crypto3_1.7dfsg~beta3-1_i386.deb' => `/var/cache/pbuilder/aptcache/libk5crypto3_1.7dfsg~beta3-1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/fakeroot_1.14.4-1_amd64.deb' => `/var/cache/pbuilder/aptcache/fakeroot_1.14.4-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/ncurses-bin_5.7+20090803-2_amd64.deb' => `/var/cache/pbuilder/aptcache/ncurses-bin_5.7+20090803-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/util-linux_2.17~rc3-1_amd64.deb' => `/var/cache/pbuilder/aptcache/util-linux_2.17~rc3-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/cron_3.0pl1-106_amd64.deb' => `/var/cache/pbuilder/aptcache/cron_3.0pl1-106_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libacl1_2.2.47-2_i386.deb' => `/var/cache/pbuilder/aptcache/libacl1_2.2.47-2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/netcat-traditional_1.10-38_amd64.deb' => `/var/cache/pbuilder/aptcache/netcat-traditional_1.10-38_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/e2fslibs_1.41.9-1_amd64.deb' => `/var/cache/pbuilder/aptcache/e2fslibs_1.41.9-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/g++-4.4_4.4.2-8_amd64.deb' => `/var/cache/pbuilder/aptcache/g++-4.4_4.4.2-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/bsdmainutils_6.1.10ubuntu4_i386.deb' => `/var/cache/pbuilder/aptcache/bsdmainutils_6.1.10ubuntu4_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/python-debian_0.1.14_all.deb' => `/var/cache/pbuilder/aptcache/python-debian_0.1.14_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/python-apt_0.7.13.3_amd64.deb' => `/var/cache/pbuilder/aptcache/python-apt_0.7.13.3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/build-essential_11.4_amd64.deb' => `/var/cache/pbuilder/aptcache/build-essential_11.4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gnupg_1.4.9-4ubuntu7_i386.deb' => `/var/cache/pbuilder/aptcache/gnupg_1.4.9-4ubuntu7_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libsigc++-2.0-0c2a_2.0.18-2_i386.deb' => `/var/cache/pbuilder/aptcache/libsigc++-2.0-0c2a_2.0.18-2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/initscripts_2.87dsf-8_amd64.deb' => `/var/cache/pbuilder/aptcache/initscripts_2.87dsf-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/mount_2.16-1ubuntu5_i386.deb' => `/var/cache/pbuilder/aptcache/mount_2.16-1ubuntu5_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libc6_2.10.1-0ubuntu15_i386.deb' => `/var/cache/pbuilder/aptcache/libc6_2.10.1-0ubuntu15_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/dash_0.5.5.1-2ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/dash_0.5.5.1-2ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/zlib1g_1%3a1.2.3.4.dfsg-3_amd64.deb' => `/var/cache/pbuilder/aptcache/zlib1g_1%3a1.2.3.4.dfsg-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libreadline5_5.2-7_amd64.deb' => `/var/cache/pbuilder/aptcache/libreadline5_5.2-7_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/pbuilder_0.192_all.deb' => `/var/cache/pbuilder/aptcache/pbuilder_0.192_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/nano_2.2.0-1_amd64.deb' => `/var/cache/pbuilder/aptcache/nano_2.2.0-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/e2fsprogs_1.41.9-1ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/e2fsprogs_1.41.9-1ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/aptitude_0.4.11.11-1ubuntu6_i386.deb' => `/var/cache/pbuilder/aptcache/aptitude_0.4.11.11-1ubuntu6_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/bsdutils_1%3a2.16.1-4_amd64.deb' => `/var/cache/pbuilder/aptcache/bsdutils_1%3a2.16.1-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libglib2.0-0_2.22.3-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libglib2.0-0_2.22.3-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/python_2.5.4-2_all.deb' => `/var/cache/pbuilder/aptcache/python_2.5.4-2_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libdebian-installer-extra4_0.69_amd64.deb' => `/var/cache/pbuilder/aptcache/libdebian-installer-extra4_0.69_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/file_5.03-1ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/file_5.03-1ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libc6_2.11~0exp1-0exp1_amd64.deb' => `/var/cache/pbuilder/aptcache/libc6_2.11~0exp1-0exp1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/patch_2.5.9-5_amd64.deb' => `/var/cache/pbuilder/aptcache/patch_2.5.9-5_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/cdebootstrap_0.5.5_amd64.deb' => `/var/cache/pbuilder/aptcache/cdebootstrap_0.5.5_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libbz2-1.0_1.0.5-3_i386.deb' => `/var/cache/pbuilder/aptcache/libbz2-1.0_1.0.5-3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libsasl2-modules_2.1.23.dfsg1-1ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/libsasl2-modules_2.1.23.dfsg1-1ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/perl-modules_5.10.1-8_all.deb' => `/var/cache/pbuilder/aptcache/perl-modules_5.10.1-8_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libdb4.7_4.7.25-9_amd64.deb' => `/var/cache/pbuilder/aptcache/libdb4.7_4.7.25-9_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/debian-archive-keyring_2009.01.31_all.deb' => `/var/cache/pbuilder/aptcache/debian-archive-keyring_2009.01.31_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/grep_2.5.4-4_amd64.deb' => `/var/cache/pbuilder/aptcache/grep_2.5.4-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/udev_149-1_amd64.deb' => `/var/cache/pbuilder/aptcache/udev_149-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/isc-dhcp-common_4.1.0-1_amd64.deb' => `/var/cache/pbuilder/aptcache/isc-dhcp-common_4.1.0-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/base-passwd_3.5.21_i386.deb' => `/var/cache/pbuilder/aptcache/base-passwd_3.5.21_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gdebi-core_0.5.9debian2_all.deb' => `/var/cache/pbuilder/aptcache/gdebi-core_0.5.9debian2_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/g++-4.3_4.3.4-6_amd64.deb' => `/var/cache/pbuilder/aptcache/g++-4.3_4.3.4-6_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/bsdmainutils_8.0.2_amd64.deb' => `/var/cache/pbuilder/aptcache/bsdmainutils_8.0.2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/sed_4.2.1-1_i386.deb' => `/var/cache/pbuilder/aptcache/sed_4.2.1-1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/sed_4.2.1-4_amd64.deb' => `/var/cache/pbuilder/aptcache/sed_4.2.1-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/dhcp3-client_3.1.3-1_amd64.deb' => `/var/cache/pbuilder/aptcache/dhcp3-client_3.1.3-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/tar_1.22-2_amd64.deb' => `/var/cache/pbuilder/aptcache/tar_1.22-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/netbase_4.35ubuntu2_all.deb' => `/var/cache/pbuilder/aptcache/netbase_4.35ubuntu2_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libapr1_1.3.8-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libapr1_1.3.8-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gcc-4.3-base_4.3.4-6_amd64.deb' => `/var/cache/pbuilder/aptcache/gcc-4.3-base_4.3.4-6_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libstdc++6-4.4-dev_4.4.1-4ubuntu8_i386.deb' => `/var/cache/pbuilder/aptcache/libstdc++6-4.4-dev_4.4.1-4ubuntu8_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/iproute_20090324-1_amd64.deb' => `/var/cache/pbuilder/aptcache/iproute_20090324-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/iptables_1.4.6-2_amd64.deb' => `/var/cache/pbuilder/aptcache/iptables_1.4.6-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/perl_5.10.1-8_amd64.deb' => `/var/cache/pbuilder/aptcache/perl_5.10.1-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/dpkg_1.15.5.4_amd64.deb' => `/var/cache/pbuilder/aptcache/dpkg_1.15.5.4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libtext-wrapi18n-perl_0.06-7_all.deb' => `/var/cache/pbuilder/aptcache/libtext-wrapi18n-perl_0.06-7_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/apt_0.7.25_amd64.deb' => `/var/cache/pbuilder/aptcache/apt_0.7.25_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/g++_4%3a4.3.4-1_amd64.deb' => `/var/cache/pbuilder/aptcache/g++_4%3a4.3.4-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/util-linux_2.16-1ubuntu5_i386.deb' => `/var/cache/pbuilder/aptcache/util-linux_2.16-1ubuntu5_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gcc-4.4-base_4.4.2-8_amd64.deb' => `/var/cache/pbuilder/aptcache/gcc-4.4-base_4.4.2-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/mount_2.16.1-4_amd64.deb' => `/var/cache/pbuilder/aptcache/mount_2.16.1-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libc6-dev_2.10.2-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libc6-dev_2.10.2-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/sysvinit_2.87dsf-8_amd64.deb' => `/var/cache/pbuilder/aptcache/sysvinit_2.87dsf-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/passwd_1%3a4.1.4.2-1_amd64.deb' => `/var/cache/pbuilder/aptcache/passwd_1%3a4.1.4.2-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/perl-modules_5.10.0-24ubuntu4_all.deb' => `/var/cache/pbuilder/aptcache/perl-modules_5.10.0-24ubuntu4_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/dpkg-dev_1.15.5.4_all.deb' => `/var/cache/pbuilder/aptcache/dpkg-dev_1.15.5.4_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gcc-4.3_4.3.4-6_amd64.deb' => `/var/cache/pbuilder/aptcache/gcc-4.3_4.3.4-6_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libaprutil1_1.3.9+dfsg-3_amd64.deb' => `/var/cache/pbuilder/aptcache/libaprutil1_1.3.9+dfsg-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/bsdmainutils_8.0.3_amd64.deb' => `/var/cache/pbuilder/aptcache/bsdmainutils_8.0.3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/tasksel-data_2.80_all.deb' => `/var/cache/pbuilder/aptcache/tasksel-data_2.80_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/bash_4.0-7_amd64.deb' => `/var/cache/pbuilder/aptcache/bash_4.0-7_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/lzma_4.43-14ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/lzma_4.43-14ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/diff_2.8.1-13_i386.deb' => `/var/cache/pbuilder/aptcache/diff_2.8.1-13_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libpcre3_7.8-3_i386.deb' => `/var/cache/pbuilder/aptcache/libpcre3_7.8-3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/python2.6-minimal_2.6.4~rc2-0ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/python2.6-minimal_2.6.4~rc2-0ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/tzdata_2009u-1_all.deb' => `/var/cache/pbuilder/aptcache/tzdata_2009u-1_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/intltool-debian_0.35.0+20060710.1_all.deb' => `/var/cache/pbuilder/aptcache/intltool-debian_0.35.0+20060710.1_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libsepol1_2.0.40-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libsepol1_2.0.40-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libtasn1-3_2.3-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libtasn1-3_2.3-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libdb4.8_4.8.26-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libdb4.8_4.8.26-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/openssl_0.9.8g-16ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/openssl_0.9.8g-16ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/cpp-4.4_4.4.2-8_amd64.deb' => `/var/cache/pbuilder/aptcache/cpp-4.4_4.4.2-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libexpat1_2.0.1-7_amd64.deb' => `/var/cache/pbuilder/aptcache/libexpat1_2.0.1-7_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/adduser_3.112_all.deb' => `/var/cache/pbuilder/aptcache/adduser_3.112_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/zlib1g_1%3a1.2.3.3.dfsg-13ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/zlib1g_1%3a1.2.3.3.dfsg-13ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/patch_2.6-2_amd64.deb' => `/var/cache/pbuilder/aptcache/patch_2.6-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/python-central_0.6.13_all.deb' => `/var/cache/pbuilder/aptcache/python-central_0.6.13_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/util-linux_2.16.2-0_amd64.deb' => `/var/cache/pbuilder/aptcache/util-linux_2.16.2-0_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libreadline6_6.0-5_i386.deb' => `/var/cache/pbuilder/aptcache/libreadline6_6.0-5_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libept0_0.5.29_amd64.deb' => `/var/cache/pbuilder/aptcache/libept0_0.5.29_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/tzdata_2009o-1ubuntu2_all.deb' => `/var/cache/pbuilder/aptcache/tzdata_2009o-1ubuntu2_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libc6-dev_2.10.1-0ubuntu15_i386.deb' => `/var/cache/pbuilder/aptcache/libc6-dev_2.10.1-0ubuntu15_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/tzdata_2009s-1_all.deb' => `/var/cache/pbuilder/aptcache/tzdata_2009s-1_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/traceroute_2.0.13-2_amd64.deb' => `/var/cache/pbuilder/aptcache/traceroute_2.0.13-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/iputils-ping_3%3a20071127-2_amd64.deb' => `/var/cache/pbuilder/aptcache/iputils-ping_3%3a20071127-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libgcc1_1%3a4.4.1-4ubuntu8_i386.deb' => `/var/cache/pbuilder/aptcache/libgcc1_1%3a4.4.1-4ubuntu8_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libreadline6_6.0-5_amd64.deb' => `/var/cache/pbuilder/aptcache/libreadline6_6.0-5_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libgmp3c2_2%3a4.3.1+dfsg-3_amd64.deb' => `/var/cache/pbuilder/aptcache/libgmp3c2_2%3a4.3.1+dfsg-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/cowdancer_0.58_amd64.deb' => `/var/cache/pbuilder/aptcache/cowdancer_0.58_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libgomp1_4.4.1-4ubuntu8_i386.deb' => `/var/cache/pbuilder/aptcache/libgomp1_4.4.1-4ubuntu8_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/dpkg_1.15.5.2_amd64.deb' => `/var/cache/pbuilder/aptcache/dpkg_1.15.5.2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libxml2_2.7.5.dfsg-1ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/libxml2_2.7.5.dfsg-1ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libgmp3c2_2%3a4.3.1+dfsg-1ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/libgmp3c2_2%3a4.3.1+dfsg-1ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libslang2_2.1.4-3_i386.deb' => `/var/cache/pbuilder/aptcache/libslang2_2.1.4-3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libnewt0.52_0.52.10-5_amd64.deb' => `/var/cache/pbuilder/aptcache/libnewt0.52_0.52.10-5_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/make_3.81-6_i386.deb' => `/var/cache/pbuilder/aptcache/make_3.81-6_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gpgv_1.4.10-2_amd64.deb' => `/var/cache/pbuilder/aptcache/gpgv_1.4.10-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libpam0g_1.1.0-2ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/libpam0g_1.1.0-2ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/python-minimal_2.6.4~rc1-0ubuntu1_all.deb' => `/var/cache/pbuilder/aptcache/python-minimal_2.6.4~rc1-0ubuntu1_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/install-info_4.13a.dfsg.1-5_amd64.deb' => `/var/cache/pbuilder/aptcache/install-info_4.13a.dfsg.1-5_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libblkid1_2.17~rc3-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libblkid1_2.17~rc3-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libtimedate-perl_1.1900-1_all.deb' => `/var/cache/pbuilder/aptcache/libtimedate-perl_1.1900-1_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/ca-certificates_20090814_all.deb' => `/var/cache/pbuilder/aptcache/ca-certificates_20090814_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libmpfr1ldbl_2.4.2-3_amd64.deb' => `/var/cache/pbuilder/aptcache/libmpfr1ldbl_2.4.2-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/net-tools_1.60-23ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/net-tools_1.60-23ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/dhcp3-common_3.1.3-1_amd64.deb' => `/var/cache/pbuilder/aptcache/dhcp3-common_3.1.3-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/debianutils_2.30ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/debianutils_2.30ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/cpp_4%3a4.3.4-1_amd64.deb' => `/var/cache/pbuilder/aptcache/cpp_4%3a4.3.4-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/apt-utils_0.7.23.1_amd64.deb' => `/var/cache/pbuilder/aptcache/apt-utils_0.7.23.1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/dpkg_1.15.5.5_amd64.deb' => `/var/cache/pbuilder/aptcache/dpkg_1.15.5.5_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libpam-runtime_1.1.0-4_all.deb' => `/var/cache/pbuilder/aptcache/libpam-runtime_1.1.0-4_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libc-dev-bin_2.10.2-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libc-dev-bin_2.10.2-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/sysvinit-utils_2.87dsf-8_amd64.deb' => `/var/cache/pbuilder/aptcache/sysvinit-utils_2.87dsf-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/aptitude_0.4.11.11-1+b2_amd64.deb' => `/var/cache/pbuilder/aptcache/aptitude_0.4.11.11-1+b2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libc-bin_2.10.1-0ubuntu15_i386.deb' => `/var/cache/pbuilder/aptcache/libc-bin_2.10.1-0ubuntu15_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/iptables_1.4.5-1_amd64.deb' => `/var/cache/pbuilder/aptcache/iptables_1.4.5-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/bsdutils_1%3a2.17~rc3-1_amd64.deb' => `/var/cache/pbuilder/aptcache/bsdutils_1%3a2.17~rc3-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/sensible-utils_0.0.2_all.deb' => `/var/cache/pbuilder/aptcache/sensible-utils_0.0.2_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/grep_2.5.4-4_i386.deb' => `/var/cache/pbuilder/aptcache/grep_2.5.4-4_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/passwd_1%3a4.1.4.1-1ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/passwd_1%3a4.1.4.1-1ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/whiptail_0.52.10-5_amd64.deb' => `/var/cache/pbuilder/aptcache/whiptail_0.52.10-5_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libblkid1_2.16.2-0_amd64.deb' => `/var/cache/pbuilder/aptcache/libblkid1_2.16.2-0_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/zlib1g_1%3a1.2.3.3.dfsg-15_amd64.deb' => `/var/cache/pbuilder/aptcache/zlib1g_1%3a1.2.3.3.dfsg-15_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/apt-utils_0.7.25_amd64.deb' => `/var/cache/pbuilder/aptcache/apt-utils_0.7.25_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libtext-iconv-perl_1.7-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libtext-iconv-perl_1.7-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/make_3.81-7_amd64.deb' => `/var/cache/pbuilder/aptcache/make_3.81-7_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libudev0_147~-6_i386.deb' => `/var/cache/pbuilder/aptcache/libudev0_147~-6_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gzip_1.3.12-8ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/gzip_1.3.12-8ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/diffutils_1%3a2.8.1-18_amd64.deb' => `/var/cache/pbuilder/aptcache/diffutils_1%3a2.8.1-18_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/debconf-i18n_1.5.27ubuntu2_all.deb' => `/var/cache/pbuilder/aptcache/debconf-i18n_1.5.27ubuntu2_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libblkid1_2.16-1ubuntu5_i386.deb' => `/var/cache/pbuilder/aptcache/libblkid1_2.16-1ubuntu5_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libselinux1_2.0.89-4_amd64.deb' => `/var/cache/pbuilder/aptcache/libselinux1_2.0.89-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/debhelper_7.3.15ubuntu3_all.deb' => `/var/cache/pbuilder/aptcache/debhelper_7.3.15ubuntu3_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libpcre3_7.8-3_amd64.deb' => `/var/cache/pbuilder/aptcache/libpcre3_7.8-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/net-tools_1.60-23_amd64.deb' => `/var/cache/pbuilder/aptcache/net-tools_1.60-23_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/xz-utils_4.999.9beta+20091004-1_amd64.deb' => `/var/cache/pbuilder/aptcache/xz-utils_4.999.9beta+20091004-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libdb4.7_4.7.25-7ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/libdb4.7_4.7.25-7ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libattr1_1%3a2.4.43-3_i386.deb' => `/var/cache/pbuilder/aptcache/libattr1_1%3a2.4.43-3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/python2.5_2.5.4-3_amd64.deb' => `/var/cache/pbuilder/aptcache/python2.5_2.5.4-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libmagic1_5.03-1ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/libmagic1_5.03-1ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/udev_149-2_amd64.deb' => `/var/cache/pbuilder/aptcache/udev_149-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libdevmapper1.02.1_2%3a1.02.39-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libdevmapper1.02.1_2%3a1.02.39-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libidn11_1.15-1_i386.deb' => `/var/cache/pbuilder/aptcache/libidn11_1.15-1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/g++-4.4_4.4.1-4ubuntu8_i386.deb' => `/var/cache/pbuilder/aptcache/g++-4.4_4.4.1-4ubuntu8_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libmagic1_5.03-3_amd64.deb' => `/var/cache/pbuilder/aptcache/libmagic1_5.03-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libncursesw5_5.7+20090803-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libncursesw5_5.7+20090803-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libtext-charwidth-perl_0.04-5build1_i386.deb' => `/var/cache/pbuilder/aptcache/libtext-charwidth-perl_0.04-5build1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libunwind7_0.99-0.2_amd64.deb' => `/var/cache/pbuilder/aptcache/libunwind7_0.99-0.2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libtext-iconv-perl_1.7-1build1_i386.deb' => `/var/cache/pbuilder/aptcache/libtext-iconv-perl_1.7-1build1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/mount_2.16.2-0_amd64.deb' => `/var/cache/pbuilder/aptcache/mount_2.16.2-0_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libc6_2.10.2-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libc6_2.10.2-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libpopt0_1.15-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libpopt0_1.15-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libudev0_149-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libudev0_149-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/debconf-i18n_1.5.28_all.deb' => `/var/cache/pbuilder/aptcache/debconf-i18n_1.5.28_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/rsyslog_4.4.2-1_amd64.deb' => `/var/cache/pbuilder/aptcache/rsyslog_4.4.2-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/fakeroot_1.12.4ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/fakeroot_1.12.4ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gcc-4.4_4.4.1-4ubuntu8_i386.deb' => `/var/cache/pbuilder/aptcache/gcc-4.4_4.4.1-4ubuntu8_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/groff-base_1.20.1-6_amd64.deb' => `/var/cache/pbuilder/aptcache/groff-base_1.20.1-6_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/makedev_2.3.1-88_all.deb' => `/var/cache/pbuilder/aptcache/makedev_2.3.1-88_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/xz-utils_4.999.9beta+20091116-1_amd64.deb' => `/var/cache/pbuilder/aptcache/xz-utils_4.999.9beta+20091116-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/ncurses-base_5.7+20090803-2_all.deb' => `/var/cache/pbuilder/aptcache/ncurses-base_5.7+20090803-2_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/html2text_1.3.2a-14_i386.deb' => `/var/cache/pbuilder/aptcache/html2text_1.3.2a-14_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/hostname_3.01_amd64.deb' => `/var/cache/pbuilder/aptcache/hostname_3.01_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/ifupdown_0.6.8ubuntu21_i386.deb' => `/var/cache/pbuilder/aptcache/ifupdown_0.6.8ubuntu21_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libncursesw5_5.7+20090803-2ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/libncursesw5_5.7+20090803-2ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libbz2-1.0_1.0.5-3_amd64.deb' => `/var/cache/pbuilder/aptcache/libbz2-1.0_1.0.5-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/python-minimal_2.5.4-2_all.deb' => `/var/cache/pbuilder/aptcache/python-minimal_2.5.4-2_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/ncurses-base_5.7+20090803-2ubuntu2_all.deb' => `/var/cache/pbuilder/aptcache/ncurses-base_5.7+20090803-2ubuntu2_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/perl-base_5.10.0-24ubuntu4_i386.deb' => `/var/cache/pbuilder/aptcache/perl-base_5.10.0-24ubuntu4_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libpam-modules_1.1.0-2ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/libpam-modules_1.1.0-2ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gettext_0.17-8_amd64.deb' => `/var/cache/pbuilder/aptcache/gettext_0.17-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/insserv_1.12.0-11_i386.deb' => `/var/cache/pbuilder/aptcache/insserv_1.12.0-11_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gnupg_1.4.10-2_amd64.deb' => `/var/cache/pbuilder/aptcache/gnupg_1.4.10-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/locales_2.9+git20090617-3_all.deb' => `/var/cache/pbuilder/aptcache/locales_2.9+git20090617-3_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/dmidecode_2.9-1.1_amd64.deb' => `/var/cache/pbuilder/aptcache/dmidecode_2.9-1.1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/findutils_4.4.2-1_i386.deb' => `/var/cache/pbuilder/aptcache/findutils_4.4.2-1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libmpfr1ldbl_2.4.1-1ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/libmpfr1ldbl_2.4.1-1ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/perl_5.10.0-24ubuntu4_i386.deb' => `/var/cache/pbuilder/aptcache/perl_5.10.0-24ubuntu4_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/cpp-4.3_4.3.4-6_amd64.deb' => `/var/cache/pbuilder/aptcache/cpp-4.3_4.3.4-6_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libmpfr1ldbl_2.4.1-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libmpfr1ldbl_2.4.1-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libuuid1_2.16-1ubuntu5_i386.deb' => `/var/cache/pbuilder/aptcache/libuuid1_2.16-1ubuntu5_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/base-files_5.0.0ubuntu7_i386.deb' => `/var/cache/pbuilder/aptcache/base-files_5.0.0ubuntu7_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/wget_1.12-1.1_amd64.deb' => `/var/cache/pbuilder/aptcache/wget_1.12-1.1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/insserv_1.12.0-14_amd64.deb' => `/var/cache/pbuilder/aptcache/insserv_1.12.0-14_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libxapian15_1.0.15-2ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/libxapian15_1.0.15-2ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/cpio_2.10-1_amd64.deb' => `/var/cache/pbuilder/aptcache/cpio_2.10-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/sed_4.2.1-6_amd64.deb' => `/var/cache/pbuilder/aptcache/sed_4.2.1-6_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gcc_4%3a4.3.4-1_amd64.deb' => `/var/cache/pbuilder/aptcache/gcc_4%3a4.3.4-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/lzma_4.43-14_amd64.deb' => `/var/cache/pbuilder/aptcache/lzma_4.43-14_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/ncurses-bin_5.7+20090803-2ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/ncurses-bin_5.7+20090803-2ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/dpkg_1.15.4ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/dpkg_1.15.4ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/man-db_2.5.6-2_i386.deb' => `/var/cache/pbuilder/aptcache/man-db_2.5.6-2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/linux-libc-dev_2.6.32-3_amd64.deb' => `/var/cache/pbuilder/aptcache/linux-libc-dev_2.6.32-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/e2fslibs_1.41.9-1ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/e2fslibs_1.41.9-1ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libdb4.7_4.7.25-8_amd64.deb' => `/var/cache/pbuilder/aptcache/libdb4.7_4.7.25-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libgomp1_4.4.2-3_amd64.deb' => `/var/cache/pbuilder/aptcache/libgomp1_4.4.2-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/apt_0.7.23.1_amd64.deb' => `/var/cache/pbuilder/aptcache/apt_0.7.23.1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/linux-libc-dev_2.6.31-14.48_i386.deb' => `/var/cache/pbuilder/aptcache/linux-libc-dev_2.6.31-14.48_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libncurses5_5.7+20090803-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libncurses5_5.7+20090803-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/g++_4%3a4.4.2-2_amd64.deb' => `/var/cache/pbuilder/aptcache/g++_4%3a4.4.2-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/tar_1.22-1_i386.deb' => `/var/cache/pbuilder/aptcache/tar_1.22-1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/cpp_4%3a4.4.1-1ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/cpp_4%3a4.4.1-1ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/isc-dhcp-client_4.1.0-1_amd64.deb' => `/var/cache/pbuilder/aptcache/isc-dhcp-client_4.1.0-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gcc_4%3a4.4.1-1ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/gcc_4%3a4.4.1-1ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/ifupdown_0.6.9_amd64.deb' => `/var/cache/pbuilder/aptcache/ifupdown_0.6.9_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libtext-charwidth-perl_0.04-6_amd64.deb' => `/var/cache/pbuilder/aptcache/libtext-charwidth-perl_0.04-6_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libuuid1_2.16.2-0_amd64.deb' => `/var/cache/pbuilder/aptcache/libuuid1_2.16.2-0_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/patch_2.5.9-5_i386.deb' => `/var/cache/pbuilder/aptcache/patch_2.5.9-5_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gettext-base_0.17-8_amd64.deb' => `/var/cache/pbuilder/aptcache/gettext-base_0.17-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/readline-common_6.0-5_all.deb' => `/var/cache/pbuilder/aptcache/readline-common_6.0-5_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/ifupdown_0.7~alpha3_amd64.deb' => `/var/cache/pbuilder/aptcache/ifupdown_0.7~alpha3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/bsdmainutils_8.0.5_amd64.deb' => `/var/cache/pbuilder/aptcache/bsdmainutils_8.0.5_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/coreutils_7.4-2_amd64.deb' => `/var/cache/pbuilder/aptcache/coreutils_7.4-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gzip_1.3.12-8_amd64.deb' => `/var/cache/pbuilder/aptcache/gzip_1.3.12-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libstdc++6-4.3-dev_4.3.4-6_amd64.deb' => `/var/cache/pbuilder/aptcache/libstdc++6-4.3-dev_4.3.4-6_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libattr1_1%3a2.4.44-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libattr1_1%3a2.4.44-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/coreutils_8.0-2_amd64.deb' => `/var/cache/pbuilder/aptcache/coreutils_8.0-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/base-files_5.0.0_amd64.deb' => `/var/cache/pbuilder/aptcache/base-files_5.0.0_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/binutils_2.20-4_amd64.deb' => `/var/cache/pbuilder/aptcache/binutils_2.20-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libpam-modules_1.1.0-4_amd64.deb' => `/var/cache/pbuilder/aptcache/libpam-modules_1.1.0-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/info_4.13a.dfsg.1-5_amd64.deb' => `/var/cache/pbuilder/aptcache/info_4.13a.dfsg.1-5_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libuuid1_2.16.1-4_amd64.deb' => `/var/cache/pbuilder/aptcache/libuuid1_2.16.1-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/bash_4.0-4_amd64.deb' => `/var/cache/pbuilder/aptcache/bash_4.0-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libc-dev-bin_2.10.1-0ubuntu15_i386.deb' => `/var/cache/pbuilder/aptcache/libc-dev-bin_2.10.1-0ubuntu15_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/e2fsprogs_1.41.9-1_amd64.deb' => `/var/cache/pbuilder/aptcache/e2fsprogs_1.41.9-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libept0_0.5.30_amd64.deb' => `/var/cache/pbuilder/aptcache/libept0_0.5.30_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/debhelper_7.4.3_all.deb' => `/var/cache/pbuilder/aptcache/debhelper_7.4.3_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/upstart_0.6.3-10_i386.deb' => `/var/cache/pbuilder/aptcache/upstart_0.6.3-10_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libgnutls26_2.8.3-2_i386.deb' => `/var/cache/pbuilder/aptcache/libgnutls26_2.8.3-2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libdb4.8_4.8.24-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libdb4.8_4.8.24-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libuuid1_2.17~rc3-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libuuid1_2.17~rc3-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libglib2.0-0_2.22.2-0ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/libglib2.0-0_2.22.2-0ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/vim-tiny_2%3a7.2.284-1_amd64.deb' => `/var/cache/pbuilder/aptcache/vim-tiny_2%3a7.2.284-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/mawk_1.3.3-15_amd64.deb' => `/var/cache/pbuilder/aptcache/mawk_1.3.3-15_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libgcc1_1%3a4.4.2-8_amd64.deb' => `/var/cache/pbuilder/aptcache/libgcc1_1%3a4.4.2-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libcwidget3_0.5.13-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libcwidget3_0.5.13-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/file_5.03-3_amd64.deb' => `/var/cache/pbuilder/aptcache/file_5.03-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libdebian-installer4_0.69_amd64.deb' => `/var/cache/pbuilder/aptcache/libdebian-installer4_0.69_amd64.deb': Invalid cross-device link I: Installing the build-deps -> Attempting to satisfy build-dependencies -> Creating pbuilder-satisfydepends-dummy package Package: pbuilder-satisfydepends-dummy Version: 0.invalid.0 Architecture: amd64 Maintainer: Debian Pbuilder Team Description: Dummy package to satisfy dependencies with aptitude - created by pbuilder This package was created automatically by pbuilder and should Depends: debhelper (>> 3.0.0), libdshconfig1-dev (>= 0.20.11-1), po4a dpkg-deb: building package `pbuilder-satisfydepends-dummy' in `/tmp/satisfydepends-aptitude/pbuilder-satisfydepends-dummy.deb'. Reading package lists... Building dependency tree... Reading state information... aptitude is already the newest version. 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. Selecting previously deselected package pbuilder-satisfydepends-dummy. (Reading database ... 12215 files and directories currently installed.) Unpacking pbuilder-satisfydepends-dummy (from .../pbuilder-satisfydepends-dummy.deb) ... dpkg: dependency problems prevent configuration of pbuilder-satisfydepends-dummy: pbuilder-satisfydepends-dummy depends on debhelper (>> 3.0.0); however: Package debhelper is not installed. pbuilder-satisfydepends-dummy depends on libdshconfig1-dev (>= 0.20.11-1); however: Package libdshconfig1-dev is not installed. pbuilder-satisfydepends-dummy depends on po4a; however: Package po4a is not installed. dpkg: error processing pbuilder-satisfydepends-dummy (--install): dependency problems - leaving unconfigured Errors were encountered while processing: pbuilder-satisfydepends-dummy Reading package lists... Building dependency tree... Reading state information... Initializing package states... Writing extended state information... Reading task descriptions... The following NEW packages will be installed: debhelper{a} file{a} gettext{a} gettext-base{a} html2text{a} intltool-debian{a} libcroco3{a} libdshconfig1{a} libdshconfig1-dev{a} libglib2.0-0{a} libmagic1{a} libpcre3{a} libsgmls-perl{a} libsp1c2{a} libxml2{a} po-debconf{a} po4a{a} sp{a} The following partially installed packages will be configured: pbuilder-satisfydepends-dummy 0 packages upgraded, 18 newly installed, 0 to remove and 0 not upgraded. Need to get 8766kB of archives. After unpacking 27.3MB will be used. Writing extended state information... Get:1 http://ftp.de.debian.org sid/main libmagic1 5.03-5 [393kB] Get:2 http://ftp.de.debian.org sid/main file 5.03-5 [47.6kB] Get:3 http://ftp.de.debian.org sid/main html2text 1.3.2a-14 [103kB] Get:4 http://ftp.de.debian.org sid/main libpcre3 7.8-3 [215kB] Get:5 http://ftp.de.debian.org sid/main libglib2.0-0 2.22.3-2 [999kB] Get:6 http://ftp.de.debian.org sid/main libxml2 2.7.6.dfsg-1 [876kB] Get:7 http://ftp.de.debian.org sid/main libcroco3 0.6.2-1 [125kB] Get:8 http://ftp.de.debian.org sid/main gettext-base 0.17-8 [133kB] Get:9 http://ftp.de.debian.org sid/main gettext 0.17-8 [2503kB] Get:10 http://ftp.de.debian.org sid/main intltool-debian 0.35.0+20060710.1 [30.8kB] Get:11 http://ftp.de.debian.org sid/main po-debconf 1.0.16 [224kB] Get:12 http://ftp.de.debian.org sid/main debhelper 7.4.11 [459kB] Get:13 http://ftp.de.debian.org sid/main libdshconfig1 0.20.13-1 [11.0kB] Get:14 http://ftp.de.debian.org sid/main libdshconfig1-dev 0.20.13-1 [25.4kB] Get:15 http://ftp.de.debian.org sid/main libsgmls-perl 1.03ii-32 [27.8kB] Get:16 http://ftp.de.debian.org sid/main libsp1c2 1.3.4-1.2.1-47 [1386kB] Get:17 http://ftp.de.debian.org sid/main sp 1.3.4-1.2.1-47 [182kB] Get:18 http://ftp.de.debian.org sid/main po4a 0.37.1-1 [1026kB] Fetched XXXB in Xs (XXXXXB/s) Selecting previously deselected package libmagic1. (Reading database ... 12215 files and directories currently installed.) Unpacking libmagic1 (from .../libmagic1_5.03-5_amd64.deb) ... Selecting previously deselected package file. Unpacking file (from .../archives/file_5.03-5_amd64.deb) ... Selecting previously deselected package html2text. Unpacking html2text (from .../html2text_1.3.2a-14_amd64.deb) ... Selecting previously deselected package libpcre3. Unpacking libpcre3 (from .../libpcre3_7.8-3_amd64.deb) ... Selecting previously deselected package libglib2.0-0. Unpacking libglib2.0-0 (from .../libglib2.0-0_2.22.3-2_amd64.deb) ... Selecting previously deselected package libxml2. Unpacking libxml2 (from .../libxml2_2.7.6.dfsg-1_amd64.deb) ... Selecting previously deselected package libcroco3. Unpacking libcroco3 (from .../libcroco3_0.6.2-1_amd64.deb) ... Selecting previously deselected package gettext-base. Unpacking gettext-base (from .../gettext-base_0.17-8_amd64.deb) ... Selecting previously deselected package gettext. Unpacking gettext (from .../gettext_0.17-8_amd64.deb) ... Selecting previously deselected package intltool-debian. Unpacking intltool-debian (from .../intltool-debian_0.35.0+20060710.1_all.deb) ... Selecting previously deselected package po-debconf. Unpacking po-debconf (from .../po-debconf_1.0.16_all.deb) ... Selecting previously deselected package debhelper. Unpacking debhelper (from .../debhelper_7.4.11_all.deb) ... Selecting previously deselected package libdshconfig1. Unpacking libdshconfig1 (from .../libdshconfig1_0.20.13-1_amd64.deb) ... Selecting previously deselected package libdshconfig1-dev. Unpacking libdshconfig1-dev (from .../libdshconfig1-dev_0.20.13-1_amd64.deb) ... Selecting previously deselected package libsgmls-perl. Unpacking libsgmls-perl (from .../libsgmls-perl_1.03ii-32_all.deb) ... Selecting previously deselected package libsp1c2. Unpacking libsp1c2 (from .../libsp1c2_1.3.4-1.2.1-47_amd64.deb) ... Selecting previously deselected package sp. Unpacking sp (from .../sp_1.3.4-1.2.1-47_amd64.deb) ... Selecting previously deselected package po4a. Unpacking po4a (from .../archives/po4a_0.37.1-1_all.deb) ... Processing triggers for man-db ... Processing triggers for install-info ... Setting up libmagic1 (5.03-5) ... Setting up file (5.03-5) ... Setting up html2text (1.3.2a-14) ... Setting up libpcre3 (7.8-3) ... Setting up libglib2.0-0 (2.22.3-2) ... Setting up libxml2 (2.7.6.dfsg-1) ... Setting up libcroco3 (0.6.2-1) ... Setting up gettext-base (0.17-8) ... Setting up gettext (0.17-8) ... Setting up intltool-debian (0.35.0+20060710.1) ... Setting up po-debconf (1.0.16) ... Setting up debhelper (7.4.11) ... Setting up libdshconfig1 (0.20.13-1) ... Setting up libdshconfig1-dev (0.20.13-1) ... Setting up libsgmls-perl (1.03ii-32) ... Setting up libsp1c2 (1.3.4-1.2.1-47) ... Setting up sp (1.3.4-1.2.1-47) ... Setting up po4a (0.37.1-1) ... Setting up pbuilder-satisfydepends-dummy (0.invalid.0) ... Reading package lists... Building dependency tree... Reading state information... Reading extended state information... Initializing package states... Writing extended state information... Reading task descriptions... -> Finished parsing the build-deps Reading package lists... Building dependency tree... Reading state information... aptitude is already the newest version. The following NEW packages will be installed: fakeroot 0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded. Need to get 100kB of archives. After this operation, 385kB of additional disk space will be used. Get:1 http://ftp.de.debian.org sid/main fakeroot 1.14.4-1 [100kB] Fetched XXXB in Xs (XXXXXB/s) Selecting previously deselected package fakeroot. (Reading database ... 13377 files and directories currently installed.) Unpacking fakeroot (from .../fakeroot_1.14.4-1_amd64.deb) ... Processing triggers for man-db ... Setting up fakeroot (1.14.4-1) ... update-alternatives: using /usr/bin/fakeroot-sysv to provide /usr/bin/fakeroot (fakeroot) in auto mode. I: Copying back the cached apt archive contents I: new cache content debhelper_7.4.11_all.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/debhelper_7.4.11_all.deb' => `/TESTDIR/dir3/NUM/var/cache/apt/archives/debhelper_7.4.11_all.deb': Invalid cross-device link I: new cache content sp_1.3.4-1.2.1-47_amd64.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/sp_1.3.4-1.2.1-47_amd64.deb' => `/TESTDIR/dir3/NUM/var/cache/apt/archives/sp_1.3.4-1.2.1-47_amd64.deb': Invalid cross-device link I: new cache content po4a_0.37.1-1_all.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/po4a_0.37.1-1_all.deb' => `/TESTDIR/dir3/NUM/var/cache/apt/archives/po4a_0.37.1-1_all.deb': Invalid cross-device link I: new cache content libglib2.0-0_2.22.3-2_amd64.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/libglib2.0-0_2.22.3-2_amd64.deb' => `/TESTDIR/dir3/NUM/var/cache/apt/archives/libglib2.0-0_2.22.3-2_amd64.deb': Invalid cross-device link I: new cache content libdshconfig1_0.20.13-1_amd64.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/libdshconfig1_0.20.13-1_amd64.deb' => `/TESTDIR/dir3/NUM/var/cache/apt/archives/libdshconfig1_0.20.13-1_amd64.deb': Invalid cross-device link I: new cache content libmagic1_5.03-5_amd64.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/libmagic1_5.03-5_amd64.deb' => `/TESTDIR/dir3/NUM/var/cache/apt/archives/libmagic1_5.03-5_amd64.deb': Invalid cross-device link I: new cache content libsp1c2_1.3.4-1.2.1-47_amd64.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/libsp1c2_1.3.4-1.2.1-47_amd64.deb' => `/TESTDIR/dir3/NUM/var/cache/apt/archives/libsp1c2_1.3.4-1.2.1-47_amd64.deb': Invalid cross-device link I: new cache content libsgmls-perl_1.03ii-32_all.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/libsgmls-perl_1.03ii-32_all.deb' => `/TESTDIR/dir3/NUM/var/cache/apt/archives/libsgmls-perl_1.03ii-32_all.deb': Invalid cross-device link I: new cache content libdshconfig1-dev_0.20.13-1_amd64.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/libdshconfig1-dev_0.20.13-1_amd64.deb' => `/TESTDIR/dir3/NUM/var/cache/apt/archives/libdshconfig1-dev_0.20.13-1_amd64.deb': Invalid cross-device link I: new cache content file_5.03-5_amd64.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/file_5.03-5_amd64.deb' => `/TESTDIR/dir3/NUM/var/cache/apt/archives/file_5.03-5_amd64.deb': Invalid cross-device link I: Copying source file I: copying [../dsh_0.25.10-1.dsc] I: copying [../dsh_0.25.10.orig.tar.gz] I: copying [../dsh_0.25.10-1.diff.gz] I: Extracting source dpkg-source: warning: extracting unsigned source package (dsh_0.25.10-1.dsc) dpkg-source: info: extracting dsh in dsh-0.25.10 dpkg-source: info: unpacking dsh_0.25.10.orig.tar.gz dpkg-source: info: applying dsh_0.25.10-1.diff.gz dpkg-source: info: upstream files that have been modified: dsh-0.25.10/.cvsignore dsh-0.25.10/CVS/Entries dsh-0.25.10/CVS/Repository dsh-0.25.10/CVS/Root dsh-0.25.10/ChangeLog.OLD dsh-0.25.10/dcp.sh dsh-0.25.10/drshd.c dsh-0.25.10/dsh.1.ja.po dsh-0.25.10/m4/.cvsignore dsh-0.25.10/m4/CVS/Entries dsh-0.25.10/m4/CVS/Repository dsh-0.25.10/m4/CVS/Root dsh-0.25.10/po/.cvsignore dsh-0.25.10/po/CVS/Entries dsh-0.25.10/po/CVS/Repository dsh-0.25.10/po/CVS/Root dsh-0.25.10/po/insert-header.sin dsh-0.25.10/tests/.cvsignore dsh-0.25.10/tests/CVS/Entries dsh-0.25.10/tests/CVS/Repository dsh-0.25.10/tests/CVS/Root I: Building the package I: Running cd tmp/buildd/*/ && dpkg-buildpackage -us -uc -rfakeroot dpkg-buildpackage: set CFLAGS to default value: -g -O2 dpkg-buildpackage: set CPPFLAGS to default value: dpkg-buildpackage: set LDFLAGS to default value: dpkg-buildpackage: set FFLAGS to default value: -g -O2 dpkg-buildpackage: set CXXFLAGS to default value: -g -O2 dpkg-buildpackage: source package dsh dpkg-buildpackage: source version 0.25.10-1 dpkg-buildpackage: source changed by Junichi Uekawa dpkg-buildpackage: host architecture amd64 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.10' make[1]: *** No rule to make target `clean'. Stop. make[1]: Leaving directory `/tmp/buildd/dsh-0.25.10' make: [clean] Error 2 (ignored) /usr/bin/make distclean make[1]: Entering directory `/tmp/buildd/dsh-0.25.10' make[1]: *** No rule to make target `distclean'. Stop. make[1]: Leaving directory `/tmp/buildd/dsh-0.25.10' make: [clean] Error 2 (ignored) dh_clean dh_clean: Compatibility levels before 5 are deprecated. dpkg-source -b dsh-0.25.10 dpkg-source: info: using source format `1.0' dpkg-source: info: building dsh using existing dsh_0.25.10.orig.tar.gz dpkg-source: info: building dsh in dsh_0.25.10-1.diff.gz dpkg-source: warning: file dsh-0.25.10/dcp.sh has no final newline (either original or modified version) dpkg-source: warning: file dsh-0.25.10/debian/compat has no final newline (either original or modified version) dpkg-source: warning: the diff modifies the following upstream files: .cvsignore CVS/Entries CVS/Repository CVS/Root ChangeLog.OLD dcp.sh drshd.c dsh.1.ja.po m4/.cvsignore m4/CVS/Entries m4/CVS/Repository m4/CVS/Root po/.cvsignore po/CVS/Entries po/CVS/Repository po/CVS/Root po/insert-header.sin tests/.cvsignore tests/CVS/Entries tests/CVS/Repository tests/CVS/Root dpkg-source: info: use the '3.0 (quilt)' format to have separate and documented changes to upstream files, see dpkg-source(1) dpkg-source: info: building dsh in dsh_0.25.10-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 ISO C89... none needed checking dependency style of gcc... gcc3 checking for strerror in -lcposix... no checking for gcc... (cached) gcc checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) 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 ISO C89... (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 grep that handles long lines and -e... /bin/grep checking for egrep... /bin/grep -E checking for ANSI C header files... yes checking for sys/wait.h that is POSIX.1 compatible... yes checking build system type... x86_64-unknown-linux-gnu checking host system type... x86_64-unknown-linux-gnu checking for a sed that does not truncate output... /bin/sed checking for ld used by gcc... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for /usr/bin/ld option to reload object files... -r checking for BSD-compatible nm... /usr/bin/nm -B checking whether ln -s works... yes checking how to recognize dependent libraries... pass_all checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking dlfcn.h usability... yes checking dlfcn.h presence... yes checking for dlfcn.h... yes checking for g++... g++ checking whether we are using the GNU C++ compiler... yes checking whether g++ accepts -g... yes checking dependency style of g++... gcc3 checking how to run the C++ preprocessor... g++ -E checking for g77... no checking for xlf... no checking for f77... no checking for frt... no checking for pgf77... no checking for cf77... no checking for fort77... no checking for fl32... no checking for af77... no checking for xlf90... no checking for f90... no checking for pgf90... no checking for pghpf... no checking for epcf90... no checking for gfortran... no checking for g95... no checking for xlf95... no checking for f95... no checking for fort... no checking for ifort... no checking for ifc... no checking for efc... no checking for pgf95... no checking for lf95... no checking for ftn... no checking whether we are using the GNU Fortran 77 compiler... no checking whether accepts -g... no checking the maximum length of command line arguments... 3458764513820540925 checking command to parse /usr/bin/nm -B output from gcc object... ok checking for objdir... .libs checking for ar... ar checking for ranlib... ranlib checking for strip... strip checking if gcc supports -fno-rtti -fno-exceptions... no checking for gcc option to produce PIC... -fPIC checking if gcc PIC flag -fPIC works... yes checking if gcc static flag -static works... yes checking if gcc supports -c -o file.o... yes checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) 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 -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking for g++ option to produce PIC... -fPIC checking if g++ PIC flag -fPIC works... yes checking if g++ static flag -static works... yes checking if g++ supports -c -o file.o... yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate appending configuration tag "F77" to libtool checking 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 -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) 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: WARNING: po/Makefile.in.in seems to ignore the --datarootdir setting 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.10' /usr/bin/make all-recursive make[2]: Entering directory `/tmp/buildd/dsh-0.25.10' Making all in m4 make[3]: Entering directory `/tmp/buildd/dsh-0.25.10/m4' make[3]: Nothing to be done for `all'. make[3]: Leaving directory `/tmp/buildd/dsh-0.25.10/m4' Making all in po make[3]: Entering directory `/tmp/buildd/dsh-0.25.10/po' make[3]: Nothing to be done for `all'. make[3]: Leaving directory `/tmp/buildd/dsh-0.25.10/po' make[3]: Entering directory `/tmp/buildd/dsh-0.25.10' 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/bash ./libtool --tag=CC --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.10' make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10' make[1]: Leaving directory `/tmp/buildd/dsh-0.25.10' /usr/bin/make check make[1]: Entering directory `/tmp/buildd/dsh-0.25.10' Making check in m4 make[2]: Entering directory `/tmp/buildd/dsh-0.25.10/m4' make[2]: Nothing to be done for `check'. make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10/m4' Making check in po make[2]: Entering directory `/tmp/buildd/dsh-0.25.10/po' make[2]: Nothing to be done for `check'. make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10/po' make[2]: Entering directory `/tmp/buildd/dsh-0.25.10' /usr/bin/make dsh make[3]: Entering directory `/tmp/buildd/dsh-0.25.10' make[3]: `dsh' is up to date. make[3]: Leaving directory `/tmp/buildd/dsh-0.25.10' /usr/bin/make check-TESTS make[3]: Entering directory `/tmp/buildd/dsh-0.25.10' PASS: tests/param-f.sh dsh: File ./tests/nonexistent.file could not be opened for read PASS: tests/param-f-fail.sh PASS: tests/param-f-with-space.sh PASS: tests/param-m.sh test to check that unknown parameter checking is right. ./dsh: unrecognized option '--unknown-parameter' ./dsh: invalid option -- 'u' PASS: tests/param-unknown.sh test1 test2 dsh: Process terminated (before write). PASS: tests/param-i.sh Check that cn4 option is working. PASS: tests/param-cn4.sh test to check that -b0 is rejected, and -b1 is accepted Buffer size needs to be greater than 1 Buffer size needs to be greater than 1 a b PASS: tests/param-b-0.sh dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call success dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call success success success success success a: dsh: Failed executing ./invalid-exec-file with llexec call b: dsh: Failed executing ./invalid-exec-file with llexec call c: dsh: Failed executing ./invalid-exec-file with llexec call d: dsh: Failed executing ./invalid-exec-file with llexec call success dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call success PASS: tests/param-r-invalid.sh 1: 1 2: 2 dsh: fork limit and wait shell cannot be specified at the same time PASS: tests/param-F-invalid.sh Fri Jan 1 19:02:22 UTC 2010 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 Fri Jan 1 19:02:27 UTC 2010 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 `/tmp/buildd/dsh-0.25.10' make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10' make[1]: Leaving directory `/tmp/buildd/dsh-0.25.10' touch build-stamp fakeroot debian/rules binary dh_testdir dh_testroot dh_clean -k dh_clean: Compatibility levels before 5 are deprecated. dh_installdirs dh_installdirs: Compatibility levels before 5 are deprecated. # Add here commands to install the package into debian/dsh. /usr/bin/make install DESTDIR=/tmp/buildd/dsh-0.25.10/debian/dsh make[1]: Entering directory `/tmp/buildd/dsh-0.25.10' Making install in m4 make[2]: Entering directory `/tmp/buildd/dsh-0.25.10/m4' make[3]: Entering directory `/tmp/buildd/dsh-0.25.10/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.10/m4' make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10/m4' Making install in po make[2]: Entering directory `/tmp/buildd/dsh-0.25.10/po' /bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share mkdir -p -- /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share mkdir -p -- /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/locale/ja/LC_MESSAGES installing ja.gmo as /tmp/buildd/dsh-0.25.10/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.10/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.10/debian/dsh/usr/share/gettext/po/$file; \ done; \ else \ : ; \ fi make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10/po' make[2]: Entering directory `/tmp/buildd/dsh-0.25.10' make[3]: Entering directory `/tmp/buildd/dsh-0.25.10' test -z "/usr/bin" || mkdir -p -- "/tmp/buildd/dsh-0.25.10/debian/dsh/usr/bin" /bin/bash ./libtool --mode=install install -p -o root -g root -m 755 -s 'dsh' '/tmp/buildd/dsh-0.25.10/debian/dsh/usr/bin/dsh' install -p -o root -g root -m 755 -s dsh /tmp/buildd/dsh-0.25.10/debian/dsh/usr/bin/dsh test -z "/etc/dsh" || mkdir -p -- "/tmp/buildd/dsh-0.25.10/debian/dsh/etc/dsh" /usr/bin/install -c -m 644 'dsh.conf' '/tmp/buildd/dsh-0.25.10/debian/dsh/etc/dsh/dsh.conf' for LANGS in ja ; do \ mkdir -p /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/$LANGS/man1 ;\ mkdir -p /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/$LANGS/man5 ;\ sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.$LANGS.1 \ > /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/$LANGS/man1/dsh.1 ; \ sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.conf.$LANGS.5 \ > /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/$LANGS/man5/dsh.conf.5 ; \ done test -z "/usr/share/man/man1" || mkdir -p -- "/tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/man1" /usr/bin/install -c -m 644 './build-man/dsh.1' '/tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/man1/dsh.1' test -z "/usr/share/man/man5" || mkdir -p -- "/tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/man5" /usr/bin/install -c -m 644 './build-man/dsh.conf.5' '/tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/man5/dsh.conf.5' make[3]: Leaving directory `/tmp/buildd/dsh-0.25.10' make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10' make[1]: Leaving directory `/tmp/buildd/dsh-0.25.10' cp /tmp/buildd/dsh-0.25.10/debian/machines.list /tmp/buildd/dsh-0.25.10/debian/dsh/etc/dsh/machines.list cp /tmp/buildd/dsh-0.25.10/dsh.conf /tmp/buildd/dsh-0.25.10/debian/dsh/etc/dsh/dsh.conf ln -s ../machines.list /tmp/buildd/dsh-0.25.10/debian/dsh/etc/dsh/group/all install -d /tmp/buildd/dsh-0.25.10/debian/dsh/usr/lib/update-cluster install -m 755 /tmp/buildd/dsh-0.25.10/debian/dsh.updatelist /tmp/buildd/dsh-0.25.10/debian/dsh/usr/lib/update-cluster/ dh_testdir dh_testroot dh_installdocs NEWS dh_installdocs: Compatibility levels before 5 are deprecated. dh_installexamples dh_installexamples: Compatibility levels before 5 are deprecated. dh_installmenu dh_installmenu: Compatibility levels before 5 are deprecated. dh_installman dh_installman: Compatibility levels before 5 are deprecated. dh_installchangelogs ChangeLog dh_installchangelogs: Compatibility levels before 5 are deprecated. dh_link dh_link: Compatibility levels before 5 are deprecated. dh_strip dh_strip: Compatibility levels before 5 are deprecated. dh_shlibdeps dh_shlibdeps: Compatibility levels before 5 are deprecated. dh_compress dh_compress: Compatibility levels before 5 are deprecated. dh_fixperms dh_fixperms: Compatibility levels before 5 are deprecated. dh_installdeb dh_installdeb: Compatibility levels before 5 are deprecated. dh_gencontrol dh_gencontrol: Compatibility levels before 5 are deprecated. dh_md5sums dh_md5sums: Compatibility levels before 5 are deprecated. dh_builddeb dh_builddeb: Compatibility levels before 5 are deprecated. dpkg-deb: building package `dsh' in `../dsh_0.25.10-1_amd64.deb'. dpkg-genchanges >../dsh_0.25.10-1_amd64.changes dpkg-genchanges: including full source code in upload dpkg-buildpackage: full upload (original source is included) I: Copying back the cached apt archive contents I: new cache content debhelper_7.4.11_all.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/debhelper_7.4.11_all.deb' => `/TESTDIR/dir3/NUM/var/cache/apt/archives/debhelper_7.4.11_all.deb': Invalid cross-device link I: new cache content sp_1.3.4-1.2.1-47_amd64.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/sp_1.3.4-1.2.1-47_amd64.deb' => `/TESTDIR/dir3/NUM/var/cache/apt/archives/sp_1.3.4-1.2.1-47_amd64.deb': Invalid cross-device link I: new cache content po4a_0.37.1-1_all.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/po4a_0.37.1-1_all.deb' => `/TESTDIR/dir3/NUM/var/cache/apt/archives/po4a_0.37.1-1_all.deb': Invalid cross-device link I: new cache content libglib2.0-0_2.22.3-2_amd64.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/libglib2.0-0_2.22.3-2_amd64.deb' => `/TESTDIR/dir3/NUM/var/cache/apt/archives/libglib2.0-0_2.22.3-2_amd64.deb': Invalid cross-device link I: new cache content libdshconfig1_0.20.13-1_amd64.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/libdshconfig1_0.20.13-1_amd64.deb' => `/TESTDIR/dir3/NUM/var/cache/apt/archives/libdshconfig1_0.20.13-1_amd64.deb': Invalid cross-device link I: new cache content libmagic1_5.03-5_amd64.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/libmagic1_5.03-5_amd64.deb' => `/TESTDIR/dir3/NUM/var/cache/apt/archives/libmagic1_5.03-5_amd64.deb': Invalid cross-device link I: new cache content libsp1c2_1.3.4-1.2.1-47_amd64.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/libsp1c2_1.3.4-1.2.1-47_amd64.deb' => `/TESTDIR/dir3/NUM/var/cache/apt/archives/libsp1c2_1.3.4-1.2.1-47_amd64.deb': Invalid cross-device link I: new cache content libsgmls-perl_1.03ii-32_all.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/libsgmls-perl_1.03ii-32_all.deb' => `/TESTDIR/dir3/NUM/var/cache/apt/archives/libsgmls-perl_1.03ii-32_all.deb': Invalid cross-device link I: new cache content libdshconfig1-dev_0.20.13-1_amd64.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/libdshconfig1-dev_0.20.13-1_amd64.deb' => `/TESTDIR/dir3/NUM/var/cache/apt/archives/libdshconfig1-dev_0.20.13-1_amd64.deb': Invalid cross-device link I: new cache content file_5.03-5_amd64.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/file_5.03-5_amd64.deb' => `/TESTDIR/dir3/NUM/var/cache/apt/archives/file_5.03-5_amd64.deb': Invalid cross-device link I: unmounting dev/pts filesystem I: unmounting proc filesystem I: cleaning the build env I: removing directory /TESTDIR/dir3/NUM and its subdirectories I: Current time: Fri Jan 1 19:02:30 UTC 2010 I: pbuilder-time-stamp: 1262372550 pbuilder-0.215ubuntu7/testsuite/normal/pbuilder-create-sid.log0000664000000000000000000011224512312041170021415 0ustar I: Distribution is sid. I: Building the build environment I: running debootstrap /usr/sbin/debootstrap I: Retrieving Release I: Retrieving Packages I: Validating Packages I: Resolving dependencies of required packages... I: Resolving dependencies of base packages... I: Found additional required dependencies: dash insserv libdb4.7 I: Found additional base dependencies: libapr1 libaprutil1 libboost-iostreams1.40.0 libdb4.8 libexpat1 liblog4cxx10 libsqlite3-0 libudev0 I: Checking component main on http://ftp.de.debian.org/debian... I: Retrieving libacl1 I: Validating libacl1 I: Retrieving adduser I: Validating adduser I: Retrieving libaprutil1 I: Validating libaprutil1 I: Retrieving libapr1 I: Validating libapr1 I: Retrieving apt-utils I: Validating apt-utils I: Retrieving apt I: Validating apt I: Retrieving aptitude I: Validating aptitude I: Retrieving libattr1 I: Validating libattr1 I: Retrieving base-files I: Validating base-files I: Retrieving base-passwd I: Validating base-passwd I: Retrieving bash I: Validating bash I: Retrieving libboost-iostreams1.40.0 I: Validating libboost-iostreams1.40.0 I: Retrieving bsdmainutils I: Validating bsdmainutils I: Retrieving libbz2-1.0 I: Validating libbz2-1.0 I: Retrieving coreutils I: Validating coreutils I: Retrieving cpio I: Validating cpio I: Retrieving cron I: Validating cron I: Retrieving libcwidget3 I: Validating libcwidget3 I: Retrieving dash I: Validating dash I: Retrieving libdb4.8 I: Validating libdb4.8 I: Retrieving libdb4.7 I: Validating libdb4.7 I: Retrieving debconf-i18n I: Validating debconf-i18n I: Retrieving debconf I: Validating debconf I: Retrieving debian-archive-keyring I: Validating debian-archive-keyring I: Retrieving debianutils I: Validating debianutils I: Retrieving dhcp3-client I: Validating dhcp3-client I: Retrieving dhcp3-common I: Validating dhcp3-common I: Retrieving diffutils I: Validating diffutils I: Retrieving dmidecode I: Validating dmidecode I: Retrieving dpkg I: Validating dpkg I: Retrieving e2fslibs I: Validating e2fslibs I: Retrieving e2fsprogs I: Validating e2fsprogs I: Retrieving libcomerr2 I: Validating libcomerr2 I: Retrieving libss2 I: Validating libss2 I: Retrieving ed I: Validating ed I: Retrieving libc-bin I: Validating libc-bin I: Retrieving libc6 I: Validating libc6 I: Retrieving libexpat1 I: Validating libexpat1 I: Retrieving findutils I: Validating findutils I: Retrieving gcc-4.3-base I: Validating gcc-4.3-base I: Retrieving gcc-4.4-base I: Validating gcc-4.4-base I: Retrieving libgcc1 I: Validating libgcc1 I: Retrieving libstdc++6 I: Validating libstdc++6 I: Retrieving libgdbm3 I: Validating libgdbm3 I: Retrieving gnupg I: Validating gnupg I: Retrieving gpgv I: Validating gpgv I: Retrieving grep I: Validating grep I: Retrieving groff-base I: Validating groff-base I: Retrieving gzip I: Validating gzip I: Retrieving hostname I: Validating hostname I: Retrieving ifupdown I: Validating ifupdown I: Retrieving insserv I: Validating insserv I: Retrieving iproute I: Validating iproute I: Retrieving iptables I: Validating iptables I: Retrieving iputils-ping I: Validating iputils-ping I: Retrieving liblog4cxx10 I: Validating liblog4cxx10 I: Retrieving logrotate I: Validating logrotate I: Retrieving lsb-base I: Validating lsb-base I: Retrieving libdevmapper1.02.1 I: Validating libdevmapper1.02.1 I: Retrieving lzma I: Validating lzma I: Retrieving libept0 I: Validating libept0 I: Retrieving liblocale-gettext-perl I: Validating liblocale-gettext-perl I: Retrieving libselinux1 I: Validating libselinux1 I: Retrieving libsepol1 I: Validating libsepol1 I: Retrieving libsigc++-2.0-0c2a I: Validating libsigc++-2.0-0c2a I: Retrieving libtasn1-3 I: Validating libtasn1-3 I: Retrieving libtext-charwidth-perl I: Validating libtext-charwidth-perl I: Retrieving libtext-iconv-perl I: Validating libtext-iconv-perl I: Retrieving libtext-wrapi18n-perl I: Validating libtext-wrapi18n-perl I: Retrieving libunwind7 I: Validating libunwind7 I: Retrieving libusb-0.1-4 I: Validating libusb-0.1-4 I: Retrieving man-db I: Validating man-db I: Retrieving manpages I: Validating manpages I: Retrieving mawk I: Validating mawk I: Retrieving module-init-tools I: Validating module-init-tools I: Retrieving nano I: Validating nano I: Retrieving libncurses5 I: Validating libncurses5 I: Retrieving libncursesw5 I: Validating libncursesw5 I: Retrieving ncurses-base I: Validating ncurses-base I: Retrieving ncurses-bin I: Validating ncurses-bin I: Retrieving net-tools I: Validating net-tools I: Retrieving netbase I: Validating netbase I: Retrieving netcat-traditional I: Validating netcat-traditional I: Retrieving libnewt0.52 I: Validating libnewt0.52 I: Retrieving whiptail I: Validating whiptail I: Retrieving libssl0.9.8 I: Validating libssl0.9.8 I: Retrieving libpam-modules I: Validating libpam-modules I: Retrieving libpam-runtime I: Validating libpam-runtime I: Retrieving libpam0g I: Validating libpam0g I: Retrieving perl-base I: Validating perl-base I: Retrieving libpopt0 I: Validating libpopt0 I: Retrieving procps I: Validating procps I: Retrieving libreadline5 I: Validating libreadline5 I: Retrieving libreadline6 I: Validating libreadline6 I: Retrieving readline-common I: Validating readline-common I: Retrieving rsyslog I: Validating rsyslog I: Retrieving sed I: Validating sed I: Retrieving sensible-utils I: Validating sensible-utils I: Retrieving login I: Validating login I: Retrieving passwd I: Validating passwd I: Retrieving libslang2 I: Validating libslang2 I: Retrieving libsqlite3-0 I: Validating libsqlite3-0 I: Retrieving initscripts I: Validating initscripts I: Retrieving sysv-rc I: Validating sysv-rc I: Retrieving sysvinit-utils I: Validating sysvinit-utils I: Retrieving sysvinit I: Validating sysvinit I: Retrieving tar I: Validating tar I: Retrieving tasksel-data I: Validating tasksel-data I: Retrieving tasksel I: Validating tasksel I: Retrieving libwrap0 I: Validating libwrap0 I: Retrieving info I: Validating info I: Retrieving install-info I: Validating install-info I: Retrieving traceroute I: Validating traceroute I: Retrieving tzdata I: Validating tzdata I: Retrieving libudev0 I: Validating libudev0 I: Retrieving udev I: Validating udev I: Retrieving bsdutils I: Validating bsdutils I: Retrieving libblkid1 I: Validating libblkid1 I: Retrieving libuuid1 I: Validating libuuid1 I: Retrieving mount I: Validating mount I: Retrieving util-linux I: Validating util-linux I: Retrieving vim-common I: Validating vim-common I: Retrieving vim-tiny I: Validating vim-tiny I: Retrieving wget I: Validating wget I: Retrieving libxapian15 I: Validating libxapian15 I: Retrieving zlib1g I: Validating zlib1g I: Extracting libacl1... I: Extracting libattr1... I: Extracting base-files... I: Extracting base-passwd... I: Extracting bash... I: Extracting coreutils... I: Extracting dash... I: Extracting libdb4.7... I: Extracting debconf-i18n... I: Extracting debconf... I: Extracting debianutils... I: Extracting diffutils... I: Extracting dpkg... I: Extracting e2fslibs... I: Extracting e2fsprogs... I: Extracting libcomerr2... I: Extracting libss2... I: Extracting libc-bin... I: Extracting libc6... I: Extracting findutils... I: Extracting gcc-4.3-base... I: Extracting gcc-4.4-base... I: Extracting libgcc1... I: Extracting libstdc++6... I: Extracting grep... I: Extracting gzip... I: Extracting hostname... I: Extracting insserv... I: Extracting lsb-base... I: Extracting libdevmapper1.02.1... I: Extracting lzma... I: Extracting liblocale-gettext-perl... I: Extracting libselinux1... I: Extracting libsepol1... I: Extracting libtext-charwidth-perl... I: Extracting libtext-iconv-perl... I: Extracting libtext-wrapi18n-perl... I: Extracting libunwind7... I: Extracting mawk... I: Extracting libncurses5... I: Extracting ncurses-base... I: Extracting ncurses-bin... I: Extracting libpam-modules... I: Extracting libpam-runtime... I: Extracting libpam0g... I: Extracting perl-base... I: Extracting procps... I: Extracting sed... I: Extracting sensible-utils... I: Extracting login... I: Extracting passwd... I: Extracting libslang2... I: Extracting initscripts... I: Extracting sysv-rc... I: Extracting sysvinit-utils... I: Extracting sysvinit... I: Extracting tar... I: Extracting tzdata... I: Extracting bsdutils... I: Extracting libblkid1... I: Extracting libuuid1... I: Extracting mount... I: Extracting util-linux... I: Extracting zlib1g... I: Installing core packages... I: Unpacking required packages... I: Unpacking libacl1... I: Unpacking libattr1... I: Unpacking base-files... I: Unpacking base-passwd... I: Unpacking bash... I: Unpacking coreutils... I: Unpacking dash... I: Unpacking libdb4.7... I: Unpacking debconf-i18n... I: Unpacking debconf... I: Unpacking debianutils... I: Unpacking diffutils... I: Unpacking dpkg... I: Unpacking e2fslibs... I: Unpacking e2fsprogs... I: Unpacking libcomerr2... I: Unpacking libss2... I: Unpacking libc-bin... I: Unpacking libc6... I: Unpacking findutils... I: Unpacking gcc-4.3-base... I: Unpacking gcc-4.4-base... I: Unpacking libgcc1... I: Unpacking libstdc++6... I: Unpacking grep... I: Unpacking gzip... I: Unpacking hostname... I: Unpacking insserv... I: Unpacking lsb-base... I: Unpacking libdevmapper1.02.1... I: Unpacking lzma... I: Unpacking liblocale-gettext-perl... I: Unpacking libselinux1... I: Unpacking libsepol1... I: Unpacking libtext-charwidth-perl... I: Unpacking libtext-iconv-perl... I: Unpacking libtext-wrapi18n-perl... I: Unpacking libunwind7... I: Unpacking mawk... I: Unpacking libncurses5... I: Unpacking ncurses-base... I: Unpacking ncurses-bin... I: Unpacking libpam-modules... I: Unpacking libpam-runtime... I: Unpacking libpam0g... I: Unpacking perl-base... I: Unpacking procps... I: Unpacking sed... I: Unpacking sensible-utils... I: Unpacking login... I: Unpacking passwd... I: Unpacking libslang2... I: Unpacking initscripts... I: Unpacking sysv-rc... I: Unpacking sysvinit-utils... I: Unpacking sysvinit... I: Unpacking tar... I: Unpacking tzdata... I: Unpacking bsdutils... I: Unpacking libblkid1... I: Unpacking libuuid1... I: Unpacking mount... I: Unpacking util-linux... I: Unpacking zlib1g... I: Configuring required packages... I: Configuring sensible-utils... I: Configuring gcc-4.3-base... I: Configuring libc-bin... I: Configuring gcc-4.4-base... I: Configuring libc6... I: Configuring debianutils... I: Configuring bsdutils... I: Configuring libunwind7... I: Configuring libsepol1... I: Configuring diffutils... I: Configuring tar... I: Configuring zlib1g... I: Configuring libgcc1... I: Configuring libncurses5... I: Configuring libattr1... I: Configuring e2fslibs... I: Configuring base-passwd... I: Configuring libcomerr2... I: Configuring mawk... I: Configuring libdb4.7... I: Configuring grep... I: Configuring hostname... I: Configuring libacl1... I: Configuring libslang2... I: Configuring libss2... I: Configuring findutils... I: Configuring insserv... I: Configuring gzip... I: Configuring libselinux1... I: Configuring libstdc++6... I: Configuring coreutils... I: Configuring lzma... I: Configuring ncurses-base... I: Configuring ncurses-bin... I: Configuring base-files... I: Configuring libdevmapper1.02.1... I: Configuring dpkg... I: Configuring sysvinit-utils... I: Configuring dash... I: Configuring perl-base... I: Configuring libtext-iconv-perl... I: Configuring sed... I: Configuring liblocale-gettext-perl... I: Configuring bash... I: Configuring libtext-charwidth-perl... I: Configuring libtext-wrapi18n-perl... I: Configuring lsb-base... I: Configuring debconf-i18n... I: Configuring debconf... I: Configuring libpam0g... I: Configuring sysv-rc... I: Configuring libpam-modules... I: Configuring tzdata... I: Configuring passwd... I: Configuring libpam-runtime... I: Configuring login... I: Configuring libuuid1... I: Configuring libblkid1... I: Configuring e2fsprogs... I: Configuring mount... I: Configuring initscripts... I: Configuring util-linux... I: Configuring procps... I: Configuring sysvinit... I: Unpacking the base system... I: Unpacking adduser... I: Unpacking libaprutil1... I: Unpacking libapr1... I: Unpacking apt-utils... I: Unpacking apt... I: Unpacking aptitude... I: Unpacking libboost-iostreams1.40.0... I: Unpacking bsdmainutils... I: Unpacking libbz2-1.0... I: Unpacking cpio... I: Unpacking cron... I: Unpacking libcwidget3... I: Unpacking libdb4.8... I: Unpacking debian-archive-keyring... I: Unpacking dhcp3-client... I: Unpacking dhcp3-common... I: Unpacking dmidecode... I: Unpacking ed... I: Unpacking libexpat1... I: Unpacking libgdbm3... I: Unpacking gnupg... I: Unpacking gpgv... I: Unpacking groff-base... I: Unpacking ifupdown... I: Unpacking iproute... I: Unpacking iptables... I: Unpacking iputils-ping... I: Unpacking liblog4cxx10... I: Unpacking logrotate... I: Unpacking libept0... I: Unpacking libsigc++-2.0-0c2a... I: Unpacking libtasn1-3... I: Unpacking libusb-0.1-4... I: Unpacking man-db... I: Unpacking manpages... I: Unpacking module-init-tools... I: Unpacking nano... I: Unpacking libncursesw5... I: Unpacking net-tools... I: Unpacking netbase... I: Unpacking netcat-traditional... I: Unpacking libnewt0.52... I: Unpacking whiptail... I: Unpacking libssl0.9.8... I: Unpacking libpopt0... I: Unpacking libreadline5... I: Unpacking libreadline6... I: Unpacking readline-common... I: Unpacking rsyslog... I: Unpacking libsqlite3-0... I: Unpacking tasksel-data... I: Unpacking tasksel... I: Unpacking libwrap0... I: Unpacking info... I: Unpacking install-info... I: Unpacking traceroute... I: Unpacking libudev0... I: Unpacking udev... I: Unpacking vim-common... I: Unpacking vim-tiny... I: Unpacking wget... I: Unpacking libxapian15... I: Configuring the base system... I: Configuring module-init-tools... I: Configuring libgdbm3... I: Configuring libtasn1-3... I: Configuring libpopt0... I: Configuring libusb-0.1-4... I: Configuring install-info... I: Configuring libssl0.9.8... I: Configuring vim-common... I: Configuring netbase... I: Configuring libxapian15... I: Configuring dmidecode... I: Configuring libudev0... I: Configuring adduser... I: Configuring traceroute... I: Configuring ed... I: Configuring manpages... I: Configuring libsqlite3-0... I: Configuring libexpat1... I: Configuring iproute... I: Configuring wget... I: Configuring groff-base... I: Configuring libnewt0.52... I: Configuring libdb4.8... I: Configuring net-tools... I: Configuring bsdmainutils... I: Configuring libsigc++-2.0-0c2a... I: Configuring netcat-traditional... I: Configuring libncursesw5... I: Configuring info... I: Configuring iputils-ping... I: Configuring libbz2-1.0... I: Configuring cron... I: Configuring nano... I: Configuring dhcp3-common... I: Configuring udev... I: Configuring iptables... I: Configuring rsyslog... I: Configuring cpio... I: Configuring vim-tiny... I: Configuring readline-common... I: Configuring libapr1... I: Configuring libwrap0... I: Configuring man-db... I: Configuring libboost-iostreams1.40.0... I: Configuring whiptail... I: Configuring ifupdown... I: Configuring dhcp3-client... I: Configuring libreadline5... I: Configuring libreadline6... I: Configuring logrotate... I: Configuring libaprutil1... I: Configuring liblog4cxx10... I: Configuring libcwidget3... I: Configuring gpgv... I: Configuring gnupg... I: Configuring debian-archive-keyring... I: Configuring apt... I: Configuring libept0... I: Configuring apt-utils... I: Configuring aptitude... I: Configuring tasksel-data... I: Configuring tasksel... I: Base system installed successfully. I: debootstrap finished I: copying local configuration I: Installing apt-lines I: user script /var/cache/pbuilder/build//NUM/tmp/hooks/G50-initscripts-2.86.ds1-11-cdebootstrap0.3.9.sh starting warning: can't open /etc/mtab: No such file or directory umount: /sys: not mounted warning: can't open /etc/mtab: No such file or directory umount: /proc/bus/usb: not found warning: can't open /etc/mtab: No such file or directory umount: /dev/shm: not mounted warning: can't open /etc/mtab: No such file or directory umount: /proc: not mounted warning: can't open /etc/mtab: No such file or directory umount: /dev/pts: not mounted I: user script /var/cache/pbuilder/build//NUM/tmp/hooks/G50-initscripts-2.86.ds1-11-cdebootstrap0.3.9.sh finished I: Refreshing the base.tgz I: upgrading packages I: mounting /proc filesystem I: mounting /dev/pts filesystem I: installing dummy policy-rc.d Get:1 http://ftp.de.debian.org sid Release.gpg [835B] Hit http://ftp.de.debian.org sid Release Get:2 http://ftp.de.debian.org sid/main Packages/DiffIndex [2038B] Fetched XXXB in Xs (XXXXXB/s) Reading package lists... I: Obtaining the cached apt archive contents ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libssl0.9.8_0.9.8k-7_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libc-bin_2.10.2-2_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/bsdutils_1%3a2.16.2-0_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libslang2_2.2.2-2_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/netbase_4.40_all.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libcomerr2_1.41.9-1_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libxapian15_1.0.17-1_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/logrotate_3.7.8-4_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/tasksel_2.80_all.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/debianutils_3.2.2_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libboost-iostreams1.40.0_1.40.0-5_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libacl1_2.2.49-1_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/dmidecode_2.9-1.2_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/lsb-base_3.2-23_all.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/dash_0.5.5.1-3_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libwrap0_7.6.q-18_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libss2_1.41.9-1_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libsqlite3-0_3.6.21-2_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/procps_1%3a3.2.8-2_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/aptitude_0.6.1.3-3_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/perl-base_5.10.1-8_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libusb-0.1-4_2%3a0.1.12-13_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libpam0g_1.1.0-4_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/login_1%3a4.1.4.2-1_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/man-db_2.5.6-4_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libgdbm3_1.8.3-9_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/ed_1.4-1_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/debconf_1.5.28_all.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/liblog4cxx10_0.10.0-1.1_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/sysv-rc_2.87dsf-8_all.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/vim-common_2%3a7.2.284-1_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/module-init-tools_3.11-1_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/manpages_3.23-1_all.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/findutils_4.4.2-1_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/nano_2.2.1-1_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/base-passwd_3.5.22_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/liblocale-gettext-perl_1.05-6_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libcwidget3_0.5.16-2_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libstdc++6_4.4.2-8_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libsigc++-2.0-0c2a_2.0.18-2_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/ncurses-bin_5.7+20090803-2_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/cron_3.0pl1-106_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/netcat-traditional_1.10-38_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/e2fslibs_1.41.9-1_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/initscripts_2.87dsf-8_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/zlib1g_1%3a1.2.3.4.dfsg-3_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libreadline5_5.2-7_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libdb4.7_4.7.25-9_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/debian-archive-keyring_2009.01.31_all.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/grep_2.5.4-4_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/dhcp3-client_3.1.3-1_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/tar_1.22-2_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libapr1_1.3.8-1_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/gcc-4.3-base_4.3.4-6_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/iproute_20090324-1_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/iptables_1.4.6-2_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libtext-wrapi18n-perl_0.06-7_all.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/apt_0.7.25_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/gcc-4.4-base_4.4.2-8_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/sysvinit_2.87dsf-8_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/passwd_1%3a4.1.4.2-1_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libaprutil1_1.3.9+dfsg-3_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/tasksel-data_2.80_all.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/bash_4.0-7_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/tzdata_2009u-1_all.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libsepol1_2.0.40-2_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libtasn1-3_2.3-1_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libdb4.8_4.8.26-1_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libexpat1_2.0.1-7_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/adduser_3.112_all.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/util-linux_2.16.2-0_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/traceroute_2.0.13-2_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/iputils-ping_3%3a20071127-2_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libreadline6_6.0-5_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libnewt0.52_0.52.10-5_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/gpgv_1.4.10-2_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/install-info_4.13a.dfsg.1-5_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/dhcp3-common_3.1.3-1_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/dpkg_1.15.5.5_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libpam-runtime_1.1.0-4_all.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/sysvinit-utils_2.87dsf-8_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/sensible-utils_0.0.2_all.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/whiptail_0.52.10-5_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libblkid1_2.16.2-0_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/apt-utils_0.7.25_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libtext-iconv-perl_1.7-2_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/diffutils_1%3a2.8.1-18_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libselinux1_2.0.89-4_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/net-tools_1.60-23_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/udev_149-2_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libdevmapper1.02.1_2%3a1.02.39-1_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libncursesw5_5.7+20090803-2_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libunwind7_0.99-0.2_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/mount_2.16.2-0_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libc6_2.10.2-2_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libpopt0_1.15-1_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libudev0_149-2_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/debconf-i18n_1.5.28_all.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/rsyslog_4.4.2-1_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/groff-base_1.20.1-6_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/ncurses-base_5.7+20090803-2_all.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/hostname_3.01_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libbz2-1.0_1.0.5-3_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/gnupg_1.4.10-2_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/wget_1.12-1.1_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/insserv_1.12.0-14_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/cpio_2.10-1_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/sed_4.2.1-6_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/lzma_4.43-14_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libncurses5_5.7+20090803-2_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/ifupdown_0.6.9_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libtext-charwidth-perl_0.04-6_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libuuid1_2.16.2-0_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/readline-common_6.0-5_all.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/bsdmainutils_8.0.5_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/gzip_1.3.12-8_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libattr1_1%3a2.4.44-1_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/coreutils_8.0-2_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/base-files_5.0.0_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libpam-modules_1.1.0-4_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/info_4.13a.dfsg.1-5_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/e2fsprogs_1.41.9-1_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libept0_0.5.30_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/vim-tiny_2%3a7.2.284-1_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/mawk_1.3.3-15_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libgcc1_1%3a4.4.2-8_amd64.deb': File exists 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. aptitude is already the newest version. The following extra packages will be installed: binutils bzip2 cpp cpp-4.4 g++ g++-4.4 gcc gcc-4.4 libc-dev-bin libc6-dev libgmp3c2 libgomp1 liblzma1 libmpfr1ldbl libstdc++6-4.4-dev libtimedate-perl linux-libc-dev make patch perl perl-modules xz-utils Suggested packages: binutils-doc bzip2-doc cpp-doc gcc-4.4-locales debian-keyring debian-maintainers g++-multilib g++-4.4-multilib gcc-4.4-doc libstdc++6-4.4-dbg gcc-multilib manpages-dev autoconf automake1.9 libtool flex bison gdb gcc-doc gcc-4.4-multilib libmudflap0-4.4-dev libgcc1-dbg libgomp1-dbg libmudflap0-dbg libcloog-ppl0 libppl-c2 libppl7 glibc-doc libstdc++6-4.4-doc make-doc diffutils-doc perl-doc libterm-readline-gnu-perl libterm-readline-perl-perl Recommended packages: fakeroot The following NEW packages will be installed: binutils build-essential bzip2 cpp cpp-4.4 dpkg-dev g++ g++-4.4 gcc gcc-4.4 libc-dev-bin libc6-dev libgmp3c2 libgomp1 liblzma1 libmpfr1ldbl libstdc++6-4.4-dev libtimedate-perl linux-libc-dev make patch perl perl-modules xz-utils 0 upgraded, 24 newly installed, 0 to remove and 0 not upgraded. Need to get 0B/30.9MB of archives. After this operation, 105MB of additional disk space will be used. Selecting previously deselected package patch. (Reading database ... 8349 files and directories currently installed.) Unpacking patch (from .../archives/patch_2.6-2_amd64.deb) ... Selecting previously deselected package perl-modules. Unpacking perl-modules (from .../perl-modules_5.10.1-8_all.deb) ... Selecting previously deselected package perl. Unpacking perl (from .../perl_5.10.1-8_amd64.deb) ... Selecting previously deselected package binutils. Unpacking binutils (from .../binutils_2.20-4_amd64.deb) ... Selecting previously deselected package libc-dev-bin. Unpacking libc-dev-bin (from .../libc-dev-bin_2.10.2-2_amd64.deb) ... Selecting previously deselected package linux-libc-dev. Unpacking linux-libc-dev (from .../linux-libc-dev_2.6.32-3_amd64.deb) ... Selecting previously deselected package libc6-dev. Unpacking libc6-dev (from .../libc6-dev_2.10.2-2_amd64.deb) ... Selecting previously deselected package libgmp3c2. Unpacking libgmp3c2 (from .../libgmp3c2_2%3a4.3.1+dfsg-3_amd64.deb) ... Selecting previously deselected package libmpfr1ldbl. Unpacking libmpfr1ldbl (from .../libmpfr1ldbl_2.4.2-3_amd64.deb) ... Selecting previously deselected package cpp-4.4. Unpacking cpp-4.4 (from .../cpp-4.4_4.4.2-8_amd64.deb) ... Selecting previously deselected package cpp. Unpacking cpp (from .../cpp_4%3a4.4.2-2_amd64.deb) ... Selecting previously deselected package libgomp1. Unpacking libgomp1 (from .../libgomp1_4.4.2-8_amd64.deb) ... Selecting previously deselected package gcc-4.4. Unpacking gcc-4.4 (from .../gcc-4.4_4.4.2-8_amd64.deb) ... Selecting previously deselected package gcc. Unpacking gcc (from .../gcc_4%3a4.4.2-2_amd64.deb) ... Selecting previously deselected package libstdc++6-4.4-dev. Unpacking libstdc++6-4.4-dev (from .../libstdc++6-4.4-dev_4.4.2-8_amd64.deb) ... Selecting previously deselected package g++-4.4. Unpacking g++-4.4 (from .../g++-4.4_4.4.2-8_amd64.deb) ... Selecting previously deselected package g++. Unpacking g++ (from .../g++_4%3a4.4.2-2_amd64.deb) ... Selecting previously deselected package make. Unpacking make (from .../archives/make_3.81-7_amd64.deb) ... Selecting previously deselected package bzip2. Unpacking bzip2 (from .../bzip2_1.0.5-3_amd64.deb) ... Selecting previously deselected package liblzma1. Unpacking liblzma1 (from .../liblzma1_4.999.9beta+20091116-1_amd64.deb) ... Selecting previously deselected package xz-utils. Unpacking xz-utils (from .../xz-utils_4.999.9beta+20091116-1_amd64.deb) ... Selecting previously deselected package libtimedate-perl. Unpacking libtimedate-perl (from .../libtimedate-perl_1.1900-1_all.deb) ... Selecting previously deselected package dpkg-dev. Unpacking dpkg-dev (from .../dpkg-dev_1.15.5.5_all.deb) ... Selecting previously deselected package build-essential. Unpacking build-essential (from .../build-essential_11.4_amd64.deb) ... Processing triggers for man-db ... Setting up patch (2.6-2) ... Setting up binutils (2.20-4) ... Setting up libc-dev-bin (2.10.2-2) ... Setting up linux-libc-dev (2.6.32-3) ... Setting up libc6-dev (2.10.2-2) ... Setting up libgmp3c2 (2:4.3.1+dfsg-3) ... Setting up libmpfr1ldbl (2.4.2-3) ... Setting up cpp-4.4 (4.4.2-8) ... Setting up cpp (4:4.4.2-2) ... Setting up libgomp1 (4.4.2-8) ... Setting up gcc-4.4 (4.4.2-8) ... Setting up gcc (4:4.4.2-2) ... Setting up make (3.81-7) ... Setting up bzip2 (1.0.5-3) ... Setting up liblzma1 (4.999.9beta+20091116-1) ... Setting up xz-utils (4.999.9beta+20091116-1) ... Setting up perl-modules (5.10.1-8) ... Setting up libstdc++6-4.4-dev (4.4.2-8) ... Setting up perl (5.10.1-8) ... update-alternatives: using /usr/bin/prename to provide /usr/bin/rename (rename) in auto mode. Setting up g++-4.4 (4.4.2-8) ... Setting up g++ (4:4.4.2-2) ... update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode. Setting up libtimedate-perl (1.1900-1) ... Setting up dpkg-dev (1.15.5.5) ... Setting up build-essential (11.4) ... I: Copying back the cached apt archive contents I: user script /var/cache/pbuilder/build//NUM/tmp/hooks/E50-initscripts-2.86.ds1-7.workaround.sh starting umount: /sys: not mounted umount: /run: not found umount: /proc/bus/usb: not mounted umount: /dev/shm: not mounted umount: /lib/init/rw: not mounted cat: /var/run/inetd.pid: No such file or directory kill: 20: Usage: kill [-s sigspec | -signum | -sigspec] [pid | job]... or kill -l [exitstatus] I: user script /var/cache/pbuilder/build//NUM/tmp/hooks/E50-initscripts-2.86.ds1-7.workaround.sh finished I: unmounting dev/pts filesystem I: unmounting proc filesystem I: creating base tarball [/TESTDIR/testimage] I: cleaning the build env I: removing directory /var/cache/pbuilder/build//NUM and its subdirectories pbuilder-0.215ubuntu7/testsuite/normal/pbuilder-execute-lenny.log0000664000000000000000000000071212312041170022155 0ustar I: Building the build Environment I: extracting base tarball [/TESTDIR/testimage] I: creating local configuration I: copying local configuration I: mounting /proc filesystem I: mounting /dev/pts filesystem I: policy-rc.d already exists --- parameters given to this script [test1 test2 test3] I: unmounting dev/pts filesystem I: unmounting proc filesystem I: cleaning the build env I: removing directory /var/cache/pbuilder/build//NUM and its subdirectories pbuilder-0.215ubuntu7/testsuite/normal/pbuilder-update-squeeze-sid-experimental.log0000664000000000000000000001513712312041170025610 0ustar I: Upgrading for distribution sid I: Building the build Environment I: extracting base tarball [/TESTDIR/testimage] I: creating local configuration I: copying local configuration I: Installing apt-lines I: Installing apt-lines and pinning for experimental I: mounting /proc filesystem I: mounting /dev/pts filesystem I: policy-rc.d already exists I: Refreshing the base.tgz I: upgrading packages Hit http://ftp.de.debian.org sid Release.gpg Get:1 http://ftp.de.debian.org experimental Release.gpg [835B] Hit http://ftp.de.debian.org sid Release Get:2 http://ftp.de.debian.org experimental Release [100kB] Get:3 http://ftp.de.debian.org sid/main Packages/DiffIndex [2038B] Get:4 http://ftp.de.debian.org experimental/main Packages [253kB] Fetched XXXB in Xs (XXXXXB/s) Reading package lists... I: Obtaining the cached apt archive contents Reading package lists... Building dependency tree... Reading state information... The following packages will be REMOVED: build-essential dhcp3-client dhcp3-common g++ g++-4.4 libc6-dev libstdc++6-4.4-dev The following NEW packages will be installed: isc-dhcp-client isc-dhcp-common The following packages have been kept back: libc-dev-bin The following packages will be upgraded: bsdutils diffutils ifupdown libblkid1 libc-bin libc6 libsigc++-2.0-0c2a libuuid1 mount util-linux Preconfiguring packages ... 10 upgraded, 2 newly installed, 7 to remove and 1 not upgraded. Need to get 0B/7024kB of archives. After this operation, 33.6MB disk space will be freed. (Reading database ... 12279 files and directories currently installed.) Removing build-essential ... Removing dhcp3-client ... Removing dhcp3-common ... Removing g++ ... Removing libstdc++6-4.4-dev ... Removing libc6-dev ... Removing g++-4.4 ... Processing triggers for man-db ... (Reading database ... 11039 files and directories currently installed.) Preparing to replace diffutils 1:2.8.1-18 (using .../diffutils_1%3a2.8.7-0.1_amd64.deb) ... Unpacking replacement diffutils ... Processing triggers for man-db ... Setting up diffutils (1:2.8.7-0.1) ... (Reading database ... 11047 files and directories currently installed.) Preparing to replace libc-bin 2.10.2-2 (using .../libc-bin_2.11~0exp1-0exp1_amd64.deb) ... Unpacking replacement libc-bin ... Processing triggers for man-db ... Setting up libc-bin (2.11~0exp1-0exp1) ... (Reading database ... 11047 files and directories currently installed.) Preparing to replace libc6 2.10.2-2 (using .../libc6_2.11~0exp1-0exp1_amd64.deb) ... Checking for services that may need to be restarted... Checking init scripts... Unpacking replacement libc6 ... Setting up libc6 (2.11~0exp1-0exp1) ... Checking for services that may need to be restarted... Checking init scripts... WARNING: init script for cron not found. Nothing to restart. (Reading database ... 11047 files and directories currently installed.) Preparing to replace libuuid1 2.16.2-0 (using .../libuuid1_2.17~rc3-1_amd64.deb) ... Unpacking replacement libuuid1 ... Setting up libuuid1 (2.17~rc3-1) ... (Reading database ... 11047 files and directories currently installed.) Preparing to replace libblkid1 2.16.2-0 (using .../libblkid1_2.17~rc3-1_amd64.deb) ... Unpacking replacement libblkid1 ... Setting up libblkid1 (2.17~rc3-1) ... (Reading database ... 11047 files and directories currently installed.) Preparing to replace mount 2.16.2-0 (using .../mount_2.17~rc3-1_amd64.deb) ... Unpacking replacement mount ... Processing triggers for man-db ... Setting up mount (2.17~rc3-1) ... (Reading database ... 11047 files and directories currently installed.) Preparing to replace util-linux 2.16.2-0 (using .../util-linux_2.17~rc3-1_amd64.deb) ... Unpacking replacement util-linux ... Processing triggers for man-db ... Processing triggers for install-info ... Setting up util-linux (2.17~rc3-1) ... Ignoring install-info called from maintainer script The package util-linux should be rebuilt with new debhelper to get trigger support (Reading database ... 11052 files and directories currently installed.) Preparing to replace bsdutils 1:2.16.2-0 (using .../bsdutils_1%3a2.17~rc3-1_amd64.deb) ... Unpacking replacement bsdutils ... Processing triggers for man-db ... Setting up bsdutils (1:2.17~rc3-1) ... (Reading database ... 11052 files and directories currently installed.) Preparing to replace ifupdown 0.6.9 (using .../ifupdown_0.7~alpha3_amd64.deb) ... Unpacking replacement ifupdown ... Selecting previously deselected package isc-dhcp-common. Unpacking isc-dhcp-common (from .../isc-dhcp-common_4.1.0-1_amd64.deb) ... Selecting previously deselected package isc-dhcp-client. Unpacking isc-dhcp-client (from .../isc-dhcp-client_4.1.0-1_amd64.deb) ... Preparing to replace libsigc++-2.0-0c2a 2.0.18-2 (using .../libsigc++-2.0-0c2a_2.2.2-1_amd64.deb) ... Unpacking replacement libsigc++-2.0-0c2a ... Processing triggers for man-db ... Setting up ifupdown (0.7~alpha3) ... Installing new version of config file /etc/init.d/ifupdown-clean ... ifupdown.postinst: Warning: No 'iface lo' definition found in /etc/network/interfaces ifupdown.postinst: Warning: No 'auto lo' statement found in /etc/network/interfaces Setting up isc-dhcp-common (4.1.0-1) ... Setting up isc-dhcp-client (4.1.0-1) ... Setting up libsigc++-2.0-0c2a (2.2.2-1) ... Reading package lists... Building dependency tree... Reading state information... The following packages will be REMOVED: isc-dhcp-client isc-dhcp-common libc-dev-bin linux-libc-dev 0 upgraded, 0 newly installed, 4 to remove and 0 not upgraded. After this operation, 5837kB disk space will be freed. (Reading database ... 11090 files and directories currently installed.) Removing isc-dhcp-client ... Removing isc-dhcp-common ... Removing libc-dev-bin ... Removing linux-libc-dev ... Processing triggers for man-db ... Reading package lists... Building dependency tree... Reading state information... dpkg-dev is already the newest version. apt is already the newest version. aptitude is already the newest version. Some packages could not be installed. This may mean that you have requested an impossible situation or if you are using the unstable distribution that some required packages have not yet been created or been moved out of Incoming. The following information may help to resolve the situation: The following packages have unmet dependencies: build-essential: Depends: libc6-dev but it is not going to be installed or libc-dev Depends: g++ (>= 4:4.3.1) but it is not going to be installed E: Broken packages I: Copying back the cached apt archive contents I: unmounting dev/pts filesystem I: unmounting proc filesystem I: cleaning the build env I: removing directory /var/cache/pbuilder/build//NUM and its subdirectories pbuilder-0.215ubuntu7/testsuite/normal/pdebuild-internal-lenny.log0000664000000000000000000007427112312041170022324 0ustar W: /home/dancer/.pbuilderrc does not exist I: Building the build Environment I: extracting base tarball [/TESTDIR/testimage] I: creating local configuration I: copying local configuration I: mounting /proc filesystem I: mounting /dev/pts filesystem I: Mounting /TESTDIR/dir2 I: policy-rc.d already exists Reading package lists... Building dependency tree... Reading state information... passwd is already the newest version. The following extra packages will be installed: cdebootstrap libdebian-installer-extra4 libdebian-installer4 libssl0.9.8 wget Suggested packages: pbuilder-uml Recommended packages: fakeroot sudo devscripts cowdancer The following NEW packages will be installed: cdebootstrap libdebian-installer-extra4 libdebian-installer4 libssl0.9.8 pbuilder wget 0 upgraded, 6 newly installed, 0 to remove and 0 not upgraded. Need to get 1897kB of archives. After this operation, 5775kB of additional disk space will be used. Get:1 http://localhost lenny/main libssl0.9.8 0.9.8g-15+lenny3 [975kB] Get:2 http://localhost lenny/main wget 1.11.4-2 [616kB] Get:3 http://localhost lenny/main libdebian-installer4 0.61 [30.1kB] Get:4 http://localhost lenny/main libdebian-installer-extra4 0.61 [11.6kB] Get:5 http://localhost lenny/main cdebootstrap 0.5.4 [32.3kB] Get:6 http://localhost lenny/main pbuilder 0.181 [231kB] debconf: delaying package configuration, since apt-utils is not installed Fetched XXXB in Xs (XXXXXB/s) Selecting previously deselected package libssl0.9.8. (Reading database ... 9662 files and directories currently installed.) Unpacking libssl0.9.8 (from .../libssl0.9.8_0.9.8g-15+lenny3_amd64.deb) ... Selecting previously deselected package wget. Unpacking wget (from .../wget_1.11.4-2_amd64.deb) ... Selecting previously deselected package libdebian-installer4. Unpacking libdebian-installer4 (from .../libdebian-installer4_0.61_amd64.deb) ... Selecting previously deselected package libdebian-installer-extra4. Unpacking libdebian-installer-extra4 (from .../libdebian-installer-extra4_0.61_amd64.deb) ... Selecting previously deselected package cdebootstrap. Unpacking cdebootstrap (from .../cdebootstrap_0.5.4_amd64.deb) ... Selecting previously deselected package pbuilder. Unpacking pbuilder (from .../pbuilder_0.181_all.deb) ... Setting up libssl0.9.8 (0.9.8g-15+lenny3) ... Setting up wget (1.11.4-2) ... Setting up libdebian-installer4 (0.61) ... Setting up libdebian-installer-extra4 (0.61) ... Setting up cdebootstrap (0.5.4) ... Setting up pbuilder (0.181) ... I: Setting DEBBUILDOPTS= W: no hooks of type D found -- ignoring -> Attempting to satisfy build-dependencies -> Creating pbuilder-satisfydepends-dummy package Package: pbuilder-satisfydepends-dummy Version: 0.invalid.0 Architecture: amd64 Maintainer: Debian Pbuilder Team Description: Dummy package to satisfy dependencies with aptitude - created by pbuilder This package was created automatically by pbuilder and should Depends: debhelper (>> 3.0.0), libdshconfig1-dev (>= 0.20.11-1), po4a dpkg-deb: building package `pbuilder-satisfydepends-dummy' in `/tmp/satisfydepends-aptitude/pbuilder-satisfydepends-dummy.deb'. Reading package lists... Building dependency tree... Reading state information... aptitude is already the newest version. 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. Selecting previously deselected package pbuilder-satisfydepends-dummy. (Reading database ... 9853 files and directories currently installed.) Unpacking pbuilder-satisfydepends-dummy (from .../pbuilder-satisfydepends-dummy.deb) ... dpkg: dependency problems prevent configuration of pbuilder-satisfydepends-dummy: pbuilder-satisfydepends-dummy depends on debhelper (>> 3.0.0); however: Package debhelper is not installed. pbuilder-satisfydepends-dummy depends on libdshconfig1-dev (>= 0.20.11-1); however: Package libdshconfig1-dev is not installed. pbuilder-satisfydepends-dummy depends on po4a; however: Package po4a is not installed. dpkg: error processing pbuilder-satisfydepends-dummy (--install): dependency problems - leaving unconfigured Errors were encountered while processing: pbuilder-satisfydepends-dummy Reading package lists... Building dependency tree... Reading state information... Initializing package states... Writing extended state information... The following NEW packages will be installed: bsdmainutils{a} debhelper{a} file{a} gettext{a} gettext-base{a} groff-base{a} html2text{a} intltool-debian{a} libdshconfig1{a} libdshconfig1-dev{a} libmagic1{a} libsgmls-perl{a} libsp1c2{a} man-db{a} po-debconf{a} po4a{a} sp{a} The following partially installed packages will be configured: pbuilder-satisfydepends-dummy 0 packages upgraded, 17 newly installed, 0 to remove and 0 not upgraded. Need to get 8922kB of archives. After unpacking 28.1MB will be used. Writing extended state information... Get:1 http://localhost lenny/main libmagic1 4.26-1 [369kB] Get:2 http://localhost lenny/main file 4.26-1 [44.5kB] Get:3 http://localhost lenny/main html2text 1.3.2a-5 [95.9kB] Get:4 http://localhost lenny/main gettext-base 0.17-4 [136kB] Get:5 http://localhost lenny/main gettext 0.17-4 [2791kB] Get:6 http://localhost lenny/main intltool-debian 0.35.0+20060710.1 [30.8kB] Get:7 http://localhost lenny/main po-debconf 1.0.15 [237kB] Get:8 http://localhost lenny/main groff-base 1.18.1.1-21 [898kB] Get:9 http://localhost lenny/main bsdmainutils 6.1.10 [179kB] Get:10 http://localhost lenny/main man-db 2.5.2-4 [1107kB] Get:11 http://localhost lenny/main debhelper 7.0.15 [554kB] Get:12 http://localhost lenny/main libdshconfig1 0.20.13-1 [11.0kB] Get:13 http://localhost lenny/main libdshconfig1-dev 0.20.13-1 [25.4kB] Get:14 http://localhost lenny/main libsgmls-perl 1.03ii-32 [27.8kB] Get:15 http://localhost lenny/main libsp1c2 1.3.4-1.2.1-47 [1386kB] Get:16 http://localhost lenny/main sp 1.3.4-1.2.1-47 [182kB] Get:17 http://localhost lenny/main po4a 0.34-2 [847kB] debconf: delaying package configuration, since apt-utils is not installed Fetched XXXB in Xs (XXXXXB/s) Selecting previously deselected package libmagic1. (Reading database ... 9853 files and directories currently installed.) Unpacking libmagic1 (from .../libmagic1_4.26-1_amd64.deb) ... Selecting previously deselected package file. Unpacking file (from .../archives/file_4.26-1_amd64.deb) ... Selecting previously deselected package html2text. Unpacking html2text (from .../html2text_1.3.2a-5_amd64.deb) ... Selecting previously deselected package gettext-base. Unpacking gettext-base (from .../gettext-base_0.17-4_amd64.deb) ... Selecting previously deselected package gettext. Unpacking gettext (from .../gettext_0.17-4_amd64.deb) ... Selecting previously deselected package intltool-debian. Unpacking intltool-debian (from .../intltool-debian_0.35.0+20060710.1_all.deb) ... Selecting previously deselected package po-debconf. Unpacking po-debconf (from .../po-debconf_1.0.15_all.deb) ... Selecting previously deselected package groff-base. Unpacking groff-base (from .../groff-base_1.18.1.1-21_amd64.deb) ... Selecting previously deselected package bsdmainutils. Unpacking bsdmainutils (from .../bsdmainutils_6.1.10_amd64.deb) ... Selecting previously deselected package man-db. Unpacking man-db (from .../man-db_2.5.2-4_amd64.deb) ... Selecting previously deselected package debhelper. Unpacking debhelper (from .../debhelper_7.0.15_all.deb) ... Selecting previously deselected package libdshconfig1. Unpacking libdshconfig1 (from .../libdshconfig1_0.20.13-1_amd64.deb) ... Selecting previously deselected package libdshconfig1-dev. Unpacking libdshconfig1-dev (from .../libdshconfig1-dev_0.20.13-1_amd64.deb) ... Selecting previously deselected package libsgmls-perl. Unpacking libsgmls-perl (from .../libsgmls-perl_1.03ii-32_all.deb) ... Selecting previously deselected package libsp1c2. Unpacking libsp1c2 (from .../libsp1c2_1.3.4-1.2.1-47_amd64.deb) ... Selecting previously deselected package sp. Unpacking sp (from .../sp_1.3.4-1.2.1-47_amd64.deb) ... Selecting previously deselected package po4a. Unpacking po4a (from .../archives/po4a_0.34-2_all.deb) ... Setting up libmagic1 (4.26-1) ... Setting up file (4.26-1) ... Setting up html2text (1.3.2a-5) ... Setting up gettext-base (0.17-4) ... Setting up gettext (0.17-4) ... Setting up intltool-debian (0.35.0+20060710.1) ... Setting up po-debconf (1.0.15) ... Setting up groff-base (1.18.1.1-21) ... Setting up bsdmainutils (6.1.10) ... Setting up man-db (2.5.2-4) ... Building database of manual pages ... Setting up debhelper (7.0.15) ... Setting up libdshconfig1 (0.20.13-1) ... Setting up libdshconfig1-dev (0.20.13-1) ... Setting up libsgmls-perl (1.03ii-32) ... Setting up libsp1c2 (1.3.4-1.2.1-47) ... Setting up sp (1.3.4-1.2.1-47) ... Setting up po4a (0.34-2) ... Setting up pbuilder-satisfydepends-dummy (0.invalid.0) ... Reading package lists... Building dependency tree... Reading state information... Reading extended state information... Initializing package states... Writing extended state information... -> Finished parsing the build-deps Reading package lists... Building dependency tree... Reading state information... The following NEW packages will be installed: fakeroot 0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded. Need to get 116kB of archives. After this operation, 467kB of additional disk space will be used. Get:1 http://localhost lenny/main fakeroot 1.11 [116kB] debconf: delaying package configuration, since apt-utils is not installed Fetched XXXB in Xs (XXXXXB/s) Selecting previously deselected package fakeroot. (Reading database ... 11340 files and directories currently installed.) Unpacking fakeroot (from .../fakeroot_1.11_amd64.deb) ... Processing triggers for man-db ... Setting up fakeroot (1.11) ... W: no hooks of type A found -- ignoring dpkg-buildpackage: set CFLAGS to default value: -g -O2 dpkg-buildpackage: set CPPFLAGS to default value: dpkg-buildpackage: set LDFLAGS to default value: dpkg-buildpackage: set FFLAGS to default value: -g -O2 dpkg-buildpackage: set CXXFLAGS to default value: -g -O2 dpkg-buildpackage: source package dsh dpkg-buildpackage: source version 0.25.10-1 dpkg-buildpackage: source changed by Junichi Uekawa dpkg-buildpackage: host architecture amd64 fakeroot debian/rules clean dh_testdir dh_testroot rm -f build-stamp configure-stamp /usr/bin/make clean make[1]: Entering directory `/TESTDIR/dir2/dsh-0.25.10' make[1]: *** No rule to make target `clean'. Stop. make[1]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10' make: [clean] Error 2 (ignored) /usr/bin/make distclean make[1]: Entering directory `/TESTDIR/dir2/dsh-0.25.10' make[1]: *** No rule to make target `distclean'. Stop. make[1]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10' make: [clean] Error 2 (ignored) dh_clean dpkg-source -b dsh-0.25.10 dpkg-source: info: using source format `1.0' dpkg-source: info: building dsh using existing dsh_0.25.10.orig.tar.gz dpkg-source: info: building dsh in dsh_0.25.10-1.diff.gz dpkg-source: warning: file dsh-0.25.10/dcp.sh has no final newline (either original or modified version) dpkg-source: warning: file dsh-0.25.10/debian/compat has no final newline (either original or modified version) dpkg-source: info: building dsh in dsh_0.25.10-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 ISO C89... none needed checking dependency style of gcc... gcc3 checking for strerror in -lcposix... no checking for gcc... (cached) gcc checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) 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 ISO C89... (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 grep that handles long lines and -e... /bin/grep checking for egrep... /bin/grep -E checking for ANSI C header files... yes checking for sys/wait.h that is POSIX.1 compatible... yes checking build system type... x86_64-unknown-linux-gnu checking host system type... x86_64-unknown-linux-gnu checking for a sed that does not truncate output... /bin/sed checking for ld used by gcc... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for /usr/bin/ld option to reload object files... -r checking for BSD-compatible nm... /usr/bin/nm -B checking whether ln -s works... yes checking how to recognize dependent libraries... pass_all checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking dlfcn.h usability... yes checking dlfcn.h presence... yes checking for dlfcn.h... yes checking for g++... g++ checking whether we are using the GNU C++ compiler... yes checking whether g++ accepts -g... yes checking dependency style of g++... gcc3 checking how to run the C++ preprocessor... g++ -E checking for g77... no checking for xlf... no checking for f77... no checking for frt... no checking for pgf77... no checking for cf77... no checking for fort77... no checking for fl32... no checking for af77... no checking for xlf90... no checking for f90... no checking for pgf90... no checking for pghpf... no checking for epcf90... no checking for gfortran... no checking for g95... no checking for xlf95... no checking for f95... no checking for fort... no checking for ifort... no checking for ifc... no checking for efc... no checking for pgf95... no checking for lf95... no checking for ftn... no checking whether we are using the GNU Fortran 77 compiler... no checking whether accepts -g... no checking the maximum length of command line arguments... 98304 checking command to parse /usr/bin/nm -B output from gcc object... ok checking for objdir... .libs checking for ar... ar checking for ranlib... ranlib checking for strip... strip checking if gcc supports -fno-rtti -fno-exceptions... no checking for gcc option to produce PIC... -fPIC checking if gcc PIC flag -fPIC works... yes checking if gcc static flag -static works... yes checking if gcc supports -c -o file.o... yes checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) 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 -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking for g++ option to produce PIC... -fPIC checking if g++ PIC flag -fPIC works... yes checking if g++ static flag -static works... yes checking if g++ supports -c -o file.o... yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate appending configuration tag "F77" to libtool checking 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 -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) 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: WARNING: po/Makefile.in.in seems to ignore the --datarootdir setting 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 `/TESTDIR/dir2/dsh-0.25.10' /usr/bin/make all-recursive make[2]: Entering directory `/TESTDIR/dir2/dsh-0.25.10' Making all in m4 make[3]: Entering directory `/TESTDIR/dir2/dsh-0.25.10/m4' make[3]: Nothing to be done for `all'. make[3]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10/m4' Making all in po make[3]: Entering directory `/TESTDIR/dir2/dsh-0.25.10/po' make[3]: Nothing to be done for `all'. make[3]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10/po' make[3]: Entering directory `/TESTDIR/dir2/dsh-0.25.10' 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 --tag=CC --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 `/TESTDIR/dir2/dsh-0.25.10' make[2]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10' make[1]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10' /usr/bin/make check make[1]: Entering directory `/TESTDIR/dir2/dsh-0.25.10' Making check in m4 make[2]: Entering directory `/TESTDIR/dir2/dsh-0.25.10/m4' make[2]: Nothing to be done for `check'. make[2]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10/m4' Making check in po make[2]: Entering directory `/TESTDIR/dir2/dsh-0.25.10/po' make[2]: Nothing to be done for `check'. make[2]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10/po' make[2]: Entering directory `/TESTDIR/dir2/dsh-0.25.10' /usr/bin/make dsh make[3]: Entering directory `/TESTDIR/dir2/dsh-0.25.10' make[3]: `dsh' is up to date. make[3]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10' /usr/bin/make check-TESTS make[3]: Entering directory `/TESTDIR/dir2/dsh-0.25.10' PASS: tests/param-f.sh dsh: File ./tests/nonexistent.file could not be opened for read PASS: tests/param-f-fail.sh PASS: tests/param-f-with-space.sh PASS: tests/param-m.sh test to check that unknown parameter checking is right. ./dsh: unrecognized option `--unknown-parameter' ./dsh: invalid option -- u PASS: tests/param-unknown.sh test1 test2 dsh: Process terminated (before write). PASS: tests/param-i.sh Check that cn4 option is working. PASS: tests/param-cn4.sh test to check that -b0 is rejected, and -b1 is accepted Buffer size needs to be greater than 1 Buffer size needs to be greater than 1 a b PASS: tests/param-b-0.sh dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call success dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call success success success success success a: dsh: Failed executing ./invalid-exec-file with llexec call b: dsh: Failed executing ./invalid-exec-file with llexec call c: dsh: Failed executing ./invalid-exec-file with llexec call d: dsh: Failed executing ./invalid-exec-file with llexec call success dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call success PASS: tests/param-r-invalid.sh 1: 1 2: 2 dsh: fork limit and wait shell cannot be specified at the same time PASS: tests/param-F-invalid.sh Sun Nov 29 10:00:27 UTC 2009 2: Using sleep as the remote shell 2: Show machine names on output 2: Adding machine 5,4,3,2,1 to list 2: Setting forklimit to 3 and wait_shell to 0 2: DUMPing parameters passed to llexec 2: [2] Using sleep as the remote shell Show machine names on output Adding machine 5,4,3,2,1 to list Setting forklimit to 3 and wait_shell to 0 DUMPing parameters passed to llexec [2] 3: Using sleep as the remote shell 3: Show machine names on output 3: Adding machine 5,4,3,2,1 to list 3: Setting forklimit to 3 and wait_shell to 0 3: DUMPing parameters passed to llexec 3: [3] Using sleep as the remote shell Show machine names on output Adding machine 5,4,3,2,1 to list Setting forklimit to 3 and wait_shell to 0 DUMPing parameters passed to llexec [3] 1: Using sleep as the remote shell 1: Show machine names on output 1: Adding machine 5,4,3,2,1 to list 1: Setting forklimit to 3 and wait_shell to 0 1: ... Waiting for process to end with waitpid 1: DUMPing parameters passed to llexec 1: [1] Using sleep as the remote shell Show machine names on output Adding machine 5,4,3,2,1 to list Setting forklimit to 3 and wait_shell to 0 ... Waiting for process to end with waitpid DUMPing parameters passed to llexec [1] 4: Using sleep as the remote shell 4: Show machine names on output 4: Adding machine 5,4,3,2,1 to list 4: Setting forklimit to 3 and wait_shell to 0 4: DUMPing parameters passed to llexec 4: [4] Using sleep as the remote shell Show machine names on output Adding machine 5,4,3,2,1 to list Setting forklimit to 3 and wait_shell to 0 DUMPing parameters passed to llexec [4] 5: Using sleep as the remote shell 5: Show machine names on output 5: Adding machine 5,4,3,2,1 to list 5: Setting forklimit to 3 and wait_shell to 0 5: DUMPing parameters passed to llexec 5: [5] Using sleep as the remote shell Show machine names on output Adding machine 5,4,3,2,1 to list Setting forklimit to 3 and wait_shell to 0 DUMPing parameters passed to llexec [5] --- Terminated running Using sleep as the remote shell Show machine names on output Adding machine 5,4,3,2,1 to list Setting forklimit to 3 and wait_shell to 0 ... Waiting for process to end with waitpid ... Waiting for process to end with waitpid Sun Nov 29 10:00:32 UTC 2009 PASS: tests/param-F-forklimit.sh PASS: tests/param-gnu-getopt.sh PASS: tests/news-okay.sh c: c dsh: Process terminated (before write). b: b 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 `/TESTDIR/dir2/dsh-0.25.10' make[2]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10' make[1]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10' 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=/TESTDIR/dir2/dsh-0.25.10/debian/dsh make[1]: Entering directory `/TESTDIR/dir2/dsh-0.25.10' Making install in m4 make[2]: Entering directory `/TESTDIR/dir2/dsh-0.25.10/m4' make[3]: Entering directory `/TESTDIR/dir2/dsh-0.25.10/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 `/TESTDIR/dir2/dsh-0.25.10/m4' make[2]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10/m4' Making install in po make[2]: Entering directory `/TESTDIR/dir2/dsh-0.25.10/po' /bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/share mkdir -p -- /TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/share mkdir -p -- /TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/share/locale/ja/LC_MESSAGES installing ja.gmo as /TESTDIR/dir2/dsh-0.25.10/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` /TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/share/gettext/po; \ for file in Makefile.in.in Makevars remove-potcdate.sin ; do \ /usr/bin/install -c -m 644 ./$file \ /TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/share/gettext/po/$file; \ done; \ else \ : ; \ fi make[2]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10/po' make[2]: Entering directory `/TESTDIR/dir2/dsh-0.25.10' make[3]: Entering directory `/TESTDIR/dir2/dsh-0.25.10' test -z "/usr/bin" || mkdir -p -- "/TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/bin" /bin/sh ./libtool --mode=install install -p -o root -g root -m 755 -s 'dsh' '/TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/bin/dsh' install -p -o root -g root -m 755 -s dsh /TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/bin/dsh test -z "/etc/dsh" || mkdir -p -- "/TESTDIR/dir2/dsh-0.25.10/debian/dsh/etc/dsh" /usr/bin/install -c -m 644 'dsh.conf' '/TESTDIR/dir2/dsh-0.25.10/debian/dsh/etc/dsh/dsh.conf' for LANGS in ja ; do \ mkdir -p /TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/share/man/$LANGS/man1 ;\ mkdir -p /TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/share/man/$LANGS/man5 ;\ sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.$LANGS.1 \ > /TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/share/man/$LANGS/man1/dsh.1 ; \ sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.conf.$LANGS.5 \ > /TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/share/man/$LANGS/man5/dsh.conf.5 ; \ done test -z "/usr/share/man/man1" || mkdir -p -- "/TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/share/man/man1" /usr/bin/install -c -m 644 './build-man/dsh.1' '/TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/share/man/man1/dsh.1' test -z "/usr/share/man/man5" || mkdir -p -- "/TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/share/man/man5" /usr/bin/install -c -m 644 './build-man/dsh.conf.5' '/TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/share/man/man5/dsh.conf.5' make[3]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10' make[2]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10' make[1]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10' cp /TESTDIR/dir2/dsh-0.25.10/debian/machines.list /TESTDIR/dir2/dsh-0.25.10/debian/dsh/etc/dsh/machines.list cp /TESTDIR/dir2/dsh-0.25.10/dsh.conf /TESTDIR/dir2/dsh-0.25.10/debian/dsh/etc/dsh/dsh.conf ln -s ../machines.list /TESTDIR/dir2/dsh-0.25.10/debian/dsh/etc/dsh/group/all install -d /TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/lib/update-cluster install -m 755 /TESTDIR/dir2/dsh-0.25.10/debian/dsh.updatelist /TESTDIR/dir2/dsh-0.25.10/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.10-1_amd64.deb'. dpkg-genchanges >../dsh_0.25.10-1_amd64.changes dpkg-genchanges: including full source code in upload dpkg-buildpackage: full upload (original source is included) W: no hooks of type B found -- ignoring I: unmounting /TESTDIR/dir2 filesystem I: unmounting dev/pts filesystem I: unmounting proc filesystem I: cleaning the build env I: removing directory /TESTDIR/dir3/NUM and its subdirectories pbuilder-0.215ubuntu7/testsuite/normal/pbuilder-create-squeeze.log0000664000000000000000000010724112312041170022317 0ustar I: Distribution is squeeze. I: Building the build environment I: running debootstrap /usr/sbin/debootstrap I: Retrieving Release I: Retrieving Packages I: Validating Packages I: Resolving dependencies of required packages... I: Resolving dependencies of base packages... I: Found additional required dependencies: dash insserv libdb4.7 I: Found additional base dependencies: libdb4.8 libudev0 I: Checking component main on http://ftp.de.debian.org/debian... I: Retrieving libacl1 I: Validating libacl1 I: Retrieving adduser I: Validating adduser I: Retrieving apt-utils I: Validating apt-utils I: Retrieving apt I: Validating apt I: Retrieving aptitude I: Validating aptitude I: Retrieving libattr1 I: Validating libattr1 I: Retrieving base-files I: Validating base-files I: Retrieving base-passwd I: Validating base-passwd I: Retrieving bash I: Validating bash I: Retrieving bsdmainutils I: Validating bsdmainutils I: Retrieving libbz2-1.0 I: Validating libbz2-1.0 I: Retrieving coreutils I: Validating coreutils I: Retrieving cpio I: Validating cpio I: Retrieving cron I: Validating cron I: Retrieving libcwidget3 I: Validating libcwidget3 I: Retrieving dash I: Validating dash I: Retrieving libdb4.8 I: Validating libdb4.8 I: Retrieving libdb4.7 I: Validating libdb4.7 I: Retrieving debconf-i18n I: Validating debconf-i18n I: Retrieving debconf I: Validating debconf I: Retrieving debian-archive-keyring I: Validating debian-archive-keyring I: Retrieving debianutils I: Validating debianutils I: Retrieving dhcp3-client I: Validating dhcp3-client I: Retrieving dhcp3-common I: Validating dhcp3-common I: Retrieving diffutils I: Validating diffutils I: Retrieving dmidecode I: Validating dmidecode I: Retrieving dpkg I: Validating dpkg I: Retrieving e2fslibs I: Validating e2fslibs I: Retrieving e2fsprogs I: Validating e2fsprogs I: Retrieving libcomerr2 I: Validating libcomerr2 I: Retrieving libss2 I: Validating libss2 I: Retrieving ed I: Validating ed I: Retrieving libc-bin I: Validating libc-bin I: Retrieving libc6 I: Validating libc6 I: Retrieving findutils I: Validating findutils I: Retrieving gcc-4.3-base I: Validating gcc-4.3-base I: Retrieving gcc-4.4-base I: Validating gcc-4.4-base I: Retrieving libgcc1 I: Validating libgcc1 I: Retrieving libstdc++6 I: Validating libstdc++6 I: Retrieving libgdbm3 I: Validating libgdbm3 I: Retrieving gnupg I: Validating gnupg I: Retrieving gpgv I: Validating gpgv I: Retrieving grep I: Validating grep I: Retrieving groff-base I: Validating groff-base I: Retrieving gzip I: Validating gzip I: Retrieving hostname I: Validating hostname I: Retrieving ifupdown I: Validating ifupdown I: Retrieving insserv I: Validating insserv I: Retrieving iproute I: Validating iproute I: Retrieving iptables I: Validating iptables I: Retrieving iputils-ping I: Validating iputils-ping I: Retrieving logrotate I: Validating logrotate I: Retrieving lsb-base I: Validating lsb-base I: Retrieving libdevmapper1.02.1 I: Validating libdevmapper1.02.1 I: Retrieving lzma I: Validating lzma I: Retrieving libept0 I: Validating libept0 I: Retrieving liblocale-gettext-perl I: Validating liblocale-gettext-perl I: Retrieving libselinux1 I: Validating libselinux1 I: Retrieving libsepol1 I: Validating libsepol1 I: Retrieving libsigc++-2.0-0c2a I: Validating libsigc++-2.0-0c2a I: Retrieving libtasn1-3 I: Validating libtasn1-3 I: Retrieving libtext-charwidth-perl I: Validating libtext-charwidth-perl I: Retrieving libtext-iconv-perl I: Validating libtext-iconv-perl I: Retrieving libtext-wrapi18n-perl I: Validating libtext-wrapi18n-perl I: Retrieving libunwind7 I: Validating libunwind7 I: Retrieving libusb-0.1-4 I: Validating libusb-0.1-4 I: Retrieving man-db I: Validating man-db I: Retrieving manpages I: Validating manpages I: Retrieving mawk I: Validating mawk I: Retrieving module-init-tools I: Validating module-init-tools I: Retrieving nano I: Validating nano I: Retrieving libncurses5 I: Validating libncurses5 I: Retrieving libncursesw5 I: Validating libncursesw5 I: Retrieving ncurses-base I: Validating ncurses-base I: Retrieving ncurses-bin I: Validating ncurses-bin I: Retrieving net-tools I: Validating net-tools I: Retrieving netbase I: Validating netbase I: Retrieving netcat-traditional I: Validating netcat-traditional I: Retrieving libnewt0.52 I: Validating libnewt0.52 I: Retrieving whiptail I: Validating whiptail I: Retrieving libssl0.9.8 I: Validating libssl0.9.8 I: Retrieving libpam-modules I: Validating libpam-modules I: Retrieving libpam-runtime I: Validating libpam-runtime I: Retrieving libpam0g I: Validating libpam0g I: Retrieving perl-base I: Validating perl-base I: Retrieving libpopt0 I: Validating libpopt0 I: Retrieving procps I: Validating procps I: Retrieving libreadline5 I: Validating libreadline5 I: Retrieving libreadline6 I: Validating libreadline6 I: Retrieving readline-common I: Validating readline-common I: Retrieving rsyslog I: Validating rsyslog I: Retrieving sed I: Validating sed I: Retrieving sensible-utils I: Validating sensible-utils I: Retrieving login I: Validating login I: Retrieving passwd I: Validating passwd I: Retrieving libslang2 I: Validating libslang2 I: Retrieving initscripts I: Validating initscripts I: Retrieving sysv-rc I: Validating sysv-rc I: Retrieving sysvinit-utils I: Validating sysvinit-utils I: Retrieving sysvinit I: Validating sysvinit I: Retrieving tar I: Validating tar I: Retrieving tasksel-data I: Validating tasksel-data I: Retrieving tasksel I: Validating tasksel I: Retrieving libwrap0 I: Validating libwrap0 I: Retrieving info I: Validating info I: Retrieving install-info I: Validating install-info I: Retrieving traceroute I: Validating traceroute I: Retrieving tzdata I: Validating tzdata I: Retrieving libudev0 I: Validating libudev0 I: Retrieving udev I: Validating udev I: Retrieving bsdutils I: Validating bsdutils I: Retrieving libblkid1 I: Validating libblkid1 I: Retrieving libuuid1 I: Validating libuuid1 I: Retrieving mount I: Validating mount I: Retrieving util-linux I: Validating util-linux I: Retrieving vim-common I: Validating vim-common I: Retrieving vim-tiny I: Validating vim-tiny I: Retrieving wget I: Validating wget I: Retrieving libxapian15 I: Validating libxapian15 I: Retrieving zlib1g I: Validating zlib1g I: Extracting libacl1... I: Extracting libattr1... I: Extracting base-files... I: Extracting base-passwd... I: Extracting bash... I: Extracting coreutils... I: Extracting dash... I: Extracting libdb4.7... I: Extracting debconf-i18n... I: Extracting debconf... I: Extracting debianutils... I: Extracting diffutils... I: Extracting dpkg... I: Extracting e2fslibs... I: Extracting e2fsprogs... I: Extracting libcomerr2... I: Extracting libss2... I: Extracting libc-bin... I: Extracting libc6... I: Extracting findutils... I: Extracting gcc-4.3-base... I: Extracting gcc-4.4-base... I: Extracting libgcc1... I: Extracting libstdc++6... I: Extracting grep... I: Extracting gzip... I: Extracting hostname... I: Extracting insserv... I: Extracting lsb-base... I: Extracting libdevmapper1.02.1... I: Extracting lzma... I: Extracting liblocale-gettext-perl... I: Extracting libselinux1... I: Extracting libsepol1... I: Extracting libtext-charwidth-perl... I: Extracting libtext-iconv-perl... I: Extracting libtext-wrapi18n-perl... I: Extracting libunwind7... I: Extracting mawk... I: Extracting libncurses5... I: Extracting ncurses-base... I: Extracting ncurses-bin... I: Extracting libpam-modules... I: Extracting libpam-runtime... I: Extracting libpam0g... I: Extracting perl-base... I: Extracting procps... I: Extracting sed... I: Extracting sensible-utils... I: Extracting login... I: Extracting passwd... I: Extracting libslang2... I: Extracting initscripts... I: Extracting sysv-rc... I: Extracting sysvinit-utils... I: Extracting sysvinit... I: Extracting tar... I: Extracting tzdata... I: Extracting bsdutils... I: Extracting libblkid1... I: Extracting libuuid1... I: Extracting mount... I: Extracting util-linux... I: Extracting zlib1g... I: Installing core packages... I: Unpacking required packages... I: Unpacking libacl1... I: Unpacking libattr1... I: Unpacking base-files... I: Unpacking base-passwd... I: Unpacking bash... I: Unpacking coreutils... I: Unpacking dash... I: Unpacking libdb4.7... I: Unpacking debconf-i18n... I: Unpacking debconf... I: Unpacking debianutils... I: Unpacking diffutils... I: Unpacking dpkg... I: Unpacking e2fslibs... I: Unpacking e2fsprogs... I: Unpacking libcomerr2... I: Unpacking libss2... I: Unpacking libc-bin... I: Unpacking libc6... I: Unpacking findutils... I: Unpacking gcc-4.3-base... I: Unpacking gcc-4.4-base... I: Unpacking libgcc1... I: Unpacking libstdc++6... I: Unpacking grep... I: Unpacking gzip... I: Unpacking hostname... I: Unpacking insserv... I: Unpacking lsb-base... I: Unpacking libdevmapper1.02.1... I: Unpacking lzma... I: Unpacking liblocale-gettext-perl... I: Unpacking libselinux1... I: Unpacking libsepol1... I: Unpacking libtext-charwidth-perl... I: Unpacking libtext-iconv-perl... I: Unpacking libtext-wrapi18n-perl... I: Unpacking libunwind7... I: Unpacking mawk... I: Unpacking libncurses5... I: Unpacking ncurses-base... I: Unpacking ncurses-bin... I: Unpacking libpam-modules... I: Unpacking libpam-runtime... I: Unpacking libpam0g... I: Unpacking perl-base... I: Unpacking procps... I: Unpacking sed... I: Unpacking sensible-utils... I: Unpacking login... I: Unpacking passwd... I: Unpacking libslang2... I: Unpacking initscripts... I: Unpacking sysv-rc... I: Unpacking sysvinit-utils... I: Unpacking sysvinit... I: Unpacking tar... I: Unpacking tzdata... I: Unpacking bsdutils... I: Unpacking libblkid1... I: Unpacking libuuid1... I: Unpacking mount... I: Unpacking util-linux... I: Unpacking zlib1g... I: Configuring required packages... I: Configuring sensible-utils... I: Configuring gcc-4.3-base... I: Configuring libc-bin... I: Configuring gcc-4.4-base... I: Configuring libc6... I: Configuring debianutils... I: Configuring bsdutils... I: Configuring libunwind7... I: Configuring libsepol1... I: Configuring diffutils... I: Configuring tar... I: Configuring zlib1g... I: Configuring libgcc1... I: Configuring libncurses5... I: Configuring libattr1... I: Configuring e2fslibs... I: Configuring base-passwd... I: Configuring libcomerr2... I: Configuring mawk... I: Configuring libdb4.7... I: Configuring grep... I: Configuring hostname... I: Configuring libacl1... I: Configuring libslang2... I: Configuring libss2... I: Configuring findutils... I: Configuring insserv... I: Configuring gzip... I: Configuring libselinux1... I: Configuring libstdc++6... I: Configuring coreutils... I: Configuring lzma... I: Configuring ncurses-base... I: Configuring ncurses-bin... I: Configuring base-files... I: Configuring libdevmapper1.02.1... I: Configuring dpkg... I: Configuring sysvinit-utils... I: Configuring dash... I: Configuring perl-base... I: Configuring libtext-iconv-perl... I: Configuring sed... I: Configuring liblocale-gettext-perl... I: Configuring bash... I: Configuring libtext-charwidth-perl... I: Configuring libtext-wrapi18n-perl... I: Configuring lsb-base... I: Configuring debconf-i18n... I: Configuring debconf... I: Configuring libpam0g... I: Configuring sysv-rc... I: Configuring libpam-modules... I: Configuring tzdata... I: Configuring passwd... I: Configuring libpam-runtime... I: Configuring login... I: Configuring libuuid1... I: Configuring libblkid1... I: Configuring e2fsprogs... I: Configuring mount... I: Configuring initscripts... I: Configuring util-linux... I: Configuring procps... I: Configuring sysvinit... I: Unpacking the base system... I: Unpacking adduser... I: Unpacking apt-utils... I: Unpacking apt... I: Unpacking aptitude... I: Unpacking bsdmainutils... I: Unpacking libbz2-1.0... I: Unpacking cpio... I: Unpacking cron... I: Unpacking libcwidget3... I: Unpacking libdb4.8... I: Unpacking debian-archive-keyring... I: Unpacking dhcp3-client... I: Unpacking dhcp3-common... I: Unpacking dmidecode... I: Unpacking ed... I: Unpacking libgdbm3... I: Unpacking gnupg... I: Unpacking gpgv... I: Unpacking groff-base... I: Unpacking ifupdown... I: Unpacking iproute... I: Unpacking iptables... I: Unpacking iputils-ping... I: Unpacking logrotate... I: Unpacking libept0... I: Unpacking libsigc++-2.0-0c2a... I: Unpacking libtasn1-3... I: Unpacking libusb-0.1-4... I: Unpacking man-db... I: Unpacking manpages... I: Unpacking module-init-tools... I: Unpacking nano... I: Unpacking libncursesw5... I: Unpacking net-tools... I: Unpacking netbase... I: Unpacking netcat-traditional... I: Unpacking libnewt0.52... I: Unpacking whiptail... I: Unpacking libssl0.9.8... I: Unpacking libpopt0... I: Unpacking libreadline5... I: Unpacking libreadline6... I: Unpacking readline-common... I: Unpacking rsyslog... I: Unpacking tasksel-data... I: Unpacking tasksel... I: Unpacking libwrap0... I: Unpacking info... I: Unpacking install-info... I: Unpacking traceroute... I: Unpacking libudev0... I: Unpacking udev... I: Unpacking vim-common... I: Unpacking vim-tiny... I: Unpacking wget... I: Unpacking libxapian15... I: Configuring the base system... I: Configuring module-init-tools... I: Configuring libgdbm3... I: Configuring libtasn1-3... I: Configuring libpopt0... I: Configuring libusb-0.1-4... I: Configuring install-info... I: Configuring libssl0.9.8... I: Configuring vim-common... I: Configuring netbase... I: Configuring libxapian15... I: Configuring dmidecode... I: Configuring libudev0... I: Configuring adduser... I: Configuring traceroute... I: Configuring ed... I: Configuring manpages... I: Configuring iproute... I: Configuring wget... I: Configuring groff-base... I: Configuring libnewt0.52... I: Configuring libdb4.8... I: Configuring net-tools... I: Configuring bsdmainutils... I: Configuring libsigc++-2.0-0c2a... I: Configuring netcat-traditional... I: Configuring libncursesw5... I: Configuring info... I: Configuring iputils-ping... I: Configuring libbz2-1.0... I: Configuring cron... I: Configuring nano... I: Configuring dhcp3-common... I: Configuring udev... I: Configuring iptables... I: Configuring rsyslog... I: Configuring cpio... I: Configuring vim-tiny... I: Configuring readline-common... I: Configuring libwrap0... I: Configuring man-db... I: Configuring whiptail... I: Configuring ifupdown... I: Configuring dhcp3-client... I: Configuring libreadline5... I: Configuring libreadline6... I: Configuring logrotate... I: Configuring libcwidget3... I: Configuring gpgv... I: Configuring gnupg... I: Configuring debian-archive-keyring... I: Configuring apt... I: Configuring libept0... I: Configuring apt-utils... I: Configuring aptitude... I: Configuring tasksel-data... I: Configuring tasksel... I: Base system installed successfully. I: debootstrap finished I: copying local configuration I: Installing apt-lines I: user script /var/cache/pbuilder/build//NUM/tmp/hooks/G50-initscripts-2.86.ds1-11-cdebootstrap0.3.9.sh starting warning: can't open /etc/mtab: No such file or directory umount: /sys: not mounted warning: can't open /etc/mtab: No such file or directory umount: /proc/bus/usb: not found warning: can't open /etc/mtab: No such file or directory umount: /dev/shm: not mounted warning: can't open /etc/mtab: No such file or directory umount: /proc: not mounted warning: can't open /etc/mtab: No such file or directory umount: /dev/pts: not mounted I: user script /var/cache/pbuilder/build//NUM/tmp/hooks/G50-initscripts-2.86.ds1-11-cdebootstrap0.3.9.sh finished I: Refreshing the base.tgz I: upgrading packages I: mounting /proc filesystem I: mounting /dev/pts filesystem I: installing dummy policy-rc.d Get:1 http://ftp.de.debian.org squeeze Release.gpg [835B] Hit http://ftp.de.debian.org squeeze Release Get:2 http://ftp.de.debian.org squeeze/main Packages/DiffIndex [2038B] Fetched XXXB in Xs (XXXXXB/s) Reading package lists... I: Obtaining the cached apt archive contents ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libssl0.9.8_0.9.8k-7_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libc-bin_2.10.2-2_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/gcc-4.4-base_4.4.2-3_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/bsdutils_1%3a2.16.2-0_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libslang2_2.2.2-2_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/netbase_4.40_all.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libcomerr2_1.41.9-1_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libxapian15_1.0.17-1_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libudev0_149-1_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/logrotate_3.7.8-4_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/tasksel_2.80_all.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/debianutils_3.2.2_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libacl1_2.2.49-1_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/lsb-base_3.2-23_all.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/dash_0.5.5.1-3_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libwrap0_7.6.q-18_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libss2_1.41.9-1_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libgcc1_1%3a4.4.2-3_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/procps_1%3a3.2.8-2_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/perl-base_5.10.1-8_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libusb-0.1-4_2%3a0.1.12-13_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libpam0g_1.1.0-4_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/login_1%3a4.1.4.2-1_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/man-db_2.5.6-4_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libgdbm3_1.8.3-9_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/ed_1.4-1_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/debconf_1.5.28_all.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/sysv-rc_2.87dsf-8_all.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/vim-common_2%3a7.2.284-1_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/module-init-tools_3.11-1_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/manpages_3.23-1_all.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/findutils_4.4.2-1_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libstdc++6_4.4.2-3_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/base-passwd_3.5.22_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/liblocale-gettext-perl_1.05-6_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libcwidget3_0.5.16-2_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libsigc++-2.0-0c2a_2.0.18-2_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/ncurses-bin_5.7+20090803-2_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/cron_3.0pl1-106_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/netcat-traditional_1.10-38_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/e2fslibs_1.41.9-1_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/initscripts_2.87dsf-8_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libreadline5_5.2-7_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/nano_2.2.0-1_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/debian-archive-keyring_2009.01.31_all.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/grep_2.5.4-4_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/udev_149-1_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/dhcp3-client_3.1.3-1_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/tar_1.22-2_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/gcc-4.3-base_4.3.4-6_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/iproute_20090324-1_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/iptables_1.4.6-2_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/dpkg_1.15.5.4_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libtext-wrapi18n-perl_0.06-7_all.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/apt_0.7.25_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/sysvinit_2.87dsf-8_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/passwd_1%3a4.1.4.2-1_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/bsdmainutils_8.0.3_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/tasksel-data_2.80_all.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/bash_4.0-7_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libsepol1_2.0.40-2_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libtasn1-3_2.3-1_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/adduser_3.112_all.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/util-linux_2.16.2-0_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/tzdata_2009s-1_all.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/traceroute_2.0.13-2_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/iputils-ping_3%3a20071127-2_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libreadline6_6.0-5_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libnewt0.52_0.52.10-5_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/gpgv_1.4.10-2_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/install-info_4.13a.dfsg.1-5_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/dhcp3-common_3.1.3-1_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libpam-runtime_1.1.0-4_all.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/sysvinit-utils_2.87dsf-8_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/aptitude_0.4.11.11-1+b2_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/sensible-utils_0.0.2_all.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/whiptail_0.52.10-5_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libblkid1_2.16.2-0_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/zlib1g_1%3a1.2.3.3.dfsg-15_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/apt-utils_0.7.25_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libtext-iconv-perl_1.7-2_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/diffutils_1%3a2.8.1-18_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libselinux1_2.0.89-4_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/net-tools_1.60-23_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libdevmapper1.02.1_2%3a1.02.39-1_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libncursesw5_5.7+20090803-2_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libunwind7_0.99-0.2_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/mount_2.16.2-0_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libc6_2.10.2-2_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libpopt0_1.15-1_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/debconf-i18n_1.5.28_all.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/rsyslog_4.4.2-1_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/groff-base_1.20.1-6_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/ncurses-base_5.7+20090803-2_all.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/hostname_3.01_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libbz2-1.0_1.0.5-3_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/gnupg_1.4.10-2_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/dmidecode_2.9-1.1_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/wget_1.12-1.1_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/insserv_1.12.0-14_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/cpio_2.10-1_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/sed_4.2.1-6_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/lzma_4.43-14_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libdb4.7_4.7.25-8_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libncurses5_5.7+20090803-2_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/ifupdown_0.6.9_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libtext-charwidth-perl_0.04-6_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libuuid1_2.16.2-0_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/readline-common_6.0-5_all.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/coreutils_7.4-2_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/gzip_1.3.12-8_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libattr1_1%3a2.4.44-1_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/base-files_5.0.0_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libpam-modules_1.1.0-4_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/info_4.13a.dfsg.1-5_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/e2fsprogs_1.41.9-1_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libept0_0.5.30_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/libdb4.8_4.8.24-1_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/vim-tiny_2%3a7.2.284-1_amd64.deb': File exists ln: creating hard link `/var/cache/pbuilder/build//NUM/var/cache/apt/archives/mawk_1.3.3-15_amd64.deb': File exists 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. aptitude is already the newest version. The following extra packages will be installed: binutils bzip2 cpp cpp-4.3 g++ g++-4.3 gcc gcc-4.3 libc-dev-bin libc6-dev libgmp3c2 libgomp1 liblzma1 libmpfr1ldbl libstdc++6-4.3-dev libtimedate-perl linux-libc-dev make patch perl perl-modules xz-utils Suggested packages: binutils-doc bzip2-doc cpp-doc gcc-4.3-locales debian-keyring debian-maintainers g++-multilib g++-4.3-multilib gcc-4.3-doc libstdc++6-4.3-dbg gcc-multilib manpages-dev autoconf automake1.9 libtool flex bison gdb gcc-doc gcc-4.3-multilib libmudflap0-4.3-dev libgcc1-dbg libgomp1-dbg libmudflap0-dbg glibc-doc libstdc++6-4.3-doc make-doc diffutils-doc perl-doc libterm-readline-gnu-perl libterm-readline-perl-perl Recommended packages: fakeroot The following NEW packages will be installed: binutils build-essential bzip2 cpp cpp-4.3 dpkg-dev g++ g++-4.3 gcc gcc-4.3 libc-dev-bin libc6-dev libgmp3c2 libgomp1 liblzma1 libmpfr1ldbl libstdc++6-4.3-dev libtimedate-perl linux-libc-dev make patch perl perl-modules xz-utils 0 upgraded, 24 newly installed, 0 to remove and 0 not upgraded. Need to get 0B/29.4MB of archives. After this operation, 101MB of additional disk space will be used. Selecting previously deselected package patch. (Reading database ... 8291 files and directories currently installed.) Unpacking patch (from .../archives/patch_2.6-2_amd64.deb) ... Selecting previously deselected package perl-modules. Unpacking perl-modules (from .../perl-modules_5.10.1-8_all.deb) ... Selecting previously deselected package perl. Unpacking perl (from .../perl_5.10.1-8_amd64.deb) ... Selecting previously deselected package binutils. Unpacking binutils (from .../binutils_2.20-4_amd64.deb) ... Selecting previously deselected package libc-dev-bin. Unpacking libc-dev-bin (from .../libc-dev-bin_2.10.2-2_amd64.deb) ... Selecting previously deselected package linux-libc-dev. Unpacking linux-libc-dev (from .../linux-libc-dev_2.6.30-8_amd64.deb) ... Selecting previously deselected package libc6-dev. Unpacking libc6-dev (from .../libc6-dev_2.10.2-2_amd64.deb) ... Selecting previously deselected package libgmp3c2. Unpacking libgmp3c2 (from .../libgmp3c2_2%3a4.3.1+dfsg-3_amd64.deb) ... Selecting previously deselected package libmpfr1ldbl. Unpacking libmpfr1ldbl (from .../libmpfr1ldbl_2.4.2-3_amd64.deb) ... Selecting previously deselected package cpp-4.3. Unpacking cpp-4.3 (from .../cpp-4.3_4.3.4-6_amd64.deb) ... Selecting previously deselected package cpp. Unpacking cpp (from .../cpp_4%3a4.3.4-1_amd64.deb) ... Selecting previously deselected package libgomp1. Unpacking libgomp1 (from .../libgomp1_4.4.2-3_amd64.deb) ... Selecting previously deselected package gcc-4.3. Unpacking gcc-4.3 (from .../gcc-4.3_4.3.4-6_amd64.deb) ... Selecting previously deselected package gcc. Unpacking gcc (from .../gcc_4%3a4.3.4-1_amd64.deb) ... Selecting previously deselected package libstdc++6-4.3-dev. Unpacking libstdc++6-4.3-dev (from .../libstdc++6-4.3-dev_4.3.4-6_amd64.deb) ... Selecting previously deselected package g++-4.3. Unpacking g++-4.3 (from .../g++-4.3_4.3.4-6_amd64.deb) ... Selecting previously deselected package g++. Unpacking g++ (from .../g++_4%3a4.3.4-1_amd64.deb) ... Selecting previously deselected package make. Unpacking make (from .../archives/make_3.81-7_amd64.deb) ... Selecting previously deselected package bzip2. Unpacking bzip2 (from .../bzip2_1.0.5-3_amd64.deb) ... Selecting previously deselected package liblzma1. Unpacking liblzma1 (from .../liblzma1_4.999.9beta+20091116-1_amd64.deb) ... Selecting previously deselected package xz-utils. Unpacking xz-utils (from .../xz-utils_4.999.9beta+20091116-1_amd64.deb) ... Selecting previously deselected package libtimedate-perl. Unpacking libtimedate-perl (from .../libtimedate-perl_1.1900-1_all.deb) ... Selecting previously deselected package dpkg-dev. Unpacking dpkg-dev (from .../dpkg-dev_1.15.5.4_all.deb) ... Selecting previously deselected package build-essential. Unpacking build-essential (from .../build-essential_11.4_amd64.deb) ... Processing triggers for man-db ... Setting up patch (2.6-2) ... Setting up binutils (2.20-4) ... Setting up libc-dev-bin (2.10.2-2) ... Setting up linux-libc-dev (2.6.30-8) ... Setting up libc6-dev (2.10.2-2) ... Setting up libgmp3c2 (2:4.3.1+dfsg-3) ... Setting up libmpfr1ldbl (2.4.2-3) ... Setting up cpp-4.3 (4.3.4-6) ... Setting up cpp (4:4.3.4-1) ... Setting up libgomp1 (4.4.2-3) ... Setting up gcc-4.3 (4.3.4-6) ... Setting up gcc (4:4.3.4-1) ... Setting up make (3.81-7) ... Setting up bzip2 (1.0.5-3) ... Setting up liblzma1 (4.999.9beta+20091116-1) ... Setting up xz-utils (4.999.9beta+20091116-1) ... Setting up perl-modules (5.10.1-8) ... Setting up libstdc++6-4.3-dev (4.3.4-6) ... Setting up perl (5.10.1-8) ... update-alternatives: using /usr/bin/prename to provide /usr/bin/rename (rename) in auto mode. Setting up g++-4.3 (4.3.4-6) ... Setting up g++ (4:4.3.4-1) ... update-alternatives: using /usr/bin/g++ to provide /usr/bin/c++ (c++) in auto mode. Setting up libtimedate-perl (1.1900-1) ... Setting up dpkg-dev (1.15.5.4) ... Setting up build-essential (11.4) ... I: Copying back the cached apt archive contents I: user script /var/cache/pbuilder/build//NUM/tmp/hooks/E50-initscripts-2.86.ds1-7.workaround.sh starting umount: /sys: not mounted umount: /run: not found umount: /proc/bus/usb: not mounted umount: /dev/shm: not mounted umount: /lib/init/rw: not mounted cat: /var/run/inetd.pid: No such file or directory kill: 20: Usage: kill [-s sigspec | -signum | -sigspec] [pid | job]... or kill -l [exitstatus] I: user script /var/cache/pbuilder/build//NUM/tmp/hooks/E50-initscripts-2.86.ds1-7.workaround.sh finished I: unmounting dev/pts filesystem I: unmounting proc filesystem I: creating base tarball [/TESTDIR/testimage] I: cleaning the build env I: removing directory /var/cache/pbuilder/build//NUM and its subdirectories pbuilder-0.215ubuntu7/testsuite/normal/pdebuild-internal-squeeze.log0000664000000000000000000032217112312041170022653 0ustar I: Building the build Environment I: extracting base tarball [/TESTDIR/testimage] I: creating local configuration I: copying local configuration I: mounting /proc filesystem I: mounting /dev/pts filesystem I: Mounting /TESTDIR/dir2 I: policy-rc.d already exists I: Obtaining the cached apt archive contents ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/liblzma0_4.999.9beta+20091004-1_amd64.deb' => `/var/cache/pbuilder/aptcache/liblzma0_4.999.9beta+20091004-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/hello_2.4-3_amd64.deb' => `/var/cache/pbuilder/aptcache/hello_2.4-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libcurl3-gnutls_7.19.5-1ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/libcurl3-gnutls_7.19.5-1ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libsasl2-2_2.1.23.dfsg1-1ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/libsasl2-2_2.1.23.dfsg1-1ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/binutils_2.20-0ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/binutils_2.20-0ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/util-linux_2.16.1-4_amd64.deb' => `/var/cache/pbuilder/aptcache/util-linux_2.16.1-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libssl0.9.8_0.9.8k-6_amd64.deb' => `/var/cache/pbuilder/aptcache/libssl0.9.8_0.9.8k-6_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libcroco3_0.6.1-2_i386.deb' => `/var/cache/pbuilder/aptcache/libcroco3_0.6.1-2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libssl0.9.8_0.9.8k-7_amd64.deb' => `/var/cache/pbuilder/aptcache/libssl0.9.8_0.9.8k-7_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/bzip2_1.0.5-3_amd64.deb' => `/var/cache/pbuilder/aptcache/bzip2_1.0.5-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libc-bin_2.10.2-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libc-bin_2.10.2-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libssl0.9.8_0.9.8g-16ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/libssl0.9.8_0.9.8g-16ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libkrb5support0_1.7dfsg~beta3-1_i386.deb' => `/var/cache/pbuilder/aptcache/libkrb5support0_1.7dfsg~beta3-1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gcc_4%3a4.4.2-2_amd64.deb' => `/var/cache/pbuilder/aptcache/gcc_4%3a4.4.2-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gpgv_1.4.9-4ubuntu7_i386.deb' => `/var/cache/pbuilder/aptcache/gpgv_1.4.9-4ubuntu7_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gcc-4.4-base_4.4.2-3_amd64.deb' => `/var/cache/pbuilder/aptcache/gcc-4.4-base_4.4.2-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/bsdutils_1%3a2.16.2-0_amd64.deb' => `/var/cache/pbuilder/aptcache/bsdutils_1%3a2.16.2-0_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libslang2_2.2.2-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libslang2_2.2.2-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/linux-libc-dev_2.6.30-8_amd64.deb' => `/var/cache/pbuilder/aptcache/linux-libc-dev_2.6.30-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/bash_4.0-5ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/bash_4.0-5ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/dpkg-dev_1.15.4ubuntu2_all.deb' => `/var/cache/pbuilder/aptcache/dpkg-dev_1.15.4ubuntu2_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/netbase_4.40_all.deb' => `/var/cache/pbuilder/aptcache/netbase_4.40_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libcomerr2_1.41.9-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libcomerr2_1.41.9-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libgdbm3_1.8.3-4_i386.deb' => `/var/cache/pbuilder/aptcache/libgdbm3_1.8.3-4_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/bzip2_1.0.5-3_i386.deb' => `/var/cache/pbuilder/aptcache/bzip2_1.0.5-3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libdbus-1-3_1.2.16-0ubuntu9_i386.deb' => `/var/cache/pbuilder/aptcache/libdbus-1-3_1.2.16-0ubuntu9_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/bsdutils_1%3a2.16-1ubuntu5_i386.deb' => `/var/cache/pbuilder/aptcache/bsdutils_1%3a2.16-1ubuntu5_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libxapian15_1.0.17-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libxapian15_1.0.17-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/python-support_1.0.4_all.deb' => `/var/cache/pbuilder/aptcache/python-support_1.0.4_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libcomerr2_1.41.9-1ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/libcomerr2_1.41.9-1ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/sysvinit-utils_2.87dsf-4ubuntu11_i386.deb' => `/var/cache/pbuilder/aptcache/sysvinit-utils_2.87dsf-4ubuntu11_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/login_1%3a4.1.4.1-1ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/login_1%3a4.1.4.1-1ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libudev0_149-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libudev0_149-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libstdc++6-4.4-dev_4.4.2-8_amd64.deb' => `/var/cache/pbuilder/aptcache/libstdc++6-4.4-dev_4.4.2-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libdb4.5_4.5.20-13.1_amd64.deb' => `/var/cache/pbuilder/aptcache/libdb4.5_4.5.20-13.1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libncurses5_5.7+20090803-2ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/libncurses5_5.7+20090803-2ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libusb-0.1-4_2%3a0.1.12-13_i386.deb' => `/var/cache/pbuilder/aptcache/libusb-0.1-4_2%3a0.1.12-13_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libpam-runtime_1.1.0-2ubuntu1_all.deb' => `/var/cache/pbuilder/aptcache/libpam-runtime_1.1.0-2ubuntu1_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libept0_0.5.26ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/libept0_0.5.26ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/lsb-release_3.2-23_all.deb' => `/var/cache/pbuilder/aptcache/lsb-release_3.2-23_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libldap-2.4-2_2.4.18-0ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/libldap-2.4-2_2.4.18-0ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/liblzma1_4.999.9beta+20091116-1_amd64.deb' => `/var/cache/pbuilder/aptcache/liblzma1_4.999.9beta+20091116-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/logrotate_3.7.8-4_amd64.deb' => `/var/cache/pbuilder/aptcache/logrotate_3.7.8-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/mountall_1.0_i386.deb' => `/var/cache/pbuilder/aptcache/mountall_1.0_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/ubuntu-keyring_2009.08.28_all.deb' => `/var/cache/pbuilder/aptcache/ubuntu-keyring_2009.08.28_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/tasksel_2.80_all.deb' => `/var/cache/pbuilder/aptcache/tasksel_2.80_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/debianutils_3.2.2_amd64.deb' => `/var/cache/pbuilder/aptcache/debianutils_3.2.2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libboost-iostreams1.40.0_1.40.0-5_amd64.deb' => `/var/cache/pbuilder/aptcache/libboost-iostreams1.40.0_1.40.0-5_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libacl1_2.2.49-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libacl1_2.2.49-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/dmidecode_2.9-1.2_amd64.deb' => `/var/cache/pbuilder/aptcache/dmidecode_2.9-1.2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libtimedate-perl_1.1600-9_all.deb' => `/var/cache/pbuilder/aptcache/libtimedate-perl_1.1600-9_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gcc-4.4_4.4.2-8_amd64.deb' => `/var/cache/pbuilder/aptcache/gcc-4.4_4.4.2-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/sysv-rc_2.87dsf-4ubuntu11_all.deb' => `/var/cache/pbuilder/aptcache/sysv-rc_2.87dsf-4ubuntu11_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/po-debconf_1.0.16_all.deb' => `/var/cache/pbuilder/aptcache/po-debconf_1.0.16_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/mime-support_3.46-1_all.deb' => `/var/cache/pbuilder/aptcache/mime-support_3.46-1_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/apt_0.7.23.1ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/apt_0.7.23.1ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/lsb-base_3.2-23_all.deb' => `/var/cache/pbuilder/aptcache/lsb-base_3.2-23_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libkrb5-3_1.7dfsg~beta3-1_i386.deb' => `/var/cache/pbuilder/aptcache/libkrb5-3_1.7dfsg~beta3-1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libtasn1-3_2.2-1_i386.deb' => `/var/cache/pbuilder/aptcache/libtasn1-3_2.2-1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/dash_0.5.5.1-3_amd64.deb' => `/var/cache/pbuilder/aptcache/dash_0.5.5.1-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libwrap0_7.6.q-18_amd64.deb' => `/var/cache/pbuilder/aptcache/libwrap0_7.6.q-18_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libgssapi-krb5-2_1.7dfsg~beta3-1_i386.deb' => `/var/cache/pbuilder/aptcache/libgssapi-krb5-2_1.7dfsg~beta3-1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libss2_1.41.9-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libss2_1.41.9-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libsqlite3-0_3.6.21-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libsqlite3-0_3.6.21-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libslang2_2.2.1-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libslang2_2.2.1-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libgcc1_1%3a4.4.2-3_amd64.deb' => `/var/cache/pbuilder/aptcache/libgcc1_1%3a4.4.2-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/procps_1%3a3.2.8-2_amd64.deb' => `/var/cache/pbuilder/aptcache/procps_1%3a3.2.8-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/aptitude_0.6.1.3-3_amd64.deb' => `/var/cache/pbuilder/aptcache/aptitude_0.6.1.3-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libstdc++6_4.4.1-4ubuntu8_i386.deb' => `/var/cache/pbuilder/aptcache/libstdc++6_4.4.1-4ubuntu8_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/perl-base_5.10.1-8_amd64.deb' => `/var/cache/pbuilder/aptcache/perl-base_5.10.1-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libusb-0.1-4_2%3a0.1.12-13_amd64.deb' => `/var/cache/pbuilder/aptcache/libusb-0.1-4_2%3a0.1.12-13_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/mawk_1.3.3-15ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/mawk_1.3.3-15ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libpam0g_1.1.0-4_amd64.deb' => `/var/cache/pbuilder/aptcache/libpam0g_1.1.0-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/liblocale-gettext-perl_1.05-4build1_i386.deb' => `/var/cache/pbuilder/aptcache/liblocale-gettext-perl_1.05-4build1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/login_1%3a4.1.4.2-1_amd64.deb' => `/var/cache/pbuilder/aptcache/login_1%3a4.1.4.2-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/man-db_2.5.6-4_amd64.deb' => `/var/cache/pbuilder/aptcache/man-db_2.5.6-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libgdbm3_1.8.3-9_amd64.deb' => `/var/cache/pbuilder/aptcache/libgdbm3_1.8.3-9_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/ed_1.4-1_amd64.deb' => `/var/cache/pbuilder/aptcache/ed_1.4-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libselinux1_2.0.85-2ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/libselinux1_2.0.85-2ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libblkid1_2.16.1-4_amd64.deb' => `/var/cache/pbuilder/aptcache/libblkid1_2.16.1-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libcroco3_0.6.2-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libcroco3_0.6.2-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/cpp_4%3a4.4.2-2_amd64.deb' => `/var/cache/pbuilder/aptcache/cpp_4%3a4.4.2-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/debconf_1.5.28_all.deb' => `/var/cache/pbuilder/aptcache/debconf_1.5.28_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/liblog4cxx10_0.10.0-1.1_amd64.deb' => `/var/cache/pbuilder/aptcache/liblog4cxx10_0.10.0-1.1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/coreutils_7.4-2ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/coreutils_7.4-2ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libsqlite3-0_3.6.20-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libsqlite3-0_3.6.20-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/diffutils_1%3a2.8.7-0.1_amd64.deb' => `/var/cache/pbuilder/aptcache/diffutils_1%3a2.8.7-0.1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/build-essential_11.4_i386.deb' => `/var/cache/pbuilder/aptcache/build-essential_11.4_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/python2.5-minimal_2.5.4-3_amd64.deb' => `/var/cache/pbuilder/aptcache/python2.5-minimal_2.5.4-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/groff-base_1.20.1-5_i386.deb' => `/var/cache/pbuilder/aptcache/groff-base_1.20.1-5_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/sysv-rc_2.87dsf-8_all.deb' => `/var/cache/pbuilder/aptcache/sysv-rc_2.87dsf-8_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/debconf_1.5.27ubuntu2_all.deb' => `/var/cache/pbuilder/aptcache/debconf_1.5.27ubuntu2_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/mount_2.17~rc3-1_amd64.deb' => `/var/cache/pbuilder/aptcache/mount_2.17~rc3-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/vim-common_2%3a7.2.284-1_amd64.deb' => `/var/cache/pbuilder/aptcache/vim-common_2%3a7.2.284-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/module-init-tools_3.11-1_amd64.deb' => `/var/cache/pbuilder/aptcache/module-init-tools_3.11-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libgcrypt11_1.4.4-2ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/libgcrypt11_1.4.4-2ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/lsb-base_4.0-0ubuntu5_all.deb' => `/var/cache/pbuilder/aptcache/lsb-base_4.0-0ubuntu5_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/html2text_1.3.2a-14_amd64.deb' => `/var/cache/pbuilder/aptcache/html2text_1.3.2a-14_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libxml2_2.7.6.dfsg-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libxml2_2.7.6.dfsg-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/g++_4%3a4.4.1-1ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/g++_4%3a4.4.1-1ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libcwidget3_0.5.12-4ubuntu4_i386.deb' => `/var/cache/pbuilder/aptcache/libcwidget3_0.5.12-4ubuntu4_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/manpages_3.23-1_all.deb' => `/var/cache/pbuilder/aptcache/manpages_3.23-1_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/findutils_4.4.2-1_amd64.deb' => `/var/cache/pbuilder/aptcache/findutils_4.4.2-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/cowbuilder_0.58_amd64.deb' => `/var/cache/pbuilder/aptcache/cowbuilder_0.58_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libstdc++6_4.4.2-3_amd64.deb' => `/var/cache/pbuilder/aptcache/libstdc++6_4.4.2-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/dpkg-dev_1.15.5.2_all.deb' => `/var/cache/pbuilder/aptcache/dpkg-dev_1.15.5.2_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/initscripts_2.87dsf-4ubuntu11_i386.deb' => `/var/cache/pbuilder/aptcache/initscripts_2.87dsf-4ubuntu11_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/nano_2.2.1-1_amd64.deb' => `/var/cache/pbuilder/aptcache/nano_2.2.1-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/base-passwd_3.5.22_amd64.deb' => `/var/cache/pbuilder/aptcache/base-passwd_3.5.22_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libc-bin_2.11~0exp1-0exp1_amd64.deb' => `/var/cache/pbuilder/aptcache/libc-bin_2.11~0exp1-0exp1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libgomp1_4.4.2-8_amd64.deb' => `/var/cache/pbuilder/aptcache/libgomp1_4.4.2-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/cpp-4.4_4.4.1-4ubuntu8_i386.deb' => `/var/cache/pbuilder/aptcache/cpp-4.4_4.4.1-4ubuntu8_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gettext-base_0.17-8ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/gettext-base_0.17-8ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/liblocale-gettext-perl_1.05-6_amd64.deb' => `/var/cache/pbuilder/aptcache/liblocale-gettext-perl_1.05-6_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libkeyutils1_1.2-10_i386.deb' => `/var/cache/pbuilder/aptcache/libkeyutils1_1.2-10_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/hostname_2.95ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/hostname_2.95ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/procps_1%3a3.2.8-1ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/procps_1%3a3.2.8-1ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libsigc++-2.0-0c2a_2.2.2-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libsigc++-2.0-0c2a_2.2.2-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gettext_0.17-8ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/gettext_0.17-8ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gcc-4.4-base_4.4.1-4ubuntu8_i386.deb' => `/var/cache/pbuilder/aptcache/gcc-4.4-base_4.4.1-4ubuntu8_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libcwidget3_0.5.16-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libcwidget3_0.5.16-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libgpg-error0_1.6-1ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/libgpg-error0_1.6-1ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/dpkg-dev_1.15.5.5_all.deb' => `/var/cache/pbuilder/aptcache/dpkg-dev_1.15.5.5_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libsepol1_2.0.37-1_i386.deb' => `/var/cache/pbuilder/aptcache/libsepol1_2.0.37-1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libstdc++6_4.4.2-8_amd64.deb' => `/var/cache/pbuilder/aptcache/libstdc++6_4.4.2-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libss2_1.41.9-1ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/libss2_1.41.9-1ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libsigc++-2.0-0c2a_2.0.18-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libsigc++-2.0-0c2a_2.0.18-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libk5crypto3_1.7dfsg~beta3-1_i386.deb' => `/var/cache/pbuilder/aptcache/libk5crypto3_1.7dfsg~beta3-1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/fakeroot_1.14.4-1_amd64.deb' => `/var/cache/pbuilder/aptcache/fakeroot_1.14.4-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/ncurses-bin_5.7+20090803-2_amd64.deb' => `/var/cache/pbuilder/aptcache/ncurses-bin_5.7+20090803-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/util-linux_2.17~rc3-1_amd64.deb' => `/var/cache/pbuilder/aptcache/util-linux_2.17~rc3-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/cron_3.0pl1-106_amd64.deb' => `/var/cache/pbuilder/aptcache/cron_3.0pl1-106_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libacl1_2.2.47-2_i386.deb' => `/var/cache/pbuilder/aptcache/libacl1_2.2.47-2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/netcat-traditional_1.10-38_amd64.deb' => `/var/cache/pbuilder/aptcache/netcat-traditional_1.10-38_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/e2fslibs_1.41.9-1_amd64.deb' => `/var/cache/pbuilder/aptcache/e2fslibs_1.41.9-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/g++-4.4_4.4.2-8_amd64.deb' => `/var/cache/pbuilder/aptcache/g++-4.4_4.4.2-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/bsdmainutils_6.1.10ubuntu4_i386.deb' => `/var/cache/pbuilder/aptcache/bsdmainutils_6.1.10ubuntu4_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/python-debian_0.1.14_all.deb' => `/var/cache/pbuilder/aptcache/python-debian_0.1.14_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/python-apt_0.7.13.3_amd64.deb' => `/var/cache/pbuilder/aptcache/python-apt_0.7.13.3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/build-essential_11.4_amd64.deb' => `/var/cache/pbuilder/aptcache/build-essential_11.4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gnupg_1.4.9-4ubuntu7_i386.deb' => `/var/cache/pbuilder/aptcache/gnupg_1.4.9-4ubuntu7_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libsigc++-2.0-0c2a_2.0.18-2_i386.deb' => `/var/cache/pbuilder/aptcache/libsigc++-2.0-0c2a_2.0.18-2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/initscripts_2.87dsf-8_amd64.deb' => `/var/cache/pbuilder/aptcache/initscripts_2.87dsf-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/mount_2.16-1ubuntu5_i386.deb' => `/var/cache/pbuilder/aptcache/mount_2.16-1ubuntu5_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libc6_2.10.1-0ubuntu15_i386.deb' => `/var/cache/pbuilder/aptcache/libc6_2.10.1-0ubuntu15_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/dash_0.5.5.1-2ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/dash_0.5.5.1-2ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/zlib1g_1%3a1.2.3.4.dfsg-3_amd64.deb' => `/var/cache/pbuilder/aptcache/zlib1g_1%3a1.2.3.4.dfsg-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libreadline5_5.2-7_amd64.deb' => `/var/cache/pbuilder/aptcache/libreadline5_5.2-7_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/pbuilder_0.192_all.deb' => `/var/cache/pbuilder/aptcache/pbuilder_0.192_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/nano_2.2.0-1_amd64.deb' => `/var/cache/pbuilder/aptcache/nano_2.2.0-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/e2fsprogs_1.41.9-1ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/e2fsprogs_1.41.9-1ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/aptitude_0.4.11.11-1ubuntu6_i386.deb' => `/var/cache/pbuilder/aptcache/aptitude_0.4.11.11-1ubuntu6_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/bsdutils_1%3a2.16.1-4_amd64.deb' => `/var/cache/pbuilder/aptcache/bsdutils_1%3a2.16.1-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libglib2.0-0_2.22.3-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libglib2.0-0_2.22.3-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/python_2.5.4-2_all.deb' => `/var/cache/pbuilder/aptcache/python_2.5.4-2_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libdebian-installer-extra4_0.69_amd64.deb' => `/var/cache/pbuilder/aptcache/libdebian-installer-extra4_0.69_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/file_5.03-1ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/file_5.03-1ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libc6_2.11~0exp1-0exp1_amd64.deb' => `/var/cache/pbuilder/aptcache/libc6_2.11~0exp1-0exp1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/patch_2.5.9-5_amd64.deb' => `/var/cache/pbuilder/aptcache/patch_2.5.9-5_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/cdebootstrap_0.5.5_amd64.deb' => `/var/cache/pbuilder/aptcache/cdebootstrap_0.5.5_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libbz2-1.0_1.0.5-3_i386.deb' => `/var/cache/pbuilder/aptcache/libbz2-1.0_1.0.5-3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libsasl2-modules_2.1.23.dfsg1-1ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/libsasl2-modules_2.1.23.dfsg1-1ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/perl-modules_5.10.1-8_all.deb' => `/var/cache/pbuilder/aptcache/perl-modules_5.10.1-8_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libdb4.7_4.7.25-9_amd64.deb' => `/var/cache/pbuilder/aptcache/libdb4.7_4.7.25-9_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/debian-archive-keyring_2009.01.31_all.deb' => `/var/cache/pbuilder/aptcache/debian-archive-keyring_2009.01.31_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/grep_2.5.4-4_amd64.deb' => `/var/cache/pbuilder/aptcache/grep_2.5.4-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/udev_149-1_amd64.deb' => `/var/cache/pbuilder/aptcache/udev_149-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/isc-dhcp-common_4.1.0-1_amd64.deb' => `/var/cache/pbuilder/aptcache/isc-dhcp-common_4.1.0-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/base-passwd_3.5.21_i386.deb' => `/var/cache/pbuilder/aptcache/base-passwd_3.5.21_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gdebi-core_0.5.9debian2_all.deb' => `/var/cache/pbuilder/aptcache/gdebi-core_0.5.9debian2_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/g++-4.3_4.3.4-6_amd64.deb' => `/var/cache/pbuilder/aptcache/g++-4.3_4.3.4-6_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/bsdmainutils_8.0.2_amd64.deb' => `/var/cache/pbuilder/aptcache/bsdmainutils_8.0.2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/sed_4.2.1-1_i386.deb' => `/var/cache/pbuilder/aptcache/sed_4.2.1-1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/sed_4.2.1-4_amd64.deb' => `/var/cache/pbuilder/aptcache/sed_4.2.1-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/dhcp3-client_3.1.3-1_amd64.deb' => `/var/cache/pbuilder/aptcache/dhcp3-client_3.1.3-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/tar_1.22-2_amd64.deb' => `/var/cache/pbuilder/aptcache/tar_1.22-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/netbase_4.35ubuntu2_all.deb' => `/var/cache/pbuilder/aptcache/netbase_4.35ubuntu2_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libapr1_1.3.8-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libapr1_1.3.8-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gcc-4.3-base_4.3.4-6_amd64.deb' => `/var/cache/pbuilder/aptcache/gcc-4.3-base_4.3.4-6_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libstdc++6-4.4-dev_4.4.1-4ubuntu8_i386.deb' => `/var/cache/pbuilder/aptcache/libstdc++6-4.4-dev_4.4.1-4ubuntu8_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/iproute_20090324-1_amd64.deb' => `/var/cache/pbuilder/aptcache/iproute_20090324-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/iptables_1.4.6-2_amd64.deb' => `/var/cache/pbuilder/aptcache/iptables_1.4.6-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/perl_5.10.1-8_amd64.deb' => `/var/cache/pbuilder/aptcache/perl_5.10.1-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/dpkg_1.15.5.4_amd64.deb' => `/var/cache/pbuilder/aptcache/dpkg_1.15.5.4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libtext-wrapi18n-perl_0.06-7_all.deb' => `/var/cache/pbuilder/aptcache/libtext-wrapi18n-perl_0.06-7_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/apt_0.7.25_amd64.deb' => `/var/cache/pbuilder/aptcache/apt_0.7.25_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/g++_4%3a4.3.4-1_amd64.deb' => `/var/cache/pbuilder/aptcache/g++_4%3a4.3.4-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/util-linux_2.16-1ubuntu5_i386.deb' => `/var/cache/pbuilder/aptcache/util-linux_2.16-1ubuntu5_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gcc-4.4-base_4.4.2-8_amd64.deb' => `/var/cache/pbuilder/aptcache/gcc-4.4-base_4.4.2-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/mount_2.16.1-4_amd64.deb' => `/var/cache/pbuilder/aptcache/mount_2.16.1-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libc6-dev_2.10.2-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libc6-dev_2.10.2-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/sysvinit_2.87dsf-8_amd64.deb' => `/var/cache/pbuilder/aptcache/sysvinit_2.87dsf-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/passwd_1%3a4.1.4.2-1_amd64.deb' => `/var/cache/pbuilder/aptcache/passwd_1%3a4.1.4.2-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/perl-modules_5.10.0-24ubuntu4_all.deb' => `/var/cache/pbuilder/aptcache/perl-modules_5.10.0-24ubuntu4_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/dpkg-dev_1.15.5.4_all.deb' => `/var/cache/pbuilder/aptcache/dpkg-dev_1.15.5.4_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gcc-4.3_4.3.4-6_amd64.deb' => `/var/cache/pbuilder/aptcache/gcc-4.3_4.3.4-6_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libaprutil1_1.3.9+dfsg-3_amd64.deb' => `/var/cache/pbuilder/aptcache/libaprutil1_1.3.9+dfsg-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/bsdmainutils_8.0.3_amd64.deb' => `/var/cache/pbuilder/aptcache/bsdmainutils_8.0.3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/tasksel-data_2.80_all.deb' => `/var/cache/pbuilder/aptcache/tasksel-data_2.80_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/bash_4.0-7_amd64.deb' => `/var/cache/pbuilder/aptcache/bash_4.0-7_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/lzma_4.43-14ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/lzma_4.43-14ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/diff_2.8.1-13_i386.deb' => `/var/cache/pbuilder/aptcache/diff_2.8.1-13_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libpcre3_7.8-3_i386.deb' => `/var/cache/pbuilder/aptcache/libpcre3_7.8-3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/python2.6-minimal_2.6.4~rc2-0ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/python2.6-minimal_2.6.4~rc2-0ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/tzdata_2009u-1_all.deb' => `/var/cache/pbuilder/aptcache/tzdata_2009u-1_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/intltool-debian_0.35.0+20060710.1_all.deb' => `/var/cache/pbuilder/aptcache/intltool-debian_0.35.0+20060710.1_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libsepol1_2.0.40-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libsepol1_2.0.40-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libtasn1-3_2.3-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libtasn1-3_2.3-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libdb4.8_4.8.26-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libdb4.8_4.8.26-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/openssl_0.9.8g-16ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/openssl_0.9.8g-16ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/cpp-4.4_4.4.2-8_amd64.deb' => `/var/cache/pbuilder/aptcache/cpp-4.4_4.4.2-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libexpat1_2.0.1-7_amd64.deb' => `/var/cache/pbuilder/aptcache/libexpat1_2.0.1-7_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/adduser_3.112_all.deb' => `/var/cache/pbuilder/aptcache/adduser_3.112_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/zlib1g_1%3a1.2.3.3.dfsg-13ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/zlib1g_1%3a1.2.3.3.dfsg-13ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/patch_2.6-2_amd64.deb' => `/var/cache/pbuilder/aptcache/patch_2.6-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/python-central_0.6.13_all.deb' => `/var/cache/pbuilder/aptcache/python-central_0.6.13_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/util-linux_2.16.2-0_amd64.deb' => `/var/cache/pbuilder/aptcache/util-linux_2.16.2-0_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libreadline6_6.0-5_i386.deb' => `/var/cache/pbuilder/aptcache/libreadline6_6.0-5_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libept0_0.5.29_amd64.deb' => `/var/cache/pbuilder/aptcache/libept0_0.5.29_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/tzdata_2009o-1ubuntu2_all.deb' => `/var/cache/pbuilder/aptcache/tzdata_2009o-1ubuntu2_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libc6-dev_2.10.1-0ubuntu15_i386.deb' => `/var/cache/pbuilder/aptcache/libc6-dev_2.10.1-0ubuntu15_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/tzdata_2009s-1_all.deb' => `/var/cache/pbuilder/aptcache/tzdata_2009s-1_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/traceroute_2.0.13-2_amd64.deb' => `/var/cache/pbuilder/aptcache/traceroute_2.0.13-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/iputils-ping_3%3a20071127-2_amd64.deb' => `/var/cache/pbuilder/aptcache/iputils-ping_3%3a20071127-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libgcc1_1%3a4.4.1-4ubuntu8_i386.deb' => `/var/cache/pbuilder/aptcache/libgcc1_1%3a4.4.1-4ubuntu8_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libreadline6_6.0-5_amd64.deb' => `/var/cache/pbuilder/aptcache/libreadline6_6.0-5_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libgmp3c2_2%3a4.3.1+dfsg-3_amd64.deb' => `/var/cache/pbuilder/aptcache/libgmp3c2_2%3a4.3.1+dfsg-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/cowdancer_0.58_amd64.deb' => `/var/cache/pbuilder/aptcache/cowdancer_0.58_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libgomp1_4.4.1-4ubuntu8_i386.deb' => `/var/cache/pbuilder/aptcache/libgomp1_4.4.1-4ubuntu8_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/dpkg_1.15.5.2_amd64.deb' => `/var/cache/pbuilder/aptcache/dpkg_1.15.5.2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libxml2_2.7.5.dfsg-1ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/libxml2_2.7.5.dfsg-1ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libgmp3c2_2%3a4.3.1+dfsg-1ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/libgmp3c2_2%3a4.3.1+dfsg-1ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libslang2_2.1.4-3_i386.deb' => `/var/cache/pbuilder/aptcache/libslang2_2.1.4-3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libnewt0.52_0.52.10-5_amd64.deb' => `/var/cache/pbuilder/aptcache/libnewt0.52_0.52.10-5_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/make_3.81-6_i386.deb' => `/var/cache/pbuilder/aptcache/make_3.81-6_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gpgv_1.4.10-2_amd64.deb' => `/var/cache/pbuilder/aptcache/gpgv_1.4.10-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libpam0g_1.1.0-2ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/libpam0g_1.1.0-2ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/python-minimal_2.6.4~rc1-0ubuntu1_all.deb' => `/var/cache/pbuilder/aptcache/python-minimal_2.6.4~rc1-0ubuntu1_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/install-info_4.13a.dfsg.1-5_amd64.deb' => `/var/cache/pbuilder/aptcache/install-info_4.13a.dfsg.1-5_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libblkid1_2.17~rc3-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libblkid1_2.17~rc3-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libtimedate-perl_1.1900-1_all.deb' => `/var/cache/pbuilder/aptcache/libtimedate-perl_1.1900-1_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/ca-certificates_20090814_all.deb' => `/var/cache/pbuilder/aptcache/ca-certificates_20090814_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libmpfr1ldbl_2.4.2-3_amd64.deb' => `/var/cache/pbuilder/aptcache/libmpfr1ldbl_2.4.2-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/net-tools_1.60-23ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/net-tools_1.60-23ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/dhcp3-common_3.1.3-1_amd64.deb' => `/var/cache/pbuilder/aptcache/dhcp3-common_3.1.3-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/debianutils_2.30ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/debianutils_2.30ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/cpp_4%3a4.3.4-1_amd64.deb' => `/var/cache/pbuilder/aptcache/cpp_4%3a4.3.4-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/apt-utils_0.7.23.1_amd64.deb' => `/var/cache/pbuilder/aptcache/apt-utils_0.7.23.1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/dpkg_1.15.5.5_amd64.deb' => `/var/cache/pbuilder/aptcache/dpkg_1.15.5.5_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libpam-runtime_1.1.0-4_all.deb' => `/var/cache/pbuilder/aptcache/libpam-runtime_1.1.0-4_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libc-dev-bin_2.10.2-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libc-dev-bin_2.10.2-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/sysvinit-utils_2.87dsf-8_amd64.deb' => `/var/cache/pbuilder/aptcache/sysvinit-utils_2.87dsf-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/aptitude_0.4.11.11-1+b2_amd64.deb' => `/var/cache/pbuilder/aptcache/aptitude_0.4.11.11-1+b2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libc-bin_2.10.1-0ubuntu15_i386.deb' => `/var/cache/pbuilder/aptcache/libc-bin_2.10.1-0ubuntu15_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/iptables_1.4.5-1_amd64.deb' => `/var/cache/pbuilder/aptcache/iptables_1.4.5-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/bsdutils_1%3a2.17~rc3-1_amd64.deb' => `/var/cache/pbuilder/aptcache/bsdutils_1%3a2.17~rc3-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/sensible-utils_0.0.2_all.deb' => `/var/cache/pbuilder/aptcache/sensible-utils_0.0.2_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/grep_2.5.4-4_i386.deb' => `/var/cache/pbuilder/aptcache/grep_2.5.4-4_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/passwd_1%3a4.1.4.1-1ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/passwd_1%3a4.1.4.1-1ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/whiptail_0.52.10-5_amd64.deb' => `/var/cache/pbuilder/aptcache/whiptail_0.52.10-5_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libblkid1_2.16.2-0_amd64.deb' => `/var/cache/pbuilder/aptcache/libblkid1_2.16.2-0_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/zlib1g_1%3a1.2.3.3.dfsg-15_amd64.deb' => `/var/cache/pbuilder/aptcache/zlib1g_1%3a1.2.3.3.dfsg-15_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/apt-utils_0.7.25_amd64.deb' => `/var/cache/pbuilder/aptcache/apt-utils_0.7.25_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libtext-iconv-perl_1.7-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libtext-iconv-perl_1.7-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/make_3.81-7_amd64.deb' => `/var/cache/pbuilder/aptcache/make_3.81-7_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libudev0_147~-6_i386.deb' => `/var/cache/pbuilder/aptcache/libudev0_147~-6_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gzip_1.3.12-8ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/gzip_1.3.12-8ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/diffutils_1%3a2.8.1-18_amd64.deb' => `/var/cache/pbuilder/aptcache/diffutils_1%3a2.8.1-18_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/debconf-i18n_1.5.27ubuntu2_all.deb' => `/var/cache/pbuilder/aptcache/debconf-i18n_1.5.27ubuntu2_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libblkid1_2.16-1ubuntu5_i386.deb' => `/var/cache/pbuilder/aptcache/libblkid1_2.16-1ubuntu5_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libselinux1_2.0.89-4_amd64.deb' => `/var/cache/pbuilder/aptcache/libselinux1_2.0.89-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/debhelper_7.3.15ubuntu3_all.deb' => `/var/cache/pbuilder/aptcache/debhelper_7.3.15ubuntu3_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libpcre3_7.8-3_amd64.deb' => `/var/cache/pbuilder/aptcache/libpcre3_7.8-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/net-tools_1.60-23_amd64.deb' => `/var/cache/pbuilder/aptcache/net-tools_1.60-23_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/xz-utils_4.999.9beta+20091004-1_amd64.deb' => `/var/cache/pbuilder/aptcache/xz-utils_4.999.9beta+20091004-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libdb4.7_4.7.25-7ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/libdb4.7_4.7.25-7ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libattr1_1%3a2.4.43-3_i386.deb' => `/var/cache/pbuilder/aptcache/libattr1_1%3a2.4.43-3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/python2.5_2.5.4-3_amd64.deb' => `/var/cache/pbuilder/aptcache/python2.5_2.5.4-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libmagic1_5.03-1ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/libmagic1_5.03-1ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/udev_149-2_amd64.deb' => `/var/cache/pbuilder/aptcache/udev_149-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libdevmapper1.02.1_2%3a1.02.39-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libdevmapper1.02.1_2%3a1.02.39-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libidn11_1.15-1_i386.deb' => `/var/cache/pbuilder/aptcache/libidn11_1.15-1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/g++-4.4_4.4.1-4ubuntu8_i386.deb' => `/var/cache/pbuilder/aptcache/g++-4.4_4.4.1-4ubuntu8_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libmagic1_5.03-3_amd64.deb' => `/var/cache/pbuilder/aptcache/libmagic1_5.03-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libncursesw5_5.7+20090803-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libncursesw5_5.7+20090803-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libtext-charwidth-perl_0.04-5build1_i386.deb' => `/var/cache/pbuilder/aptcache/libtext-charwidth-perl_0.04-5build1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libunwind7_0.99-0.2_amd64.deb' => `/var/cache/pbuilder/aptcache/libunwind7_0.99-0.2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libtext-iconv-perl_1.7-1build1_i386.deb' => `/var/cache/pbuilder/aptcache/libtext-iconv-perl_1.7-1build1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/mount_2.16.2-0_amd64.deb' => `/var/cache/pbuilder/aptcache/mount_2.16.2-0_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libc6_2.10.2-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libc6_2.10.2-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libpopt0_1.15-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libpopt0_1.15-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libudev0_149-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libudev0_149-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/debconf-i18n_1.5.28_all.deb' => `/var/cache/pbuilder/aptcache/debconf-i18n_1.5.28_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/rsyslog_4.4.2-1_amd64.deb' => `/var/cache/pbuilder/aptcache/rsyslog_4.4.2-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/fakeroot_1.12.4ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/fakeroot_1.12.4ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gcc-4.4_4.4.1-4ubuntu8_i386.deb' => `/var/cache/pbuilder/aptcache/gcc-4.4_4.4.1-4ubuntu8_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/groff-base_1.20.1-6_amd64.deb' => `/var/cache/pbuilder/aptcache/groff-base_1.20.1-6_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/makedev_2.3.1-88_all.deb' => `/var/cache/pbuilder/aptcache/makedev_2.3.1-88_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/xz-utils_4.999.9beta+20091116-1_amd64.deb' => `/var/cache/pbuilder/aptcache/xz-utils_4.999.9beta+20091116-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/ncurses-base_5.7+20090803-2_all.deb' => `/var/cache/pbuilder/aptcache/ncurses-base_5.7+20090803-2_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/html2text_1.3.2a-14_i386.deb' => `/var/cache/pbuilder/aptcache/html2text_1.3.2a-14_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/hostname_3.01_amd64.deb' => `/var/cache/pbuilder/aptcache/hostname_3.01_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/ifupdown_0.6.8ubuntu21_i386.deb' => `/var/cache/pbuilder/aptcache/ifupdown_0.6.8ubuntu21_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libncursesw5_5.7+20090803-2ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/libncursesw5_5.7+20090803-2ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libbz2-1.0_1.0.5-3_amd64.deb' => `/var/cache/pbuilder/aptcache/libbz2-1.0_1.0.5-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/python-minimal_2.5.4-2_all.deb' => `/var/cache/pbuilder/aptcache/python-minimal_2.5.4-2_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/ncurses-base_5.7+20090803-2ubuntu2_all.deb' => `/var/cache/pbuilder/aptcache/ncurses-base_5.7+20090803-2ubuntu2_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/perl-base_5.10.0-24ubuntu4_i386.deb' => `/var/cache/pbuilder/aptcache/perl-base_5.10.0-24ubuntu4_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libpam-modules_1.1.0-2ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/libpam-modules_1.1.0-2ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gettext_0.17-8_amd64.deb' => `/var/cache/pbuilder/aptcache/gettext_0.17-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/insserv_1.12.0-11_i386.deb' => `/var/cache/pbuilder/aptcache/insserv_1.12.0-11_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gnupg_1.4.10-2_amd64.deb' => `/var/cache/pbuilder/aptcache/gnupg_1.4.10-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/locales_2.9+git20090617-3_all.deb' => `/var/cache/pbuilder/aptcache/locales_2.9+git20090617-3_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/dmidecode_2.9-1.1_amd64.deb' => `/var/cache/pbuilder/aptcache/dmidecode_2.9-1.1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/findutils_4.4.2-1_i386.deb' => `/var/cache/pbuilder/aptcache/findutils_4.4.2-1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libmpfr1ldbl_2.4.1-1ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/libmpfr1ldbl_2.4.1-1ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/perl_5.10.0-24ubuntu4_i386.deb' => `/var/cache/pbuilder/aptcache/perl_5.10.0-24ubuntu4_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/cpp-4.3_4.3.4-6_amd64.deb' => `/var/cache/pbuilder/aptcache/cpp-4.3_4.3.4-6_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libmpfr1ldbl_2.4.1-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libmpfr1ldbl_2.4.1-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libuuid1_2.16-1ubuntu5_i386.deb' => `/var/cache/pbuilder/aptcache/libuuid1_2.16-1ubuntu5_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/base-files_5.0.0ubuntu7_i386.deb' => `/var/cache/pbuilder/aptcache/base-files_5.0.0ubuntu7_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/wget_1.12-1.1_amd64.deb' => `/var/cache/pbuilder/aptcache/wget_1.12-1.1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/insserv_1.12.0-14_amd64.deb' => `/var/cache/pbuilder/aptcache/insserv_1.12.0-14_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libxapian15_1.0.15-2ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/libxapian15_1.0.15-2ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/cpio_2.10-1_amd64.deb' => `/var/cache/pbuilder/aptcache/cpio_2.10-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/sed_4.2.1-6_amd64.deb' => `/var/cache/pbuilder/aptcache/sed_4.2.1-6_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gcc_4%3a4.3.4-1_amd64.deb' => `/var/cache/pbuilder/aptcache/gcc_4%3a4.3.4-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/lzma_4.43-14_amd64.deb' => `/var/cache/pbuilder/aptcache/lzma_4.43-14_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/ncurses-bin_5.7+20090803-2ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/ncurses-bin_5.7+20090803-2ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/dpkg_1.15.4ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/dpkg_1.15.4ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/man-db_2.5.6-2_i386.deb' => `/var/cache/pbuilder/aptcache/man-db_2.5.6-2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/linux-libc-dev_2.6.32-3_amd64.deb' => `/var/cache/pbuilder/aptcache/linux-libc-dev_2.6.32-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/e2fslibs_1.41.9-1ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/e2fslibs_1.41.9-1ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libdb4.7_4.7.25-8_amd64.deb' => `/var/cache/pbuilder/aptcache/libdb4.7_4.7.25-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libgomp1_4.4.2-3_amd64.deb' => `/var/cache/pbuilder/aptcache/libgomp1_4.4.2-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/apt_0.7.23.1_amd64.deb' => `/var/cache/pbuilder/aptcache/apt_0.7.23.1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/linux-libc-dev_2.6.31-14.48_i386.deb' => `/var/cache/pbuilder/aptcache/linux-libc-dev_2.6.31-14.48_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libncurses5_5.7+20090803-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libncurses5_5.7+20090803-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/g++_4%3a4.4.2-2_amd64.deb' => `/var/cache/pbuilder/aptcache/g++_4%3a4.4.2-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/tar_1.22-1_i386.deb' => `/var/cache/pbuilder/aptcache/tar_1.22-1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/cpp_4%3a4.4.1-1ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/cpp_4%3a4.4.1-1ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/isc-dhcp-client_4.1.0-1_amd64.deb' => `/var/cache/pbuilder/aptcache/isc-dhcp-client_4.1.0-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gcc_4%3a4.4.1-1ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/gcc_4%3a4.4.1-1ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/ifupdown_0.6.9_amd64.deb' => `/var/cache/pbuilder/aptcache/ifupdown_0.6.9_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libtext-charwidth-perl_0.04-6_amd64.deb' => `/var/cache/pbuilder/aptcache/libtext-charwidth-perl_0.04-6_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libuuid1_2.16.2-0_amd64.deb' => `/var/cache/pbuilder/aptcache/libuuid1_2.16.2-0_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/patch_2.5.9-5_i386.deb' => `/var/cache/pbuilder/aptcache/patch_2.5.9-5_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gettext-base_0.17-8_amd64.deb' => `/var/cache/pbuilder/aptcache/gettext-base_0.17-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/readline-common_6.0-5_all.deb' => `/var/cache/pbuilder/aptcache/readline-common_6.0-5_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/ifupdown_0.7~alpha3_amd64.deb' => `/var/cache/pbuilder/aptcache/ifupdown_0.7~alpha3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/bsdmainutils_8.0.5_amd64.deb' => `/var/cache/pbuilder/aptcache/bsdmainutils_8.0.5_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/coreutils_7.4-2_amd64.deb' => `/var/cache/pbuilder/aptcache/coreutils_7.4-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gzip_1.3.12-8_amd64.deb' => `/var/cache/pbuilder/aptcache/gzip_1.3.12-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libstdc++6-4.3-dev_4.3.4-6_amd64.deb' => `/var/cache/pbuilder/aptcache/libstdc++6-4.3-dev_4.3.4-6_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libattr1_1%3a2.4.44-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libattr1_1%3a2.4.44-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/coreutils_8.0-2_amd64.deb' => `/var/cache/pbuilder/aptcache/coreutils_8.0-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/base-files_5.0.0_amd64.deb' => `/var/cache/pbuilder/aptcache/base-files_5.0.0_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/binutils_2.20-4_amd64.deb' => `/var/cache/pbuilder/aptcache/binutils_2.20-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libpam-modules_1.1.0-4_amd64.deb' => `/var/cache/pbuilder/aptcache/libpam-modules_1.1.0-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/info_4.13a.dfsg.1-5_amd64.deb' => `/var/cache/pbuilder/aptcache/info_4.13a.dfsg.1-5_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libuuid1_2.16.1-4_amd64.deb' => `/var/cache/pbuilder/aptcache/libuuid1_2.16.1-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/bash_4.0-4_amd64.deb' => `/var/cache/pbuilder/aptcache/bash_4.0-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libc-dev-bin_2.10.1-0ubuntu15_i386.deb' => `/var/cache/pbuilder/aptcache/libc-dev-bin_2.10.1-0ubuntu15_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/e2fsprogs_1.41.9-1_amd64.deb' => `/var/cache/pbuilder/aptcache/e2fsprogs_1.41.9-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libept0_0.5.30_amd64.deb' => `/var/cache/pbuilder/aptcache/libept0_0.5.30_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/debhelper_7.4.3_all.deb' => `/var/cache/pbuilder/aptcache/debhelper_7.4.3_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/upstart_0.6.3-10_i386.deb' => `/var/cache/pbuilder/aptcache/upstart_0.6.3-10_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libgnutls26_2.8.3-2_i386.deb' => `/var/cache/pbuilder/aptcache/libgnutls26_2.8.3-2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libdb4.8_4.8.24-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libdb4.8_4.8.24-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libuuid1_2.17~rc3-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libuuid1_2.17~rc3-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libglib2.0-0_2.22.2-0ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/libglib2.0-0_2.22.2-0ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/vim-tiny_2%3a7.2.284-1_amd64.deb' => `/var/cache/pbuilder/aptcache/vim-tiny_2%3a7.2.284-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/mawk_1.3.3-15_amd64.deb' => `/var/cache/pbuilder/aptcache/mawk_1.3.3-15_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libgcc1_1%3a4.4.2-8_amd64.deb' => `/var/cache/pbuilder/aptcache/libgcc1_1%3a4.4.2-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libcwidget3_0.5.13-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libcwidget3_0.5.13-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/file_5.03-3_amd64.deb' => `/var/cache/pbuilder/aptcache/file_5.03-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libdebian-installer4_0.69_amd64.deb' => `/var/cache/pbuilder/aptcache/libdebian-installer4_0.69_amd64.deb': Invalid cross-device link Reading package lists... Building dependency tree... Reading state information... passwd is already the newest version. The following extra packages will be installed: cdebootstrap libdebian-installer-extra4 libdebian-installer4 Suggested packages: pbuilder-uml gdebi cowdancer Recommended packages: fakeroot sudo devscripts The following NEW packages will be installed: cdebootstrap libdebian-installer-extra4 libdebian-installer4 pbuilder 0 upgraded, 4 newly installed, 0 to remove and 0 not upgraded. Need to get 408kB of archives. After this operation, 1368kB of additional disk space will be used. Get:1 http://ftp.de.debian.org squeeze/main libdebian-installer4 0.69 [31.0kB] Get:2 http://ftp.de.debian.org squeeze/main libdebian-installer-extra4 0.69 [12.9kB] Get:3 http://ftp.de.debian.org squeeze/main cdebootstrap 0.5.5 [32.3kB] Get:4 http://ftp.de.debian.org squeeze/main pbuilder 0.194 [332kB] Preconfiguring packages ... Fetched XXXB in Xs (XXXXXB/s) Selecting previously deselected package libdebian-installer4. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 12190 files and directories currently installed.) Unpacking libdebian-installer4 (from .../libdebian-installer4_0.69_amd64.deb) ... Selecting previously deselected package libdebian-installer-extra4. Unpacking libdebian-installer-extra4 (from .../libdebian-installer-extra4_0.69_amd64.deb) ... Selecting previously deselected package cdebootstrap. Unpacking cdebootstrap (from .../cdebootstrap_0.5.5_amd64.deb) ... Selecting previously deselected package pbuilder. Unpacking pbuilder (from .../pbuilder_0.194_all.deb) ... Processing triggers for man-db ... Setting up libdebian-installer4 (0.69) ... Setting up libdebian-installer-extra4 (0.69) ... Setting up cdebootstrap (0.5.5) ... Setting up pbuilder (0.194) ... I: Setting DEBBUILDOPTS= I: Setting DEBBUILDOPTS= W: no hooks of type D found -- ignoring -> Attempting to satisfy build-dependencies -> Creating pbuilder-satisfydepends-dummy package Package: pbuilder-satisfydepends-dummy Version: 0.invalid.0 Architecture: amd64 Maintainer: Debian Pbuilder Team Description: Dummy package to satisfy dependencies with aptitude - created by pbuilder This package was created automatically by pbuilder and should Depends: debhelper (>> 3.0.0), libdshconfig1-dev (>= 0.20.11-1), po4a dpkg-deb: building package `pbuilder-satisfydepends-dummy' in `/tmp/satisfydepends-aptitude/pbuilder-satisfydepends-dummy.deb'. Reading package lists... Building dependency tree... Reading state information... aptitude is already the newest version. 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. Selecting previously deselected package pbuilder-satisfydepends-dummy. (Reading database ... 12315 files and directories currently installed.) Unpacking pbuilder-satisfydepends-dummy (from .../pbuilder-satisfydepends-dummy.deb) ... dpkg: dependency problems prevent configuration of pbuilder-satisfydepends-dummy: pbuilder-satisfydepends-dummy depends on debhelper (>> 3.0.0); however: Package debhelper is not installed. pbuilder-satisfydepends-dummy depends on libdshconfig1-dev (>= 0.20.11-1); however: Package libdshconfig1-dev is not installed. pbuilder-satisfydepends-dummy depends on po4a; however: Package po4a is not installed. dpkg: error processing pbuilder-satisfydepends-dummy (--install): dependency problems - leaving unconfigured Errors were encountered while processing: pbuilder-satisfydepends-dummy Reading package lists... Building dependency tree... Reading state information... Initializing package states... Writing extended state information... Reading task descriptions... The following NEW packages will be installed: debhelper{a} file{a} gettext{a} gettext-base{a} html2text{a} intltool-debian{a} libcroco3{a} libdshconfig1{a} libdshconfig1-dev{a} libglib2.0-0{a} libmagic1{a} libpcre3{a} libsgmls-perl{a} libsp1c2{a} libxml2{a} po-debconf{a} po4a{a} sp{a} The following partially installed packages will be configured: pbuilder-satisfydepends-dummy 0 packages upgraded, 18 newly installed, 0 to remove and 0 not upgraded. Need to get 8755kB of archives. After unpacking 27.3MB will be used. Writing extended state information... Get:1 http://ftp.de.debian.org squeeze/main libmagic1 5.03-5 [393kB] Get:2 http://ftp.de.debian.org squeeze/main file 5.03-5 [47.6kB] Get:3 http://ftp.de.debian.org squeeze/main html2text 1.3.2a-14 [103kB] Get:4 http://ftp.de.debian.org squeeze/main libpcre3 7.8-3 [215kB] Get:5 http://ftp.de.debian.org squeeze/main libglib2.0-0 2.22.3-1 [988kB] Get:6 http://ftp.de.debian.org squeeze/main libxml2 2.7.6.dfsg-1 [876kB] Get:7 http://ftp.de.debian.org squeeze/main libcroco3 0.6.2-1 [125kB] Get:8 http://ftp.de.debian.org squeeze/main gettext-base 0.17-8 [133kB] Get:9 http://ftp.de.debian.org squeeze/main gettext 0.17-8 [2503kB] Get:10 http://ftp.de.debian.org squeeze/main intltool-debian 0.35.0+20060710.1 [30.8kB] Get:11 http://ftp.de.debian.org squeeze/main po-debconf 1.0.16 [224kB] Get:12 http://ftp.de.debian.org squeeze/main debhelper 7.4.10 [458kB] Get:13 http://ftp.de.debian.org squeeze/main libdshconfig1 0.20.13-1 [11.0kB] Get:14 http://ftp.de.debian.org squeeze/main libdshconfig1-dev 0.20.13-1 [25.4kB] Get:15 http://ftp.de.debian.org squeeze/main libsgmls-perl 1.03ii-32 [27.8kB] Get:16 http://ftp.de.debian.org squeeze/main libsp1c2 1.3.4-1.2.1-47 [1386kB] Get:17 http://ftp.de.debian.org squeeze/main sp 1.3.4-1.2.1-47 [182kB] Get:18 http://ftp.de.debian.org squeeze/main po4a 0.37.1-1 [1026kB] Fetched XXXB in Xs (XXXXXB/s) Selecting previously deselected package libmagic1. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 12315 files and directories currently installed.) Unpacking libmagic1 (from .../libmagic1_5.03-5_amd64.deb) ... Selecting previously deselected package file. Unpacking file (from .../archives/file_5.03-5_amd64.deb) ... Selecting previously deselected package html2text. Unpacking html2text (from .../html2text_1.3.2a-14_amd64.deb) ... Selecting previously deselected package libpcre3. Unpacking libpcre3 (from .../libpcre3_7.8-3_amd64.deb) ... Selecting previously deselected package libglib2.0-0. Unpacking libglib2.0-0 (from .../libglib2.0-0_2.22.3-1_amd64.deb) ... Selecting previously deselected package libxml2. Unpacking libxml2 (from .../libxml2_2.7.6.dfsg-1_amd64.deb) ... Selecting previously deselected package libcroco3. Unpacking libcroco3 (from .../libcroco3_0.6.2-1_amd64.deb) ... Selecting previously deselected package gettext-base. Unpacking gettext-base (from .../gettext-base_0.17-8_amd64.deb) ... Selecting previously deselected package gettext. Unpacking gettext (from .../gettext_0.17-8_amd64.deb) ... Selecting previously deselected package intltool-debian. Unpacking intltool-debian (from .../intltool-debian_0.35.0+20060710.1_all.deb) ... Selecting previously deselected package po-debconf. Unpacking po-debconf (from .../po-debconf_1.0.16_all.deb) ... Selecting previously deselected package debhelper. Unpacking debhelper (from .../debhelper_7.4.10_all.deb) ... Selecting previously deselected package libdshconfig1. Unpacking libdshconfig1 (from .../libdshconfig1_0.20.13-1_amd64.deb) ... Selecting previously deselected package libdshconfig1-dev. Unpacking libdshconfig1-dev (from .../libdshconfig1-dev_0.20.13-1_amd64.deb) ... Selecting previously deselected package libsgmls-perl. Unpacking libsgmls-perl (from .../libsgmls-perl_1.03ii-32_all.deb) ... Selecting previously deselected package libsp1c2. Unpacking libsp1c2 (from .../libsp1c2_1.3.4-1.2.1-47_amd64.deb) ... Selecting previously deselected package sp. Unpacking sp (from .../sp_1.3.4-1.2.1-47_amd64.deb) ... Selecting previously deselected package po4a. Unpacking po4a (from .../archives/po4a_0.37.1-1_all.deb) ... Processing triggers for man-db ... Processing triggers for install-info ... Setting up libmagic1 (5.03-5) ... Setting up file (5.03-5) ... Setting up html2text (1.3.2a-14) ... Setting up libpcre3 (7.8-3) ... Setting up libglib2.0-0 (2.22.3-1) ... Setting up libxml2 (2.7.6.dfsg-1) ... Setting up libcroco3 (0.6.2-1) ... Setting up gettext-base (0.17-8) ... Setting up gettext (0.17-8) ... Setting up intltool-debian (0.35.0+20060710.1) ... Setting up po-debconf (1.0.16) ... Setting up debhelper (7.4.10) ... Setting up libdshconfig1 (0.20.13-1) ... Setting up libdshconfig1-dev (0.20.13-1) ... Setting up libsgmls-perl (1.03ii-32) ... Setting up libsp1c2 (1.3.4-1.2.1-47) ... Setting up sp (1.3.4-1.2.1-47) ... Setting up po4a (0.37.1-1) ... Setting up pbuilder-satisfydepends-dummy (0.invalid.0) ... Reading package lists... Building dependency tree... Reading state information... Reading extended state information... Initializing package states... Writing extended state information... Reading task descriptions... -> Finished parsing the build-deps Reading package lists... Building dependency tree... Reading state information... The following NEW packages will be installed: fakeroot 0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded. Need to get 100kB of archives. After this operation, 385kB of additional disk space will be used. Get:1 http://ftp.de.debian.org squeeze/main fakeroot 1.14.4-1 [100kB] Fetched XXXB in Xs (XXXXXB/s) Selecting previously deselected package fakeroot. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 13477 files and directories currently installed.) Unpacking fakeroot (from .../fakeroot_1.14.4-1_amd64.deb) ... Processing triggers for man-db ... Setting up fakeroot (1.14.4-1) ... update-alternatives: using /usr/bin/fakeroot-sysv to provide /usr/bin/fakeroot (fakeroot) in auto mode. W: no hooks of type A found -- ignoring I: Running /usr/bin/dpkg-buildpackage -rfakeroot -us -uc ${DEBBUILDOPTS} dpkg-buildpackage: set CFLAGS to default value: -g -O2 dpkg-buildpackage: set CPPFLAGS to default value: dpkg-buildpackage: set LDFLAGS to default value: dpkg-buildpackage: set FFLAGS to default value: -g -O2 dpkg-buildpackage: set CXXFLAGS to default value: -g -O2 dpkg-buildpackage: source package dsh dpkg-buildpackage: source version 0.25.10-1 dpkg-buildpackage: source changed by Junichi Uekawa dpkg-buildpackage: host architecture amd64 fakeroot debian/rules clean dh_testdir dh_testroot rm -f build-stamp configure-stamp /usr/bin/make clean make[1]: Entering directory `/TESTDIR/dir2/dsh-0.25.10' make[1]: *** No rule to make target `clean'. Stop. make[1]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10' make: [clean] Error 2 (ignored) /usr/bin/make distclean make[1]: Entering directory `/TESTDIR/dir2/dsh-0.25.10' make[1]: *** No rule to make target `distclean'. Stop. make[1]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10' make: [clean] Error 2 (ignored) dh_clean dh_clean: Compatibility levels before 5 are deprecated. dpkg-source -b dsh-0.25.10 dpkg-source: info: using source format `1.0' dpkg-source: info: building dsh using existing dsh_0.25.10.orig.tar.gz dpkg-source: info: building dsh in dsh_0.25.10-1.diff.gz dpkg-source: warning: file dsh-0.25.10/dcp.sh has no final newline (either original or modified version) dpkg-source: warning: file dsh-0.25.10/debian/compat has no final newline (either original or modified version) dpkg-source: warning: the diff modifies the following upstream files: .cvsignore CVS/Entries CVS/Repository CVS/Root ChangeLog.OLD dcp.sh drshd.c dsh.1.ja.po m4/.cvsignore m4/CVS/Entries m4/CVS/Repository m4/CVS/Root po/.cvsignore po/CVS/Entries po/CVS/Repository po/CVS/Root po/insert-header.sin tests/.cvsignore tests/CVS/Entries tests/CVS/Repository tests/CVS/Root dpkg-source: info: use the '3.0 (quilt)' format to have separate and documented changes to upstream files, see dpkg-source(1) dpkg-source: info: building dsh in dsh_0.25.10-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 ISO C89... none needed checking dependency style of gcc... gcc3 checking for strerror in -lcposix... no checking for gcc... (cached) gcc checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) 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 ISO C89... (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 grep that handles long lines and -e... /bin/grep checking for egrep... /bin/grep -E checking for ANSI C header files... yes checking for sys/wait.h that is POSIX.1 compatible... yes checking build system type... x86_64-unknown-linux-gnu checking host system type... x86_64-unknown-linux-gnu checking for a sed that does not truncate output... /bin/sed checking for ld used by gcc... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for /usr/bin/ld option to reload object files... -r checking for BSD-compatible nm... /usr/bin/nm -B checking whether ln -s works... yes checking how to recognize dependent libraries... pass_all checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking dlfcn.h usability... yes checking dlfcn.h presence... yes checking for dlfcn.h... yes checking for g++... g++ checking whether we are using the GNU C++ compiler... yes checking whether g++ accepts -g... yes checking dependency style of g++... gcc3 checking how to run the C++ preprocessor... g++ -E checking for g77... no checking for xlf... no checking for f77... no checking for frt... no checking for pgf77... no checking for cf77... no checking for fort77... no checking for fl32... no checking for af77... no checking for xlf90... no checking for f90... no checking for pgf90... no checking for pghpf... no checking for epcf90... no checking for gfortran... no checking for g95... no checking for xlf95... no checking for f95... no checking for fort... no checking for ifort... no checking for ifc... no checking for efc... no checking for pgf95... no checking for lf95... no checking for ftn... no checking whether we are using the GNU Fortran 77 compiler... no checking whether accepts -g... no checking the maximum length of command line arguments... 3458764513820540925 checking command to parse /usr/bin/nm -B output from gcc object... ok checking for objdir... .libs checking for ar... ar checking for ranlib... ranlib checking for strip... strip checking if gcc supports -fno-rtti -fno-exceptions... no checking for gcc option to produce PIC... -fPIC checking if gcc PIC flag -fPIC works... yes checking if gcc static flag -static works... yes checking if gcc supports -c -o file.o... yes checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) 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 -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking for g++ option to produce PIC... -fPIC checking if g++ PIC flag -fPIC works... yes checking if g++ static flag -static works... yes checking if g++ supports -c -o file.o... yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate appending configuration tag "F77" to libtool checking 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 -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) 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: WARNING: po/Makefile.in.in seems to ignore the --datarootdir setting 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 `/TESTDIR/dir2/dsh-0.25.10' /usr/bin/make all-recursive make[2]: Entering directory `/TESTDIR/dir2/dsh-0.25.10' Making all in m4 make[3]: Entering directory `/TESTDIR/dir2/dsh-0.25.10/m4' make[3]: Nothing to be done for `all'. make[3]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10/m4' Making all in po make[3]: Entering directory `/TESTDIR/dir2/dsh-0.25.10/po' make[3]: Nothing to be done for `all'. make[3]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10/po' make[3]: Entering directory `/TESTDIR/dir2/dsh-0.25.10' 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/bash ./libtool --tag=CC --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 `/TESTDIR/dir2/dsh-0.25.10' make[2]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10' make[1]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10' /usr/bin/make check make[1]: Entering directory `/TESTDIR/dir2/dsh-0.25.10' Making check in m4 make[2]: Entering directory `/TESTDIR/dir2/dsh-0.25.10/m4' make[2]: Nothing to be done for `check'. make[2]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10/m4' Making check in po make[2]: Entering directory `/TESTDIR/dir2/dsh-0.25.10/po' make[2]: Nothing to be done for `check'. make[2]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10/po' make[2]: Entering directory `/TESTDIR/dir2/dsh-0.25.10' /usr/bin/make dsh make[3]: Entering directory `/TESTDIR/dir2/dsh-0.25.10' make[3]: `dsh' is up to date. make[3]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10' /usr/bin/make check-TESTS make[3]: Entering directory `/TESTDIR/dir2/dsh-0.25.10' PASS: tests/param-f.sh dsh: File ./tests/nonexistent.file could not be opened for read PASS: tests/param-f-fail.sh PASS: tests/param-f-with-space.sh PASS: tests/param-m.sh test to check that unknown parameter checking is right. ./dsh: unrecognized option '--unknown-parameter' ./dsh: invalid option -- 'u' PASS: tests/param-unknown.sh test1 test2 dsh: Process terminated (before write). PASS: tests/param-i.sh Check that cn4 option is working. PASS: tests/param-cn4.sh test to check that -b0 is rejected, and -b1 is accepted Buffer size needs to be greater than 1 Buffer size needs to be greater than 1 a b PASS: tests/param-b-0.sh dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call success dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call success success success success success a: dsh: Failed executing ./invalid-exec-file with llexec call b: dsh: Failed executing ./invalid-exec-file with llexec call c: dsh: Failed executing ./invalid-exec-file with llexec call d: dsh: Failed executing ./invalid-exec-file with llexec call success dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call success PASS: tests/param-r-invalid.sh 1: 1 2: 2 dsh: fork limit and wait shell cannot be specified at the same time PASS: tests/param-F-invalid.sh Fri Jan 1 19:20:48 UTC 2010 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] 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] 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] 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 Fri Jan 1 19:20:53 UTC 2010 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 `/TESTDIR/dir2/dsh-0.25.10' make[2]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10' make[1]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10' touch build-stamp fakeroot debian/rules binary dh_testdir dh_testroot dh_clean -k dh_clean: Compatibility levels before 5 are deprecated. dh_installdirs dh_installdirs: Compatibility levels before 5 are deprecated. # Add here commands to install the package into debian/dsh. /usr/bin/make install DESTDIR=/TESTDIR/dir2/dsh-0.25.10/debian/dsh make[1]: Entering directory `/TESTDIR/dir2/dsh-0.25.10' Making install in m4 make[2]: Entering directory `/TESTDIR/dir2/dsh-0.25.10/m4' make[3]: Entering directory `/TESTDIR/dir2/dsh-0.25.10/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 `/TESTDIR/dir2/dsh-0.25.10/m4' make[2]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10/m4' Making install in po make[2]: Entering directory `/TESTDIR/dir2/dsh-0.25.10/po' /bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/share mkdir -p -- /TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/share mkdir -p -- /TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/share/locale/ja/LC_MESSAGES installing ja.gmo as /TESTDIR/dir2/dsh-0.25.10/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` /TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/share/gettext/po; \ for file in Makefile.in.in Makevars remove-potcdate.sin ; do \ /usr/bin/install -c -m 644 ./$file \ /TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/share/gettext/po/$file; \ done; \ else \ : ; \ fi make[2]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10/po' make[2]: Entering directory `/TESTDIR/dir2/dsh-0.25.10' make[3]: Entering directory `/TESTDIR/dir2/dsh-0.25.10' test -z "/usr/bin" || mkdir -p -- "/TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/bin" /bin/bash ./libtool --mode=install install -p -o root -g root -m 755 -s 'dsh' '/TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/bin/dsh' install -p -o root -g root -m 755 -s dsh /TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/bin/dsh test -z "/etc/dsh" || mkdir -p -- "/TESTDIR/dir2/dsh-0.25.10/debian/dsh/etc/dsh" /usr/bin/install -c -m 644 'dsh.conf' '/TESTDIR/dir2/dsh-0.25.10/debian/dsh/etc/dsh/dsh.conf' for LANGS in ja ; do \ mkdir -p /TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/share/man/$LANGS/man1 ;\ mkdir -p /TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/share/man/$LANGS/man5 ;\ sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.$LANGS.1 \ > /TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/share/man/$LANGS/man1/dsh.1 ; \ sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.conf.$LANGS.5 \ > /TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/share/man/$LANGS/man5/dsh.conf.5 ; \ done test -z "/usr/share/man/man1" || mkdir -p -- "/TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/share/man/man1" /usr/bin/install -c -m 644 './build-man/dsh.1' '/TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/share/man/man1/dsh.1' test -z "/usr/share/man/man5" || mkdir -p -- "/TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/share/man/man5" /usr/bin/install -c -m 644 './build-man/dsh.conf.5' '/TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/share/man/man5/dsh.conf.5' make[3]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10' make[2]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10' make[1]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10' cp /TESTDIR/dir2/dsh-0.25.10/debian/machines.list /TESTDIR/dir2/dsh-0.25.10/debian/dsh/etc/dsh/machines.list cp /TESTDIR/dir2/dsh-0.25.10/dsh.conf /TESTDIR/dir2/dsh-0.25.10/debian/dsh/etc/dsh/dsh.conf ln -s ../machines.list /TESTDIR/dir2/dsh-0.25.10/debian/dsh/etc/dsh/group/all install -d /TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/lib/update-cluster install -m 755 /TESTDIR/dir2/dsh-0.25.10/debian/dsh.updatelist /TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/lib/update-cluster/ dh_testdir dh_testroot dh_installdocs NEWS dh_installdocs: Compatibility levels before 5 are deprecated. dh_installexamples dh_installexamples: Compatibility levels before 5 are deprecated. dh_installmenu dh_installmenu: Compatibility levels before 5 are deprecated. dh_installman dh_installman: Compatibility levels before 5 are deprecated. dh_installchangelogs ChangeLog dh_installchangelogs: Compatibility levels before 5 are deprecated. dh_link dh_link: Compatibility levels before 5 are deprecated. dh_strip dh_strip: Compatibility levels before 5 are deprecated. dh_shlibdeps dh_shlibdeps: Compatibility levels before 5 are deprecated. dh_compress dh_compress: Compatibility levels before 5 are deprecated. dh_fixperms dh_fixperms: Compatibility levels before 5 are deprecated. dh_installdeb dh_installdeb: Compatibility levels before 5 are deprecated. dh_gencontrol dh_gencontrol: Compatibility levels before 5 are deprecated. dh_md5sums dh_md5sums: Compatibility levels before 5 are deprecated. dh_builddeb dh_builddeb: Compatibility levels before 5 are deprecated. dpkg-deb: building package `dsh' in `../dsh_0.25.10-1_amd64.deb'. dpkg-genchanges >../dsh_0.25.10-1_amd64.changes dpkg-genchanges: including full source code in upload dpkg-buildpackage: full upload (original source is included) W: no hooks of type B found -- ignoring I: Copying back the cached apt archive contents I: new cache content pbuilder_0.194_all.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/pbuilder_0.194_all.deb' => `/TESTDIR/dir3/NUM/var/cache/apt/archives/pbuilder_0.194_all.deb': Invalid cross-device link I: new cache content sp_1.3.4-1.2.1-47_amd64.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/sp_1.3.4-1.2.1-47_amd64.deb' => `/TESTDIR/dir3/NUM/var/cache/apt/archives/sp_1.3.4-1.2.1-47_amd64.deb': Invalid cross-device link I: new cache content po4a_0.37.1-1_all.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/po4a_0.37.1-1_all.deb' => `/TESTDIR/dir3/NUM/var/cache/apt/archives/po4a_0.37.1-1_all.deb': Invalid cross-device link I: new cache content libdshconfig1_0.20.13-1_amd64.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/libdshconfig1_0.20.13-1_amd64.deb' => `/TESTDIR/dir3/NUM/var/cache/apt/archives/libdshconfig1_0.20.13-1_amd64.deb': Invalid cross-device link I: new cache content libmagic1_5.03-5_amd64.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/libmagic1_5.03-5_amd64.deb' => `/TESTDIR/dir3/NUM/var/cache/apt/archives/libmagic1_5.03-5_amd64.deb': Invalid cross-device link I: new cache content libsp1c2_1.3.4-1.2.1-47_amd64.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/libsp1c2_1.3.4-1.2.1-47_amd64.deb' => `/TESTDIR/dir3/NUM/var/cache/apt/archives/libsp1c2_1.3.4-1.2.1-47_amd64.deb': Invalid cross-device link I: new cache content libsgmls-perl_1.03ii-32_all.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/libsgmls-perl_1.03ii-32_all.deb' => `/TESTDIR/dir3/NUM/var/cache/apt/archives/libsgmls-perl_1.03ii-32_all.deb': Invalid cross-device link I: new cache content libdshconfig1-dev_0.20.13-1_amd64.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/libdshconfig1-dev_0.20.13-1_amd64.deb' => `/TESTDIR/dir3/NUM/var/cache/apt/archives/libdshconfig1-dev_0.20.13-1_amd64.deb': Invalid cross-device link I: new cache content file_5.03-5_amd64.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/file_5.03-5_amd64.deb' => `/TESTDIR/dir3/NUM/var/cache/apt/archives/file_5.03-5_amd64.deb': Invalid cross-device link I: new cache content debhelper_7.4.10_all.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/debhelper_7.4.10_all.deb' => `/TESTDIR/dir3/NUM/var/cache/apt/archives/debhelper_7.4.10_all.deb': Invalid cross-device link I: unmounting /TESTDIR/dir2 filesystem I: unmounting dev/pts filesystem I: unmounting proc filesystem I: cleaning the build env I: removing directory /TESTDIR/dir3/NUM and its subdirectories pbuilder-0.215ubuntu7/testsuite/normal/pbuilder-update-lenny-squeeze.log0000664000000000000000000020255612312041170023466 0ustar I: Upgrading for distribution squeeze I: Building the build Environment I: extracting base tarball [/TESTDIR/testimage] I: creating local configuration I: copying local configuration I: Installing apt-lines I: mounting /proc filesystem I: mounting /dev/pts filesystem I: policy-rc.d already exists I: Refreshing the base.tgz I: upgrading packages Get:1 http://localhost squeeze Release.gpg [835B] Get:2 http://localhost squeeze Release [89.5kB] Ign http://localhost squeeze/main Packages Get:3 http://localhost squeeze/main Packages [7916kB] Fetched XXXB in Xs (XXXXXB/s) Reading package lists... Reading package lists... Building dependency tree... Reading state information... The following NEW packages will be installed: dash diffutils gcc-4.4-base insserv libc-bin libc-dev-bin libdb4.7 liblzma0 libreadline6 sensible-utils xz-utils The following packages will be upgraded: apt aptitude base-files base-passwd bash binutils bsdutils bzip2 coreutils cpio cpp cpp-4.3 debconf debconf-i18n debianutils diff dpkg dpkg-dev e2fslibs e2fsprogs findutils g++ g++-4.3 gcc gcc-4.3 gcc-4.3-base gnupg gpgv grep gzip hostname initscripts libacl1 libattr1 libblkid1 libbz2-1.0 libc6 libc6-dev libcomerr2 libcwidget3 libdb4.6 libdevmapper1.02.1 libept0 libgcc1 libgdbm3 libgmp3c2 libgomp1 liblocale-gettext-perl libmpfr1ldbl libncurses5 libncursesw5 libpam-modules libpam-runtime libpam0g libreadline5 libselinux1 libsepol1 libslang2 libss2 libstdc++6 libstdc++6-4.3-dev libtext-charwidth-perl libtext-iconv-perl libtext-wrapi18n-perl libtimedate-perl libuuid1 libxapian15 linux-libc-dev login lsb-base make makedev mawk mktemp mount ncurses-base ncurses-bin passwd perl perl-base perl-modules procps readline-common sed sysv-rc sysvinit sysvinit-utils tar tzdata util-linux zlib1g 91 upgraded, 11 newly installed, 0 to remove and 0 not upgraded. Need to get 66.0MB of archives. After this operation, 12.2MB of additional disk space will be used. Get:1 http://localhost squeeze/main libc-dev-bin 2.10.1-7 [200kB] Get:2 http://localhost squeeze/main libc6-dev 2.10.1-7 [2546kB] Get:3 http://localhost squeeze/main libc-bin 2.10.1-7 [727kB] Get:4 http://localhost squeeze/main libc6 2.10.1-7 [4244kB] Get:5 http://localhost squeeze/main linux-libc-dev 2.6.30-8 [827kB] Get:6 http://localhost squeeze/main gcc-4.4-base 4.4.2-3 [113kB] Get:7 http://localhost squeeze/main libgcc1 1:4.4.2-3 [44.8kB] Get:8 http://localhost squeeze/main base-passwd 3.5.22 [41.9kB] Get:9 http://localhost squeeze/main base-files 5.0.0 [70.3kB] Get:10 http://localhost squeeze/main sensible-utils 0.0.1 [4442B] Get:11 http://localhost squeeze/main debianutils 3.2.2 [49.1kB] Get:12 http://localhost squeeze/main bash 4.0-4 [1154kB] Get:13 http://localhost squeeze/main coreutils 7.4-2 [4883kB] Get:14 http://localhost squeeze/main diffutils 1:2.8.1-18 [193kB] Get:15 http://localhost squeeze/main dpkg 1.15.5.2 [2223kB] Get:16 http://localhost squeeze/main e2fslibs 1.41.9-1 [141kB] Get:17 http://localhost squeeze/main e2fsprogs 1.41.9-1 [796kB] Get:18 http://localhost squeeze/main findutils 4.4.2-1 [689kB] Get:19 http://localhost squeeze/main grep 2.5.4-4 [317kB] Get:20 http://localhost squeeze/main gzip 1.3.12-8 [107kB] Get:21 http://localhost squeeze/main hostname 3.01 [14.2kB] Get:22 http://localhost squeeze/main login 1:4.1.4.2-1 [755kB] Get:23 http://localhost squeeze/main libselinux1 2.0.88-1 [85.0kB] Get:24 http://localhost squeeze/main perl-modules 5.10.1-8 [3478kB] Get:25 http://localhost squeeze/main libdb4.7 4.7.25-8 [650kB] Get:26 http://localhost squeeze/main bzip2 1.0.5-3 [48.6kB] Get:27 http://localhost squeeze/main libbz2-1.0 1.0.5-3 [45.4kB] Get:28 http://localhost squeeze/main libgdbm3 1.8.3-8 [46.1kB] Get:29 http://localhost squeeze/main zlib1g 1:1.2.3.3.dfsg-15 [75.8kB] Get:30 http://localhost squeeze/main perl 5.10.1-8 [4417kB] Get:31 http://localhost squeeze/main perl-base 5.10.1-8 [1086kB] Get:32 http://localhost squeeze/main liblocale-gettext-perl 1.05-6 [21.6kB] Get:33 http://localhost squeeze/main libtext-iconv-perl 1.7-2 [18.5kB] Get:34 http://localhost squeeze/main libtext-charwidth-perl 0.04-6 [11.9kB] Get:35 http://localhost squeeze/main libtext-wrapi18n-perl 0.06-7 [9004B] Get:36 http://localhost squeeze/main debconf-i18n 1.5.28 [178kB] Get:37 http://localhost squeeze/main debconf 1.5.28 [149kB] Get:38 http://localhost squeeze/main libpam0g 1.1.0-4 [116kB] Get:39 http://localhost squeeze/main libpam-modules 1.1.0-4 [351kB] Get:40 http://localhost squeeze/main passwd 1:4.1.4.2-1 [1054kB] Get:41 http://localhost squeeze/main libuuid1 2.16.1-4 [56.7kB] Get:42 http://localhost squeeze/main libblkid1 2.16.1-4 [86.2kB] Get:43 http://localhost squeeze/main mount 2.16.1-4 [170kB] Get:44 http://localhost squeeze/main ncurses-bin 5.7+20090803-2 [312kB] Get:45 http://localhost squeeze/main sed 4.2.1-4 [251kB] Get:46 http://localhost squeeze/main sysvinit-utils 2.87dsf-8 [110kB] Get:47 http://localhost squeeze/main libsepol1 2.0.40-2 [129kB] Get:48 http://localhost squeeze/main sysvinit 2.87dsf-8 [112kB] Get:49 http://localhost squeeze/main tar 1.22-2 [881kB] Get:50 http://localhost squeeze/main lsb-base 3.2-23 [20.0kB] Get:51 http://localhost squeeze/main tzdata 2009s-1 [765kB] Get:52 http://localhost squeeze/main initscripts 2.87dsf-8 [64.0kB] Get:53 http://localhost squeeze/main insserv 1.12.0-14 [68.7kB] Get:54 http://localhost squeeze/main sysv-rc 2.87dsf-8 [54.2kB] Get:55 http://localhost squeeze/main util-linux 2.16.1-4 [623kB] Get:56 http://localhost squeeze/main dash 0.5.5.1-3 [101kB] Get:57 http://localhost squeeze/main diff 1:2.8.1-18 [5842B] Get:58 http://localhost squeeze/main mktemp 7.4-2 [13.9kB] Get:59 http://localhost squeeze/main bsdutils 1:2.16.1-4 [78.0kB] Get:60 http://localhost squeeze/main libncurses5 5.7+20090803-2 [355kB] Get:61 http://localhost squeeze/main ncurses-base 5.7+20090803-2 [182kB] Get:62 http://localhost squeeze/main mawk 1.3.3-15 [90.1kB] Get:63 http://localhost squeeze/main libstdc++6 4.4.2-3 [342kB] Get:64 http://localhost squeeze/main libxapian15 1.0.16-3 [815kB] Get:65 http://localhost squeeze/main libept0 0.5.29 [204kB] Get:66 http://localhost squeeze/main libncursesw5 5.7+20090803-2 [379kB] Get:67 http://localhost squeeze/main libcwidget3 0.5.13-1 [309kB] Get:68 http://localhost squeeze/main aptitude 0.4.11.11-1+b2 [3067kB] Get:69 http://localhost squeeze/main apt 0.7.23.1 [1652kB] Get:70 http://localhost squeeze/main readline-common 6.0-5 [51.9kB] Get:71 http://localhost squeeze/main libreadline6 6.0-5 [152kB] Get:72 http://localhost squeeze/main gpgv 1.4.10-2 [218kB] Get:73 http://localhost squeeze/main gnupg 1.4.10-2 [2137kB] Get:74 http://localhost squeeze/main libattr1 1:2.4.44-1 [12.7kB] Get:75 http://localhost squeeze/main libacl1 2.2.48-1 [19.2kB] Get:76 http://localhost squeeze/main libcomerr2 1.41.9-1 [46.4kB] Get:77 http://localhost squeeze/main libpam-runtime 1.1.0-4 [219kB] Get:78 http://localhost squeeze/main libslang2 2.2.1-1 [539kB] Get:79 http://localhost squeeze/main libss2 1.41.9-1 [51.9kB] Get:80 http://localhost squeeze/main cpio 2.10-1 [245kB] Get:81 http://localhost squeeze/main libreadline5 5.2-7 [146kB] Get:82 http://localhost squeeze/main libgomp1 4.4.2-3 [25.3kB] Get:83 http://localhost squeeze/main libgmp3c2 2:4.3.1+dfsg-3 [307kB] Get:84 http://localhost squeeze/main libmpfr1ldbl 2.4.1-2 [419kB] Get:85 http://localhost squeeze/main libstdc++6-4.3-dev 4.3.4-6 [1384kB] Get:86 http://localhost squeeze/main g++-4.3 4.3.4-6 [4804kB] Get:87 http://localhost squeeze/main gcc-4.3 4.3.4-6 [2595kB] Get:88 http://localhost squeeze/main cpp-4.3 4.3.4-6 [3349kB] Get:89 http://localhost squeeze/main binutils 2.20-4 [3300kB] Get:90 http://localhost squeeze/main gcc-4.3-base 4.3.4-6 [108kB] Get:91 http://localhost squeeze/main libdevmapper1.02.1 2:1.02.39-1 [76.1kB] Get:92 http://localhost squeeze/main procps 1:3.2.8-2 [246kB] Get:93 http://localhost squeeze/main libdb4.6 4.6.21-14 [590kB] Get:94 http://localhost squeeze/main cpp 4:4.3.3-9+nmu1 [14.5kB] Get:95 http://localhost squeeze/main liblzma0 4.999.9beta+20091004-1 [146kB] Get:96 http://localhost squeeze/main xz-utils 4.999.9beta+20091004-1 [223kB] Get:97 http://localhost squeeze/main make 3.81-7 [404kB] Get:98 http://localhost squeeze/main libtimedate-perl 1.1900-1 [40.5kB] Get:99 http://localhost squeeze/main dpkg-dev 1.15.5.2 [756kB] Get:100 http://localhost squeeze/main gcc 4:4.3.3-9+nmu1 [5032B] Get:101 http://localhost squeeze/main g++ 4:4.3.3-9+nmu1 [1386B] Get:102 http://localhost squeeze/main makedev 2.3.1-89 [42.4kB] debconf: delaying package configuration, since apt-utils is not installed Fetched XXXB in Xs (XXXXXB/s) Selecting previously deselected package libc-dev-bin. (Reading database ... 9662 files and directories currently installed.) Unpacking libc-dev-bin (from .../libc-dev-bin_2.10.1-7_amd64.deb) ... Replacing files in old package libc6-dev ... Preparing to replace libc6-dev 2.7-18 (using .../libc6-dev_2.10.1-7_amd64.deb) ... Unpacking replacement libc6-dev ... Selecting previously deselected package libc-bin. dpkg: considering deconfiguration of libc6, which would be broken by installation of libc-bin ... dpkg: yes, will deconfigure libc6 (broken by libc-bin). Unpacking libc-bin (from .../libc-bin_2.10.1-7_amd64.deb) ... De-configuring libc6 ... Replacing files in old package libc6 ... Setting up libc-bin (2.10.1-7) ... Installing new version of config file /etc/gai.conf ... Installing new version of config file /etc/bindresvport.blacklist ... (Reading database ... 9688 files and directories currently installed.) Preparing to replace libc6 2.7-18 (using .../libc6_2.10.1-7_amd64.deb) ... Removing obsolete conffile /etc/init.d/glibc.sh ... Checking for services that may need to be restarted... Checking init scripts... Unpacking replacement libc6 ... Setting up libc6 (2.10.1-7) ... Checking for services that may need to be restarted... Checking init scripts... Nothing to restart. (Reading database ... 9683 files and directories currently installed.) Preparing to replace linux-libc-dev 2.6.26-19 (using .../linux-libc-dev_2.6.30-8_amd64.deb) ... Unpacking replacement linux-libc-dev ... Selecting previously deselected package gcc-4.4-base. Unpacking gcc-4.4-base (from .../gcc-4.4-base_4.4.2-3_amd64.deb) ... Setting up gcc-4.4-base (4.4.2-3) ... (Reading database ... 9777 files and directories currently installed.) Preparing to replace libgcc1 1:4.3.2-1.1 (using .../libgcc1_1%3a4.4.2-3_amd64.deb) ... Unpacking replacement libgcc1 ... Setting up libgcc1 (1:4.4.2-3) ... (Reading database ... 9777 files and directories currently installed.) Preparing to replace base-passwd 3.5.20 (using .../base-passwd_3.5.22_amd64.deb) ... Unpacking replacement base-passwd ... Setting up base-passwd (3.5.22) ... (Reading database ... 9777 files and directories currently installed.) Preparing to replace base-files 5lenny4 (using .../base-files_5.0.0_amd64.deb) ... Unpacking replacement base-files ... Replacing files in old package dpkg ... Setting up base-files (5.0.0) ... 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 ... Selecting previously deselected package sensible-utils. (Reading database ... 9776 files and directories currently installed.) Unpacking sensible-utils (from .../sensible-utils_0.0.1_all.deb) ... Replacing files in old package debianutils ... Setting up sensible-utils (0.0.1) ... (Reading database ... 9780 files and directories currently installed.) Preparing to replace debianutils 2.30 (using .../debianutils_3.2.2_amd64.deb) ... Unpacking replacement debianutils ... Setting up debianutils (3.2.2) ... (Reading database ... 9776 files and directories currently installed.) Preparing to replace bash 3.2-4 (using .../archives/bash_4.0-4_amd64.deb) ... Unpacking replacement bash ... Setting up bash (4.0-4) ... Installing new version of config file /etc/skel/.bashrc ... Installing new version of config file /etc/bash.bashrc ... (Reading database ... 9797 files and directories currently installed.) Preparing to replace coreutils 6.10-6 (using .../coreutils_7.4-2_amd64.deb) ... Unpacking replacement coreutils ... Replacing files in old package mktemp ... Setting up coreutils (7.4-2) ... Selecting previously deselected package diffutils. (Reading database ... 9804 files and directories currently installed.) Unpacking diffutils (from .../diffutils_1%3a2.8.1-18_amd64.deb) ... Replacing files in old package diff ... Setting up diffutils (1:2.8.1-18) ... (Reading database ... 9809 files and directories currently installed.) Preparing to replace dpkg 1.14.25 (using .../dpkg_1.15.5.2_amd64.deb) ... Unpacking replacement dpkg ... Setting up dpkg (1.15.5.2) ... Installing new version of config file /etc/logrotate.d/dpkg ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 9806 files and directories currently installed.) Preparing to replace e2fslibs 1.41.3-1 (using .../e2fslibs_1.41.9-1_amd64.deb) ... Unpacking replacement e2fslibs ... Setting up e2fslibs (1.41.9-1) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 9806 files and directories currently installed.) Preparing to replace e2fsprogs 1.41.3-1 (using .../e2fsprogs_1.41.9-1_amd64.deb) ... Unpacking replacement e2fsprogs ... Setting up e2fsprogs (1.41.9-1) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 9803 files and directories currently installed.) Preparing to replace findutils 4.4.0-2 (using .../findutils_4.4.2-1_amd64.deb) ... install-info: warning: maintainer scripts should not call install-info anymore, install-info: warning: this is handled now by a dpkg trigger provided by the install-info: warning: install-info package; package findutils should be updated. Unpacking replacement findutils ... Setting up findutils (4.4.2-1) ... install-info: warning: maintainer scripts should not call install-info anymore, install-info: warning: this is handled now by a dpkg trigger provided by the install-info: warning: install-info package; package findutils should be updated. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 9805 files and directories currently installed.) Preparing to replace grep 2.5.3~dfsg-6 (using .../grep_2.5.4-4_amd64.deb) ... Unpacking replacement grep ... Setting up grep (2.5.4-4) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 9806 files and directories currently installed.) Preparing to replace gzip 1.3.12-6 (using .../gzip_1.3.12-8_amd64.deb) ... install-info: warning: maintainer scripts should not call install-info anymore, install-info: warning: this is handled now by a dpkg trigger provided by the install-info: warning: install-info package; package gzip should be updated. Unpacking replacement gzip ... Setting up gzip (1.3.12-8) ... install-info: warning: maintainer scripts should not call install-info anymore, install-info: warning: this is handled now by a dpkg trigger provided by the install-info: warning: install-info package; package gzip should be updated. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 9806 files and directories currently installed.) Preparing to replace hostname 2.95 (using .../hostname_3.01_amd64.deb) ... Unpacking replacement hostname ... Setting up hostname (3.01) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 9812 files and directories currently installed.) Preparing to replace login 1:4.1.1-6 (using .../login_1%3a4.1.4.2-1_amd64.deb) ... Unpacking replacement login ... Setting up login (1:4.1.4.2-1) ... Installing new version of config file /etc/login.defs ... Installing new version of config file /etc/securetty ... Installing new version of config file /etc/pam.d/login ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 9811 files and directories currently installed.) Preparing to replace libselinux1 2.0.65-5 (using .../libselinux1_2.0.88-1_amd64.deb) ... Unpacking replacement libselinux1 ... Setting up libselinux1 (2.0.88-1) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 9811 files and directories currently installed.) Preparing to replace perl-modules 5.10.0-19lenny2 (using .../perl-modules_5.10.1-8_all.deb) ... Unpacking replacement perl-modules ... Selecting previously deselected package libdb4.7. Unpacking libdb4.7 (from .../libdb4.7_4.7.25-8_amd64.deb) ... Setting up libdb4.7 (4.7.25-8) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 9916 files and directories currently installed.) Preparing to replace bzip2 1.0.5-1 (using .../bzip2_1.0.5-3_amd64.deb) ... Unpacking replacement bzip2 ... Preparing to replace libbz2-1.0 1.0.5-1 (using .../libbz2-1.0_1.0.5-3_amd64.deb) ... Unpacking replacement libbz2-1.0 ... Setting up libbz2-1.0 (1.0.5-3) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 9916 files and directories currently installed.) Preparing to replace libgdbm3 1.8.3-3 (using .../libgdbm3_1.8.3-8_amd64.deb) ... Unpacking replacement libgdbm3 ... Preparing to replace zlib1g 1:1.2.3.3.dfsg-12 (using .../zlib1g_1%3a1.2.3.3.dfsg-15_amd64.deb) ... Unpacking replacement zlib1g ... Setting up zlib1g (1:1.2.3.3.dfsg-15) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 9919 files and directories currently installed.) Preparing to replace perl 5.10.0-19lenny2 (using .../perl_5.10.1-8_amd64.deb) ... Unpacking replacement perl ... Preparing to replace perl-base 5.10.0-19lenny2 (using .../perl-base_5.10.1-8_amd64.deb) ... Unpacking replacement perl-base ... Setting up perl-base (5.10.1-8) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 9979 files and directories currently installed.) Preparing to replace liblocale-gettext-perl 1.05-4 (using .../liblocale-gettext-perl_1.05-6_amd64.deb) ... Unpacking replacement liblocale-gettext-perl ... Setting up liblocale-gettext-perl (1.05-6) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 9979 files and directories currently installed.) Preparing to replace libtext-iconv-perl 1.7-1+b1 (using .../libtext-iconv-perl_1.7-2_amd64.deb) ... Unpacking replacement libtext-iconv-perl ... Setting up libtext-iconv-perl (1.7-2) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 9980 files and directories currently installed.) Preparing to replace libtext-charwidth-perl 0.04-5+b1 (using .../libtext-charwidth-perl_0.04-6_amd64.deb) ... Unpacking replacement libtext-charwidth-perl ... Setting up libtext-charwidth-perl (0.04-6) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 9980 files and directories currently installed.) Preparing to replace libtext-wrapi18n-perl 0.06-6 (using .../libtext-wrapi18n-perl_0.06-7_all.deb) ... Unpacking replacement libtext-wrapi18n-perl ... Setting up libtext-wrapi18n-perl (0.06-7) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 9980 files and directories currently installed.) Preparing to replace debconf-i18n 1.5.24 (using .../debconf-i18n_1.5.28_all.deb) ... Unpacking replacement debconf-i18n ... Setting up debconf-i18n (1.5.28) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 9984 files and directories currently installed.) Preparing to replace debconf 1.5.24 (using .../debconf_1.5.28_all.deb) ... Unpacking replacement debconf ... Setting up debconf (1.5.28) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 9970 files and directories currently installed.) Preparing to replace libpam0g 1.0.1-5+lenny1 (using .../libpam0g_1.1.0-4_amd64.deb) ... Unpacking replacement libpam0g ... Setting up libpam0g (1.1.0-4) ... Checking for services that may need to be restarted...Checking init scripts... Nothing to restart. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 9970 files and directories currently installed.) Preparing to replace libpam-modules 1.0.1-5+lenny1 (using .../libpam-modules_1.1.0-4_amd64.deb) ... Unpacking replacement libpam-modules ... Setting up libpam-modules (1.1.0-4) ... Installing new version of config file /etc/security/limits.conf ... Installing new version of config file /etc/security/namespace.init ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 9975 files and directories currently installed.) Preparing to replace passwd 1:4.1.1-6 (using .../passwd_1%3a4.1.4.2-1_amd64.deb) ... Unpacking replacement passwd ... Setting up passwd (1:4.1.4.2-1) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 9968 files and directories currently installed.) Preparing to replace libuuid1 1.41.3-1 (using .../libuuid1_2.16.1-4_amd64.deb) ... Unpacking replacement libuuid1 ... Setting up libuuid1 (2.16.1-4) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 9968 files and directories currently installed.) Preparing to replace libblkid1 1.41.3-1 (using .../libblkid1_2.16.1-4_amd64.deb) ... Unpacking replacement libblkid1 ... Setting up libblkid1 (2.16.1-4) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 9969 files and directories currently installed.) Preparing to replace mount 2.13.1.1-1 (using .../mount_2.16.1-4_amd64.deb) ... Unpacking replacement mount ... Setting up mount (2.16.1-4) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 9969 files and directories currently installed.) Preparing to replace ncurses-bin 5.7+20081213-1 (using .../ncurses-bin_5.7+20090803-2_amd64.deb) ... Unpacking replacement ncurses-bin ... Setting up ncurses-bin (5.7+20090803-2) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 9969 files and directories currently installed.) Preparing to replace sed 4.1.5-6 (using .../archives/sed_4.2.1-4_amd64.deb) ... Unpacking replacement sed ... Setting up sed (4.2.1-4) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 9972 files and directories currently installed.) Preparing to replace sysvinit-utils 2.86.ds1-61 (using .../sysvinit-utils_2.87dsf-8_amd64.deb) ... Unpacking replacement sysvinit-utils ... Replacing files in old package sysvinit ... Setting up sysvinit-utils (2.87dsf-8) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 9976 files and directories currently installed.) Preparing to replace libsepol1 2.0.30-2 (using .../libsepol1_2.0.40-2_amd64.deb) ... Unpacking replacement libsepol1 ... Setting up libsepol1 (2.0.40-2) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 9976 files and directories currently installed.) Preparing to replace sysvinit 2.86.ds1-61 (using .../sysvinit_2.87dsf-8_amd64.deb) ... Unpacking replacement sysvinit ... Setting up sysvinit (2.87dsf-8) ... init: timeout opening/writing control channel /dev/initctl (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 9977 files and directories currently installed.) Preparing to replace tar 1.20-1 (using .../archives/tar_1.22-2_amd64.deb) ... Unpacking replacement tar ... Setting up tar (1.22-2) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 9977 files and directories currently installed.) Preparing to replace lsb-base 3.2-20 (using .../lsb-base_3.2-23_all.deb) ... Unpacking replacement lsb-base ... Setting up lsb-base (3.2-23) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 9977 files and directories currently installed.) Preparing to replace tzdata 2009l-0lenny1 (using .../tzdata_2009s-1_all.deb) ... Unpacking replacement tzdata ... Setting up tzdata (2009s-1) ... Current default time zone: 'Etc/UTC' Local time is now: XXXX Universal Time is now: XXXX Run 'dpkg-reconfigure tzdata' if you wish to change it. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 9983 files and directories currently installed.) Preparing to replace initscripts 2.86.ds1-61 (using .../initscripts_2.87dsf-8_amd64.deb) ... Unpacking replacement initscripts ... Setting up initscripts (2.87dsf-8) ... Installing new version of config file /etc/init.d/bootlogd ... Installing new version of config file /etc/init.d/stop-bootlogd ... Installing new version of config file /etc/init.d/stop-bootlogd-single ... Installing new version of config file /etc/init.d/bootmisc.sh ... Installing new version of config file /etc/init.d/checkfs.sh ... Installing new version of config file /etc/init.d/checkroot.sh ... Installing new version of config file /etc/init.d/hostname.sh ... Installing new version of config file /etc/init.d/killprocs ... Installing new version of config file /etc/init.d/mountnfs-bootclean.sh ... Installing new version of config file /etc/init.d/mountoverflowtmp ... Installing new version of config file /etc/init.d/mountdevsubfs.sh ... Installing new version of config file /etc/init.d/mountkernfs.sh ... Installing new version of config file /etc/init.d/mtab.sh ... Installing new version of config file /etc/init.d/rc.local ... Installing new version of config file /etc/init.d/rmnologin ... Installing new version of config file /etc/init.d/umountfs ... Installing new version of config file /etc/init.d/umountnfs.sh ... Installing new version of config file /etc/init.d/urandom ... Installing new version of config file /etc/network/if-up.d/mountnfs ... Selecting previously deselected package insserv. dpkg: considering deconfiguration of sysv-rc, which would be broken by installation of insserv ... dpkg: yes, will deconfigure sysv-rc (broken by insserv). (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 9985 files and directories currently installed.) Unpacking insserv (from .../insserv_1.12.0-14_amd64.deb) ... De-configuring sysv-rc ... Setting up insserv (1.12.0-14) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 10014 files and directories currently installed.) Preparing to replace sysv-rc 2.86.ds1-61 (using .../sysv-rc_2.87dsf-8_all.deb) ... Unpacking replacement sysv-rc ... Setting up sysv-rc (2.87dsf-8) ... info: Checking if it is safe to convert to dependency based boot. info: Reordering boot system, log to /var/lib/insserv/run-20091129T1002.log success: Enabled dependency based boot system. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 10014 files and directories currently installed.) Preparing to replace util-linux 2.13.1.1-1 (using .../util-linux_2.16.1-4_amd64.deb) ... install-info: warning: maintainer scripts should not call install-info anymore, install-info: warning: this is handled now by a dpkg trigger provided by the install-info: warning: install-info package; package util-linux should be updated. Unpacking replacement util-linux ... Setting up util-linux (2.16.1-4) ... Installing new version of config file /etc/init.d/hwclockfirst.sh ... Installing new version of config file /etc/init.d/hwclock.sh ... Selecting previously deselected package dash. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 10033 files and directories currently installed.) Unpacking dash (from .../dash_0.5.5.1-3_amd64.deb) ... Adding `diversion of /bin/sh to /bin/sh.distrib by dash' Adding `diversion of /usr/share/man/man1/sh.1.gz to /usr/share/man/man1/sh.distrib.1.gz by dash' Setting up dash (0.5.5.1-3) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 10044 files and directories currently installed.) Preparing to replace diff 2.8.1-12 (using .../diff_1%3a2.8.1-18_all.deb) ... Unpacking replacement diff ... Setting up diff (1:2.8.1-18) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 10042 files and directories currently installed.) Preparing to replace mktemp 1.5-9 (using .../archives/mktemp_7.4-2_all.deb) ... Unpacking replacement mktemp ... Setting up mktemp (7.4-2) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 10042 files and directories currently installed.) Preparing to replace bsdutils 1:2.13.1.1-1 (using .../bsdutils_1%3a2.16.1-4_amd64.deb) ... Unpacking replacement bsdutils ... Setting up bsdutils (1:2.16.1-4) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 10042 files and directories currently installed.) Preparing to replace libncurses5 5.7+20081213-1 (using .../libncurses5_5.7+20090803-2_amd64.deb) ... Unpacking replacement libncurses5 ... Setting up libncurses5 (5.7+20090803-2) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 10042 files and directories currently installed.) Preparing to replace ncurses-base 5.7+20081213-1 (using .../ncurses-base_5.7+20090803-2_all.deb) ... Unpacking replacement ncurses-base ... Setting up ncurses-base (5.7+20090803-2) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 10042 files and directories currently installed.) Preparing to replace mawk 1.3.3-11.1 (using .../mawk_1.3.3-15_amd64.deb) ... Unpacking replacement mawk ... Preparing to replace libstdc++6 4.3.2-1.1 (using .../libstdc++6_4.4.2-3_amd64.deb) ... Unpacking replacement libstdc++6 ... Setting up libstdc++6 (4.4.2-3) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 10042 files and directories currently installed.) Preparing to replace libxapian15 1.0.7-4 (using .../libxapian15_1.0.16-3_amd64.deb) ... Unpacking replacement libxapian15 ... Preparing to replace libept0 0.5.22 (using .../libept0_0.5.29_amd64.deb) ... Unpacking replacement libept0 ... Preparing to replace libncursesw5 5.7+20081213-1 (using .../libncursesw5_5.7+20090803-2_amd64.deb) ... Unpacking replacement libncursesw5 ... Preparing to replace libcwidget3 0.5.12-4 (using .../libcwidget3_0.5.13-1_amd64.deb) ... Unpacking replacement libcwidget3 ... Preparing to replace aptitude 0.4.11.11-1~lenny1 (using .../aptitude_0.4.11.11-1+b2_amd64.deb) ... Unpacking replacement aptitude ... Preparing to replace apt 0.7.20.2+lenny1 (using .../apt_0.7.23.1_amd64.deb) ... Unpacking replacement apt ... Setting up apt (0.7.23.1) ... Installing new version of config file /etc/cron.daily/apt ... gpg: key 6070D3A1: "Debian Archive Automatic Signing Key (4.0/etch) " not changed gpg: key ADB11277: "Etch Stable Release Key " not changed gpg: key BBE55AB3: "Debian-Volatile Archive Automatic Signing Key (4.0/etch)" not changed gpg: key F42584E6: "Lenny Stable Release Key " not changed gpg: key 55BE302B: "Debian Archive Automatic Signing Key (5.0/lenny) " not changed gpg: key 6D849617: "Debian-Volatile Archive Automatic Signing Key (5.0/lenny)" not changed gpg: Total number processed: 6 gpg: unchanged: 6 (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 10044 files and directories currently installed.) Preparing to replace readline-common 5.2-3.1 (using .../readline-common_6.0-5_all.deb) ... install-info: warning: maintainer scripts should not call install-info anymore, install-info: warning: this is handled now by a dpkg trigger provided by the install-info: warning: install-info package; package readline-common should be updated. Unpacking replacement readline-common ... Setting up readline-common (6.0-5) ... Selecting previously deselected package libreadline6. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 10044 files and directories currently installed.) Unpacking libreadline6 (from .../libreadline6_6.0-5_amd64.deb) ... Setting up libreadline6 (6.0-5) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 10057 files and directories currently installed.) Preparing to replace gpgv 1.4.9-3+lenny1 (using .../gpgv_1.4.10-2_amd64.deb) ... Unpacking replacement gpgv ... Setting up gpgv (1.4.10-2) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 10058 files and directories currently installed.) Preparing to replace gnupg 1.4.9-3+lenny1 (using .../gnupg_1.4.10-2_amd64.deb) ... Unpacking replacement gnupg ... Setting up gnupg (1.4.10-2) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 10066 files and directories currently installed.) Preparing to replace libattr1 1:2.4.43-2 (using .../libattr1_1%3a2.4.44-1_amd64.deb) ... Unpacking replacement libattr1 ... Setting up libattr1 (1:2.4.44-1) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 10066 files and directories currently installed.) Preparing to replace libacl1 2.2.47-2 (using .../libacl1_2.2.48-1_amd64.deb) ... Unpacking replacement libacl1 ... Setting up libacl1 (2.2.48-1) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 10066 files and directories currently installed.) Preparing to replace libcomerr2 1.41.3-1 (using .../libcomerr2_1.41.9-1_amd64.deb) ... Unpacking replacement libcomerr2 ... Setting up libcomerr2 (1.41.9-1) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 10066 files and directories currently installed.) Preparing to replace libpam-runtime 1.0.1-5+lenny1 (using .../libpam-runtime_1.1.0-4_all.deb) ... Unpacking replacement libpam-runtime ... Setting up libpam-runtime (1.1.0-4) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 10083 files and directories currently installed.) Preparing to replace libslang2 2.1.3-3 (using .../libslang2_2.2.1-1_amd64.deb) ... Unpacking replacement libslang2 ... Setting up libslang2 (2.2.1-1) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 10083 files and directories currently installed.) Preparing to replace libss2 1.41.3-1 (using .../libss2_1.41.9-1_amd64.deb) ... Unpacking replacement libss2 ... Setting up libss2 (1.41.9-1) ... (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 10083 files and directories currently installed.) Preparing to replace cpio 2.9-13 (using .../archives/cpio_2.10-1_amd64.deb) ... Unpacking replacement cpio ... Preparing to replace libreadline5 5.2-3.1 (using .../libreadline5_5.2-7_amd64.deb) ... Unpacking replacement libreadline5 ... Preparing to replace libgomp1 4.3.2-1.1 (using .../libgomp1_4.4.2-3_amd64.deb) ... Unpacking replacement libgomp1 ... Preparing to replace libgmp3c2 2:4.2.2+dfsg-3 (using .../libgmp3c2_2%3a4.3.1+dfsg-3_amd64.deb) ... Unpacking replacement libgmp3c2 ... Preparing to replace libmpfr1ldbl 2.3.1.dfsg.1-2 (using .../libmpfr1ldbl_2.4.1-2_amd64.deb) ... Unpacking replacement libmpfr1ldbl ... Preparing to replace libstdc++6-4.3-dev 4.3.2-1.1 (using .../libstdc++6-4.3-dev_4.3.4-6_amd64.deb) ... Unpacking replacement libstdc++6-4.3-dev ... Preparing to replace g++-4.3 4.3.2-1.1 (using .../g++-4.3_4.3.4-6_amd64.deb) ... Unpacking replacement g++-4.3 ... Preparing to replace gcc-4.3 4.3.2-1.1 (using .../gcc-4.3_4.3.4-6_amd64.deb) ... Unpacking replacement gcc-4.3 ... Preparing to replace cpp-4.3 4.3.2-1.1 (using .../cpp-4.3_4.3.4-6_amd64.deb) ... Unpacking replacement cpp-4.3 ... Preparing to replace binutils 2.18.1~cvs20080103-7 (using .../binutils_2.20-4_amd64.deb) ... Unpacking replacement binutils ... Preparing to replace gcc-4.3-base 4.3.2-1.1 (using .../gcc-4.3-base_4.3.4-6_amd64.deb) ... Unpacking replacement gcc-4.3-base ... Preparing to replace libdevmapper1.02.1 2:1.02.27-4 (using .../libdevmapper1.02.1_2%3a1.02.39-1_amd64.deb) ... Unpacking replacement libdevmapper1.02.1 ... Preparing to replace procps 1:3.2.7-11 (using .../procps_1%3a3.2.8-2_amd64.deb) ... Unpacking replacement procps ... Preparing to replace libdb4.6 4.6.21-11 (using .../libdb4.6_4.6.21-14_amd64.deb) ... Unpacking replacement libdb4.6 ... Preparing to replace cpp 4:4.3.2-2 (using .../cpp_4%3a4.3.3-9+nmu1_amd64.deb) ... Unpacking replacement cpp ... Selecting previously deselected package liblzma0. Unpacking liblzma0 (from .../liblzma0_4.999.9beta+20091004-1_amd64.deb) ... Selecting previously deselected package xz-utils. Unpacking xz-utils (from .../xz-utils_4.999.9beta+20091004-1_amd64.deb) ... Preparing to replace make 3.81-5 (using .../archives/make_3.81-7_amd64.deb) ... Unpacking replacement make ... Preparing to replace libtimedate-perl 1.1600-9 (using .../libtimedate-perl_1.1900-1_all.deb) ... Unpacking replacement libtimedate-perl ... Preparing to replace dpkg-dev 1.14.25 (using .../dpkg-dev_1.15.5.2_all.deb) ... Unpacking replacement dpkg-dev ... Preparing to replace gcc 4:4.3.2-2 (using .../gcc_4%3a4.3.3-9+nmu1_amd64.deb) ... Removing old gcc doc directory. Unpacking replacement gcc ... Preparing to replace g++ 4:4.3.2-2 (using .../g++_4%3a4.3.3-9+nmu1_amd64.deb) ... Unpacking replacement g++ ... Preparing to replace makedev 2.3.1-88 (using .../makedev_2.3.1-89_all.deb) ... Unpacking replacement makedev ... Setting up libc-dev-bin (2.10.1-7) ... Setting up linux-libc-dev (2.6.30-8) ... Setting up libc6-dev (2.10.1-7) ... Setting up libgdbm3 (1.8.3-8) ... Setting up bzip2 (1.0.5-3) ... Setting up mawk (1.3.3-15) ... Setting up libxapian15 (1.0.16-3) ... Setting up libept0 (0.5.29) ... Setting up libncursesw5 (5.7+20090803-2) ... Setting up libcwidget3 (0.5.13-1) ... Setting up aptitude (0.4.11.11-1+b2) ... Setting up cpio (2.10-1) ... install-info: warning: maintainer scripts should not call install-info anymore, install-info: warning: this is handled now by a dpkg trigger provided by the install-info: warning: install-info package; package cpio should be updated. Setting up libreadline5 (5.2-7) ... Setting up libgomp1 (4.4.2-3) ... Setting up libgmp3c2 (2:4.3.1+dfsg-3) ... Setting up libmpfr1ldbl (2.4.1-2) ... Setting up gcc-4.3-base (4.3.4-6) ... Setting up cpp-4.3 (4.3.4-6) ... Setting up binutils (2.20-4) ... Setting up gcc-4.3 (4.3.4-6) ... Setting up libdevmapper1.02.1 (2:1.02.39-1) ... Setting up procps (1:3.2.8-2) ... Installing new version of config file /etc/sysctl.conf ... Installing new version of config file /etc/init.d/procps ... Setting up libdb4.6 (4.6.21-14) ... Setting up cpp (4:4.3.3-9+nmu1) ... Setting up liblzma0 (4.999.9beta+20091004-1) ... Setting up xz-utils (4.999.9beta+20091004-1) ... Setting up make (3.81-7) ... Setting up gcc (4:4.3.3-9+nmu1) ... Setting up makedev (2.3.1-89) ... Setting up perl-modules (5.10.1-8) ... Setting up libstdc++6-4.3-dev (4.3.4-6) ... Setting up perl (5.10.1-8) ... Setting up g++-4.3 (4.3.4-6) ... Setting up libtimedate-perl (1.1900-1) ... Setting up dpkg-dev (1.15.5.2) ... Setting up g++ (4:4.3.3-9+nmu1) ... Reading package lists... Building dependency tree... Reading state information... 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. Reading package lists... Building dependency tree... Reading state information... build-essential is already the newest version. dpkg-dev is already the newest version. apt is already the newest version. apt set to manually installed. aptitude is already the newest version. 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. I: user script /var/cache/pbuilder/build//NUM/tmp/hooks/E50-initscripts-2.86.ds1-7.workaround.sh starting umount: /sys: not mounted umount: /run: not found umount: /proc/bus/usb: not mounted umount: /dev/shm: not mounted umount: /lib/init/rw: not mounted cat: /var/run/inetd.pid: No such file or directory kill: 20: Usage: kill [-s sigspec | -signum | -sigspec] [pid | job]... or kill -l [exitstatus] I: user script /var/cache/pbuilder/build//NUM/tmp/hooks/E50-initscripts-2.86.ds1-7.workaround.sh finished I: unmounting dev/pts filesystem I: unmounting proc filesystem I: creating base tarball [/TESTDIR/testimage] I: cleaning the build env I: removing directory /var/cache/pbuilder/build//NUM and its subdirectories pbuilder-0.215ubuntu7/testsuite/normal/pdebuild-normal-squeeze.log0000664000000000000000000032616312312041170022334 0ustar dpkg-checkbuilddeps: Unmet build dependencies: libdshconfig1-dev (>= 0.20.11-1) W: Unmet build-dependency in source dpkg-buildpackage: set CFLAGS to default value: -g -O2 dpkg-buildpackage: set CPPFLAGS to default value: dpkg-buildpackage: set LDFLAGS to default value: dpkg-buildpackage: set FFLAGS to default value: -g -O2 dpkg-buildpackage: set CXXFLAGS to default value: -g -O2 dpkg-buildpackage: source package dsh dpkg-buildpackage: source version 0.25.10-1 dpkg-buildpackage: source changed by Junichi Uekawa dpkg-checkbuilddeps: Unmet build dependencies: libdshconfig1-dev (>= 0.20.11-1) dpkg-buildpackage: warning: Build dependencies/conflicts unsatisfied; aborting. dpkg-buildpackage: warning: (Use -d flag to override.) dpkg-buildpackage: warning: This is currently a non-fatal warning with -S, but dpkg-buildpackage: warning: will probably become fatal in the future. fakeroot debian/rules clean dh_testdir dh_testroot rm -f build-stamp configure-stamp /usr/bin/make clean make[1]: Entering directory `/TESTDIR/dir2/dsh-0.25.10' make[1]: *** No rule to make target `clean'. Stop. make[1]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10' make: [clean] Error 2 (ignored) /usr/bin/make distclean make[1]: Entering directory `/TESTDIR/dir2/dsh-0.25.10' make[1]: *** No rule to make target `distclean'. Stop. make[1]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10' make: [clean] Error 2 (ignored) dh_clean dpkg-source -b dsh-0.25.10 dpkg-source: info: using source format `1.0' dpkg-source: info: building dsh using existing dsh_0.25.10.orig.tar.gz dpkg-source: info: building dsh in dsh_0.25.10-1.diff.gz dpkg-source: warning: file dsh-0.25.10/dcp.sh has no final newline (either original or modified version) dpkg-source: warning: file dsh-0.25.10/debian/compat has no final newline (either original or modified version) dpkg-source: warning: the diff modifies the following upstream files: .cvsignore CVS/Entries CVS/Repository CVS/Root ChangeLog.OLD dcp.sh drshd.c dsh.1.ja.po m4/.cvsignore m4/CVS/Entries m4/CVS/Repository m4/CVS/Root po/.cvsignore po/CVS/Entries po/CVS/Repository po/CVS/Root po/insert-header.sin tests/.cvsignore tests/CVS/Entries tests/CVS/Repository tests/CVS/Root dpkg-source: info: use the '3.0 (quilt)' format to have separate and documented changes to upstream files, see dpkg-source(1) dpkg-source: info: building dsh in dsh_0.25.10-1.dsc dpkg-genchanges -S >../dsh_0.25.10-1_source.changes dpkg-genchanges: including full source code in upload dpkg-buildpackage: source only upload (original source is included) I: using fakeroot in build. I: Current time: Fri Jan 1 19:16:57 UTC 2010 I: pbuilder-time-stamp: 1262373417 I: Building the build Environment I: extracting base tarball [/TESTDIR/testimage] I: creating local configuration I: copying local configuration I: mounting /proc filesystem I: mounting /dev/pts filesystem I: policy-rc.d already exists I: Obtaining the cached apt archive contents ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/liblzma0_4.999.9beta+20091004-1_amd64.deb' => `/var/cache/pbuilder/aptcache/liblzma0_4.999.9beta+20091004-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/hello_2.4-3_amd64.deb' => `/var/cache/pbuilder/aptcache/hello_2.4-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libcurl3-gnutls_7.19.5-1ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/libcurl3-gnutls_7.19.5-1ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libsasl2-2_2.1.23.dfsg1-1ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/libsasl2-2_2.1.23.dfsg1-1ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/binutils_2.20-0ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/binutils_2.20-0ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/util-linux_2.16.1-4_amd64.deb' => `/var/cache/pbuilder/aptcache/util-linux_2.16.1-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libssl0.9.8_0.9.8k-6_amd64.deb' => `/var/cache/pbuilder/aptcache/libssl0.9.8_0.9.8k-6_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libcroco3_0.6.1-2_i386.deb' => `/var/cache/pbuilder/aptcache/libcroco3_0.6.1-2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libssl0.9.8_0.9.8k-7_amd64.deb' => `/var/cache/pbuilder/aptcache/libssl0.9.8_0.9.8k-7_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/bzip2_1.0.5-3_amd64.deb' => `/var/cache/pbuilder/aptcache/bzip2_1.0.5-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libc-bin_2.10.2-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libc-bin_2.10.2-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libssl0.9.8_0.9.8g-16ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/libssl0.9.8_0.9.8g-16ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libkrb5support0_1.7dfsg~beta3-1_i386.deb' => `/var/cache/pbuilder/aptcache/libkrb5support0_1.7dfsg~beta3-1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gcc_4%3a4.4.2-2_amd64.deb' => `/var/cache/pbuilder/aptcache/gcc_4%3a4.4.2-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gpgv_1.4.9-4ubuntu7_i386.deb' => `/var/cache/pbuilder/aptcache/gpgv_1.4.9-4ubuntu7_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gcc-4.4-base_4.4.2-3_amd64.deb' => `/var/cache/pbuilder/aptcache/gcc-4.4-base_4.4.2-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/bsdutils_1%3a2.16.2-0_amd64.deb' => `/var/cache/pbuilder/aptcache/bsdutils_1%3a2.16.2-0_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libslang2_2.2.2-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libslang2_2.2.2-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/linux-libc-dev_2.6.30-8_amd64.deb' => `/var/cache/pbuilder/aptcache/linux-libc-dev_2.6.30-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/bash_4.0-5ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/bash_4.0-5ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/dpkg-dev_1.15.4ubuntu2_all.deb' => `/var/cache/pbuilder/aptcache/dpkg-dev_1.15.4ubuntu2_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/netbase_4.40_all.deb' => `/var/cache/pbuilder/aptcache/netbase_4.40_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libcomerr2_1.41.9-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libcomerr2_1.41.9-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libgdbm3_1.8.3-4_i386.deb' => `/var/cache/pbuilder/aptcache/libgdbm3_1.8.3-4_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/bzip2_1.0.5-3_i386.deb' => `/var/cache/pbuilder/aptcache/bzip2_1.0.5-3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libdbus-1-3_1.2.16-0ubuntu9_i386.deb' => `/var/cache/pbuilder/aptcache/libdbus-1-3_1.2.16-0ubuntu9_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/bsdutils_1%3a2.16-1ubuntu5_i386.deb' => `/var/cache/pbuilder/aptcache/bsdutils_1%3a2.16-1ubuntu5_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libxapian15_1.0.17-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libxapian15_1.0.17-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/python-support_1.0.4_all.deb' => `/var/cache/pbuilder/aptcache/python-support_1.0.4_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libcomerr2_1.41.9-1ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/libcomerr2_1.41.9-1ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/sysvinit-utils_2.87dsf-4ubuntu11_i386.deb' => `/var/cache/pbuilder/aptcache/sysvinit-utils_2.87dsf-4ubuntu11_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/login_1%3a4.1.4.1-1ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/login_1%3a4.1.4.1-1ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libudev0_149-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libudev0_149-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libstdc++6-4.4-dev_4.4.2-8_amd64.deb' => `/var/cache/pbuilder/aptcache/libstdc++6-4.4-dev_4.4.2-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libdb4.5_4.5.20-13.1_amd64.deb' => `/var/cache/pbuilder/aptcache/libdb4.5_4.5.20-13.1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libncurses5_5.7+20090803-2ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/libncurses5_5.7+20090803-2ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libusb-0.1-4_2%3a0.1.12-13_i386.deb' => `/var/cache/pbuilder/aptcache/libusb-0.1-4_2%3a0.1.12-13_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libpam-runtime_1.1.0-2ubuntu1_all.deb' => `/var/cache/pbuilder/aptcache/libpam-runtime_1.1.0-2ubuntu1_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libept0_0.5.26ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/libept0_0.5.26ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/lsb-release_3.2-23_all.deb' => `/var/cache/pbuilder/aptcache/lsb-release_3.2-23_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libldap-2.4-2_2.4.18-0ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/libldap-2.4-2_2.4.18-0ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/liblzma1_4.999.9beta+20091116-1_amd64.deb' => `/var/cache/pbuilder/aptcache/liblzma1_4.999.9beta+20091116-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/logrotate_3.7.8-4_amd64.deb' => `/var/cache/pbuilder/aptcache/logrotate_3.7.8-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/mountall_1.0_i386.deb' => `/var/cache/pbuilder/aptcache/mountall_1.0_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/ubuntu-keyring_2009.08.28_all.deb' => `/var/cache/pbuilder/aptcache/ubuntu-keyring_2009.08.28_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/tasksel_2.80_all.deb' => `/var/cache/pbuilder/aptcache/tasksel_2.80_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/debianutils_3.2.2_amd64.deb' => `/var/cache/pbuilder/aptcache/debianutils_3.2.2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libboost-iostreams1.40.0_1.40.0-5_amd64.deb' => `/var/cache/pbuilder/aptcache/libboost-iostreams1.40.0_1.40.0-5_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libacl1_2.2.49-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libacl1_2.2.49-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/dmidecode_2.9-1.2_amd64.deb' => `/var/cache/pbuilder/aptcache/dmidecode_2.9-1.2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libtimedate-perl_1.1600-9_all.deb' => `/var/cache/pbuilder/aptcache/libtimedate-perl_1.1600-9_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gcc-4.4_4.4.2-8_amd64.deb' => `/var/cache/pbuilder/aptcache/gcc-4.4_4.4.2-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/sysv-rc_2.87dsf-4ubuntu11_all.deb' => `/var/cache/pbuilder/aptcache/sysv-rc_2.87dsf-4ubuntu11_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/po-debconf_1.0.16_all.deb' => `/var/cache/pbuilder/aptcache/po-debconf_1.0.16_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/mime-support_3.46-1_all.deb' => `/var/cache/pbuilder/aptcache/mime-support_3.46-1_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/apt_0.7.23.1ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/apt_0.7.23.1ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/lsb-base_3.2-23_all.deb' => `/var/cache/pbuilder/aptcache/lsb-base_3.2-23_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libkrb5-3_1.7dfsg~beta3-1_i386.deb' => `/var/cache/pbuilder/aptcache/libkrb5-3_1.7dfsg~beta3-1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libtasn1-3_2.2-1_i386.deb' => `/var/cache/pbuilder/aptcache/libtasn1-3_2.2-1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/dash_0.5.5.1-3_amd64.deb' => `/var/cache/pbuilder/aptcache/dash_0.5.5.1-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libwrap0_7.6.q-18_amd64.deb' => `/var/cache/pbuilder/aptcache/libwrap0_7.6.q-18_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libgssapi-krb5-2_1.7dfsg~beta3-1_i386.deb' => `/var/cache/pbuilder/aptcache/libgssapi-krb5-2_1.7dfsg~beta3-1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libss2_1.41.9-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libss2_1.41.9-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libsqlite3-0_3.6.21-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libsqlite3-0_3.6.21-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libslang2_2.2.1-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libslang2_2.2.1-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libgcc1_1%3a4.4.2-3_amd64.deb' => `/var/cache/pbuilder/aptcache/libgcc1_1%3a4.4.2-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/procps_1%3a3.2.8-2_amd64.deb' => `/var/cache/pbuilder/aptcache/procps_1%3a3.2.8-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/aptitude_0.6.1.3-3_amd64.deb' => `/var/cache/pbuilder/aptcache/aptitude_0.6.1.3-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libstdc++6_4.4.1-4ubuntu8_i386.deb' => `/var/cache/pbuilder/aptcache/libstdc++6_4.4.1-4ubuntu8_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/perl-base_5.10.1-8_amd64.deb' => `/var/cache/pbuilder/aptcache/perl-base_5.10.1-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libusb-0.1-4_2%3a0.1.12-13_amd64.deb' => `/var/cache/pbuilder/aptcache/libusb-0.1-4_2%3a0.1.12-13_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/mawk_1.3.3-15ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/mawk_1.3.3-15ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libpam0g_1.1.0-4_amd64.deb' => `/var/cache/pbuilder/aptcache/libpam0g_1.1.0-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/liblocale-gettext-perl_1.05-4build1_i386.deb' => `/var/cache/pbuilder/aptcache/liblocale-gettext-perl_1.05-4build1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/login_1%3a4.1.4.2-1_amd64.deb' => `/var/cache/pbuilder/aptcache/login_1%3a4.1.4.2-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/man-db_2.5.6-4_amd64.deb' => `/var/cache/pbuilder/aptcache/man-db_2.5.6-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libgdbm3_1.8.3-9_amd64.deb' => `/var/cache/pbuilder/aptcache/libgdbm3_1.8.3-9_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/ed_1.4-1_amd64.deb' => `/var/cache/pbuilder/aptcache/ed_1.4-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libselinux1_2.0.85-2ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/libselinux1_2.0.85-2ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libblkid1_2.16.1-4_amd64.deb' => `/var/cache/pbuilder/aptcache/libblkid1_2.16.1-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libcroco3_0.6.2-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libcroco3_0.6.2-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/cpp_4%3a4.4.2-2_amd64.deb' => `/var/cache/pbuilder/aptcache/cpp_4%3a4.4.2-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/debconf_1.5.28_all.deb' => `/var/cache/pbuilder/aptcache/debconf_1.5.28_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/liblog4cxx10_0.10.0-1.1_amd64.deb' => `/var/cache/pbuilder/aptcache/liblog4cxx10_0.10.0-1.1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/coreutils_7.4-2ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/coreutils_7.4-2ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libsqlite3-0_3.6.20-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libsqlite3-0_3.6.20-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/diffutils_1%3a2.8.7-0.1_amd64.deb' => `/var/cache/pbuilder/aptcache/diffutils_1%3a2.8.7-0.1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/build-essential_11.4_i386.deb' => `/var/cache/pbuilder/aptcache/build-essential_11.4_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/python2.5-minimal_2.5.4-3_amd64.deb' => `/var/cache/pbuilder/aptcache/python2.5-minimal_2.5.4-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/groff-base_1.20.1-5_i386.deb' => `/var/cache/pbuilder/aptcache/groff-base_1.20.1-5_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/sysv-rc_2.87dsf-8_all.deb' => `/var/cache/pbuilder/aptcache/sysv-rc_2.87dsf-8_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/debconf_1.5.27ubuntu2_all.deb' => `/var/cache/pbuilder/aptcache/debconf_1.5.27ubuntu2_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/mount_2.17~rc3-1_amd64.deb' => `/var/cache/pbuilder/aptcache/mount_2.17~rc3-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/vim-common_2%3a7.2.284-1_amd64.deb' => `/var/cache/pbuilder/aptcache/vim-common_2%3a7.2.284-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/module-init-tools_3.11-1_amd64.deb' => `/var/cache/pbuilder/aptcache/module-init-tools_3.11-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libgcrypt11_1.4.4-2ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/libgcrypt11_1.4.4-2ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/lsb-base_4.0-0ubuntu5_all.deb' => `/var/cache/pbuilder/aptcache/lsb-base_4.0-0ubuntu5_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/html2text_1.3.2a-14_amd64.deb' => `/var/cache/pbuilder/aptcache/html2text_1.3.2a-14_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libxml2_2.7.6.dfsg-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libxml2_2.7.6.dfsg-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/g++_4%3a4.4.1-1ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/g++_4%3a4.4.1-1ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libcwidget3_0.5.12-4ubuntu4_i386.deb' => `/var/cache/pbuilder/aptcache/libcwidget3_0.5.12-4ubuntu4_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/manpages_3.23-1_all.deb' => `/var/cache/pbuilder/aptcache/manpages_3.23-1_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/findutils_4.4.2-1_amd64.deb' => `/var/cache/pbuilder/aptcache/findutils_4.4.2-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/cowbuilder_0.58_amd64.deb' => `/var/cache/pbuilder/aptcache/cowbuilder_0.58_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libstdc++6_4.4.2-3_amd64.deb' => `/var/cache/pbuilder/aptcache/libstdc++6_4.4.2-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/dpkg-dev_1.15.5.2_all.deb' => `/var/cache/pbuilder/aptcache/dpkg-dev_1.15.5.2_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/initscripts_2.87dsf-4ubuntu11_i386.deb' => `/var/cache/pbuilder/aptcache/initscripts_2.87dsf-4ubuntu11_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/nano_2.2.1-1_amd64.deb' => `/var/cache/pbuilder/aptcache/nano_2.2.1-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/base-passwd_3.5.22_amd64.deb' => `/var/cache/pbuilder/aptcache/base-passwd_3.5.22_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libc-bin_2.11~0exp1-0exp1_amd64.deb' => `/var/cache/pbuilder/aptcache/libc-bin_2.11~0exp1-0exp1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libgomp1_4.4.2-8_amd64.deb' => `/var/cache/pbuilder/aptcache/libgomp1_4.4.2-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/cpp-4.4_4.4.1-4ubuntu8_i386.deb' => `/var/cache/pbuilder/aptcache/cpp-4.4_4.4.1-4ubuntu8_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gettext-base_0.17-8ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/gettext-base_0.17-8ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/liblocale-gettext-perl_1.05-6_amd64.deb' => `/var/cache/pbuilder/aptcache/liblocale-gettext-perl_1.05-6_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libkeyutils1_1.2-10_i386.deb' => `/var/cache/pbuilder/aptcache/libkeyutils1_1.2-10_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/hostname_2.95ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/hostname_2.95ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/procps_1%3a3.2.8-1ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/procps_1%3a3.2.8-1ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libsigc++-2.0-0c2a_2.2.2-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libsigc++-2.0-0c2a_2.2.2-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gettext_0.17-8ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/gettext_0.17-8ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gcc-4.4-base_4.4.1-4ubuntu8_i386.deb' => `/var/cache/pbuilder/aptcache/gcc-4.4-base_4.4.1-4ubuntu8_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libcwidget3_0.5.16-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libcwidget3_0.5.16-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libgpg-error0_1.6-1ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/libgpg-error0_1.6-1ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/dpkg-dev_1.15.5.5_all.deb' => `/var/cache/pbuilder/aptcache/dpkg-dev_1.15.5.5_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libsepol1_2.0.37-1_i386.deb' => `/var/cache/pbuilder/aptcache/libsepol1_2.0.37-1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libstdc++6_4.4.2-8_amd64.deb' => `/var/cache/pbuilder/aptcache/libstdc++6_4.4.2-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libss2_1.41.9-1ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/libss2_1.41.9-1ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libsigc++-2.0-0c2a_2.0.18-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libsigc++-2.0-0c2a_2.0.18-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libk5crypto3_1.7dfsg~beta3-1_i386.deb' => `/var/cache/pbuilder/aptcache/libk5crypto3_1.7dfsg~beta3-1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/fakeroot_1.14.4-1_amd64.deb' => `/var/cache/pbuilder/aptcache/fakeroot_1.14.4-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/ncurses-bin_5.7+20090803-2_amd64.deb' => `/var/cache/pbuilder/aptcache/ncurses-bin_5.7+20090803-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/util-linux_2.17~rc3-1_amd64.deb' => `/var/cache/pbuilder/aptcache/util-linux_2.17~rc3-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/cron_3.0pl1-106_amd64.deb' => `/var/cache/pbuilder/aptcache/cron_3.0pl1-106_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libacl1_2.2.47-2_i386.deb' => `/var/cache/pbuilder/aptcache/libacl1_2.2.47-2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/netcat-traditional_1.10-38_amd64.deb' => `/var/cache/pbuilder/aptcache/netcat-traditional_1.10-38_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/e2fslibs_1.41.9-1_amd64.deb' => `/var/cache/pbuilder/aptcache/e2fslibs_1.41.9-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/g++-4.4_4.4.2-8_amd64.deb' => `/var/cache/pbuilder/aptcache/g++-4.4_4.4.2-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/bsdmainutils_6.1.10ubuntu4_i386.deb' => `/var/cache/pbuilder/aptcache/bsdmainutils_6.1.10ubuntu4_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/python-debian_0.1.14_all.deb' => `/var/cache/pbuilder/aptcache/python-debian_0.1.14_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/python-apt_0.7.13.3_amd64.deb' => `/var/cache/pbuilder/aptcache/python-apt_0.7.13.3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/build-essential_11.4_amd64.deb' => `/var/cache/pbuilder/aptcache/build-essential_11.4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gnupg_1.4.9-4ubuntu7_i386.deb' => `/var/cache/pbuilder/aptcache/gnupg_1.4.9-4ubuntu7_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libsigc++-2.0-0c2a_2.0.18-2_i386.deb' => `/var/cache/pbuilder/aptcache/libsigc++-2.0-0c2a_2.0.18-2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/initscripts_2.87dsf-8_amd64.deb' => `/var/cache/pbuilder/aptcache/initscripts_2.87dsf-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/mount_2.16-1ubuntu5_i386.deb' => `/var/cache/pbuilder/aptcache/mount_2.16-1ubuntu5_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libc6_2.10.1-0ubuntu15_i386.deb' => `/var/cache/pbuilder/aptcache/libc6_2.10.1-0ubuntu15_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/dash_0.5.5.1-2ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/dash_0.5.5.1-2ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/zlib1g_1%3a1.2.3.4.dfsg-3_amd64.deb' => `/var/cache/pbuilder/aptcache/zlib1g_1%3a1.2.3.4.dfsg-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libreadline5_5.2-7_amd64.deb' => `/var/cache/pbuilder/aptcache/libreadline5_5.2-7_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/pbuilder_0.192_all.deb' => `/var/cache/pbuilder/aptcache/pbuilder_0.192_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/nano_2.2.0-1_amd64.deb' => `/var/cache/pbuilder/aptcache/nano_2.2.0-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/e2fsprogs_1.41.9-1ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/e2fsprogs_1.41.9-1ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/aptitude_0.4.11.11-1ubuntu6_i386.deb' => `/var/cache/pbuilder/aptcache/aptitude_0.4.11.11-1ubuntu6_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/bsdutils_1%3a2.16.1-4_amd64.deb' => `/var/cache/pbuilder/aptcache/bsdutils_1%3a2.16.1-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libglib2.0-0_2.22.3-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libglib2.0-0_2.22.3-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/python_2.5.4-2_all.deb' => `/var/cache/pbuilder/aptcache/python_2.5.4-2_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libdebian-installer-extra4_0.69_amd64.deb' => `/var/cache/pbuilder/aptcache/libdebian-installer-extra4_0.69_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/file_5.03-1ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/file_5.03-1ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libc6_2.11~0exp1-0exp1_amd64.deb' => `/var/cache/pbuilder/aptcache/libc6_2.11~0exp1-0exp1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/patch_2.5.9-5_amd64.deb' => `/var/cache/pbuilder/aptcache/patch_2.5.9-5_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/cdebootstrap_0.5.5_amd64.deb' => `/var/cache/pbuilder/aptcache/cdebootstrap_0.5.5_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libbz2-1.0_1.0.5-3_i386.deb' => `/var/cache/pbuilder/aptcache/libbz2-1.0_1.0.5-3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libsasl2-modules_2.1.23.dfsg1-1ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/libsasl2-modules_2.1.23.dfsg1-1ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/perl-modules_5.10.1-8_all.deb' => `/var/cache/pbuilder/aptcache/perl-modules_5.10.1-8_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libdb4.7_4.7.25-9_amd64.deb' => `/var/cache/pbuilder/aptcache/libdb4.7_4.7.25-9_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/debian-archive-keyring_2009.01.31_all.deb' => `/var/cache/pbuilder/aptcache/debian-archive-keyring_2009.01.31_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/grep_2.5.4-4_amd64.deb' => `/var/cache/pbuilder/aptcache/grep_2.5.4-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/udev_149-1_amd64.deb' => `/var/cache/pbuilder/aptcache/udev_149-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/isc-dhcp-common_4.1.0-1_amd64.deb' => `/var/cache/pbuilder/aptcache/isc-dhcp-common_4.1.0-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/base-passwd_3.5.21_i386.deb' => `/var/cache/pbuilder/aptcache/base-passwd_3.5.21_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gdebi-core_0.5.9debian2_all.deb' => `/var/cache/pbuilder/aptcache/gdebi-core_0.5.9debian2_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/g++-4.3_4.3.4-6_amd64.deb' => `/var/cache/pbuilder/aptcache/g++-4.3_4.3.4-6_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/bsdmainutils_8.0.2_amd64.deb' => `/var/cache/pbuilder/aptcache/bsdmainutils_8.0.2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/sed_4.2.1-1_i386.deb' => `/var/cache/pbuilder/aptcache/sed_4.2.1-1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/sed_4.2.1-4_amd64.deb' => `/var/cache/pbuilder/aptcache/sed_4.2.1-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/dhcp3-client_3.1.3-1_amd64.deb' => `/var/cache/pbuilder/aptcache/dhcp3-client_3.1.3-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/tar_1.22-2_amd64.deb' => `/var/cache/pbuilder/aptcache/tar_1.22-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/netbase_4.35ubuntu2_all.deb' => `/var/cache/pbuilder/aptcache/netbase_4.35ubuntu2_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libapr1_1.3.8-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libapr1_1.3.8-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gcc-4.3-base_4.3.4-6_amd64.deb' => `/var/cache/pbuilder/aptcache/gcc-4.3-base_4.3.4-6_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libstdc++6-4.4-dev_4.4.1-4ubuntu8_i386.deb' => `/var/cache/pbuilder/aptcache/libstdc++6-4.4-dev_4.4.1-4ubuntu8_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/iproute_20090324-1_amd64.deb' => `/var/cache/pbuilder/aptcache/iproute_20090324-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/iptables_1.4.6-2_amd64.deb' => `/var/cache/pbuilder/aptcache/iptables_1.4.6-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/perl_5.10.1-8_amd64.deb' => `/var/cache/pbuilder/aptcache/perl_5.10.1-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/dpkg_1.15.5.4_amd64.deb' => `/var/cache/pbuilder/aptcache/dpkg_1.15.5.4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libtext-wrapi18n-perl_0.06-7_all.deb' => `/var/cache/pbuilder/aptcache/libtext-wrapi18n-perl_0.06-7_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/apt_0.7.25_amd64.deb' => `/var/cache/pbuilder/aptcache/apt_0.7.25_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/g++_4%3a4.3.4-1_amd64.deb' => `/var/cache/pbuilder/aptcache/g++_4%3a4.3.4-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/util-linux_2.16-1ubuntu5_i386.deb' => `/var/cache/pbuilder/aptcache/util-linux_2.16-1ubuntu5_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gcc-4.4-base_4.4.2-8_amd64.deb' => `/var/cache/pbuilder/aptcache/gcc-4.4-base_4.4.2-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/mount_2.16.1-4_amd64.deb' => `/var/cache/pbuilder/aptcache/mount_2.16.1-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libc6-dev_2.10.2-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libc6-dev_2.10.2-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/sysvinit_2.87dsf-8_amd64.deb' => `/var/cache/pbuilder/aptcache/sysvinit_2.87dsf-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/passwd_1%3a4.1.4.2-1_amd64.deb' => `/var/cache/pbuilder/aptcache/passwd_1%3a4.1.4.2-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/perl-modules_5.10.0-24ubuntu4_all.deb' => `/var/cache/pbuilder/aptcache/perl-modules_5.10.0-24ubuntu4_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/dpkg-dev_1.15.5.4_all.deb' => `/var/cache/pbuilder/aptcache/dpkg-dev_1.15.5.4_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gcc-4.3_4.3.4-6_amd64.deb' => `/var/cache/pbuilder/aptcache/gcc-4.3_4.3.4-6_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libaprutil1_1.3.9+dfsg-3_amd64.deb' => `/var/cache/pbuilder/aptcache/libaprutil1_1.3.9+dfsg-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/bsdmainutils_8.0.3_amd64.deb' => `/var/cache/pbuilder/aptcache/bsdmainutils_8.0.3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/tasksel-data_2.80_all.deb' => `/var/cache/pbuilder/aptcache/tasksel-data_2.80_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/bash_4.0-7_amd64.deb' => `/var/cache/pbuilder/aptcache/bash_4.0-7_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/lzma_4.43-14ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/lzma_4.43-14ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/diff_2.8.1-13_i386.deb' => `/var/cache/pbuilder/aptcache/diff_2.8.1-13_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libpcre3_7.8-3_i386.deb' => `/var/cache/pbuilder/aptcache/libpcre3_7.8-3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/python2.6-minimal_2.6.4~rc2-0ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/python2.6-minimal_2.6.4~rc2-0ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/tzdata_2009u-1_all.deb' => `/var/cache/pbuilder/aptcache/tzdata_2009u-1_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/intltool-debian_0.35.0+20060710.1_all.deb' => `/var/cache/pbuilder/aptcache/intltool-debian_0.35.0+20060710.1_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libsepol1_2.0.40-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libsepol1_2.0.40-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libtasn1-3_2.3-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libtasn1-3_2.3-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libdb4.8_4.8.26-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libdb4.8_4.8.26-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/openssl_0.9.8g-16ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/openssl_0.9.8g-16ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/cpp-4.4_4.4.2-8_amd64.deb' => `/var/cache/pbuilder/aptcache/cpp-4.4_4.4.2-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libexpat1_2.0.1-7_amd64.deb' => `/var/cache/pbuilder/aptcache/libexpat1_2.0.1-7_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/adduser_3.112_all.deb' => `/var/cache/pbuilder/aptcache/adduser_3.112_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/zlib1g_1%3a1.2.3.3.dfsg-13ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/zlib1g_1%3a1.2.3.3.dfsg-13ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/patch_2.6-2_amd64.deb' => `/var/cache/pbuilder/aptcache/patch_2.6-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/python-central_0.6.13_all.deb' => `/var/cache/pbuilder/aptcache/python-central_0.6.13_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/util-linux_2.16.2-0_amd64.deb' => `/var/cache/pbuilder/aptcache/util-linux_2.16.2-0_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libreadline6_6.0-5_i386.deb' => `/var/cache/pbuilder/aptcache/libreadline6_6.0-5_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libept0_0.5.29_amd64.deb' => `/var/cache/pbuilder/aptcache/libept0_0.5.29_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/tzdata_2009o-1ubuntu2_all.deb' => `/var/cache/pbuilder/aptcache/tzdata_2009o-1ubuntu2_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libc6-dev_2.10.1-0ubuntu15_i386.deb' => `/var/cache/pbuilder/aptcache/libc6-dev_2.10.1-0ubuntu15_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/tzdata_2009s-1_all.deb' => `/var/cache/pbuilder/aptcache/tzdata_2009s-1_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/traceroute_2.0.13-2_amd64.deb' => `/var/cache/pbuilder/aptcache/traceroute_2.0.13-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/iputils-ping_3%3a20071127-2_amd64.deb' => `/var/cache/pbuilder/aptcache/iputils-ping_3%3a20071127-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libgcc1_1%3a4.4.1-4ubuntu8_i386.deb' => `/var/cache/pbuilder/aptcache/libgcc1_1%3a4.4.1-4ubuntu8_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libreadline6_6.0-5_amd64.deb' => `/var/cache/pbuilder/aptcache/libreadline6_6.0-5_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libgmp3c2_2%3a4.3.1+dfsg-3_amd64.deb' => `/var/cache/pbuilder/aptcache/libgmp3c2_2%3a4.3.1+dfsg-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/cowdancer_0.58_amd64.deb' => `/var/cache/pbuilder/aptcache/cowdancer_0.58_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libgomp1_4.4.1-4ubuntu8_i386.deb' => `/var/cache/pbuilder/aptcache/libgomp1_4.4.1-4ubuntu8_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/dpkg_1.15.5.2_amd64.deb' => `/var/cache/pbuilder/aptcache/dpkg_1.15.5.2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libxml2_2.7.5.dfsg-1ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/libxml2_2.7.5.dfsg-1ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libgmp3c2_2%3a4.3.1+dfsg-1ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/libgmp3c2_2%3a4.3.1+dfsg-1ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libslang2_2.1.4-3_i386.deb' => `/var/cache/pbuilder/aptcache/libslang2_2.1.4-3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libnewt0.52_0.52.10-5_amd64.deb' => `/var/cache/pbuilder/aptcache/libnewt0.52_0.52.10-5_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/make_3.81-6_i386.deb' => `/var/cache/pbuilder/aptcache/make_3.81-6_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gpgv_1.4.10-2_amd64.deb' => `/var/cache/pbuilder/aptcache/gpgv_1.4.10-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libpam0g_1.1.0-2ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/libpam0g_1.1.0-2ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/python-minimal_2.6.4~rc1-0ubuntu1_all.deb' => `/var/cache/pbuilder/aptcache/python-minimal_2.6.4~rc1-0ubuntu1_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/install-info_4.13a.dfsg.1-5_amd64.deb' => `/var/cache/pbuilder/aptcache/install-info_4.13a.dfsg.1-5_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libblkid1_2.17~rc3-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libblkid1_2.17~rc3-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libtimedate-perl_1.1900-1_all.deb' => `/var/cache/pbuilder/aptcache/libtimedate-perl_1.1900-1_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/ca-certificates_20090814_all.deb' => `/var/cache/pbuilder/aptcache/ca-certificates_20090814_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libmpfr1ldbl_2.4.2-3_amd64.deb' => `/var/cache/pbuilder/aptcache/libmpfr1ldbl_2.4.2-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/net-tools_1.60-23ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/net-tools_1.60-23ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/dhcp3-common_3.1.3-1_amd64.deb' => `/var/cache/pbuilder/aptcache/dhcp3-common_3.1.3-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/debianutils_2.30ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/debianutils_2.30ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/cpp_4%3a4.3.4-1_amd64.deb' => `/var/cache/pbuilder/aptcache/cpp_4%3a4.3.4-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/apt-utils_0.7.23.1_amd64.deb' => `/var/cache/pbuilder/aptcache/apt-utils_0.7.23.1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/dpkg_1.15.5.5_amd64.deb' => `/var/cache/pbuilder/aptcache/dpkg_1.15.5.5_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libpam-runtime_1.1.0-4_all.deb' => `/var/cache/pbuilder/aptcache/libpam-runtime_1.1.0-4_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libc-dev-bin_2.10.2-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libc-dev-bin_2.10.2-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/sysvinit-utils_2.87dsf-8_amd64.deb' => `/var/cache/pbuilder/aptcache/sysvinit-utils_2.87dsf-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/aptitude_0.4.11.11-1+b2_amd64.deb' => `/var/cache/pbuilder/aptcache/aptitude_0.4.11.11-1+b2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libc-bin_2.10.1-0ubuntu15_i386.deb' => `/var/cache/pbuilder/aptcache/libc-bin_2.10.1-0ubuntu15_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/iptables_1.4.5-1_amd64.deb' => `/var/cache/pbuilder/aptcache/iptables_1.4.5-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/bsdutils_1%3a2.17~rc3-1_amd64.deb' => `/var/cache/pbuilder/aptcache/bsdutils_1%3a2.17~rc3-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/sensible-utils_0.0.2_all.deb' => `/var/cache/pbuilder/aptcache/sensible-utils_0.0.2_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/grep_2.5.4-4_i386.deb' => `/var/cache/pbuilder/aptcache/grep_2.5.4-4_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/passwd_1%3a4.1.4.1-1ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/passwd_1%3a4.1.4.1-1ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/whiptail_0.52.10-5_amd64.deb' => `/var/cache/pbuilder/aptcache/whiptail_0.52.10-5_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libblkid1_2.16.2-0_amd64.deb' => `/var/cache/pbuilder/aptcache/libblkid1_2.16.2-0_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/zlib1g_1%3a1.2.3.3.dfsg-15_amd64.deb' => `/var/cache/pbuilder/aptcache/zlib1g_1%3a1.2.3.3.dfsg-15_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/apt-utils_0.7.25_amd64.deb' => `/var/cache/pbuilder/aptcache/apt-utils_0.7.25_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libtext-iconv-perl_1.7-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libtext-iconv-perl_1.7-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/make_3.81-7_amd64.deb' => `/var/cache/pbuilder/aptcache/make_3.81-7_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libudev0_147~-6_i386.deb' => `/var/cache/pbuilder/aptcache/libudev0_147~-6_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gzip_1.3.12-8ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/gzip_1.3.12-8ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/diffutils_1%3a2.8.1-18_amd64.deb' => `/var/cache/pbuilder/aptcache/diffutils_1%3a2.8.1-18_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/debconf-i18n_1.5.27ubuntu2_all.deb' => `/var/cache/pbuilder/aptcache/debconf-i18n_1.5.27ubuntu2_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libblkid1_2.16-1ubuntu5_i386.deb' => `/var/cache/pbuilder/aptcache/libblkid1_2.16-1ubuntu5_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libselinux1_2.0.89-4_amd64.deb' => `/var/cache/pbuilder/aptcache/libselinux1_2.0.89-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/debhelper_7.3.15ubuntu3_all.deb' => `/var/cache/pbuilder/aptcache/debhelper_7.3.15ubuntu3_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libpcre3_7.8-3_amd64.deb' => `/var/cache/pbuilder/aptcache/libpcre3_7.8-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/net-tools_1.60-23_amd64.deb' => `/var/cache/pbuilder/aptcache/net-tools_1.60-23_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/xz-utils_4.999.9beta+20091004-1_amd64.deb' => `/var/cache/pbuilder/aptcache/xz-utils_4.999.9beta+20091004-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libdb4.7_4.7.25-7ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/libdb4.7_4.7.25-7ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libattr1_1%3a2.4.43-3_i386.deb' => `/var/cache/pbuilder/aptcache/libattr1_1%3a2.4.43-3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/python2.5_2.5.4-3_amd64.deb' => `/var/cache/pbuilder/aptcache/python2.5_2.5.4-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libmagic1_5.03-1ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/libmagic1_5.03-1ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/udev_149-2_amd64.deb' => `/var/cache/pbuilder/aptcache/udev_149-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libdevmapper1.02.1_2%3a1.02.39-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libdevmapper1.02.1_2%3a1.02.39-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libidn11_1.15-1_i386.deb' => `/var/cache/pbuilder/aptcache/libidn11_1.15-1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/g++-4.4_4.4.1-4ubuntu8_i386.deb' => `/var/cache/pbuilder/aptcache/g++-4.4_4.4.1-4ubuntu8_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libmagic1_5.03-3_amd64.deb' => `/var/cache/pbuilder/aptcache/libmagic1_5.03-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libncursesw5_5.7+20090803-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libncursesw5_5.7+20090803-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libtext-charwidth-perl_0.04-5build1_i386.deb' => `/var/cache/pbuilder/aptcache/libtext-charwidth-perl_0.04-5build1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libunwind7_0.99-0.2_amd64.deb' => `/var/cache/pbuilder/aptcache/libunwind7_0.99-0.2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libtext-iconv-perl_1.7-1build1_i386.deb' => `/var/cache/pbuilder/aptcache/libtext-iconv-perl_1.7-1build1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/mount_2.16.2-0_amd64.deb' => `/var/cache/pbuilder/aptcache/mount_2.16.2-0_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libc6_2.10.2-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libc6_2.10.2-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libpopt0_1.15-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libpopt0_1.15-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libudev0_149-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libudev0_149-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/debconf-i18n_1.5.28_all.deb' => `/var/cache/pbuilder/aptcache/debconf-i18n_1.5.28_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/rsyslog_4.4.2-1_amd64.deb' => `/var/cache/pbuilder/aptcache/rsyslog_4.4.2-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/fakeroot_1.12.4ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/fakeroot_1.12.4ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gcc-4.4_4.4.1-4ubuntu8_i386.deb' => `/var/cache/pbuilder/aptcache/gcc-4.4_4.4.1-4ubuntu8_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/groff-base_1.20.1-6_amd64.deb' => `/var/cache/pbuilder/aptcache/groff-base_1.20.1-6_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/makedev_2.3.1-88_all.deb' => `/var/cache/pbuilder/aptcache/makedev_2.3.1-88_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/xz-utils_4.999.9beta+20091116-1_amd64.deb' => `/var/cache/pbuilder/aptcache/xz-utils_4.999.9beta+20091116-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/ncurses-base_5.7+20090803-2_all.deb' => `/var/cache/pbuilder/aptcache/ncurses-base_5.7+20090803-2_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/html2text_1.3.2a-14_i386.deb' => `/var/cache/pbuilder/aptcache/html2text_1.3.2a-14_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/hostname_3.01_amd64.deb' => `/var/cache/pbuilder/aptcache/hostname_3.01_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/ifupdown_0.6.8ubuntu21_i386.deb' => `/var/cache/pbuilder/aptcache/ifupdown_0.6.8ubuntu21_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libncursesw5_5.7+20090803-2ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/libncursesw5_5.7+20090803-2ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libbz2-1.0_1.0.5-3_amd64.deb' => `/var/cache/pbuilder/aptcache/libbz2-1.0_1.0.5-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/python-minimal_2.5.4-2_all.deb' => `/var/cache/pbuilder/aptcache/python-minimal_2.5.4-2_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/ncurses-base_5.7+20090803-2ubuntu2_all.deb' => `/var/cache/pbuilder/aptcache/ncurses-base_5.7+20090803-2ubuntu2_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/perl-base_5.10.0-24ubuntu4_i386.deb' => `/var/cache/pbuilder/aptcache/perl-base_5.10.0-24ubuntu4_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libpam-modules_1.1.0-2ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/libpam-modules_1.1.0-2ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gettext_0.17-8_amd64.deb' => `/var/cache/pbuilder/aptcache/gettext_0.17-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/insserv_1.12.0-11_i386.deb' => `/var/cache/pbuilder/aptcache/insserv_1.12.0-11_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gnupg_1.4.10-2_amd64.deb' => `/var/cache/pbuilder/aptcache/gnupg_1.4.10-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/locales_2.9+git20090617-3_all.deb' => `/var/cache/pbuilder/aptcache/locales_2.9+git20090617-3_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/dmidecode_2.9-1.1_amd64.deb' => `/var/cache/pbuilder/aptcache/dmidecode_2.9-1.1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/findutils_4.4.2-1_i386.deb' => `/var/cache/pbuilder/aptcache/findutils_4.4.2-1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libmpfr1ldbl_2.4.1-1ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/libmpfr1ldbl_2.4.1-1ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/perl_5.10.0-24ubuntu4_i386.deb' => `/var/cache/pbuilder/aptcache/perl_5.10.0-24ubuntu4_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/cpp-4.3_4.3.4-6_amd64.deb' => `/var/cache/pbuilder/aptcache/cpp-4.3_4.3.4-6_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libmpfr1ldbl_2.4.1-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libmpfr1ldbl_2.4.1-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libuuid1_2.16-1ubuntu5_i386.deb' => `/var/cache/pbuilder/aptcache/libuuid1_2.16-1ubuntu5_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/base-files_5.0.0ubuntu7_i386.deb' => `/var/cache/pbuilder/aptcache/base-files_5.0.0ubuntu7_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/wget_1.12-1.1_amd64.deb' => `/var/cache/pbuilder/aptcache/wget_1.12-1.1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/insserv_1.12.0-14_amd64.deb' => `/var/cache/pbuilder/aptcache/insserv_1.12.0-14_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libxapian15_1.0.15-2ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/libxapian15_1.0.15-2ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/cpio_2.10-1_amd64.deb' => `/var/cache/pbuilder/aptcache/cpio_2.10-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/sed_4.2.1-6_amd64.deb' => `/var/cache/pbuilder/aptcache/sed_4.2.1-6_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gcc_4%3a4.3.4-1_amd64.deb' => `/var/cache/pbuilder/aptcache/gcc_4%3a4.3.4-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/lzma_4.43-14_amd64.deb' => `/var/cache/pbuilder/aptcache/lzma_4.43-14_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/ncurses-bin_5.7+20090803-2ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/ncurses-bin_5.7+20090803-2ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/dpkg_1.15.4ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/dpkg_1.15.4ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/man-db_2.5.6-2_i386.deb' => `/var/cache/pbuilder/aptcache/man-db_2.5.6-2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/linux-libc-dev_2.6.32-3_amd64.deb' => `/var/cache/pbuilder/aptcache/linux-libc-dev_2.6.32-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/e2fslibs_1.41.9-1ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/e2fslibs_1.41.9-1ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libdb4.7_4.7.25-8_amd64.deb' => `/var/cache/pbuilder/aptcache/libdb4.7_4.7.25-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libgomp1_4.4.2-3_amd64.deb' => `/var/cache/pbuilder/aptcache/libgomp1_4.4.2-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/apt_0.7.23.1_amd64.deb' => `/var/cache/pbuilder/aptcache/apt_0.7.23.1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/linux-libc-dev_2.6.31-14.48_i386.deb' => `/var/cache/pbuilder/aptcache/linux-libc-dev_2.6.31-14.48_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libncurses5_5.7+20090803-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libncurses5_5.7+20090803-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/g++_4%3a4.4.2-2_amd64.deb' => `/var/cache/pbuilder/aptcache/g++_4%3a4.4.2-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/tar_1.22-1_i386.deb' => `/var/cache/pbuilder/aptcache/tar_1.22-1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/cpp_4%3a4.4.1-1ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/cpp_4%3a4.4.1-1ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/isc-dhcp-client_4.1.0-1_amd64.deb' => `/var/cache/pbuilder/aptcache/isc-dhcp-client_4.1.0-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gcc_4%3a4.4.1-1ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/gcc_4%3a4.4.1-1ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/ifupdown_0.6.9_amd64.deb' => `/var/cache/pbuilder/aptcache/ifupdown_0.6.9_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libtext-charwidth-perl_0.04-6_amd64.deb' => `/var/cache/pbuilder/aptcache/libtext-charwidth-perl_0.04-6_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libuuid1_2.16.2-0_amd64.deb' => `/var/cache/pbuilder/aptcache/libuuid1_2.16.2-0_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/patch_2.5.9-5_i386.deb' => `/var/cache/pbuilder/aptcache/patch_2.5.9-5_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gettext-base_0.17-8_amd64.deb' => `/var/cache/pbuilder/aptcache/gettext-base_0.17-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/readline-common_6.0-5_all.deb' => `/var/cache/pbuilder/aptcache/readline-common_6.0-5_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/ifupdown_0.7~alpha3_amd64.deb' => `/var/cache/pbuilder/aptcache/ifupdown_0.7~alpha3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/bsdmainutils_8.0.5_amd64.deb' => `/var/cache/pbuilder/aptcache/bsdmainutils_8.0.5_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/coreutils_7.4-2_amd64.deb' => `/var/cache/pbuilder/aptcache/coreutils_7.4-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gzip_1.3.12-8_amd64.deb' => `/var/cache/pbuilder/aptcache/gzip_1.3.12-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libstdc++6-4.3-dev_4.3.4-6_amd64.deb' => `/var/cache/pbuilder/aptcache/libstdc++6-4.3-dev_4.3.4-6_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libattr1_1%3a2.4.44-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libattr1_1%3a2.4.44-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/coreutils_8.0-2_amd64.deb' => `/var/cache/pbuilder/aptcache/coreutils_8.0-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/base-files_5.0.0_amd64.deb' => `/var/cache/pbuilder/aptcache/base-files_5.0.0_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/binutils_2.20-4_amd64.deb' => `/var/cache/pbuilder/aptcache/binutils_2.20-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libpam-modules_1.1.0-4_amd64.deb' => `/var/cache/pbuilder/aptcache/libpam-modules_1.1.0-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/info_4.13a.dfsg.1-5_amd64.deb' => `/var/cache/pbuilder/aptcache/info_4.13a.dfsg.1-5_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libuuid1_2.16.1-4_amd64.deb' => `/var/cache/pbuilder/aptcache/libuuid1_2.16.1-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/bash_4.0-4_amd64.deb' => `/var/cache/pbuilder/aptcache/bash_4.0-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libc-dev-bin_2.10.1-0ubuntu15_i386.deb' => `/var/cache/pbuilder/aptcache/libc-dev-bin_2.10.1-0ubuntu15_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/e2fsprogs_1.41.9-1_amd64.deb' => `/var/cache/pbuilder/aptcache/e2fsprogs_1.41.9-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libept0_0.5.30_amd64.deb' => `/var/cache/pbuilder/aptcache/libept0_0.5.30_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/debhelper_7.4.3_all.deb' => `/var/cache/pbuilder/aptcache/debhelper_7.4.3_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/upstart_0.6.3-10_i386.deb' => `/var/cache/pbuilder/aptcache/upstart_0.6.3-10_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libgnutls26_2.8.3-2_i386.deb' => `/var/cache/pbuilder/aptcache/libgnutls26_2.8.3-2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libdb4.8_4.8.24-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libdb4.8_4.8.24-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libuuid1_2.17~rc3-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libuuid1_2.17~rc3-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libglib2.0-0_2.22.2-0ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/libglib2.0-0_2.22.2-0ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/vim-tiny_2%3a7.2.284-1_amd64.deb' => `/var/cache/pbuilder/aptcache/vim-tiny_2%3a7.2.284-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/mawk_1.3.3-15_amd64.deb' => `/var/cache/pbuilder/aptcache/mawk_1.3.3-15_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libgcc1_1%3a4.4.2-8_amd64.deb' => `/var/cache/pbuilder/aptcache/libgcc1_1%3a4.4.2-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libcwidget3_0.5.13-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libcwidget3_0.5.13-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/file_5.03-3_amd64.deb' => `/var/cache/pbuilder/aptcache/file_5.03-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libdebian-installer4_0.69_amd64.deb' => `/var/cache/pbuilder/aptcache/libdebian-installer4_0.69_amd64.deb': Invalid cross-device link I: Installing the build-deps -> Attempting to satisfy build-dependencies -> Creating pbuilder-satisfydepends-dummy package Package: pbuilder-satisfydepends-dummy Version: 0.invalid.0 Architecture: amd64 Maintainer: Debian Pbuilder Team Description: Dummy package to satisfy dependencies with aptitude - created by pbuilder This package was created automatically by pbuilder and should Depends: debhelper (>> 3.0.0), libdshconfig1-dev (>= 0.20.11-1), po4a dpkg-deb: building package `pbuilder-satisfydepends-dummy' in `/tmp/satisfydepends-aptitude/pbuilder-satisfydepends-dummy.deb'. Reading package lists... Building dependency tree... Reading state information... aptitude is already the newest version. 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. Selecting previously deselected package pbuilder-satisfydepends-dummy. (Reading database ... 12190 files and directories currently installed.) Unpacking pbuilder-satisfydepends-dummy (from .../pbuilder-satisfydepends-dummy.deb) ... dpkg: dependency problems prevent configuration of pbuilder-satisfydepends-dummy: pbuilder-satisfydepends-dummy depends on debhelper (>> 3.0.0); however: Package debhelper is not installed. pbuilder-satisfydepends-dummy depends on libdshconfig1-dev (>= 0.20.11-1); however: Package libdshconfig1-dev is not installed. pbuilder-satisfydepends-dummy depends on po4a; however: Package po4a is not installed. dpkg: error processing pbuilder-satisfydepends-dummy (--install): dependency problems - leaving unconfigured Errors were encountered while processing: pbuilder-satisfydepends-dummy Reading package lists... Building dependency tree... Reading state information... Initializing package states... Writing extended state information... Reading task descriptions... The following NEW packages will be installed: debhelper{a} file{a} gettext{a} gettext-base{a} html2text{a} intltool-debian{a} libcroco3{a} libdshconfig1{a} libdshconfig1-dev{a} libglib2.0-0{a} libmagic1{a} libpcre3{a} libsgmls-perl{a} libsp1c2{a} libxml2{a} po-debconf{a} po4a{a} sp{a} The following partially installed packages will be configured: pbuilder-satisfydepends-dummy 0 packages upgraded, 18 newly installed, 0 to remove and 0 not upgraded. Need to get 8755kB of archives. After unpacking 27.3MB will be used. Writing extended state information... Get:1 http://ftp.de.debian.org squeeze/main libmagic1 5.03-5 [393kB] Get:2 http://ftp.de.debian.org squeeze/main file 5.03-5 [47.6kB] Get:3 http://ftp.de.debian.org squeeze/main html2text 1.3.2a-14 [103kB] Get:4 http://ftp.de.debian.org squeeze/main libpcre3 7.8-3 [215kB] Get:5 http://ftp.de.debian.org squeeze/main libglib2.0-0 2.22.3-1 [988kB] Get:6 http://ftp.de.debian.org squeeze/main libxml2 2.7.6.dfsg-1 [876kB] Get:7 http://ftp.de.debian.org squeeze/main libcroco3 0.6.2-1 [125kB] Get:8 http://ftp.de.debian.org squeeze/main gettext-base 0.17-8 [133kB] Get:9 http://ftp.de.debian.org squeeze/main gettext 0.17-8 [2503kB] Get:10 http://ftp.de.debian.org squeeze/main intltool-debian 0.35.0+20060710.1 [30.8kB] Get:11 http://ftp.de.debian.org squeeze/main po-debconf 1.0.16 [224kB] Get:12 http://ftp.de.debian.org squeeze/main debhelper 7.4.10 [458kB] Get:13 http://ftp.de.debian.org squeeze/main libdshconfig1 0.20.13-1 [11.0kB] Get:14 http://ftp.de.debian.org squeeze/main libdshconfig1-dev 0.20.13-1 [25.4kB] Get:15 http://ftp.de.debian.org squeeze/main libsgmls-perl 1.03ii-32 [27.8kB] Get:16 http://ftp.de.debian.org squeeze/main libsp1c2 1.3.4-1.2.1-47 [1386kB] Get:17 http://ftp.de.debian.org squeeze/main sp 1.3.4-1.2.1-47 [182kB] Get:18 http://ftp.de.debian.org squeeze/main po4a 0.37.1-1 [1026kB] Fetched XXXB in Xs (XXXXXB/s) Selecting previously deselected package libmagic1. (Reading database ... 12190 files and directories currently installed.) Unpacking libmagic1 (from .../libmagic1_5.03-5_amd64.deb) ... Selecting previously deselected package file. Unpacking file (from .../archives/file_5.03-5_amd64.deb) ... Selecting previously deselected package html2text. Unpacking html2text (from .../html2text_1.3.2a-14_amd64.deb) ... Selecting previously deselected package libpcre3. Unpacking libpcre3 (from .../libpcre3_7.8-3_amd64.deb) ... Selecting previously deselected package libglib2.0-0. Unpacking libglib2.0-0 (from .../libglib2.0-0_2.22.3-1_amd64.deb) ... Selecting previously deselected package libxml2. Unpacking libxml2 (from .../libxml2_2.7.6.dfsg-1_amd64.deb) ... Selecting previously deselected package libcroco3. Unpacking libcroco3 (from .../libcroco3_0.6.2-1_amd64.deb) ... Selecting previously deselected package gettext-base. Unpacking gettext-base (from .../gettext-base_0.17-8_amd64.deb) ... Selecting previously deselected package gettext. Unpacking gettext (from .../gettext_0.17-8_amd64.deb) ... Selecting previously deselected package intltool-debian. Unpacking intltool-debian (from .../intltool-debian_0.35.0+20060710.1_all.deb) ... Selecting previously deselected package po-debconf. Unpacking po-debconf (from .../po-debconf_1.0.16_all.deb) ... Selecting previously deselected package debhelper. Unpacking debhelper (from .../debhelper_7.4.10_all.deb) ... Selecting previously deselected package libdshconfig1. Unpacking libdshconfig1 (from .../libdshconfig1_0.20.13-1_amd64.deb) ... Selecting previously deselected package libdshconfig1-dev. Unpacking libdshconfig1-dev (from .../libdshconfig1-dev_0.20.13-1_amd64.deb) ... Selecting previously deselected package libsgmls-perl. Unpacking libsgmls-perl (from .../libsgmls-perl_1.03ii-32_all.deb) ... Selecting previously deselected package libsp1c2. Unpacking libsp1c2 (from .../libsp1c2_1.3.4-1.2.1-47_amd64.deb) ... Selecting previously deselected package sp. Unpacking sp (from .../sp_1.3.4-1.2.1-47_amd64.deb) ... Selecting previously deselected package po4a. Unpacking po4a (from .../archives/po4a_0.37.1-1_all.deb) ... Processing triggers for man-db ... Processing triggers for install-info ... Setting up libmagic1 (5.03-5) ... Setting up file (5.03-5) ... Setting up html2text (1.3.2a-14) ... Setting up libpcre3 (7.8-3) ... Setting up libglib2.0-0 (2.22.3-1) ... Setting up libxml2 (2.7.6.dfsg-1) ... Setting up libcroco3 (0.6.2-1) ... Setting up gettext-base (0.17-8) ... Setting up gettext (0.17-8) ... Setting up intltool-debian (0.35.0+20060710.1) ... Setting up po-debconf (1.0.16) ... Setting up debhelper (7.4.10) ... Setting up libdshconfig1 (0.20.13-1) ... Setting up libdshconfig1-dev (0.20.13-1) ... Setting up libsgmls-perl (1.03ii-32) ... Setting up libsp1c2 (1.3.4-1.2.1-47) ... Setting up sp (1.3.4-1.2.1-47) ... Setting up po4a (0.37.1-1) ... Setting up pbuilder-satisfydepends-dummy (0.invalid.0) ... Reading package lists... Building dependency tree... Reading state information... Reading extended state information... Initializing package states... Writing extended state information... Reading task descriptions... -> Finished parsing the build-deps Reading package lists... Building dependency tree... Reading state information... aptitude is already the newest version. The following NEW packages will be installed: fakeroot 0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded. Need to get 100kB of archives. After this operation, 385kB of additional disk space will be used. Get:1 http://ftp.de.debian.org squeeze/main fakeroot 1.14.4-1 [100kB] Fetched XXXB in Xs (XXXXXB/s) Selecting previously deselected package fakeroot. (Reading database ... 13352 files and directories currently installed.) Unpacking fakeroot (from .../fakeroot_1.14.4-1_amd64.deb) ... Processing triggers for man-db ... Setting up fakeroot (1.14.4-1) ... update-alternatives: using /usr/bin/fakeroot-sysv to provide /usr/bin/fakeroot (fakeroot) in auto mode. I: Copying back the cached apt archive contents I: new cache content sp_1.3.4-1.2.1-47_amd64.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/sp_1.3.4-1.2.1-47_amd64.deb' => `/TESTDIR/dir3/NUM/var/cache/apt/archives/sp_1.3.4-1.2.1-47_amd64.deb': Invalid cross-device link I: new cache content po4a_0.37.1-1_all.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/po4a_0.37.1-1_all.deb' => `/TESTDIR/dir3/NUM/var/cache/apt/archives/po4a_0.37.1-1_all.deb': Invalid cross-device link I: new cache content libdshconfig1_0.20.13-1_amd64.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/libdshconfig1_0.20.13-1_amd64.deb' => `/TESTDIR/dir3/NUM/var/cache/apt/archives/libdshconfig1_0.20.13-1_amd64.deb': Invalid cross-device link I: new cache content libmagic1_5.03-5_amd64.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/libmagic1_5.03-5_amd64.deb' => `/TESTDIR/dir3/NUM/var/cache/apt/archives/libmagic1_5.03-5_amd64.deb': Invalid cross-device link I: new cache content libsp1c2_1.3.4-1.2.1-47_amd64.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/libsp1c2_1.3.4-1.2.1-47_amd64.deb' => `/TESTDIR/dir3/NUM/var/cache/apt/archives/libsp1c2_1.3.4-1.2.1-47_amd64.deb': Invalid cross-device link I: new cache content libsgmls-perl_1.03ii-32_all.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/libsgmls-perl_1.03ii-32_all.deb' => `/TESTDIR/dir3/NUM/var/cache/apt/archives/libsgmls-perl_1.03ii-32_all.deb': Invalid cross-device link I: new cache content libdshconfig1-dev_0.20.13-1_amd64.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/libdshconfig1-dev_0.20.13-1_amd64.deb' => `/TESTDIR/dir3/NUM/var/cache/apt/archives/libdshconfig1-dev_0.20.13-1_amd64.deb': Invalid cross-device link I: new cache content file_5.03-5_amd64.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/file_5.03-5_amd64.deb' => `/TESTDIR/dir3/NUM/var/cache/apt/archives/file_5.03-5_amd64.deb': Invalid cross-device link I: new cache content debhelper_7.4.10_all.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/debhelper_7.4.10_all.deb' => `/TESTDIR/dir3/NUM/var/cache/apt/archives/debhelper_7.4.10_all.deb': Invalid cross-device link I: Copying source file I: copying [../dsh_0.25.10-1.dsc] I: copying [../dsh_0.25.10.orig.tar.gz] I: copying [../dsh_0.25.10-1.diff.gz] I: Extracting source dpkg-source: warning: extracting unsigned source package (dsh_0.25.10-1.dsc) dpkg-source: info: extracting dsh in dsh-0.25.10 dpkg-source: info: unpacking dsh_0.25.10.orig.tar.gz dpkg-source: info: applying dsh_0.25.10-1.diff.gz dpkg-source: info: upstream files that have been modified: dsh-0.25.10/.cvsignore dsh-0.25.10/CVS/Entries dsh-0.25.10/CVS/Repository dsh-0.25.10/CVS/Root dsh-0.25.10/ChangeLog.OLD dsh-0.25.10/dcp.sh dsh-0.25.10/drshd.c dsh-0.25.10/dsh.1.ja.po dsh-0.25.10/m4/.cvsignore dsh-0.25.10/m4/CVS/Entries dsh-0.25.10/m4/CVS/Repository dsh-0.25.10/m4/CVS/Root dsh-0.25.10/po/.cvsignore dsh-0.25.10/po/CVS/Entries dsh-0.25.10/po/CVS/Repository dsh-0.25.10/po/CVS/Root dsh-0.25.10/po/insert-header.sin dsh-0.25.10/tests/.cvsignore dsh-0.25.10/tests/CVS/Entries dsh-0.25.10/tests/CVS/Repository dsh-0.25.10/tests/CVS/Root I: Building the package I: Running cd tmp/buildd/*/ && dpkg-buildpackage -us -uc -rfakeroot dpkg-buildpackage: set CFLAGS to default value: -g -O2 dpkg-buildpackage: set CPPFLAGS to default value: dpkg-buildpackage: set LDFLAGS to default value: dpkg-buildpackage: set FFLAGS to default value: -g -O2 dpkg-buildpackage: set CXXFLAGS to default value: -g -O2 dpkg-buildpackage: source package dsh dpkg-buildpackage: source version 0.25.10-1 dpkg-buildpackage: source changed by Junichi Uekawa dpkg-buildpackage: host architecture amd64 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.10' make[1]: *** No rule to make target `clean'. Stop. make[1]: Leaving directory `/tmp/buildd/dsh-0.25.10' make: [clean] Error 2 (ignored) /usr/bin/make distclean make[1]: Entering directory `/tmp/buildd/dsh-0.25.10' make[1]: *** No rule to make target `distclean'. Stop. make[1]: Leaving directory `/tmp/buildd/dsh-0.25.10' make: [clean] Error 2 (ignored) dh_clean dh_clean: Compatibility levels before 5 are deprecated. dpkg-source -b dsh-0.25.10 dpkg-source: info: using source format `1.0' dpkg-source: info: building dsh using existing dsh_0.25.10.orig.tar.gz dpkg-source: info: building dsh in dsh_0.25.10-1.diff.gz dpkg-source: warning: file dsh-0.25.10/dcp.sh has no final newline (either original or modified version) dpkg-source: warning: file dsh-0.25.10/debian/compat has no final newline (either original or modified version) dpkg-source: warning: the diff modifies the following upstream files: .cvsignore CVS/Entries CVS/Repository CVS/Root ChangeLog.OLD dcp.sh drshd.c dsh.1.ja.po m4/.cvsignore m4/CVS/Entries m4/CVS/Repository m4/CVS/Root po/.cvsignore po/CVS/Entries po/CVS/Repository po/CVS/Root po/insert-header.sin tests/.cvsignore tests/CVS/Entries tests/CVS/Repository tests/CVS/Root dpkg-source: info: use the '3.0 (quilt)' format to have separate and documented changes to upstream files, see dpkg-source(1) dpkg-source: info: building dsh in dsh_0.25.10-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 ISO C89... none needed checking dependency style of gcc... gcc3 checking for strerror in -lcposix... no checking for gcc... (cached) gcc checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) 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 ISO C89... (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 grep that handles long lines and -e... /bin/grep checking for egrep... /bin/grep -E checking for ANSI C header files... yes checking for sys/wait.h that is POSIX.1 compatible... yes checking build system type... x86_64-unknown-linux-gnu checking host system type... x86_64-unknown-linux-gnu checking for a sed that does not truncate output... /bin/sed checking for ld used by gcc... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for /usr/bin/ld option to reload object files... -r checking for BSD-compatible nm... /usr/bin/nm -B checking whether ln -s works... yes checking how to recognize dependent libraries... pass_all checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking dlfcn.h usability... yes checking dlfcn.h presence... yes checking for dlfcn.h... yes checking for g++... g++ checking whether we are using the GNU C++ compiler... yes checking whether g++ accepts -g... yes checking dependency style of g++... gcc3 checking how to run the C++ preprocessor... g++ -E checking for g77... no checking for xlf... no checking for f77... no checking for frt... no checking for pgf77... no checking for cf77... no checking for fort77... no checking for fl32... no checking for af77... no checking for xlf90... no checking for f90... no checking for pgf90... no checking for pghpf... no checking for epcf90... no checking for gfortran... no checking for g95... no checking for xlf95... no checking for f95... no checking for fort... no checking for ifort... no checking for ifc... no checking for efc... no checking for pgf95... no checking for lf95... no checking for ftn... no checking whether we are using the GNU Fortran 77 compiler... no checking whether accepts -g... no checking the maximum length of command line arguments... 3458764513820540925 checking command to parse /usr/bin/nm -B output from gcc object... ok checking for objdir... .libs checking for ar... ar checking for ranlib... ranlib checking for strip... strip checking if gcc supports -fno-rtti -fno-exceptions... no checking for gcc option to produce PIC... -fPIC checking if gcc PIC flag -fPIC works... yes checking if gcc static flag -static works... yes checking if gcc supports -c -o file.o... yes checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) 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 -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking for g++ option to produce PIC... -fPIC checking if g++ PIC flag -fPIC works... yes checking if g++ static flag -static works... yes checking if g++ supports -c -o file.o... yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate appending configuration tag "F77" to libtool checking 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 -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) 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: WARNING: po/Makefile.in.in seems to ignore the --datarootdir setting 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.10' /usr/bin/make all-recursive make[2]: Entering directory `/tmp/buildd/dsh-0.25.10' Making all in m4 make[3]: Entering directory `/tmp/buildd/dsh-0.25.10/m4' make[3]: Nothing to be done for `all'. make[3]: Leaving directory `/tmp/buildd/dsh-0.25.10/m4' Making all in po make[3]: Entering directory `/tmp/buildd/dsh-0.25.10/po' make[3]: Nothing to be done for `all'. make[3]: Leaving directory `/tmp/buildd/dsh-0.25.10/po' make[3]: Entering directory `/tmp/buildd/dsh-0.25.10' 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/bash ./libtool --tag=CC --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.10' make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10' make[1]: Leaving directory `/tmp/buildd/dsh-0.25.10' /usr/bin/make check make[1]: Entering directory `/tmp/buildd/dsh-0.25.10' Making check in m4 make[2]: Entering directory `/tmp/buildd/dsh-0.25.10/m4' make[2]: Nothing to be done for `check'. make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10/m4' Making check in po make[2]: Entering directory `/tmp/buildd/dsh-0.25.10/po' make[2]: Nothing to be done for `check'. make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10/po' make[2]: Entering directory `/tmp/buildd/dsh-0.25.10' /usr/bin/make dsh make[3]: Entering directory `/tmp/buildd/dsh-0.25.10' make[3]: `dsh' is up to date. make[3]: Leaving directory `/tmp/buildd/dsh-0.25.10' /usr/bin/make check-TESTS make[3]: Entering directory `/tmp/buildd/dsh-0.25.10' PASS: tests/param-f.sh dsh: File ./tests/nonexistent.file could not be opened for read PASS: tests/param-f-fail.sh PASS: tests/param-f-with-space.sh PASS: tests/param-m.sh test to check that unknown parameter checking is right. ./dsh: unrecognized option '--unknown-parameter' ./dsh: invalid option -- 'u' PASS: tests/param-unknown.sh test1 test2 dsh: Process terminated (before write). PASS: tests/param-i.sh Check that cn4 option is working. PASS: tests/param-cn4.sh test to check that -b0 is rejected, and -b1 is accepted Buffer size needs to be greater than 1 Buffer size needs to be greater than 1 a b PASS: tests/param-b-0.sh dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call success dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call success success success success success a: dsh: Failed executing ./invalid-exec-file with llexec call b: dsh: Failed executing ./invalid-exec-file with llexec call c: dsh: Failed executing ./invalid-exec-file with llexec call d: dsh: Failed executing ./invalid-exec-file with llexec call success dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call success PASS: tests/param-r-invalid.sh 1: 1 2: 2 dsh: fork limit and wait shell cannot be specified at the same time PASS: tests/param-F-invalid.sh Fri Jan 1 19:18:46 UTC 2010 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 Fri Jan 1 19:18:51 UTC 2010 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 `/tmp/buildd/dsh-0.25.10' make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10' make[1]: Leaving directory `/tmp/buildd/dsh-0.25.10' touch build-stamp fakeroot debian/rules binary dh_testdir dh_testroot dh_clean -k dh_clean: Compatibility levels before 5 are deprecated. dh_installdirs dh_installdirs: Compatibility levels before 5 are deprecated. # Add here commands to install the package into debian/dsh. /usr/bin/make install DESTDIR=/tmp/buildd/dsh-0.25.10/debian/dsh make[1]: Entering directory `/tmp/buildd/dsh-0.25.10' Making install in m4 make[2]: Entering directory `/tmp/buildd/dsh-0.25.10/m4' make[3]: Entering directory `/tmp/buildd/dsh-0.25.10/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.10/m4' make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10/m4' Making install in po make[2]: Entering directory `/tmp/buildd/dsh-0.25.10/po' /bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share mkdir -p -- /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share mkdir -p -- /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/locale/ja/LC_MESSAGES installing ja.gmo as /tmp/buildd/dsh-0.25.10/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.10/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.10/debian/dsh/usr/share/gettext/po/$file; \ done; \ else \ : ; \ fi make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10/po' make[2]: Entering directory `/tmp/buildd/dsh-0.25.10' make[3]: Entering directory `/tmp/buildd/dsh-0.25.10' test -z "/usr/bin" || mkdir -p -- "/tmp/buildd/dsh-0.25.10/debian/dsh/usr/bin" /bin/bash ./libtool --mode=install install -p -o root -g root -m 755 -s 'dsh' '/tmp/buildd/dsh-0.25.10/debian/dsh/usr/bin/dsh' install -p -o root -g root -m 755 -s dsh /tmp/buildd/dsh-0.25.10/debian/dsh/usr/bin/dsh test -z "/etc/dsh" || mkdir -p -- "/tmp/buildd/dsh-0.25.10/debian/dsh/etc/dsh" /usr/bin/install -c -m 644 'dsh.conf' '/tmp/buildd/dsh-0.25.10/debian/dsh/etc/dsh/dsh.conf' for LANGS in ja ; do \ mkdir -p /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/$LANGS/man1 ;\ mkdir -p /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/$LANGS/man5 ;\ sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.$LANGS.1 \ > /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/$LANGS/man1/dsh.1 ; \ sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.conf.$LANGS.5 \ > /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/$LANGS/man5/dsh.conf.5 ; \ done test -z "/usr/share/man/man1" || mkdir -p -- "/tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/man1" /usr/bin/install -c -m 644 './build-man/dsh.1' '/tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/man1/dsh.1' test -z "/usr/share/man/man5" || mkdir -p -- "/tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/man5" /usr/bin/install -c -m 644 './build-man/dsh.conf.5' '/tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/man5/dsh.conf.5' make[3]: Leaving directory `/tmp/buildd/dsh-0.25.10' make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10' make[1]: Leaving directory `/tmp/buildd/dsh-0.25.10' cp /tmp/buildd/dsh-0.25.10/debian/machines.list /tmp/buildd/dsh-0.25.10/debian/dsh/etc/dsh/machines.list cp /tmp/buildd/dsh-0.25.10/dsh.conf /tmp/buildd/dsh-0.25.10/debian/dsh/etc/dsh/dsh.conf ln -s ../machines.list /tmp/buildd/dsh-0.25.10/debian/dsh/etc/dsh/group/all install -d /tmp/buildd/dsh-0.25.10/debian/dsh/usr/lib/update-cluster install -m 755 /tmp/buildd/dsh-0.25.10/debian/dsh.updatelist /tmp/buildd/dsh-0.25.10/debian/dsh/usr/lib/update-cluster/ dh_testdir dh_testroot dh_installdocs NEWS dh_installdocs: Compatibility levels before 5 are deprecated. dh_installexamples dh_installexamples: Compatibility levels before 5 are deprecated. dh_installmenu dh_installmenu: Compatibility levels before 5 are deprecated. dh_installman dh_installman: Compatibility levels before 5 are deprecated. dh_installchangelogs ChangeLog dh_installchangelogs: Compatibility levels before 5 are deprecated. dh_link dh_link: Compatibility levels before 5 are deprecated. dh_strip dh_strip: Compatibility levels before 5 are deprecated. dh_shlibdeps dh_shlibdeps: Compatibility levels before 5 are deprecated. dh_compress dh_compress: Compatibility levels before 5 are deprecated. dh_fixperms dh_fixperms: Compatibility levels before 5 are deprecated. dh_installdeb dh_installdeb: Compatibility levels before 5 are deprecated. dh_gencontrol dh_gencontrol: Compatibility levels before 5 are deprecated. dh_md5sums dh_md5sums: Compatibility levels before 5 are deprecated. dh_builddeb dh_builddeb: Compatibility levels before 5 are deprecated. dpkg-deb: building package `dsh' in `../dsh_0.25.10-1_amd64.deb'. dpkg-genchanges >../dsh_0.25.10-1_amd64.changes dpkg-genchanges: including full source code in upload dpkg-buildpackage: full upload (original source is included) I: Copying back the cached apt archive contents I: new cache content sp_1.3.4-1.2.1-47_amd64.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/sp_1.3.4-1.2.1-47_amd64.deb' => `/TESTDIR/dir3/NUM/var/cache/apt/archives/sp_1.3.4-1.2.1-47_amd64.deb': Invalid cross-device link I: new cache content po4a_0.37.1-1_all.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/po4a_0.37.1-1_all.deb' => `/TESTDIR/dir3/NUM/var/cache/apt/archives/po4a_0.37.1-1_all.deb': Invalid cross-device link I: new cache content libdshconfig1_0.20.13-1_amd64.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/libdshconfig1_0.20.13-1_amd64.deb' => `/TESTDIR/dir3/NUM/var/cache/apt/archives/libdshconfig1_0.20.13-1_amd64.deb': Invalid cross-device link I: new cache content libmagic1_5.03-5_amd64.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/libmagic1_5.03-5_amd64.deb' => `/TESTDIR/dir3/NUM/var/cache/apt/archives/libmagic1_5.03-5_amd64.deb': Invalid cross-device link I: new cache content libsp1c2_1.3.4-1.2.1-47_amd64.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/libsp1c2_1.3.4-1.2.1-47_amd64.deb' => `/TESTDIR/dir3/NUM/var/cache/apt/archives/libsp1c2_1.3.4-1.2.1-47_amd64.deb': Invalid cross-device link I: new cache content libsgmls-perl_1.03ii-32_all.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/libsgmls-perl_1.03ii-32_all.deb' => `/TESTDIR/dir3/NUM/var/cache/apt/archives/libsgmls-perl_1.03ii-32_all.deb': Invalid cross-device link I: new cache content libdshconfig1-dev_0.20.13-1_amd64.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/libdshconfig1-dev_0.20.13-1_amd64.deb' => `/TESTDIR/dir3/NUM/var/cache/apt/archives/libdshconfig1-dev_0.20.13-1_amd64.deb': Invalid cross-device link I: new cache content file_5.03-5_amd64.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/file_5.03-5_amd64.deb' => `/TESTDIR/dir3/NUM/var/cache/apt/archives/file_5.03-5_amd64.deb': Invalid cross-device link I: new cache content debhelper_7.4.10_all.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/debhelper_7.4.10_all.deb' => `/TESTDIR/dir3/NUM/var/cache/apt/archives/debhelper_7.4.10_all.deb': Invalid cross-device link I: unmounting dev/pts filesystem I: unmounting proc filesystem I: cleaning the build env I: removing directory /TESTDIR/dir3/NUM and its subdirectories I: Current time: Fri Jan 1 19:18:54 UTC 2010 I: pbuilder-time-stamp: 1262373534 pbuilder-0.215ubuntu7/testsuite/normal/pbuilder-build-dsh-squeeze.log0000664000000000000000000032142012312041170022724 0ustar I: using fakeroot in build. I: Current time: Fri Jan 1 19:15:24 UTC 2010 I: pbuilder-time-stamp: 1262373324 I: Building the build Environment I: extracting base tarball [/TESTDIR/testimage] I: creating local configuration I: copying local configuration I: mounting /proc filesystem I: mounting /dev/pts filesystem I: policy-rc.d already exists I: Obtaining the cached apt archive contents ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/liblzma0_4.999.9beta+20091004-1_amd64.deb' => `/var/cache/pbuilder/aptcache/liblzma0_4.999.9beta+20091004-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/hello_2.4-3_amd64.deb' => `/var/cache/pbuilder/aptcache/hello_2.4-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libcurl3-gnutls_7.19.5-1ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/libcurl3-gnutls_7.19.5-1ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libsasl2-2_2.1.23.dfsg1-1ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/libsasl2-2_2.1.23.dfsg1-1ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/binutils_2.20-0ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/binutils_2.20-0ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/util-linux_2.16.1-4_amd64.deb' => `/var/cache/pbuilder/aptcache/util-linux_2.16.1-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libssl0.9.8_0.9.8k-6_amd64.deb' => `/var/cache/pbuilder/aptcache/libssl0.9.8_0.9.8k-6_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libcroco3_0.6.1-2_i386.deb' => `/var/cache/pbuilder/aptcache/libcroco3_0.6.1-2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libssl0.9.8_0.9.8k-7_amd64.deb' => `/var/cache/pbuilder/aptcache/libssl0.9.8_0.9.8k-7_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/bzip2_1.0.5-3_amd64.deb' => `/var/cache/pbuilder/aptcache/bzip2_1.0.5-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libc-bin_2.10.2-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libc-bin_2.10.2-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libssl0.9.8_0.9.8g-16ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/libssl0.9.8_0.9.8g-16ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libkrb5support0_1.7dfsg~beta3-1_i386.deb' => `/var/cache/pbuilder/aptcache/libkrb5support0_1.7dfsg~beta3-1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/gcc_4%3a4.4.2-2_amd64.deb' => `/var/cache/pbuilder/aptcache/gcc_4%3a4.4.2-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/gpgv_1.4.9-4ubuntu7_i386.deb' => `/var/cache/pbuilder/aptcache/gpgv_1.4.9-4ubuntu7_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/gcc-4.4-base_4.4.2-3_amd64.deb' => `/var/cache/pbuilder/aptcache/gcc-4.4-base_4.4.2-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/bsdutils_1%3a2.16.2-0_amd64.deb' => `/var/cache/pbuilder/aptcache/bsdutils_1%3a2.16.2-0_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libslang2_2.2.2-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libslang2_2.2.2-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/linux-libc-dev_2.6.30-8_amd64.deb' => `/var/cache/pbuilder/aptcache/linux-libc-dev_2.6.30-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/bash_4.0-5ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/bash_4.0-5ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/dpkg-dev_1.15.4ubuntu2_all.deb' => `/var/cache/pbuilder/aptcache/dpkg-dev_1.15.4ubuntu2_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/netbase_4.40_all.deb' => `/var/cache/pbuilder/aptcache/netbase_4.40_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libcomerr2_1.41.9-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libcomerr2_1.41.9-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libgdbm3_1.8.3-4_i386.deb' => `/var/cache/pbuilder/aptcache/libgdbm3_1.8.3-4_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/bzip2_1.0.5-3_i386.deb' => `/var/cache/pbuilder/aptcache/bzip2_1.0.5-3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libdbus-1-3_1.2.16-0ubuntu9_i386.deb' => `/var/cache/pbuilder/aptcache/libdbus-1-3_1.2.16-0ubuntu9_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/bsdutils_1%3a2.16-1ubuntu5_i386.deb' => `/var/cache/pbuilder/aptcache/bsdutils_1%3a2.16-1ubuntu5_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libxapian15_1.0.17-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libxapian15_1.0.17-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/python-support_1.0.4_all.deb' => `/var/cache/pbuilder/aptcache/python-support_1.0.4_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libcomerr2_1.41.9-1ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/libcomerr2_1.41.9-1ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/sysvinit-utils_2.87dsf-4ubuntu11_i386.deb' => `/var/cache/pbuilder/aptcache/sysvinit-utils_2.87dsf-4ubuntu11_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/login_1%3a4.1.4.1-1ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/login_1%3a4.1.4.1-1ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libudev0_149-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libudev0_149-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libstdc++6-4.4-dev_4.4.2-8_amd64.deb' => `/var/cache/pbuilder/aptcache/libstdc++6-4.4-dev_4.4.2-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libdb4.5_4.5.20-13.1_amd64.deb' => `/var/cache/pbuilder/aptcache/libdb4.5_4.5.20-13.1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libncurses5_5.7+20090803-2ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/libncurses5_5.7+20090803-2ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libusb-0.1-4_2%3a0.1.12-13_i386.deb' => `/var/cache/pbuilder/aptcache/libusb-0.1-4_2%3a0.1.12-13_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libpam-runtime_1.1.0-2ubuntu1_all.deb' => `/var/cache/pbuilder/aptcache/libpam-runtime_1.1.0-2ubuntu1_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libept0_0.5.26ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/libept0_0.5.26ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/lsb-release_3.2-23_all.deb' => `/var/cache/pbuilder/aptcache/lsb-release_3.2-23_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libldap-2.4-2_2.4.18-0ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/libldap-2.4-2_2.4.18-0ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/liblzma1_4.999.9beta+20091116-1_amd64.deb' => `/var/cache/pbuilder/aptcache/liblzma1_4.999.9beta+20091116-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/logrotate_3.7.8-4_amd64.deb' => `/var/cache/pbuilder/aptcache/logrotate_3.7.8-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/mountall_1.0_i386.deb' => `/var/cache/pbuilder/aptcache/mountall_1.0_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/ubuntu-keyring_2009.08.28_all.deb' => `/var/cache/pbuilder/aptcache/ubuntu-keyring_2009.08.28_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/tasksel_2.80_all.deb' => `/var/cache/pbuilder/aptcache/tasksel_2.80_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/debianutils_3.2.2_amd64.deb' => `/var/cache/pbuilder/aptcache/debianutils_3.2.2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libboost-iostreams1.40.0_1.40.0-5_amd64.deb' => `/var/cache/pbuilder/aptcache/libboost-iostreams1.40.0_1.40.0-5_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libacl1_2.2.49-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libacl1_2.2.49-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/dmidecode_2.9-1.2_amd64.deb' => `/var/cache/pbuilder/aptcache/dmidecode_2.9-1.2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libtimedate-perl_1.1600-9_all.deb' => `/var/cache/pbuilder/aptcache/libtimedate-perl_1.1600-9_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/gcc-4.4_4.4.2-8_amd64.deb' => `/var/cache/pbuilder/aptcache/gcc-4.4_4.4.2-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/sysv-rc_2.87dsf-4ubuntu11_all.deb' => `/var/cache/pbuilder/aptcache/sysv-rc_2.87dsf-4ubuntu11_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/po-debconf_1.0.16_all.deb' => `/var/cache/pbuilder/aptcache/po-debconf_1.0.16_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/mime-support_3.46-1_all.deb' => `/var/cache/pbuilder/aptcache/mime-support_3.46-1_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/apt_0.7.23.1ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/apt_0.7.23.1ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/lsb-base_3.2-23_all.deb' => `/var/cache/pbuilder/aptcache/lsb-base_3.2-23_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libkrb5-3_1.7dfsg~beta3-1_i386.deb' => `/var/cache/pbuilder/aptcache/libkrb5-3_1.7dfsg~beta3-1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libtasn1-3_2.2-1_i386.deb' => `/var/cache/pbuilder/aptcache/libtasn1-3_2.2-1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/dash_0.5.5.1-3_amd64.deb' => `/var/cache/pbuilder/aptcache/dash_0.5.5.1-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libwrap0_7.6.q-18_amd64.deb' => `/var/cache/pbuilder/aptcache/libwrap0_7.6.q-18_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libgssapi-krb5-2_1.7dfsg~beta3-1_i386.deb' => `/var/cache/pbuilder/aptcache/libgssapi-krb5-2_1.7dfsg~beta3-1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libss2_1.41.9-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libss2_1.41.9-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libsqlite3-0_3.6.21-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libsqlite3-0_3.6.21-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libslang2_2.2.1-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libslang2_2.2.1-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libgcc1_1%3a4.4.2-3_amd64.deb' => `/var/cache/pbuilder/aptcache/libgcc1_1%3a4.4.2-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/procps_1%3a3.2.8-2_amd64.deb' => `/var/cache/pbuilder/aptcache/procps_1%3a3.2.8-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/aptitude_0.6.1.3-3_amd64.deb' => `/var/cache/pbuilder/aptcache/aptitude_0.6.1.3-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libstdc++6_4.4.1-4ubuntu8_i386.deb' => `/var/cache/pbuilder/aptcache/libstdc++6_4.4.1-4ubuntu8_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/perl-base_5.10.1-8_amd64.deb' => `/var/cache/pbuilder/aptcache/perl-base_5.10.1-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libusb-0.1-4_2%3a0.1.12-13_amd64.deb' => `/var/cache/pbuilder/aptcache/libusb-0.1-4_2%3a0.1.12-13_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/mawk_1.3.3-15ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/mawk_1.3.3-15ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libpam0g_1.1.0-4_amd64.deb' => `/var/cache/pbuilder/aptcache/libpam0g_1.1.0-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/liblocale-gettext-perl_1.05-4build1_i386.deb' => `/var/cache/pbuilder/aptcache/liblocale-gettext-perl_1.05-4build1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/login_1%3a4.1.4.2-1_amd64.deb' => `/var/cache/pbuilder/aptcache/login_1%3a4.1.4.2-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/man-db_2.5.6-4_amd64.deb' => `/var/cache/pbuilder/aptcache/man-db_2.5.6-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libgdbm3_1.8.3-9_amd64.deb' => `/var/cache/pbuilder/aptcache/libgdbm3_1.8.3-9_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/ed_1.4-1_amd64.deb' => `/var/cache/pbuilder/aptcache/ed_1.4-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libselinux1_2.0.85-2ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/libselinux1_2.0.85-2ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libblkid1_2.16.1-4_amd64.deb' => `/var/cache/pbuilder/aptcache/libblkid1_2.16.1-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libcroco3_0.6.2-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libcroco3_0.6.2-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/cpp_4%3a4.4.2-2_amd64.deb' => `/var/cache/pbuilder/aptcache/cpp_4%3a4.4.2-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/debconf_1.5.28_all.deb' => `/var/cache/pbuilder/aptcache/debconf_1.5.28_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/liblog4cxx10_0.10.0-1.1_amd64.deb' => `/var/cache/pbuilder/aptcache/liblog4cxx10_0.10.0-1.1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/coreutils_7.4-2ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/coreutils_7.4-2ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libsqlite3-0_3.6.20-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libsqlite3-0_3.6.20-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/diffutils_1%3a2.8.7-0.1_amd64.deb' => `/var/cache/pbuilder/aptcache/diffutils_1%3a2.8.7-0.1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/build-essential_11.4_i386.deb' => `/var/cache/pbuilder/aptcache/build-essential_11.4_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/python2.5-minimal_2.5.4-3_amd64.deb' => `/var/cache/pbuilder/aptcache/python2.5-minimal_2.5.4-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/groff-base_1.20.1-5_i386.deb' => `/var/cache/pbuilder/aptcache/groff-base_1.20.1-5_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/sysv-rc_2.87dsf-8_all.deb' => `/var/cache/pbuilder/aptcache/sysv-rc_2.87dsf-8_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/debconf_1.5.27ubuntu2_all.deb' => `/var/cache/pbuilder/aptcache/debconf_1.5.27ubuntu2_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/mount_2.17~rc3-1_amd64.deb' => `/var/cache/pbuilder/aptcache/mount_2.17~rc3-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/vim-common_2%3a7.2.284-1_amd64.deb' => `/var/cache/pbuilder/aptcache/vim-common_2%3a7.2.284-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/module-init-tools_3.11-1_amd64.deb' => `/var/cache/pbuilder/aptcache/module-init-tools_3.11-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libgcrypt11_1.4.4-2ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/libgcrypt11_1.4.4-2ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/lsb-base_4.0-0ubuntu5_all.deb' => `/var/cache/pbuilder/aptcache/lsb-base_4.0-0ubuntu5_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/html2text_1.3.2a-14_amd64.deb' => `/var/cache/pbuilder/aptcache/html2text_1.3.2a-14_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libxml2_2.7.6.dfsg-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libxml2_2.7.6.dfsg-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/g++_4%3a4.4.1-1ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/g++_4%3a4.4.1-1ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libcwidget3_0.5.12-4ubuntu4_i386.deb' => `/var/cache/pbuilder/aptcache/libcwidget3_0.5.12-4ubuntu4_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/manpages_3.23-1_all.deb' => `/var/cache/pbuilder/aptcache/manpages_3.23-1_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/findutils_4.4.2-1_amd64.deb' => `/var/cache/pbuilder/aptcache/findutils_4.4.2-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/cowbuilder_0.58_amd64.deb' => `/var/cache/pbuilder/aptcache/cowbuilder_0.58_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libstdc++6_4.4.2-3_amd64.deb' => `/var/cache/pbuilder/aptcache/libstdc++6_4.4.2-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/dpkg-dev_1.15.5.2_all.deb' => `/var/cache/pbuilder/aptcache/dpkg-dev_1.15.5.2_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/initscripts_2.87dsf-4ubuntu11_i386.deb' => `/var/cache/pbuilder/aptcache/initscripts_2.87dsf-4ubuntu11_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/nano_2.2.1-1_amd64.deb' => `/var/cache/pbuilder/aptcache/nano_2.2.1-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/base-passwd_3.5.22_amd64.deb' => `/var/cache/pbuilder/aptcache/base-passwd_3.5.22_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libc-bin_2.11~0exp1-0exp1_amd64.deb' => `/var/cache/pbuilder/aptcache/libc-bin_2.11~0exp1-0exp1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libgomp1_4.4.2-8_amd64.deb' => `/var/cache/pbuilder/aptcache/libgomp1_4.4.2-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/cpp-4.4_4.4.1-4ubuntu8_i386.deb' => `/var/cache/pbuilder/aptcache/cpp-4.4_4.4.1-4ubuntu8_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/gettext-base_0.17-8ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/gettext-base_0.17-8ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/liblocale-gettext-perl_1.05-6_amd64.deb' => `/var/cache/pbuilder/aptcache/liblocale-gettext-perl_1.05-6_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libkeyutils1_1.2-10_i386.deb' => `/var/cache/pbuilder/aptcache/libkeyutils1_1.2-10_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/hostname_2.95ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/hostname_2.95ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/procps_1%3a3.2.8-1ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/procps_1%3a3.2.8-1ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libsigc++-2.0-0c2a_2.2.2-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libsigc++-2.0-0c2a_2.2.2-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/gettext_0.17-8ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/gettext_0.17-8ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/gcc-4.4-base_4.4.1-4ubuntu8_i386.deb' => `/var/cache/pbuilder/aptcache/gcc-4.4-base_4.4.1-4ubuntu8_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libcwidget3_0.5.16-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libcwidget3_0.5.16-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libgpg-error0_1.6-1ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/libgpg-error0_1.6-1ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/dpkg-dev_1.15.5.5_all.deb' => `/var/cache/pbuilder/aptcache/dpkg-dev_1.15.5.5_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libsepol1_2.0.37-1_i386.deb' => `/var/cache/pbuilder/aptcache/libsepol1_2.0.37-1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libstdc++6_4.4.2-8_amd64.deb' => `/var/cache/pbuilder/aptcache/libstdc++6_4.4.2-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libss2_1.41.9-1ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/libss2_1.41.9-1ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libsigc++-2.0-0c2a_2.0.18-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libsigc++-2.0-0c2a_2.0.18-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libk5crypto3_1.7dfsg~beta3-1_i386.deb' => `/var/cache/pbuilder/aptcache/libk5crypto3_1.7dfsg~beta3-1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/fakeroot_1.14.4-1_amd64.deb' => `/var/cache/pbuilder/aptcache/fakeroot_1.14.4-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/ncurses-bin_5.7+20090803-2_amd64.deb' => `/var/cache/pbuilder/aptcache/ncurses-bin_5.7+20090803-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/util-linux_2.17~rc3-1_amd64.deb' => `/var/cache/pbuilder/aptcache/util-linux_2.17~rc3-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/cron_3.0pl1-106_amd64.deb' => `/var/cache/pbuilder/aptcache/cron_3.0pl1-106_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libacl1_2.2.47-2_i386.deb' => `/var/cache/pbuilder/aptcache/libacl1_2.2.47-2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/netcat-traditional_1.10-38_amd64.deb' => `/var/cache/pbuilder/aptcache/netcat-traditional_1.10-38_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/e2fslibs_1.41.9-1_amd64.deb' => `/var/cache/pbuilder/aptcache/e2fslibs_1.41.9-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/g++-4.4_4.4.2-8_amd64.deb' => `/var/cache/pbuilder/aptcache/g++-4.4_4.4.2-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/bsdmainutils_6.1.10ubuntu4_i386.deb' => `/var/cache/pbuilder/aptcache/bsdmainutils_6.1.10ubuntu4_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/python-debian_0.1.14_all.deb' => `/var/cache/pbuilder/aptcache/python-debian_0.1.14_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/python-apt_0.7.13.3_amd64.deb' => `/var/cache/pbuilder/aptcache/python-apt_0.7.13.3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/build-essential_11.4_amd64.deb' => `/var/cache/pbuilder/aptcache/build-essential_11.4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/gnupg_1.4.9-4ubuntu7_i386.deb' => `/var/cache/pbuilder/aptcache/gnupg_1.4.9-4ubuntu7_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libsigc++-2.0-0c2a_2.0.18-2_i386.deb' => `/var/cache/pbuilder/aptcache/libsigc++-2.0-0c2a_2.0.18-2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/initscripts_2.87dsf-8_amd64.deb' => `/var/cache/pbuilder/aptcache/initscripts_2.87dsf-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/mount_2.16-1ubuntu5_i386.deb' => `/var/cache/pbuilder/aptcache/mount_2.16-1ubuntu5_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libc6_2.10.1-0ubuntu15_i386.deb' => `/var/cache/pbuilder/aptcache/libc6_2.10.1-0ubuntu15_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/dash_0.5.5.1-2ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/dash_0.5.5.1-2ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/zlib1g_1%3a1.2.3.4.dfsg-3_amd64.deb' => `/var/cache/pbuilder/aptcache/zlib1g_1%3a1.2.3.4.dfsg-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libreadline5_5.2-7_amd64.deb' => `/var/cache/pbuilder/aptcache/libreadline5_5.2-7_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/pbuilder_0.192_all.deb' => `/var/cache/pbuilder/aptcache/pbuilder_0.192_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/nano_2.2.0-1_amd64.deb' => `/var/cache/pbuilder/aptcache/nano_2.2.0-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/e2fsprogs_1.41.9-1ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/e2fsprogs_1.41.9-1ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/aptitude_0.4.11.11-1ubuntu6_i386.deb' => `/var/cache/pbuilder/aptcache/aptitude_0.4.11.11-1ubuntu6_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/bsdutils_1%3a2.16.1-4_amd64.deb' => `/var/cache/pbuilder/aptcache/bsdutils_1%3a2.16.1-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libglib2.0-0_2.22.3-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libglib2.0-0_2.22.3-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/python_2.5.4-2_all.deb' => `/var/cache/pbuilder/aptcache/python_2.5.4-2_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libdebian-installer-extra4_0.69_amd64.deb' => `/var/cache/pbuilder/aptcache/libdebian-installer-extra4_0.69_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/file_5.03-1ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/file_5.03-1ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libc6_2.11~0exp1-0exp1_amd64.deb' => `/var/cache/pbuilder/aptcache/libc6_2.11~0exp1-0exp1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/patch_2.5.9-5_amd64.deb' => `/var/cache/pbuilder/aptcache/patch_2.5.9-5_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/cdebootstrap_0.5.5_amd64.deb' => `/var/cache/pbuilder/aptcache/cdebootstrap_0.5.5_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libbz2-1.0_1.0.5-3_i386.deb' => `/var/cache/pbuilder/aptcache/libbz2-1.0_1.0.5-3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libsasl2-modules_2.1.23.dfsg1-1ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/libsasl2-modules_2.1.23.dfsg1-1ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/perl-modules_5.10.1-8_all.deb' => `/var/cache/pbuilder/aptcache/perl-modules_5.10.1-8_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libdb4.7_4.7.25-9_amd64.deb' => `/var/cache/pbuilder/aptcache/libdb4.7_4.7.25-9_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/debian-archive-keyring_2009.01.31_all.deb' => `/var/cache/pbuilder/aptcache/debian-archive-keyring_2009.01.31_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/grep_2.5.4-4_amd64.deb' => `/var/cache/pbuilder/aptcache/grep_2.5.4-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/udev_149-1_amd64.deb' => `/var/cache/pbuilder/aptcache/udev_149-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/isc-dhcp-common_4.1.0-1_amd64.deb' => `/var/cache/pbuilder/aptcache/isc-dhcp-common_4.1.0-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/base-passwd_3.5.21_i386.deb' => `/var/cache/pbuilder/aptcache/base-passwd_3.5.21_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/gdebi-core_0.5.9debian2_all.deb' => `/var/cache/pbuilder/aptcache/gdebi-core_0.5.9debian2_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/g++-4.3_4.3.4-6_amd64.deb' => `/var/cache/pbuilder/aptcache/g++-4.3_4.3.4-6_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/bsdmainutils_8.0.2_amd64.deb' => `/var/cache/pbuilder/aptcache/bsdmainutils_8.0.2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/sed_4.2.1-1_i386.deb' => `/var/cache/pbuilder/aptcache/sed_4.2.1-1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/sed_4.2.1-4_amd64.deb' => `/var/cache/pbuilder/aptcache/sed_4.2.1-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/dhcp3-client_3.1.3-1_amd64.deb' => `/var/cache/pbuilder/aptcache/dhcp3-client_3.1.3-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/tar_1.22-2_amd64.deb' => `/var/cache/pbuilder/aptcache/tar_1.22-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/netbase_4.35ubuntu2_all.deb' => `/var/cache/pbuilder/aptcache/netbase_4.35ubuntu2_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libapr1_1.3.8-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libapr1_1.3.8-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/gcc-4.3-base_4.3.4-6_amd64.deb' => `/var/cache/pbuilder/aptcache/gcc-4.3-base_4.3.4-6_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libstdc++6-4.4-dev_4.4.1-4ubuntu8_i386.deb' => `/var/cache/pbuilder/aptcache/libstdc++6-4.4-dev_4.4.1-4ubuntu8_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/iproute_20090324-1_amd64.deb' => `/var/cache/pbuilder/aptcache/iproute_20090324-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/iptables_1.4.6-2_amd64.deb' => `/var/cache/pbuilder/aptcache/iptables_1.4.6-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/perl_5.10.1-8_amd64.deb' => `/var/cache/pbuilder/aptcache/perl_5.10.1-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/dpkg_1.15.5.4_amd64.deb' => `/var/cache/pbuilder/aptcache/dpkg_1.15.5.4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libtext-wrapi18n-perl_0.06-7_all.deb' => `/var/cache/pbuilder/aptcache/libtext-wrapi18n-perl_0.06-7_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/apt_0.7.25_amd64.deb' => `/var/cache/pbuilder/aptcache/apt_0.7.25_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/g++_4%3a4.3.4-1_amd64.deb' => `/var/cache/pbuilder/aptcache/g++_4%3a4.3.4-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/util-linux_2.16-1ubuntu5_i386.deb' => `/var/cache/pbuilder/aptcache/util-linux_2.16-1ubuntu5_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/gcc-4.4-base_4.4.2-8_amd64.deb' => `/var/cache/pbuilder/aptcache/gcc-4.4-base_4.4.2-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/mount_2.16.1-4_amd64.deb' => `/var/cache/pbuilder/aptcache/mount_2.16.1-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libc6-dev_2.10.2-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libc6-dev_2.10.2-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/sysvinit_2.87dsf-8_amd64.deb' => `/var/cache/pbuilder/aptcache/sysvinit_2.87dsf-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/passwd_1%3a4.1.4.2-1_amd64.deb' => `/var/cache/pbuilder/aptcache/passwd_1%3a4.1.4.2-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/perl-modules_5.10.0-24ubuntu4_all.deb' => `/var/cache/pbuilder/aptcache/perl-modules_5.10.0-24ubuntu4_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/dpkg-dev_1.15.5.4_all.deb' => `/var/cache/pbuilder/aptcache/dpkg-dev_1.15.5.4_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/gcc-4.3_4.3.4-6_amd64.deb' => `/var/cache/pbuilder/aptcache/gcc-4.3_4.3.4-6_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libaprutil1_1.3.9+dfsg-3_amd64.deb' => `/var/cache/pbuilder/aptcache/libaprutil1_1.3.9+dfsg-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/bsdmainutils_8.0.3_amd64.deb' => `/var/cache/pbuilder/aptcache/bsdmainutils_8.0.3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/tasksel-data_2.80_all.deb' => `/var/cache/pbuilder/aptcache/tasksel-data_2.80_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/bash_4.0-7_amd64.deb' => `/var/cache/pbuilder/aptcache/bash_4.0-7_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/lzma_4.43-14ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/lzma_4.43-14ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/diff_2.8.1-13_i386.deb' => `/var/cache/pbuilder/aptcache/diff_2.8.1-13_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libpcre3_7.8-3_i386.deb' => `/var/cache/pbuilder/aptcache/libpcre3_7.8-3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/python2.6-minimal_2.6.4~rc2-0ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/python2.6-minimal_2.6.4~rc2-0ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/tzdata_2009u-1_all.deb' => `/var/cache/pbuilder/aptcache/tzdata_2009u-1_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/intltool-debian_0.35.0+20060710.1_all.deb' => `/var/cache/pbuilder/aptcache/intltool-debian_0.35.0+20060710.1_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libsepol1_2.0.40-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libsepol1_2.0.40-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libtasn1-3_2.3-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libtasn1-3_2.3-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libdb4.8_4.8.26-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libdb4.8_4.8.26-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/openssl_0.9.8g-16ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/openssl_0.9.8g-16ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/cpp-4.4_4.4.2-8_amd64.deb' => `/var/cache/pbuilder/aptcache/cpp-4.4_4.4.2-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libexpat1_2.0.1-7_amd64.deb' => `/var/cache/pbuilder/aptcache/libexpat1_2.0.1-7_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/adduser_3.112_all.deb' => `/var/cache/pbuilder/aptcache/adduser_3.112_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/zlib1g_1%3a1.2.3.3.dfsg-13ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/zlib1g_1%3a1.2.3.3.dfsg-13ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/patch_2.6-2_amd64.deb' => `/var/cache/pbuilder/aptcache/patch_2.6-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/python-central_0.6.13_all.deb' => `/var/cache/pbuilder/aptcache/python-central_0.6.13_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/util-linux_2.16.2-0_amd64.deb' => `/var/cache/pbuilder/aptcache/util-linux_2.16.2-0_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libreadline6_6.0-5_i386.deb' => `/var/cache/pbuilder/aptcache/libreadline6_6.0-5_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libept0_0.5.29_amd64.deb' => `/var/cache/pbuilder/aptcache/libept0_0.5.29_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/tzdata_2009o-1ubuntu2_all.deb' => `/var/cache/pbuilder/aptcache/tzdata_2009o-1ubuntu2_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libc6-dev_2.10.1-0ubuntu15_i386.deb' => `/var/cache/pbuilder/aptcache/libc6-dev_2.10.1-0ubuntu15_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/tzdata_2009s-1_all.deb' => `/var/cache/pbuilder/aptcache/tzdata_2009s-1_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/traceroute_2.0.13-2_amd64.deb' => `/var/cache/pbuilder/aptcache/traceroute_2.0.13-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/iputils-ping_3%3a20071127-2_amd64.deb' => `/var/cache/pbuilder/aptcache/iputils-ping_3%3a20071127-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libgcc1_1%3a4.4.1-4ubuntu8_i386.deb' => `/var/cache/pbuilder/aptcache/libgcc1_1%3a4.4.1-4ubuntu8_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libreadline6_6.0-5_amd64.deb' => `/var/cache/pbuilder/aptcache/libreadline6_6.0-5_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libgmp3c2_2%3a4.3.1+dfsg-3_amd64.deb' => `/var/cache/pbuilder/aptcache/libgmp3c2_2%3a4.3.1+dfsg-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/cowdancer_0.58_amd64.deb' => `/var/cache/pbuilder/aptcache/cowdancer_0.58_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libgomp1_4.4.1-4ubuntu8_i386.deb' => `/var/cache/pbuilder/aptcache/libgomp1_4.4.1-4ubuntu8_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/dpkg_1.15.5.2_amd64.deb' => `/var/cache/pbuilder/aptcache/dpkg_1.15.5.2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libxml2_2.7.5.dfsg-1ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/libxml2_2.7.5.dfsg-1ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libgmp3c2_2%3a4.3.1+dfsg-1ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/libgmp3c2_2%3a4.3.1+dfsg-1ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libslang2_2.1.4-3_i386.deb' => `/var/cache/pbuilder/aptcache/libslang2_2.1.4-3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libnewt0.52_0.52.10-5_amd64.deb' => `/var/cache/pbuilder/aptcache/libnewt0.52_0.52.10-5_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/make_3.81-6_i386.deb' => `/var/cache/pbuilder/aptcache/make_3.81-6_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/gpgv_1.4.10-2_amd64.deb' => `/var/cache/pbuilder/aptcache/gpgv_1.4.10-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libpam0g_1.1.0-2ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/libpam0g_1.1.0-2ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/python-minimal_2.6.4~rc1-0ubuntu1_all.deb' => `/var/cache/pbuilder/aptcache/python-minimal_2.6.4~rc1-0ubuntu1_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/install-info_4.13a.dfsg.1-5_amd64.deb' => `/var/cache/pbuilder/aptcache/install-info_4.13a.dfsg.1-5_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libblkid1_2.17~rc3-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libblkid1_2.17~rc3-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libtimedate-perl_1.1900-1_all.deb' => `/var/cache/pbuilder/aptcache/libtimedate-perl_1.1900-1_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/ca-certificates_20090814_all.deb' => `/var/cache/pbuilder/aptcache/ca-certificates_20090814_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libmpfr1ldbl_2.4.2-3_amd64.deb' => `/var/cache/pbuilder/aptcache/libmpfr1ldbl_2.4.2-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/net-tools_1.60-23ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/net-tools_1.60-23ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/dhcp3-common_3.1.3-1_amd64.deb' => `/var/cache/pbuilder/aptcache/dhcp3-common_3.1.3-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/debianutils_2.30ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/debianutils_2.30ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/cpp_4%3a4.3.4-1_amd64.deb' => `/var/cache/pbuilder/aptcache/cpp_4%3a4.3.4-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/apt-utils_0.7.23.1_amd64.deb' => `/var/cache/pbuilder/aptcache/apt-utils_0.7.23.1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/dpkg_1.15.5.5_amd64.deb' => `/var/cache/pbuilder/aptcache/dpkg_1.15.5.5_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libpam-runtime_1.1.0-4_all.deb' => `/var/cache/pbuilder/aptcache/libpam-runtime_1.1.0-4_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libc-dev-bin_2.10.2-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libc-dev-bin_2.10.2-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/sysvinit-utils_2.87dsf-8_amd64.deb' => `/var/cache/pbuilder/aptcache/sysvinit-utils_2.87dsf-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/aptitude_0.4.11.11-1+b2_amd64.deb' => `/var/cache/pbuilder/aptcache/aptitude_0.4.11.11-1+b2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libc-bin_2.10.1-0ubuntu15_i386.deb' => `/var/cache/pbuilder/aptcache/libc-bin_2.10.1-0ubuntu15_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/iptables_1.4.5-1_amd64.deb' => `/var/cache/pbuilder/aptcache/iptables_1.4.5-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/bsdutils_1%3a2.17~rc3-1_amd64.deb' => `/var/cache/pbuilder/aptcache/bsdutils_1%3a2.17~rc3-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/sensible-utils_0.0.2_all.deb' => `/var/cache/pbuilder/aptcache/sensible-utils_0.0.2_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/grep_2.5.4-4_i386.deb' => `/var/cache/pbuilder/aptcache/grep_2.5.4-4_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/passwd_1%3a4.1.4.1-1ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/passwd_1%3a4.1.4.1-1ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/whiptail_0.52.10-5_amd64.deb' => `/var/cache/pbuilder/aptcache/whiptail_0.52.10-5_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libblkid1_2.16.2-0_amd64.deb' => `/var/cache/pbuilder/aptcache/libblkid1_2.16.2-0_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/zlib1g_1%3a1.2.3.3.dfsg-15_amd64.deb' => `/var/cache/pbuilder/aptcache/zlib1g_1%3a1.2.3.3.dfsg-15_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/apt-utils_0.7.25_amd64.deb' => `/var/cache/pbuilder/aptcache/apt-utils_0.7.25_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libtext-iconv-perl_1.7-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libtext-iconv-perl_1.7-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/make_3.81-7_amd64.deb' => `/var/cache/pbuilder/aptcache/make_3.81-7_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libudev0_147~-6_i386.deb' => `/var/cache/pbuilder/aptcache/libudev0_147~-6_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/gzip_1.3.12-8ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/gzip_1.3.12-8ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/diffutils_1%3a2.8.1-18_amd64.deb' => `/var/cache/pbuilder/aptcache/diffutils_1%3a2.8.1-18_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/debconf-i18n_1.5.27ubuntu2_all.deb' => `/var/cache/pbuilder/aptcache/debconf-i18n_1.5.27ubuntu2_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libblkid1_2.16-1ubuntu5_i386.deb' => `/var/cache/pbuilder/aptcache/libblkid1_2.16-1ubuntu5_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libselinux1_2.0.89-4_amd64.deb' => `/var/cache/pbuilder/aptcache/libselinux1_2.0.89-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/debhelper_7.3.15ubuntu3_all.deb' => `/var/cache/pbuilder/aptcache/debhelper_7.3.15ubuntu3_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libpcre3_7.8-3_amd64.deb' => `/var/cache/pbuilder/aptcache/libpcre3_7.8-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/net-tools_1.60-23_amd64.deb' => `/var/cache/pbuilder/aptcache/net-tools_1.60-23_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/xz-utils_4.999.9beta+20091004-1_amd64.deb' => `/var/cache/pbuilder/aptcache/xz-utils_4.999.9beta+20091004-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libdb4.7_4.7.25-7ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/libdb4.7_4.7.25-7ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libattr1_1%3a2.4.43-3_i386.deb' => `/var/cache/pbuilder/aptcache/libattr1_1%3a2.4.43-3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/python2.5_2.5.4-3_amd64.deb' => `/var/cache/pbuilder/aptcache/python2.5_2.5.4-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libmagic1_5.03-1ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/libmagic1_5.03-1ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/udev_149-2_amd64.deb' => `/var/cache/pbuilder/aptcache/udev_149-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libdevmapper1.02.1_2%3a1.02.39-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libdevmapper1.02.1_2%3a1.02.39-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libidn11_1.15-1_i386.deb' => `/var/cache/pbuilder/aptcache/libidn11_1.15-1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/g++-4.4_4.4.1-4ubuntu8_i386.deb' => `/var/cache/pbuilder/aptcache/g++-4.4_4.4.1-4ubuntu8_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libmagic1_5.03-3_amd64.deb' => `/var/cache/pbuilder/aptcache/libmagic1_5.03-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libncursesw5_5.7+20090803-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libncursesw5_5.7+20090803-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libtext-charwidth-perl_0.04-5build1_i386.deb' => `/var/cache/pbuilder/aptcache/libtext-charwidth-perl_0.04-5build1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libunwind7_0.99-0.2_amd64.deb' => `/var/cache/pbuilder/aptcache/libunwind7_0.99-0.2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libtext-iconv-perl_1.7-1build1_i386.deb' => `/var/cache/pbuilder/aptcache/libtext-iconv-perl_1.7-1build1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/mount_2.16.2-0_amd64.deb' => `/var/cache/pbuilder/aptcache/mount_2.16.2-0_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libc6_2.10.2-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libc6_2.10.2-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libpopt0_1.15-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libpopt0_1.15-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libudev0_149-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libudev0_149-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/debconf-i18n_1.5.28_all.deb' => `/var/cache/pbuilder/aptcache/debconf-i18n_1.5.28_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/rsyslog_4.4.2-1_amd64.deb' => `/var/cache/pbuilder/aptcache/rsyslog_4.4.2-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/fakeroot_1.12.4ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/fakeroot_1.12.4ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/gcc-4.4_4.4.1-4ubuntu8_i386.deb' => `/var/cache/pbuilder/aptcache/gcc-4.4_4.4.1-4ubuntu8_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/groff-base_1.20.1-6_amd64.deb' => `/var/cache/pbuilder/aptcache/groff-base_1.20.1-6_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/makedev_2.3.1-88_all.deb' => `/var/cache/pbuilder/aptcache/makedev_2.3.1-88_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/xz-utils_4.999.9beta+20091116-1_amd64.deb' => `/var/cache/pbuilder/aptcache/xz-utils_4.999.9beta+20091116-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/ncurses-base_5.7+20090803-2_all.deb' => `/var/cache/pbuilder/aptcache/ncurses-base_5.7+20090803-2_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/html2text_1.3.2a-14_i386.deb' => `/var/cache/pbuilder/aptcache/html2text_1.3.2a-14_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/hostname_3.01_amd64.deb' => `/var/cache/pbuilder/aptcache/hostname_3.01_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/ifupdown_0.6.8ubuntu21_i386.deb' => `/var/cache/pbuilder/aptcache/ifupdown_0.6.8ubuntu21_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libncursesw5_5.7+20090803-2ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/libncursesw5_5.7+20090803-2ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libbz2-1.0_1.0.5-3_amd64.deb' => `/var/cache/pbuilder/aptcache/libbz2-1.0_1.0.5-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/python-minimal_2.5.4-2_all.deb' => `/var/cache/pbuilder/aptcache/python-minimal_2.5.4-2_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/ncurses-base_5.7+20090803-2ubuntu2_all.deb' => `/var/cache/pbuilder/aptcache/ncurses-base_5.7+20090803-2ubuntu2_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/perl-base_5.10.0-24ubuntu4_i386.deb' => `/var/cache/pbuilder/aptcache/perl-base_5.10.0-24ubuntu4_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libpam-modules_1.1.0-2ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/libpam-modules_1.1.0-2ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/gettext_0.17-8_amd64.deb' => `/var/cache/pbuilder/aptcache/gettext_0.17-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/insserv_1.12.0-11_i386.deb' => `/var/cache/pbuilder/aptcache/insserv_1.12.0-11_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/gnupg_1.4.10-2_amd64.deb' => `/var/cache/pbuilder/aptcache/gnupg_1.4.10-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/locales_2.9+git20090617-3_all.deb' => `/var/cache/pbuilder/aptcache/locales_2.9+git20090617-3_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/dmidecode_2.9-1.1_amd64.deb' => `/var/cache/pbuilder/aptcache/dmidecode_2.9-1.1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/findutils_4.4.2-1_i386.deb' => `/var/cache/pbuilder/aptcache/findutils_4.4.2-1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libmpfr1ldbl_2.4.1-1ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/libmpfr1ldbl_2.4.1-1ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/perl_5.10.0-24ubuntu4_i386.deb' => `/var/cache/pbuilder/aptcache/perl_5.10.0-24ubuntu4_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/cpp-4.3_4.3.4-6_amd64.deb' => `/var/cache/pbuilder/aptcache/cpp-4.3_4.3.4-6_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libmpfr1ldbl_2.4.1-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libmpfr1ldbl_2.4.1-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libuuid1_2.16-1ubuntu5_i386.deb' => `/var/cache/pbuilder/aptcache/libuuid1_2.16-1ubuntu5_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/base-files_5.0.0ubuntu7_i386.deb' => `/var/cache/pbuilder/aptcache/base-files_5.0.0ubuntu7_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/wget_1.12-1.1_amd64.deb' => `/var/cache/pbuilder/aptcache/wget_1.12-1.1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/insserv_1.12.0-14_amd64.deb' => `/var/cache/pbuilder/aptcache/insserv_1.12.0-14_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libxapian15_1.0.15-2ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/libxapian15_1.0.15-2ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/cpio_2.10-1_amd64.deb' => `/var/cache/pbuilder/aptcache/cpio_2.10-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/sed_4.2.1-6_amd64.deb' => `/var/cache/pbuilder/aptcache/sed_4.2.1-6_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/gcc_4%3a4.3.4-1_amd64.deb' => `/var/cache/pbuilder/aptcache/gcc_4%3a4.3.4-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/lzma_4.43-14_amd64.deb' => `/var/cache/pbuilder/aptcache/lzma_4.43-14_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/ncurses-bin_5.7+20090803-2ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/ncurses-bin_5.7+20090803-2ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/dpkg_1.15.4ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/dpkg_1.15.4ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/man-db_2.5.6-2_i386.deb' => `/var/cache/pbuilder/aptcache/man-db_2.5.6-2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/linux-libc-dev_2.6.32-3_amd64.deb' => `/var/cache/pbuilder/aptcache/linux-libc-dev_2.6.32-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/e2fslibs_1.41.9-1ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/e2fslibs_1.41.9-1ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libdb4.7_4.7.25-8_amd64.deb' => `/var/cache/pbuilder/aptcache/libdb4.7_4.7.25-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libgomp1_4.4.2-3_amd64.deb' => `/var/cache/pbuilder/aptcache/libgomp1_4.4.2-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/apt_0.7.23.1_amd64.deb' => `/var/cache/pbuilder/aptcache/apt_0.7.23.1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/linux-libc-dev_2.6.31-14.48_i386.deb' => `/var/cache/pbuilder/aptcache/linux-libc-dev_2.6.31-14.48_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libncurses5_5.7+20090803-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libncurses5_5.7+20090803-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/g++_4%3a4.4.2-2_amd64.deb' => `/var/cache/pbuilder/aptcache/g++_4%3a4.4.2-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/tar_1.22-1_i386.deb' => `/var/cache/pbuilder/aptcache/tar_1.22-1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/cpp_4%3a4.4.1-1ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/cpp_4%3a4.4.1-1ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/isc-dhcp-client_4.1.0-1_amd64.deb' => `/var/cache/pbuilder/aptcache/isc-dhcp-client_4.1.0-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/gcc_4%3a4.4.1-1ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/gcc_4%3a4.4.1-1ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/ifupdown_0.6.9_amd64.deb' => `/var/cache/pbuilder/aptcache/ifupdown_0.6.9_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libtext-charwidth-perl_0.04-6_amd64.deb' => `/var/cache/pbuilder/aptcache/libtext-charwidth-perl_0.04-6_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libuuid1_2.16.2-0_amd64.deb' => `/var/cache/pbuilder/aptcache/libuuid1_2.16.2-0_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/patch_2.5.9-5_i386.deb' => `/var/cache/pbuilder/aptcache/patch_2.5.9-5_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/gettext-base_0.17-8_amd64.deb' => `/var/cache/pbuilder/aptcache/gettext-base_0.17-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/readline-common_6.0-5_all.deb' => `/var/cache/pbuilder/aptcache/readline-common_6.0-5_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/ifupdown_0.7~alpha3_amd64.deb' => `/var/cache/pbuilder/aptcache/ifupdown_0.7~alpha3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/bsdmainutils_8.0.5_amd64.deb' => `/var/cache/pbuilder/aptcache/bsdmainutils_8.0.5_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/coreutils_7.4-2_amd64.deb' => `/var/cache/pbuilder/aptcache/coreutils_7.4-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/gzip_1.3.12-8_amd64.deb' => `/var/cache/pbuilder/aptcache/gzip_1.3.12-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libstdc++6-4.3-dev_4.3.4-6_amd64.deb' => `/var/cache/pbuilder/aptcache/libstdc++6-4.3-dev_4.3.4-6_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libattr1_1%3a2.4.44-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libattr1_1%3a2.4.44-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/coreutils_8.0-2_amd64.deb' => `/var/cache/pbuilder/aptcache/coreutils_8.0-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/base-files_5.0.0_amd64.deb' => `/var/cache/pbuilder/aptcache/base-files_5.0.0_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/binutils_2.20-4_amd64.deb' => `/var/cache/pbuilder/aptcache/binutils_2.20-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libpam-modules_1.1.0-4_amd64.deb' => `/var/cache/pbuilder/aptcache/libpam-modules_1.1.0-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/info_4.13a.dfsg.1-5_amd64.deb' => `/var/cache/pbuilder/aptcache/info_4.13a.dfsg.1-5_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libuuid1_2.16.1-4_amd64.deb' => `/var/cache/pbuilder/aptcache/libuuid1_2.16.1-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/bash_4.0-4_amd64.deb' => `/var/cache/pbuilder/aptcache/bash_4.0-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libc-dev-bin_2.10.1-0ubuntu15_i386.deb' => `/var/cache/pbuilder/aptcache/libc-dev-bin_2.10.1-0ubuntu15_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/e2fsprogs_1.41.9-1_amd64.deb' => `/var/cache/pbuilder/aptcache/e2fsprogs_1.41.9-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libept0_0.5.30_amd64.deb' => `/var/cache/pbuilder/aptcache/libept0_0.5.30_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/debhelper_7.4.3_all.deb' => `/var/cache/pbuilder/aptcache/debhelper_7.4.3_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/upstart_0.6.3-10_i386.deb' => `/var/cache/pbuilder/aptcache/upstart_0.6.3-10_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libgnutls26_2.8.3-2_i386.deb' => `/var/cache/pbuilder/aptcache/libgnutls26_2.8.3-2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libdb4.8_4.8.24-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libdb4.8_4.8.24-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libuuid1_2.17~rc3-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libuuid1_2.17~rc3-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libglib2.0-0_2.22.2-0ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/libglib2.0-0_2.22.2-0ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/vim-tiny_2%3a7.2.284-1_amd64.deb' => `/var/cache/pbuilder/aptcache/vim-tiny_2%3a7.2.284-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/mawk_1.3.3-15_amd64.deb' => `/var/cache/pbuilder/aptcache/mawk_1.3.3-15_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libgcc1_1%3a4.4.2-8_amd64.deb' => `/var/cache/pbuilder/aptcache/libgcc1_1%3a4.4.2-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libcwidget3_0.5.13-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libcwidget3_0.5.13-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/file_5.03-3_amd64.deb' => `/var/cache/pbuilder/aptcache/file_5.03-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir1/NUM/var/cache/apt/archives/libdebian-installer4_0.69_amd64.deb' => `/var/cache/pbuilder/aptcache/libdebian-installer4_0.69_amd64.deb': Invalid cross-device link I: Installing the build-deps -> Attempting to satisfy build-dependencies -> Creating pbuilder-satisfydepends-dummy package Package: pbuilder-satisfydepends-dummy Version: 0.invalid.0 Architecture: amd64 Maintainer: Debian Pbuilder Team Description: Dummy package to satisfy dependencies with aptitude - created by pbuilder This package was created automatically by pbuilder and should Depends: debhelper (>> 3.0.0), libdshconfig1-dev (>= 0.20.11-1), po4a dpkg-deb: building package `pbuilder-satisfydepends-dummy' in `/tmp/satisfydepends-aptitude/pbuilder-satisfydepends-dummy.deb'. Reading package lists... Building dependency tree... Reading state information... aptitude is already the newest version. 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. Selecting previously deselected package pbuilder-satisfydepends-dummy. (Reading database ... 12190 files and directories currently installed.) Unpacking pbuilder-satisfydepends-dummy (from .../pbuilder-satisfydepends-dummy.deb) ... dpkg: dependency problems prevent configuration of pbuilder-satisfydepends-dummy: pbuilder-satisfydepends-dummy depends on debhelper (>> 3.0.0); however: Package debhelper is not installed. pbuilder-satisfydepends-dummy depends on libdshconfig1-dev (>= 0.20.11-1); however: Package libdshconfig1-dev is not installed. pbuilder-satisfydepends-dummy depends on po4a; however: Package po4a is not installed. dpkg: error processing pbuilder-satisfydepends-dummy (--install): dependency problems - leaving unconfigured Errors were encountered while processing: pbuilder-satisfydepends-dummy Reading package lists... Building dependency tree... Reading state information... Initializing package states... Writing extended state information... Reading task descriptions... The following NEW packages will be installed: debhelper{a} file{a} gettext{a} gettext-base{a} html2text{a} intltool-debian{a} libcroco3{a} libdshconfig1{a} libdshconfig1-dev{a} libglib2.0-0{a} libmagic1{a} libpcre3{a} libsgmls-perl{a} libsp1c2{a} libxml2{a} po-debconf{a} po4a{a} sp{a} The following partially installed packages will be configured: pbuilder-satisfydepends-dummy 0 packages upgraded, 18 newly installed, 0 to remove and 0 not upgraded. Need to get 8755kB of archives. After unpacking 27.3MB will be used. Writing extended state information... Get:1 http://ftp.de.debian.org squeeze/main libmagic1 5.03-5 [393kB] Get:2 http://ftp.de.debian.org squeeze/main file 5.03-5 [47.6kB] Get:3 http://ftp.de.debian.org squeeze/main html2text 1.3.2a-14 [103kB] Get:4 http://ftp.de.debian.org squeeze/main libpcre3 7.8-3 [215kB] Get:5 http://ftp.de.debian.org squeeze/main libglib2.0-0 2.22.3-1 [988kB] Get:6 http://ftp.de.debian.org squeeze/main libxml2 2.7.6.dfsg-1 [876kB] Get:7 http://ftp.de.debian.org squeeze/main libcroco3 0.6.2-1 [125kB] Get:8 http://ftp.de.debian.org squeeze/main gettext-base 0.17-8 [133kB] Get:9 http://ftp.de.debian.org squeeze/main gettext 0.17-8 [2503kB] Get:10 http://ftp.de.debian.org squeeze/main intltool-debian 0.35.0+20060710.1 [30.8kB] Get:11 http://ftp.de.debian.org squeeze/main po-debconf 1.0.16 [224kB] Get:12 http://ftp.de.debian.org squeeze/main debhelper 7.4.10 [458kB] Get:13 http://ftp.de.debian.org squeeze/main libdshconfig1 0.20.13-1 [11.0kB] Get:14 http://ftp.de.debian.org squeeze/main libdshconfig1-dev 0.20.13-1 [25.4kB] Get:15 http://ftp.de.debian.org squeeze/main libsgmls-perl 1.03ii-32 [27.8kB] Get:16 http://ftp.de.debian.org squeeze/main libsp1c2 1.3.4-1.2.1-47 [1386kB] Get:17 http://ftp.de.debian.org squeeze/main sp 1.3.4-1.2.1-47 [182kB] Get:18 http://ftp.de.debian.org squeeze/main po4a 0.37.1-1 [1026kB] Fetched XXXB in Xs (XXXXXB/s) Selecting previously deselected package libmagic1. (Reading database ... 12190 files and directories currently installed.) Unpacking libmagic1 (from .../libmagic1_5.03-5_amd64.deb) ... Selecting previously deselected package file. Unpacking file (from .../archives/file_5.03-5_amd64.deb) ... Selecting previously deselected package html2text. Unpacking html2text (from .../html2text_1.3.2a-14_amd64.deb) ... Selecting previously deselected package libpcre3. Unpacking libpcre3 (from .../libpcre3_7.8-3_amd64.deb) ... Selecting previously deselected package libglib2.0-0. Unpacking libglib2.0-0 (from .../libglib2.0-0_2.22.3-1_amd64.deb) ... Selecting previously deselected package libxml2. Unpacking libxml2 (from .../libxml2_2.7.6.dfsg-1_amd64.deb) ... Selecting previously deselected package libcroco3. Unpacking libcroco3 (from .../libcroco3_0.6.2-1_amd64.deb) ... Selecting previously deselected package gettext-base. Unpacking gettext-base (from .../gettext-base_0.17-8_amd64.deb) ... Selecting previously deselected package gettext. Unpacking gettext (from .../gettext_0.17-8_amd64.deb) ... Selecting previously deselected package intltool-debian. Unpacking intltool-debian (from .../intltool-debian_0.35.0+20060710.1_all.deb) ... Selecting previously deselected package po-debconf. Unpacking po-debconf (from .../po-debconf_1.0.16_all.deb) ... Selecting previously deselected package debhelper. Unpacking debhelper (from .../debhelper_7.4.10_all.deb) ... Selecting previously deselected package libdshconfig1. Unpacking libdshconfig1 (from .../libdshconfig1_0.20.13-1_amd64.deb) ... Selecting previously deselected package libdshconfig1-dev. Unpacking libdshconfig1-dev (from .../libdshconfig1-dev_0.20.13-1_amd64.deb) ... Selecting previously deselected package libsgmls-perl. Unpacking libsgmls-perl (from .../libsgmls-perl_1.03ii-32_all.deb) ... Selecting previously deselected package libsp1c2. Unpacking libsp1c2 (from .../libsp1c2_1.3.4-1.2.1-47_amd64.deb) ... Selecting previously deselected package sp. Unpacking sp (from .../sp_1.3.4-1.2.1-47_amd64.deb) ... Selecting previously deselected package po4a. Unpacking po4a (from .../archives/po4a_0.37.1-1_all.deb) ... Processing triggers for man-db ... Processing triggers for install-info ... Setting up libmagic1 (5.03-5) ... Setting up file (5.03-5) ... Setting up html2text (1.3.2a-14) ... Setting up libpcre3 (7.8-3) ... Setting up libglib2.0-0 (2.22.3-1) ... Setting up libxml2 (2.7.6.dfsg-1) ... Setting up libcroco3 (0.6.2-1) ... Setting up gettext-base (0.17-8) ... Setting up gettext (0.17-8) ... Setting up intltool-debian (0.35.0+20060710.1) ... Setting up po-debconf (1.0.16) ... Setting up debhelper (7.4.10) ... Setting up libdshconfig1 (0.20.13-1) ... Setting up libdshconfig1-dev (0.20.13-1) ... Setting up libsgmls-perl (1.03ii-32) ... Setting up libsp1c2 (1.3.4-1.2.1-47) ... Setting up sp (1.3.4-1.2.1-47) ... Setting up po4a (0.37.1-1) ... Setting up pbuilder-satisfydepends-dummy (0.invalid.0) ... Reading package lists... Building dependency tree... Reading state information... Reading extended state information... Initializing package states... Writing extended state information... Reading task descriptions... -> Finished parsing the build-deps Reading package lists... Building dependency tree... Reading state information... aptitude is already the newest version. The following NEW packages will be installed: fakeroot 0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded. Need to get 100kB of archives. After this operation, 385kB of additional disk space will be used. Get:1 http://ftp.de.debian.org squeeze/main fakeroot 1.14.4-1 [100kB] Fetched XXXB in Xs (XXXXXB/s) Selecting previously deselected package fakeroot. (Reading database ... 13352 files and directories currently installed.) Unpacking fakeroot (from .../fakeroot_1.14.4-1_amd64.deb) ... Processing triggers for man-db ... Setting up fakeroot (1.14.4-1) ... update-alternatives: using /usr/bin/fakeroot-sysv to provide /usr/bin/fakeroot (fakeroot) in auto mode. I: Copying back the cached apt archive contents I: new cache content sp_1.3.4-1.2.1-47_amd64.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/sp_1.3.4-1.2.1-47_amd64.deb' => `/TESTDIR/dir1/NUM/var/cache/apt/archives/sp_1.3.4-1.2.1-47_amd64.deb': Invalid cross-device link I: new cache content po4a_0.37.1-1_all.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/po4a_0.37.1-1_all.deb' => `/TESTDIR/dir1/NUM/var/cache/apt/archives/po4a_0.37.1-1_all.deb': Invalid cross-device link I: new cache content libdshconfig1_0.20.13-1_amd64.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/libdshconfig1_0.20.13-1_amd64.deb' => `/TESTDIR/dir1/NUM/var/cache/apt/archives/libdshconfig1_0.20.13-1_amd64.deb': Invalid cross-device link I: new cache content libmagic1_5.03-5_amd64.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/libmagic1_5.03-5_amd64.deb' => `/TESTDIR/dir1/NUM/var/cache/apt/archives/libmagic1_5.03-5_amd64.deb': Invalid cross-device link I: new cache content libsp1c2_1.3.4-1.2.1-47_amd64.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/libsp1c2_1.3.4-1.2.1-47_amd64.deb' => `/TESTDIR/dir1/NUM/var/cache/apt/archives/libsp1c2_1.3.4-1.2.1-47_amd64.deb': Invalid cross-device link I: new cache content libsgmls-perl_1.03ii-32_all.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/libsgmls-perl_1.03ii-32_all.deb' => `/TESTDIR/dir1/NUM/var/cache/apt/archives/libsgmls-perl_1.03ii-32_all.deb': Invalid cross-device link I: new cache content libdshconfig1-dev_0.20.13-1_amd64.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/libdshconfig1-dev_0.20.13-1_amd64.deb' => `/TESTDIR/dir1/NUM/var/cache/apt/archives/libdshconfig1-dev_0.20.13-1_amd64.deb': Invalid cross-device link I: new cache content file_5.03-5_amd64.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/file_5.03-5_amd64.deb' => `/TESTDIR/dir1/NUM/var/cache/apt/archives/file_5.03-5_amd64.deb': Invalid cross-device link I: new cache content debhelper_7.4.10_all.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/debhelper_7.4.10_all.deb' => `/TESTDIR/dir1/NUM/var/cache/apt/archives/debhelper_7.4.10_all.deb': Invalid cross-device link I: Copying source file I: copying [/TESTDIR/dir1/dsh_0.25.10-1.dsc] I: copying [/TESTDIR/dir1/dsh_0.25.10.orig.tar.gz] I: copying [/TESTDIR/dir1/dsh_0.25.10-1.diff.gz] I: Extracting source gpgv: keyblock resource `/tmp/buildd/.gnupg/trustedkeys.gpg': file open error gpgv: Signature made Fri Dec 14 00:23:24 2007 UTC using DSA key ID E81E55C1 gpgv: Can't check signature: public key not found dpkg-source: warning: failed to verify signature on ./dsh_0.25.10-1.dsc dpkg-source: info: extracting dsh in dsh-0.25.10 dpkg-source: info: unpacking dsh_0.25.10.orig.tar.gz dpkg-source: info: applying dsh_0.25.10-1.diff.gz dpkg-source: info: upstream files that have been modified: dsh-0.25.10/.cvsignore dsh-0.25.10/CVS/Entries dsh-0.25.10/CVS/Repository dsh-0.25.10/CVS/Root dsh-0.25.10/ChangeLog.OLD dsh-0.25.10/dcp.sh dsh-0.25.10/drshd.c dsh-0.25.10/dsh.1.ja.po dsh-0.25.10/m4/.cvsignore dsh-0.25.10/m4/CVS/Entries dsh-0.25.10/m4/CVS/Repository dsh-0.25.10/m4/CVS/Root dsh-0.25.10/po/.cvsignore dsh-0.25.10/po/CVS/Entries dsh-0.25.10/po/CVS/Repository dsh-0.25.10/po/CVS/Root dsh-0.25.10/po/insert-header.sin dsh-0.25.10/tests/.cvsignore dsh-0.25.10/tests/CVS/Entries dsh-0.25.10/tests/CVS/Repository dsh-0.25.10/tests/CVS/Root I: Building the package I: Running cd tmp/buildd/*/ && dpkg-buildpackage -us -uc "-eJunichi Uekawa " -rfakeroot dpkg-buildpackage: set CFLAGS to default value: -g -O2 dpkg-buildpackage: set CPPFLAGS to default value: dpkg-buildpackage: set LDFLAGS to default value: dpkg-buildpackage: set FFLAGS to default value: -g -O2 dpkg-buildpackage: set CXXFLAGS to default value: -g -O2 dpkg-buildpackage: source package dsh dpkg-buildpackage: source version 0.25.10-1 dpkg-buildpackage: host architecture amd64 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.10' make[1]: *** No rule to make target `clean'. Stop. make[1]: Leaving directory `/tmp/buildd/dsh-0.25.10' make: [clean] Error 2 (ignored) /usr/bin/make distclean make[1]: Entering directory `/tmp/buildd/dsh-0.25.10' make[1]: *** No rule to make target `distclean'. Stop. make[1]: Leaving directory `/tmp/buildd/dsh-0.25.10' make: [clean] Error 2 (ignored) dh_clean dh_clean: Compatibility levels before 5 are deprecated. dpkg-source -b dsh-0.25.10 dpkg-source: info: using source format `1.0' dpkg-source: info: building dsh using existing dsh_0.25.10.orig.tar.gz dpkg-source: info: building dsh in dsh_0.25.10-1.diff.gz dpkg-source: warning: file dsh-0.25.10/dcp.sh has no final newline (either original or modified version) dpkg-source: warning: file dsh-0.25.10/debian/compat has no final newline (either original or modified version) dpkg-source: warning: the diff modifies the following upstream files: .cvsignore CVS/Entries CVS/Repository CVS/Root ChangeLog.OLD dcp.sh drshd.c dsh.1.ja.po m4/.cvsignore m4/CVS/Entries m4/CVS/Repository m4/CVS/Root po/.cvsignore po/CVS/Entries po/CVS/Repository po/CVS/Root po/insert-header.sin tests/.cvsignore tests/CVS/Entries tests/CVS/Repository tests/CVS/Root dpkg-source: info: use the '3.0 (quilt)' format to have separate and documented changes to upstream files, see dpkg-source(1) dpkg-source: info: building dsh in dsh_0.25.10-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 ISO C89... none needed checking dependency style of gcc... gcc3 checking for strerror in -lcposix... no checking for gcc... (cached) gcc checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) 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 ISO C89... (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 grep that handles long lines and -e... /bin/grep checking for egrep... /bin/grep -E checking for ANSI C header files... yes checking for sys/wait.h that is POSIX.1 compatible... yes checking build system type... x86_64-unknown-linux-gnu checking host system type... x86_64-unknown-linux-gnu checking for a sed that does not truncate output... /bin/sed checking for ld used by gcc... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for /usr/bin/ld option to reload object files... -r checking for BSD-compatible nm... /usr/bin/nm -B checking whether ln -s works... yes checking how to recognize dependent libraries... pass_all checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking dlfcn.h usability... yes checking dlfcn.h presence... yes checking for dlfcn.h... yes checking for g++... g++ checking whether we are using the GNU C++ compiler... yes checking whether g++ accepts -g... yes checking dependency style of g++... gcc3 checking how to run the C++ preprocessor... g++ -E checking for g77... no checking for xlf... no checking for f77... no checking for frt... no checking for pgf77... no checking for cf77... no checking for fort77... no checking for fl32... no checking for af77... no checking for xlf90... no checking for f90... no checking for pgf90... no checking for pghpf... no checking for epcf90... no checking for gfortran... no checking for g95... no checking for xlf95... no checking for f95... no checking for fort... no checking for ifort... no checking for ifc... no checking for efc... no checking for pgf95... no checking for lf95... no checking for ftn... no checking whether we are using the GNU Fortran 77 compiler... no checking whether accepts -g... no checking the maximum length of command line arguments... 3458764513820540925 checking command to parse /usr/bin/nm -B output from gcc object... ok checking for objdir... .libs checking for ar... ar checking for ranlib... ranlib checking for strip... strip checking if gcc supports -fno-rtti -fno-exceptions... no checking for gcc option to produce PIC... -fPIC checking if gcc PIC flag -fPIC works... yes checking if gcc static flag -static works... yes checking if gcc supports -c -o file.o... yes checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) 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 -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking for g++ option to produce PIC... -fPIC checking if g++ PIC flag -fPIC works... yes checking if g++ static flag -static works... yes checking if g++ supports -c -o file.o... yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate appending configuration tag "F77" to libtool checking 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 -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) 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: WARNING: po/Makefile.in.in seems to ignore the --datarootdir setting 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.10' /usr/bin/make all-recursive make[2]: Entering directory `/tmp/buildd/dsh-0.25.10' Making all in m4 make[3]: Entering directory `/tmp/buildd/dsh-0.25.10/m4' make[3]: Nothing to be done for `all'. make[3]: Leaving directory `/tmp/buildd/dsh-0.25.10/m4' Making all in po make[3]: Entering directory `/tmp/buildd/dsh-0.25.10/po' make[3]: Nothing to be done for `all'. make[3]: Leaving directory `/tmp/buildd/dsh-0.25.10/po' make[3]: Entering directory `/tmp/buildd/dsh-0.25.10' 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/bash ./libtool --tag=CC --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.10' make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10' make[1]: Leaving directory `/tmp/buildd/dsh-0.25.10' /usr/bin/make check make[1]: Entering directory `/tmp/buildd/dsh-0.25.10' Making check in m4 make[2]: Entering directory `/tmp/buildd/dsh-0.25.10/m4' make[2]: Nothing to be done for `check'. make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10/m4' Making check in po make[2]: Entering directory `/tmp/buildd/dsh-0.25.10/po' make[2]: Nothing to be done for `check'. make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10/po' make[2]: Entering directory `/tmp/buildd/dsh-0.25.10' /usr/bin/make dsh make[3]: Entering directory `/tmp/buildd/dsh-0.25.10' make[3]: `dsh' is up to date. make[3]: Leaving directory `/tmp/buildd/dsh-0.25.10' /usr/bin/make check-TESTS make[3]: Entering directory `/tmp/buildd/dsh-0.25.10' PASS: tests/param-f.sh dsh: File ./tests/nonexistent.file could not be opened for read PASS: tests/param-f-fail.sh PASS: tests/param-f-with-space.sh PASS: tests/param-m.sh test to check that unknown parameter checking is right. ./dsh: unrecognized option '--unknown-parameter' ./dsh: invalid option -- 'u' PASS: tests/param-unknown.sh test1 test2 dsh: Process terminated (before write). PASS: tests/param-i.sh Check that cn4 option is working. PASS: tests/param-cn4.sh test to check that -b0 is rejected, and -b1 is accepted Buffer size needs to be greater than 1 Buffer size needs to be greater than 1 a b PASS: tests/param-b-0.sh dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call success dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call success success success success success a: dsh: Failed executing ./invalid-exec-file with llexec call b: dsh: Failed executing ./invalid-exec-file with llexec call c: dsh: Failed executing ./invalid-exec-file with llexec call d: dsh: Failed executing ./invalid-exec-file with llexec call success dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call success PASS: tests/param-r-invalid.sh 1: 1 2: 2 dsh: fork limit and wait shell cannot be specified at the same time PASS: tests/param-F-invalid.sh Fri Jan 1 19:16:44 UTC 2010 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 Fri Jan 1 19:16:49 UTC 2010 PASS: tests/param-F-forklimit.sh PASS: tests/param-gnu-getopt.sh PASS: tests/news-okay.sh c: c a: a 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.10' make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10' make[1]: Leaving directory `/tmp/buildd/dsh-0.25.10' touch build-stamp fakeroot debian/rules binary dh_testdir dh_testroot dh_clean -k dh_clean: Compatibility levels before 5 are deprecated. dh_installdirs dh_installdirs: Compatibility levels before 5 are deprecated. # Add here commands to install the package into debian/dsh. /usr/bin/make install DESTDIR=/tmp/buildd/dsh-0.25.10/debian/dsh make[1]: Entering directory `/tmp/buildd/dsh-0.25.10' Making install in m4 make[2]: Entering directory `/tmp/buildd/dsh-0.25.10/m4' make[3]: Entering directory `/tmp/buildd/dsh-0.25.10/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.10/m4' make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10/m4' Making install in po make[2]: Entering directory `/tmp/buildd/dsh-0.25.10/po' /bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share mkdir -p -- /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share mkdir -p -- /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/locale/ja/LC_MESSAGES installing ja.gmo as /tmp/buildd/dsh-0.25.10/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.10/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.10/debian/dsh/usr/share/gettext/po/$file; \ done; \ else \ : ; \ fi make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10/po' make[2]: Entering directory `/tmp/buildd/dsh-0.25.10' make[3]: Entering directory `/tmp/buildd/dsh-0.25.10' test -z "/usr/bin" || mkdir -p -- "/tmp/buildd/dsh-0.25.10/debian/dsh/usr/bin" /bin/bash ./libtool --mode=install install -p -o root -g root -m 755 -s 'dsh' '/tmp/buildd/dsh-0.25.10/debian/dsh/usr/bin/dsh' install -p -o root -g root -m 755 -s dsh /tmp/buildd/dsh-0.25.10/debian/dsh/usr/bin/dsh test -z "/etc/dsh" || mkdir -p -- "/tmp/buildd/dsh-0.25.10/debian/dsh/etc/dsh" /usr/bin/install -c -m 644 'dsh.conf' '/tmp/buildd/dsh-0.25.10/debian/dsh/etc/dsh/dsh.conf' for LANGS in ja ; do \ mkdir -p /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/$LANGS/man1 ;\ mkdir -p /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/$LANGS/man5 ;\ sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.$LANGS.1 \ > /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/$LANGS/man1/dsh.1 ; \ sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.conf.$LANGS.5 \ > /tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/$LANGS/man5/dsh.conf.5 ; \ done test -z "/usr/share/man/man1" || mkdir -p -- "/tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/man1" /usr/bin/install -c -m 644 './build-man/dsh.1' '/tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/man1/dsh.1' test -z "/usr/share/man/man5" || mkdir -p -- "/tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/man5" /usr/bin/install -c -m 644 './build-man/dsh.conf.5' '/tmp/buildd/dsh-0.25.10/debian/dsh/usr/share/man/man5/dsh.conf.5' make[3]: Leaving directory `/tmp/buildd/dsh-0.25.10' make[2]: Leaving directory `/tmp/buildd/dsh-0.25.10' make[1]: Leaving directory `/tmp/buildd/dsh-0.25.10' cp /tmp/buildd/dsh-0.25.10/debian/machines.list /tmp/buildd/dsh-0.25.10/debian/dsh/etc/dsh/machines.list cp /tmp/buildd/dsh-0.25.10/dsh.conf /tmp/buildd/dsh-0.25.10/debian/dsh/etc/dsh/dsh.conf ln -s ../machines.list /tmp/buildd/dsh-0.25.10/debian/dsh/etc/dsh/group/all install -d /tmp/buildd/dsh-0.25.10/debian/dsh/usr/lib/update-cluster install -m 755 /tmp/buildd/dsh-0.25.10/debian/dsh.updatelist /tmp/buildd/dsh-0.25.10/debian/dsh/usr/lib/update-cluster/ dh_testdir dh_testroot dh_installdocs NEWS dh_installdocs: Compatibility levels before 5 are deprecated. dh_installexamples dh_installexamples: Compatibility levels before 5 are deprecated. dh_installmenu dh_installmenu: Compatibility levels before 5 are deprecated. dh_installman dh_installman: Compatibility levels before 5 are deprecated. dh_installchangelogs ChangeLog dh_installchangelogs: Compatibility levels before 5 are deprecated. dh_link dh_link: Compatibility levels before 5 are deprecated. dh_strip dh_strip: Compatibility levels before 5 are deprecated. dh_shlibdeps dh_shlibdeps: Compatibility levels before 5 are deprecated. dh_compress dh_compress: Compatibility levels before 5 are deprecated. dh_fixperms dh_fixperms: Compatibility levels before 5 are deprecated. dh_installdeb dh_installdeb: Compatibility levels before 5 are deprecated. dh_gencontrol dh_gencontrol: Compatibility levels before 5 are deprecated. dh_md5sums dh_md5sums: Compatibility levels before 5 are deprecated. dh_builddeb dh_builddeb: Compatibility levels before 5 are deprecated. dpkg-deb: building package `dsh' in `../dsh_0.25.10-1_amd64.deb'. dpkg-genchanges -eJunichi Uekawa >../dsh_0.25.10-1_amd64.changes dpkg-genchanges: including full source code in upload dpkg-buildpackage: full upload (original source is included) I: Copying back the cached apt archive contents I: new cache content sp_1.3.4-1.2.1-47_amd64.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/sp_1.3.4-1.2.1-47_amd64.deb' => `/TESTDIR/dir1/NUM/var/cache/apt/archives/sp_1.3.4-1.2.1-47_amd64.deb': Invalid cross-device link I: new cache content po4a_0.37.1-1_all.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/po4a_0.37.1-1_all.deb' => `/TESTDIR/dir1/NUM/var/cache/apt/archives/po4a_0.37.1-1_all.deb': Invalid cross-device link I: new cache content libdshconfig1_0.20.13-1_amd64.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/libdshconfig1_0.20.13-1_amd64.deb' => `/TESTDIR/dir1/NUM/var/cache/apt/archives/libdshconfig1_0.20.13-1_amd64.deb': Invalid cross-device link I: new cache content libmagic1_5.03-5_amd64.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/libmagic1_5.03-5_amd64.deb' => `/TESTDIR/dir1/NUM/var/cache/apt/archives/libmagic1_5.03-5_amd64.deb': Invalid cross-device link I: new cache content libsp1c2_1.3.4-1.2.1-47_amd64.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/libsp1c2_1.3.4-1.2.1-47_amd64.deb' => `/TESTDIR/dir1/NUM/var/cache/apt/archives/libsp1c2_1.3.4-1.2.1-47_amd64.deb': Invalid cross-device link I: new cache content libsgmls-perl_1.03ii-32_all.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/libsgmls-perl_1.03ii-32_all.deb' => `/TESTDIR/dir1/NUM/var/cache/apt/archives/libsgmls-perl_1.03ii-32_all.deb': Invalid cross-device link I: new cache content libdshconfig1-dev_0.20.13-1_amd64.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/libdshconfig1-dev_0.20.13-1_amd64.deb' => `/TESTDIR/dir1/NUM/var/cache/apt/archives/libdshconfig1-dev_0.20.13-1_amd64.deb': Invalid cross-device link I: new cache content file_5.03-5_amd64.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/file_5.03-5_amd64.deb' => `/TESTDIR/dir1/NUM/var/cache/apt/archives/file_5.03-5_amd64.deb': Invalid cross-device link I: new cache content debhelper_7.4.10_all.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/debhelper_7.4.10_all.deb' => `/TESTDIR/dir1/NUM/var/cache/apt/archives/debhelper_7.4.10_all.deb': Invalid cross-device link I: unmounting dev/pts filesystem I: unmounting proc filesystem I: cleaning the build env I: removing directory /TESTDIR/dir1/NUM and its subdirectories I: Current time: Fri Jan 1 19:16:51 UTC 2010 I: pbuilder-time-stamp: 1262373411 pbuilder-0.215ubuntu7/testsuite/normal/pbuilder-update-lenny-sid.log0000664000000000000000000002305612312041170022560 0ustar Upgrading for distribution sid Building the build Environment -> extracting base tarball [/TESTDIR/testimage] -> creating local configuration -> copying local configuration -> Installing apt-lines -> mounting /proc filesystem -> mounting /dev/pts filesystem -> policy-rc.d already exists Refreshing the base.tgz -> upgrading packages Get:1 http://localhost sid Release.gpg [189B] Get:2 http://localhost sid Release [86.5kB] Ign http://localhost sid/main Packages Get:3 http://localhost sid/main Packages [7261kB] Fetched XXXB in Xs (XXXXXB/s) Reading package lists... Obtaining the cached apt archive contents Reading package lists... Building dependency tree... Reading state information... The following packages will be upgraded: aptitude cpio cpp cpp-4.3 debconf debconf-i18n e2fslibs e2fsprogs g++ g++-4.3 gcc gcc-4.3 gcc-4.3-base libblkid1 libcomerr2 libdb4.6 libept0 libgcc1 libgdbm3 libgomp1 libncurses5 libncursesw5 libss2 libstdc++6 libstdc++6-4.3-dev libusb-0.1-4 libuuid1 linux-libc-dev mawk ncurses-base ncurses-bin perl perl-base perl-modules procps sed tzdata debconf: delaying package configuration, since apt-utils is not installed 37 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. Need to get 0B/29.2MB of archives. After this operation, 1671kB of additional disk space will be used. (Reading database ... 9639 files and directories currently installed.) Preparing to replace libcomerr2 1.41.0-3 (using .../libcomerr2_1.41.1-3_i386.deb) ... Unpacking replacement libcomerr2 ... Setting up libcomerr2 (1.41.1-3) ... (Reading database ... 9639 files and directories currently installed.) Preparing to replace e2fslibs 1.41.0-3 (using .../e2fslibs_1.41.1-3_i386.deb) ... Unpacking replacement e2fslibs ... Setting up e2fslibs (1.41.1-3) ... (Reading database ... 9639 files and directories currently installed.) Preparing to replace e2fsprogs 1.41.0-3 (using .../e2fsprogs_1.41.1-3_i386.deb) ... Unpacking replacement e2fsprogs ... Setting up e2fsprogs (1.41.1-3) ... (Reading database ... 9640 files and directories currently installed.) Preparing to replace ncurses-bin 5.6+20080830-1 (using .../ncurses-bin_5.6+20080925-1_i386.deb) ... Unpacking replacement ncurses-bin ... Setting up ncurses-bin (5.6+20080925-1) ... (Reading database ... 9640 files and directories currently installed.) Preparing to replace perl-modules 5.10.0-14 (using .../perl-modules_5.10.0-15_all.deb) ... Unpacking replacement perl-modules ... Preparing to replace libdb4.6 4.6.21-8 (using .../libdb4.6_4.6.21-11_i386.deb) ... Unpacking replacement libdb4.6 ... Setting up libdb4.6 (4.6.21-11) ... (Reading database ... 9640 files and directories currently installed.) Preparing to replace libgdbm3 1.8.3-3 (using .../libgdbm3_1.8.3-4_i386.deb) ... Unpacking replacement libgdbm3 ... Preparing to replace perl 5.10.0-14 (using .../perl_5.10.0-15_i386.deb) ... Unpacking replacement perl ... Preparing to replace perl-base 5.10.0-14 (using .../perl-base_5.10.0-15_i386.deb) ... Unpacking replacement perl-base ... Setting up perl-base (5.10.0-15) ... (Reading database ... 9640 files and directories currently installed.) Preparing to replace sed 4.1.5-6 (using .../archives/sed_4.1.5-8_i386.deb) ... Unpacking replacement sed ... Setting up sed (4.1.5-8) ... (Reading database ... 9640 files and directories currently installed.) Preparing to replace libncurses5 5.6+20080830-1 (using .../libncurses5_5.6+20080925-1_i386.deb) ... Unpacking replacement libncurses5 ... Setting up libncurses5 (5.6+20080925-1) ... (Reading database ... 9640 files and directories currently installed.) Preparing to replace ncurses-base 5.6+20080830-1 (using .../ncurses-base_5.6+20080925-1_all.deb) ... Unpacking replacement ncurses-base ... Setting up ncurses-base (5.6+20080925-1) ... (Reading database ... 9643 files and directories currently installed.) Preparing to replace debconf-i18n 1.5.22 (using .../debconf-i18n_1.5.23_all.deb) ... Unpacking replacement debconf-i18n ... Setting up debconf-i18n (1.5.23) ... (Reading database ... 9636 files and directories currently installed.) Preparing to replace debconf 1.5.22 (using .../debconf_1.5.23_all.deb) ... Unpacking replacement debconf ... Setting up debconf (1.5.23) ... (Reading database ... 9636 files and directories currently installed.) Preparing to replace mawk 1.3.3-11.1 (using .../mawk_1.3.3-13_i386.deb) ... Unpacking replacement mawk ... Preparing to replace libusb-0.1-4 2:0.1.12-12 (using .../libusb-0.1-4_2%3a0.1.12-13_i386.deb) ... Unpacking replacement libusb-0.1-4 ... Setting up libusb-0.1-4 (2:0.1.12-13) ... (Reading database ... 9636 files and directories currently installed.) Preparing to replace libgomp1 4.3.1-9 (using .../libgomp1_4.3.2-1_i386.deb) ... Unpacking replacement libgomp1 ... Preparing to replace gcc-4.3-base 4.3.1-9 (using .../gcc-4.3-base_4.3.2-1_i386.deb) ... Unpacking replacement gcc-4.3-base ... Setting up gcc-4.3-base (4.3.2-1) ... (Reading database ... 9636 files and directories currently installed.) Preparing to replace libstdc++6 4.3.1-9 (using .../libstdc++6_4.3.2-1_i386.deb) ... Unpacking replacement libstdc++6 ... Setting up libstdc++6 (4.3.2-1) ... (Reading database ... 9636 files and directories currently installed.) Preparing to replace cpp-4.3 4.3.1-9 (using .../cpp-4.3_4.3.2-1_i386.deb) ... Unpacking replacement cpp-4.3 ... Preparing to replace gcc-4.3 4.3.1-9 (using .../gcc-4.3_4.3.2-1_i386.deb) ... Unpacking replacement gcc-4.3 ... Preparing to replace g++-4.3 4.3.1-9 (using .../g++-4.3_4.3.2-1_i386.deb) ... Unpacking replacement g++-4.3 ... Preparing to replace libstdc++6-4.3-dev 4.3.1-9 (using .../libstdc++6-4.3-dev_4.3.2-1_i386.deb) ... Unpacking replacement libstdc++6-4.3-dev ... Preparing to replace libgcc1 1:4.3.1-9 (using .../libgcc1_1%3a4.3.2-1_i386.deb) ... Unpacking replacement libgcc1 ... Setting up libgcc1 (1:4.3.2-1) ... (Reading database ... 9636 files and directories currently installed.) Preparing to replace libuuid1 1.41.0-3 (using .../libuuid1_1.41.1-3_i386.deb) ... Unpacking replacement libuuid1 ... Setting up libuuid1 (1.41.1-3) ... (Reading database ... 9637 files and directories currently installed.) Preparing to replace libblkid1 1.41.0-3 (using .../libblkid1_1.41.1-3_i386.deb) ... Unpacking replacement libblkid1 ... Setting up libblkid1 (1.41.1-3) ... (Reading database ... 9637 files and directories currently installed.) Preparing to replace libss2 1.41.0-3 (using .../libss2_1.41.1-3_i386.deb) ... Unpacking replacement libss2 ... Setting up libss2 (1.41.1-3) ... (Reading database ... 9637 files and directories currently installed.) Preparing to replace tzdata 2008e-3 (using .../tzdata_2008f-1_all.deb) ... Unpacking replacement tzdata ... Setting up tzdata (2008f-1) ... Current default timezone: 'Etc/UTC' Local time is now: XXXX Universal Time is now: XXXX Run 'dpkg-reconfigure tzdata' if you wish to change it. (Reading database ... 9638 files and directories currently installed.) Preparing to replace libept0 0.5.22 (using .../libept0_0.5.25_i386.deb) ... Unpacking replacement libept0 ... Preparing to replace libncursesw5 5.6+20080830-1 (using .../libncursesw5_5.6+20080925-1_i386.deb) ... Unpacking replacement libncursesw5 ... Preparing to replace aptitude 0.4.11.8-1 (using .../aptitude_0.4.11.10-1_i386.deb) ... Unpacking replacement aptitude ... Preparing to replace cpio 2.9-13 (using .../archives/cpio_2.9-14_i386.deb) ... Unpacking replacement cpio ... Preparing to replace procps 1:3.2.7-8 (using .../procps_1%3a3.2.7-9_i386.deb) ... Unpacking replacement procps ... Preparing to replace cpp 4:4.3.1-2 (using .../cpp_4%3a4.3.2-2_i386.deb) ... Unpacking replacement cpp ... Preparing to replace gcc 4:4.3.1-2 (using .../gcc_4%3a4.3.2-2_i386.deb) ... Removing old gcc doc directory. Unpacking replacement gcc ... Preparing to replace g++ 4:4.3.1-2 (using .../g++_4%3a4.3.2-2_i386.deb) ... Unpacking replacement g++ ... Preparing to replace linux-libc-dev 2.6.26-5 (using .../linux-libc-dev_2.6.26-6_i386.deb) ... Unpacking replacement linux-libc-dev ... Setting up libgdbm3 (1.8.3-4) ... Setting up mawk (1.3.3-13) ... Setting up libgomp1 (4.3.2-1) ... Setting up cpp-4.3 (4.3.2-1) ... Setting up gcc-4.3 (4.3.2-1) ... Setting up libept0 (0.5.25) ... Setting up libncursesw5 (5.6+20080925-1) ... Setting up aptitude (0.4.11.10-1) ... Setting up cpio (2.9-14) ... Setting up procps (1:3.2.7-9) ... Installing new version of config file /etc/sysctl.conf ... Installing new version of config file /etc/init.d/procps ... Setting up cpp (4:4.3.2-2) ... Setting up gcc (4:4.3.2-2) ... Setting up linux-libc-dev (2.6.26-6) ... Setting up perl-modules (5.10.0-15) ... Setting up libstdc++6-4.3-dev (4.3.2-1) ... Setting up g++-4.3 (4.3.2-1) ... Setting up g++ (4:4.3.2-2) ... Setting up perl (5.10.0-15) ... Reading package lists... Building dependency tree... Reading state information... build-essential is already the newest version. dpkg-dev is already the newest version. apt is already the newest version. aptitude is already the newest version. 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. Copying back the cached apt archive contents umount: /sys: not mounted umount: /run: not found umount: /proc/bus/usb: not mounted umount: /dev/shm: not mounted umount: /lib/init/rw: not mounted cat: /var/run/inetd.pid: No such file or directory kill: usage: kill [-s sigspec | -n signum | -sigspec] pid | jobspec ... or kill -l [sigspec] -> user script /var/cache/pbuilder/build//NUM/tmp/hooks/E50-initscripts-2.86.ds1-7.workaround.sh finished -> unmounting dev/pts filesystem -> unmounting proc filesystem -> creating base tarball [/TESTDIR/testimage] -> cleaning the build env -> removing directory /var/cache/pbuilder/build//NUM and its subdirectories pbuilder-0.215ubuntu7/testsuite/normal/pbuilder-execute-squeeze.log0000664000000000000000000000104712312041170022513 0ustar I: Building the build Environment I: extracting base tarball [/TESTDIR/testimage] I: creating local configuration I: copying local configuration I: mounting /proc filesystem I: mounting /dev/pts filesystem I: policy-rc.d already exists I: Obtaining the cached apt archive contents --- parameters given to this script [test1 test2 test3] I: Copying back the cached apt archive contents I: unmounting dev/pts filesystem I: unmounting proc filesystem I: cleaning the build env I: removing directory /var/cache/pbuilder/build//NUM and its subdirectories pbuilder-0.215ubuntu7/testsuite/normal/pdebuild-internal-sid.log0000664000000000000000000032156112312041170021753 0ustar I: Building the build Environment I: extracting base tarball [/TESTDIR/testimage] I: creating local configuration I: copying local configuration I: mounting /proc filesystem I: mounting /dev/pts filesystem I: Mounting /TESTDIR/dir2 I: policy-rc.d already exists I: Obtaining the cached apt archive contents ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/liblzma0_4.999.9beta+20091004-1_amd64.deb' => `/var/cache/pbuilder/aptcache/liblzma0_4.999.9beta+20091004-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/hello_2.4-3_amd64.deb' => `/var/cache/pbuilder/aptcache/hello_2.4-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libcurl3-gnutls_7.19.5-1ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/libcurl3-gnutls_7.19.5-1ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libsasl2-2_2.1.23.dfsg1-1ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/libsasl2-2_2.1.23.dfsg1-1ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/binutils_2.20-0ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/binutils_2.20-0ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/util-linux_2.16.1-4_amd64.deb' => `/var/cache/pbuilder/aptcache/util-linux_2.16.1-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libssl0.9.8_0.9.8k-6_amd64.deb' => `/var/cache/pbuilder/aptcache/libssl0.9.8_0.9.8k-6_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libcroco3_0.6.1-2_i386.deb' => `/var/cache/pbuilder/aptcache/libcroco3_0.6.1-2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libssl0.9.8_0.9.8k-7_amd64.deb' => `/var/cache/pbuilder/aptcache/libssl0.9.8_0.9.8k-7_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/bzip2_1.0.5-3_amd64.deb' => `/var/cache/pbuilder/aptcache/bzip2_1.0.5-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libc-bin_2.10.2-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libc-bin_2.10.2-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libssl0.9.8_0.9.8g-16ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/libssl0.9.8_0.9.8g-16ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libkrb5support0_1.7dfsg~beta3-1_i386.deb' => `/var/cache/pbuilder/aptcache/libkrb5support0_1.7dfsg~beta3-1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gcc_4%3a4.4.2-2_amd64.deb' => `/var/cache/pbuilder/aptcache/gcc_4%3a4.4.2-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gpgv_1.4.9-4ubuntu7_i386.deb' => `/var/cache/pbuilder/aptcache/gpgv_1.4.9-4ubuntu7_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gcc-4.4-base_4.4.2-3_amd64.deb' => `/var/cache/pbuilder/aptcache/gcc-4.4-base_4.4.2-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/bsdutils_1%3a2.16.2-0_amd64.deb' => `/var/cache/pbuilder/aptcache/bsdutils_1%3a2.16.2-0_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libslang2_2.2.2-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libslang2_2.2.2-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/linux-libc-dev_2.6.30-8_amd64.deb' => `/var/cache/pbuilder/aptcache/linux-libc-dev_2.6.30-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/bash_4.0-5ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/bash_4.0-5ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/dpkg-dev_1.15.4ubuntu2_all.deb' => `/var/cache/pbuilder/aptcache/dpkg-dev_1.15.4ubuntu2_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/netbase_4.40_all.deb' => `/var/cache/pbuilder/aptcache/netbase_4.40_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libcomerr2_1.41.9-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libcomerr2_1.41.9-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libgdbm3_1.8.3-4_i386.deb' => `/var/cache/pbuilder/aptcache/libgdbm3_1.8.3-4_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/bzip2_1.0.5-3_i386.deb' => `/var/cache/pbuilder/aptcache/bzip2_1.0.5-3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libdbus-1-3_1.2.16-0ubuntu9_i386.deb' => `/var/cache/pbuilder/aptcache/libdbus-1-3_1.2.16-0ubuntu9_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/bsdutils_1%3a2.16-1ubuntu5_i386.deb' => `/var/cache/pbuilder/aptcache/bsdutils_1%3a2.16-1ubuntu5_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libxapian15_1.0.17-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libxapian15_1.0.17-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/python-support_1.0.4_all.deb' => `/var/cache/pbuilder/aptcache/python-support_1.0.4_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libcomerr2_1.41.9-1ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/libcomerr2_1.41.9-1ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/sysvinit-utils_2.87dsf-4ubuntu11_i386.deb' => `/var/cache/pbuilder/aptcache/sysvinit-utils_2.87dsf-4ubuntu11_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/login_1%3a4.1.4.1-1ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/login_1%3a4.1.4.1-1ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libudev0_149-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libudev0_149-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libstdc++6-4.4-dev_4.4.2-8_amd64.deb' => `/var/cache/pbuilder/aptcache/libstdc++6-4.4-dev_4.4.2-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libdb4.5_4.5.20-13.1_amd64.deb' => `/var/cache/pbuilder/aptcache/libdb4.5_4.5.20-13.1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libncurses5_5.7+20090803-2ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/libncurses5_5.7+20090803-2ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libusb-0.1-4_2%3a0.1.12-13_i386.deb' => `/var/cache/pbuilder/aptcache/libusb-0.1-4_2%3a0.1.12-13_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libpam-runtime_1.1.0-2ubuntu1_all.deb' => `/var/cache/pbuilder/aptcache/libpam-runtime_1.1.0-2ubuntu1_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libept0_0.5.26ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/libept0_0.5.26ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/lsb-release_3.2-23_all.deb' => `/var/cache/pbuilder/aptcache/lsb-release_3.2-23_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libldap-2.4-2_2.4.18-0ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/libldap-2.4-2_2.4.18-0ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/liblzma1_4.999.9beta+20091116-1_amd64.deb' => `/var/cache/pbuilder/aptcache/liblzma1_4.999.9beta+20091116-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/logrotate_3.7.8-4_amd64.deb' => `/var/cache/pbuilder/aptcache/logrotate_3.7.8-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/mountall_1.0_i386.deb' => `/var/cache/pbuilder/aptcache/mountall_1.0_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/ubuntu-keyring_2009.08.28_all.deb' => `/var/cache/pbuilder/aptcache/ubuntu-keyring_2009.08.28_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/tasksel_2.80_all.deb' => `/var/cache/pbuilder/aptcache/tasksel_2.80_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/debianutils_3.2.2_amd64.deb' => `/var/cache/pbuilder/aptcache/debianutils_3.2.2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libboost-iostreams1.40.0_1.40.0-5_amd64.deb' => `/var/cache/pbuilder/aptcache/libboost-iostreams1.40.0_1.40.0-5_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libacl1_2.2.49-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libacl1_2.2.49-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/dmidecode_2.9-1.2_amd64.deb' => `/var/cache/pbuilder/aptcache/dmidecode_2.9-1.2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libtimedate-perl_1.1600-9_all.deb' => `/var/cache/pbuilder/aptcache/libtimedate-perl_1.1600-9_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gcc-4.4_4.4.2-8_amd64.deb' => `/var/cache/pbuilder/aptcache/gcc-4.4_4.4.2-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/sysv-rc_2.87dsf-4ubuntu11_all.deb' => `/var/cache/pbuilder/aptcache/sysv-rc_2.87dsf-4ubuntu11_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/po-debconf_1.0.16_all.deb' => `/var/cache/pbuilder/aptcache/po-debconf_1.0.16_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/mime-support_3.46-1_all.deb' => `/var/cache/pbuilder/aptcache/mime-support_3.46-1_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/apt_0.7.23.1ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/apt_0.7.23.1ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/lsb-base_3.2-23_all.deb' => `/var/cache/pbuilder/aptcache/lsb-base_3.2-23_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libkrb5-3_1.7dfsg~beta3-1_i386.deb' => `/var/cache/pbuilder/aptcache/libkrb5-3_1.7dfsg~beta3-1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libtasn1-3_2.2-1_i386.deb' => `/var/cache/pbuilder/aptcache/libtasn1-3_2.2-1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/dash_0.5.5.1-3_amd64.deb' => `/var/cache/pbuilder/aptcache/dash_0.5.5.1-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libwrap0_7.6.q-18_amd64.deb' => `/var/cache/pbuilder/aptcache/libwrap0_7.6.q-18_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libgssapi-krb5-2_1.7dfsg~beta3-1_i386.deb' => `/var/cache/pbuilder/aptcache/libgssapi-krb5-2_1.7dfsg~beta3-1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libss2_1.41.9-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libss2_1.41.9-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libsqlite3-0_3.6.21-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libsqlite3-0_3.6.21-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libslang2_2.2.1-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libslang2_2.2.1-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libgcc1_1%3a4.4.2-3_amd64.deb' => `/var/cache/pbuilder/aptcache/libgcc1_1%3a4.4.2-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/procps_1%3a3.2.8-2_amd64.deb' => `/var/cache/pbuilder/aptcache/procps_1%3a3.2.8-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/aptitude_0.6.1.3-3_amd64.deb' => `/var/cache/pbuilder/aptcache/aptitude_0.6.1.3-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libstdc++6_4.4.1-4ubuntu8_i386.deb' => `/var/cache/pbuilder/aptcache/libstdc++6_4.4.1-4ubuntu8_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/perl-base_5.10.1-8_amd64.deb' => `/var/cache/pbuilder/aptcache/perl-base_5.10.1-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libusb-0.1-4_2%3a0.1.12-13_amd64.deb' => `/var/cache/pbuilder/aptcache/libusb-0.1-4_2%3a0.1.12-13_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/mawk_1.3.3-15ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/mawk_1.3.3-15ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libpam0g_1.1.0-4_amd64.deb' => `/var/cache/pbuilder/aptcache/libpam0g_1.1.0-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/liblocale-gettext-perl_1.05-4build1_i386.deb' => `/var/cache/pbuilder/aptcache/liblocale-gettext-perl_1.05-4build1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/login_1%3a4.1.4.2-1_amd64.deb' => `/var/cache/pbuilder/aptcache/login_1%3a4.1.4.2-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/man-db_2.5.6-4_amd64.deb' => `/var/cache/pbuilder/aptcache/man-db_2.5.6-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libgdbm3_1.8.3-9_amd64.deb' => `/var/cache/pbuilder/aptcache/libgdbm3_1.8.3-9_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/ed_1.4-1_amd64.deb' => `/var/cache/pbuilder/aptcache/ed_1.4-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libselinux1_2.0.85-2ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/libselinux1_2.0.85-2ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libblkid1_2.16.1-4_amd64.deb' => `/var/cache/pbuilder/aptcache/libblkid1_2.16.1-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libcroco3_0.6.2-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libcroco3_0.6.2-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/cpp_4%3a4.4.2-2_amd64.deb' => `/var/cache/pbuilder/aptcache/cpp_4%3a4.4.2-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/debconf_1.5.28_all.deb' => `/var/cache/pbuilder/aptcache/debconf_1.5.28_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/liblog4cxx10_0.10.0-1.1_amd64.deb' => `/var/cache/pbuilder/aptcache/liblog4cxx10_0.10.0-1.1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/coreutils_7.4-2ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/coreutils_7.4-2ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libsqlite3-0_3.6.20-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libsqlite3-0_3.6.20-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/diffutils_1%3a2.8.7-0.1_amd64.deb' => `/var/cache/pbuilder/aptcache/diffutils_1%3a2.8.7-0.1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/build-essential_11.4_i386.deb' => `/var/cache/pbuilder/aptcache/build-essential_11.4_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/python2.5-minimal_2.5.4-3_amd64.deb' => `/var/cache/pbuilder/aptcache/python2.5-minimal_2.5.4-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/groff-base_1.20.1-5_i386.deb' => `/var/cache/pbuilder/aptcache/groff-base_1.20.1-5_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/sysv-rc_2.87dsf-8_all.deb' => `/var/cache/pbuilder/aptcache/sysv-rc_2.87dsf-8_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/debconf_1.5.27ubuntu2_all.deb' => `/var/cache/pbuilder/aptcache/debconf_1.5.27ubuntu2_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/mount_2.17~rc3-1_amd64.deb' => `/var/cache/pbuilder/aptcache/mount_2.17~rc3-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/vim-common_2%3a7.2.284-1_amd64.deb' => `/var/cache/pbuilder/aptcache/vim-common_2%3a7.2.284-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/module-init-tools_3.11-1_amd64.deb' => `/var/cache/pbuilder/aptcache/module-init-tools_3.11-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libgcrypt11_1.4.4-2ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/libgcrypt11_1.4.4-2ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/lsb-base_4.0-0ubuntu5_all.deb' => `/var/cache/pbuilder/aptcache/lsb-base_4.0-0ubuntu5_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/html2text_1.3.2a-14_amd64.deb' => `/var/cache/pbuilder/aptcache/html2text_1.3.2a-14_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libxml2_2.7.6.dfsg-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libxml2_2.7.6.dfsg-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/g++_4%3a4.4.1-1ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/g++_4%3a4.4.1-1ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libcwidget3_0.5.12-4ubuntu4_i386.deb' => `/var/cache/pbuilder/aptcache/libcwidget3_0.5.12-4ubuntu4_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/manpages_3.23-1_all.deb' => `/var/cache/pbuilder/aptcache/manpages_3.23-1_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/findutils_4.4.2-1_amd64.deb' => `/var/cache/pbuilder/aptcache/findutils_4.4.2-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/cowbuilder_0.58_amd64.deb' => `/var/cache/pbuilder/aptcache/cowbuilder_0.58_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libstdc++6_4.4.2-3_amd64.deb' => `/var/cache/pbuilder/aptcache/libstdc++6_4.4.2-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/dpkg-dev_1.15.5.2_all.deb' => `/var/cache/pbuilder/aptcache/dpkg-dev_1.15.5.2_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/initscripts_2.87dsf-4ubuntu11_i386.deb' => `/var/cache/pbuilder/aptcache/initscripts_2.87dsf-4ubuntu11_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/nano_2.2.1-1_amd64.deb' => `/var/cache/pbuilder/aptcache/nano_2.2.1-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/base-passwd_3.5.22_amd64.deb' => `/var/cache/pbuilder/aptcache/base-passwd_3.5.22_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libc-bin_2.11~0exp1-0exp1_amd64.deb' => `/var/cache/pbuilder/aptcache/libc-bin_2.11~0exp1-0exp1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libgomp1_4.4.2-8_amd64.deb' => `/var/cache/pbuilder/aptcache/libgomp1_4.4.2-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/cpp-4.4_4.4.1-4ubuntu8_i386.deb' => `/var/cache/pbuilder/aptcache/cpp-4.4_4.4.1-4ubuntu8_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gettext-base_0.17-8ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/gettext-base_0.17-8ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/liblocale-gettext-perl_1.05-6_amd64.deb' => `/var/cache/pbuilder/aptcache/liblocale-gettext-perl_1.05-6_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libkeyutils1_1.2-10_i386.deb' => `/var/cache/pbuilder/aptcache/libkeyutils1_1.2-10_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/hostname_2.95ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/hostname_2.95ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/procps_1%3a3.2.8-1ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/procps_1%3a3.2.8-1ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libsigc++-2.0-0c2a_2.2.2-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libsigc++-2.0-0c2a_2.2.2-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gettext_0.17-8ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/gettext_0.17-8ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gcc-4.4-base_4.4.1-4ubuntu8_i386.deb' => `/var/cache/pbuilder/aptcache/gcc-4.4-base_4.4.1-4ubuntu8_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libcwidget3_0.5.16-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libcwidget3_0.5.16-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libgpg-error0_1.6-1ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/libgpg-error0_1.6-1ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/dpkg-dev_1.15.5.5_all.deb' => `/var/cache/pbuilder/aptcache/dpkg-dev_1.15.5.5_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libsepol1_2.0.37-1_i386.deb' => `/var/cache/pbuilder/aptcache/libsepol1_2.0.37-1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libstdc++6_4.4.2-8_amd64.deb' => `/var/cache/pbuilder/aptcache/libstdc++6_4.4.2-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libss2_1.41.9-1ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/libss2_1.41.9-1ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libsigc++-2.0-0c2a_2.0.18-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libsigc++-2.0-0c2a_2.0.18-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libk5crypto3_1.7dfsg~beta3-1_i386.deb' => `/var/cache/pbuilder/aptcache/libk5crypto3_1.7dfsg~beta3-1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/fakeroot_1.14.4-1_amd64.deb' => `/var/cache/pbuilder/aptcache/fakeroot_1.14.4-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/ncurses-bin_5.7+20090803-2_amd64.deb' => `/var/cache/pbuilder/aptcache/ncurses-bin_5.7+20090803-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/util-linux_2.17~rc3-1_amd64.deb' => `/var/cache/pbuilder/aptcache/util-linux_2.17~rc3-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/cron_3.0pl1-106_amd64.deb' => `/var/cache/pbuilder/aptcache/cron_3.0pl1-106_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libacl1_2.2.47-2_i386.deb' => `/var/cache/pbuilder/aptcache/libacl1_2.2.47-2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/netcat-traditional_1.10-38_amd64.deb' => `/var/cache/pbuilder/aptcache/netcat-traditional_1.10-38_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/e2fslibs_1.41.9-1_amd64.deb' => `/var/cache/pbuilder/aptcache/e2fslibs_1.41.9-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/g++-4.4_4.4.2-8_amd64.deb' => `/var/cache/pbuilder/aptcache/g++-4.4_4.4.2-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/bsdmainutils_6.1.10ubuntu4_i386.deb' => `/var/cache/pbuilder/aptcache/bsdmainutils_6.1.10ubuntu4_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/python-debian_0.1.14_all.deb' => `/var/cache/pbuilder/aptcache/python-debian_0.1.14_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/python-apt_0.7.13.3_amd64.deb' => `/var/cache/pbuilder/aptcache/python-apt_0.7.13.3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/build-essential_11.4_amd64.deb' => `/var/cache/pbuilder/aptcache/build-essential_11.4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gnupg_1.4.9-4ubuntu7_i386.deb' => `/var/cache/pbuilder/aptcache/gnupg_1.4.9-4ubuntu7_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libsigc++-2.0-0c2a_2.0.18-2_i386.deb' => `/var/cache/pbuilder/aptcache/libsigc++-2.0-0c2a_2.0.18-2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/initscripts_2.87dsf-8_amd64.deb' => `/var/cache/pbuilder/aptcache/initscripts_2.87dsf-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/mount_2.16-1ubuntu5_i386.deb' => `/var/cache/pbuilder/aptcache/mount_2.16-1ubuntu5_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libc6_2.10.1-0ubuntu15_i386.deb' => `/var/cache/pbuilder/aptcache/libc6_2.10.1-0ubuntu15_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/dash_0.5.5.1-2ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/dash_0.5.5.1-2ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/zlib1g_1%3a1.2.3.4.dfsg-3_amd64.deb' => `/var/cache/pbuilder/aptcache/zlib1g_1%3a1.2.3.4.dfsg-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libreadline5_5.2-7_amd64.deb' => `/var/cache/pbuilder/aptcache/libreadline5_5.2-7_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/pbuilder_0.192_all.deb' => `/var/cache/pbuilder/aptcache/pbuilder_0.192_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/nano_2.2.0-1_amd64.deb' => `/var/cache/pbuilder/aptcache/nano_2.2.0-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/e2fsprogs_1.41.9-1ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/e2fsprogs_1.41.9-1ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/aptitude_0.4.11.11-1ubuntu6_i386.deb' => `/var/cache/pbuilder/aptcache/aptitude_0.4.11.11-1ubuntu6_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/bsdutils_1%3a2.16.1-4_amd64.deb' => `/var/cache/pbuilder/aptcache/bsdutils_1%3a2.16.1-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libglib2.0-0_2.22.3-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libglib2.0-0_2.22.3-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/python_2.5.4-2_all.deb' => `/var/cache/pbuilder/aptcache/python_2.5.4-2_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libdebian-installer-extra4_0.69_amd64.deb' => `/var/cache/pbuilder/aptcache/libdebian-installer-extra4_0.69_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/file_5.03-1ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/file_5.03-1ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libc6_2.11~0exp1-0exp1_amd64.deb' => `/var/cache/pbuilder/aptcache/libc6_2.11~0exp1-0exp1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/patch_2.5.9-5_amd64.deb' => `/var/cache/pbuilder/aptcache/patch_2.5.9-5_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/cdebootstrap_0.5.5_amd64.deb' => `/var/cache/pbuilder/aptcache/cdebootstrap_0.5.5_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libbz2-1.0_1.0.5-3_i386.deb' => `/var/cache/pbuilder/aptcache/libbz2-1.0_1.0.5-3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libsasl2-modules_2.1.23.dfsg1-1ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/libsasl2-modules_2.1.23.dfsg1-1ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/perl-modules_5.10.1-8_all.deb' => `/var/cache/pbuilder/aptcache/perl-modules_5.10.1-8_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libdb4.7_4.7.25-9_amd64.deb' => `/var/cache/pbuilder/aptcache/libdb4.7_4.7.25-9_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/debian-archive-keyring_2009.01.31_all.deb' => `/var/cache/pbuilder/aptcache/debian-archive-keyring_2009.01.31_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/grep_2.5.4-4_amd64.deb' => `/var/cache/pbuilder/aptcache/grep_2.5.4-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/udev_149-1_amd64.deb' => `/var/cache/pbuilder/aptcache/udev_149-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/isc-dhcp-common_4.1.0-1_amd64.deb' => `/var/cache/pbuilder/aptcache/isc-dhcp-common_4.1.0-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/base-passwd_3.5.21_i386.deb' => `/var/cache/pbuilder/aptcache/base-passwd_3.5.21_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gdebi-core_0.5.9debian2_all.deb' => `/var/cache/pbuilder/aptcache/gdebi-core_0.5.9debian2_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/g++-4.3_4.3.4-6_amd64.deb' => `/var/cache/pbuilder/aptcache/g++-4.3_4.3.4-6_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/bsdmainutils_8.0.2_amd64.deb' => `/var/cache/pbuilder/aptcache/bsdmainutils_8.0.2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/sed_4.2.1-1_i386.deb' => `/var/cache/pbuilder/aptcache/sed_4.2.1-1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/sed_4.2.1-4_amd64.deb' => `/var/cache/pbuilder/aptcache/sed_4.2.1-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/dhcp3-client_3.1.3-1_amd64.deb' => `/var/cache/pbuilder/aptcache/dhcp3-client_3.1.3-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/tar_1.22-2_amd64.deb' => `/var/cache/pbuilder/aptcache/tar_1.22-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/netbase_4.35ubuntu2_all.deb' => `/var/cache/pbuilder/aptcache/netbase_4.35ubuntu2_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libapr1_1.3.8-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libapr1_1.3.8-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gcc-4.3-base_4.3.4-6_amd64.deb' => `/var/cache/pbuilder/aptcache/gcc-4.3-base_4.3.4-6_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libstdc++6-4.4-dev_4.4.1-4ubuntu8_i386.deb' => `/var/cache/pbuilder/aptcache/libstdc++6-4.4-dev_4.4.1-4ubuntu8_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/iproute_20090324-1_amd64.deb' => `/var/cache/pbuilder/aptcache/iproute_20090324-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/iptables_1.4.6-2_amd64.deb' => `/var/cache/pbuilder/aptcache/iptables_1.4.6-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/perl_5.10.1-8_amd64.deb' => `/var/cache/pbuilder/aptcache/perl_5.10.1-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/dpkg_1.15.5.4_amd64.deb' => `/var/cache/pbuilder/aptcache/dpkg_1.15.5.4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libtext-wrapi18n-perl_0.06-7_all.deb' => `/var/cache/pbuilder/aptcache/libtext-wrapi18n-perl_0.06-7_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/apt_0.7.25_amd64.deb' => `/var/cache/pbuilder/aptcache/apt_0.7.25_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/g++_4%3a4.3.4-1_amd64.deb' => `/var/cache/pbuilder/aptcache/g++_4%3a4.3.4-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/util-linux_2.16-1ubuntu5_i386.deb' => `/var/cache/pbuilder/aptcache/util-linux_2.16-1ubuntu5_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gcc-4.4-base_4.4.2-8_amd64.deb' => `/var/cache/pbuilder/aptcache/gcc-4.4-base_4.4.2-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/mount_2.16.1-4_amd64.deb' => `/var/cache/pbuilder/aptcache/mount_2.16.1-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libc6-dev_2.10.2-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libc6-dev_2.10.2-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/sysvinit_2.87dsf-8_amd64.deb' => `/var/cache/pbuilder/aptcache/sysvinit_2.87dsf-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/passwd_1%3a4.1.4.2-1_amd64.deb' => `/var/cache/pbuilder/aptcache/passwd_1%3a4.1.4.2-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/perl-modules_5.10.0-24ubuntu4_all.deb' => `/var/cache/pbuilder/aptcache/perl-modules_5.10.0-24ubuntu4_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/dpkg-dev_1.15.5.4_all.deb' => `/var/cache/pbuilder/aptcache/dpkg-dev_1.15.5.4_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gcc-4.3_4.3.4-6_amd64.deb' => `/var/cache/pbuilder/aptcache/gcc-4.3_4.3.4-6_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libaprutil1_1.3.9+dfsg-3_amd64.deb' => `/var/cache/pbuilder/aptcache/libaprutil1_1.3.9+dfsg-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/bsdmainutils_8.0.3_amd64.deb' => `/var/cache/pbuilder/aptcache/bsdmainutils_8.0.3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/tasksel-data_2.80_all.deb' => `/var/cache/pbuilder/aptcache/tasksel-data_2.80_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/bash_4.0-7_amd64.deb' => `/var/cache/pbuilder/aptcache/bash_4.0-7_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/lzma_4.43-14ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/lzma_4.43-14ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/diff_2.8.1-13_i386.deb' => `/var/cache/pbuilder/aptcache/diff_2.8.1-13_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libpcre3_7.8-3_i386.deb' => `/var/cache/pbuilder/aptcache/libpcre3_7.8-3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/python2.6-minimal_2.6.4~rc2-0ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/python2.6-minimal_2.6.4~rc2-0ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/tzdata_2009u-1_all.deb' => `/var/cache/pbuilder/aptcache/tzdata_2009u-1_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/intltool-debian_0.35.0+20060710.1_all.deb' => `/var/cache/pbuilder/aptcache/intltool-debian_0.35.0+20060710.1_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libsepol1_2.0.40-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libsepol1_2.0.40-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libtasn1-3_2.3-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libtasn1-3_2.3-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libdb4.8_4.8.26-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libdb4.8_4.8.26-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/openssl_0.9.8g-16ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/openssl_0.9.8g-16ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/cpp-4.4_4.4.2-8_amd64.deb' => `/var/cache/pbuilder/aptcache/cpp-4.4_4.4.2-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libexpat1_2.0.1-7_amd64.deb' => `/var/cache/pbuilder/aptcache/libexpat1_2.0.1-7_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/adduser_3.112_all.deb' => `/var/cache/pbuilder/aptcache/adduser_3.112_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/zlib1g_1%3a1.2.3.3.dfsg-13ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/zlib1g_1%3a1.2.3.3.dfsg-13ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/patch_2.6-2_amd64.deb' => `/var/cache/pbuilder/aptcache/patch_2.6-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/python-central_0.6.13_all.deb' => `/var/cache/pbuilder/aptcache/python-central_0.6.13_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/util-linux_2.16.2-0_amd64.deb' => `/var/cache/pbuilder/aptcache/util-linux_2.16.2-0_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libreadline6_6.0-5_i386.deb' => `/var/cache/pbuilder/aptcache/libreadline6_6.0-5_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libept0_0.5.29_amd64.deb' => `/var/cache/pbuilder/aptcache/libept0_0.5.29_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/tzdata_2009o-1ubuntu2_all.deb' => `/var/cache/pbuilder/aptcache/tzdata_2009o-1ubuntu2_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libc6-dev_2.10.1-0ubuntu15_i386.deb' => `/var/cache/pbuilder/aptcache/libc6-dev_2.10.1-0ubuntu15_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/tzdata_2009s-1_all.deb' => `/var/cache/pbuilder/aptcache/tzdata_2009s-1_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/traceroute_2.0.13-2_amd64.deb' => `/var/cache/pbuilder/aptcache/traceroute_2.0.13-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/iputils-ping_3%3a20071127-2_amd64.deb' => `/var/cache/pbuilder/aptcache/iputils-ping_3%3a20071127-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libgcc1_1%3a4.4.1-4ubuntu8_i386.deb' => `/var/cache/pbuilder/aptcache/libgcc1_1%3a4.4.1-4ubuntu8_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libreadline6_6.0-5_amd64.deb' => `/var/cache/pbuilder/aptcache/libreadline6_6.0-5_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libgmp3c2_2%3a4.3.1+dfsg-3_amd64.deb' => `/var/cache/pbuilder/aptcache/libgmp3c2_2%3a4.3.1+dfsg-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/cowdancer_0.58_amd64.deb' => `/var/cache/pbuilder/aptcache/cowdancer_0.58_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libgomp1_4.4.1-4ubuntu8_i386.deb' => `/var/cache/pbuilder/aptcache/libgomp1_4.4.1-4ubuntu8_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/dpkg_1.15.5.2_amd64.deb' => `/var/cache/pbuilder/aptcache/dpkg_1.15.5.2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libxml2_2.7.5.dfsg-1ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/libxml2_2.7.5.dfsg-1ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libgmp3c2_2%3a4.3.1+dfsg-1ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/libgmp3c2_2%3a4.3.1+dfsg-1ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libslang2_2.1.4-3_i386.deb' => `/var/cache/pbuilder/aptcache/libslang2_2.1.4-3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libnewt0.52_0.52.10-5_amd64.deb' => `/var/cache/pbuilder/aptcache/libnewt0.52_0.52.10-5_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/make_3.81-6_i386.deb' => `/var/cache/pbuilder/aptcache/make_3.81-6_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gpgv_1.4.10-2_amd64.deb' => `/var/cache/pbuilder/aptcache/gpgv_1.4.10-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libpam0g_1.1.0-2ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/libpam0g_1.1.0-2ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/python-minimal_2.6.4~rc1-0ubuntu1_all.deb' => `/var/cache/pbuilder/aptcache/python-minimal_2.6.4~rc1-0ubuntu1_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/install-info_4.13a.dfsg.1-5_amd64.deb' => `/var/cache/pbuilder/aptcache/install-info_4.13a.dfsg.1-5_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libblkid1_2.17~rc3-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libblkid1_2.17~rc3-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libtimedate-perl_1.1900-1_all.deb' => `/var/cache/pbuilder/aptcache/libtimedate-perl_1.1900-1_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/ca-certificates_20090814_all.deb' => `/var/cache/pbuilder/aptcache/ca-certificates_20090814_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libmpfr1ldbl_2.4.2-3_amd64.deb' => `/var/cache/pbuilder/aptcache/libmpfr1ldbl_2.4.2-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/net-tools_1.60-23ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/net-tools_1.60-23ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/dhcp3-common_3.1.3-1_amd64.deb' => `/var/cache/pbuilder/aptcache/dhcp3-common_3.1.3-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/debianutils_2.30ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/debianutils_2.30ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/cpp_4%3a4.3.4-1_amd64.deb' => `/var/cache/pbuilder/aptcache/cpp_4%3a4.3.4-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/apt-utils_0.7.23.1_amd64.deb' => `/var/cache/pbuilder/aptcache/apt-utils_0.7.23.1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/dpkg_1.15.5.5_amd64.deb' => `/var/cache/pbuilder/aptcache/dpkg_1.15.5.5_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libpam-runtime_1.1.0-4_all.deb' => `/var/cache/pbuilder/aptcache/libpam-runtime_1.1.0-4_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libc-dev-bin_2.10.2-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libc-dev-bin_2.10.2-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/sysvinit-utils_2.87dsf-8_amd64.deb' => `/var/cache/pbuilder/aptcache/sysvinit-utils_2.87dsf-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/aptitude_0.4.11.11-1+b2_amd64.deb' => `/var/cache/pbuilder/aptcache/aptitude_0.4.11.11-1+b2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libc-bin_2.10.1-0ubuntu15_i386.deb' => `/var/cache/pbuilder/aptcache/libc-bin_2.10.1-0ubuntu15_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/iptables_1.4.5-1_amd64.deb' => `/var/cache/pbuilder/aptcache/iptables_1.4.5-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/bsdutils_1%3a2.17~rc3-1_amd64.deb' => `/var/cache/pbuilder/aptcache/bsdutils_1%3a2.17~rc3-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/sensible-utils_0.0.2_all.deb' => `/var/cache/pbuilder/aptcache/sensible-utils_0.0.2_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/grep_2.5.4-4_i386.deb' => `/var/cache/pbuilder/aptcache/grep_2.5.4-4_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/passwd_1%3a4.1.4.1-1ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/passwd_1%3a4.1.4.1-1ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/whiptail_0.52.10-5_amd64.deb' => `/var/cache/pbuilder/aptcache/whiptail_0.52.10-5_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libblkid1_2.16.2-0_amd64.deb' => `/var/cache/pbuilder/aptcache/libblkid1_2.16.2-0_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/zlib1g_1%3a1.2.3.3.dfsg-15_amd64.deb' => `/var/cache/pbuilder/aptcache/zlib1g_1%3a1.2.3.3.dfsg-15_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/apt-utils_0.7.25_amd64.deb' => `/var/cache/pbuilder/aptcache/apt-utils_0.7.25_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libtext-iconv-perl_1.7-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libtext-iconv-perl_1.7-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/make_3.81-7_amd64.deb' => `/var/cache/pbuilder/aptcache/make_3.81-7_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libudev0_147~-6_i386.deb' => `/var/cache/pbuilder/aptcache/libudev0_147~-6_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gzip_1.3.12-8ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/gzip_1.3.12-8ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/diffutils_1%3a2.8.1-18_amd64.deb' => `/var/cache/pbuilder/aptcache/diffutils_1%3a2.8.1-18_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/debconf-i18n_1.5.27ubuntu2_all.deb' => `/var/cache/pbuilder/aptcache/debconf-i18n_1.5.27ubuntu2_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libblkid1_2.16-1ubuntu5_i386.deb' => `/var/cache/pbuilder/aptcache/libblkid1_2.16-1ubuntu5_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libselinux1_2.0.89-4_amd64.deb' => `/var/cache/pbuilder/aptcache/libselinux1_2.0.89-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/debhelper_7.3.15ubuntu3_all.deb' => `/var/cache/pbuilder/aptcache/debhelper_7.3.15ubuntu3_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libpcre3_7.8-3_amd64.deb' => `/var/cache/pbuilder/aptcache/libpcre3_7.8-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/net-tools_1.60-23_amd64.deb' => `/var/cache/pbuilder/aptcache/net-tools_1.60-23_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/xz-utils_4.999.9beta+20091004-1_amd64.deb' => `/var/cache/pbuilder/aptcache/xz-utils_4.999.9beta+20091004-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libdb4.7_4.7.25-7ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/libdb4.7_4.7.25-7ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libattr1_1%3a2.4.43-3_i386.deb' => `/var/cache/pbuilder/aptcache/libattr1_1%3a2.4.43-3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/python2.5_2.5.4-3_amd64.deb' => `/var/cache/pbuilder/aptcache/python2.5_2.5.4-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libmagic1_5.03-1ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/libmagic1_5.03-1ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/udev_149-2_amd64.deb' => `/var/cache/pbuilder/aptcache/udev_149-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libdevmapper1.02.1_2%3a1.02.39-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libdevmapper1.02.1_2%3a1.02.39-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libidn11_1.15-1_i386.deb' => `/var/cache/pbuilder/aptcache/libidn11_1.15-1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/g++-4.4_4.4.1-4ubuntu8_i386.deb' => `/var/cache/pbuilder/aptcache/g++-4.4_4.4.1-4ubuntu8_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libmagic1_5.03-3_amd64.deb' => `/var/cache/pbuilder/aptcache/libmagic1_5.03-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libncursesw5_5.7+20090803-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libncursesw5_5.7+20090803-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libtext-charwidth-perl_0.04-5build1_i386.deb' => `/var/cache/pbuilder/aptcache/libtext-charwidth-perl_0.04-5build1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libunwind7_0.99-0.2_amd64.deb' => `/var/cache/pbuilder/aptcache/libunwind7_0.99-0.2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libtext-iconv-perl_1.7-1build1_i386.deb' => `/var/cache/pbuilder/aptcache/libtext-iconv-perl_1.7-1build1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/mount_2.16.2-0_amd64.deb' => `/var/cache/pbuilder/aptcache/mount_2.16.2-0_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libc6_2.10.2-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libc6_2.10.2-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libpopt0_1.15-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libpopt0_1.15-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libudev0_149-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libudev0_149-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/debconf-i18n_1.5.28_all.deb' => `/var/cache/pbuilder/aptcache/debconf-i18n_1.5.28_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/rsyslog_4.4.2-1_amd64.deb' => `/var/cache/pbuilder/aptcache/rsyslog_4.4.2-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/fakeroot_1.12.4ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/fakeroot_1.12.4ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gcc-4.4_4.4.1-4ubuntu8_i386.deb' => `/var/cache/pbuilder/aptcache/gcc-4.4_4.4.1-4ubuntu8_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/groff-base_1.20.1-6_amd64.deb' => `/var/cache/pbuilder/aptcache/groff-base_1.20.1-6_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/makedev_2.3.1-88_all.deb' => `/var/cache/pbuilder/aptcache/makedev_2.3.1-88_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/xz-utils_4.999.9beta+20091116-1_amd64.deb' => `/var/cache/pbuilder/aptcache/xz-utils_4.999.9beta+20091116-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/ncurses-base_5.7+20090803-2_all.deb' => `/var/cache/pbuilder/aptcache/ncurses-base_5.7+20090803-2_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/html2text_1.3.2a-14_i386.deb' => `/var/cache/pbuilder/aptcache/html2text_1.3.2a-14_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/hostname_3.01_amd64.deb' => `/var/cache/pbuilder/aptcache/hostname_3.01_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/ifupdown_0.6.8ubuntu21_i386.deb' => `/var/cache/pbuilder/aptcache/ifupdown_0.6.8ubuntu21_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libncursesw5_5.7+20090803-2ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/libncursesw5_5.7+20090803-2ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libbz2-1.0_1.0.5-3_amd64.deb' => `/var/cache/pbuilder/aptcache/libbz2-1.0_1.0.5-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/python-minimal_2.5.4-2_all.deb' => `/var/cache/pbuilder/aptcache/python-minimal_2.5.4-2_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/ncurses-base_5.7+20090803-2ubuntu2_all.deb' => `/var/cache/pbuilder/aptcache/ncurses-base_5.7+20090803-2ubuntu2_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/perl-base_5.10.0-24ubuntu4_i386.deb' => `/var/cache/pbuilder/aptcache/perl-base_5.10.0-24ubuntu4_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libpam-modules_1.1.0-2ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/libpam-modules_1.1.0-2ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gettext_0.17-8_amd64.deb' => `/var/cache/pbuilder/aptcache/gettext_0.17-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/insserv_1.12.0-11_i386.deb' => `/var/cache/pbuilder/aptcache/insserv_1.12.0-11_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gnupg_1.4.10-2_amd64.deb' => `/var/cache/pbuilder/aptcache/gnupg_1.4.10-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/locales_2.9+git20090617-3_all.deb' => `/var/cache/pbuilder/aptcache/locales_2.9+git20090617-3_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/dmidecode_2.9-1.1_amd64.deb' => `/var/cache/pbuilder/aptcache/dmidecode_2.9-1.1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/findutils_4.4.2-1_i386.deb' => `/var/cache/pbuilder/aptcache/findutils_4.4.2-1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libmpfr1ldbl_2.4.1-1ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/libmpfr1ldbl_2.4.1-1ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/perl_5.10.0-24ubuntu4_i386.deb' => `/var/cache/pbuilder/aptcache/perl_5.10.0-24ubuntu4_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/cpp-4.3_4.3.4-6_amd64.deb' => `/var/cache/pbuilder/aptcache/cpp-4.3_4.3.4-6_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libmpfr1ldbl_2.4.1-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libmpfr1ldbl_2.4.1-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libuuid1_2.16-1ubuntu5_i386.deb' => `/var/cache/pbuilder/aptcache/libuuid1_2.16-1ubuntu5_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/base-files_5.0.0ubuntu7_i386.deb' => `/var/cache/pbuilder/aptcache/base-files_5.0.0ubuntu7_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/wget_1.12-1.1_amd64.deb' => `/var/cache/pbuilder/aptcache/wget_1.12-1.1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/insserv_1.12.0-14_amd64.deb' => `/var/cache/pbuilder/aptcache/insserv_1.12.0-14_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libxapian15_1.0.15-2ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/libxapian15_1.0.15-2ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/cpio_2.10-1_amd64.deb' => `/var/cache/pbuilder/aptcache/cpio_2.10-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/sed_4.2.1-6_amd64.deb' => `/var/cache/pbuilder/aptcache/sed_4.2.1-6_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gcc_4%3a4.3.4-1_amd64.deb' => `/var/cache/pbuilder/aptcache/gcc_4%3a4.3.4-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/lzma_4.43-14_amd64.deb' => `/var/cache/pbuilder/aptcache/lzma_4.43-14_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/ncurses-bin_5.7+20090803-2ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/ncurses-bin_5.7+20090803-2ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/dpkg_1.15.4ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/dpkg_1.15.4ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/man-db_2.5.6-2_i386.deb' => `/var/cache/pbuilder/aptcache/man-db_2.5.6-2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/linux-libc-dev_2.6.32-3_amd64.deb' => `/var/cache/pbuilder/aptcache/linux-libc-dev_2.6.32-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/e2fslibs_1.41.9-1ubuntu3_i386.deb' => `/var/cache/pbuilder/aptcache/e2fslibs_1.41.9-1ubuntu3_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libdb4.7_4.7.25-8_amd64.deb' => `/var/cache/pbuilder/aptcache/libdb4.7_4.7.25-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libgomp1_4.4.2-3_amd64.deb' => `/var/cache/pbuilder/aptcache/libgomp1_4.4.2-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/apt_0.7.23.1_amd64.deb' => `/var/cache/pbuilder/aptcache/apt_0.7.23.1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/linux-libc-dev_2.6.31-14.48_i386.deb' => `/var/cache/pbuilder/aptcache/linux-libc-dev_2.6.31-14.48_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libncurses5_5.7+20090803-2_amd64.deb' => `/var/cache/pbuilder/aptcache/libncurses5_5.7+20090803-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/g++_4%3a4.4.2-2_amd64.deb' => `/var/cache/pbuilder/aptcache/g++_4%3a4.4.2-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/tar_1.22-1_i386.deb' => `/var/cache/pbuilder/aptcache/tar_1.22-1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/cpp_4%3a4.4.1-1ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/cpp_4%3a4.4.1-1ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/isc-dhcp-client_4.1.0-1_amd64.deb' => `/var/cache/pbuilder/aptcache/isc-dhcp-client_4.1.0-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gcc_4%3a4.4.1-1ubuntu2_i386.deb' => `/var/cache/pbuilder/aptcache/gcc_4%3a4.4.1-1ubuntu2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/ifupdown_0.6.9_amd64.deb' => `/var/cache/pbuilder/aptcache/ifupdown_0.6.9_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libtext-charwidth-perl_0.04-6_amd64.deb' => `/var/cache/pbuilder/aptcache/libtext-charwidth-perl_0.04-6_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libuuid1_2.16.2-0_amd64.deb' => `/var/cache/pbuilder/aptcache/libuuid1_2.16.2-0_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/patch_2.5.9-5_i386.deb' => `/var/cache/pbuilder/aptcache/patch_2.5.9-5_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gettext-base_0.17-8_amd64.deb' => `/var/cache/pbuilder/aptcache/gettext-base_0.17-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/readline-common_6.0-5_all.deb' => `/var/cache/pbuilder/aptcache/readline-common_6.0-5_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/ifupdown_0.7~alpha3_amd64.deb' => `/var/cache/pbuilder/aptcache/ifupdown_0.7~alpha3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/bsdmainutils_8.0.5_amd64.deb' => `/var/cache/pbuilder/aptcache/bsdmainutils_8.0.5_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/coreutils_7.4-2_amd64.deb' => `/var/cache/pbuilder/aptcache/coreutils_7.4-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/gzip_1.3.12-8_amd64.deb' => `/var/cache/pbuilder/aptcache/gzip_1.3.12-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libstdc++6-4.3-dev_4.3.4-6_amd64.deb' => `/var/cache/pbuilder/aptcache/libstdc++6-4.3-dev_4.3.4-6_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libattr1_1%3a2.4.44-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libattr1_1%3a2.4.44-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/coreutils_8.0-2_amd64.deb' => `/var/cache/pbuilder/aptcache/coreutils_8.0-2_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/base-files_5.0.0_amd64.deb' => `/var/cache/pbuilder/aptcache/base-files_5.0.0_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/binutils_2.20-4_amd64.deb' => `/var/cache/pbuilder/aptcache/binutils_2.20-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libpam-modules_1.1.0-4_amd64.deb' => `/var/cache/pbuilder/aptcache/libpam-modules_1.1.0-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/info_4.13a.dfsg.1-5_amd64.deb' => `/var/cache/pbuilder/aptcache/info_4.13a.dfsg.1-5_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libuuid1_2.16.1-4_amd64.deb' => `/var/cache/pbuilder/aptcache/libuuid1_2.16.1-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/bash_4.0-4_amd64.deb' => `/var/cache/pbuilder/aptcache/bash_4.0-4_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libc-dev-bin_2.10.1-0ubuntu15_i386.deb' => `/var/cache/pbuilder/aptcache/libc-dev-bin_2.10.1-0ubuntu15_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/e2fsprogs_1.41.9-1_amd64.deb' => `/var/cache/pbuilder/aptcache/e2fsprogs_1.41.9-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libept0_0.5.30_amd64.deb' => `/var/cache/pbuilder/aptcache/libept0_0.5.30_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/debhelper_7.4.3_all.deb' => `/var/cache/pbuilder/aptcache/debhelper_7.4.3_all.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/upstart_0.6.3-10_i386.deb' => `/var/cache/pbuilder/aptcache/upstart_0.6.3-10_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libgnutls26_2.8.3-2_i386.deb' => `/var/cache/pbuilder/aptcache/libgnutls26_2.8.3-2_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libdb4.8_4.8.24-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libdb4.8_4.8.24-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libuuid1_2.17~rc3-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libuuid1_2.17~rc3-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libglib2.0-0_2.22.2-0ubuntu1_i386.deb' => `/var/cache/pbuilder/aptcache/libglib2.0-0_2.22.2-0ubuntu1_i386.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/vim-tiny_2%3a7.2.284-1_amd64.deb' => `/var/cache/pbuilder/aptcache/vim-tiny_2%3a7.2.284-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/mawk_1.3.3-15_amd64.deb' => `/var/cache/pbuilder/aptcache/mawk_1.3.3-15_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libgcc1_1%3a4.4.2-8_amd64.deb' => `/var/cache/pbuilder/aptcache/libgcc1_1%3a4.4.2-8_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libcwidget3_0.5.13-1_amd64.deb' => `/var/cache/pbuilder/aptcache/libcwidget3_0.5.13-1_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/file_5.03-3_amd64.deb' => `/var/cache/pbuilder/aptcache/file_5.03-3_amd64.deb': Invalid cross-device link ln: creating hard link `/TESTDIR/dir3/NUM/var/cache/apt/archives/libdebian-installer4_0.69_amd64.deb' => `/var/cache/pbuilder/aptcache/libdebian-installer4_0.69_amd64.deb': Invalid cross-device link Reading package lists... Building dependency tree... Reading state information... passwd is already the newest version. The following extra packages will be installed: debootstrap Suggested packages: pbuilder-uml gdebi-core cowdancer 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 390kB of archives. After this operation, 1425kB of additional disk space will be used. Get:1 http://ftp.de.debian.org sid/main debootstrap 1.0.20 [55.5kB] Get:2 http://ftp.de.debian.org sid/main pbuilder 0.195 [334kB] Preconfiguring packages ... Fetched XXXB in Xs (XXXXXB/s) Selecting previously deselected package debootstrap. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 12215 files and directories currently installed.) Unpacking debootstrap (from .../debootstrap_1.0.20_all.deb) ... Selecting previously deselected package pbuilder. Unpacking pbuilder (from .../pbuilder_0.195_all.deb) ... Processing triggers for man-db ... Setting up debootstrap (1.0.20) ... Setting up pbuilder (0.195) ... I: Setting DEBBUILDOPTS= I: Setting DEBBUILDOPTS= W: no hooks of type D found -- ignoring -> Attempting to satisfy build-dependencies -> Creating pbuilder-satisfydepends-dummy package Package: pbuilder-satisfydepends-dummy Version: 0.invalid.0 Architecture: amd64 Maintainer: Debian Pbuilder Team Description: Dummy package to satisfy dependencies with aptitude - created by pbuilder This package was created automatically by pbuilder and should Depends: debhelper (>> 3.0.0), libdshconfig1-dev (>= 0.20.11-1), po4a dpkg-deb: building package `pbuilder-satisfydepends-dummy' in `/tmp/satisfydepends-aptitude/pbuilder-satisfydepends-dummy.deb'. Reading package lists... Building dependency tree... Reading state information... aptitude is already the newest version. 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. Selecting previously deselected package pbuilder-satisfydepends-dummy. (Reading database ... 12347 files and directories currently installed.) Unpacking pbuilder-satisfydepends-dummy (from .../pbuilder-satisfydepends-dummy.deb) ... dpkg: dependency problems prevent configuration of pbuilder-satisfydepends-dummy: pbuilder-satisfydepends-dummy depends on debhelper (>> 3.0.0); however: Package debhelper is not installed. pbuilder-satisfydepends-dummy depends on libdshconfig1-dev (>= 0.20.11-1); however: Package libdshconfig1-dev is not installed. pbuilder-satisfydepends-dummy depends on po4a; however: Package po4a is not installed. dpkg: error processing pbuilder-satisfydepends-dummy (--install): dependency problems - leaving unconfigured Errors were encountered while processing: pbuilder-satisfydepends-dummy Reading package lists... Building dependency tree... Reading state information... Initializing package states... Writing extended state information... Reading task descriptions... The following NEW packages will be installed: debhelper{a} file{a} gettext{a} gettext-base{a} html2text{a} intltool-debian{a} libcroco3{a} libdshconfig1{a} libdshconfig1-dev{a} libglib2.0-0{a} libmagic1{a} libpcre3{a} libsgmls-perl{a} libsp1c2{a} libxml2{a} po-debconf{a} po4a{a} sp{a} The following partially installed packages will be configured: pbuilder-satisfydepends-dummy 0 packages upgraded, 18 newly installed, 0 to remove and 0 not upgraded. Need to get 8766kB of archives. After unpacking 27.3MB will be used. Writing extended state information... Get:1 http://ftp.de.debian.org sid/main libmagic1 5.03-5 [393kB] Get:2 http://ftp.de.debian.org sid/main file 5.03-5 [47.6kB] Get:3 http://ftp.de.debian.org sid/main html2text 1.3.2a-14 [103kB] Get:4 http://ftp.de.debian.org sid/main libpcre3 7.8-3 [215kB] Get:5 http://ftp.de.debian.org sid/main libglib2.0-0 2.22.3-2 [999kB] Get:6 http://ftp.de.debian.org sid/main libxml2 2.7.6.dfsg-1 [876kB] Get:7 http://ftp.de.debian.org sid/main libcroco3 0.6.2-1 [125kB] Get:8 http://ftp.de.debian.org sid/main gettext-base 0.17-8 [133kB] Get:9 http://ftp.de.debian.org sid/main gettext 0.17-8 [2503kB] Get:10 http://ftp.de.debian.org sid/main intltool-debian 0.35.0+20060710.1 [30.8kB] Get:11 http://ftp.de.debian.org sid/main po-debconf 1.0.16 [224kB] Get:12 http://ftp.de.debian.org sid/main debhelper 7.4.11 [459kB] Get:13 http://ftp.de.debian.org sid/main libdshconfig1 0.20.13-1 [11.0kB] Get:14 http://ftp.de.debian.org sid/main libdshconfig1-dev 0.20.13-1 [25.4kB] Get:15 http://ftp.de.debian.org sid/main libsgmls-perl 1.03ii-32 [27.8kB] Get:16 http://ftp.de.debian.org sid/main libsp1c2 1.3.4-1.2.1-47 [1386kB] Get:17 http://ftp.de.debian.org sid/main sp 1.3.4-1.2.1-47 [182kB] Get:18 http://ftp.de.debian.org sid/main po4a 0.37.1-1 [1026kB] Fetched XXXB in Xs (XXXXXB/s) Selecting previously deselected package libmagic1. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 12347 files and directories currently installed.) Unpacking libmagic1 (from .../libmagic1_5.03-5_amd64.deb) ... Selecting previously deselected package file. Unpacking file (from .../archives/file_5.03-5_amd64.deb) ... Selecting previously deselected package html2text. Unpacking html2text (from .../html2text_1.3.2a-14_amd64.deb) ... Selecting previously deselected package libpcre3. Unpacking libpcre3 (from .../libpcre3_7.8-3_amd64.deb) ... Selecting previously deselected package libglib2.0-0. Unpacking libglib2.0-0 (from .../libglib2.0-0_2.22.3-2_amd64.deb) ... Selecting previously deselected package libxml2. Unpacking libxml2 (from .../libxml2_2.7.6.dfsg-1_amd64.deb) ... Selecting previously deselected package libcroco3. Unpacking libcroco3 (from .../libcroco3_0.6.2-1_amd64.deb) ... Selecting previously deselected package gettext-base. Unpacking gettext-base (from .../gettext-base_0.17-8_amd64.deb) ... Selecting previously deselected package gettext. Unpacking gettext (from .../gettext_0.17-8_amd64.deb) ... Selecting previously deselected package intltool-debian. Unpacking intltool-debian (from .../intltool-debian_0.35.0+20060710.1_all.deb) ... Selecting previously deselected package po-debconf. Unpacking po-debconf (from .../po-debconf_1.0.16_all.deb) ... Selecting previously deselected package debhelper. Unpacking debhelper (from .../debhelper_7.4.11_all.deb) ... Selecting previously deselected package libdshconfig1. Unpacking libdshconfig1 (from .../libdshconfig1_0.20.13-1_amd64.deb) ... Selecting previously deselected package libdshconfig1-dev. Unpacking libdshconfig1-dev (from .../libdshconfig1-dev_0.20.13-1_amd64.deb) ... Selecting previously deselected package libsgmls-perl. Unpacking libsgmls-perl (from .../libsgmls-perl_1.03ii-32_all.deb) ... Selecting previously deselected package libsp1c2. Unpacking libsp1c2 (from .../libsp1c2_1.3.4-1.2.1-47_amd64.deb) ... Selecting previously deselected package sp. Unpacking sp (from .../sp_1.3.4-1.2.1-47_amd64.deb) ... Selecting previously deselected package po4a. Unpacking po4a (from .../archives/po4a_0.37.1-1_all.deb) ... Processing triggers for man-db ... Processing triggers for install-info ... Setting up libmagic1 (5.03-5) ... Setting up file (5.03-5) ... Setting up html2text (1.3.2a-14) ... Setting up libpcre3 (7.8-3) ... Setting up libglib2.0-0 (2.22.3-2) ... Setting up libxml2 (2.7.6.dfsg-1) ... Setting up libcroco3 (0.6.2-1) ... Setting up gettext-base (0.17-8) ... Setting up gettext (0.17-8) ... Setting up intltool-debian (0.35.0+20060710.1) ... Setting up po-debconf (1.0.16) ... Setting up debhelper (7.4.11) ... Setting up libdshconfig1 (0.20.13-1) ... Setting up libdshconfig1-dev (0.20.13-1) ... Setting up libsgmls-perl (1.03ii-32) ... Setting up libsp1c2 (1.3.4-1.2.1-47) ... Setting up sp (1.3.4-1.2.1-47) ... Setting up po4a (0.37.1-1) ... Setting up pbuilder-satisfydepends-dummy (0.invalid.0) ... Reading package lists... Building dependency tree... Reading state information... Reading extended state information... Initializing package states... Writing extended state information... Reading task descriptions... -> Finished parsing the build-deps Reading package lists... Building dependency tree... Reading state information... The following NEW packages will be installed: fakeroot 0 upgraded, 1 newly installed, 0 to remove and 0 not upgraded. Need to get 100kB of archives. After this operation, 385kB of additional disk space will be used. Get:1 http://ftp.de.debian.org sid/main fakeroot 1.14.4-1 [100kB] Fetched XXXB in Xs (XXXXXB/s) Selecting previously deselected package fakeroot. (Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 13509 files and directories currently installed.) Unpacking fakeroot (from .../fakeroot_1.14.4-1_amd64.deb) ... Processing triggers for man-db ... Setting up fakeroot (1.14.4-1) ... update-alternatives: using /usr/bin/fakeroot-sysv to provide /usr/bin/fakeroot (fakeroot) in auto mode. W: no hooks of type A found -- ignoring I: Running /usr/bin/dpkg-buildpackage -rfakeroot -us -uc ${DEBBUILDOPTS} dpkg-buildpackage: set CFLAGS to default value: -g -O2 dpkg-buildpackage: set CPPFLAGS to default value: dpkg-buildpackage: set LDFLAGS to default value: dpkg-buildpackage: set FFLAGS to default value: -g -O2 dpkg-buildpackage: set CXXFLAGS to default value: -g -O2 dpkg-buildpackage: source package dsh dpkg-buildpackage: source version 0.25.10-1 dpkg-buildpackage: source changed by Junichi Uekawa dpkg-buildpackage: host architecture amd64 fakeroot debian/rules clean dh_testdir dh_testroot rm -f build-stamp configure-stamp /usr/bin/make clean make[1]: Entering directory `/TESTDIR/dir2/dsh-0.25.10' make[1]: *** No rule to make target `clean'. Stop. make[1]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10' make: [clean] Error 2 (ignored) /usr/bin/make distclean make[1]: Entering directory `/TESTDIR/dir2/dsh-0.25.10' make[1]: *** No rule to make target `distclean'. Stop. make[1]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10' make: [clean] Error 2 (ignored) dh_clean dh_clean: Compatibility levels before 5 are deprecated. dpkg-source -b dsh-0.25.10 dpkg-source: info: using source format `1.0' dpkg-source: info: building dsh using existing dsh_0.25.10.orig.tar.gz dpkg-source: info: building dsh in dsh_0.25.10-1.diff.gz dpkg-source: warning: file dsh-0.25.10/dcp.sh has no final newline (either original or modified version) dpkg-source: warning: file dsh-0.25.10/debian/compat has no final newline (either original or modified version) dpkg-source: warning: the diff modifies the following upstream files: .cvsignore CVS/Entries CVS/Repository CVS/Root ChangeLog.OLD dcp.sh drshd.c dsh.1.ja.po m4/.cvsignore m4/CVS/Entries m4/CVS/Repository m4/CVS/Root po/.cvsignore po/CVS/Entries po/CVS/Repository po/CVS/Root po/insert-header.sin tests/.cvsignore tests/CVS/Entries tests/CVS/Repository tests/CVS/Root dpkg-source: info: use the '3.0 (quilt)' format to have separate and documented changes to upstream files, see dpkg-source(1) dpkg-source: info: building dsh in dsh_0.25.10-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 ISO C89... none needed checking dependency style of gcc... gcc3 checking for strerror in -lcposix... no checking for gcc... (cached) gcc checking whether we are using the GNU C compiler... (cached) yes checking whether gcc accepts -g... (cached) yes checking for gcc option to accept ISO C89... (cached) none needed checking dependency style of gcc... (cached) 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 ISO C89... (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 grep that handles long lines and -e... /bin/grep checking for egrep... /bin/grep -E checking for ANSI C header files... yes checking for sys/wait.h that is POSIX.1 compatible... yes checking build system type... x86_64-unknown-linux-gnu checking host system type... x86_64-unknown-linux-gnu checking for a sed that does not truncate output... /bin/sed checking for ld used by gcc... /usr/bin/ld checking if the linker (/usr/bin/ld) is GNU ld... yes checking for /usr/bin/ld option to reload object files... -r checking for BSD-compatible nm... /usr/bin/nm -B checking whether ln -s works... yes checking how to recognize dependent libraries... pass_all checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... yes checking for unistd.h... yes checking dlfcn.h usability... yes checking dlfcn.h presence... yes checking for dlfcn.h... yes checking for g++... g++ checking whether we are using the GNU C++ compiler... yes checking whether g++ accepts -g... yes checking dependency style of g++... gcc3 checking how to run the C++ preprocessor... g++ -E checking for g77... no checking for xlf... no checking for f77... no checking for frt... no checking for pgf77... no checking for cf77... no checking for fort77... no checking for fl32... no checking for af77... no checking for xlf90... no checking for f90... no checking for pgf90... no checking for pghpf... no checking for epcf90... no checking for gfortran... no checking for g95... no checking for xlf95... no checking for f95... no checking for fort... no checking for ifort... no checking for ifc... no checking for efc... no checking for pgf95... no checking for lf95... no checking for ftn... no checking whether we are using the GNU Fortran 77 compiler... no checking whether accepts -g... no checking the maximum length of command line arguments... 3458764513820540925 checking command to parse /usr/bin/nm -B output from gcc object... ok checking for objdir... .libs checking for ar... ar checking for ranlib... ranlib checking for strip... strip checking if gcc supports -fno-rtti -fno-exceptions... no checking for gcc option to produce PIC... -fPIC checking if gcc PIC flag -fPIC works... yes checking if gcc static flag -static works... yes checking if gcc supports -c -o file.o... yes checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) 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 -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking for g++ option to produce PIC... -fPIC checking if g++ PIC flag -fPIC works... yes checking if g++ static flag -static works... yes checking if g++ supports -c -o file.o... yes checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes checking dynamic linker characteristics... GNU/Linux ld.so checking how to hardcode library paths into programs... immediate appending configuration tag "F77" to libtool checking 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 -m elf_x86_64 checking if the linker (/usr/bin/ld -m elf_x86_64) 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: WARNING: po/Makefile.in.in seems to ignore the --datarootdir setting 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 `/TESTDIR/dir2/dsh-0.25.10' /usr/bin/make all-recursive make[2]: Entering directory `/TESTDIR/dir2/dsh-0.25.10' Making all in m4 make[3]: Entering directory `/TESTDIR/dir2/dsh-0.25.10/m4' make[3]: Nothing to be done for `all'. make[3]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10/m4' Making all in po make[3]: Entering directory `/TESTDIR/dir2/dsh-0.25.10/po' make[3]: Nothing to be done for `all'. make[3]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10/po' make[3]: Entering directory `/TESTDIR/dir2/dsh-0.25.10' 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/bash ./libtool --tag=CC --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 `/TESTDIR/dir2/dsh-0.25.10' make[2]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10' make[1]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10' /usr/bin/make check make[1]: Entering directory `/TESTDIR/dir2/dsh-0.25.10' Making check in m4 make[2]: Entering directory `/TESTDIR/dir2/dsh-0.25.10/m4' make[2]: Nothing to be done for `check'. make[2]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10/m4' Making check in po make[2]: Entering directory `/TESTDIR/dir2/dsh-0.25.10/po' make[2]: Nothing to be done for `check'. make[2]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10/po' make[2]: Entering directory `/TESTDIR/dir2/dsh-0.25.10' /usr/bin/make dsh make[3]: Entering directory `/TESTDIR/dir2/dsh-0.25.10' make[3]: `dsh' is up to date. make[3]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10' /usr/bin/make check-TESTS make[3]: Entering directory `/TESTDIR/dir2/dsh-0.25.10' PASS: tests/param-f.sh dsh: File ./tests/nonexistent.file could not be opened for read PASS: tests/param-f-fail.sh PASS: tests/param-f-with-space.sh PASS: tests/param-m.sh test to check that unknown parameter checking is right. ./dsh: unrecognized option '--unknown-parameter' ./dsh: invalid option -- 'u' PASS: tests/param-unknown.sh test1 test2 dsh: Process terminated (before write). PASS: tests/param-i.sh Check that cn4 option is working. PASS: tests/param-cn4.sh test to check that -b0 is rejected, and -b1 is accepted Buffer size needs to be greater than 1 Buffer size needs to be greater than 1 a b PASS: tests/param-b-0.sh dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call success dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call success success success success success a: dsh: Failed executing ./invalid-exec-file with llexec call b: dsh: Failed executing ./invalid-exec-file with llexec call c: dsh: Failed executing ./invalid-exec-file with llexec call d: dsh: Failed executing ./invalid-exec-file with llexec call success dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call dsh: Failed executing ./invalid-exec-file with llexec call success PASS: tests/param-r-invalid.sh 1: 1 2: 2 dsh: fork limit and wait shell cannot be specified at the same time PASS: tests/param-F-invalid.sh Fri Jan 1 19:04:33 UTC 2010 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 Fri Jan 1 19:04:38 UTC 2010 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 `/TESTDIR/dir2/dsh-0.25.10' make[2]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10' make[1]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10' touch build-stamp fakeroot debian/rules binary dh_testdir dh_testroot dh_clean -k dh_clean: Compatibility levels before 5 are deprecated. dh_installdirs dh_installdirs: Compatibility levels before 5 are deprecated. # Add here commands to install the package into debian/dsh. /usr/bin/make install DESTDIR=/TESTDIR/dir2/dsh-0.25.10/debian/dsh make[1]: Entering directory `/TESTDIR/dir2/dsh-0.25.10' Making install in m4 make[2]: Entering directory `/TESTDIR/dir2/dsh-0.25.10/m4' make[3]: Entering directory `/TESTDIR/dir2/dsh-0.25.10/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 `/TESTDIR/dir2/dsh-0.25.10/m4' make[2]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10/m4' Making install in po make[2]: Entering directory `/TESTDIR/dir2/dsh-0.25.10/po' /bin/sh `case "./mkinstalldirs" in /*) echo "./mkinstalldirs" ;; *) echo ".././mkinstalldirs" ;; esac` /TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/share mkdir -p -- /TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/share mkdir -p -- /TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/share/locale/ja/LC_MESSAGES installing ja.gmo as /TESTDIR/dir2/dsh-0.25.10/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` /TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/share/gettext/po; \ for file in Makefile.in.in Makevars remove-potcdate.sin ; do \ /usr/bin/install -c -m 644 ./$file \ /TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/share/gettext/po/$file; \ done; \ else \ : ; \ fi make[2]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10/po' make[2]: Entering directory `/TESTDIR/dir2/dsh-0.25.10' make[3]: Entering directory `/TESTDIR/dir2/dsh-0.25.10' test -z "/usr/bin" || mkdir -p -- "/TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/bin" /bin/bash ./libtool --mode=install install -p -o root -g root -m 755 -s 'dsh' '/TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/bin/dsh' install -p -o root -g root -m 755 -s dsh /TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/bin/dsh test -z "/etc/dsh" || mkdir -p -- "/TESTDIR/dir2/dsh-0.25.10/debian/dsh/etc/dsh" /usr/bin/install -c -m 644 'dsh.conf' '/TESTDIR/dir2/dsh-0.25.10/debian/dsh/etc/dsh/dsh.conf' for LANGS in ja ; do \ mkdir -p /TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/share/man/$LANGS/man1 ;\ mkdir -p /TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/share/man/$LANGS/man5 ;\ sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.$LANGS.1 \ > /TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/share/man/$LANGS/man1/dsh.1 ; \ sed -e 's,[@]sysconfdir[@],/etc/dsh,' < ./dsh.conf.$LANGS.5 \ > /TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/share/man/$LANGS/man5/dsh.conf.5 ; \ done test -z "/usr/share/man/man1" || mkdir -p -- "/TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/share/man/man1" /usr/bin/install -c -m 644 './build-man/dsh.1' '/TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/share/man/man1/dsh.1' test -z "/usr/share/man/man5" || mkdir -p -- "/TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/share/man/man5" /usr/bin/install -c -m 644 './build-man/dsh.conf.5' '/TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/share/man/man5/dsh.conf.5' make[3]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10' make[2]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10' make[1]: Leaving directory `/TESTDIR/dir2/dsh-0.25.10' cp /TESTDIR/dir2/dsh-0.25.10/debian/machines.list /TESTDIR/dir2/dsh-0.25.10/debian/dsh/etc/dsh/machines.list cp /TESTDIR/dir2/dsh-0.25.10/dsh.conf /TESTDIR/dir2/dsh-0.25.10/debian/dsh/etc/dsh/dsh.conf ln -s ../machines.list /TESTDIR/dir2/dsh-0.25.10/debian/dsh/etc/dsh/group/all install -d /TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/lib/update-cluster install -m 755 /TESTDIR/dir2/dsh-0.25.10/debian/dsh.updatelist /TESTDIR/dir2/dsh-0.25.10/debian/dsh/usr/lib/update-cluster/ dh_testdir dh_testroot dh_installdocs NEWS dh_installdocs: Compatibility levels before 5 are deprecated. dh_installexamples dh_installexamples: Compatibility levels before 5 are deprecated. dh_installmenu dh_installmenu: Compatibility levels before 5 are deprecated. dh_installman dh_installman: Compatibility levels before 5 are deprecated. dh_installchangelogs ChangeLog dh_installchangelogs: Compatibility levels before 5 are deprecated. dh_link dh_link: Compatibility levels before 5 are deprecated. dh_strip dh_strip: Compatibility levels before 5 are deprecated. dh_shlibdeps dh_shlibdeps: Compatibility levels before 5 are deprecated. dh_compress dh_compress: Compatibility levels before 5 are deprecated. dh_fixperms dh_fixperms: Compatibility levels before 5 are deprecated. dh_installdeb dh_installdeb: Compatibility levels before 5 are deprecated. dh_gencontrol dh_gencontrol: Compatibility levels before 5 are deprecated. dh_md5sums dh_md5sums: Compatibility levels before 5 are deprecated. dh_builddeb dh_builddeb: Compatibility levels before 5 are deprecated. dpkg-deb: building package `dsh' in `../dsh_0.25.10-1_amd64.deb'. dpkg-genchanges >../dsh_0.25.10-1_amd64.changes dpkg-genchanges: including full source code in upload dpkg-buildpackage: full upload (original source is included) W: no hooks of type B found -- ignoring I: Copying back the cached apt archive contents I: new cache content debhelper_7.4.11_all.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/debhelper_7.4.11_all.deb' => `/TESTDIR/dir3/NUM/var/cache/apt/archives/debhelper_7.4.11_all.deb': Invalid cross-device link I: new cache content sp_1.3.4-1.2.1-47_amd64.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/sp_1.3.4-1.2.1-47_amd64.deb' => `/TESTDIR/dir3/NUM/var/cache/apt/archives/sp_1.3.4-1.2.1-47_amd64.deb': Invalid cross-device link I: new cache content po4a_0.37.1-1_all.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/po4a_0.37.1-1_all.deb' => `/TESTDIR/dir3/NUM/var/cache/apt/archives/po4a_0.37.1-1_all.deb': Invalid cross-device link I: new cache content debootstrap_1.0.20_all.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/debootstrap_1.0.20_all.deb' => `/TESTDIR/dir3/NUM/var/cache/apt/archives/debootstrap_1.0.20_all.deb': Invalid cross-device link I: new cache content libglib2.0-0_2.22.3-2_amd64.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/libglib2.0-0_2.22.3-2_amd64.deb' => `/TESTDIR/dir3/NUM/var/cache/apt/archives/libglib2.0-0_2.22.3-2_amd64.deb': Invalid cross-device link I: new cache content libdshconfig1_0.20.13-1_amd64.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/libdshconfig1_0.20.13-1_amd64.deb' => `/TESTDIR/dir3/NUM/var/cache/apt/archives/libdshconfig1_0.20.13-1_amd64.deb': Invalid cross-device link I: new cache content libmagic1_5.03-5_amd64.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/libmagic1_5.03-5_amd64.deb' => `/TESTDIR/dir3/NUM/var/cache/apt/archives/libmagic1_5.03-5_amd64.deb': Invalid cross-device link I: new cache content libsp1c2_1.3.4-1.2.1-47_amd64.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/libsp1c2_1.3.4-1.2.1-47_amd64.deb' => `/TESTDIR/dir3/NUM/var/cache/apt/archives/libsp1c2_1.3.4-1.2.1-47_amd64.deb': Invalid cross-device link I: new cache content libsgmls-perl_1.03ii-32_all.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/libsgmls-perl_1.03ii-32_all.deb' => `/TESTDIR/dir3/NUM/var/cache/apt/archives/libsgmls-perl_1.03ii-32_all.deb': Invalid cross-device link I: new cache content libdshconfig1-dev_0.20.13-1_amd64.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/libdshconfig1-dev_0.20.13-1_amd64.deb' => `/TESTDIR/dir3/NUM/var/cache/apt/archives/libdshconfig1-dev_0.20.13-1_amd64.deb': Invalid cross-device link I: new cache content file_5.03-5_amd64.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/file_5.03-5_amd64.deb' => `/TESTDIR/dir3/NUM/var/cache/apt/archives/file_5.03-5_amd64.deb': Invalid cross-device link I: new cache content pbuilder_0.195_all.deb added ln: creating hard link `/var/cache/pbuilder/aptcache/pbuilder_0.195_all.deb' => `/TESTDIR/dir3/NUM/var/cache/apt/archives/pbuilder_0.195_all.deb': Invalid cross-device link I: unmounting /TESTDIR/dir2 filesystem I: unmounting dev/pts filesystem I: unmounting proc filesystem I: cleaning the build env I: removing directory /TESTDIR/dir3/NUM and its subdirectories pbuilder-0.215ubuntu7/testsuite/normal/pbuilder-update-lenny-sid-experimental.log0000664000000000000000000001263112312041170025250 0ustar Upgrading for distribution sid Building the build Environment -> extracting base tarball [/TESTDIR/testimage] -> creating local configuration -> copying local configuration -> Installing apt-lines -> Installing apt-lines and pinning for experimental -> mounting /proc filesystem -> mounting /dev/pts filesystem -> policy-rc.d already exists Refreshing the base.tgz -> upgrading packages Hit http://localhost sid Release.gpg Get:1 http://localhost experimental Release.gpg [189B] Hit http://localhost sid Release Get:2 http://localhost experimental Release [85.6kB] Ign http://localhost sid/main Packages/DiffIndex Ign http://localhost experimental/main Packages Ign http://localhost sid/main Packages Get:3 http://localhost experimental/main Packages [521kB] Hit http://localhost sid/main Packages Fetched XXXB in Xs (XXXXXB/s) Reading package lists... Obtaining the cached apt archive contents Reading package lists... Building dependency tree... Reading state information... The following packages will be upgraded: apt binutils bsdutils cpio diff libc6 libc6-dev libgmp3c2 libsigc++-2.0-0c2a makedev mktemp mount util-linux debconf: delaying package configuration, since apt-utils is not installed 13 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. Need to get 0B/14.0MB of archives. After this operation, 3142kB of additional disk space will be used. (Reading database ... 9647 files and directories currently installed.) Preparing to replace diff 2.8.1-12 (using .../diff_2.8.7-0.2_i386.deb) ... Unpacking replacement diff ... Setting up diff (2.8.7-0.2) ... (Reading database ... 9655 files and directories currently installed.) Preparing to replace mktemp 1.5-9 (using .../mktemp_1.6-0exp1_i386.deb) ... Unpacking replacement mktemp ... Setting up mktemp (1.6-0exp1) ... (Reading database ... 9655 files and directories currently installed.) Preparing to replace mount 2.13.1.1-1 (using .../mount_2.14~rc2-0_i386.deb) ... Unpacking replacement mount ... Setting up mount (2.14~rc2-0) ... (Reading database ... 9655 files and directories currently installed.) Preparing to replace util-linux 2.13.1.1-1 (using .../util-linux_2.14~rc2-0_i386.deb) ... Unpacking replacement util-linux ... Setting up util-linux (2.14~rc2-0) ... (Reading database ... 9657 files and directories currently installed.) Preparing to replace libc6-dev 2.7-13 (using .../libc6-dev_2.8+20080809-1_i386.deb) ... Unpacking replacement libc6-dev ... Preparing to replace libc6 2.7-13 (using .../libc6_2.8+20080809-1_i386.deb) ... Unpacking replacement libc6 ... Setting up libc6 (2.8+20080809-1) ... Installing new version of config file /etc/gai.conf ... (Reading database ... 9666 files and directories currently installed.) Preparing to replace bsdutils 1:2.13.1.1-1 (using .../bsdutils_1%3a2.14~rc2-0_i386.deb) ... Unpacking replacement bsdutils ... Setting up bsdutils (1:2.14~rc2-0) ... (Reading database ... 9666 files and directories currently installed.) Preparing to replace apt 0.7.14+b1 (using .../apt_0.7.15~exp3_i386.deb) ... Unpacking replacement apt ... Setting up apt (0.7.15~exp3) ... Installing new version of config file /etc/cron.daily/apt ... gpg: key 6070D3A1: "Debian Archive Automatic Signing Key (4.0/etch) " not changed gpg: key ADB11277: "Etch Stable Release Key " not changed gpg: key BBE55AB3: "Debian-Volatile Archive Automatic Signing Key (4.0/etch)" not changed gpg: key F42584E6: "Lenny Stable Release Key " not changed gpg: Total number processed: 4 gpg: unchanged: 4 (Reading database ... 9667 files and directories currently installed.) Preparing to replace cpio 2.9-14 (using .../cpio_2.9.90-1_i386.deb) ... Unpacking replacement cpio ... Preparing to replace libsigc++-2.0-0c2a 2.0.18-2 (using .../libsigc++-2.0-0c2a_2.2.2-1_i386.deb) ... Unpacking replacement libsigc++-2.0-0c2a ... Preparing to replace makedev 2.3.1-88 (using .../makedev_3.3.8.2-0_i386.deb) ... Unpacking replacement makedev ... Preparing to replace binutils 2.18.1~cvs20080103-7 (using .../binutils_2.18.90.20080910-1_i386.deb) ... Unpacking replacement binutils ... Preparing to replace libgmp3c2 2:4.2.2+dfsg-3 (using .../libgmp3c2_2%3a4.2.4+dfsg-1_i386.deb) ... Unpacking replacement libgmp3c2 ... Setting up libc6-dev (2.8+20080809-1) ... Setting up cpio (2.9.90-1) ... Setting up libsigc++-2.0-0c2a (2.2.2-1) ... Setting up makedev (3.3.8.2-0) ... Setting up binutils (2.18.90.20080910-1) ... Setting up libgmp3c2 (2:4.2.4+dfsg-1) ... Reading package lists... Building dependency tree... Reading state information... build-essential is already the newest version. dpkg-dev is already the newest version. apt is already the newest version. aptitude is already the newest version. 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded. Copying back the cached apt archive contents umount: /sys: not mounted umount: /run: not found umount: /proc/bus/usb: not mounted umount: /dev/shm: not mounted umount: /lib/init/rw: not mounted cat: /var/run/inetd.pid: No such file or directory kill: usage: kill [-s sigspec | -n signum | -sigspec] pid | jobspec ... or kill -l [sigspec] -> user script /var/cache/pbuilder/build//NUM/tmp/hooks/E50-initscripts-2.86.ds1-7.workaround.sh finished -> unmounting dev/pts filesystem -> unmounting proc filesystem -> creating base tarball [/TESTDIR/testimage] -> cleaning the build env -> removing directory /var/cache/pbuilder/build//NUM and its subdirectories pbuilder-0.215ubuntu7/testsuite/run-test.log0000664000000000000000000000045112312041170016055 0ustar [OK] create-sid-debootstrap [OK] build-sid-dsh [OK] pdebuild-sid-dsh [OK] pdebuild-internal-sid-dsh [OK] create-squeeze-debootstrap [OK] build-squeeze-dsh [OK] pdebuild-squeeze-dsh [OK] pdebuild-internal-squeeze-dsh [OK] update-squeeze-sid [FAIL] update-squeeze-sid-experimental pbuilder-0.215ubuntu7/testsuite/run-test-uml.log0000664000000000000000000000000012312041170016636 0ustar pbuilder-0.215ubuntu7/testsuite/test-pdebuild.sh0000664000000000000000000000022512312041170016671 0ustar # try this ? pdebuild --configfile ~/.pbuilderrc --buildsourceroot fakeroot --pbuilderroot sudo --buildresult /var/tmp/test-results --auto-debsign $*pbuilder-0.215ubuntu7/testsuite/run-regression.sh0000775000000000000000000000114012312041170017106 0ustar #!/bin/bash # requires /var/cache/pbuilder/base-sarge.tgz log_success () { CODE=$? if [ $CODE = 0 ]; then echo "[OK] $1" >> ${RESULTFILE} else echo "[FAIL] $1" >> ${RESULTFILE} fi } RESULTFILE="run-regression.log" : > ${RESULTFILE} RESULTFILE=$(readlink -f ${RESULTFILE}) # prepare files. ( mkdir regression/work && \ cd regression/work && \ apt-get source dsh ) ( cd regression && \ for A in $(ls -1 *.sh | sort -n); do OUTPUT_LOGNAME=log/$A.log bash $A log_success $A done ) sudo rm -rf regression/work/ echo '### RESULT: ###' cat "${RESULTFILE}" pbuilder-0.215ubuntu7/testsuite/rootstrap.conf0000664000000000000000000000540012312041170016474 0ustar # # Global settings, these are passed on to all modules # [global] fstype=ext2 # How large to create the initial image (MB). Be generous, as image # creation will fail if it is too small, and it will be created as a # sparse file, making it relatively inexpensive initialsize=256 # Will be resized to leave this much free space when building is # complete. Leave unset or set to 0 to disable resizing. freespace=0 # Which modules to invoke. Each module can have its own section # below, with module-specific settings modules=network mkfs mount debian uml umount # Global environment variables PATH=/bin:/sbin:/usr/bin:/usr/sbin # Use of a caching proxy is highly recommended where a local mirror is # not available, so that packages are not fetched many times # unnecessarily. I use squid. #http_proxy=http://192.168.10.1:3128 # # Networking # # required unless you have a local copy of all packages to be installed # these settings are only used during installation [network] # For proxy ARP, use host= and # uml= # For a routing configuration, or if the installation process does not # need to reach anywhere except the host, use a separate RFC1918 # subnet for the virtual network between the host and UML. host=192.168.30.198 uml=192.168.30.199 netmask=255.255.255.0 # Gateway address (optional) # Note: you must have IP forwarding set up, or use proxy ARP, in order # to reach external hosts. See the User-Mode Linux documentation. gateway=192.168.30.1 # The network interface to be used inside UML (unrelated to the host's # network interfaces). Leave it as eth0 unless you know better. interface=eth0 # The UML network interface transport type, usually tuntap. See the # UML documentation if not. transport=tuntap #transport=slirp # DNS configuration # optional if you are fetching packages through a proxy #interface=eth0 #transport=slirp #host= #uml=10.0.2.15 #nameserver=10.0.2.3 #gateway=10.0.2.2 #netmask=255.255.0.0 #slirp=slirp-fullbolt #domain=example.com #nameserver=192.168.10.1 # # Debian module # [debian] dist=sid # A local mirror is best, a caching proxy (such as squid) is almost as # good mirror=http://192.168.30.62:8081/archives/linux/debian/debian #mirror=http://202.23.147.34/debian # Packages which should not be installed in the first place (be sure # you know what you're doing) exclude=pcmcia-cs setserial dhcp-client # Packages which should be purged after the initial install purge=base-config console-common console-tools console-data console-tools-libs # Extra packages to install via debootstrap #include=myfavoritepackage someotherpackage # Extra packages to install via apt after initial debootstrap install #install=myfavoritepackage someotherpackage [uml] install_modules=yes pbuilder-0.215ubuntu7/testsuite/run-test.sh0000775000000000000000000001133412312041170015713 0ustar #!/bin/sh # This is a testsuite. # estimated run-time on my PC; 1 hour PBUILDER=/usr/sbin/pbuilder # ideal value DEBOOTSTRAPS="debootstrap cdebootstrap" DISTRIBUTIONS="sid lenny squeeze" # override DEBOOTSTRAPS="debootstrap" DISTRIBUTIONS="sid squeeze" log_success () { CODE=$? if [ $CODE = 0 ]; then echo "[OK] $1" >> ${RESULTFILE} else echo "[FAIL] $1" >> ${RESULTFILE} fi } [ -x ${PBUILDER} ] || exit 1 [ -x /usr/sbin/debootstrap ] || exit 1 [ -x /usr/bin/cdebootstrap ] || exit 1 case "`hostname --fqdn`" in *.dooz.org) mirror=http://ftp.de.debian.org/debian ;; *) mirror=http://localhost:9999/debian ;; esac testdir=$(TMPDIR=$(pwd) mktemp -d) testimage=$testdir/testimage testbuild=$testdir/dir1 testbuild2=$testdir/dir2 testbuild3=$testdir/dir3 export testdir HOOKOPTION=" --hookdir /usr/share/doc/pbuilder/examples/workaround" for DEBOOTSTRAP in $DEBOOTSTRAPS; do case $DEBOOTSTRAP in debootstrap) logdir=$(readlink -f normal/) RESULTFILE="run-test.log" unset DEBOOTSTRAPOPTS DEBOOTSTRAPOPTS[0]="--debootstrapopts" DEBOOTSTRAPOPTS[1]="--verbose" ;; *) logdir=$(readlink -f $DEBOOTSTRAP) RESULTFILE="run-test-${DEBOOTSTRAP}.log" unset DEBOOTSTRAPOPTS DEBOOTSTRAPOPTS[0]="--debootstrapopts" DEBOOTSTRAPOPTS[1]="--verbose" ;; esac : > ${RESULTFILE} RESULTFILE=$(readlink -f ${RESULTFILE}) for distribution in ${DISTRIBUTIONS}; do sudo ${PBUILDER} create $HOOKOPTION "${DEBOOTSTRAPOPTS[@]}" --mirror $mirror --debootstrap ${DEBOOTSTRAP} --distribution "${distribution}" --basetgz ${testimage} --logfile ${logdir}/pbuilder-create-${distribution}.log.orig log_success create-${distribution}-${DEBOOTSTRAP} for PKG in dsh; do ( mkdir ${testbuild} cd ${testbuild} apt-get source -d ${PKG} ) sudo ${PBUILDER} build --debemail "Junichi Uekawa " --basetgz ${testimage} --buildplace ${testbuild}/ --logfile ${logdir}/pbuilder-build-${PKG}-${distribution}.log.orig ${testbuild}/${PKG}*.dsc log_success build-${distribution}-${PKG} ( mkdir ${testbuild2} mkdir ${testbuild3} cd ${testbuild2} apt-get source ${PKG} cd ${PKG}-* pdebuild --logfile ${logdir}/pdebuild-normal-${distribution}.log.orig -- --basetgz ${testimage} --buildplace ${testbuild3} log_success pdebuild-${distribution}-${PKG} pdebuild --use-pdebuild-internal --logfile ${logdir}/pdebuild-internal-${distribution}.log.orig -- --basetgz ${testimage} --buildplace ${testbuild3} log_success pdebuild-internal-${distribution}-${PKG} ) done sudo ${PBUILDER} execute --basetgz ${testimage} --logfile ${logdir}/pbuilder-execute-${distribution}.log.orig ../examples/execute_paramtest.sh test1 test2 test3 # upgrading testing. case $distribution in lenny) sudo ${PBUILDER} update $HOOKOPTION --basetgz ${testimage} --distribution squeeze --mirror $mirror --override-config --logfile ${logdir}/pbuilder-update-${distribution}-squeeze.log.orig log_success update-${distribution}-squeeze sudo ${PBUILDER} update $HOOKOPTION --basetgz ${testimage} --distribution sid --mirror $mirror --override-config --logfile ${logdir}/pbuilder-update-${distribution}-squeeze-sid.log.orig log_success update-${distribution}-squeeze-sid sudo ${PBUILDER} update $HOOKOPTION --basetgz ${testimage} --distribution experimental --mirror $mirror --override-config --logfile ${logdir}/pbuilder-update-${distribution}-squeeze-sid-experimental.log.orig log_success update-${distribution}-squeeze-sid-experimental ;; squeeze) sudo ${PBUILDER} update $HOOKOPTION --basetgz ${testimage} --distribution sid --mirror $mirror --override-config --logfile ${logdir}/pbuilder-update-${distribution}-sid.log.orig log_success update-${distribution}-sid sudo ${PBUILDER} update $HOOKOPTION --basetgz ${testimage} --distribution experimental --mirror $mirror --override-config --logfile ${logdir}/pbuilder-update-${distribution}-sid-experimental.log.orig log_success update-${distribution}-sid-experimental ;; esac sudo rm -rf ${testbuild} ${testbuild2} ${testimage} ${testbuild3} done for A in ${logdir}/*.log.orig; do sed \ -e "s,${testdir},/TESTDIR,g" \ -e "s,^Current time:.*,Current time: TIME," \ -e "s,^pbuilder-time-stamp: .*,pbuilder-time-stamp: XXXX," \ -e "s,^Fetched .*B in .*s (.*B/s),Fetched XXXB in Xs (XXXXXB/s)," \ -e "s,/var/cache/pbuilder/build//[0-9]*,/var/cache/pbuilder/build//NUM,g" \ -e "s,\(/TESTDIR/dir[123]\)/[0-9]\+,\1/NUM,g" \ -e "s,Local time is now:.*,Local time is now: XXXX," \ -e "s,Universal Time is now:.*,Universal Time is now: XXXX," \ < $A > ${A/.orig} && \ rm -f $A done echo '### RESULT: ###' cat "${RESULTFILE}" done rm -r ${testdir} pbuilder-0.215ubuntu7/testsuite/run-regression.log0000664000000000000000000000010212312041170017247 0ustar [OK] 287477-pkgname-logfile.sh [OK] 342665-pbuilder-ccache.sh pbuilder-0.215ubuntu7/pbuilder-satisfydepends-experimental0000775000000000000000000001573412312041170021024 0ustar #!/bin/bash # pbuilder -- personal Debian package builder # Copyright (C) 2001,2002,2003,2005-2007 Junichi Uekawa # Copyright (C) 2006,2007 Loïc Minier # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA # # module to satisfy build dependencies; experimental flavor # can test this with: # testsuite/random-manual-test-material/build-depends-on-experimental: # sudo pbuilder --build --configfile config bde_0.1.dsc set -e . /usr/lib/pbuilder/pbuilder-satisfydepends-funcs # Use this function to fulfill the dependency (almost) function checkbuilddep_internal () { local ARCH=$($CHROOTEXEC dpkg-architecture -qDEB_HOST_ARCH) local INSTALLPKG local INSTALLPKGLIST local INSTALLPKGMULTI local CURRENTREALPKGNAME local SATISFIED local PACKAGEVERSIONS local CANDIDATE_VERSION local APTFLAG="-o APT::Install-Recommends=false" echo " -> Attempting to parse the build-deps" for INSTALLPKGMULTI in $(get_build_deps | tr " " "/" | \ awk 'BEGIN{RS=","} {print}'); do echo " -> Considering build-dep$(echo "$INSTALLPKGMULTI" | tr "/" " " )" SATISFIED="no" for INSTALLPKG in $(echo "$INSTALLPKGMULTI" | \ awk 'BEGIN{RS="|"} {print}'); do CURRENTREALPKGNAME=$(echo "$INSTALLPKG" | sed -e 's#^/*##' -e 's#[[/(].*##') if echo "$INSTALLPKG" | grep -q '\['; then if checkbuilddep_archdeps "$INSTALLPKG" "$ARCH"; then SATISFIED="yes" echo " -> This package is not for this architecture" continue fi fi CURRENT_APT_COMMAND="$(versioneddep_to_aptcmd "$INSTALLPKG")" while [ "$SATISFIED" = "no" ]; do echo " -> Trying to add $CURRENT_APT_COMMAND" if APT_OUTPUT="$( exec 2>&1; LC_ALL=C $CHROOTEXEC /usr/bin/apt-get -s install $APTFLAG $INSTALLPKGLIST $CURRENT_APT_COMMAND )"; then # success, we're done SATISFIED="yes" INSTALLPKGLIST="$INSTALLPKGLIST $CURRENT_APT_COMMAND" break fi # try to parse APT's output to recognize lines such as: # libfoo-dev: Depends: bar (>= xyz) but www is to be installed DEP_INSTALLPKG="$(echo "$APT_OUTPUT" | \ sed -n \ -e "s/^ *.*: *Depends: *\(.*\) but.*is to be installed\$/\\1/p" \ -e "s/^ *.*: *Depends: *\(.*\) but it is not going to be installed\$/\\1/p" \ -e "s/^ *.*: *Depends: *\(.*\)\$/\\1/p" | \ head -1 | \ tr " " "/")" APT_ADD_COMMAND="$(versioneddep_to_aptcmd "$DEP_INSTALLPKG")" if echo "$CURRENT_APT_COMMAND" | grep -q "$APT_ADD_COMMAND"; then # loop detected, give up with real packages echo " -> Loop detected, last APT error was: ======" echo "$APT_OUTPUT" echo " -> =========================================" echo " -> (not adding $APT_ADD_COMMAND to $CURRENT_APT_COMMAND)" break fi CURRENT_APT_COMMAND="$CURRENT_APT_COMMAND $APT_ADD_COMMAND" done if [ "$SATISFIED" = "yes" ]; then break; fi echo " -> Cannot install $CURRENT_APT_COMMAND; apt errors follow:" if $CHROOTEXEC /usr/bin/apt-get -s install $APTFLAG $INSTALLPKGLIST "$CURRENT_APT_COMMAND"; then : fi # package could not be found. -- looking for alternative. PROVIDED="" checkbuilddep_provides "$CURRENTREALPKGNAME" if [ -n "$PROVIDED" ]; then # something provides this package echo " -> Considering $PROVIDED to satisfy the dependency " if $CHROOTEXEC /usr/bin/apt-get -s install $APTFLAG $INSTALLPKGLIST $PROVIDED >& /dev/null; then SATISFIED="yes"; INSTALLPKGLIST="$INSTALLPKGLIST $PROVIDED" else # show the error for diagnostic purposes echo " -> Cannot install $PROVIDED; apt errors follow:" if $CHROOTEXEC /usr/bin/apt-get -s install $APTFLAG $INSTALLPKGLIST $PROVIDED; then : fi fi fi if [ "$SATISFIED" = "yes" ]; then break; fi done; if [ "$SATISFIED" = "no" ]; then echo "E: Could not satisfy build-dependency." >&2 if [ "$CONTINUE_FAIL" != "yes" ]; then exit 2 fi fi done; # now actually install the packages echo " -> Installing $INSTALLPKGLIST" if ! $CHROOTEXEC apt-get -y "${APTGETOPT[@]}" $APTFLAG install $INSTALLPKGLIST; then echo " -> Trying to fix apt error" # Work around an apt bug which causes configure to fail. if $CHROOTEXEC dpkg --configure --pending && $CHROOTEXEC apt-get -y "${APTGETOPT[@]}" $APTFLAG install $INSTALLPKGLIST; then echo " -> Apt bug workaround succeeded" elif [ "$CONTINUE_FAIL" != "yes" ]; then echo "E: Unrecoverable error installing build-dependencies." >&2 exit 1 fi fi # start processing build-conflicts. for INSTALLPKG in $(get_build_conflicts | tr " " "/" | \ awk 'BEGIN{RS=","} {print}'); do CURRENTREALPKGNAME=$(echo "$INSTALLPKG" | sed -e 's#^/*##' -e 's#[[/(].*##') echo " -> Considering $CURRENTREALPKGNAME" if echo "$INSTALLPKG" | grep -q '\['; then # this package has arch-conflicts. if checkbuilddep_archdeps "$INSTALLPKG" "$ARCH"; then echo "I: Ignoring other-arch" continue fi fi if echo "$INSTALLPKG" | grep -q '('; then # this package has version-conflicts if ! checkbuilddep_versiondeps $CURRENTREALPKGNAME \ $(echo "$INSTALLPKG" | tr "/" " " | sed 's/^.*( *\(<<\|<=\|>=\|=\|<\|>>\|>\) *\(.*\)).*$/\1/') \ $(echo "$INSTALLPKG" | tr "/" " " | sed 's/^.*( *\(<<\|<=\|>=\|=\|<\|>>\|>\) *\(.*\)).*$/\2/'); then echo "I: Satisfies version, not trying" continue fi fi # if package exists, remove it. if $CHROOTEXEC /usr/bin/dpkg -s $(echo "$INSTALLPKG" | tr "/" " " | awk '{print $1}') 2>&1 | grep -q ^Package:; then if ! $CHROOTEXEC /usr/bin/apt-get -y remove $CURRENTREALPKGNAME ; then echo "E: Could not satisfy build-conflicts" >&2 exit 1 fi else echo "I: $CURRENTREALPKGNAME package is not installed, no need to remove" fi done echo " -> Finished parsing the build-deps" } function print_help () { # print out help message cat < --help: give help --control: specify control file (debian/control, *.dsc) --chroot: operate inside chroot --binary-all: include binary-all --binary-arch: include binary-arch only --echo: echo mode, do nothing. (--force-version required for most operation) --force-version: skip version check. --continue-fail: continue even when failed. EOF } . /usr/lib/pbuilder/pbuilder-satisfydepends-checkparams