summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2007-11-27 21:58:30 +0000
committerZac Medico <zmedico@gentoo.org>2007-11-27 21:58:30 +0000
commit109e652902bfc8f4408dfb4ea4239a3c7c26ee0a (patch)
tree2e4950e1282bf83fbbb9cb73bfad57ea660ecde3
parent69f6c88ad23fd89c46593d8369f1127b56a782f0 (diff)
downloadportage-109e652902bfc8f4408dfb4ea4239a3c7c26ee0a.tar.gz
portage-109e652902bfc8f4408dfb4ea4239a3c7c26ee0a.tar.bz2
portage-109e652902bfc8f4408dfb4ea4239a3c7c26ee0a.zip
portage upgrade or downgrade invalidates EBUILD_EXIT_STATUS_FILE
sanity checks since ebuild.sh portage version may differ from the current instance that is running in python. (trunk r8714) svn path=/main/branches/2.1.2/; revision=8715
-rw-r--r--pym/portage.py16
1 files changed, 11 insertions, 5 deletions
diff --git a/pym/portage.py b/pym/portage.py
index dcac711aa..507cc437f 100644
--- a/pym/portage.py
+++ b/pym/portage.py
@@ -3528,8 +3528,7 @@ def spawnebuild(mydo,actionmap,mysettings,debug,alwaysdep=0,logfile=None):
mysettings.get("EBUILD_EXIT_STATUS_FILE"))
phase_retval = spawn(actionmap[mydo]["cmd"] % mydo, mysettings, debug=debug, logfile=logfile, **kwargs)
mysettings["EBUILD_PHASE"] = ""
- msg = _doebuild_exit_status_check(
- mydo, mysettings.get("EBUILD_EXIT_STATUS_FILE"))
+ msg = _doebuild_exit_status_check(mydo, mysettings)
if msg:
phase_retval = 1
from textwrap import wrap
@@ -3927,11 +3926,19 @@ def prepare_build_dirs(myroot, mysettings, cleanup):
mysettings["PORTAGE_LOG_FILE"] = os.path.join(
mysettings["T"], "build.log")
-def _doebuild_exit_status_check(mydo, exit_status_file):
+def _doebuild_exit_status_check(mydo, settings):
"""
Returns an error string if the shell appeared
to exit unsuccessfully, None otherwise.
"""
+ if settings["ROOT"] == "/":
+ cat, pn, ver, rev = catpkgsplit(settings.mycpv)
+ if pn == "portage":
+ # portage upgrade or downgrade invalidates this check
+ # since ebuild.sh portage version may differ from the
+ # current instance that is running in python.
+ return None
+ exit_status_file = settings.get("EBUILD_EXIT_STATUS_FILE")
if not exit_status_file or \
os.path.exists(exit_status_file):
return None
@@ -4103,8 +4110,7 @@ def doebuild(myebuild, mydo, myroot, mysettings, debug=0, listonly=0,
def exit_status_check(retval):
if retval != os.EX_OK:
return retval
- msg = _doebuild_exit_status_check(
- mydo, mysettings.get("EBUILD_EXIT_STATUS_FILE"))
+ msg = _doebuild_exit_status_check(mydo, mysettings)
if msg:
retval = 1
from textwrap import wrap