Gentoo Archives: gentoo-commits

From: "Zac Medico (zmedico)" <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] portage r10807 - main/trunk/bin
Date: Thu, 26 Jun 2008 21:36:24
Message-Id: E1KBz8c-0001Of-RR@stork.gentoo.org
1 Author: zmedico
2 Date: 2008-06-26 21:36:17 +0000 (Thu, 26 Jun 2008)
3 New Revision: 10807
4
5 Modified:
6 main/trunk/bin/repoman
7 Log:
8 Call use_reduce() with matchall=1 when checking depstrings. Otherwise it's
9 possible for invalid deps to be ignored. Thanks to grobian for reporting.
10
11
12 Modified: main/trunk/bin/repoman
13 ===================================================================
14 --- main/trunk/bin/repoman 2008-06-26 21:16:04 UTC (rev 10806)
15 +++ main/trunk/bin/repoman 2008-06-26 21:36:17 UTC (rev 10807)
16 @@ -1249,7 +1249,7 @@
17 mydeplist = []
18
19 try:
20 - portage.dep.use_reduce(mydeplist, excludeall=myiuse)
21 + portage.dep.use_reduce(mydeplist, matchall=1)
22 except portage.exception.InvalidDependString, e:
23 badsyntax.append(str(e))
24
25
26 --
27 gentoo-commits@l.g.o mailing list