aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2008-08-08 06:49:34 +0000
committerZac Medico <zmedico@gentoo.org>2008-08-08 06:49:34 +0000
commit536eead0b367f9365d1d1574aff3a37a56b96d47 (patch)
tree9086aa5f81a2f781de19cc392dcf3dc3ae51f988 /pym/portage/const.py
parentShorten the scheduler status display in the xterm title by removing all (diff)
downloadportage-536eead0b367f9365d1d1574aff3a37a56b96d47.tar.gz
portage-536eead0b367f9365d1d1574aff3a37a56b96d47.tar.bz2
portage-536eead0b367f9365d1d1574aff3a37a56b96d47.zip
* Fix the default() implementation so that it maps the ebuild argument to
the correct phase function. * Add --exclude-init-phases option to save_ebuild_env() for filtering out unnecessary functions and variables when creating environment.bz2. * Add support for default() and default_* functions that die in all ebuild phases so that improper use of these functions is quickly discovered. svn path=/main/trunk/; revision=11346
Diffstat (limited to 'pym/portage/const.py')
-rw-r--r--pym/portage/const.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage/const.py b/pym/portage/const.py
index 19d858b11..2958cf3ce 100644
--- a/pym/portage/const.py
+++ b/pym/portage/const.py
@@ -58,7 +58,7 @@ INCREMENTALS = ["USE", "USE_EXPAND", "USE_EXPAND_HIDDEN", "FEATURES",
EBUILD_PHASES = ["setup", "unpack", "configure",
"compile", "test", "install",
"package", "preinst", "postinst","prerm", "postrm",
- "other"]
+ "nofetch", "other"]
EAPI = 1