aboutsummaryrefslogtreecommitdiff
blob: 9646b3a358da47df98c7e2bb9bd7232116095c3c (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
# @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
		slot=${i#python}
		slot=${slot/_/.}
		use+=( "python_targets_${i}" )
		PYTHON_DEPS+=" python_targets_${i}? ( dev-lang/python:${slot} )"
	done
	IUSE+=" ${use[@]}"
	PYTHON_REQUIRED_USE="|| ( ${use[@]} )"
	PYTHON_USEDEP=$(IFS=","; echo "${use[*]}")
}
_python_set_impls