From: Zac Medico Date: Mon, 9 Feb 2009 09:05:38 +0000 (-0000) Subject: Keep 2_pre* EAPI values in the deprecated list so that uninstalls still X-Git-Tag: v2.2_rc24~207 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=1b291cd2900bcdb3fdcbdca52a325a6981ce4789;p=portage.git Keep 2_pre* EAPI values in the deprecated list so that uninstalls still work normally. svn path=/main/trunk/; revision=12595 --- diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py index f5646491f..8cb195383 100644 --- a/pym/portage/__init__.py +++ b/pym/portage/__init__.py @@ -4819,7 +4819,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