From: Zac Medico Date: Thu, 3 Feb 2011 04:30:37 +0000 (-0800) Subject: depgraph: remove obsolete gpg exception handlers X-Git-Tag: v2.1.9.36~23 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=0ff0093da83b5be06b8c810efac8633499f23ceb;p=portage.git depgraph: remove obsolete gpg exception handlers --- diff --git a/pym/_emerge/depgraph.py b/pym/_emerge/depgraph.py index de6ffccb7..1a22c1bc6 100644 --- a/pym/_emerge/depgraph.py +++ b/pym/_emerge/depgraph.py @@ -1967,20 +1967,6 @@ class depgraph(object): (atom,), noiselevel=-1) return 0, myfavorites - except portage.exception.MissingSignature as e: - portage.writemsg("\n\n!!! A missing gpg signature is preventing portage from calculating the\n") - portage.writemsg("!!! required dependencies. This is a security feature enabled by the admin\n") - portage.writemsg("!!! to aid in the detection of malicious intent.\n\n") - portage.writemsg("!!! THIS IS A POSSIBLE INDICATION OF TAMPERED FILES -- CHECK CAREFULLY.\n") - portage.writemsg("!!! Affected file: %s\n" % (e), noiselevel=-1) - return 0, myfavorites - except portage.exception.InvalidSignature as e: - portage.writemsg("\n\n!!! An invalid gpg signature is preventing portage from calculating the\n") - portage.writemsg("!!! required dependencies. This is a security feature enabled by the admin\n") - portage.writemsg("!!! to aid in the detection of malicious intent.\n\n") - portage.writemsg("!!! THIS IS A POSSIBLE INDICATION OF TAMPERED FILES -- CHECK CAREFULLY.\n") - portage.writemsg("!!! Affected file: %s\n" % (e), noiselevel=-1) - return 0, myfavorites except SystemExit as e: raise # Needed else can't exit except Exception as e: