| 1 | # Copyright 1999-2009 Gentoo Foundation |
1 | # Copyright 1999-2009 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/eclass/python.eclass,v 1.67 2009/08/29 02:15:24 arfrever Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/python.eclass,v 1.72 2009/09/11 19:55:05 arfrever Exp $ |
| 4 | |
4 | |
| 5 | # @ECLASS: python.eclass |
5 | # @ECLASS: python.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # python@gentoo.org |
7 | # python@gentoo.org |
| 8 | # |
8 | # |
| … | |
… | |
| 66 | export PYVER_ALL="${tmpstr#Python }" |
66 | export PYVER_ALL="${tmpstr#Python }" |
| 67 | __python_version_extract $PYVER_ALL |
67 | __python_version_extract $PYVER_ALL |
| 68 | } |
68 | } |
| 69 | |
69 | |
| 70 | # @FUNCTION: PYTHON |
70 | # @FUNCTION: PYTHON |
| 71 | # @USAGE: [-a|--absolute-path] <Python_ABI="${PYTHON_ABI}"> |
71 | # @USAGE: [-a|--absolute-path] [--] <Python_ABI="${PYTHON_ABI}"> |
| 72 | # @DESCRIPTION: |
72 | # @DESCRIPTION: |
| 73 | # Get Python interpreter filename for specified Python ABI. If Python_ABI argument |
73 | # Get Python interpreter filename for specified Python ABI. If Python_ABI argument |
| 74 | # is ommitted, then PYTHON_ABI environment variable must be set and is used. |
74 | # is ommitted, then PYTHON_ABI environment variable must be set and is used. |
| 75 | PYTHON() { |
75 | PYTHON() { |
| 76 | local absolute_path="0" slot= |
76 | local absolute_path="0" slot= |
| 77 | |
77 | |
| 78 | while (($#)); do |
78 | while (($#)); do |
| 79 | case "$1" in |
79 | case "$1" in |
| 80 | -a|--absolute-path) |
80 | -a|--absolute-path) |
| 81 | absolute_path="1" |
81 | absolute_path="1" |
|
|
82 | ;; |
|
|
83 | --) |
|
|
84 | break |
| 82 | ;; |
85 | ;; |
| 83 | -*) |
86 | -*) |
| 84 | die "${FUNCNAME}(): Unrecognized option $1" |
87 | die "${FUNCNAME}(): Unrecognized option $1" |
| 85 | ;; |
88 | ;; |
| 86 | *) |
89 | *) |
| … | |
… | |
| 125 | if [[ "$(</usr/bin/python-config)" != *"Gentoo python-config wrapper script"* ]]; then |
128 | if [[ "$(</usr/bin/python-config)" != *"Gentoo python-config wrapper script"* ]]; then |
| 126 | die "'/usr/bin/python-config' isn't valid script" |
129 | die "'/usr/bin/python-config' isn't valid script" |
| 127 | fi |
130 | fi |
| 128 | |
131 | |
| 129 | # USE_${ABI_TYPE^^} and RESTRICT_${ABI_TYPE^^}_ABIS variables hopefully will be included in EAPI >= 4. |
132 | # USE_${ABI_TYPE^^} and RESTRICT_${ABI_TYPE^^}_ABIS variables hopefully will be included in EAPI >= 4. |
| 130 | if [[ -z "${PYTHON_ABIS}" ]] && has "${EAPI:-0}" 0 1 2 3; then |
133 | if [[ "$(declare -p PYTHON_ABIS 2> /dev/null)" != "declare -x PYTHON_ABIS="* ]] && has "${EAPI:-0}" 0 1 2 3; then |
| 131 | local ABI support_ABI supported_PYTHON_ABIS= restricted_ABI |
134 | local ABI support_ABI supported_PYTHON_ABIS= restricted_ABI |
| 132 | PYTHON_ABI_SUPPORTED_VALUES="2.4 2.5 2.6 2.7 3.0 3.1 3.2" |
135 | PYTHON_ABI_SUPPORTED_VALUES="2.4 2.5 2.6 2.7 3.0 3.1 3.2" |
|
|
136 | |
|
|
137 | if [[ "$(declare -p USE_PYTHON 2> /dev/null)" == "declare -x USE_PYTHON="* ]]; then |
|
|
138 | if [[ -z "${USE_PYTHON}" ]]; then |
|
|
139 | die "USE_PYTHON variable is empty" |
|
|
140 | fi |
|
|
141 | |
| 133 | for ABI in ${USE_PYTHON}; do |
142 | for ABI in ${USE_PYTHON}; do |
| 134 | if ! has "${ABI}" ${PYTHON_ABI_SUPPORTED_VALUES}; then |
143 | if ! has "${ABI}" ${PYTHON_ABI_SUPPORTED_VALUES}; then |
| 135 | ewarn "Ignoring unsupported Python ABI '${ABI}'" |
144 | die "USE_PYTHON variable contains invalid value '${ABI}'" |
| 136 | continue |
|
|
| 137 | fi |
145 | fi |
| 138 | support_ABI="1" |
146 | support_ABI="1" |
| 139 | if [[ -z "${IGNORE_RESTRICT_PYTHON_ABIS}" ]]; then |
|
|
| 140 | for restricted_ABI in ${RESTRICT_PYTHON_ABIS}; do |
147 | for restricted_ABI in ${RESTRICT_PYTHON_ABIS}; do |
| 141 | if python -c "from fnmatch import fnmatch; exit(not fnmatch('${ABI}', '${restricted_ABI}'))"; then |
148 | if python -c "from fnmatch import fnmatch; exit(not fnmatch('${ABI}', '${restricted_ABI}'))"; then |
| 142 | support_ABI="0" |
149 | support_ABI="0" |
| 143 | break |
150 | break |
| 144 | fi |
151 | fi |
| 145 | done |
152 | done |
| 146 | fi |
|
|
| 147 | [[ "${support_ABI}" == "1" ]] && supported_PYTHON_ABIS+=" ${ABI}" |
153 | [[ "${support_ABI}" == "1" ]] && supported_PYTHON_ABIS+=" ${ABI}" |
| 148 | done |
154 | done |
| 149 | export PYTHON_ABIS="${supported_PYTHON_ABIS# }" |
155 | export PYTHON_ABIS="${supported_PYTHON_ABIS# }" |
| 150 | fi |
|
|
| 151 | |
156 | |
| 152 | if [[ -z "${PYTHON_ABIS//[${IFS}]/}" ]]; then |
157 | if [[ -z "${PYTHON_ABIS//[${IFS}]/}" ]]; then |
|
|
158 | die "USE_PYTHON variable doesn't enable any Python version supported by ${CATEGORY}/${PF}" |
|
|
159 | fi |
|
|
160 | else |
|
|
161 | local restricted_ABI |
| 153 | python_version |
162 | python_version |
|
|
163 | |
|
|
164 | for restricted_ABI in ${RESTRICT_PYTHON_ABIS}; do |
|
|
165 | if python -c "from fnmatch import fnmatch; exit(not fnmatch('${PYVER}', '${restricted_ABI}'))"; then |
|
|
166 | die "Active Python version isn't supported by ${CATEGORY}/${PF}" |
|
|
167 | fi |
|
|
168 | done |
| 154 | export PYTHON_ABIS="${PYVER}" |
169 | export PYTHON_ABIS="${PYVER}" |
| 155 | fi |
170 | fi |
|
|
171 | fi |
| 156 | |
172 | |
| 157 | # Ensure that EPYTHON variable is respected. |
|
|
| 158 | local PYTHON_ABI |
173 | local PYTHON_ABI |
| 159 | for PYTHON_ABI in ${PYTHON_ABIS}; do |
174 | for PYTHON_ABI in ${PYTHON_ABIS}; do |
|
|
175 | # Ensure that appropriate Python version is installed. |
|
|
176 | if ! has_version "dev-lang/python:${PYTHON_ABI}"; then |
|
|
177 | die "dev-lang/python:${PYTHON_ABI} isn't installed" |
|
|
178 | fi |
|
|
179 | |
|
|
180 | # Ensure that EPYTHON variable is respected. |
| 160 | if [[ "$(EPYTHON="$(PYTHON)" python -c 'from sys import version_info; print(".".join([str(x) for x in version_info[:2]]))')" != "${PYTHON_ABI}" ]]; then |
181 | if [[ "$(EPYTHON="$(PYTHON)" python -c 'from sys import version_info; print(".".join([str(x) for x in version_info[:2]]))')" != "${PYTHON_ABI}" ]]; then |
| 161 | die "'python' doesn't respect EPYTHON variable" |
182 | die "'python' doesn't respect EPYTHON variable" |
| 162 | fi |
183 | fi |
| 163 | done |
184 | done |
| 164 | } |
185 | } |
| 165 | |
186 | |
| 166 | # @FUNCTION: python_copy_sources |
187 | # @FUNCTION: python_copy_sources |
| 167 | # @USAGE: [directory] |
188 | # @USAGE: [--no-link] [--] [directory] |
| 168 | # @DESCRIPTION: |
189 | # @DESCRIPTION: |
| 169 | # Copy unpacked sources of given package for each Python ABI. |
190 | # Copy unpacked sources of given package for each Python ABI. |
| 170 | python_copy_sources() { |
191 | python_copy_sources() { |
| 171 | local dir dirs=() PYTHON_ABI |
192 | local dir dirs=() no_link="0" PYTHON_ABI |
|
|
193 | |
|
|
194 | while (($#)); do |
|
|
195 | case "$1" in |
|
|
196 | --no-link) |
|
|
197 | no_link="1" |
|
|
198 | ;; |
|
|
199 | --) |
|
|
200 | break |
|
|
201 | ;; |
|
|
202 | -*) |
|
|
203 | die "${FUNCNAME}(): Unrecognized option '$1'" |
|
|
204 | ;; |
|
|
205 | *) |
|
|
206 | break |
|
|
207 | ;; |
|
|
208 | esac |
|
|
209 | shift |
|
|
210 | done |
| 172 | |
211 | |
| 173 | if [[ "$#" -eq "0" ]]; then |
212 | if [[ "$#" -eq "0" ]]; then |
| 174 | if [[ "${WORKDIR}" == "${S}" ]]; then |
213 | if [[ "${WORKDIR}" == "${S}" ]]; then |
| 175 | die "${FUNCNAME}() cannot be used" |
214 | die "${FUNCNAME}() cannot be used" |
| 176 | fi |
215 | fi |
| … | |
… | |
| 180 | fi |
219 | fi |
| 181 | |
220 | |
| 182 | validate_PYTHON_ABIS |
221 | validate_PYTHON_ABIS |
| 183 | for PYTHON_ABI in ${PYTHON_ABIS}; do |
222 | for PYTHON_ABI in ${PYTHON_ABIS}; do |
| 184 | for dir in "${dirs[@]}"; do |
223 | for dir in "${dirs[@]}"; do |
|
|
224 | if [[ "${no_link}" == "1" ]]; then |
|
|
225 | cp -pr "${dir}" "${dir}-${PYTHON_ABI}" > /dev/null || die "Copying of sources failed" |
|
|
226 | else |
| 185 | cp -lpr "${dir}" "${dir}-${PYTHON_ABI}" > /dev/null || die "Copying of sources failed" |
227 | cp -lpr "${dir}" "${dir}-${PYTHON_ABI}" > /dev/null || die "Copying of sources failed" |
|
|
228 | fi |
| 186 | done |
229 | done |
| 187 | done |
230 | done |
| 188 | } |
231 | } |
| 189 | |
232 | |
| 190 | # @FUNCTION: python_set_build_dir_symlink |
233 | # @FUNCTION: python_set_build_dir_symlink |
| … | |
… | |
| 201 | rm -f "${dir}" || die "Deletion of '${dir}' failed" |
244 | rm -f "${dir}" || die "Deletion of '${dir}' failed" |
| 202 | ln -s "${dir}-${PYTHON_ABI}" "${dir}" || die "Creation of '${dir}' directory symlink failed" |
245 | ln -s "${dir}-${PYTHON_ABI}" "${dir}" || die "Creation of '${dir}' directory symlink failed" |
| 203 | } |
246 | } |
| 204 | |
247 | |
| 205 | # @FUNCTION: python_execute_function |
248 | # @FUNCTION: python_execute_function |
| 206 | # @USAGE: [--action-message message] [-d|--default-function] [--failure-message message] [--nonfatal] [-q|--quiet] [-s|--separate-build-dirs] <function> [arguments] |
249 | # @USAGE: [--action-message message] [-d|--default-function] [--failure-message message] [--nonfatal] [-q|--quiet] [-s|--separate-build-dirs] [--] <function> [arguments] |
| 207 | # @DESCRIPTION: |
250 | # @DESCRIPTION: |
| 208 | # Execute specified function for each value of PYTHON_ABIS, optionally passing additional |
251 | # Execute specified function for each value of PYTHON_ABIS, optionally passing additional |
| 209 | # arguments. The specified function can use PYTHON_ABI and BUILDDIR variables. |
252 | # arguments. The specified function can use PYTHON_ABI and BUILDDIR variables. |
| 210 | python_execute_function() { |
253 | python_execute_function() { |
| 211 | local action action_message action_message_template= default_function="0" failure_message failure_message_template= function nonfatal="0" PYTHON_ABI quiet="0" separate_build_dirs="0" |
254 | local action action_message action_message_template= default_function="0" failure_message failure_message_template= function nonfatal="0" previous_directory_stack_length PYTHON_ABI quiet="0" separate_build_dirs="0" |
| 212 | |
255 | |
| 213 | while (($#)); do |
256 | while (($#)); do |
| 214 | case "$1" in |
257 | case "$1" in |
| 215 | --action-message) |
258 | --action-message) |
| 216 | action_message_template="$2" |
259 | action_message_template="$2" |
| … | |
… | |
| 229 | -q|--quiet) |
272 | -q|--quiet) |
| 230 | quiet="1" |
273 | quiet="1" |
| 231 | ;; |
274 | ;; |
| 232 | -s|--separate-build-dirs) |
275 | -s|--separate-build-dirs) |
| 233 | separate_build_dirs="1" |
276 | separate_build_dirs="1" |
|
|
277 | ;; |
|
|
278 | --) |
|
|
279 | break |
| 234 | ;; |
280 | ;; |
| 235 | -*) |
281 | -*) |
| 236 | die "${FUNCNAME}(): Unrecognized option '$1'" |
282 | die "${FUNCNAME}(): Unrecognized option '$1'" |
| 237 | ;; |
283 | ;; |
| 238 | *) |
284 | *) |
| … | |
… | |
| 335 | pushd "${BUILDDIR}" > /dev/null || die "pushd failed" |
381 | pushd "${BUILDDIR}" > /dev/null || die "pushd failed" |
| 336 | else |
382 | else |
| 337 | export BUILDDIR="${S}" |
383 | export BUILDDIR="${S}" |
| 338 | fi |
384 | fi |
| 339 | |
385 | |
|
|
386 | previous_directory_stack_length="${#DIRSTACK[@]}" |
|
|
387 | |
| 340 | if ! has "${EAPI}" 0 1 2 && has "${PYTHON_ABI}" ${FAILURE_TOLERANT_PYTHON_ABIS}; then |
388 | if ! has "${EAPI}" 0 1 2 && has "${PYTHON_ABI}" ${FAILURE_TOLERANT_PYTHON_ABIS}; then |
| 341 | EPYTHON="$(PYTHON)" nonfatal "${function}" "$@" |
389 | EPYTHON="$(PYTHON)" nonfatal "${function}" "$@" |
| 342 | else |
390 | else |
| 343 | EPYTHON="$(PYTHON)" "${function}" "$@" |
391 | EPYTHON="$(PYTHON)" "${function}" "$@" |
| 344 | fi |
392 | fi |
| … | |
… | |
| 348 | failure_message="$(eval echo -n "${failure_message_template}")" |
396 | failure_message="$(eval echo -n "${failure_message_template}")" |
| 349 | else |
397 | else |
| 350 | failure_message="${action} failed with Python ${PYTHON_ABI} in ${function}() function" |
398 | failure_message="${action} failed with Python ${PYTHON_ABI} in ${function}() function" |
| 351 | fi |
399 | fi |
| 352 | |
400 | |
| 353 | if [[ "${nonfatal}" == "1" ]] || has "${PYTHON_ABI}" ${FAILURE_TOLERANT_PYTHON_ABIS}; then |
401 | if [[ "${nonfatal}" == "1" ]]; then |
| 354 | local ABI enabled_PYTHON_ABIS |
|
|
| 355 | for ABI in ${PYTHON_ABIS}; do |
|
|
| 356 | [[ "${ABI}" != "${PYTHON_ABI}" ]] && enabled_PYTHON_ABIS+=" ${ABI}" |
|
|
| 357 | done |
|
|
| 358 | export PYTHON_ABIS="${enabled_PYTHON_ABIS# }" |
|
|
| 359 | if [[ "${quiet}" == "0" ]]; then |
402 | if [[ "${quiet}" == "0" ]]; then |
| 360 | ewarn "${RED}${failure_message}${NORMAL}" |
403 | ewarn "${RED}${failure_message}${NORMAL}" |
| 361 | fi |
404 | fi |
|
|
405 | elif has "${PYTHON_ABI}" ${FAILURE_TOLERANT_PYTHON_ABIS}; then |
|
|
406 | if [[ "${EBUILD_PHASE}" != "test" ]] || ! has test-fail-continue ${FEATURES}; then |
|
|
407 | local ABI enabled_PYTHON_ABIS= |
|
|
408 | for ABI in ${PYTHON_ABIS}; do |
|
|
409 | [[ "${ABI}" != "${PYTHON_ABI}" ]] && enabled_PYTHON_ABIS+=" ${ABI}" |
|
|
410 | done |
|
|
411 | export PYTHON_ABIS="${enabled_PYTHON_ABIS# }" |
|
|
412 | fi |
|
|
413 | if [[ "${quiet}" == "0" ]]; then |
|
|
414 | ewarn "${RED}${failure_message}${NORMAL}" |
|
|
415 | fi |
|
|
416 | if [[ -z "${PYTHON_ABIS}" ]]; then |
|
|
417 | die "${function}() function failed with all enabled versions of Python" |
|
|
418 | fi |
| 362 | else |
419 | else |
| 363 | die "${failure_message}" |
420 | die "${failure_message}" |
| 364 | fi |
421 | fi |
| 365 | fi |
422 | fi |
|
|
423 | |
|
|
424 | if [[ "${#DIRSTACK[@]}" -lt "${previous_directory_stack_length}" ]]; then |
|
|
425 | die "Directory stack decreased illegally" |
|
|
426 | fi |
|
|
427 | |
|
|
428 | while [[ "${#DIRSTACK[@]}" -gt "${previous_directory_stack_length}" ]]; do |
|
|
429 | popd > /dev/null || die "popd failed" |
|
|
430 | done |
| 366 | |
431 | |
| 367 | if [[ "${separate_build_dirs}" == "1" ]]; then |
432 | if [[ "${separate_build_dirs}" == "1" ]]; then |
| 368 | popd > /dev/null || die "popd failed" |
433 | popd > /dev/null || die "popd failed" |
| 369 | fi |
434 | fi |
| 370 | unset BUILDDIR |
435 | unset BUILDDIR |