Gentoo Archives: gentoo-commits

From: "Arfrever Frehtes Taifersar Arahesis (arfrever)" <arfrever@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] portage r13656 - main/trunk/pym/portage
Date: Sat, 20 Jun 2009 18:53:03
Message-Id: E1MI5gT-0004sX-TC@stork.gentoo.org
1 Author: arfrever
2 Date: 2009-06-20 18:53:01 +0000 (Sat, 20 Jun 2009)
3 New Revision: 13656
4
5 Modified:
6 main/trunk/pym/portage/__init__.py
7 Log:
8 Don't set KV for EAPI >=3.
9
10
11 Modified: main/trunk/pym/portage/__init__.py
12 ===================================================================
13 --- main/trunk/pym/portage/__init__.py 2009-06-19 20:19:30 UTC (rev 13655)
14 +++ main/trunk/pym/portage/__init__.py 2009-06-20 18:53:01 UTC (rev 13656)
15 @@ -5417,7 +5417,7 @@
16 mysettings["PORTAGE_BUILDDIR"], ".exit_status")
17
18 #set up KV variable -- DEP SPEEDUP :: Don't waste time. Keep var persistent.
19 - if mydo != 'depend' and 'KV' not in mysettings and \
20 + if eapi in ("0", "1", "2") and mydo != 'depend' and 'KV' not in mysettings and \
21 mydo in ('compile', 'config', 'configure', 'info',
22 'install', 'nofetch', 'postinst', 'postrm', 'preinst',
23 'prepare', 'prerm', 'setup', 'test', 'unpack'):