summaryrefslogtreecommitdiffstats
path: root/pym
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2009-03-11 03:49:47 +0000
committerZac Medico <zmedico@gentoo.org>2009-03-11 03:49:47 +0000
commita02b9529ea0b0210b0e525ac014871b598dc7c90 (patch)
tree721a79628b8cffeae064afb3ea1e7a76c8a24c84 /pym
parente1bc0b8512d80d4b80f8e5b1a96a9ec6af1433d7 (diff)
downloadportage-a02b9529ea0b0210b0e525ac014871b598dc7c90.tar.gz
portage-a02b9529ea0b0210b0e525ac014871b598dc7c90.tar.bz2
portage-a02b9529ea0b0210b0e525ac014871b598dc7c90.zip
Keep 2_pre* EAPI values in the deprecated list so that uninstalls still
work normally. (trunk r12595) svn path=/main/branches/2.1.6/; revision=12876
Diffstat (limited to 'pym')
-rw-r--r--pym/portage/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py
index 3331ae83b..2f9006138 100644
--- a/pym/portage/__init__.py
+++ b/pym/portage/__init__.py
@@ -4809,7 +4809,7 @@ def _spawn_misc_sh(mysettings, commands, **kwargs):
eerror(l, phase=mydo, key=mysettings.mycpv)
return rval
-_deprecated_eapis = frozenset()
+_deprecated_eapis = frozenset(["2_pre3", "2_pre2", "2_pre1"])
def _eapi_is_deprecated(eapi):
return eapi in _deprecated_eapis