Gentoo Archives: gentoo-commits

From: "Paul Varner (fuzzyray)" <fuzzyray@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoolkit r512 - in trunk: . src/equery
Date: Wed, 03 Sep 2008 20:13:59
Message-Id: E1Kayjk-0005TM-Ox@stork.gentoo.org
1 Author: fuzzyray
2 Date: 2008-09-03 20:13:55 +0000 (Wed, 03 Sep 2008)
3 New Revision: 512
4
5 Modified:
6 trunk/ChangeLog
7 trunk/src/equery/equery
8 Log:
9 Fix depgraph function to print out dependencies that don't resolve to a package (Bug #236492)
10
11 Modified: trunk/ChangeLog
12 ===================================================================
13 --- trunk/ChangeLog 2008-09-03 20:00:18 UTC (rev 511)
14 +++ trunk/ChangeLog 2008-09-03 20:13:55 UTC (rev 512)
15 @@ -1,3 +1,7 @@
16 +2008-09-03: Paul Varner <fuzzyray@g.o>
17 + * equery: Fix depgraph function to print out dependencies that don't
18 + resolve to a package (Bug #236492)
19 +
20 2008-08-26: Paul Varner <fuzzyray@g.o>
21 * glsa-check: Fix has_key() deprecation message. (Bug #232797)
22 * revdep-rebuild: Update fix for Bug 232270 to utilize better patch
23
24 Modified: trunk/src/equery/equery
25 ===================================================================
26 --- trunk/src/equery/equery 2008-09-03 20:00:18 UTC (rev 511)
27 +++ trunk/src/equery/equery 2008-09-03 20:13:55 UTC (rev 512)
28 @@ -738,6 +738,7 @@
29 cpv = x[2]
30 pkg = gentoolkit.find_best_match(x[0] + cpv)
31 if not pkg:
32 + print pfx + x[0] + cpv + " (unable to resolve to a package / package masked or removed)"
33 continue
34 if pkg.get_cpv() in pkgtbl:
35 continue