Gentoo Archives: gentoo-commits

From: "Zac Medico (zmedico)" <zmedico@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] portage r11549 - in main/trunk: bin pym/portage
Date: Thu, 25 Sep 2008 23:42:17
Message-Id: E1Kj0TO-00044z-PA@stork.gentoo.org
1 Author: zmedico
2 Date: 2008-09-25 23:42:13 +0000 (Thu, 25 Sep 2008)
3 New Revision: 11549
4
5 Modified:
6 main/trunk/bin/ebuild.sh
7 main/trunk/pym/portage/__init__.py
8 Log:
9 Add PROPERTIES to portage.auxdbkeys since it's been approved by the council.
10
11
12 Modified: main/trunk/bin/ebuild.sh
13 ===================================================================
14 --- main/trunk/bin/ebuild.sh 2008-09-25 23:29:37 UTC (rev 11548)
15 +++ main/trunk/bin/ebuild.sh 2008-09-25 23:42:13 UTC (rev 11549)
16 @@ -2057,8 +2057,8 @@
17
18 auxdbkeys="DEPEND RDEPEND SLOT SRC_URI RESTRICT HOMEPAGE LICENSE
19 DESCRIPTION KEYWORDS INHERITED IUSE CDEPEND PDEPEND PROVIDE EAPI
20 - UNUSED_01 UNUSED_02 UNUSED_03 UNUSED_04 UNUSED_05 UNUSED_06
21 - UNUSED_07"
22 + PROPERTIES UNUSED_06 UNUSED_05 UNUSED_04
23 + UNUSED_03 UNUSED_02 UNUSED_01"
24
25 #the extra $(echo) commands remove newlines
26 unset CDEPEND
27
28 Modified: main/trunk/pym/portage/__init__.py
29 ===================================================================
30 --- main/trunk/pym/portage/__init__.py 2008-09-25 23:29:37 UTC (rev 11548)
31 +++ main/trunk/pym/portage/__init__.py 2008-09-25 23:42:13 UTC (rev 11549)
32 @@ -6843,8 +6843,8 @@
33 'RESTRICT', 'HOMEPAGE', 'LICENSE', 'DESCRIPTION',
34 'KEYWORDS', 'INHERITED', 'IUSE', 'CDEPEND',
35 'PDEPEND', 'PROVIDE', 'EAPI',
36 - 'UNUSED_01', 'UNUSED_02', 'UNUSED_03', 'UNUSED_04',
37 - 'UNUSED_05', 'UNUSED_06', 'UNUSED_07',
38 + 'PROPERTIES', 'UNUSED_06', 'UNUSED_05', 'UNUSED_04',
39 + 'UNUSED_03', 'UNUSED_02', 'UNUSED_01',
40 ]
41 auxdbkeylen=len(auxdbkeys)