projects
/
portage.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
589c49c
)
disable FEATURES=gpg as it's unmaintained, useless and likely broken for many people
author
Marius Mauch
<genone@gentoo.org>
Mon, 16 Jul 2007 11:48:07 +0000
(11:48 -0000)
committer
Marius Mauch
<genone@gentoo.org>
Mon, 16 Jul 2007 11:48:07 +0000
(11:48 -0000)
svn path=/main/trunk/; revision=7278
pym/portage/__init__.py
patch
|
blob
|
history
diff --git
a/pym/portage/__init__.py
b/pym/portage/__init__.py
index 822f813beb11b68958543331b2964afcff109f38..9b7553cb38113d3a43cff1f34871d373c9c20369 100644
(file)
--- 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")