From ba30381ef129ae52e17f89a0537b09c48e4905c3 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Fri, 23 Jun 2006 04:35:27 +0000 Subject: Prevent an inappropriate warning when a repoman user's profile does not support sandbox. Thanks to exg for reporting. svn path=/main/trunk/; revision=3614 --- pym/portage.py | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/pym/portage.py b/pym/portage.py index d0cbf70de..8b1c0871c 100644 --- a/pym/portage.py +++ b/pym/portage.py @@ -1281,8 +1281,15 @@ class config: noiselevel=-1) self.features.remove("gpg") - if not portage_exec.sandbox_capable and ("sandbox" in self.features or "usersandbox" in self.features): - writemsg(red("!!! Problem with sandbox binary. Disabling...\n\n"), + if not portage_exec.sandbox_capable and \ + ("sandbox" in self.features or "usersandbox" in self.features): + if os.environ.get("PORTAGE_CALLER","") == "repoman" and \ + self.profile_path is not None and \ + os.path.realpath(self.profile_path) != \ + os.path.realpath(PROFILE_PATH): + pass # This profile does not belong to the user running repoman. + else: + writemsg(red("!!! Problem with sandbox binary. Disabling...\n\n"), noiselevel=-1) if "sandbox" in self.features: self.features.remove("sandbox") -- cgit v1.2.3-1-g7c22