From e70104882d328ea04279170b351dc63dc5b6ca3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Sat, 6 Feb 2016 10:33:11 +0100 Subject: [PATCH] app-eselect/eselect-python: Do not update meaningless py2 preference We no longer support more than one version of Python 2, so the Python2 preference is no longer meaningful and causes Python 2 to be preferred over non-preferred versions of Python 3. --- app-eselect/eselect-python/eselect-python-99999999.ebuild | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/app-eselect/eselect-python/eselect-python-99999999.ebuild b/app-eselect/eselect-python/eselect-python-99999999.ebuild index f9b8c65f2602e..52eb0ceceb522 100644 --- a/app-eselect/eselect-python/eselect-python-99999999.ebuild +++ b/app-eselect/eselect-python/eselect-python-99999999.ebuild @@ -33,9 +33,7 @@ pkg_postinst() { eselect python update --if-unset fi - for py in 2 3; do - if has_version "=dev-lang/python-${py}*"; then - eselect python update "--python${py}" --if-unset - fi - done + if has_version "=dev-lang/python-3*"; then + eselect python update "--python3" --if-unset + fi }