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.
This commit is contained in:
Michał Górny
2016-02-06 10:33:11 +01:00
parent 163c00b166
commit e70104882d

View File

@@ -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
}