From: Marius Mauch Date: Mon, 16 Jul 2007 11:48:07 +0000 (-0000) Subject: disable FEATURES=gpg as it's unmaintained, useless and likely broken for many people X-Git-Tag: v2.2_pre1~1014 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=4c16649d121dca977b3c569f03c5d1b194b635d4;p=portage.git disable FEATURES=gpg as it's unmaintained, useless and likely broken for many people svn path=/main/trunk/; revision=7278 --- diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py index 822f813be..9b7553cb3 100644 --- a/pym/portage/__init__.py +++ b/pym/portage/__init__.py @@ -1478,6 +1478,9 @@ class config(object): self.features.remove("usersandbox") self.features.sort() + if "gpg" in self.features: + writemsg(colorize("WARN", "!!! FEATURES=gpg is unmaintained, incomplete and broken. Disabling it."), noiselevel=-1) + self.features.remove("gpg") self["FEATURES"] = " ".join(self.features) self.backup_changes("FEATURES")