# ChangeLog for gentoo/src/catalyst
# Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo/src/catalyst/ChangeLog,v 1.69 2004/07/12 14:25:16 zhen Exp $
+# $Header: /var/cvsroot/gentoo/src/catalyst/ChangeLog,v 1.70 2004/07/12 15:01:17 zhen Exp $
+
+ 12 Jul 2004; John Davis <zhen@gentoo.org> catalyst,
+ targets/embedded/embedded-chroot.sh, targets/grp/grp-chroot.sh,
+ targets/livecd-stage1/livecd-stage1-chroot.sh,
+ targets/stage1/stage1-chroot.sh, targets/stage3/stage3-chroot.sh,
+ targets/tinderbox/tinderbox-chroot.sh:
+ changing the more verbose behavior to the -V (verbose) flag
12 Jul 2004; <zhen@gentoo.org> catalyst,
targets/embedded/embedded-chroot.sh, targets/grp/grp-chroot.sh,
#!/usr/bin/python
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo/src/catalyst/catalyst,v 1.43 2004/07/12 14:25:16 zhen Exp $
+# $Header: /var/cvsroot/gentoo/src/catalyst/catalyst,v 1.44 2004/07/12 15:01:17 zhen Exp $
# Maintained in full by John Davis <zhen@gentoo.org>
sys.exit(2)
if o in ("-d", "--debug"):
- conf_values["DEBUG"]=1
+ conf_values["DEBUG"]="1"
if o in ("-c", "--config"):
myconfig=a
myspecfile=a
if o in ("-V", "--verbose"):
- conf_values["VERBOSE"]=1
+ conf_values["VERBOSE"]="1"
# import configuration file and import our main module using those settings
parse_config(myconfig)
#!/bin/bash
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo/src/catalyst/targets/embedded/embedded-chroot.sh,v 1.5 2004/07/12 14:25:16 zhen Exp $
+# $Header: /var/cvsroot/gentoo/src/catalyst/targets/embedded/embedded-chroot.sh,v 1.6 2004/07/12 15:01:17 zhen Exp $
/usr/sbin/env-update
source /etc/profile
fi
## START BUILD
-if [ "${clst_DEBUG}" ]
+if [ "${clst_VERBOSE}" ]
then
ROOT=/tmp/mergeroot emerge ${clst_myemergeopts} -vp ${clst_embedded_packages} || exit 1
+ sleep 15
fi
ROOT=/tmp/mergeroot emerge ${clst_myemergeopts} ${clst_embedded_packages} || exit 1
#!/bin/bash
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo/src/catalyst/targets/grp/grp-chroot.sh,v 1.4 2004/07/12 14:25:16 zhen Exp $
+# $Header: /var/cvsroot/gentoo/src/catalyst/targets/grp/grp-chroot.sh,v 1.5 2004/07/12 15:01:17 zhen Exp $
/usr/sbin/env-update
source /etc/profile
unset DISTDIR
export PKGDIR="/tmp/grp/${clst_grp_target}"
- if [ -n "${clst_DEBUG}" ]
+ if [ -n "${clst_VERBOSE}" ]
then
emerge --usepkg --buildpkg --noreplace -vp ${clst_grp_packages} || exit 1
+ sleep 15
fi
emerge --usepkg --buildpkg --noreplace ${clst_grp_packages} || exit 1
#!/bin/bash
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo/src/catalyst/targets/livecd-stage1/livecd-stage1-chroot.sh,v 1.4 2004/07/12 14:25:16 zhen Exp $
+# $Header: /var/cvsroot/gentoo/src/catalyst/targets/livecd-stage1/livecd-stage1-chroot.sh,v 1.5 2004/07/12 15:01:17 zhen Exp $
/usr/sbin/env-update
source /etc/profile
#turn off auto-use:
export USE_ORDER="env:conf:defaults"
-if [ "${clst_DEBUG}" ]
+if [ "${clst_VERBOSE}" ]
then
emerge ${clst_emergeopts} -vp ${clst_packages}
+ sleep 15
fi
emerge ${clst_emergeopts} ${clst_packages}
#!/bin/bash
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo/src/catalyst/targets/stage1/stage1-chroot.sh,v 1.18 2004/07/12 14:25:16 zhen Exp $
+# $Header: /var/cvsroot/gentoo/src/catalyst/targets/stage1/stage1-chroot.sh,v 1.19 2004/07/12 15:01:17 zhen Exp $
/usr/sbin/env-update
source /etc/profile
export clst_buildpkgs="${clst_buildpkgs} ${x}"
done
-if [ -n "${clst_DEBUG}" ]
+if [ -n "${clst_VERBOSE}" ]
then
USE="-* build" emerge ${clst_myemergeopts} -vp --noreplace ${clst_buildpkgs} || exit 1
+ sleep 15
fi
USE="-* build" emerge ${clst_myemergeopts} --noreplace ${clst_buildpkgs} || exit 1
#!/bin/bash
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo/src/catalyst/targets/stage3/stage3-chroot.sh,v 1.6 2004/07/12 14:25:16 zhen Exp $
+# $Header: /var/cvsroot/gentoo/src/catalyst/targets/stage3/stage3-chroot.sh,v 1.7 2004/07/12 15:01:17 zhen Exp $
/usr/sbin/env-update
source /etc/profile
# make.conf. emerge system could merge it otherwise.
USE="build" emerge portage
-if [ -n "${clst_DEBUG}" ]
+if [ -n "${clst_VERBOSE}" ]
then
emerge ${clst_myemergeopts} -vp system || exit 1
+ sleep 15
fi
emerge ${clst_myemergeopts} system || exit 1
#!/bin/bash
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo/src/catalyst/targets/tinderbox/tinderbox-chroot.sh,v 1.4 2004/07/12 14:25:16 zhen Exp $
+# $Header: /var/cvsroot/gentoo/src/catalyst/targets/tinderbox/tinderbox-chroot.sh,v 1.5 2004/07/12 15:01:17 zhen Exp $
/usr/sbin/env-update
source /etc/profile
for x in ${clst_tinderbox_packages}
do
- if [ -n "${clst_DEBUG}" ]
+ if [ -n "${clst_VERBOSE}" ]
then
emerge --usepkg --buildpkg -vp $x
+ sleep 5
fi
emerge --usepkg --buildpkg $x