Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 494918 | Differences between
and this patch

Collapse All | Expand All

(-)python-2.7.6.ebuild (-5 / +4 lines)
Lines 321-332 Link Here
321
}
321
}
322
322
323
eselect_python_update() {
323
eselect_python_update() {
324
	if [[ -z "$(eselect python show)" || ! -f "${EROOT}usr/bin/$(eselect python show)" ]]; then
324
	eselect python update --if-unset --python2
325
		eselect python update
325
	eselect python update --if-unset
326
	fi
327
326
328
	if [[ -z "$(eselect python show --python${PV%%.*})" || ! -f "${EROOT}usr/bin/$(eselect python show --python${PV%%.*})" ]]; then
327
	if [[ -n ${ESELECT_PYTHON_UPDATE_FORCE} ]]; then
329
		eselect python update --python${PV%%.*}
328
		eselect python update --python2
330
	fi
329
	fi
331
}
330
}
332
331
(-)python-3.3.3.ebuild (-5 / +4 lines)
Lines 288-299 Link Here
288
}
288
}
289
289
290
eselect_python_update() {
290
eselect_python_update() {
291
	if [[ -z "$(eselect python show)" || ! -f "${EROOT}usr/bin/$(eselect python show)" ]]; then
291
	eselect python update --if-unset --python3
292
		eselect python update
292
	eselect python update --if-unset
293
	fi
294
293
295
	if [[ -z "$(eselect python show --python${PV%%.*})" || ! -f "${EROOT}usr/bin/$(eselect python show --python${PV%%.*})" ]]; then
294
	if [[ -n ${ESELECT_PYTHON_UPDATE_FORCE} ]]; then
296
		eselect python update --python${PV%%.*}
295
		eselect python update --python3
297
	fi
296
	fi
298
}
297
}
299
298

Return to bug 494918