From d755309c28a03302e4906a3375187d3f23154d43 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Tue, 24 May 2011 21:07:31 -0700 Subject: cleanrm: handle UnsupportedAPIException --- pym/portage/dbapi/vartree.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pym/portage/dbapi/vartree.py b/pym/portage/dbapi/vartree.py index 5aec973eb..e29d70e20 100644 --- a/pym/portage/dbapi/vartree.py +++ b/pym/portage/dbapi/vartree.py @@ -1783,8 +1783,11 @@ class dblink(object): # even though it won't really be sourced. myebuildpath = os.path.join(self.dbdir, self.pkg + ".ebuild") - doebuild_environment(myebuildpath, "cleanrm", - settings=self.settings, db=self.vartree.dbapi) + try: + doebuild_environment(myebuildpath, "cleanrm", + settings=self.settings, db=self.vartree.dbapi) + except UnsupportedAPIException: + pass phase = EbuildPhase(background=background, phase="cleanrm", scheduler=scheduler, settings=self.settings) -- cgit v1.2.3-1-g7c22