From: Zac Medico Date: Thu, 4 Oct 2007 07:53:37 +0000 (-0000) Subject: Handle UnsupportedAPIException when running the ebuild(1) X-Git-Tag: v2.2_pre1~727 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=1ad045c9b59bc8f0bd51fb74f6b9d9b650f7b6f3;p=portage.git Handle UnsupportedAPIException when running the ebuild(1) command. svn path=/main/trunk/; revision=7918 --- diff --git a/bin/ebuild b/bin/ebuild index 355b349d9..d5e09dd97 100755 --- a/bin/ebuild +++ b/bin/ebuild @@ -158,6 +158,7 @@ def stale_env_warning(): for x in msg: portage.writemsg(">>> %s\n" % x) +from portage.exception import UnsupportedAPIException checked_for_stale_env = False for arg in pargs: @@ -178,6 +179,13 @@ for arg in pargs: except KeyError: # aux_get error a = 1 + except UnsupportedAPIException, e: + from textwrap import wrap + msg = wrap(str(e), 70) + del e + for x in msg: + portage.writemsg("!!! %s\n" % x, noiselevel=-1) + a = 1 if a == None: print "Could not run the required binary?" a = 127