2010-11-29 12:43 Sebastian Pipping <[email protected]> napisał(a):
> On 11/29/10 02:35, Arfrever Frehtes Taifersar Arahesis wrote:
>> Sebastian Pipping recently removed automatic upgrade of active version of
>> Python, so
>> python-2.7.1.ebuild does not upgrade active version of Python.
>
> The ebuilds you just added for 2.7.1 and 3.1.3 do contain
> eselect_python_update() and calls to it.
>
> I suppose that happened by mistake and removed eselect_python_update()
> on these ebuilds, too. They are in CVS now, mirrors take extra time.
It wasn't any mistake. Please actually read that code:
eselect_python_update() {
if [[ -z "$(eselect python show --python${PV%%.*})" ]]; then
eselect python update --python${PV%%.*}
fi
}
"${PV%%.*}" == "2"
'eselect python update --python2' would be called only if output of
'eselect python show --python2' was empty, which would occur when
there was no active version of Python 2 set (no /usr/bin/python2
symlink).
--
Arfrever Frehtes Taifersar Arahesis