commit:     e70104882d328ea04279170b351dc63dc5b6ca3e
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Feb  6 09:33:11 2016 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Feb  6 09:57:35 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7010488

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 f9b8c65..52eb0ce 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
 }

Reply via email to