commit:     84462f5e792175bf85b119c3555b9903d7570ebe
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Feb  6 09:40:13 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=84462f5e

dev-lang/python-exec: Do not copy meaningless Python 2 selection

Do not copy Python 2 version preference if Python 3 is the main
interpreter. It is not meaningful since we no longer support more than
one Python 2 version, and it will cause Python 2 to be preferred over
non-preferred versions of Python 3.

 dev-lang/python-exec/python-exec-2.9999.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-lang/python-exec/python-exec-2.9999.ebuild 
b/dev-lang/python-exec/python-exec-2.9999.ebuild
index 14940d0..561e393 100644
--- a/dev-lang/python-exec/python-exec-2.9999.ebuild
+++ b/dev-lang/python-exec/python-exec-2.9999.ebuild
@@ -95,8 +95,8 @@ pkg_preinst() {
                        old_pythons+=( "$(<${config_base}/config)" )
                fi
 
-               # then try specific py2/py3 selections
-               for py in 3 2; do
+               # then try specific py3 selection
+               for py in 3; do
                        local target=
 
                        if [[ -f ${config_base}/python${py} ]]; then

Reply via email to