From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1Pm4RF-0007Gj-GT for garchives@archives.gentoo.org; Sun, 06 Feb 2011 13:14:01 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6EFE0E0BAB; Sun, 6 Feb 2011 13:10:06 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 3EDC9E0BAB for ; Sun, 6 Feb 2011 13:10:06 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 991031B42F7 for ; Sun, 6 Feb 2011 13:10:05 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 0F34A8006A for ; Sun, 6 Feb 2011 13:10:05 +0000 (UTC) From: "Thomas Sachau" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Sachau" Message-ID: <2f944dceba509832f3cc070e8c74b8a4e3ba3474.tommy@gentoo> Subject: [gentoo-commits] proj/portage:multilib commit in: pym/_emerge/ X-VCS-Repository: proj/portage X-VCS-Files: pym/_emerge/depgraph.py X-VCS-Directories: pym/_emerge/ X-VCS-Committer: tommy X-VCS-Committer-Name: Thomas Sachau X-VCS-Revision: 2f944dceba509832f3cc070e8c74b8a4e3ba3474 Date: Sun, 6 Feb 2011 13:10:05 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: fcbe5cdbf2511e96f5280ab133e87eb3 commit: 2f944dceba509832f3cc070e8c74b8a4e3ba3474 Author: Zac Medico gentoo org> AuthorDate: Thu Feb 3 04:30:37 2011 +0000 Commit: Thomas Sachau gentoo org> CommitDate: Thu Feb 3 04:30:37 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/portage.git;a= =3Dcommit;h=3D2f944dce depgraph: remove obsolete gpg exception handlers --- pym/_emerge/depgraph.py | 14 -------------- 1 files changed, 0 insertions(+), 14 deletions(-) diff --git a/pym/_emerge/depgraph.py b/pym/_emerge/depgraph.py index d0ceb33..27a854b 100644 --- a/pym/_emerge/depgraph.py +++ b/pym/_emerge/depgraph.py @@ -1952,20 +1952,6 @@ class depgraph(object): (atom,), noiselevel=3D-1) return 0, myfavorites =20 - except portage.exception.MissingSignature as e: - portage.writemsg("\n\n!!! A missing gpg signature is preventing por= tage from calculating the\n") - portage.writemsg("!!! required dependencies. This is a security fea= ture 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 FIL= ES -- CHECK CAREFULLY.\n") - portage.writemsg("!!! Affected file: %s\n" % (e), noiselevel=3D-1) - return 0, myfavorites - except portage.exception.InvalidSignature as e: - portage.writemsg("\n\n!!! An invalid gpg signature is preventing po= rtage from calculating the\n") - portage.writemsg("!!! required dependencies. This is a security fea= ture 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 FIL= ES -- CHECK CAREFULLY.\n") - portage.writemsg("!!! Affected file: %s\n" % (e), noiselevel=3D-1) - return 0, myfavorites except SystemExit as e: raise # Needed else can't exit except Exception as e: