Gentoo Archives: gentoo-commits

From: "Zac Medico (zmedico)" <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] portage r9918 - main/trunk/pym/portage/dbapi
Date: Wed, 16 Apr 2008 18:08:46
Message-Id: E1JmC3m-0007rw-CT@stork.gentoo.org
1 Author: zmedico
2 Date: 2008-04-16 18:08:41 +0000 (Wed, 16 Apr 2008)
3 New Revision: 9918
4
5 Modified:
6 main/trunk/pym/portage/dbapi/porttree.py
7 Log:
8 Fix portdbapi.getfetchlist() so that it doesn't unnecessarily calculate
9 USE when the "all" parameter is True.
10
11
12 Modified: main/trunk/pym/portage/dbapi/porttree.py
13 ===================================================================
14 --- main/trunk/pym/portage/dbapi/porttree.py 2008-04-16 18:02:48 UTC (rev 9917)
15 +++ main/trunk/pym/portage/dbapi/porttree.py 2008-04-16 18:08:41 UTC (rev 9918)
16 @@ -379,7 +379,7 @@
17 "getfetchlist(): '%s' has unsupported EAPI: '%s'" % \
18 (mypkg, eapi.lstrip("-")))
19
20 - if useflags is None:
21 + if not all and useflags is None:
22 mysettings.setcpv(mypkg, mydb=self)
23 useflags = mysettings["PORTAGE_USE"].split()
24
25
26 --
27 gentoo-commits@l.g.o mailing list