Gentoo Archives: gentoo-commits

From: "Zac Medico (zmedico)" <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] portage r10226 - main/branches/2.1.2/bin
Date: Thu, 08 May 2008 07:55:34
Message-Id: E1Ju0yR-0003hf-P2@stork.gentoo.org
1 Author: zmedico
2 Date: 2008-05-08 07:55:30 +0000 (Thu, 08 May 2008)
3 New Revision: 10226
4
5 Modified:
6 main/branches/2.1.2/bin/emerge
7 Log:
8 Tolerate InvalidDependString exceptions when checking visibility of
9 installed packages. (trunk r102240
10
11
12 Modified: main/branches/2.1.2/bin/emerge
13 ===================================================================
14 --- main/branches/2.1.2/bin/emerge 2008-05-08 07:48:59 UTC (rev 10225)
15 +++ main/branches/2.1.2/bin/emerge 2008-05-08 07:55:30 UTC (rev 10226)
16 @@ -3035,7 +3035,8 @@
17 if not visible(pkgsettings, pkg):
18 continue
19 except portage_exception.InvalidDependString:
20 - continue
21 + if not installed:
22 + continue
23
24 # Enable upgrade or downgrade to a version
25 # with visible KEYWORDS when the installed
26
27 --
28 gentoo-commits@l.g.o mailing list