blob: e33047cad1519a725363396fdb5f983541d6c8f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# @ECLASS_VARIABLE: PYTHON_DEPS
# @DESCRIPTION:
# See the variable docs in the related gentoo repo eclass.
# @ECLASS_VARIABLE: PYTHON_USEDEP
# @DESCRIPTION:
# See the variable docs in the related gentoo repo eclass.
# @ECLASS_VARIABLE: PYTHON_REQUIRED_USE
# @DESCRIPTION:
# See the variable docs in the related gentoo repo eclass.
_python_set_impls() {
local i slot
local -a use
for i in "${PYTHON_COMPAT[@]}"; do
use+=( "python_targets_${i}" )
case ${i} in
python*)
slot=${i#python}
slot=${slot/_/.}
PYTHON_DEPS+=" python_targets_${i}? ( dev-lang/python:${slot} )"
;;
pypy3)
PYTHON_DEPS+=" python_targets_${i}? ( dev-python/pypy3:= )"
;;
esac
done
IUSE+=" ${use[@]}"
PYTHON_REQUIRED_USE="|| ( ${use[@]} )"
PYTHON_USEDEP=$(IFS=","; echo "${use[*]}")
}
_python_set_impls
|