| 1 | # Copyright 1999-2010 Gentoo Foundation |
1 | # Copyright 1999-2012 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.106 2010/12/24 15:01:09 arfrever Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/python.eclass,v 1.150 2012/02/13 23:50:12 zmedico Exp $ |
| 4 | |
4 | |
| 5 | # @ECLASS: python.eclass |
5 | # @ECLASS: python.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # Gentoo Python Project <python@gentoo.org> |
7 | # Gentoo Python Project <python@gentoo.org> |
| 8 | # @BLURB: Eclass for Python packages |
8 | # @BLURB: Eclass for Python packages |
| 9 | # @DESCRIPTION: |
9 | # @DESCRIPTION: |
| 10 | # The python eclass contains miscellaneous, useful functions for Python packages. |
10 | # The python eclass contains miscellaneous, useful functions for Python packages. |
| 11 | |
11 | |
|
|
12 | # Must call inherit before EXPORT_FUNCTIONS to avoid QA warning. |
|
|
13 | if [[ -z "${_PYTHON_ECLASS_INHERITED}" ]]; then |
| 12 | inherit multilib |
14 | inherit multilib |
|
|
15 | fi |
| 13 | |
16 | |
|
|
17 | # Export pkg_setup every time to avoid issues with eclass inheritance order. |
|
|
18 | if ! has "${EAPI:-0}" 0 1 2 3 || { has "${EAPI:-0}" 2 3 && [[ -n "${PYTHON_USE_WITH}" || -n "${PYTHON_USE_WITH_OR}" ]]; }; then |
|
|
19 | EXPORT_FUNCTIONS pkg_setup |
|
|
20 | fi |
|
|
21 | |
|
|
22 | # Avoid processing this eclass more than once. |
|
|
23 | if [[ -z "${_PYTHON_ECLASS_INHERITED}" ]]; then |
|
|
24 | _PYTHON_ECLASS_INHERITED="1" |
|
|
25 | |
| 14 | if ! has "${EAPI:-0}" 0 1 2 3; then |
26 | if ! has "${EAPI:-0}" 0 1 2 3 4; then |
| 15 | die "API of python.eclass in EAPI=\"${EAPI}\" not established" |
27 | die "API of python.eclass in EAPI=\"${EAPI}\" not established" |
| 16 | fi |
28 | fi |
| 17 | |
29 | |
| 18 | _CPYTHON2_GLOBALLY_SUPPORTED_ABIS=(2.4 2.5 2.6 2.7) |
30 | _CPYTHON2_GLOBALLY_SUPPORTED_ABIS=(2.4 2.5 2.6 2.7) |
| 19 | _CPYTHON3_GLOBALLY_SUPPORTED_ABIS=(3.0 3.1 3.2) |
31 | _CPYTHON3_GLOBALLY_SUPPORTED_ABIS=(3.1 3.2) |
| 20 | _JYTHON_GLOBALLY_SUPPORTED_ABIS=(2.5-jython) |
32 | _JYTHON_GLOBALLY_SUPPORTED_ABIS=(2.5-jython) |
|
|
33 | _PYPY_GLOBALLY_SUPPORTED_ABIS=(2.7-pypy-1.7 2.7-pypy-1.8) |
| 21 | _PYTHON_GLOBALLY_SUPPORTED_ABIS=(${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]} ${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]} ${_JYTHON_GLOBALLY_SUPPORTED_ABIS[@]}) |
34 | _PYTHON_GLOBALLY_SUPPORTED_ABIS=(${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]} ${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]} ${_JYTHON_GLOBALLY_SUPPORTED_ABIS[@]} ${_PYPY_GLOBALLY_SUPPORTED_ABIS[@]}) |
| 22 | |
35 | |
| 23 | # ================================================================================================ |
36 | # ================================================================================================ |
| 24 | # ===================================== HANDLING OF METADATA ===================================== |
37 | # ===================================== HANDLING OF METADATA ===================================== |
| 25 | # ================================================================================================ |
38 | # ================================================================================================ |
| 26 | |
39 | |
|
|
40 | _PYTHON_ABI_PATTERN_REGEX="([[:alnum:]]|\.|-|\*|\[|\])+" |
|
|
41 | |
| 27 | _python_check_python_abi_matching() { |
42 | _python_check_python_abi_matching() { |
|
|
43 | local pattern patterns patterns_list="0" PYTHON_ABI |
|
|
44 | |
|
|
45 | while (($#)); do |
|
|
46 | case "$1" in |
|
|
47 | --patterns-list) |
|
|
48 | patterns_list="1" |
|
|
49 | ;; |
|
|
50 | --) |
|
|
51 | shift |
|
|
52 | break |
|
|
53 | ;; |
|
|
54 | -*) |
|
|
55 | die "${FUNCNAME}(): Unrecognized option '$1'" |
|
|
56 | ;; |
|
|
57 | *) |
|
|
58 | break |
|
|
59 | ;; |
|
|
60 | esac |
|
|
61 | shift |
|
|
62 | done |
|
|
63 | |
| 28 | if [[ "$#" -ne 2 ]]; then |
64 | if [[ "$#" -ne 2 ]]; then |
| 29 | die "${FUNCNAME}() requires 2 arguments" |
65 | die "${FUNCNAME}() requires 2 arguments" |
| 30 | fi |
66 | fi |
| 31 | |
67 | |
|
|
68 | PYTHON_ABI="$1" |
|
|
69 | |
|
|
70 | if [[ "${patterns_list}" == "0" ]]; then |
|
|
71 | pattern="$2" |
|
|
72 | |
| 32 | if [[ "$2" == *"-cpython" ]]; then |
73 | if [[ "${pattern}" == *"-cpython" ]]; then |
| 33 | [[ "$1" =~ ^[[:digit:]]+\.[[:digit:]]+$ && "$1" == ${2%-cpython} ]] |
74 | [[ "${PYTHON_ABI}" =~ ^[[:digit:]]+\.[[:digit:]]+$ && "${PYTHON_ABI}" == ${pattern%-cpython} ]] |
| 34 | elif [[ "$2" == *"-jython" ]]; then |
75 | elif [[ "${pattern}" == *"-jython" ]]; then |
| 35 | [[ "$1" == $2 ]] |
76 | [[ "${PYTHON_ABI}" == ${pattern} ]] |
| 36 | else |
77 | elif [[ "${pattern}" == *"-pypy-"* ]]; then |
| 37 | if [[ "$1" =~ ^[[:digit:]]+\.[[:digit:]]+$ ]]; then |
78 | [[ "${PYTHON_ABI}" == ${pattern} ]] |
| 38 | [[ "$1" == $2 ]] |
|
|
| 39 | elif [[ "$1" =~ ^[[:digit:]]+\.[[:digit:]]+-jython$ ]]; then |
|
|
| 40 | [[ "${1%-jython}" == $2 ]] |
|
|
| 41 | else |
79 | else |
|
|
80 | if [[ "${PYTHON_ABI}" =~ ^[[:digit:]]+\.[[:digit:]]+$ ]]; then |
|
|
81 | [[ "${PYTHON_ABI}" == ${pattern} ]] |
|
|
82 | elif [[ "${PYTHON_ABI}" =~ ^[[:digit:]]+\.[[:digit:]]+-jython$ ]]; then |
|
|
83 | [[ "${PYTHON_ABI%-jython}" == ${pattern} ]] |
|
|
84 | elif [[ "${PYTHON_ABI}" =~ ^[[:digit:]]+\.[[:digit:]]+-pypy-[[:digit:]]+\.[[:digit:]]+$ ]]; then |
|
|
85 | [[ "${PYTHON_ABI%-pypy-*}" == ${pattern} ]] |
|
|
86 | else |
| 42 | die "${FUNCNAME}(): Unrecognized Python ABI '$1'" |
87 | die "${FUNCNAME}(): Unrecognized Python ABI '${PYTHON_ABI}'" |
| 43 | fi |
88 | fi |
|
|
89 | fi |
|
|
90 | else |
|
|
91 | patterns="${2// /$'\n'}" |
|
|
92 | |
|
|
93 | while read pattern; do |
|
|
94 | if _python_check_python_abi_matching "${PYTHON_ABI}" "${pattern}"; then |
|
|
95 | return 0 |
|
|
96 | fi |
|
|
97 | done <<< "${patterns}" |
|
|
98 | |
|
|
99 | return 1 |
|
|
100 | fi |
|
|
101 | } |
|
|
102 | |
|
|
103 | _python_package_supporting_installation_for_multiple_python_abis() { |
|
|
104 | if has "${EAPI:-0}" 0 1 2 3 4; then |
|
|
105 | if [[ -n "${SUPPORT_PYTHON_ABIS}" ]]; then |
|
|
106 | return 0 |
|
|
107 | else |
|
|
108 | return 1 |
|
|
109 | fi |
|
|
110 | else |
|
|
111 | die "${FUNCNAME}(): Support for EAPI=\"${EAPI}\" not implemented" |
| 44 | fi |
112 | fi |
| 45 | } |
113 | } |
| 46 | |
114 | |
| 47 | # @ECLASS-VARIABLE: PYTHON_DEPEND |
115 | # @ECLASS-VARIABLE: PYTHON_DEPEND |
| 48 | # @DESCRIPTION: |
116 | # @DESCRIPTION: |
| … | |
… | |
| 241 | _python_implementation() { |
309 | _python_implementation() { |
| 242 | if [[ "${CATEGORY}/${PN}" == "dev-lang/python" ]]; then |
310 | if [[ "${CATEGORY}/${PN}" == "dev-lang/python" ]]; then |
| 243 | return 0 |
311 | return 0 |
| 244 | elif [[ "${CATEGORY}/${PN}" == "dev-java/jython" ]]; then |
312 | elif [[ "${CATEGORY}/${PN}" == "dev-java/jython" ]]; then |
| 245 | return 0 |
313 | return 0 |
|
|
314 | elif [[ "${CATEGORY}/${PN}" == "dev-python/pypy" ]]; then |
|
|
315 | return 0 |
| 246 | else |
316 | else |
| 247 | return 1 |
317 | return 1 |
| 248 | fi |
|
|
| 249 | } |
|
|
| 250 | |
|
|
| 251 | _python_package_supporting_installation_for_multiple_python_abis() { |
|
|
| 252 | if [[ "${EBUILD_PHASE}" == "depend" ]]; then |
|
|
| 253 | die "${FUNCNAME}() cannot be used in global scope" |
|
|
| 254 | fi |
|
|
| 255 | |
|
|
| 256 | if has "${EAPI:-0}" 0 1 2 3 4; then |
|
|
| 257 | if [[ -n "${SUPPORT_PYTHON_ABIS}" ]]; then |
|
|
| 258 | return 0 |
|
|
| 259 | else |
|
|
| 260 | return 1 |
|
|
| 261 | fi |
|
|
| 262 | else |
|
|
| 263 | die "${FUNCNAME}(): Support for EAPI=\"${EAPI}\" not implemented" |
|
|
| 264 | fi |
318 | fi |
| 265 | } |
319 | } |
| 266 | |
320 | |
| 267 | _python_abi-specific_local_scope() { |
321 | _python_abi-specific_local_scope() { |
| 268 | [[ " ${FUNCNAME[@]:2} " =~ " "(_python_final_sanity_checks|python_execute_function|python_mod_optimize|python_mod_cleanup)" " ]] |
322 | [[ " ${FUNCNAME[@]:2} " =~ " "(_python_final_sanity_checks|python_execute_function|python_mod_optimize|python_mod_cleanup)" " ]] |
| … | |
… | |
| 342 | _CYAN= |
396 | _CYAN= |
| 343 | _NORMAL= |
397 | _NORMAL= |
| 344 | fi |
398 | fi |
| 345 | } |
399 | } |
| 346 | |
400 | |
| 347 | unset PYTHON_PKG_SETUP_EXECUTED |
|
|
| 348 | |
|
|
| 349 | _python_check_python_pkg_setup_execution() { |
401 | _python_check_python_pkg_setup_execution() { |
| 350 | [[ " ${FUNCNAME[@]:1} " =~ " "(python_set_active_version|python_pkg_setup)" " ]] && return |
402 | [[ " ${FUNCNAME[@]:1} " =~ " "(python_set_active_version|python_pkg_setup)" " ]] && return |
| 351 | |
403 | |
| 352 | if ! has "${EAPI:-0}" 0 1 2 3 && [[ -z "${PYTHON_PKG_SETUP_EXECUTED}" ]]; then |
404 | if ! has "${EAPI:-0}" 0 1 2 3 && [[ -z "${PYTHON_PKG_SETUP_EXECUTED}" ]]; then |
| 353 | die "python_pkg_setup() not called" |
405 | die "python_pkg_setup() not called" |
| … | |
… | |
| 358 | # @DESCRIPTION: |
410 | # @DESCRIPTION: |
| 359 | # Perform sanity checks and initialize environment. |
411 | # Perform sanity checks and initialize environment. |
| 360 | # |
412 | # |
| 361 | # This function is exported in EAPI 2 and 3 when PYTHON_USE_WITH or PYTHON_USE_WITH_OR variable |
413 | # This function is exported in EAPI 2 and 3 when PYTHON_USE_WITH or PYTHON_USE_WITH_OR variable |
| 362 | # is set and always in EAPI >=4. Calling of this function is mandatory in EAPI >=4. |
414 | # is set and always in EAPI >=4. Calling of this function is mandatory in EAPI >=4. |
| 363 | # |
|
|
| 364 | # This function can be used only in pkg_setup() phase. |
|
|
| 365 | python_pkg_setup() { |
415 | python_pkg_setup() { |
| 366 | # Check if phase is pkg_setup(). |
416 | if [[ "${EBUILD_PHASE}" != "setup" ]]; then |
| 367 | [[ "${EBUILD_PHASE}" != "setup" ]] && die "${FUNCNAME}() can be used only in pkg_setup() phase" |
417 | die "${FUNCNAME}() can be used only in pkg_setup() phase" |
|
|
418 | fi |
| 368 | |
419 | |
| 369 | if [[ "$#" -ne 0 ]]; then |
420 | if [[ "$#" -ne 0 ]]; then |
| 370 | die "${FUNCNAME}() does not accept arguments" |
421 | die "${FUNCNAME}() does not accept arguments" |
| 371 | fi |
422 | fi |
| 372 | |
423 | |
| … | |
… | |
| 422 | fi |
473 | fi |
| 423 | |
474 | |
| 424 | PYTHON_PKG_SETUP_EXECUTED="1" |
475 | PYTHON_PKG_SETUP_EXECUTED="1" |
| 425 | } |
476 | } |
| 426 | |
477 | |
| 427 | if ! has "${EAPI:-0}" 0 1 2 3 || { has "${EAPI:-0}" 2 3 && [[ -n "${PYTHON_USE_WITH}" || -n "${PYTHON_USE_WITH_OR}" ]]; }; then |
|
|
| 428 | EXPORT_FUNCTIONS pkg_setup |
|
|
| 429 | fi |
|
|
| 430 | |
|
|
| 431 | _PYTHON_SHEBANG_BASE_PART_REGEX='^#![[:space:]]*([^[:space:]]*/usr/bin/env[[:space:]]+)?([^[:space:]]*/)?(jython|python)' |
478 | _PYTHON_SHEBANG_BASE_PART_REGEX='^#![[:space:]]*([^[:space:]]*/usr/bin/env[[:space:]]+)?([^[:space:]]*/)?(jython|pypy-c|python)' |
| 432 | |
479 | |
| 433 | # @FUNCTION: python_convert_shebangs |
480 | # @FUNCTION: python_convert_shebangs |
| 434 | # @USAGE: [-q|--quiet] [-r|--recursive] [-x|--only-executables] [--] <Python_ABI|Python_version> <file|directory> [files|directories] |
481 | # @USAGE: [-q|--quiet] [-r|--recursive] [-x|--only-executables] [--] <Python_ABI|Python_version> <file|directory> [files|directories] |
| 435 | # @DESCRIPTION: |
482 | # @DESCRIPTION: |
| 436 | # Convert shebangs in specified files. Directories can be specified only with --recursive option. |
483 | # Convert shebangs in specified files. Directories can be specified only with --recursive option. |
| 437 | python_convert_shebangs() { |
484 | python_convert_shebangs() { |
| 438 | _python_check_python_pkg_setup_execution |
485 | _python_check_python_pkg_setup_execution |
| 439 | |
486 | |
| 440 | local argument file files=() only_executables="0" python_interpreter quiet="0" recursive="0" |
487 | local argument file files=() only_executables="0" python_interpreter quiet="0" recursive="0" shebangs_converted="0" |
| 441 | |
488 | |
| 442 | while (($#)); do |
489 | while (($#)); do |
| 443 | case "$1" in |
490 | case "$1" in |
| 444 | -r|--recursive) |
491 | -r|--recursive) |
| 445 | recursive="1" |
492 | recursive="1" |
| … | |
… | |
| 500 | [[ "${only_executables}" == "1" && ! -x "${file}" ]] && continue |
547 | [[ "${only_executables}" == "1" && ! -x "${file}" ]] && continue |
| 501 | |
548 | |
| 502 | if [[ "$(head -n1 "${file}")" =~ ${_PYTHON_SHEBANG_BASE_PART_REGEX} ]]; then |
549 | if [[ "$(head -n1 "${file}")" =~ ${_PYTHON_SHEBANG_BASE_PART_REGEX} ]]; then |
| 503 | [[ "$(sed -ne "2p" "${file}")" =~ ^"# Gentoo '".*"' wrapper script generated by python_generate_wrapper_scripts()"$ ]] && continue |
550 | [[ "$(sed -ne "2p" "${file}")" =~ ^"# Gentoo '".*"' wrapper script generated by python_generate_wrapper_scripts()"$ ]] && continue |
| 504 | |
551 | |
|
|
552 | shebangs_converted="1" |
|
|
553 | |
| 505 | if [[ "${quiet}" == "0" ]]; then |
554 | if [[ "${quiet}" == "0" ]]; then |
| 506 | einfo "Converting shebang in '${file}'" |
555 | einfo "Converting shebang in '${file}'" |
| 507 | fi |
556 | fi |
| 508 | |
557 | |
| 509 | sed -e "1s:^#![[:space:]]*\([^[:space:]]*/usr/bin/env[[:space:]]\)\?[[:space:]]*\([^[:space:]]*/\)\?\(jython\|python\)\([[:digit:]]\+\(\.[[:digit:]]\+\)\?\)\?\(\$\|[[:space:]].*\):#!\1\2${python_interpreter}\6:" -i "${file}" || die "Conversion of shebang in '${file}' failed" |
558 | sed -e "1s:^#![[:space:]]*\([^[:space:]]*/usr/bin/env[[:space:]]\)\?[[:space:]]*\([^[:space:]]*/\)\?\(jython\|pypy-c\|python\)\([[:digit:]]\+\(\.[[:digit:]]\+\)\?\)\?\(\$\|[[:space:]].*\):#!\1\2${python_interpreter}\6:" -i "${file}" || die "Conversion of shebang in '${file}' failed" |
|
|
559 | fi |
|
|
560 | done |
|
|
561 | |
|
|
562 | if [[ "${shebangs_converted}" == "0" ]]; then |
|
|
563 | ewarn "${FUNCNAME}(): Python scripts not found" |
| 510 | fi |
564 | fi |
| 511 | done |
|
|
| 512 | } |
565 | } |
| 513 | |
566 | |
| 514 | # @FUNCTION: python_clean_installation_image |
567 | # @FUNCTION: python_clean_py-compile_files |
| 515 | # @USAGE: [-q|--quiet] |
568 | # @USAGE: [-q|--quiet] |
| 516 | # @DESCRIPTION: |
569 | # @DESCRIPTION: |
| 517 | # Delete needless files in installation image. |
570 | # Clean py-compile files to disable byte-compilation. |
| 518 | python_clean_installation_image() { |
571 | python_clean_py-compile_files() { |
| 519 | _python_check_python_pkg_setup_execution |
572 | _python_check_python_pkg_setup_execution |
| 520 | _python_initialize_prefix_variables |
|
|
| 521 | |
573 | |
| 522 | local file files=() quiet="0" |
574 | local file files=() quiet="0" |
| 523 | |
|
|
| 524 | # Check if phase is src_install(). |
|
|
| 525 | [[ "${EBUILD_PHASE}" != "install" ]] && die "${FUNCNAME}() can be used only in src_install() phase" |
|
|
| 526 | |
575 | |
| 527 | while (($#)); do |
576 | while (($#)); do |
| 528 | case "$1" in |
577 | case "$1" in |
| 529 | -q|--quiet) |
578 | -q|--quiet) |
| 530 | quiet="1" |
579 | quiet="1" |
| … | |
… | |
| 538 | esac |
587 | esac |
| 539 | shift |
588 | shift |
| 540 | done |
589 | done |
| 541 | |
590 | |
| 542 | while read -d $'\0' -r file; do |
591 | while read -d $'\0' -r file; do |
|
|
592 | files+=("${file#./}") |
|
|
593 | done < <(find -name py-compile -type f -print0) |
|
|
594 | |
|
|
595 | for file in "${files[@]}"; do |
|
|
596 | if [[ "${quiet}" == "0" ]]; then |
|
|
597 | einfo "Cleaning '${file}' file" |
|
|
598 | fi |
|
|
599 | echo "#!/bin/sh" > "${file}" |
|
|
600 | done |
|
|
601 | } |
|
|
602 | |
|
|
603 | # @FUNCTION: python_clean_installation_image |
|
|
604 | # @USAGE: [-q|--quiet] |
|
|
605 | # @DESCRIPTION: |
|
|
606 | # Delete needless files in installation image. |
|
|
607 | # |
|
|
608 | # This function can be used only in src_install() phase. |
|
|
609 | python_clean_installation_image() { |
|
|
610 | if [[ "${EBUILD_PHASE}" != "install" ]]; then |
|
|
611 | die "${FUNCNAME}() can be used only in src_install() phase" |
|
|
612 | fi |
|
|
613 | |
|
|
614 | _python_check_python_pkg_setup_execution |
|
|
615 | _python_initialize_prefix_variables |
|
|
616 | |
|
|
617 | local file files=() quiet="0" |
|
|
618 | |
|
|
619 | while (($#)); do |
|
|
620 | case "$1" in |
|
|
621 | -q|--quiet) |
|
|
622 | quiet="1" |
|
|
623 | ;; |
|
|
624 | -*) |
|
|
625 | die "${FUNCNAME}(): Unrecognized option '$1'" |
|
|
626 | ;; |
|
|
627 | *) |
|
|
628 | die "${FUNCNAME}(): Invalid usage" |
|
|
629 | ;; |
|
|
630 | esac |
|
|
631 | shift |
|
|
632 | done |
|
|
633 | |
|
|
634 | while read -d $'\0' -r file; do |
| 543 | files+=("${file}") |
635 | files+=("${file}") |
| 544 | done < <(find "${ED}" "(" -name "*.py[co]" -o -name "*\$py.class" ")" -type f -print0) |
636 | done < <(find "${ED}" "(" -name "*.py[co]" -o -name "*\$py.class" ")" -type f -print0) |
| 545 | |
637 | |
| 546 | if [[ "${#files[@]}" -gt 0 ]]; then |
638 | if [[ "${#files[@]}" -gt 0 ]]; then |
| 547 | if [[ "${quiet}" == "0" ]]; then |
639 | if [[ "${quiet}" == "0" ]]; then |
| … | |
… | |
| 581 | # @ECLASS-VARIABLE: SUPPORT_PYTHON_ABIS |
673 | # @ECLASS-VARIABLE: SUPPORT_PYTHON_ABIS |
| 582 | # @DESCRIPTION: |
674 | # @DESCRIPTION: |
| 583 | # Set this in EAPI <= 4 to indicate that current package supports installation for |
675 | # Set this in EAPI <= 4 to indicate that current package supports installation for |
| 584 | # multiple Python ABIs. |
676 | # multiple Python ABIs. |
| 585 | |
677 | |
|
|
678 | # @ECLASS-VARIABLE: PYTHON_TESTS_RESTRICTED_ABIS |
|
|
679 | # @DESCRIPTION: |
|
|
680 | # Space-separated list of Python ABI patterns. Testing in Python ABIs matching any Python ABI |
|
|
681 | # patterns specified in this list is skipped. |
|
|
682 | |
| 586 | # @ECLASS-VARIABLE: PYTHON_EXPORT_PHASE_FUNCTIONS |
683 | # @ECLASS-VARIABLE: PYTHON_EXPORT_PHASE_FUNCTIONS |
| 587 | # @DESCRIPTION: |
684 | # @DESCRIPTION: |
| 588 | # Set this to export phase functions for the following ebuild phases: |
685 | # Set this to export phase functions for the following ebuild phases: |
| 589 | # src_prepare, src_configure, src_compile, src_test, src_install. |
686 | # src_prepare(), src_configure(), src_compile(), src_test(), src_install(). |
| 590 | if ! has "${EAPI:-0}" 0 1; then |
687 | if ! has "${EAPI:-0}" 0 1; then |
| 591 | python_src_prepare() { |
688 | python_src_prepare() { |
| 592 | _python_check_python_pkg_setup_execution |
689 | if [[ "${EBUILD_PHASE}" != "prepare" ]]; then |
|
|
690 | die "${FUNCNAME}() can be used only in src_prepare() phase" |
|
|
691 | fi |
| 593 | |
692 | |
| 594 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
693 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
| 595 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
694 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
| 596 | fi |
695 | fi |
| 597 | |
696 | |
|
|
697 | _python_check_python_pkg_setup_execution |
|
|
698 | |
| 598 | if [[ "$#" -ne 0 ]]; then |
699 | if [[ "$#" -ne 0 ]]; then |
| 599 | die "${FUNCNAME}() does not accept arguments" |
700 | die "${FUNCNAME}() does not accept arguments" |
| 600 | fi |
701 | fi |
| 601 | |
702 | |
| 602 | python_copy_sources |
703 | python_copy_sources |
| 603 | } |
704 | } |
| 604 | |
705 | |
| 605 | for python_default_function in src_configure src_compile src_test src_install; do |
706 | for python_default_function in src_configure src_compile src_test; do |
| 606 | eval "python_${python_default_function}() { |
707 | eval "python_${python_default_function}() { |
| 607 | _python_check_python_pkg_setup_execution |
708 | if [[ \"\${EBUILD_PHASE}\" != \"${python_default_function#src_}\" ]]; then |
|
|
709 | die \"\${FUNCNAME}() can be used only in ${python_default_function}() phase\" |
|
|
710 | fi |
| 608 | |
711 | |
| 609 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
712 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
| 610 | die \"\${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs\" |
713 | die \"\${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs\" |
| 611 | fi |
714 | fi |
| 612 | |
715 | |
|
|
716 | _python_check_python_pkg_setup_execution |
|
|
717 | |
| 613 | python_execute_function -d -s -- \"\$@\" |
718 | python_execute_function -d -s -- \"\$@\" |
| 614 | }" |
719 | }" |
| 615 | done |
720 | done |
| 616 | unset python_default_function |
721 | unset python_default_function |
| 617 | |
722 | |
|
|
723 | python_src_install() { |
|
|
724 | if [[ "${EBUILD_PHASE}" != "install" ]]; then |
|
|
725 | die "${FUNCNAME}() can be used only in src_install() phase" |
|
|
726 | fi |
|
|
727 | |
|
|
728 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
729 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
|
|
730 | fi |
|
|
731 | |
|
|
732 | _python_check_python_pkg_setup_execution |
|
|
733 | |
|
|
734 | if has "${EAPI:-0}" 0 1 2 3; then |
|
|
735 | python_execute_function -d -s -- "$@" |
|
|
736 | else |
|
|
737 | python_installation() { |
|
|
738 | emake DESTDIR="${T}/images/${PYTHON_ABI}" install "$@" |
|
|
739 | } |
|
|
740 | python_execute_function -s python_installation "$@" |
|
|
741 | unset python_installation |
|
|
742 | |
|
|
743 | python_merge_intermediate_installation_images "${T}/images" |
|
|
744 | fi |
|
|
745 | } |
|
|
746 | |
| 618 | if [[ -n "${PYTHON_EXPORT_PHASE_FUNCTIONS}" ]]; then |
747 | if [[ -n "${PYTHON_EXPORT_PHASE_FUNCTIONS}" ]]; then |
| 619 | EXPORT_FUNCTIONS src_prepare src_configure src_compile src_test src_install |
748 | EXPORT_FUNCTIONS src_prepare src_configure src_compile src_test src_install |
| 620 | fi |
749 | fi |
| 621 | fi |
750 | fi |
| 622 | |
751 | |
| 623 | if has "${EAPI:-0}" 0 1 2 3; then |
752 | if has "${EAPI:-0}" 0 1 2 3 4; then |
| 624 | unset PYTHON_ABIS |
753 | unset PYTHON_ABIS |
| 625 | fi |
754 | fi |
| 626 | |
755 | |
| 627 | _python_calculate_PYTHON_ABIS() { |
756 | _python_calculate_PYTHON_ABIS() { |
| 628 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
757 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
| 629 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
758 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
| 630 | fi |
759 | fi |
| 631 | |
760 | |
| 632 | _python_initial_sanity_checks |
761 | _python_initial_sanity_checks |
| 633 | |
762 | |
| 634 | if [[ "$(declare -p PYTHON_ABIS 2> /dev/null)" != "declare -x PYTHON_ABIS="* ]] && has "${EAPI:-0}" 0 1 2 3; then |
763 | if [[ "$(declare -p PYTHON_ABIS 2> /dev/null)" != "declare -x PYTHON_ABIS="* ]] && has "${EAPI:-0}" 0 1 2 3 4; then |
| 635 | local PYTHON_ABI restricted_ABI restricted_ABIs support_ABI supported_PYTHON_ABIS |
764 | local PYTHON_ABI |
| 636 | |
|
|
| 637 | restricted_ABIs="${RESTRICT_PYTHON_ABIS// /$'\n'}" |
|
|
| 638 | |
765 | |
| 639 | if [[ "$(declare -p USE_PYTHON 2> /dev/null)" == "declare -x USE_PYTHON="* ]]; then |
766 | if [[ "$(declare -p USE_PYTHON 2> /dev/null)" == "declare -x USE_PYTHON="* ]]; then |
| 640 | local cpython_enabled="0" |
767 | local cpython_enabled="0" |
| 641 | |
768 | |
| 642 | if [[ -z "${USE_PYTHON}" ]]; then |
769 | if [[ -z "${USE_PYTHON}" ]]; then |
| … | |
… | |
| 650 | |
777 | |
| 651 | if has "${PYTHON_ABI}" "${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]}" "${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]}"; then |
778 | if has "${PYTHON_ABI}" "${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]}" "${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]}"; then |
| 652 | cpython_enabled="1" |
779 | cpython_enabled="1" |
| 653 | fi |
780 | fi |
| 654 | |
781 | |
| 655 | support_ABI="1" |
|
|
| 656 | while read restricted_ABI; do |
|
|
| 657 | if _python_check_python_abi_matching "${PYTHON_ABI}" "${restricted_ABI}"; then |
782 | if ! _python_check_python_abi_matching --patterns-list "${PYTHON_ABI}" "${RESTRICT_PYTHON_ABIS}"; then |
| 658 | support_ABI="0" |
783 | export PYTHON_ABIS+="${PYTHON_ABIS:+ }${PYTHON_ABI}" |
| 659 | break |
|
|
| 660 | fi |
784 | fi |
| 661 | done <<< "${restricted_ABIs}" |
|
|
| 662 | [[ "${support_ABI}" == "1" ]] && export PYTHON_ABIS+="${PYTHON_ABIS:+ }${PYTHON_ABI}" |
|
|
| 663 | done |
785 | done |
| 664 | |
786 | |
| 665 | if [[ -z "${PYTHON_ABIS//[${IFS}]/}" ]]; then |
787 | if [[ -z "${PYTHON_ABIS//[${IFS}]/}" ]]; then |
| 666 | die "USE_PYTHON variable does not enable any Python ABI supported by ${CATEGORY}/${PF}" |
788 | die "USE_PYTHON variable does not enable any Python ABI supported by ${CATEGORY}/${PF}" |
| 667 | fi |
789 | fi |
| 668 | |
790 | |
| 669 | if [[ "${cpython_enabled}" == "0" ]]; then |
791 | if [[ "${cpython_enabled}" == "0" ]]; then |
| 670 | die "USE_PYTHON variable does not enable any CPython ABI" |
792 | die "USE_PYTHON variable does not enable any CPython ABI" |
| 671 | fi |
793 | fi |
| 672 | else |
794 | else |
| 673 | local python_version python2_version= python3_version= support_python_major_version |
795 | local python_version python2_version python3_version support_python_major_version |
| 674 | |
796 | |
| 675 | if ! has_version "dev-lang/python"; then |
797 | if ! has_version "dev-lang/python"; then |
| 676 | die "${FUNCNAME}(): 'dev-lang/python' is not installed" |
798 | die "${FUNCNAME}(): 'dev-lang/python' is not installed" |
| 677 | fi |
799 | fi |
| 678 | |
800 | |
| … | |
… | |
| 683 | die "'${EPREFIX}/usr/bin/python2' is not valid symlink" |
805 | die "'${EPREFIX}/usr/bin/python2' is not valid symlink" |
| 684 | fi |
806 | fi |
| 685 | |
807 | |
| 686 | python2_version="$("${EPREFIX}/usr/bin/python2" -c 'from sys import version_info; print(".".join(str(x) for x in version_info[:2]))')" |
808 | python2_version="$("${EPREFIX}/usr/bin/python2" -c 'from sys import version_info; print(".".join(str(x) for x in version_info[:2]))')" |
| 687 | |
809 | |
|
|
810 | support_python_major_version="0" |
| 688 | for PYTHON_ABI in "${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]}"; do |
811 | for PYTHON_ABI in "${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]}"; do |
|
|
812 | if ! _python_check_python_abi_matching --patterns-list "${PYTHON_ABI}" "${RESTRICT_PYTHON_ABIS}"; then |
| 689 | support_python_major_version="1" |
813 | support_python_major_version="1" |
| 690 | while read restricted_ABI; do |
814 | break |
| 691 | if _python_check_python_abi_matching "${PYTHON_ABI}" "${restricted_ABI}"; then |
|
|
| 692 | support_python_major_version="0" |
|
|
| 693 | fi |
815 | fi |
| 694 | done <<< "${restricted_ABIs}" |
|
|
| 695 | [[ "${support_python_major_version}" == "1" ]] && break |
|
|
| 696 | done |
816 | done |
| 697 | if [[ "${support_python_major_version}" == "1" ]]; then |
817 | if [[ "${support_python_major_version}" == "1" ]]; then |
| 698 | while read restricted_ABI; do |
|
|
| 699 | if _python_check_python_abi_matching "${python2_version}" "${restricted_ABI}"; then |
818 | if _python_check_python_abi_matching --patterns-list "${python2_version}" "${RESTRICT_PYTHON_ABIS}"; then |
| 700 | die "Active version of CPython 2 is not supported by ${CATEGORY}/${PF}" |
819 | die "Active version of CPython 2 is not supported by ${CATEGORY}/${PF}" |
| 701 | fi |
820 | fi |
| 702 | done <<< "${restricted_ABIs}" |
|
|
| 703 | else |
821 | else |
| 704 | python2_version="" |
822 | python2_version="" |
| 705 | fi |
823 | fi |
| 706 | fi |
824 | fi |
| 707 | |
825 | |
| … | |
… | |
| 710 | die "'${EPREFIX}/usr/bin/python3' is not valid symlink" |
828 | die "'${EPREFIX}/usr/bin/python3' is not valid symlink" |
| 711 | fi |
829 | fi |
| 712 | |
830 | |
| 713 | python3_version="$("${EPREFIX}/usr/bin/python3" -c 'from sys import version_info; print(".".join(str(x) for x in version_info[:2]))')" |
831 | python3_version="$("${EPREFIX}/usr/bin/python3" -c 'from sys import version_info; print(".".join(str(x) for x in version_info[:2]))')" |
| 714 | |
832 | |
|
|
833 | support_python_major_version="0" |
| 715 | for PYTHON_ABI in "${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]}"; do |
834 | for PYTHON_ABI in "${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]}"; do |
|
|
835 | if ! _python_check_python_abi_matching --patterns-list "${PYTHON_ABI}" "${RESTRICT_PYTHON_ABIS}"; then |
| 716 | support_python_major_version="1" |
836 | support_python_major_version="1" |
| 717 | while read restricted_ABI; do |
837 | break |
| 718 | if _python_check_python_abi_matching "${PYTHON_ABI}" "${restricted_ABI}"; then |
|
|
| 719 | support_python_major_version="0" |
|
|
| 720 | fi |
838 | fi |
| 721 | done <<< "${restricted_ABIs}" |
|
|
| 722 | [[ "${support_python_major_version}" == "1" ]] && break |
|
|
| 723 | done |
839 | done |
| 724 | if [[ "${support_python_major_version}" == "1" ]]; then |
840 | if [[ "${support_python_major_version}" == "1" ]]; then |
| 725 | while read restricted_ABI; do |
|
|
| 726 | if _python_check_python_abi_matching "${python3_version}" "${restricted_ABI}"; then |
841 | if _python_check_python_abi_matching --patterns-list "${python3_version}" "${RESTRICT_PYTHON_ABIS}"; then |
| 727 | die "Active version of CPython 3 is not supported by ${CATEGORY}/${PF}" |
842 | die "Active version of CPython 3 is not supported by ${CATEGORY}/${PF}" |
| 728 | fi |
843 | fi |
| 729 | done <<< "${restricted_ABIs}" |
|
|
| 730 | else |
844 | else |
| 731 | python3_version="" |
845 | python3_version="" |
| 732 | fi |
846 | fi |
| 733 | fi |
847 | fi |
| 734 | |
848 | |
| … | |
… | |
| 759 | eval "_PYTHON_SAVED_${variable}=\"\${!variable}\"" |
873 | eval "_PYTHON_SAVED_${variable}=\"\${!variable}\"" |
| 760 | for prefix in PYTHON_USER_ PYTHON_; do |
874 | for prefix in PYTHON_USER_ PYTHON_; do |
| 761 | if [[ "$(declare -p ${prefix}${variable} 2> /dev/null)" == "declare -a ${prefix}${variable}="* ]]; then |
875 | if [[ "$(declare -p ${prefix}${variable} 2> /dev/null)" == "declare -a ${prefix}${variable}="* ]]; then |
| 762 | eval "array=(\"\${${prefix}${variable}[@]}\")" |
876 | eval "array=(\"\${${prefix}${variable}[@]}\")" |
| 763 | for element in "${array[@]}"; do |
877 | for element in "${array[@]}"; do |
| 764 | if [[ "${element}" =~ ^([[:alnum:]]|\.|-|\*|\[|\])+\ (\+|-)\ .+ ]]; then |
878 | if [[ "${element}" =~ ^${_PYTHON_ABI_PATTERN_REGEX}\ (\+|-)\ .+ ]]; then |
| 765 | pattern="${element%% *}" |
879 | pattern="${element%% *}" |
| 766 | element="${element#* }" |
880 | element="${element#* }" |
| 767 | operator="${element%% *}" |
881 | operator="${element%% *}" |
| 768 | flags="${element#* }" |
882 | flags="${element#* }" |
| 769 | if _python_check_python_abi_matching "${PYTHON_ABI}" "${pattern}"; then |
883 | if _python_check_python_abi_matching "${PYTHON_ABI}" "${pattern}"; then |
| … | |
… | |
| 808 | # @USAGE: [--action-message message] [-d|--default-function] [--failure-message message] [-f|--final-ABI] [--nonfatal] [-q|--quiet] [-s|--separate-build-dirs] [--source-dir source_directory] [--] <function> [arguments] |
922 | # @USAGE: [--action-message message] [-d|--default-function] [--failure-message message] [-f|--final-ABI] [--nonfatal] [-q|--quiet] [-s|--separate-build-dirs] [--source-dir source_directory] [--] <function> [arguments] |
| 809 | # @DESCRIPTION: |
923 | # @DESCRIPTION: |
| 810 | # Execute specified function for each value of PYTHON_ABIS, optionally passing additional |
924 | # Execute specified function for each value of PYTHON_ABIS, optionally passing additional |
| 811 | # arguments. The specified function can use PYTHON_ABI and BUILDDIR variables. |
925 | # arguments. The specified function can use PYTHON_ABI and BUILDDIR variables. |
| 812 | python_execute_function() { |
926 | python_execute_function() { |
| 813 | _python_check_python_pkg_setup_execution |
|
|
| 814 | |
|
|
| 815 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
927 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
| 816 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
928 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
| 817 | fi |
929 | fi |
| 818 | |
930 | |
|
|
931 | _python_check_python_pkg_setup_execution |
| 819 | _python_set_color_variables |
932 | _python_set_color_variables |
| 820 | |
933 | |
| 821 | local action action_message action_message_template= default_function="0" failure_message failure_message_template= final_ABI="0" function iterated_PYTHON_ABIS nonfatal="0" previous_directory previous_directory_stack previous_directory_stack_length PYTHON_ABI quiet="0" return_code separate_build_dirs="0" source_dir= |
934 | local action action_message action_message_template default_function="0" failure_message failure_message_template final_ABI="0" function iterated_PYTHON_ABIS nonfatal="0" previous_directory previous_directory_stack previous_directory_stack_length PYTHON_ABI quiet="0" return_code separate_build_dirs="0" source_dir |
| 822 | |
935 | |
| 823 | while (($#)); do |
936 | while (($#)); do |
| 824 | case "$1" in |
937 | case "$1" in |
| 825 | --action-message) |
938 | --action-message) |
| 826 | action_message_template="$2" |
939 | action_message_template="$2" |
| … | |
… | |
| 938 | iterated_PYTHON_ABIS="$(PYTHON -f --ABI)" |
1051 | iterated_PYTHON_ABIS="$(PYTHON -f --ABI)" |
| 939 | else |
1052 | else |
| 940 | iterated_PYTHON_ABIS="${PYTHON_ABIS}" |
1053 | iterated_PYTHON_ABIS="${PYTHON_ABIS}" |
| 941 | fi |
1054 | fi |
| 942 | for PYTHON_ABI in ${iterated_PYTHON_ABIS}; do |
1055 | for PYTHON_ABI in ${iterated_PYTHON_ABIS}; do |
|
|
1056 | if [[ "${EBUILD_PHASE}" == "test" ]] && _python_check_python_abi_matching --patterns-list "${PYTHON_ABI}" "${PYTHON_TESTS_RESTRICTED_ABIS}"; then |
|
|
1057 | if [[ "${quiet}" == "0" ]]; then |
|
|
1058 | echo " ${_GREEN}*${_NORMAL} ${_BLUE}Testing of ${CATEGORY}/${PF} with $(python_get_implementation_and_version) skipped${_NORMAL}" |
|
|
1059 | fi |
|
|
1060 | continue |
|
|
1061 | fi |
|
|
1062 | |
| 943 | _python_prepare_flags |
1063 | _python_prepare_flags |
| 944 | |
1064 | |
| 945 | if [[ "${quiet}" == "0" ]]; then |
1065 | if [[ "${quiet}" == "0" ]]; then |
| 946 | if [[ -n "${action_message_template}" ]]; then |
1066 | if [[ -n "${action_message_template}" ]]; then |
| 947 | eval "action_message=\"${action_message_template}\"" |
1067 | eval "action_message=\"${action_message_template}\"" |
| 948 | else |
1068 | else |
| 949 | action_message="${action} of ${CATEGORY}/${PF} with $(python_get_implementation) $(python_get_version)..." |
1069 | action_message="${action} of ${CATEGORY}/${PF} with $(python_get_implementation_and_version)..." |
| 950 | fi |
1070 | fi |
| 951 | echo " ${_GREEN}*${_NORMAL} ${_BLUE}${action_message}${_NORMAL}" |
1071 | echo " ${_GREEN}*${_NORMAL} ${_BLUE}${action_message}${_NORMAL}" |
| 952 | fi |
1072 | fi |
| 953 | |
1073 | |
| 954 | if [[ "${separate_build_dirs}" == "1" ]]; then |
1074 | if [[ "${separate_build_dirs}" == "1" ]]; then |
| … | |
… | |
| 978 | |
1098 | |
| 979 | if [[ "${return_code}" -ne 0 ]]; then |
1099 | if [[ "${return_code}" -ne 0 ]]; then |
| 980 | if [[ -n "${failure_message_template}" ]]; then |
1100 | if [[ -n "${failure_message_template}" ]]; then |
| 981 | eval "failure_message=\"${failure_message_template}\"" |
1101 | eval "failure_message=\"${failure_message_template}\"" |
| 982 | else |
1102 | else |
| 983 | failure_message="${action} failed with $(python_get_implementation) $(python_get_version) in ${function}() function" |
1103 | failure_message="${action} failed with $(python_get_implementation_and_version) in ${function}() function" |
| 984 | fi |
1104 | fi |
| 985 | |
1105 | |
| 986 | if [[ "${nonfatal}" == "1" ]]; then |
1106 | if [[ "${nonfatal}" == "1" ]]; then |
| 987 | if [[ "${quiet}" == "0" ]]; then |
1107 | if [[ "${quiet}" == "0" ]]; then |
| 988 | ewarn "${failure_message}" |
1108 | ewarn "${failure_message}" |
| … | |
… | |
| 1041 | # @FUNCTION: python_copy_sources |
1161 | # @FUNCTION: python_copy_sources |
| 1042 | # @USAGE: <directory="${S}"> [directory] |
1162 | # @USAGE: <directory="${S}"> [directory] |
| 1043 | # @DESCRIPTION: |
1163 | # @DESCRIPTION: |
| 1044 | # Copy unpacked sources of current package to separate build directory for each Python ABI. |
1164 | # Copy unpacked sources of current package to separate build directory for each Python ABI. |
| 1045 | python_copy_sources() { |
1165 | python_copy_sources() { |
| 1046 | _python_check_python_pkg_setup_execution |
|
|
| 1047 | |
|
|
| 1048 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
1166 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
| 1049 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
1167 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
| 1050 | fi |
1168 | fi |
|
|
1169 | |
|
|
1170 | _python_check_python_pkg_setup_execution |
| 1051 | |
1171 | |
| 1052 | local dir dirs=() PYTHON_ABI |
1172 | local dir dirs=() PYTHON_ABI |
| 1053 | |
1173 | |
| 1054 | if [[ "$#" -eq 0 ]]; then |
1174 | if [[ "$#" -eq 0 ]]; then |
| 1055 | if [[ "${WORKDIR}" == "${S}" ]]; then |
1175 | if [[ "${WORKDIR}" == "${S}" ]]; then |
| … | |
… | |
| 1072 | # @USAGE: [-E|--respect-EPYTHON] [-f|--force] [-q|--quiet] [--] <file> [files] |
1192 | # @USAGE: [-E|--respect-EPYTHON] [-f|--force] [-q|--quiet] [--] <file> [files] |
| 1073 | # @DESCRIPTION: |
1193 | # @DESCRIPTION: |
| 1074 | # Generate wrapper scripts. Existing files are overwritten only with --force option. |
1194 | # Generate wrapper scripts. Existing files are overwritten only with --force option. |
| 1075 | # If --respect-EPYTHON option is specified, then generated wrapper scripts will |
1195 | # If --respect-EPYTHON option is specified, then generated wrapper scripts will |
| 1076 | # respect EPYTHON variable at run time. |
1196 | # respect EPYTHON variable at run time. |
|
|
1197 | # |
|
|
1198 | # This function can be used only in src_install() phase. |
| 1077 | python_generate_wrapper_scripts() { |
1199 | python_generate_wrapper_scripts() { |
| 1078 | _python_check_python_pkg_setup_execution |
1200 | if [[ "${EBUILD_PHASE}" != "install" ]]; then |
|
|
1201 | die "${FUNCNAME}() can be used only in src_install() phase" |
|
|
1202 | fi |
| 1079 | |
1203 | |
| 1080 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
1204 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
| 1081 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
1205 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
| 1082 | fi |
1206 | fi |
| 1083 | |
1207 | |
|
|
1208 | _python_check_python_pkg_setup_execution |
| 1084 | _python_initialize_prefix_variables |
1209 | _python_initialize_prefix_variables |
| 1085 | |
1210 | |
| 1086 | local eselect_python_option file force="0" quiet="0" PYTHON_ABI PYTHON_ABIS_list python2_enabled="0" python3_enabled="0" respect_EPYTHON="0" |
1211 | local eselect_python_option file force="0" quiet="0" PYTHON_ABI PYTHON_ABIS_list python2_enabled="0" python3_enabled="0" respect_EPYTHON="0" |
| 1087 | |
1212 | |
| 1088 | while (($#)); do |
1213 | while (($#)); do |
| … | |
… | |
| 1154 | import os |
1279 | import os |
| 1155 | import re |
1280 | import re |
| 1156 | import subprocess |
1281 | import subprocess |
| 1157 | import sys |
1282 | import sys |
| 1158 | |
1283 | |
| 1159 | cpython_re = re.compile(r"^python(\d+\.\d+)$") |
1284 | cpython_ABI_re = re.compile(r"^(\d+\.\d+)$") |
|
|
1285 | jython_ABI_re = re.compile(r"^(\d+\.\d+)-jython$") |
|
|
1286 | pypy_ABI_re = re.compile(r"^\d+\.\d+-pypy-(\d+\.\d+)$") |
|
|
1287 | cpython_interpreter_re = re.compile(r"^python(\d+\.\d+)$") |
| 1160 | jython_re = re.compile(r"^jython(\d+\.\d+)$") |
1288 | jython_interpreter_re = re.compile(r"^jython(\d+\.\d+)$") |
|
|
1289 | pypy_interpreter_re = re.compile(r"^pypy-c(\d+\.\d+)$") |
| 1161 | python_shebang_re = re.compile(r"^#! *(${EPREFIX}/usr/bin/python|(${EPREFIX})?/usr/bin/env +(${EPREFIX}/usr/bin/)?python)") |
1290 | cpython_shebang_re = re.compile(r"^#![ \t]*(?:${EPREFIX}/usr/bin/python|(?:${EPREFIX})?/usr/bin/env[ \t]+(?:${EPREFIX}/usr/bin/)?python)") |
|
|
1291 | python_shebang_options_re = re.compile(r"^#![ \t]*${EPREFIX}/usr/bin/(?:jython|pypy-c|python)(?:\d+(?:\.\d+)?)?[ \t]+(-\S)") |
| 1162 | python_verification_output_re = re.compile("^GENTOO_PYTHON_TARGET_SCRIPT_PATH supported\n$") |
1292 | python_verification_output_re = re.compile("^GENTOO_PYTHON_TARGET_SCRIPT_PATH supported\n$") |
| 1163 | |
1293 | |
| 1164 | def get_PYTHON_ABI(EPYTHON): |
1294 | pypy_versions_mapping = { |
| 1165 | cpython_matched = cpython_re.match(EPYTHON) |
1295 | "1.5": "2.7" |
| 1166 | jython_matched = jython_re.match(EPYTHON) |
1296 | } |
|
|
1297 | |
|
|
1298 | def get_PYTHON_ABI(python_interpreter): |
|
|
1299 | cpython_matched = cpython_interpreter_re.match(python_interpreter) |
|
|
1300 | jython_matched = jython_interpreter_re.match(python_interpreter) |
|
|
1301 | pypy_matched = pypy_interpreter_re.match(python_interpreter) |
| 1167 | if cpython_matched is not None: |
1302 | if cpython_matched is not None: |
| 1168 | PYTHON_ABI = cpython_matched.group(1) |
1303 | PYTHON_ABI = cpython_matched.group(1) |
| 1169 | elif jython_matched is not None: |
1304 | elif jython_matched is not None: |
| 1170 | PYTHON_ABI = jython_matched.group(1) + "-jython" |
1305 | PYTHON_ABI = jython_matched.group(1) + "-jython" |
|
|
1306 | elif pypy_matched is not None: |
|
|
1307 | PYTHON_ABI = pypy_versions_mapping[pypy_matched.group(1)] + "-pypy-" + pypy_matched.group(1) |
| 1171 | else: |
1308 | else: |
| 1172 | PYTHON_ABI = None |
1309 | PYTHON_ABI = None |
| 1173 | return PYTHON_ABI |
1310 | return PYTHON_ABI |
| 1174 | |
1311 | |
|
|
1312 | def get_python_interpreter(PYTHON_ABI): |
|
|
1313 | cpython_matched = cpython_ABI_re.match(PYTHON_ABI) |
|
|
1314 | jython_matched = jython_ABI_re.match(PYTHON_ABI) |
|
|
1315 | pypy_matched = pypy_ABI_re.match(PYTHON_ABI) |
|
|
1316 | if cpython_matched is not None: |
|
|
1317 | python_interpreter = "python" + cpython_matched.group(1) |
|
|
1318 | elif jython_matched is not None: |
|
|
1319 | python_interpreter = "jython" + jython_matched.group(1) |
|
|
1320 | elif pypy_matched is not None: |
|
|
1321 | python_interpreter = "pypy-c" + pypy_matched.group(1) |
|
|
1322 | else: |
|
|
1323 | python_interpreter = None |
|
|
1324 | return python_interpreter |
|
|
1325 | |
| 1175 | EOF |
1326 | EOF |
| 1176 | if [[ "$?" != "0" ]]; then |
1327 | if [[ "$?" != "0" ]]; then |
| 1177 | die "${FUNCNAME}(): Generation of '$1' failed" |
1328 | die "${FUNCNAME}(): Generation of '$1' failed" |
| 1178 | fi |
1329 | fi |
| 1179 | if [[ "${respect_EPYTHON}" == "1" ]]; then |
1330 | if [[ "${respect_EPYTHON}" == "1" ]]; then |
| 1180 | cat << EOF >> "${file}" |
1331 | cat << EOF >> "${file}" |
| 1181 | EPYTHON = os.environ.get("EPYTHON") |
1332 | python_interpreter = os.environ.get("EPYTHON") |
| 1182 | if EPYTHON: |
1333 | if python_interpreter: |
| 1183 | PYTHON_ABI = get_PYTHON_ABI(EPYTHON) |
1334 | PYTHON_ABI = get_PYTHON_ABI(python_interpreter) |
| 1184 | if PYTHON_ABI is None: |
1335 | if PYTHON_ABI is None: |
| 1185 | sys.stderr.write("EPYTHON variable has unrecognized value '%s'\n" % EPYTHON) |
1336 | sys.stderr.write("%s: EPYTHON variable has unrecognized value '%s'\n" % (sys.argv[0], python_interpreter)) |
| 1186 | sys.exit(1) |
1337 | sys.exit(1) |
| 1187 | else: |
1338 | else: |
| 1188 | try: |
1339 | try: |
|
|
1340 | environment = os.environ.copy() |
|
|
1341 | environment["ROOT"] = "/" |
| 1189 | eselect_process = subprocess.Popen(["${EPREFIX}/usr/bin/eselect", "python", "show"${eselect_python_option:+, $(echo "\"")}${eselect_python_option}${eselect_python_option:+$(echo "\"")}], stdout=subprocess.PIPE) |
1342 | eselect_process = subprocess.Popen(["${EPREFIX}/usr/bin/eselect", "python", "show"${eselect_python_option:+, $(echo "\"")}${eselect_python_option}${eselect_python_option:+$(echo "\"")}], env=environment, stdout=subprocess.PIPE) |
| 1190 | if eselect_process.wait() != 0: |
1343 | if eselect_process.wait() != 0: |
| 1191 | raise ValueError |
1344 | raise ValueError |
| 1192 | except (OSError, ValueError): |
1345 | except (OSError, ValueError): |
| 1193 | sys.stderr.write("Execution of 'eselect python show${eselect_python_option:+ }${eselect_python_option}' failed\n") |
1346 | sys.stderr.write("%s: Execution of 'eselect python show${eselect_python_option:+ }${eselect_python_option}' failed\n" % sys.argv[0]) |
| 1194 | sys.exit(1) |
1347 | sys.exit(1) |
| 1195 | |
1348 | |
| 1196 | EPYTHON = eselect_process.stdout.read() |
1349 | python_interpreter = eselect_process.stdout.read() |
| 1197 | if not isinstance(EPYTHON, str): |
1350 | if not isinstance(python_interpreter, str): |
| 1198 | # Python 3 |
1351 | # Python 3 |
| 1199 | EPYTHON = EPYTHON.decode() |
1352 | python_interpreter = python_interpreter.decode() |
| 1200 | EPYTHON = EPYTHON.rstrip("\n") |
1353 | python_interpreter = python_interpreter.rstrip("\n") |
| 1201 | |
1354 | |
| 1202 | PYTHON_ABI = get_PYTHON_ABI(EPYTHON) |
1355 | PYTHON_ABI = get_PYTHON_ABI(python_interpreter) |
| 1203 | if PYTHON_ABI is None: |
1356 | if PYTHON_ABI is None: |
| 1204 | sys.stderr.write("'eselect python show${eselect_python_option:+ }${eselect_python_option}' printed unrecognized value '%s'\n" % EPYTHON) |
1357 | sys.stderr.write("%s: 'eselect python show${eselect_python_option:+ }${eselect_python_option}' printed unrecognized value '%s'\n" % (sys.argv[0], python_interpreter)) |
| 1205 | sys.exit(1) |
1358 | sys.exit(1) |
| 1206 | |
1359 | |
| 1207 | wrapper_script_path = os.path.realpath(sys.argv[0]) |
1360 | wrapper_script_path = os.path.realpath(sys.argv[0]) |
| 1208 | target_executable_path = "%s-%s" % (wrapper_script_path, PYTHON_ABI) |
1361 | target_executable_path = "%s-%s" % (wrapper_script_path, PYTHON_ABI) |
| 1209 | if not os.path.exists(target_executable_path): |
1362 | if not os.path.exists(target_executable_path): |
| 1210 | sys.stderr.write("'%s' does not exist\n" % target_executable_path) |
1363 | sys.stderr.write("%s: '%s' does not exist\n" % (sys.argv[0], target_executable_path)) |
| 1211 | sys.exit(1) |
1364 | sys.exit(1) |
| 1212 | EOF |
1365 | EOF |
| 1213 | if [[ "$?" != "0" ]]; then |
1366 | if [[ "$?" != "0" ]]; then |
| 1214 | die "${FUNCNAME}(): Generation of '$1' failed" |
1367 | die "${FUNCNAME}(): Generation of '$1' failed" |
| 1215 | fi |
1368 | fi |
| 1216 | else |
1369 | else |
| 1217 | cat << EOF >> "${file}" |
1370 | cat << EOF >> "${file}" |
| 1218 | try: |
1371 | try: |
|
|
1372 | environment = os.environ.copy() |
|
|
1373 | environment["ROOT"] = "/" |
| 1219 | eselect_process = subprocess.Popen(["${EPREFIX}/usr/bin/eselect", "python", "show"${eselect_python_option:+, $(echo "\"")}${eselect_python_option}${eselect_python_option:+$(echo "\"")}], stdout=subprocess.PIPE) |
1374 | eselect_process = subprocess.Popen(["${EPREFIX}/usr/bin/eselect", "python", "show"${eselect_python_option:+, $(echo "\"")}${eselect_python_option}${eselect_python_option:+$(echo "\"")}], env=environment, stdout=subprocess.PIPE) |
| 1220 | if eselect_process.wait() != 0: |
1375 | if eselect_process.wait() != 0: |
| 1221 | raise ValueError |
1376 | raise ValueError |
| 1222 | except (OSError, ValueError): |
1377 | except (OSError, ValueError): |
| 1223 | sys.stderr.write("Execution of 'eselect python show${eselect_python_option:+ }${eselect_python_option}' failed\n") |
1378 | sys.stderr.write("%s: Execution of 'eselect python show${eselect_python_option:+ }${eselect_python_option}' failed\n" % sys.argv[0]) |
| 1224 | sys.exit(1) |
1379 | sys.exit(1) |
| 1225 | |
1380 | |
| 1226 | EPYTHON = eselect_process.stdout.read() |
1381 | python_interpreter = eselect_process.stdout.read() |
| 1227 | if not isinstance(EPYTHON, str): |
1382 | if not isinstance(python_interpreter, str): |
| 1228 | # Python 3 |
1383 | # Python 3 |
| 1229 | EPYTHON = EPYTHON.decode() |
1384 | python_interpreter = python_interpreter.decode() |
| 1230 | EPYTHON = EPYTHON.rstrip("\n") |
1385 | python_interpreter = python_interpreter.rstrip("\n") |
| 1231 | |
1386 | |
| 1232 | PYTHON_ABI = get_PYTHON_ABI(EPYTHON) |
1387 | PYTHON_ABI = get_PYTHON_ABI(python_interpreter) |
| 1233 | if PYTHON_ABI is None: |
1388 | if PYTHON_ABI is None: |
| 1234 | sys.stderr.write("'eselect python show${eselect_python_option:+ }${eselect_python_option}' printed unrecognized value '%s'\n" % EPYTHON) |
1389 | sys.stderr.write("%s: 'eselect python show${eselect_python_option:+ }${eselect_python_option}' printed unrecognized value '%s'\n" % (sys.argv[0], python_interpreter)) |
| 1235 | sys.exit(1) |
1390 | sys.exit(1) |
| 1236 | |
1391 | |
| 1237 | wrapper_script_path = os.path.realpath(sys.argv[0]) |
1392 | wrapper_script_path = os.path.realpath(sys.argv[0]) |
| 1238 | for PYTHON_ABI in [PYTHON_ABI, ${PYTHON_ABIS_list}]: |
1393 | for PYTHON_ABI in [PYTHON_ABI, ${PYTHON_ABIS_list}]: |
| 1239 | target_executable_path = "%s-%s" % (wrapper_script_path, PYTHON_ABI) |
1394 | target_executable_path = "%s-%s" % (wrapper_script_path, PYTHON_ABI) |
| 1240 | if os.path.exists(target_executable_path): |
1395 | if os.path.exists(target_executable_path): |
| 1241 | break |
1396 | break |
| 1242 | else: |
1397 | else: |
| 1243 | sys.stderr.write("No target script exists for '%s'\n" % wrapper_script_path) |
1398 | sys.stderr.write("%s: No target script exists for '%s'\n" % (sys.argv[0], wrapper_script_path)) |
|
|
1399 | sys.exit(1) |
|
|
1400 | |
|
|
1401 | python_interpreter = get_python_interpreter(PYTHON_ABI) |
|
|
1402 | if python_interpreter is None: |
|
|
1403 | sys.stderr.write("%s: Unrecognized Python ABI '%s'\n" % (sys.argv[0], PYTHON_ABI)) |
| 1244 | sys.exit(1) |
1404 | sys.exit(1) |
| 1245 | EOF |
1405 | EOF |
| 1246 | if [[ "$?" != "0" ]]; then |
1406 | if [[ "$?" != "0" ]]; then |
| 1247 | die "${FUNCNAME}(): Generation of '$1' failed" |
1407 | die "${FUNCNAME}(): Generation of '$1' failed" |
| 1248 | fi |
1408 | fi |
| 1249 | fi |
1409 | fi |
| 1250 | cat << EOF >> "${file}" |
1410 | cat << EOF >> "${file}" |
| 1251 | |
1411 | |
| 1252 | target_executable = open(target_executable_path, "rb") |
1412 | target_executable = open(target_executable_path, "rb") |
| 1253 | target_executable_first_line = target_executable.readline() |
1413 | target_executable_first_line = target_executable.readline() |
|
|
1414 | target_executable.close() |
| 1254 | if not isinstance(target_executable_first_line, str): |
1415 | if not isinstance(target_executable_first_line, str): |
| 1255 | # Python 3 |
1416 | # Python 3 |
| 1256 | target_executable_first_line = target_executable_first_line.decode("utf_8", "replace") |
1417 | target_executable_first_line = target_executable_first_line.decode("utf_8", "replace") |
| 1257 | |
1418 | |
|
|
1419 | options = [] |
|
|
1420 | python_shebang_options_matched = python_shebang_options_re.match(target_executable_first_line) |
|
|
1421 | if python_shebang_options_matched is not None: |
|
|
1422 | options = [python_shebang_options_matched.group(1)] |
|
|
1423 | |
| 1258 | python_shebang_matched = python_shebang_re.match(target_executable_first_line) |
1424 | cpython_shebang_matched = cpython_shebang_re.match(target_executable_first_line) |
| 1259 | target_executable.close() |
|
|
| 1260 | |
1425 | |
| 1261 | if python_shebang_matched is not None: |
1426 | if cpython_shebang_matched is not None: |
| 1262 | try: |
1427 | try: |
| 1263 | python_interpreter_path = "${EPREFIX}/usr/bin/%s" % EPYTHON |
1428 | python_interpreter_path = "${EPREFIX}/usr/bin/%s" % python_interpreter |
| 1264 | os.environ["GENTOO_PYTHON_TARGET_SCRIPT_PATH_VERIFICATION"] = "1" |
1429 | os.environ["GENTOO_PYTHON_TARGET_SCRIPT_PATH_VERIFICATION"] = "1" |
| 1265 | python_verification_process = subprocess.Popen([python_interpreter_path, "-c", "pass"], stdout=subprocess.PIPE) |
1430 | python_verification_process = subprocess.Popen([python_interpreter_path, "-c", "pass"], stdout=subprocess.PIPE) |
| 1266 | del os.environ["GENTOO_PYTHON_TARGET_SCRIPT_PATH_VERIFICATION"] |
1431 | del os.environ["GENTOO_PYTHON_TARGET_SCRIPT_PATH_VERIFICATION"] |
| 1267 | if python_verification_process.wait() != 0: |
1432 | if python_verification_process.wait() != 0: |
| 1268 | raise ValueError |
1433 | raise ValueError |
| … | |
… | |
| 1273 | python_verification_output = python_verification_output.decode() |
1438 | python_verification_output = python_verification_output.decode() |
| 1274 | |
1439 | |
| 1275 | if not python_verification_output_re.match(python_verification_output): |
1440 | if not python_verification_output_re.match(python_verification_output): |
| 1276 | raise ValueError |
1441 | raise ValueError |
| 1277 | |
1442 | |
| 1278 | if cpython_re.match(EPYTHON) is not None: |
1443 | if cpython_interpreter_re.match(python_interpreter) is not None: |
| 1279 | os.environ["GENTOO_PYTHON_PROCESS_NAME"] = os.path.basename(sys.argv[0]) |
1444 | os.environ["GENTOO_PYTHON_PROCESS_NAME"] = os.path.basename(sys.argv[0]) |
| 1280 | os.environ["GENTOO_PYTHON_WRAPPER_SCRIPT_PATH"] = sys.argv[0] |
1445 | os.environ["GENTOO_PYTHON_WRAPPER_SCRIPT_PATH"] = sys.argv[0] |
| 1281 | os.environ["GENTOO_PYTHON_TARGET_SCRIPT_PATH"] = target_executable_path |
1446 | os.environ["GENTOO_PYTHON_TARGET_SCRIPT_PATH"] = target_executable_path |
| 1282 | |
1447 | |
| 1283 | if hasattr(os, "execv"): |
1448 | if hasattr(os, "execv"): |
| 1284 | os.execv(python_interpreter_path, [python_interpreter_path] + sys.argv) |
1449 | os.execv(python_interpreter_path, [python_interpreter_path] + options + sys.argv) |
| 1285 | else: |
1450 | else: |
| 1286 | sys.exit(subprocess.Popen([python_interpreter_path] + sys.argv).wait()) |
1451 | sys.exit(subprocess.Popen([python_interpreter_path] + options + sys.argv).wait()) |
| 1287 | except (KeyboardInterrupt, SystemExit): |
1452 | except (KeyboardInterrupt, SystemExit): |
| 1288 | raise |
1453 | raise |
| 1289 | except: |
1454 | except: |
| 1290 | pass |
1455 | pass |
| 1291 | for variable in ("GENTOO_PYTHON_PROCESS_NAME", "GENTOO_PYTHON_WRAPPER_SCRIPT_PATH", "GENTOO_PYTHON_TARGET_SCRIPT_PATH", "GENTOO_PYTHON_TARGET_SCRIPT_PATH_VERIFICATION"): |
1456 | for variable in ("GENTOO_PYTHON_PROCESS_NAME", "GENTOO_PYTHON_WRAPPER_SCRIPT_PATH", "GENTOO_PYTHON_TARGET_SCRIPT_PATH", "GENTOO_PYTHON_TARGET_SCRIPT_PATH_VERIFICATION"): |
| … | |
… | |
| 1319 | |
1484 | |
| 1320 | # @FUNCTION: python_merge_intermediate_installation_images |
1485 | # @FUNCTION: python_merge_intermediate_installation_images |
| 1321 | # @USAGE: [-q|--quiet] [--] <intermediate_installation_images_directory> |
1486 | # @USAGE: [-q|--quiet] [--] <intermediate_installation_images_directory> |
| 1322 | # @DESCRIPTION: |
1487 | # @DESCRIPTION: |
| 1323 | # Merge intermediate installation images into installation image. |
1488 | # Merge intermediate installation images into installation image. |
|
|
1489 | # |
|
|
1490 | # This function can be used only in src_install() phase. |
| 1324 | python_merge_intermediate_installation_images() { |
1491 | python_merge_intermediate_installation_images() { |
|
|
1492 | if [[ "${EBUILD_PHASE}" != "install" ]]; then |
|
|
1493 | die "${FUNCNAME}() can be used only in src_install() phase" |
|
|
1494 | fi |
|
|
1495 | |
|
|
1496 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
1497 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
|
|
1498 | fi |
|
|
1499 | |
| 1325 | _python_check_python_pkg_setup_execution |
1500 | _python_check_python_pkg_setup_execution |
| 1326 | _python_initialize_prefix_variables |
1501 | _python_initialize_prefix_variables |
| 1327 | |
1502 | |
| 1328 | local b file files=() intermediate_installation_images_directory PYTHON_ABI quiet="0" regex shebang version_executable wrapper_scripts=() wrapper_scripts_set=() |
1503 | local absolute_file b file files=() intermediate_installation_images_directory PYTHON_ABI quiet="0" regex shebang version_executable wrapper_scripts=() wrapper_scripts_set=() |
| 1329 | |
|
|
| 1330 | # Check if phase is src_install(). |
|
|
| 1331 | [[ "${EBUILD_PHASE}" != "install" ]] && die "${FUNCNAME}() can be used only in src_install() phase" |
|
|
| 1332 | |
1504 | |
| 1333 | while (($#)); do |
1505 | while (($#)); do |
| 1334 | case "$1" in |
1506 | case "$1" in |
| 1335 | -q|--quiet) |
1507 | -q|--quiet) |
| 1336 | quiet="1" |
1508 | quiet="1" |
| … | |
… | |
| 1418 | break |
1590 | break |
| 1419 | fi |
1591 | fi |
| 1420 | done |
1592 | done |
| 1421 | fi |
1593 | fi |
| 1422 | |
1594 | |
| 1423 | [[ "${version_executable}" == "0" || ! -x "${file}" ]] && continue |
1595 | [[ "${version_executable}" == "0" ]] && continue |
| 1424 | |
1596 | |
|
|
1597 | if [[ -L "${file}" ]]; then |
|
|
1598 | absolute_file="$(readlink "${file}")" |
|
|
1599 | if [[ "${absolute_file}" == /* ]]; then |
|
|
1600 | absolute_file="${intermediate_installation_images_directory}/${PYTHON_ABI}${EPREFIX}/${absolute_file##/}" |
|
|
1601 | else |
|
|
1602 | if [[ "${file}" == */* ]]; then |
|
|
1603 | absolute_file="${intermediate_installation_images_directory}/${PYTHON_ABI}${EPREFIX}/${file%/*}/${absolute_file}" |
|
|
1604 | else |
|
|
1605 | absolute_file="${intermediate_installation_images_directory}/${PYTHON_ABI}${EPREFIX}/${absolute_file}" |
|
|
1606 | fi |
|
|
1607 | fi |
|
|
1608 | else |
|
|
1609 | absolute_file="${intermediate_installation_images_directory}/${PYTHON_ABI}${EPREFIX}/${file}" |
|
|
1610 | fi |
|
|
1611 | |
|
|
1612 | [[ ! -x "${absolute_file}" ]] && continue |
|
|
1613 | |
| 1425 | shebang="$(head -n1 "${file}")" || die "Extraction of shebang from '${file}' failed" |
1614 | shebang="$(head -n1 "${absolute_file}")" || die "Extraction of shebang from '${absolute_file}' failed" |
| 1426 | |
1615 | |
| 1427 | if [[ "${version_executable}" == "2" ]]; then |
1616 | if [[ "${version_executable}" == "2" ]]; then |
| 1428 | wrapper_scripts+=("${ED}${file}") |
1617 | wrapper_scripts+=("${ED}${file}") |
| 1429 | elif [[ "${version_executable}" == "1" ]]; then |
1618 | elif [[ "${version_executable}" == "1" ]]; then |
| 1430 | if [[ "${shebang}" =~ ${_PYTHON_SHEBANG_BASE_PART_REGEX}([[:digit:]]+(\.[[:digit:]]+)?)?($|[[:space:]]+) ]]; then |
1619 | if [[ "${shebang}" =~ ${_PYTHON_SHEBANG_BASE_PART_REGEX}([[:digit:]]+(\.[[:digit:]]+)?)?($|[[:space:]]+) ]]; then |
| … | |
… | |
| 1441 | fi |
1630 | fi |
| 1442 | |
1631 | |
| 1443 | mv "${file}" "${file}-${PYTHON_ABI}" || die "Renaming of '${file}' failed" |
1632 | mv "${file}" "${file}-${PYTHON_ABI}" || die "Renaming of '${file}' failed" |
| 1444 | |
1633 | |
| 1445 | if [[ "${shebang}" =~ ${_PYTHON_SHEBANG_BASE_PART_REGEX}[[:digit:]]*($|[[:space:]]+) ]]; then |
1634 | if [[ "${shebang}" =~ ${_PYTHON_SHEBANG_BASE_PART_REGEX}[[:digit:]]*($|[[:space:]]+) ]]; then |
|
|
1635 | if [[ -L "${file}-${PYTHON_ABI}" ]]; then |
|
|
1636 | python_convert_shebangs $([[ "${quiet}" == "1" ]] && echo --quiet) "${PYTHON_ABI}" "${absolute_file}" |
|
|
1637 | else |
| 1446 | python_convert_shebangs $([[ "${quiet}" == "1" ]] && echo --quiet) "${PYTHON_ABI}" "${file}-${PYTHON_ABI}" |
1638 | python_convert_shebangs $([[ "${quiet}" == "1" ]] && echo --quiet) "${PYTHON_ABI}" "${file}-${PYTHON_ABI}" |
|
|
1639 | fi |
| 1447 | fi |
1640 | fi |
| 1448 | done |
1641 | done |
| 1449 | |
1642 | |
| 1450 | popd > /dev/null || die "popd failed" |
1643 | popd > /dev/null || die "popd failed" |
| 1451 | |
1644 | |
|
|
1645 | # This is per bug #390691, without the duplication refactor, and with |
|
|
1646 | # the 3-way structure per comment #6. This enable users with old |
|
|
1647 | # coreutils to upgrade a lot easier (you need to upgrade python+portage |
|
|
1648 | # before coreutils can be upgraded). |
|
|
1649 | if ROOT="/" has_version '>=sys-apps/coreutils-6.9.90'; then |
|
|
1650 | cp -fr --preserve=all --no-preserve=context "${intermediate_installation_images_directory}/${PYTHON_ABI}/"* "${D}" || die "Merging of intermediate installation image for Python ABI '${PYTHON_ABI} into installation image failed" |
|
|
1651 | elif ROOT="/" has_version sys-apps/coreutils; then |
| 1452 | cp -fr --preserve=all "${intermediate_installation_images_directory}/${PYTHON_ABI}/"* "${ED}" || die "Merging of intermediate installation image for Python ABI '${PYTHON_ABI} into installation image failed" |
1652 | cp -fr --preserve=all "${intermediate_installation_images_directory}/${PYTHON_ABI}/"* "${D}" || die "Merging of intermediate installation image for Python ABI '${PYTHON_ABI} into installation image failed" |
|
|
1653 | else |
|
|
1654 | cp -fpr "${intermediate_installation_images_directory}/${PYTHON_ABI}/"* "${D}" || die "Merging of intermediate installation image for Python ABI '${PYTHON_ABI} into installation image failed" |
|
|
1655 | fi |
| 1453 | done |
1656 | done |
|
|
1657 | |
|
|
1658 | rm -fr "${intermediate_installation_images_directory}" |
| 1454 | |
1659 | |
| 1455 | if [[ "${#wrapper_scripts[@]}" -ge 1 ]]; then |
1660 | if [[ "${#wrapper_scripts[@]}" -ge 1 ]]; then |
| 1456 | rm -f "${T}/python_wrapper_scripts" |
1661 | rm -f "${T}/python_wrapper_scripts" |
| 1457 | |
1662 | |
| 1458 | for file in "${wrapper_scripts[@]}"; do |
1663 | for file in "${wrapper_scripts[@]}"; do |
| … | |
… | |
| 1470 | stdout = sys.stdout.buffer |
1675 | stdout = sys.stdout.buffer |
| 1471 | else: |
1676 | else: |
| 1472 | # Python 2 |
1677 | # Python 2 |
| 1473 | stdout = sys.stdout |
1678 | stdout = sys.stdout |
| 1474 | |
1679 | |
|
|
1680 | python_wrapper_scripts_file = open('${T}/python_wrapper_scripts', 'rb') |
| 1475 | files = set(open('${T}/python_wrapper_scripts', 'rb').read().rstrip(${b}'\x00').split(${b}'\x00')) |
1681 | files = set(python_wrapper_scripts_file.read().rstrip(${b}'\x00').split(${b}'\x00')) |
|
|
1682 | python_wrapper_scripts_file.close() |
| 1476 | |
1683 | |
| 1477 | for file in sorted(files): |
1684 | for file in sorted(files): |
| 1478 | stdout.write(file) |
1685 | stdout.write(file) |
| 1479 | stdout.write(${b}'\x00')" || die "${FUNCNAME}(): Failure of extraction of set of wrapper scripts") |
1686 | stdout.write(${b}'\x00')" || die "${FUNCNAME}(): Failure of extraction of set of wrapper scripts") |
| 1480 | |
1687 | |
| … | |
… | |
| 1496 | # If 2 argument is specified, then active version of CPython 2 is used. |
1703 | # If 2 argument is specified, then active version of CPython 2 is used. |
| 1497 | # If 3 argument is specified, then active version of CPython 3 is used. |
1704 | # If 3 argument is specified, then active version of CPython 3 is used. |
| 1498 | # |
1705 | # |
| 1499 | # This function can be used only in pkg_setup() phase. |
1706 | # This function can be used only in pkg_setup() phase. |
| 1500 | python_set_active_version() { |
1707 | python_set_active_version() { |
| 1501 | # Check if phase is pkg_setup(). |
1708 | if [[ "${EBUILD_PHASE}" != "setup" ]]; then |
| 1502 | [[ "${EBUILD_PHASE}" != "setup" ]] && die "${FUNCNAME}() can be used only in pkg_setup() phase" |
1709 | die "${FUNCNAME}() can be used only in pkg_setup() phase" |
|
|
1710 | fi |
| 1503 | |
1711 | |
| 1504 | if _python_package_supporting_installation_for_multiple_python_abis; then |
1712 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| 1505 | die "${FUNCNAME}() cannot be used in ebuilds of packages supporting installation for multiple Python ABIs" |
1713 | die "${FUNCNAME}() cannot be used in ebuilds of packages supporting installation for multiple Python ABIs" |
| 1506 | fi |
1714 | fi |
| 1507 | |
1715 | |
| … | |
… | |
| 1544 | # python-updater checks PYTHON_REQUESTED_ACTIVE_VERSION variable. |
1752 | # python-updater checks PYTHON_REQUESTED_ACTIVE_VERSION variable. |
| 1545 | PYTHON_REQUESTED_ACTIVE_VERSION="$1" |
1753 | PYTHON_REQUESTED_ACTIVE_VERSION="$1" |
| 1546 | } |
1754 | } |
| 1547 | |
1755 | |
| 1548 | # @FUNCTION: python_need_rebuild |
1756 | # @FUNCTION: python_need_rebuild |
|
|
1757 | # @DESCRIPTION: |
| 1549 | # @DESCRIPTION: Mark current package for rebuilding by python-updater after |
1758 | # Mark current package for rebuilding by python-updater after |
| 1550 | # switching of active version of Python. |
1759 | # switching of active version of Python. |
| 1551 | python_need_rebuild() { |
1760 | python_need_rebuild() { |
| 1552 | _python_check_python_pkg_setup_execution |
|
|
| 1553 | |
|
|
| 1554 | if _python_package_supporting_installation_for_multiple_python_abis; then |
1761 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| 1555 | die "${FUNCNAME}() cannot be used in ebuilds of packages supporting installation for multiple Python ABIs" |
1762 | die "${FUNCNAME}() cannot be used in ebuilds of packages supporting installation for multiple Python ABIs" |
| 1556 | fi |
1763 | fi |
|
|
1764 | |
|
|
1765 | _python_check_python_pkg_setup_execution |
| 1557 | |
1766 | |
| 1558 | if [[ "$#" -ne 0 ]]; then |
1767 | if [[ "$#" -ne 0 ]]; then |
| 1559 | die "${FUNCNAME}() does not accept arguments" |
1768 | die "${FUNCNAME}() does not accept arguments" |
| 1560 | fi |
1769 | fi |
| 1561 | |
1770 | |
| … | |
… | |
| 1564 | |
1773 | |
| 1565 | # ================================================================================================ |
1774 | # ================================================================================================ |
| 1566 | # ======================================= GETTER FUNCTIONS ======================================= |
1775 | # ======================================= GETTER FUNCTIONS ======================================= |
| 1567 | # ================================================================================================ |
1776 | # ================================================================================================ |
| 1568 | |
1777 | |
| 1569 | _PYTHON_ABI_EXTRACTION_COMMAND='import platform |
1778 | _PYTHON_ABI_EXTRACTION_COMMAND=\ |
|
|
1779 | 'import platform |
| 1570 | import sys |
1780 | import sys |
| 1571 | sys.stdout.write(".".join(str(x) for x in sys.version_info[:2])) |
1781 | sys.stdout.write(".".join(str(x) for x in sys.version_info[:2])) |
| 1572 | if platform.system()[:4] == "Java": |
1782 | if platform.system()[:4] == "Java": |
| 1573 | sys.stdout.write("-jython")' |
1783 | sys.stdout.write("-jython") |
|
|
1784 | elif hasattr(platform, "python_implementation") and platform.python_implementation() == "PyPy": |
|
|
1785 | sys.stdout.write("-pypy-" + ".".join(str(x) for x in sys.pypy_version_info[:2]))' |
| 1574 | |
1786 | |
| 1575 | _python_get_implementation() { |
1787 | _python_get_implementation() { |
| 1576 | local ignore_invalid="0" |
1788 | local ignore_invalid="0" |
| 1577 | |
1789 | |
| 1578 | while (($#)); do |
1790 | while (($#)); do |
| … | |
… | |
| 1600 | |
1812 | |
| 1601 | if [[ "$1" =~ ^[[:digit:]]+\.[[:digit:]]+$ ]]; then |
1813 | if [[ "$1" =~ ^[[:digit:]]+\.[[:digit:]]+$ ]]; then |
| 1602 | echo "CPython" |
1814 | echo "CPython" |
| 1603 | elif [[ "$1" =~ ^[[:digit:]]+\.[[:digit:]]+-jython$ ]]; then |
1815 | elif [[ "$1" =~ ^[[:digit:]]+\.[[:digit:]]+-jython$ ]]; then |
| 1604 | echo "Jython" |
1816 | echo "Jython" |
|
|
1817 | elif [[ "$1" =~ ^[[:digit:]]+\.[[:digit:]]+-pypy-[[:digit:]]+\.[[:digit:]]+$ ]]; then |
|
|
1818 | echo "PyPy" |
| 1605 | else |
1819 | else |
| 1606 | if [[ "${ignore_invalid}" == "0" ]]; then |
1820 | if [[ "${ignore_invalid}" == "0" ]]; then |
| 1607 | die "${FUNCNAME}(): Unrecognized Python ABI '$1'" |
1821 | die "${FUNCNAME}(): Unrecognized Python ABI '$1'" |
| 1608 | fi |
1822 | fi |
| 1609 | fi |
1823 | fi |
| … | |
… | |
| 1672 | die "${FUNCNAME}(): '--final-ABI' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
1886 | die "${FUNCNAME}(): '--final-ABI' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
| 1673 | fi |
1887 | fi |
| 1674 | _python_calculate_PYTHON_ABIS |
1888 | _python_calculate_PYTHON_ABIS |
| 1675 | PYTHON_ABI="${PYTHON_ABIS##* }" |
1889 | PYTHON_ABI="${PYTHON_ABIS##* }" |
| 1676 | elif [[ "${python2}" == "1" ]]; then |
1890 | elif [[ "${python2}" == "1" ]]; then |
| 1677 | PYTHON_ABI="$(eselect python show --python2 --ABI)" |
1891 | PYTHON_ABI="$(ROOT="/" eselect python show --python2 --ABI)" |
| 1678 | if [[ -z "${PYTHON_ABI}" ]]; then |
1892 | if [[ -z "${PYTHON_ABI}" ]]; then |
| 1679 | die "${FUNCNAME}(): Active version of CPython 2 not set" |
1893 | die "${FUNCNAME}(): Active version of CPython 2 not set" |
| 1680 | elif [[ "${PYTHON_ABI}" != "2."* ]]; then |
1894 | elif [[ "${PYTHON_ABI}" != "2."* ]]; then |
| 1681 | die "${FUNCNAME}(): Internal error in \`eselect python show --python2\`" |
1895 | die "${FUNCNAME}(): Internal error in \`eselect python show --python2\`" |
| 1682 | fi |
1896 | fi |
| 1683 | elif [[ "${python3}" == "1" ]]; then |
1897 | elif [[ "${python3}" == "1" ]]; then |
| 1684 | PYTHON_ABI="$(eselect python show --python3 --ABI)" |
1898 | PYTHON_ABI="$(ROOT="/" eselect python show --python3 --ABI)" |
| 1685 | if [[ -z "${PYTHON_ABI}" ]]; then |
1899 | if [[ -z "${PYTHON_ABI}" ]]; then |
| 1686 | die "${FUNCNAME}(): Active version of CPython 3 not set" |
1900 | die "${FUNCNAME}(): Active version of CPython 3 not set" |
| 1687 | elif [[ "${PYTHON_ABI}" != "3."* ]]; then |
1901 | elif [[ "${PYTHON_ABI}" != "3."* ]]; then |
| 1688 | die "${FUNCNAME}(): Internal error in \`eselect python show --python3\`" |
1902 | die "${FUNCNAME}(): Internal error in \`eselect python show --python3\`" |
| 1689 | fi |
1903 | fi |
| … | |
… | |
| 1718 | else |
1932 | else |
| 1719 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
1933 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
| 1720 | python_interpreter="python${PYTHON_ABI}" |
1934 | python_interpreter="python${PYTHON_ABI}" |
| 1721 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
1935 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
| 1722 | python_interpreter="jython${PYTHON_ABI%-jython}" |
1936 | python_interpreter="jython${PYTHON_ABI%-jython}" |
|
|
1937 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "PyPy" ]]; then |
|
|
1938 | python_interpreter="pypy-c${PYTHON_ABI#*-pypy-}" |
| 1723 | fi |
1939 | fi |
| 1724 | |
1940 | |
| 1725 | if [[ "${absolute_path_output}" == "1" ]]; then |
1941 | if [[ "${absolute_path_output}" == "1" ]]; then |
| 1726 | echo -n "${EPREFIX}/usr/bin/${python_interpreter}" |
1942 | echo -n "${EPREFIX}/usr/bin/${python_interpreter}" |
| 1727 | else |
1943 | else |
| … | |
… | |
| 1820 | if [[ "${EAPI:-0}" == "0" ]]; then |
2036 | if [[ "${EAPI:-0}" == "0" ]]; then |
| 1821 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
2037 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
| 1822 | echo "=dev-lang/python-${PYTHON_ABI}*" |
2038 | echo "=dev-lang/python-${PYTHON_ABI}*" |
| 1823 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
2039 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
| 1824 | echo "=dev-java/jython-${PYTHON_ABI%-jython}*" |
2040 | echo "=dev-java/jython-${PYTHON_ABI%-jython}*" |
|
|
2041 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "PyPy" ]]; then |
|
|
2042 | echo "=dev-python/pypy-${PYTHON_ABI#*-pypy-}*" |
| 1825 | fi |
2043 | fi |
| 1826 | else |
2044 | else |
| 1827 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
2045 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
| 1828 | echo "dev-lang/python:${PYTHON_ABI}" |
2046 | echo "dev-lang/python:${PYTHON_ABI}" |
| 1829 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
2047 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
| 1830 | echo "dev-java/jython:${PYTHON_ABI%-jython}" |
2048 | echo "dev-java/jython:${PYTHON_ABI%-jython}" |
|
|
2049 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "PyPy" ]]; then |
|
|
2050 | echo "dev-python/pypy:${PYTHON_ABI#*-pypy-}" |
| 1831 | fi |
2051 | fi |
| 1832 | fi |
2052 | fi |
| 1833 | } |
2053 | } |
| 1834 | |
2054 | |
| 1835 | # @FUNCTION: python_get_includedir |
2055 | # @FUNCTION: python_get_includedir |
| … | |
… | |
| 1882 | |
2102 | |
| 1883 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
2103 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
| 1884 | echo "${prefix}usr/include/python${PYTHON_ABI}" |
2104 | echo "${prefix}usr/include/python${PYTHON_ABI}" |
| 1885 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
2105 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
| 1886 | echo "${prefix}usr/share/jython-${PYTHON_ABI%-jython}/Include" |
2106 | echo "${prefix}usr/share/jython-${PYTHON_ABI%-jython}/Include" |
|
|
2107 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "PyPy" ]]; then |
|
|
2108 | echo "${prefix}usr/$(get_libdir)/pypy${PYTHON_ABI#*-pypy-}/include" |
| 1887 | fi |
2109 | fi |
| 1888 | } |
2110 | } |
| 1889 | |
2111 | |
| 1890 | # @FUNCTION: python_get_libdir |
2112 | # @FUNCTION: python_get_libdir |
| 1891 | # @USAGE: [-b|--base-path] [-f|--final-ABI] |
2113 | # @USAGE: [-b|--base-path] [-f|--final-ABI] |
| 1892 | # @DESCRIPTION: |
2114 | # @DESCRIPTION: |
| 1893 | # Print path to Python library directory. |
2115 | # Print path to Python standard library directory. |
| 1894 | # If --base-path option is specified, then path not prefixed with "/" is printed. |
2116 | # If --base-path option is specified, then path not prefixed with "/" is printed. |
| 1895 | # If --final-ABI option is specified, then final ABI from the list of enabled ABIs is used. |
2117 | # If --final-ABI option is specified, then final ABI from the list of enabled ABIs is used. |
| 1896 | python_get_libdir() { |
2118 | python_get_libdir() { |
| 1897 | _python_check_python_pkg_setup_execution |
2119 | _python_check_python_pkg_setup_execution |
| 1898 | |
2120 | |
| … | |
… | |
| 1937 | |
2159 | |
| 1938 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
2160 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
| 1939 | echo "${prefix}usr/$(get_libdir)/python${PYTHON_ABI}" |
2161 | echo "${prefix}usr/$(get_libdir)/python${PYTHON_ABI}" |
| 1940 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
2162 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
| 1941 | echo "${prefix}usr/share/jython-${PYTHON_ABI%-jython}/Lib" |
2163 | echo "${prefix}usr/share/jython-${PYTHON_ABI%-jython}/Lib" |
|
|
2164 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "PyPy" ]]; then |
|
|
2165 | die "${FUNCNAME}(): PyPy has multiple standard library directories" |
| 1942 | fi |
2166 | fi |
| 1943 | } |
2167 | } |
| 1944 | |
2168 | |
| 1945 | # @FUNCTION: python_get_sitedir |
2169 | # @FUNCTION: python_get_sitedir |
| 1946 | # @USAGE: [-b|--base-path] [-f|--final-ABI] |
2170 | # @USAGE: [-b|--base-path] [-f|--final-ABI] |
| … | |
… | |
| 1949 | # If --base-path option is specified, then path not prefixed with "/" is printed. |
2173 | # If --base-path option is specified, then path not prefixed with "/" is printed. |
| 1950 | # If --final-ABI option is specified, then final ABI from the list of enabled ABIs is used. |
2174 | # If --final-ABI option is specified, then final ABI from the list of enabled ABIs is used. |
| 1951 | python_get_sitedir() { |
2175 | python_get_sitedir() { |
| 1952 | _python_check_python_pkg_setup_execution |
2176 | _python_check_python_pkg_setup_execution |
| 1953 | |
2177 | |
| 1954 | local final_ABI="0" options=() |
2178 | local base_path="0" final_ABI="0" prefix PYTHON_ABI="${PYTHON_ABI}" |
| 1955 | |
2179 | |
| 1956 | while (($#)); do |
2180 | while (($#)); do |
| 1957 | case "$1" in |
2181 | case "$1" in |
| 1958 | -b|--base-path) |
2182 | -b|--base-path) |
| 1959 | options+=("$1") |
2183 | base_path="1" |
| 1960 | ;; |
2184 | ;; |
| 1961 | -f|--final-ABI) |
2185 | -f|--final-ABI) |
| 1962 | final_ABI="1" |
2186 | final_ABI="1" |
| 1963 | options+=("$1") |
|
|
| 1964 | ;; |
2187 | ;; |
| 1965 | -*) |
2188 | -*) |
| 1966 | die "${FUNCNAME}(): Unrecognized option '$1'" |
2189 | die "${FUNCNAME}(): Unrecognized option '$1'" |
| 1967 | ;; |
2190 | ;; |
| 1968 | *) |
2191 | *) |
| 1969 | die "${FUNCNAME}(): Invalid usage" |
2192 | die "${FUNCNAME}(): Invalid usage" |
| 1970 | ;; |
2193 | ;; |
| 1971 | esac |
2194 | esac |
| 1972 | shift |
2195 | shift |
| 1973 | done |
2196 | done |
|
|
2197 | |
|
|
2198 | if [[ "${base_path}" == "0" ]]; then |
|
|
2199 | prefix="/" |
|
|
2200 | fi |
| 1974 | |
2201 | |
| 1975 | if [[ "${final_ABI}" == "1" ]]; then |
2202 | if [[ "${final_ABI}" == "1" ]]; then |
| 1976 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
2203 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
| 1977 | die "${FUNCNAME}(): '--final-ABI' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
2204 | die "${FUNCNAME}(): '--final-ABI' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
| 1978 | fi |
2205 | fi |
|
|
2206 | PYTHON_ABI="$(PYTHON -f --ABI)" |
| 1979 | else |
2207 | else |
| 1980 | if _python_package_supporting_installation_for_multiple_python_abis && ! _python_abi-specific_local_scope; then |
2208 | if _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
2209 | if ! _python_abi-specific_local_scope; then |
| 1981 | die "${FUNCNAME}() should be used in ABI-specific local scope" |
2210 | die "${FUNCNAME}() should be used in ABI-specific local scope" |
| 1982 | fi |
2211 | fi |
|
|
2212 | else |
|
|
2213 | PYTHON_ABI="${PYTHON_ABI:-$(PYTHON --ABI)}" |
| 1983 | fi |
2214 | fi |
|
|
2215 | fi |
| 1984 | |
2216 | |
| 1985 | echo "$(python_get_libdir "${options[@]}")/site-packages" |
2217 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
|
|
2218 | echo "${prefix}usr/$(get_libdir)/python${PYTHON_ABI}/site-packages" |
|
|
2219 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
|
|
2220 | echo "${prefix}usr/share/jython-${PYTHON_ABI%-jython}/Lib/site-packages" |
|
|
2221 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "PyPy" ]]; then |
|
|
2222 | echo "${prefix}usr/$(get_libdir)/pypy${PYTHON_ABI#*-pypy-}/site-packages" |
|
|
2223 | fi |
| 1986 | } |
2224 | } |
| 1987 | |
2225 | |
| 1988 | # @FUNCTION: python_get_library |
2226 | # @FUNCTION: python_get_library |
| 1989 | # @USAGE: [-b|--base-path] [-f|--final-ABI] [-l|--linker-option] |
2227 | # @USAGE: [-b|--base-path] [-f|--final-ABI] [-l|--linker-option] |
| 1990 | # @DESCRIPTION: |
2228 | # @DESCRIPTION: |
| … | |
… | |
| 2047 | else |
2285 | else |
| 2048 | echo "${prefix}usr/$(get_libdir)/libpython${PYTHON_ABI}$(get_libname)" |
2286 | echo "${prefix}usr/$(get_libdir)/libpython${PYTHON_ABI}$(get_libname)" |
| 2049 | fi |
2287 | fi |
| 2050 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
2288 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
| 2051 | die "${FUNCNAME}(): Jython does not have shared library" |
2289 | die "${FUNCNAME}(): Jython does not have shared library" |
|
|
2290 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "PyPy" ]]; then |
|
|
2291 | die "${FUNCNAME}(): PyPy does not have shared library" |
| 2052 | fi |
2292 | fi |
| 2053 | } |
2293 | } |
| 2054 | |
2294 | |
| 2055 | # @FUNCTION: python_get_version |
2295 | # @FUNCTION: python_get_version |
| 2056 | # @USAGE: [-f|--final-ABI] [--full] [--major] [--minor] [--micro] |
2296 | # @USAGE: [-f|--final-ABI] [-l|--language] [--full] [--major] [--minor] [--micro] |
| 2057 | # @DESCRIPTION: |
2297 | # @DESCRIPTION: |
| 2058 | # Print Python version. |
2298 | # Print version of Python implementation. |
| 2059 | # --full, --major, --minor and --micro options cannot be specified simultaneously. |
2299 | # --full, --major, --minor and --micro options cannot be specified simultaneously. |
| 2060 | # If --full, --major, --minor and --micro options are not specified, then "${major_version}.${minor_version}" is printed. |
2300 | # If --full, --major, --minor and --micro options are not specified, then "${major_version}.${minor_version}" is printed. |
|
|
2301 | # If --language option is specified, then version of Python language is printed. |
|
|
2302 | # --language and --full options cannot be specified simultaneously. |
|
|
2303 | # --language and --micro options cannot be specified simultaneously. |
| 2061 | # If --final-ABI option is specified, then final ABI from the list of enabled ABIs is used. |
2304 | # If --final-ABI option is specified, then final ABI from the list of enabled ABIs is used. |
| 2062 | python_get_version() { |
2305 | python_get_version() { |
| 2063 | _python_check_python_pkg_setup_execution |
2306 | _python_check_python_pkg_setup_execution |
| 2064 | |
2307 | |
| 2065 | local final_ABI="0" full="0" major="0" minor="0" micro="0" python_command |
2308 | local final_ABI="0" language="0" language_version full="0" major="0" minor="0" micro="0" PYTHON_ABI="${PYTHON_ABI}" python_command |
| 2066 | |
2309 | |
| 2067 | while (($#)); do |
2310 | while (($#)); do |
| 2068 | case "$1" in |
2311 | case "$1" in |
| 2069 | -f|--final-ABI) |
2312 | -f|--final-ABI) |
| 2070 | final_ABI="1" |
2313 | final_ABI="1" |
| 2071 | ;; |
2314 | ;; |
|
|
2315 | -l|--language) |
|
|
2316 | language="1" |
|
|
2317 | ;; |
| 2072 | --full) |
2318 | --full) |
| 2073 | full="1" |
2319 | full="1" |
| 2074 | ;; |
2320 | ;; |
| 2075 | --major) |
2321 | --major) |
| 2076 | major="1" |
2322 | major="1" |
| … | |
… | |
| 2088 | die "${FUNCNAME}(): Invalid usage" |
2334 | die "${FUNCNAME}(): Invalid usage" |
| 2089 | ;; |
2335 | ;; |
| 2090 | esac |
2336 | esac |
| 2091 | shift |
2337 | shift |
| 2092 | done |
2338 | done |
| 2093 | |
|
|
| 2094 | if [[ "$((${full} + ${major} + ${minor} + ${micro}))" -gt 1 ]]; then |
|
|
| 2095 | die "${FUNCNAME}(): '--full', '--major', '--minor' or '--micro' options cannot be specified simultaneously" |
|
|
| 2096 | fi |
|
|
| 2097 | |
|
|
| 2098 | if [[ "${full}" == "1" ]]; then |
|
|
| 2099 | python_command="from sys import version_info; print('.'.join(str(x) for x in version_info[:3]))" |
|
|
| 2100 | elif [[ "${major}" == "1" ]]; then |
|
|
| 2101 | python_command="from sys import version_info; print(version_info[0])" |
|
|
| 2102 | elif [[ "${minor}" == "1" ]]; then |
|
|
| 2103 | python_command="from sys import version_info; print(version_info[1])" |
|
|
| 2104 | elif [[ "${micro}" == "1" ]]; then |
|
|
| 2105 | python_command="from sys import version_info; print(version_info[2])" |
|
|
| 2106 | else |
|
|
| 2107 | if [[ -n "${PYTHON_ABI}" && "${final_ABI}" == "0" ]]; then |
|
|
| 2108 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
|
|
| 2109 | echo "${PYTHON_ABI}" |
|
|
| 2110 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
|
|
| 2111 | echo "${PYTHON_ABI%-jython}" |
|
|
| 2112 | fi |
|
|
| 2113 | return |
|
|
| 2114 | fi |
|
|
| 2115 | python_command="from sys import version_info; print('.'.join(str(x) for x in version_info[:2]))" |
|
|
| 2116 | fi |
|
|
| 2117 | |
2339 | |
| 2118 | if [[ "${final_ABI}" == "1" ]]; then |
2340 | if [[ "${final_ABI}" == "1" ]]; then |
| 2119 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
2341 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
| 2120 | die "${FUNCNAME}(): '--final-ABI' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
2342 | die "${FUNCNAME}(): '--final-ABI' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
| 2121 | fi |
2343 | fi |
| 2122 | "$(PYTHON -f)" -c "${python_command}" |
|
|
| 2123 | else |
2344 | else |
| 2124 | if _python_package_supporting_installation_for_multiple_python_abis && ! _python_abi-specific_local_scope; then |
2345 | if _python_package_supporting_installation_for_multiple_python_abis && ! _python_abi-specific_local_scope; then |
| 2125 | die "${FUNCNAME}() should be used in ABI-specific local scope" |
2346 | die "${FUNCNAME}() should be used in ABI-specific local scope" |
| 2126 | fi |
2347 | fi |
|
|
2348 | fi |
|
|
2349 | |
|
|
2350 | if [[ "$((${full} + ${major} + ${minor} + ${micro}))" -gt 1 ]]; then |
|
|
2351 | die "${FUNCNAME}(): '--full', '--major', '--minor' or '--micro' options cannot be specified simultaneously" |
|
|
2352 | fi |
|
|
2353 | |
|
|
2354 | if [[ "${language}" == "1" ]]; then |
|
|
2355 | if [[ "${final_ABI}" == "1" ]]; then |
|
|
2356 | PYTHON_ABI="$(PYTHON -f --ABI)" |
|
|
2357 | elif [[ -z "${PYTHON_ABI}" ]]; then |
|
|
2358 | PYTHON_ABI="$(PYTHON --ABI)" |
|
|
2359 | fi |
|
|
2360 | language_version="${PYTHON_ABI%%-*}" |
|
|
2361 | if [[ "${full}" == "1" ]]; then |
|
|
2362 | die "${FUNCNAME}(): '--language' and '--full' options cannot be specified simultaneously" |
|
|
2363 | elif [[ "${major}" == "1" ]]; then |
|
|
2364 | echo "${language_version%.*}" |
|
|
2365 | elif [[ "${minor}" == "1" ]]; then |
|
|
2366 | echo "${language_version#*.}" |
|
|
2367 | elif [[ "${micro}" == "1" ]]; then |
|
|
2368 | die "${FUNCNAME}(): '--language' and '--micro' options cannot be specified simultaneously" |
|
|
2369 | else |
|
|
2370 | echo "${language_version}" |
|
|
2371 | fi |
|
|
2372 | else |
|
|
2373 | if [[ "${full}" == "1" ]]; then |
|
|
2374 | python_command="import sys; print('.'.join(str(x) for x in getattr(sys, 'pypy_version_info', sys.version_info)[:3]))" |
|
|
2375 | elif [[ "${major}" == "1" ]]; then |
|
|
2376 | python_command="import sys; print(getattr(sys, 'pypy_version_info', sys.version_info)[0])" |
|
|
2377 | elif [[ "${minor}" == "1" ]]; then |
|
|
2378 | python_command="import sys; print(getattr(sys, 'pypy_version_info', sys.version_info)[1])" |
|
|
2379 | elif [[ "${micro}" == "1" ]]; then |
|
|
2380 | python_command="import sys; print(getattr(sys, 'pypy_version_info', sys.version_info)[2])" |
|
|
2381 | else |
|
|
2382 | if [[ -n "${PYTHON_ABI}" && "${final_ABI}" == "0" ]]; then |
|
|
2383 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
|
|
2384 | echo "${PYTHON_ABI}" |
|
|
2385 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
|
|
2386 | echo "${PYTHON_ABI%-jython}" |
|
|
2387 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "PyPy" ]]; then |
|
|
2388 | echo "${PYTHON_ABI#*-pypy-}" |
|
|
2389 | fi |
|
|
2390 | return |
|
|
2391 | fi |
|
|
2392 | python_command="from sys import version_info; print('.'.join(str(x) for x in version_info[:2]))" |
|
|
2393 | fi |
|
|
2394 | |
|
|
2395 | if [[ "${final_ABI}" == "1" ]]; then |
|
|
2396 | "$(PYTHON -f)" -c "${python_command}" |
|
|
2397 | else |
| 2127 | "$(PYTHON ${PYTHON_ABI})" -c "${python_command}" |
2398 | "$(PYTHON ${PYTHON_ABI})" -c "${python_command}" |
|
|
2399 | fi |
|
|
2400 | fi |
|
|
2401 | } |
|
|
2402 | |
|
|
2403 | # @FUNCTION: python_get_implementation_and_version |
|
|
2404 | # @USAGE: [-f|--final-ABI] |
|
|
2405 | # @DESCRIPTION: |
|
|
2406 | # Print name and version of Python implementation. |
|
|
2407 | # If version of Python implementation is not bound to version of Python language, then |
|
|
2408 | # version of Python language is additionally printed. |
|
|
2409 | # If --final-ABI option is specified, then final ABI from the list of enabled ABIs is used. |
|
|
2410 | python_get_implementation_and_version() { |
|
|
2411 | _python_check_python_pkg_setup_execution |
|
|
2412 | |
|
|
2413 | local final_ABI="0" PYTHON_ABI="${PYTHON_ABI}" |
|
|
2414 | |
|
|
2415 | while (($#)); do |
|
|
2416 | case "$1" in |
|
|
2417 | -f|--final-ABI) |
|
|
2418 | final_ABI="1" |
|
|
2419 | ;; |
|
|
2420 | -*) |
|
|
2421 | die "${FUNCNAME}(): Unrecognized option '$1'" |
|
|
2422 | ;; |
|
|
2423 | *) |
|
|
2424 | die "${FUNCNAME}(): Invalid usage" |
|
|
2425 | ;; |
|
|
2426 | esac |
|
|
2427 | shift |
|
|
2428 | done |
|
|
2429 | |
|
|
2430 | if [[ "${final_ABI}" == "1" ]]; then |
|
|
2431 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
2432 | die "${FUNCNAME}(): '--final-ABI' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
|
|
2433 | fi |
|
|
2434 | PYTHON_ABI="$(PYTHON -f --ABI)" |
|
|
2435 | else |
|
|
2436 | if _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
2437 | if ! _python_abi-specific_local_scope; then |
|
|
2438 | die "${FUNCNAME}() should be used in ABI-specific local scope" |
|
|
2439 | fi |
|
|
2440 | else |
|
|
2441 | PYTHON_ABI="${PYTHON_ABI:-$(PYTHON --ABI)}" |
|
|
2442 | fi |
|
|
2443 | fi |
|
|
2444 | |
|
|
2445 | if [[ "${PYTHON_ABI}" =~ ^[[:digit:]]+\.[[:digit:]]+-[[:alnum:]]+-[[:digit:]]+\.[[:digit:]]+$ ]]; then |
|
|
2446 | echo "$(_python_get_implementation "${PYTHON_ABI}") ${PYTHON_ABI##*-} (Python ${PYTHON_ABI%%-*})" |
|
|
2447 | else |
|
|
2448 | echo "$(_python_get_implementation "${PYTHON_ABI}") ${PYTHON_ABI%%-*}" |
| 2128 | fi |
2449 | fi |
| 2129 | } |
2450 | } |
| 2130 | |
2451 | |
| 2131 | # ================================================================================================ |
2452 | # ================================================================================================ |
| 2132 | # ================================ FUNCTIONS FOR RUNNING OF TESTS ================================ |
2453 | # ================================ FUNCTIONS FOR RUNNING OF TESTS ================================ |
| … | |
… | |
| 2141 | _python_test_hook() { |
2462 | _python_test_hook() { |
| 2142 | if [[ "$#" -ne 1 ]]; then |
2463 | if [[ "$#" -ne 1 ]]; then |
| 2143 | die "${FUNCNAME}() requires 1 argument" |
2464 | die "${FUNCNAME}() requires 1 argument" |
| 2144 | fi |
2465 | fi |
| 2145 | |
2466 | |
| 2146 | if _python_package_supporting_installation_for_multiple_python_abis && [[ "$(type -t "${FUNCNAME[3]}_$1_hook")" == "function" ]]; then |
2467 | if _python_package_supporting_installation_for_multiple_python_abis && [[ "$(type -t "${_PYTHON_TEST_FUNCTION}_$1_hook")" == "function" ]]; then |
| 2147 | "${FUNCNAME[3]}_$1_hook" |
2468 | "${_PYTHON_TEST_FUNCTION}_$1_hook" |
| 2148 | fi |
2469 | fi |
| 2149 | } |
2470 | } |
| 2150 | |
2471 | |
| 2151 | # @FUNCTION: python_execute_nosetests |
2472 | # @FUNCTION: python_execute_nosetests |
| 2152 | # @USAGE: [-P|--PYTHONPATH PYTHONPATH] [-s|--separate-build-dirs] [--] [arguments] |
2473 | # @USAGE: [-P|--PYTHONPATH PYTHONPATH] [-s|--separate-build-dirs] [--] [arguments] |
| … | |
… | |
| 2156 | # python_execute_nosetests_pre_hook() and python_execute_nosetests_post_hook(), if they are defined. |
2477 | # python_execute_nosetests_pre_hook() and python_execute_nosetests_post_hook(), if they are defined. |
| 2157 | python_execute_nosetests() { |
2478 | python_execute_nosetests() { |
| 2158 | _python_check_python_pkg_setup_execution |
2479 | _python_check_python_pkg_setup_execution |
| 2159 | _python_set_color_variables |
2480 | _python_set_color_variables |
| 2160 | |
2481 | |
| 2161 | local PYTHONPATH_template= separate_build_dirs= |
2482 | local PYTHONPATH_template separate_build_dirs |
| 2162 | |
2483 | |
| 2163 | while (($#)); do |
2484 | while (($#)); do |
| 2164 | case "$1" in |
2485 | case "$1" in |
| 2165 | -P|--PYTHONPATH) |
2486 | -P|--PYTHONPATH) |
| 2166 | PYTHONPATH_template="$2" |
2487 | PYTHONPATH_template="$2" |
| … | |
… | |
| 2186 | python_test_function() { |
2507 | python_test_function() { |
| 2187 | local evaluated_PYTHONPATH |
2508 | local evaluated_PYTHONPATH |
| 2188 | |
2509 | |
| 2189 | eval "evaluated_PYTHONPATH=\"${PYTHONPATH_template}\"" |
2510 | eval "evaluated_PYTHONPATH=\"${PYTHONPATH_template}\"" |
| 2190 | |
2511 | |
| 2191 | _python_test_hook pre |
2512 | _PYTHON_TEST_FUNCTION="python_execute_nosetests" _python_test_hook pre |
| 2192 | |
2513 | |
| 2193 | if [[ -n "${evaluated_PYTHONPATH}" ]]; then |
2514 | if [[ -n "${evaluated_PYTHONPATH}" ]]; then |
| 2194 | echo ${_BOLD}PYTHONPATH="${evaluated_PYTHONPATH}" nosetests --verbosity="${PYTHON_TEST_VERBOSITY}" "$@"${_NORMAL} |
2515 | echo ${_BOLD}PYTHONPATH="${evaluated_PYTHONPATH}" nosetests --verbosity="${PYTHON_TEST_VERBOSITY}" "$@"${_NORMAL} |
| 2195 | PYTHONPATH="${evaluated_PYTHONPATH}" nosetests --verbosity="${PYTHON_TEST_VERBOSITY}" "$@" || return "$?" |
2516 | PYTHONPATH="${evaluated_PYTHONPATH}" nosetests --verbosity="${PYTHON_TEST_VERBOSITY}" "$@" || return "$?" |
| 2196 | else |
2517 | else |
| 2197 | echo ${_BOLD}nosetests --verbosity="${PYTHON_TEST_VERBOSITY}" "$@"${_NORMAL} |
2518 | echo ${_BOLD}nosetests --verbosity="${PYTHON_TEST_VERBOSITY}" "$@"${_NORMAL} |
| 2198 | nosetests --verbosity="${PYTHON_TEST_VERBOSITY}" "$@" || return "$?" |
2519 | nosetests --verbosity="${PYTHON_TEST_VERBOSITY}" "$@" || return "$?" |
| 2199 | fi |
2520 | fi |
| 2200 | |
2521 | |
| 2201 | _python_test_hook post |
2522 | _PYTHON_TEST_FUNCTION="python_execute_nosetests" _python_test_hook post |
| 2202 | } |
2523 | } |
| 2203 | if _python_package_supporting_installation_for_multiple_python_abis; then |
2524 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| 2204 | python_execute_function ${separate_build_dirs:+-s} python_test_function "$@" |
2525 | python_execute_function ${separate_build_dirs:+-s} python_test_function "$@" |
| 2205 | else |
2526 | else |
| 2206 | if [[ -n "${separate_build_dirs}" ]]; then |
2527 | if [[ -n "${separate_build_dirs}" ]]; then |
| … | |
… | |
| 2220 | # python_execute_py.test_pre_hook() and python_execute_py.test_post_hook(), if they are defined. |
2541 | # python_execute_py.test_pre_hook() and python_execute_py.test_post_hook(), if they are defined. |
| 2221 | python_execute_py.test() { |
2542 | python_execute_py.test() { |
| 2222 | _python_check_python_pkg_setup_execution |
2543 | _python_check_python_pkg_setup_execution |
| 2223 | _python_set_color_variables |
2544 | _python_set_color_variables |
| 2224 | |
2545 | |
| 2225 | local PYTHONPATH_template= separate_build_dirs= |
2546 | local PYTHONPATH_template separate_build_dirs |
| 2226 | |
2547 | |
| 2227 | while (($#)); do |
2548 | while (($#)); do |
| 2228 | case "$1" in |
2549 | case "$1" in |
| 2229 | -P|--PYTHONPATH) |
2550 | -P|--PYTHONPATH) |
| 2230 | PYTHONPATH_template="$2" |
2551 | PYTHONPATH_template="$2" |
| … | |
… | |
| 2250 | python_test_function() { |
2571 | python_test_function() { |
| 2251 | local evaluated_PYTHONPATH |
2572 | local evaluated_PYTHONPATH |
| 2252 | |
2573 | |
| 2253 | eval "evaluated_PYTHONPATH=\"${PYTHONPATH_template}\"" |
2574 | eval "evaluated_PYTHONPATH=\"${PYTHONPATH_template}\"" |
| 2254 | |
2575 | |
| 2255 | _python_test_hook pre |
2576 | _PYTHON_TEST_FUNCTION="python_execute_py.test" _python_test_hook pre |
| 2256 | |
2577 | |
| 2257 | if [[ -n "${evaluated_PYTHONPATH}" ]]; then |
2578 | if [[ -n "${evaluated_PYTHONPATH}" ]]; then |
| 2258 | echo ${_BOLD}PYTHONPATH="${evaluated_PYTHONPATH}" py.test $([[ "${PYTHON_TEST_VERBOSITY}" -ge 2 ]] && echo -v) "$@"${_NORMAL} |
2579 | echo ${_BOLD}PYTHONPATH="${evaluated_PYTHONPATH}" py.test $([[ "${PYTHON_TEST_VERBOSITY}" -ge 2 ]] && echo -v) "$@"${_NORMAL} |
| 2259 | PYTHONPATH="${evaluated_PYTHONPATH}" py.test $([[ "${PYTHON_TEST_VERBOSITY}" -ge 2 ]] && echo -v) "$@" || return "$?" |
2580 | PYTHONPATH="${evaluated_PYTHONPATH}" py.test $([[ "${PYTHON_TEST_VERBOSITY}" -ge 2 ]] && echo -v) "$@" || return "$?" |
| 2260 | else |
2581 | else |
| 2261 | echo ${_BOLD}py.test $([[ "${PYTHON_TEST_VERBOSITY}" -gt 1 ]] && echo -v) "$@"${_NORMAL} |
2582 | echo ${_BOLD}py.test $([[ "${PYTHON_TEST_VERBOSITY}" -gt 1 ]] && echo -v) "$@"${_NORMAL} |
| 2262 | py.test $([[ "${PYTHON_TEST_VERBOSITY}" -gt 1 ]] && echo -v) "$@" || return "$?" |
2583 | py.test $([[ "${PYTHON_TEST_VERBOSITY}" -gt 1 ]] && echo -v) "$@" || return "$?" |
| 2263 | fi |
2584 | fi |
| 2264 | |
2585 | |
| 2265 | _python_test_hook post |
2586 | _PYTHON_TEST_FUNCTION="python_execute_py.test" _python_test_hook post |
| 2266 | } |
2587 | } |
| 2267 | if _python_package_supporting_installation_for_multiple_python_abis; then |
2588 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| 2268 | python_execute_function ${separate_build_dirs:+-s} python_test_function "$@" |
2589 | python_execute_function ${separate_build_dirs:+-s} python_test_function "$@" |
| 2269 | else |
2590 | else |
| 2270 | if [[ -n "${separate_build_dirs}" ]]; then |
2591 | if [[ -n "${separate_build_dirs}" ]]; then |
| … | |
… | |
| 2284 | # calls python_execute_trial_pre_hook() and python_execute_trial_post_hook(), if they are defined. |
2605 | # calls python_execute_trial_pre_hook() and python_execute_trial_post_hook(), if they are defined. |
| 2285 | python_execute_trial() { |
2606 | python_execute_trial() { |
| 2286 | _python_check_python_pkg_setup_execution |
2607 | _python_check_python_pkg_setup_execution |
| 2287 | _python_set_color_variables |
2608 | _python_set_color_variables |
| 2288 | |
2609 | |
| 2289 | local PYTHONPATH_template= separate_build_dirs= |
2610 | local PYTHONPATH_template separate_build_dirs |
| 2290 | |
2611 | |
| 2291 | while (($#)); do |
2612 | while (($#)); do |
| 2292 | case "$1" in |
2613 | case "$1" in |
| 2293 | -P|--PYTHONPATH) |
2614 | -P|--PYTHONPATH) |
| 2294 | PYTHONPATH_template="$2" |
2615 | PYTHONPATH_template="$2" |
| … | |
… | |
| 2314 | python_test_function() { |
2635 | python_test_function() { |
| 2315 | local evaluated_PYTHONPATH |
2636 | local evaluated_PYTHONPATH |
| 2316 | |
2637 | |
| 2317 | eval "evaluated_PYTHONPATH=\"${PYTHONPATH_template}\"" |
2638 | eval "evaluated_PYTHONPATH=\"${PYTHONPATH_template}\"" |
| 2318 | |
2639 | |
| 2319 | _python_test_hook pre |
2640 | _PYTHON_TEST_FUNCTION="python_execute_trial" _python_test_hook pre |
| 2320 | |
2641 | |
| 2321 | if [[ -n "${evaluated_PYTHONPATH}" ]]; then |
2642 | if [[ -n "${evaluated_PYTHONPATH}" ]]; then |
| 2322 | echo ${_BOLD}PYTHONPATH="${evaluated_PYTHONPATH}" trial $([[ "${PYTHON_TEST_VERBOSITY}" -ge 4 ]] && echo --spew) "$@"${_NORMAL} |
2643 | echo ${_BOLD}PYTHONPATH="${evaluated_PYTHONPATH}" trial $([[ "${PYTHON_TEST_VERBOSITY}" -ge 4 ]] && echo --spew) "$@"${_NORMAL} |
| 2323 | PYTHONPATH="${evaluated_PYTHONPATH}" trial $([[ "${PYTHON_TEST_VERBOSITY}" -ge 4 ]] && echo --spew) "$@" || return "$?" |
2644 | PYTHONPATH="${evaluated_PYTHONPATH}" trial $([[ "${PYTHON_TEST_VERBOSITY}" -ge 4 ]] && echo --spew) "$@" || return "$?" |
| 2324 | else |
2645 | else |
| 2325 | echo ${_BOLD}trial $([[ "${PYTHON_TEST_VERBOSITY}" -ge 4 ]] && echo --spew) "$@"${_NORMAL} |
2646 | echo ${_BOLD}trial $([[ "${PYTHON_TEST_VERBOSITY}" -ge 4 ]] && echo --spew) "$@"${_NORMAL} |
| 2326 | trial $([[ "${PYTHON_TEST_VERBOSITY}" -ge 4 ]] && echo --spew) "$@" || return "$?" |
2647 | trial $([[ "${PYTHON_TEST_VERBOSITY}" -ge 4 ]] && echo --spew) "$@" || return "$?" |
| 2327 | fi |
2648 | fi |
| 2328 | |
2649 | |
| 2329 | _python_test_hook post |
2650 | _PYTHON_TEST_FUNCTION="python_execute_trial" _python_test_hook post |
| 2330 | } |
2651 | } |
| 2331 | if _python_package_supporting_installation_for_multiple_python_abis; then |
2652 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| 2332 | python_execute_function ${separate_build_dirs:+-s} python_test_function "$@" |
2653 | python_execute_function ${separate_build_dirs:+-s} python_test_function "$@" |
| 2333 | else |
2654 | else |
| 2334 | if [[ -n "${separate_build_dirs}" ]]; then |
2655 | if [[ -n "${separate_build_dirs}" ]]; then |
| … | |
… | |
| 2469 | # Byte-compile specified Python modules. |
2790 | # Byte-compile specified Python modules. |
| 2470 | # -d, -f, -l, -q and -x options passed to this function are passed to compileall.py. |
2791 | # -d, -f, -l, -q and -x options passed to this function are passed to compileall.py. |
| 2471 | # |
2792 | # |
| 2472 | # This function can be used only in pkg_postinst() phase. |
2793 | # This function can be used only in pkg_postinst() phase. |
| 2473 | python_mod_optimize() { |
2794 | python_mod_optimize() { |
|
|
2795 | if [[ "${EBUILD_PHASE}" != "postinst" ]]; then |
|
|
2796 | die "${FUNCNAME}() can be used only in pkg_postinst() phase" |
|
|
2797 | fi |
|
|
2798 | |
| 2474 | _python_check_python_pkg_setup_execution |
2799 | _python_check_python_pkg_setup_execution |
| 2475 | _python_initialize_prefix_variables |
2800 | _python_initialize_prefix_variables |
| 2476 | |
2801 | |
| 2477 | # Check if phase is pkg_postinst(). |
|
|
| 2478 | [[ "${EBUILD_PHASE}" != "postinst" ]] && die "${FUNCNAME}() can be used only in pkg_postinst() phase" |
|
|
| 2479 | |
|
|
| 2480 | if ! has "${EAPI:-0}" 0 1 2 || _python_package_supporting_installation_for_multiple_python_abis || _python_implementation || [[ "${CATEGORY}/${PN}" == "sys-apps/portage" ]]; then |
2802 | if ! has "${EAPI:-0}" 0 1 2 || _python_package_supporting_installation_for_multiple_python_abis || _python_implementation || [[ "${CATEGORY}/${PN}" == "sys-apps/portage" ]]; then |
| 2481 | # PYTHON_ABI variable cannot be local in packages not supporting installation for multiple Python ABIs. |
2803 | # PYTHON_ABI variable cannot be local in packages not supporting installation for multiple Python ABIs. |
| 2482 | local allow_evaluated_non_sitedir_paths="0" dir dirs=() evaluated_dirs=() evaluated_files=() file files=() iterated_PYTHON_ABIS options=() other_dirs=() other_files=() previous_PYTHON_ABI="${PYTHON_ABI}" return_code root site_packages_dirs=() site_packages_files=() |
2804 | local allow_evaluated_non_sitedir_paths="0" dir dirs=() evaluated_dirs=() evaluated_files=() file files=() iterated_PYTHON_ABIS options=() other_dirs=() other_files=() previous_PYTHON_ABI="${PYTHON_ABI}" return_code root site_packages_dirs=() site_packages_files=() stderr stderr_line |
| 2483 | |
2805 | |
| 2484 | if _python_package_supporting_installation_for_multiple_python_abis; then |
2806 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| 2485 | if has "${EAPI:-0}" 0 1 2 3 && [[ -z "${PYTHON_ABIS}" ]]; then |
2807 | if has "${EAPI:-0}" 0 1 2 3 && [[ -z "${PYTHON_ABIS}" ]]; then |
| 2486 | die "${FUNCNAME}(): python_pkg_setup() or python_execute_function() not called" |
2808 | die "${FUNCNAME}(): python_pkg_setup() or python_execute_function() not called" |
| 2487 | fi |
2809 | fi |
| … | |
… | |
| 2582 | options+=("-q") |
2904 | options+=("-q") |
| 2583 | |
2905 | |
| 2584 | for PYTHON_ABI in ${iterated_PYTHON_ABIS}; do |
2906 | for PYTHON_ABI in ${iterated_PYTHON_ABIS}; do |
| 2585 | if ((${#site_packages_dirs[@]})) || ((${#site_packages_files[@]})) || ((${#evaluated_dirs[@]})) || ((${#evaluated_files[@]})); then |
2907 | if ((${#site_packages_dirs[@]})) || ((${#site_packages_files[@]})) || ((${#evaluated_dirs[@]})) || ((${#evaluated_files[@]})); then |
| 2586 | return_code="0" |
2908 | return_code="0" |
|
|
2909 | stderr="" |
| 2587 | ebegin "Compilation and optimization of Python modules for $(python_get_implementation) $(python_get_version)" |
2910 | ebegin "Compilation and optimization of Python modules for $(python_get_implementation_and_version)" |
| 2588 | if ((${#site_packages_dirs[@]})) || ((${#evaluated_dirs[@]})); then |
2911 | if ((${#site_packages_dirs[@]})) || ((${#evaluated_dirs[@]})); then |
| 2589 | for dir in "${site_packages_dirs[@]}"; do |
2912 | for dir in "${site_packages_dirs[@]}"; do |
| 2590 | dirs+=("${root}$(python_get_sitedir)/${dir}") |
2913 | dirs+=("${root}$(python_get_sitedir)/${dir}") |
| 2591 | done |
2914 | done |
| 2592 | for dir in "${evaluated_dirs[@]}"; do |
2915 | for dir in "${evaluated_dirs[@]}"; do |
| 2593 | eval "dirs+=(\"\${root}${dir}\")" |
2916 | eval "dirs+=(\"\${root}${dir}\")" |
| 2594 | done |
2917 | done |
| 2595 | "$(PYTHON)" "${root}$(python_get_libdir)/compileall.py" "${options[@]}" "${dirs[@]}" || return_code="1" |
2918 | stderr+="${stderr:+$'\n'}$("$(PYTHON)" -m compileall "${options[@]}" "${dirs[@]}" 2>&1)" || return_code="1" |
| 2596 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" != "Jython" ]]; then |
2919 | if ! has "$(_python_get_implementation "${PYTHON_ABI}")" Jython PyPy; then |
| 2597 | "$(PYTHON)" -O "${root}$(python_get_libdir)/compileall.py" "${options[@]}" "${dirs[@]}" &> /dev/null || return_code="1" |
2920 | "$(PYTHON)" -O -m compileall "${options[@]}" "${dirs[@]}" &> /dev/null || return_code="1" |
| 2598 | fi |
2921 | fi |
| 2599 | _python_clean_compiled_modules "${dirs[@]}" |
2922 | _python_clean_compiled_modules "${dirs[@]}" |
| 2600 | fi |
2923 | fi |
| 2601 | if ((${#site_packages_files[@]})) || ((${#evaluated_files[@]})); then |
2924 | if ((${#site_packages_files[@]})) || ((${#evaluated_files[@]})); then |
| 2602 | for file in "${site_packages_files[@]}"; do |
2925 | for file in "${site_packages_files[@]}"; do |
| 2603 | files+=("${root}$(python_get_sitedir)/${file}") |
2926 | files+=("${root}$(python_get_sitedir)/${file}") |
| 2604 | done |
2927 | done |
| 2605 | for file in "${evaluated_files[@]}"; do |
2928 | for file in "${evaluated_files[@]}"; do |
| 2606 | eval "files+=(\"\${root}${file}\")" |
2929 | eval "files+=(\"\${root}${file}\")" |
| 2607 | done |
2930 | done |
| 2608 | "$(PYTHON)" "${root}$(python_get_libdir)/py_compile.py" "${files[@]}" || return_code="1" |
2931 | stderr+="${stderr:+$'\n'}$("$(PYTHON)" -m py_compile "${files[@]}" 2>&1)" || return_code="1" |
| 2609 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" != "Jython" ]]; then |
2932 | if ! has "$(_python_get_implementation "${PYTHON_ABI}")" Jython PyPy; then |
| 2610 | "$(PYTHON)" -O "${root}$(python_get_libdir)/py_compile.py" "${files[@]}" &> /dev/null || return_code="1" |
2933 | "$(PYTHON)" -O -m py_compile "${files[@]}" &> /dev/null || return_code="1" |
| 2611 | fi |
2934 | fi |
| 2612 | _python_clean_compiled_modules "${files[@]}" |
2935 | _python_clean_compiled_modules "${files[@]}" |
| 2613 | fi |
2936 | fi |
| 2614 | eend "${return_code}" |
2937 | eend "${return_code}" |
|
|
2938 | if [[ -n "${stderr}" ]]; then |
|
|
2939 | eerror "Syntax errors / warnings in Python modules for $(python_get_implementation_and_version):" &> /dev/null |
|
|
2940 | while read stderr_line; do |
|
|
2941 | eerror " ${stderr_line}" |
|
|
2942 | done <<< "${stderr}" |
|
|
2943 | fi |
| 2615 | fi |
2944 | fi |
| 2616 | unset dirs files |
2945 | unset dirs files |
| 2617 | done |
2946 | done |
| 2618 | |
2947 | |
| 2619 | if _python_package_supporting_installation_for_multiple_python_abis; then |
2948 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| … | |
… | |
| 2625 | fi |
2954 | fi |
| 2626 | fi |
2955 | fi |
| 2627 | |
2956 | |
| 2628 | if ((${#other_dirs[@]})) || ((${#other_files[@]})); then |
2957 | if ((${#other_dirs[@]})) || ((${#other_files[@]})); then |
| 2629 | return_code="0" |
2958 | return_code="0" |
|
|
2959 | stderr="" |
| 2630 | ebegin "Compilation and optimization of Python modules placed outside of site-packages directories for $(python_get_implementation) $(python_get_version)" |
2960 | ebegin "Compilation and optimization of Python modules placed outside of site-packages directories for $(python_get_implementation_and_version)" |
| 2631 | if ((${#other_dirs[@]})); then |
2961 | if ((${#other_dirs[@]})); then |
| 2632 | "$(PYTHON ${PYTHON_ABI})" "${root}$(python_get_libdir)/compileall.py" "${options[@]}" "${other_dirs[@]}" || return_code="1" |
2962 | stderr+="${stderr:+$'\n'}$("$(PYTHON ${PYTHON_ABI})" -m compileall "${options[@]}" "${other_dirs[@]}" 2>&1)" || return_code="1" |
| 2633 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" != "Jython" ]]; then |
2963 | if ! has "$(_python_get_implementation "${PYTHON_ABI}")" Jython PyPy; then |
| 2634 | "$(PYTHON ${PYTHON_ABI})" -O "${root}$(python_get_libdir)/compileall.py" "${options[@]}" "${other_dirs[@]}" &> /dev/null || return_code="1" |
2964 | "$(PYTHON ${PYTHON_ABI})" -O -m compileall "${options[@]}" "${other_dirs[@]}" &> /dev/null || return_code="1" |
| 2635 | fi |
2965 | fi |
| 2636 | _python_clean_compiled_modules "${other_dirs[@]}" |
2966 | _python_clean_compiled_modules "${other_dirs[@]}" |
| 2637 | fi |
2967 | fi |
| 2638 | if ((${#other_files[@]})); then |
2968 | if ((${#other_files[@]})); then |
| 2639 | "$(PYTHON ${PYTHON_ABI})" "${root}$(python_get_libdir)/py_compile.py" "${other_files[@]}" || return_code="1" |
2969 | stderr+="${stderr:+$'\n'}$("$(PYTHON ${PYTHON_ABI})" -m py_compile "${other_files[@]}" 2>&1)" || return_code="1" |
| 2640 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" != "Jython" ]]; then |
2970 | if ! has "$(_python_get_implementation "${PYTHON_ABI}")" Jython PyPy; then |
| 2641 | "$(PYTHON ${PYTHON_ABI})" -O "${root}$(python_get_libdir)/py_compile.py" "${other_files[@]}" &> /dev/null || return_code="1" |
2971 | "$(PYTHON ${PYTHON_ABI})" -O -m py_compile "${other_files[@]}" &> /dev/null || return_code="1" |
| 2642 | fi |
2972 | fi |
| 2643 | _python_clean_compiled_modules "${other_files[@]}" |
2973 | _python_clean_compiled_modules "${other_files[@]}" |
| 2644 | fi |
2974 | fi |
| 2645 | eend "${return_code}" |
2975 | eend "${return_code}" |
|
|
2976 | if [[ -n "${stderr}" ]]; then |
|
|
2977 | eerror "Syntax errors / warnings in Python modules placed outside of site-packages directories for $(python_get_implementation_and_version):" &> /dev/null |
|
|
2978 | while read stderr_line; do |
|
|
2979 | eerror " ${stderr_line}" |
|
|
2980 | done <<< "${stderr}" |
|
|
2981 | fi |
| 2646 | fi |
2982 | fi |
| 2647 | else |
2983 | else |
| 2648 | # Deprecated part of python_mod_optimize() |
2984 | # Deprecated part of python_mod_optimize() |
| 2649 | # ewarn |
2985 | ewarn |
| 2650 | # ewarn "Deprecation Warning: Usage of ${FUNCNAME}() in packages not supporting installation" |
2986 | ewarn "Deprecation Warning: Usage of ${FUNCNAME}() in packages not supporting installation" |
| 2651 | # ewarn "for multiple Python ABIs in EAPI <=2 is deprecated and will be disallowed on 2011-06-01." |
2987 | ewarn "for multiple Python ABIs in EAPI <=2 is deprecated and will be disallowed on 2011-08-01." |
| 2652 | # ewarn "Use EAPI >=3 and call ${FUNCNAME}() with paths having appropriate syntax." |
2988 | ewarn "Use EAPI >=3 and call ${FUNCNAME}() with paths having appropriate syntax." |
| 2653 | # ewarn "The ebuild needs to be fixed. Please report a bug, if it has not been already reported." |
2989 | ewarn "The ebuild needs to be fixed. Please report a bug, if it has not been already reported." |
| 2654 | # ewarn |
2990 | ewarn |
| 2655 | |
2991 | |
| 2656 | local myroot mydirs=() myfiles=() myopts=() return_code="0" |
2992 | local myroot mydirs=() myfiles=() myopts=() return_code="0" |
| 2657 | |
2993 | |
| 2658 | # strip trailing slash |
2994 | # strip trailing slash |
| 2659 | myroot="${EROOT%/}" |
2995 | myroot="${EROOT%/}" |
| … | |
… | |
| 2728 | # @DESCRIPTION: |
3064 | # @DESCRIPTION: |
| 2729 | # Delete orphaned byte-compiled Python modules corresponding to specified Python modules. |
3065 | # Delete orphaned byte-compiled Python modules corresponding to specified Python modules. |
| 2730 | # |
3066 | # |
| 2731 | # This function can be used only in pkg_postrm() phase. |
3067 | # This function can be used only in pkg_postrm() phase. |
| 2732 | python_mod_cleanup() { |
3068 | python_mod_cleanup() { |
|
|
3069 | if [[ "${EBUILD_PHASE}" != "postrm" ]]; then |
|
|
3070 | die "${FUNCNAME}() can be used only in pkg_postrm() phase" |
|
|
3071 | fi |
|
|
3072 | |
| 2733 | _python_check_python_pkg_setup_execution |
3073 | _python_check_python_pkg_setup_execution |
| 2734 | _python_initialize_prefix_variables |
3074 | _python_initialize_prefix_variables |
| 2735 | |
3075 | |
| 2736 | local allow_evaluated_non_sitedir_paths="0" dir iterated_PYTHON_ABIS PYTHON_ABI="${PYTHON_ABI}" root search_paths=() sitedir |
3076 | local allow_evaluated_non_sitedir_paths="0" dir iterated_PYTHON_ABIS PYTHON_ABI="${PYTHON_ABI}" root search_paths=() sitedir |
| 2737 | |
|
|
| 2738 | # Check if phase is pkg_postrm(). |
|
|
| 2739 | [[ "${EBUILD_PHASE}" != "postrm" ]] && die "${FUNCNAME}() can be used only in pkg_postrm() phase" |
|
|
| 2740 | |
3077 | |
| 2741 | if _python_package_supporting_installation_for_multiple_python_abis; then |
3078 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| 2742 | if has "${EAPI:-0}" 0 1 2 3 && [[ -z "${PYTHON_ABIS}" ]]; then |
3079 | if has "${EAPI:-0}" 0 1 2 3 && [[ -z "${PYTHON_ABIS}" ]]; then |
| 2743 | die "${FUNCNAME}(): python_pkg_setup() or python_execute_function() not called" |
3080 | die "${FUNCNAME}(): python_pkg_setup() or python_execute_function() not called" |
| 2744 | fi |
3081 | fi |
| … | |
… | |
| 2808 | fi |
3145 | fi |
| 2809 | shift |
3146 | shift |
| 2810 | done |
3147 | done |
| 2811 | else |
3148 | else |
| 2812 | # Deprecated part of python_mod_cleanup() |
3149 | # Deprecated part of python_mod_cleanup() |
| 2813 | # ewarn |
3150 | ewarn |
| 2814 | # ewarn "Deprecation Warning: Usage of ${FUNCNAME}() in packages not supporting installation" |
3151 | ewarn "Deprecation Warning: Usage of ${FUNCNAME}() in packages not supporting installation" |
| 2815 | # ewarn "for multiple Python ABIs in EAPI <=2 is deprecated and will be disallowed on 2011-06-01." |
3152 | ewarn "for multiple Python ABIs in EAPI <=2 is deprecated and will be disallowed on 2011-08-01." |
| 2816 | # ewarn "Use EAPI >=3 and call ${FUNCNAME}() with paths having appropriate syntax." |
3153 | ewarn "Use EAPI >=3 and call ${FUNCNAME}() with paths having appropriate syntax." |
| 2817 | # ewarn "The ebuild needs to be fixed. Please report a bug, if it has not been already reported." |
3154 | ewarn "The ebuild needs to be fixed. Please report a bug, if it has not been already reported." |
| 2818 | # ewarn |
3155 | ewarn |
| 2819 | |
3156 | |
| 2820 | search_paths=("${@#/}") |
3157 | search_paths=("${@#/}") |
| 2821 | search_paths=("${search_paths[@]/#/${root}/}") |
3158 | search_paths=("${search_paths[@]/#/${root}/}") |
| 2822 | fi |
3159 | fi |
| 2823 | |
3160 | |
| … | |
… | |
| 2826 | |
3163 | |
| 2827 | # ================================================================================================ |
3164 | # ================================================================================================ |
| 2828 | # ===================================== DEPRECATED FUNCTIONS ===================================== |
3165 | # ===================================== DEPRECATED FUNCTIONS ===================================== |
| 2829 | # ================================================================================================ |
3166 | # ================================================================================================ |
| 2830 | |
3167 | |
| 2831 | # Scheduled for deletion on 2011-01-01. |
3168 | fi # _PYTHON_ECLASS_INHERITED |
| 2832 | python_version() { |
|
|
| 2833 | eerror "Use PYTHON() instead of python variable. Use python_get_*() instead of PYVER* variables." |
|
|
| 2834 | die "${FUNCNAME}() is banned" |
|
|
| 2835 | } |
|
|
| 2836 | |
|
|
| 2837 | # Scheduled for deletion on 2011-01-01. |
|
|
| 2838 | python_mod_exists() { |
|
|
| 2839 | eerror "Use USE dependencies and/or has_version() instead of ${FUNCNAME}()." |
|
|
| 2840 | die "${FUNCNAME}() is banned" |
|
|
| 2841 | } |
|
|
| 2842 | |
|
|
| 2843 | # Scheduled for deletion on 2011-01-01. |
|
|
| 2844 | python_tkinter_exists() { |
|
|
| 2845 | eerror "Use PYTHON_USE_WITH=\"xml\" and python_pkg_setup() instead of ${FUNCNAME}()." |
|
|
| 2846 | die "${FUNCNAME}() is banned" |
|
|
| 2847 | } |
|
|
| 2848 | |
|
|
| 2849 | # Scheduled for deletion on 2011-04-01. |
|
|
| 2850 | python_mod_compile() { |
|
|
| 2851 | eerror "Use python_mod_optimize() instead of ${FUNCNAME}()." |
|
|
| 2852 | die "${FUNCNAME}() is banned" |
|
|
| 2853 | } |
|
|