depgraph: remove obsolete gpg exception handlers
authorZac Medico <zmedico@gentoo.org>
Thu, 3 Feb 2011 04:30:37 +0000 (20:30 -0800)
committerZac Medico <zmedico@gentoo.org>
Thu, 3 Feb 2011 04:30:37 +0000 (20:30 -0800)
pym/_emerge/depgraph.py

index d0ceb338494058825d9434da290837363dd3c379..27a854b7cc3fba3624dfe264e0385529ff04ec78 100644 (file)
@@ -1952,20 +1952,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: