# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo/src/catalyst/ChangeLog,v 1.237 2005/04/22 18:33:06 rocket Exp $
+# $Header: /var/cvsroot/gentoo/src/catalyst/ChangeLog,v 1.238 2005/04/26 14:58:04 rocket Exp $
+
+ 26 Apr 2005; Eric Edgar <rocket@gentoo.org> modules/catalyst_support.py,
+ modules/generic_stage_target.py:
+ fix minor bug in the purge code so that it actually runs the commands
22 Apr 2005; Eric Edgar <rocket@gentoo.org> modules/embedded_target.py,
modules/generic_stage_target.py, modules/livecd_stage2_target.py,
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo/src/catalyst/modules/catalyst_support.py,v 1.42 2005/04/21 18:18:46 rocket Exp $
+# $Header: /var/cvsroot/gentoo/src/catalyst/modules/catalyst_support.py,v 1.43 2005/04/26 14:58:04 rocket Exp $
import sys,string,os,types,re,signal,traceback,md5,time
# a function to turn a string of non-printable characters into a string of
continue
else:
myline=mylines[pos].split()
-
+
if (len(myline)==0) or (myline[0][-1] != ":"):
msg("Skipping invalid spec line "+repr(pos+1))
#strip colon:
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo/src/catalyst/modules/generic_stage_target.py,v 1.38 2005/04/22 18:33:06 rocket Exp $
+# $Header: /var/cvsroot/gentoo/src/catalyst/modules/generic_stage_target.py,v 1.39 2005/04/26 14:58:04 rocket Exp $
"""
This class does all of the chroot setup, copying of files, etc. It is
countdown(10,"Purging Caches ...")
if self.settings.has_key("PURGE"):
print "clearing autoresume ..."
- self.clear_autoresume
+ self.clear_autoresume()
print "clearing chroot ..."
- self.clear_chroot
+ self.clear_chroot()
print "clearing package cache ..."
- self.clear_packages
+ self.clear_packages()