summaryrefslogtreecommitdiffstats
path: root/pym/portage/__init__.py
diff options
context:
space:
mode:
authorAmbroz Bizjak <ambrop7@gmail.com>2012-09-24 13:13:46 -0700
committerZac Medico <zmedico@gentoo.org>2012-09-24 13:13:46 -0700
commit814e82f24afc221eee72f2b53a3fb7587605cbf9 (patch)
treeabfd103526de9dfb1373d7cc3b3b499af53ace96 /pym/portage/__init__.py
parentc4703d79878e4e0eb8e2b36e49c0bdee835b847e (diff)
downloadportage-814e82f24afc221eee72f2b53a3fb7587605cbf9.tar.gz
portage-814e82f24afc221eee72f2b53a3fb7587605cbf9.tar.bz2
portage-814e82f24afc221eee72f2b53a3fb7587605cbf9.zip
Add experimental EAPI 5-hdepend support.
Diffstat (limited to 'pym/portage/__init__.py')
-rw-r--r--pym/portage/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py
index 30c7e726a..695f1ea0a 100644
--- a/pym/portage/__init__.py
+++ b/pym/portage/__init__.py
@@ -414,7 +414,7 @@ def abssymlink(symlink, target=None):
_doebuild_manifest_exempt_depend = 0
-_testing_eapis = frozenset(["4-python", "4-slot-abi", "5-progress"])
+_testing_eapis = frozenset(["4-python", "4-slot-abi", "5-progress", "5-hdepend"])
_deprecated_eapis = frozenset(["4_pre1", "3_pre2", "3_pre1", "5_pre1", "5_pre2"])
def _eapi_is_deprecated(eapi):
@@ -472,7 +472,7 @@ auxdbkeys = (
'RESTRICT', 'HOMEPAGE', 'LICENSE', 'DESCRIPTION',
'KEYWORDS', 'INHERITED', 'IUSE', 'REQUIRED_USE',
'PDEPEND', 'PROVIDE', 'EAPI',
- 'PROPERTIES', 'DEFINED_PHASES', 'UNUSED_05', 'UNUSED_04',
+ 'PROPERTIES', 'DEFINED_PHASES', 'HDEPEND', 'UNUSED_04',
'UNUSED_03', 'UNUSED_02', 'UNUSED_01',
)
auxdbkeylen=len(auxdbkeys)