| 1 | # Copyright 1999-2011 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.116 2011/07/04 11:27:53 djc Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/python.eclass,v 1.153 2012/03/20 20:37:21 floppym 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 3.3) |
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 | # ================================================================================================ |
|
|
39 | |
|
|
40 | _PYTHON_ABI_PATTERN_REGEX="([[:alnum:]]|\.|-|\*|\[|\])+" |
| 26 | |
41 | |
| 27 | _python_check_python_abi_matching() { |
42 | _python_check_python_abi_matching() { |
| 28 | local pattern patterns patterns_list="0" PYTHON_ABI |
43 | local pattern patterns patterns_list="0" PYTHON_ABI |
| 29 | |
44 | |
| 30 | while (($#)); do |
45 | while (($#)); do |
| … | |
… | |
| 56 | pattern="$2" |
71 | pattern="$2" |
| 57 | |
72 | |
| 58 | if [[ "${pattern}" == *"-cpython" ]]; then |
73 | if [[ "${pattern}" == *"-cpython" ]]; then |
| 59 | [[ "${PYTHON_ABI}" =~ ^[[:digit:]]+\.[[:digit:]]+$ && "${PYTHON_ABI}" == ${pattern%-cpython} ]] |
74 | [[ "${PYTHON_ABI}" =~ ^[[:digit:]]+\.[[:digit:]]+$ && "${PYTHON_ABI}" == ${pattern%-cpython} ]] |
| 60 | elif [[ "${pattern}" == *"-jython" ]]; then |
75 | elif [[ "${pattern}" == *"-jython" ]]; then |
|
|
76 | [[ "${PYTHON_ABI}" == ${pattern} ]] |
|
|
77 | elif [[ "${pattern}" == *"-pypy-"* ]]; then |
| 61 | [[ "${PYTHON_ABI}" == ${pattern} ]] |
78 | [[ "${PYTHON_ABI}" == ${pattern} ]] |
| 62 | else |
79 | else |
| 63 | if [[ "${PYTHON_ABI}" =~ ^[[:digit:]]+\.[[:digit:]]+$ ]]; then |
80 | if [[ "${PYTHON_ABI}" =~ ^[[:digit:]]+\.[[:digit:]]+$ ]]; then |
| 64 | [[ "${PYTHON_ABI}" == ${pattern} ]] |
81 | [[ "${PYTHON_ABI}" == ${pattern} ]] |
| 65 | elif [[ "${PYTHON_ABI}" =~ ^[[:digit:]]+\.[[:digit:]]+-jython$ ]]; then |
82 | elif [[ "${PYTHON_ABI}" =~ ^[[:digit:]]+\.[[:digit:]]+-jython$ ]]; then |
| 66 | [[ "${PYTHON_ABI%-jython}" == ${pattern} ]] |
83 | [[ "${PYTHON_ABI%-jython}" == ${pattern} ]] |
|
|
84 | elif [[ "${PYTHON_ABI}" =~ ^[[:digit:]]+\.[[:digit:]]+-pypy-[[:digit:]]+\.[[:digit:]]+$ ]]; then |
|
|
85 | [[ "${PYTHON_ABI%-pypy-*}" == ${pattern} ]] |
| 67 | else |
86 | else |
| 68 | die "${FUNCNAME}(): Unrecognized Python ABI '${PYTHON_ABI}'" |
87 | die "${FUNCNAME}(): Unrecognized Python ABI '${PYTHON_ABI}'" |
| 69 | fi |
88 | fi |
| 70 | fi |
89 | fi |
| 71 | else |
90 | else |
| … | |
… | |
| 76 | return 0 |
95 | return 0 |
| 77 | fi |
96 | fi |
| 78 | done <<< "${patterns}" |
97 | done <<< "${patterns}" |
| 79 | |
98 | |
| 80 | return 1 |
99 | return 1 |
|
|
100 | fi |
|
|
101 | } |
|
|
102 | |
|
|
103 | _python_implementation() { |
|
|
104 | if [[ "${CATEGORY}/${PN}" == "dev-lang/python" ]]; then |
|
|
105 | return 0 |
|
|
106 | elif [[ "${CATEGORY}/${PN}" == "dev-java/jython" ]]; then |
|
|
107 | return 0 |
|
|
108 | elif [[ "${CATEGORY}/${PN}" == "dev-python/pypy" ]]; then |
|
|
109 | return 0 |
|
|
110 | else |
|
|
111 | return 1 |
|
|
112 | fi |
|
|
113 | } |
|
|
114 | |
|
|
115 | _python_package_supporting_installation_for_multiple_python_abis() { |
|
|
116 | if has "${EAPI:-0}" 0 1 2 3 4; then |
|
|
117 | if [[ -n "${SUPPORT_PYTHON_ABIS}" ]]; then |
|
|
118 | return 0 |
|
|
119 | else |
|
|
120 | return 1 |
|
|
121 | fi |
|
|
122 | else |
|
|
123 | die "${FUNCNAME}(): Support for EAPI=\"${EAPI}\" not implemented" |
| 81 | fi |
124 | fi |
| 82 | } |
125 | } |
| 83 | |
126 | |
| 84 | # @ECLASS-VARIABLE: PYTHON_DEPEND |
127 | # @ECLASS-VARIABLE: PYTHON_DEPEND |
| 85 | # @DESCRIPTION: |
128 | # @DESCRIPTION: |
| … | |
… | |
| 212 | else |
255 | else |
| 213 | die "Invalid syntax of PYTHON_DEPEND" |
256 | die "Invalid syntax of PYTHON_DEPEND" |
| 214 | fi |
257 | fi |
| 215 | } |
258 | } |
| 216 | |
259 | |
|
|
260 | if _python_implementation; then |
| 217 | DEPEND=">=app-admin/eselect-python-20091230" |
261 | DEPEND=">=app-admin/eselect-python-20091230" |
| 218 | RDEPEND="${DEPEND}" |
262 | RDEPEND="${DEPEND}" |
|
|
263 | PDEPEND="app-admin/python-updater" |
|
|
264 | fi |
| 219 | |
265 | |
| 220 | if [[ -n "${PYTHON_DEPEND}" ]]; then |
266 | if [[ -n "${PYTHON_DEPEND}" ]]; then |
| 221 | _python_parse_PYTHON_DEPEND |
267 | _python_parse_PYTHON_DEPEND |
| 222 | else |
268 | else |
| 223 | _PYTHON_ATOMS=("dev-lang/python") |
269 | _PYTHON_ATOMS=("dev-lang/python") |
| … | |
… | |
| 262 | _PYTHON_USE_WITH_ATOMS="${_PYTHON_USE_WITH_ATOMS_ARRAY[@]}" |
308 | _PYTHON_USE_WITH_ATOMS="${_PYTHON_USE_WITH_ATOMS_ARRAY[@]}" |
| 263 | fi |
309 | fi |
| 264 | if [[ -n "${PYTHON_USE_WITH_OPT}" ]]; then |
310 | if [[ -n "${PYTHON_USE_WITH_OPT}" ]]; then |
| 265 | _PYTHON_USE_WITH_ATOMS="${PYTHON_USE_WITH_OPT}? ( ${_PYTHON_USE_WITH_ATOMS} )" |
311 | _PYTHON_USE_WITH_ATOMS="${PYTHON_USE_WITH_OPT}? ( ${_PYTHON_USE_WITH_ATOMS} )" |
| 266 | fi |
312 | fi |
| 267 | DEPEND+=" ${_PYTHON_USE_WITH_ATOMS}" |
313 | DEPEND+="${DEPEND:+ }${_PYTHON_USE_WITH_ATOMS}" |
| 268 | RDEPEND+=" ${_PYTHON_USE_WITH_ATOMS}" |
314 | RDEPEND+="${RDEPEND:+ }${_PYTHON_USE_WITH_ATOMS}" |
| 269 | unset _PYTHON_ATOM _PYTHON_USE_WITH_ATOMS _PYTHON_USE_WITH_ATOMS_ARRAY |
315 | unset _PYTHON_ATOM _PYTHON_USE_WITH_ATOMS _PYTHON_USE_WITH_ATOMS_ARRAY |
| 270 | fi |
316 | fi |
| 271 | |
317 | |
| 272 | unset _PYTHON_ATOMS |
318 | unset _PYTHON_ATOMS |
| 273 | |
319 | |
| 274 | # ================================================================================================ |
320 | # ================================================================================================ |
| 275 | # =================================== MISCELLANEOUS FUNCTIONS ==================================== |
321 | # =================================== MISCELLANEOUS FUNCTIONS ==================================== |
| 276 | # ================================================================================================ |
322 | # ================================================================================================ |
| 277 | |
|
|
| 278 | _python_implementation() { |
|
|
| 279 | if [[ "${CATEGORY}/${PN}" == "dev-lang/python" ]]; then |
|
|
| 280 | return 0 |
|
|
| 281 | elif [[ "${CATEGORY}/${PN}" == "dev-java/jython" ]]; then |
|
|
| 282 | return 0 |
|
|
| 283 | else |
|
|
| 284 | return 1 |
|
|
| 285 | fi |
|
|
| 286 | } |
|
|
| 287 | |
|
|
| 288 | _python_package_supporting_installation_for_multiple_python_abis() { |
|
|
| 289 | if [[ "${EBUILD_PHASE}" == "depend" ]]; then |
|
|
| 290 | die "${FUNCNAME}() cannot be used in global scope" |
|
|
| 291 | fi |
|
|
| 292 | |
|
|
| 293 | if has "${EAPI:-0}" 0 1 2 3 4; then |
|
|
| 294 | if [[ -n "${SUPPORT_PYTHON_ABIS}" ]]; then |
|
|
| 295 | return 0 |
|
|
| 296 | else |
|
|
| 297 | return 1 |
|
|
| 298 | fi |
|
|
| 299 | else |
|
|
| 300 | die "${FUNCNAME}(): Support for EAPI=\"${EAPI}\" not implemented" |
|
|
| 301 | fi |
|
|
| 302 | } |
|
|
| 303 | |
323 | |
| 304 | _python_abi-specific_local_scope() { |
324 | _python_abi-specific_local_scope() { |
| 305 | [[ " ${FUNCNAME[@]:2} " =~ " "(_python_final_sanity_checks|python_execute_function|python_mod_optimize|python_mod_cleanup)" " ]] |
325 | [[ " ${FUNCNAME[@]:2} " =~ " "(_python_final_sanity_checks|python_execute_function|python_mod_optimize|python_mod_cleanup)" " ]] |
| 306 | } |
326 | } |
| 307 | |
327 | |
| … | |
… | |
| 379 | _CYAN= |
399 | _CYAN= |
| 380 | _NORMAL= |
400 | _NORMAL= |
| 381 | fi |
401 | fi |
| 382 | } |
402 | } |
| 383 | |
403 | |
| 384 | unset PYTHON_PKG_SETUP_EXECUTED |
|
|
| 385 | |
|
|
| 386 | _python_check_python_pkg_setup_execution() { |
404 | _python_check_python_pkg_setup_execution() { |
| 387 | [[ " ${FUNCNAME[@]:1} " =~ " "(python_set_active_version|python_pkg_setup)" " ]] && return |
405 | [[ " ${FUNCNAME[@]:1} " =~ " "(python_set_active_version|python_pkg_setup)" " ]] && return |
| 388 | |
406 | |
| 389 | if ! has "${EAPI:-0}" 0 1 2 3 && [[ -z "${PYTHON_PKG_SETUP_EXECUTED}" ]]; then |
407 | if ! has "${EAPI:-0}" 0 1 2 3 && [[ -z "${PYTHON_PKG_SETUP_EXECUTED}" ]]; then |
| 390 | die "python_pkg_setup() not called" |
408 | die "python_pkg_setup() not called" |
| … | |
… | |
| 458 | fi |
476 | fi |
| 459 | |
477 | |
| 460 | PYTHON_PKG_SETUP_EXECUTED="1" |
478 | PYTHON_PKG_SETUP_EXECUTED="1" |
| 461 | } |
479 | } |
| 462 | |
480 | |
| 463 | if ! has "${EAPI:-0}" 0 1 2 3 || { has "${EAPI:-0}" 2 3 && [[ -n "${PYTHON_USE_WITH}" || -n "${PYTHON_USE_WITH_OR}" ]]; }; then |
|
|
| 464 | EXPORT_FUNCTIONS pkg_setup |
|
|
| 465 | fi |
|
|
| 466 | |
|
|
| 467 | _PYTHON_SHEBANG_BASE_PART_REGEX='^#![[:space:]]*([^[:space:]]*/usr/bin/env[[:space:]]+)?([^[:space:]]*/)?(jython|python)' |
481 | _PYTHON_SHEBANG_BASE_PART_REGEX='^#![[:space:]]*([^[:space:]]*/usr/bin/env[[:space:]]+)?([^[:space:]]*/)?(jython|pypy-c|python)' |
| 468 | |
482 | |
| 469 | # @FUNCTION: python_convert_shebangs |
483 | # @FUNCTION: python_convert_shebangs |
| 470 | # @USAGE: [-q|--quiet] [-r|--recursive] [-x|--only-executables] [--] <Python_ABI|Python_version> <file|directory> [files|directories] |
484 | # @USAGE: [-q|--quiet] [-r|--recursive] [-x|--only-executables] [--] <Python_ABI|Python_version> <file|directory> [files|directories] |
| 471 | # @DESCRIPTION: |
485 | # @DESCRIPTION: |
| 472 | # Convert shebangs in specified files. Directories can be specified only with --recursive option. |
486 | # Convert shebangs in specified files. Directories can be specified only with --recursive option. |
| 473 | python_convert_shebangs() { |
487 | python_convert_shebangs() { |
| 474 | _python_check_python_pkg_setup_execution |
488 | _python_check_python_pkg_setup_execution |
| 475 | |
489 | |
| 476 | local argument file files=() only_executables="0" python_interpreter quiet="0" recursive="0" |
490 | local argument file files=() only_executables="0" python_interpreter quiet="0" recursive="0" shebangs_converted="0" |
| 477 | |
491 | |
| 478 | while (($#)); do |
492 | while (($#)); do |
| 479 | case "$1" in |
493 | case "$1" in |
| 480 | -r|--recursive) |
494 | -r|--recursive) |
| 481 | recursive="1" |
495 | recursive="1" |
| … | |
… | |
| 536 | [[ "${only_executables}" == "1" && ! -x "${file}" ]] && continue |
550 | [[ "${only_executables}" == "1" && ! -x "${file}" ]] && continue |
| 537 | |
551 | |
| 538 | if [[ "$(head -n1 "${file}")" =~ ${_PYTHON_SHEBANG_BASE_PART_REGEX} ]]; then |
552 | if [[ "$(head -n1 "${file}")" =~ ${_PYTHON_SHEBANG_BASE_PART_REGEX} ]]; then |
| 539 | [[ "$(sed -ne "2p" "${file}")" =~ ^"# Gentoo '".*"' wrapper script generated by python_generate_wrapper_scripts()"$ ]] && continue |
553 | [[ "$(sed -ne "2p" "${file}")" =~ ^"# Gentoo '".*"' wrapper script generated by python_generate_wrapper_scripts()"$ ]] && continue |
| 540 | |
554 | |
|
|
555 | shebangs_converted="1" |
|
|
556 | |
| 541 | if [[ "${quiet}" == "0" ]]; then |
557 | if [[ "${quiet}" == "0" ]]; then |
| 542 | einfo "Converting shebang in '${file}'" |
558 | einfo "Converting shebang in '${file}'" |
| 543 | fi |
559 | fi |
| 544 | |
560 | |
| 545 | 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" |
561 | 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" |
|
|
562 | fi |
|
|
563 | done |
|
|
564 | |
|
|
565 | if [[ "${shebangs_converted}" == "0" ]]; then |
|
|
566 | ewarn "${FUNCNAME}(): Python scripts not found" |
| 546 | fi |
567 | fi |
|
|
568 | } |
|
|
569 | |
|
|
570 | # @FUNCTION: python_clean_py-compile_files |
|
|
571 | # @USAGE: [-q|--quiet] |
|
|
572 | # @DESCRIPTION: |
|
|
573 | # Clean py-compile files to disable byte-compilation. |
|
|
574 | python_clean_py-compile_files() { |
|
|
575 | _python_check_python_pkg_setup_execution |
|
|
576 | |
|
|
577 | local file files=() quiet="0" |
|
|
578 | |
|
|
579 | while (($#)); do |
|
|
580 | case "$1" in |
|
|
581 | -q|--quiet) |
|
|
582 | quiet="1" |
|
|
583 | ;; |
|
|
584 | -*) |
|
|
585 | die "${FUNCNAME}(): Unrecognized option '$1'" |
|
|
586 | ;; |
|
|
587 | *) |
|
|
588 | die "${FUNCNAME}(): Invalid usage" |
|
|
589 | ;; |
|
|
590 | esac |
|
|
591 | shift |
|
|
592 | done |
|
|
593 | |
|
|
594 | while read -d $'\0' -r file; do |
|
|
595 | files+=("${file#./}") |
|
|
596 | done < <(find -name py-compile -type f -print0) |
|
|
597 | |
|
|
598 | for file in "${files[@]}"; do |
|
|
599 | if [[ "${quiet}" == "0" ]]; then |
|
|
600 | einfo "Cleaning '${file}' file" |
|
|
601 | fi |
|
|
602 | echo "#!/bin/sh" > "${file}" |
| 547 | done |
603 | done |
| 548 | } |
604 | } |
| 549 | |
605 | |
| 550 | # @FUNCTION: python_clean_installation_image |
606 | # @FUNCTION: python_clean_installation_image |
| 551 | # @USAGE: [-q|--quiet] |
607 | # @USAGE: [-q|--quiet] |
| … | |
… | |
| 706 | fi |
762 | fi |
| 707 | |
763 | |
| 708 | _python_initial_sanity_checks |
764 | _python_initial_sanity_checks |
| 709 | |
765 | |
| 710 | if [[ "$(declare -p PYTHON_ABIS 2> /dev/null)" != "declare -x PYTHON_ABIS="* ]] && has "${EAPI:-0}" 0 1 2 3 4; then |
766 | if [[ "$(declare -p PYTHON_ABIS 2> /dev/null)" != "declare -x PYTHON_ABIS="* ]] && has "${EAPI:-0}" 0 1 2 3 4; then |
| 711 | local PYTHON_ABI restricted_ABI restricted_ABIs support_ABI supported_PYTHON_ABIS |
767 | local PYTHON_ABI |
| 712 | |
|
|
| 713 | restricted_ABIs="${RESTRICT_PYTHON_ABIS// /$'\n'}" |
|
|
| 714 | |
768 | |
| 715 | if [[ "$(declare -p USE_PYTHON 2> /dev/null)" == "declare -x USE_PYTHON="* ]]; then |
769 | if [[ "$(declare -p USE_PYTHON 2> /dev/null)" == "declare -x USE_PYTHON="* ]]; then |
| 716 | local cpython_enabled="0" |
770 | local cpython_enabled="0" |
| 717 | |
771 | |
| 718 | if [[ -z "${USE_PYTHON}" ]]; then |
772 | if [[ -z "${USE_PYTHON}" ]]; then |
| … | |
… | |
| 726 | |
780 | |
| 727 | if has "${PYTHON_ABI}" "${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]}" "${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]}"; then |
781 | if has "${PYTHON_ABI}" "${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]}" "${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]}"; then |
| 728 | cpython_enabled="1" |
782 | cpython_enabled="1" |
| 729 | fi |
783 | fi |
| 730 | |
784 | |
| 731 | support_ABI="1" |
|
|
| 732 | while read restricted_ABI; do |
|
|
| 733 | if _python_check_python_abi_matching "${PYTHON_ABI}" "${restricted_ABI}"; then |
785 | if ! _python_check_python_abi_matching --patterns-list "${PYTHON_ABI}" "${RESTRICT_PYTHON_ABIS}"; then |
| 734 | support_ABI="0" |
786 | export PYTHON_ABIS+="${PYTHON_ABIS:+ }${PYTHON_ABI}" |
| 735 | break |
|
|
| 736 | fi |
787 | fi |
| 737 | done <<< "${restricted_ABIs}" |
|
|
| 738 | [[ "${support_ABI}" == "1" ]] && export PYTHON_ABIS+="${PYTHON_ABIS:+ }${PYTHON_ABI}" |
|
|
| 739 | done |
788 | done |
| 740 | |
789 | |
| 741 | if [[ -z "${PYTHON_ABIS//[${IFS}]/}" ]]; then |
790 | if [[ -z "${PYTHON_ABIS//[${IFS}]/}" ]]; then |
| 742 | die "USE_PYTHON variable does not enable any Python ABI supported by ${CATEGORY}/${PF}" |
791 | die "USE_PYTHON variable does not enable any Python ABI supported by ${CATEGORY}/${PF}" |
| 743 | fi |
792 | fi |
| … | |
… | |
| 759 | die "'${EPREFIX}/usr/bin/python2' is not valid symlink" |
808 | die "'${EPREFIX}/usr/bin/python2' is not valid symlink" |
| 760 | fi |
809 | fi |
| 761 | |
810 | |
| 762 | python2_version="$("${EPREFIX}/usr/bin/python2" -c 'from sys import version_info; print(".".join(str(x) for x in version_info[:2]))')" |
811 | python2_version="$("${EPREFIX}/usr/bin/python2" -c 'from sys import version_info; print(".".join(str(x) for x in version_info[:2]))')" |
| 763 | |
812 | |
|
|
813 | support_python_major_version="0" |
| 764 | for PYTHON_ABI in "${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]}"; do |
814 | for PYTHON_ABI in "${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]}"; do |
|
|
815 | if ! _python_check_python_abi_matching --patterns-list "${PYTHON_ABI}" "${RESTRICT_PYTHON_ABIS}"; then |
| 765 | support_python_major_version="1" |
816 | support_python_major_version="1" |
| 766 | while read restricted_ABI; do |
817 | break |
| 767 | if _python_check_python_abi_matching "${PYTHON_ABI}" "${restricted_ABI}"; then |
|
|
| 768 | support_python_major_version="0" |
|
|
| 769 | fi |
818 | fi |
| 770 | done <<< "${restricted_ABIs}" |
|
|
| 771 | [[ "${support_python_major_version}" == "1" ]] && break |
|
|
| 772 | done |
819 | done |
| 773 | if [[ "${support_python_major_version}" == "1" ]]; then |
820 | if [[ "${support_python_major_version}" == "1" ]]; then |
| 774 | while read restricted_ABI; do |
|
|
| 775 | if _python_check_python_abi_matching "${python2_version}" "${restricted_ABI}"; then |
821 | if _python_check_python_abi_matching --patterns-list "${python2_version}" "${RESTRICT_PYTHON_ABIS}"; then |
| 776 | die "Active version of CPython 2 is not supported by ${CATEGORY}/${PF}" |
822 | die "Active version of CPython 2 is not supported by ${CATEGORY}/${PF}" |
| 777 | fi |
823 | fi |
| 778 | done <<< "${restricted_ABIs}" |
|
|
| 779 | else |
824 | else |
| 780 | python2_version="" |
825 | python2_version="" |
| 781 | fi |
826 | fi |
| 782 | fi |
827 | fi |
| 783 | |
828 | |
| … | |
… | |
| 786 | die "'${EPREFIX}/usr/bin/python3' is not valid symlink" |
831 | die "'${EPREFIX}/usr/bin/python3' is not valid symlink" |
| 787 | fi |
832 | fi |
| 788 | |
833 | |
| 789 | python3_version="$("${EPREFIX}/usr/bin/python3" -c 'from sys import version_info; print(".".join(str(x) for x in version_info[:2]))')" |
834 | python3_version="$("${EPREFIX}/usr/bin/python3" -c 'from sys import version_info; print(".".join(str(x) for x in version_info[:2]))')" |
| 790 | |
835 | |
|
|
836 | support_python_major_version="0" |
| 791 | for PYTHON_ABI in "${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]}"; do |
837 | for PYTHON_ABI in "${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]}"; do |
|
|
838 | if ! _python_check_python_abi_matching --patterns-list "${PYTHON_ABI}" "${RESTRICT_PYTHON_ABIS}"; then |
| 792 | support_python_major_version="1" |
839 | support_python_major_version="1" |
| 793 | while read restricted_ABI; do |
840 | break |
| 794 | if _python_check_python_abi_matching "${PYTHON_ABI}" "${restricted_ABI}"; then |
|
|
| 795 | support_python_major_version="0" |
|
|
| 796 | fi |
841 | fi |
| 797 | done <<< "${restricted_ABIs}" |
|
|
| 798 | [[ "${support_python_major_version}" == "1" ]] && break |
|
|
| 799 | done |
842 | done |
| 800 | if [[ "${support_python_major_version}" == "1" ]]; then |
843 | if [[ "${support_python_major_version}" == "1" ]]; then |
| 801 | while read restricted_ABI; do |
|
|
| 802 | if _python_check_python_abi_matching "${python3_version}" "${restricted_ABI}"; then |
844 | if _python_check_python_abi_matching --patterns-list "${python3_version}" "${RESTRICT_PYTHON_ABIS}"; then |
| 803 | die "Active version of CPython 3 is not supported by ${CATEGORY}/${PF}" |
845 | die "Active version of CPython 3 is not supported by ${CATEGORY}/${PF}" |
| 804 | fi |
846 | fi |
| 805 | done <<< "${restricted_ABIs}" |
|
|
| 806 | else |
847 | else |
| 807 | python3_version="" |
848 | python3_version="" |
| 808 | fi |
849 | fi |
|
|
850 | fi |
|
|
851 | |
|
|
852 | if [[ -z "${python2_version}" && -z "${python3_version}" ]]; then |
|
|
853 | eerror "${CATEGORY}/${PF} requires at least one of the following packages:" |
|
|
854 | for PYTHON_ABI in "${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]}" "${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]}"; do |
|
|
855 | if ! _python_check_python_abi_matching --patterns-list "${PYTHON_ABI}" "${RESTRICT_PYTHON_ABIS}"; then |
|
|
856 | eerror " dev-lang/python:${PYTHON_ABI}" |
|
|
857 | fi |
|
|
858 | done |
|
|
859 | die "No supported version of CPython installed" |
| 809 | fi |
860 | fi |
| 810 | |
861 | |
| 811 | if [[ -n "${python2_version}" && "${python_version}" == "2."* && "${python_version}" != "${python2_version}" ]]; then |
862 | if [[ -n "${python2_version}" && "${python_version}" == "2."* && "${python_version}" != "${python2_version}" ]]; then |
| 812 | eerror "Python wrapper is configured incorrectly or '${EPREFIX}/usr/bin/python2' symlink" |
863 | eerror "Python wrapper is configured incorrectly or '${EPREFIX}/usr/bin/python2' symlink" |
| 813 | eerror "is set incorrectly. Use \`eselect python\` to fix configuration." |
864 | eerror "is set incorrectly. Use \`eselect python\` to fix configuration." |
| … | |
… | |
| 835 | eval "_PYTHON_SAVED_${variable}=\"\${!variable}\"" |
886 | eval "_PYTHON_SAVED_${variable}=\"\${!variable}\"" |
| 836 | for prefix in PYTHON_USER_ PYTHON_; do |
887 | for prefix in PYTHON_USER_ PYTHON_; do |
| 837 | if [[ "$(declare -p ${prefix}${variable} 2> /dev/null)" == "declare -a ${prefix}${variable}="* ]]; then |
888 | if [[ "$(declare -p ${prefix}${variable} 2> /dev/null)" == "declare -a ${prefix}${variable}="* ]]; then |
| 838 | eval "array=(\"\${${prefix}${variable}[@]}\")" |
889 | eval "array=(\"\${${prefix}${variable}[@]}\")" |
| 839 | for element in "${array[@]}"; do |
890 | for element in "${array[@]}"; do |
| 840 | if [[ "${element}" =~ ^([[:alnum:]]|\.|-|\*|\[|\])+\ (\+|-)\ .+ ]]; then |
891 | if [[ "${element}" =~ ^${_PYTHON_ABI_PATTERN_REGEX}\ (\+|-)\ .+ ]]; then |
| 841 | pattern="${element%% *}" |
892 | pattern="${element%% *}" |
| 842 | element="${element#* }" |
893 | element="${element#* }" |
| 843 | operator="${element%% *}" |
894 | operator="${element%% *}" |
| 844 | flags="${element#* }" |
895 | flags="${element#* }" |
| 845 | if _python_check_python_abi_matching "${PYTHON_ABI}" "${pattern}"; then |
896 | if _python_check_python_abi_matching "${PYTHON_ABI}" "${pattern}"; then |
| … | |
… | |
| 971 | python_default_function() { |
1022 | python_default_function() { |
| 972 | emake "$@" |
1023 | emake "$@" |
| 973 | } |
1024 | } |
| 974 | elif [[ "${EBUILD_PHASE}" == "test" ]]; then |
1025 | elif [[ "${EBUILD_PHASE}" == "test" ]]; then |
| 975 | python_default_function() { |
1026 | python_default_function() { |
|
|
1027 | # Stolen from portage's _eapi0_src_test() |
|
|
1028 | local emake_cmd="${MAKE:-make} ${MAKEOPTS} ${EXTRA_EMAKE}" |
| 976 | if emake -j1 -n check &> /dev/null; then |
1029 | if ${emake_cmd} -j1 -n check &> /dev/null; then |
| 977 | emake -j1 check "$@" |
1030 | ${emake_cmd} -j1 check "$@" |
| 978 | elif emake -j1 -n test &> /dev/null; then |
1031 | elif ${emake_cmd} -j1 -n test &> /dev/null; then |
| 979 | emake -j1 test "$@" |
1032 | ${emake_cmd} -j1 test "$@" |
| 980 | fi |
1033 | fi |
| 981 | } |
1034 | } |
| 982 | elif [[ "${EBUILD_PHASE}" == "install" ]]; then |
1035 | elif [[ "${EBUILD_PHASE}" == "install" ]]; then |
| 983 | python_default_function() { |
1036 | python_default_function() { |
| 984 | emake DESTDIR="${D}" install "$@" |
1037 | emake DESTDIR="${D}" install "$@" |
| … | |
… | |
| 1015 | iterated_PYTHON_ABIS="${PYTHON_ABIS}" |
1068 | iterated_PYTHON_ABIS="${PYTHON_ABIS}" |
| 1016 | fi |
1069 | fi |
| 1017 | for PYTHON_ABI in ${iterated_PYTHON_ABIS}; do |
1070 | for PYTHON_ABI in ${iterated_PYTHON_ABIS}; do |
| 1018 | if [[ "${EBUILD_PHASE}" == "test" ]] && _python_check_python_abi_matching --patterns-list "${PYTHON_ABI}" "${PYTHON_TESTS_RESTRICTED_ABIS}"; then |
1071 | if [[ "${EBUILD_PHASE}" == "test" ]] && _python_check_python_abi_matching --patterns-list "${PYTHON_ABI}" "${PYTHON_TESTS_RESTRICTED_ABIS}"; then |
| 1019 | if [[ "${quiet}" == "0" ]]; then |
1072 | if [[ "${quiet}" == "0" ]]; then |
| 1020 | echo " ${_GREEN}*${_NORMAL} ${_BLUE}Testing of ${CATEGORY}/${PF} with $(python_get_implementation) $(python_get_version) skipped${_NORMAL}" |
1073 | echo " ${_GREEN}*${_NORMAL} ${_BLUE}Testing of ${CATEGORY}/${PF} with $(python_get_implementation_and_version) skipped${_NORMAL}" |
| 1021 | fi |
1074 | fi |
| 1022 | continue |
1075 | continue |
| 1023 | fi |
1076 | fi |
| 1024 | |
1077 | |
| 1025 | _python_prepare_flags |
1078 | _python_prepare_flags |
| 1026 | |
1079 | |
| 1027 | if [[ "${quiet}" == "0" ]]; then |
1080 | if [[ "${quiet}" == "0" ]]; then |
| 1028 | if [[ -n "${action_message_template}" ]]; then |
1081 | if [[ -n "${action_message_template}" ]]; then |
| 1029 | eval "action_message=\"${action_message_template}\"" |
1082 | eval "action_message=\"${action_message_template}\"" |
| 1030 | else |
1083 | else |
| 1031 | action_message="${action} of ${CATEGORY}/${PF} with $(python_get_implementation) $(python_get_version)..." |
1084 | action_message="${action} of ${CATEGORY}/${PF} with $(python_get_implementation_and_version)..." |
| 1032 | fi |
1085 | fi |
| 1033 | echo " ${_GREEN}*${_NORMAL} ${_BLUE}${action_message}${_NORMAL}" |
1086 | echo " ${_GREEN}*${_NORMAL} ${_BLUE}${action_message}${_NORMAL}" |
| 1034 | fi |
1087 | fi |
| 1035 | |
1088 | |
| 1036 | if [[ "${separate_build_dirs}" == "1" ]]; then |
1089 | if [[ "${separate_build_dirs}" == "1" ]]; then |
| … | |
… | |
| 1060 | |
1113 | |
| 1061 | if [[ "${return_code}" -ne 0 ]]; then |
1114 | if [[ "${return_code}" -ne 0 ]]; then |
| 1062 | if [[ -n "${failure_message_template}" ]]; then |
1115 | if [[ -n "${failure_message_template}" ]]; then |
| 1063 | eval "failure_message=\"${failure_message_template}\"" |
1116 | eval "failure_message=\"${failure_message_template}\"" |
| 1064 | else |
1117 | else |
| 1065 | failure_message="${action} failed with $(python_get_implementation) $(python_get_version) in ${function}() function" |
1118 | failure_message="${action} failed with $(python_get_implementation_and_version) in ${function}() function" |
| 1066 | fi |
1119 | fi |
| 1067 | |
1120 | |
| 1068 | if [[ "${nonfatal}" == "1" ]]; then |
1121 | if [[ "${nonfatal}" == "1" ]]; then |
| 1069 | if [[ "${quiet}" == "0" ]]; then |
1122 | if [[ "${quiet}" == "0" ]]; then |
| 1070 | ewarn "${failure_message}" |
1123 | ewarn "${failure_message}" |
| … | |
… | |
| 1241 | import os |
1294 | import os |
| 1242 | import re |
1295 | import re |
| 1243 | import subprocess |
1296 | import subprocess |
| 1244 | import sys |
1297 | import sys |
| 1245 | |
1298 | |
| 1246 | cpython_re = re.compile(r"^python(\d+\.\d+)$") |
1299 | cpython_ABI_re = re.compile(r"^(\d+\.\d+)$") |
|
|
1300 | jython_ABI_re = re.compile(r"^(\d+\.\d+)-jython$") |
|
|
1301 | pypy_ABI_re = re.compile(r"^\d+\.\d+-pypy-(\d+\.\d+)$") |
|
|
1302 | cpython_interpreter_re = re.compile(r"^python(\d+\.\d+)$") |
| 1247 | jython_re = re.compile(r"^jython(\d+\.\d+)$") |
1303 | jython_interpreter_re = re.compile(r"^jython(\d+\.\d+)$") |
|
|
1304 | pypy_interpreter_re = re.compile(r"^pypy-c(\d+\.\d+)$") |
| 1248 | python_shebang_re = re.compile(r"^#! *(${EPREFIX}/usr/bin/python|(${EPREFIX})?/usr/bin/env +(${EPREFIX}/usr/bin/)?python)") |
1305 | cpython_shebang_re = re.compile(r"^#![ \t]*(?:${EPREFIX}/usr/bin/python|(?:${EPREFIX})?/usr/bin/env[ \t]+(?:${EPREFIX}/usr/bin/)?python)") |
|
|
1306 | python_shebang_options_re = re.compile(r"^#![ \t]*${EPREFIX}/usr/bin/(?:jython|pypy-c|python)(?:\d+(?:\.\d+)?)?[ \t]+(-\S)") |
| 1249 | python_verification_output_re = re.compile("^GENTOO_PYTHON_TARGET_SCRIPT_PATH supported\n$") |
1307 | python_verification_output_re = re.compile("^GENTOO_PYTHON_TARGET_SCRIPT_PATH supported\n$") |
| 1250 | |
1308 | |
| 1251 | def get_PYTHON_ABI(EPYTHON): |
1309 | pypy_versions_mapping = { |
| 1252 | cpython_matched = cpython_re.match(EPYTHON) |
1310 | "1.5": "2.7" |
| 1253 | jython_matched = jython_re.match(EPYTHON) |
1311 | } |
|
|
1312 | |
|
|
1313 | def get_PYTHON_ABI(python_interpreter): |
|
|
1314 | cpython_matched = cpython_interpreter_re.match(python_interpreter) |
|
|
1315 | jython_matched = jython_interpreter_re.match(python_interpreter) |
|
|
1316 | pypy_matched = pypy_interpreter_re.match(python_interpreter) |
| 1254 | if cpython_matched is not None: |
1317 | if cpython_matched is not None: |
| 1255 | PYTHON_ABI = cpython_matched.group(1) |
1318 | PYTHON_ABI = cpython_matched.group(1) |
| 1256 | elif jython_matched is not None: |
1319 | elif jython_matched is not None: |
| 1257 | PYTHON_ABI = jython_matched.group(1) + "-jython" |
1320 | PYTHON_ABI = jython_matched.group(1) + "-jython" |
|
|
1321 | elif pypy_matched is not None: |
|
|
1322 | PYTHON_ABI = pypy_versions_mapping[pypy_matched.group(1)] + "-pypy-" + pypy_matched.group(1) |
| 1258 | else: |
1323 | else: |
| 1259 | PYTHON_ABI = None |
1324 | PYTHON_ABI = None |
| 1260 | return PYTHON_ABI |
1325 | return PYTHON_ABI |
| 1261 | |
1326 | |
|
|
1327 | def get_python_interpreter(PYTHON_ABI): |
|
|
1328 | cpython_matched = cpython_ABI_re.match(PYTHON_ABI) |
|
|
1329 | jython_matched = jython_ABI_re.match(PYTHON_ABI) |
|
|
1330 | pypy_matched = pypy_ABI_re.match(PYTHON_ABI) |
|
|
1331 | if cpython_matched is not None: |
|
|
1332 | python_interpreter = "python" + cpython_matched.group(1) |
|
|
1333 | elif jython_matched is not None: |
|
|
1334 | python_interpreter = "jython" + jython_matched.group(1) |
|
|
1335 | elif pypy_matched is not None: |
|
|
1336 | python_interpreter = "pypy-c" + pypy_matched.group(1) |
|
|
1337 | else: |
|
|
1338 | python_interpreter = None |
|
|
1339 | return python_interpreter |
|
|
1340 | |
| 1262 | EOF |
1341 | EOF |
| 1263 | if [[ "$?" != "0" ]]; then |
1342 | if [[ "$?" != "0" ]]; then |
| 1264 | die "${FUNCNAME}(): Generation of '$1' failed" |
1343 | die "${FUNCNAME}(): Generation of '$1' failed" |
| 1265 | fi |
1344 | fi |
| 1266 | if [[ "${respect_EPYTHON}" == "1" ]]; then |
1345 | if [[ "${respect_EPYTHON}" == "1" ]]; then |
| 1267 | cat << EOF >> "${file}" |
1346 | cat << EOF >> "${file}" |
| 1268 | EPYTHON = os.environ.get("EPYTHON") |
1347 | python_interpreter = os.environ.get("EPYTHON") |
| 1269 | if EPYTHON: |
1348 | if python_interpreter: |
| 1270 | PYTHON_ABI = get_PYTHON_ABI(EPYTHON) |
1349 | PYTHON_ABI = get_PYTHON_ABI(python_interpreter) |
| 1271 | if PYTHON_ABI is None: |
1350 | if PYTHON_ABI is None: |
| 1272 | sys.stderr.write("EPYTHON variable has unrecognized value '%s'\n" % EPYTHON) |
1351 | sys.stderr.write("%s: EPYTHON variable has unrecognized value '%s'\n" % (sys.argv[0], python_interpreter)) |
| 1273 | sys.exit(1) |
1352 | sys.exit(1) |
| 1274 | else: |
1353 | else: |
| 1275 | try: |
1354 | try: |
|
|
1355 | environment = os.environ.copy() |
|
|
1356 | environment["ROOT"] = "/" |
| 1276 | eselect_process = subprocess.Popen(["${EPREFIX}/usr/bin/eselect", "python", "show"${eselect_python_option:+, $(echo "\"")}${eselect_python_option}${eselect_python_option:+$(echo "\"")}], stdout=subprocess.PIPE) |
1357 | 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) |
| 1277 | if eselect_process.wait() != 0: |
1358 | if eselect_process.wait() != 0: |
| 1278 | raise ValueError |
1359 | raise ValueError |
| 1279 | except (OSError, ValueError): |
1360 | except (OSError, ValueError): |
| 1280 | sys.stderr.write("Execution of 'eselect python show${eselect_python_option:+ }${eselect_python_option}' failed\n") |
1361 | sys.stderr.write("%s: Execution of 'eselect python show${eselect_python_option:+ }${eselect_python_option}' failed\n" % sys.argv[0]) |
| 1281 | sys.exit(1) |
1362 | sys.exit(1) |
| 1282 | |
1363 | |
| 1283 | EPYTHON = eselect_process.stdout.read() |
1364 | python_interpreter = eselect_process.stdout.read() |
| 1284 | if not isinstance(EPYTHON, str): |
1365 | if not isinstance(python_interpreter, str): |
| 1285 | # Python 3 |
1366 | # Python 3 |
| 1286 | EPYTHON = EPYTHON.decode() |
1367 | python_interpreter = python_interpreter.decode() |
| 1287 | EPYTHON = EPYTHON.rstrip("\n") |
1368 | python_interpreter = python_interpreter.rstrip("\n") |
| 1288 | |
1369 | |
| 1289 | PYTHON_ABI = get_PYTHON_ABI(EPYTHON) |
1370 | PYTHON_ABI = get_PYTHON_ABI(python_interpreter) |
| 1290 | if PYTHON_ABI is None: |
1371 | if PYTHON_ABI is None: |
| 1291 | sys.stderr.write("'eselect python show${eselect_python_option:+ }${eselect_python_option}' printed unrecognized value '%s'\n" % EPYTHON) |
1372 | sys.stderr.write("%s: 'eselect python show${eselect_python_option:+ }${eselect_python_option}' printed unrecognized value '%s'\n" % (sys.argv[0], python_interpreter)) |
| 1292 | sys.exit(1) |
1373 | sys.exit(1) |
| 1293 | |
1374 | |
| 1294 | wrapper_script_path = os.path.realpath(sys.argv[0]) |
1375 | wrapper_script_path = os.path.realpath(sys.argv[0]) |
| 1295 | target_executable_path = "%s-%s" % (wrapper_script_path, PYTHON_ABI) |
1376 | target_executable_path = "%s-%s" % (wrapper_script_path, PYTHON_ABI) |
| 1296 | if not os.path.exists(target_executable_path): |
1377 | if not os.path.exists(target_executable_path): |
| 1297 | sys.stderr.write("'%s' does not exist\n" % target_executable_path) |
1378 | sys.stderr.write("%s: '%s' does not exist\n" % (sys.argv[0], target_executable_path)) |
| 1298 | sys.exit(1) |
1379 | sys.exit(1) |
| 1299 | EOF |
1380 | EOF |
| 1300 | if [[ "$?" != "0" ]]; then |
1381 | if [[ "$?" != "0" ]]; then |
| 1301 | die "${FUNCNAME}(): Generation of '$1' failed" |
1382 | die "${FUNCNAME}(): Generation of '$1' failed" |
| 1302 | fi |
1383 | fi |
| 1303 | else |
1384 | else |
| 1304 | cat << EOF >> "${file}" |
1385 | cat << EOF >> "${file}" |
| 1305 | try: |
1386 | try: |
|
|
1387 | environment = os.environ.copy() |
|
|
1388 | environment["ROOT"] = "/" |
| 1306 | eselect_process = subprocess.Popen(["${EPREFIX}/usr/bin/eselect", "python", "show"${eselect_python_option:+, $(echo "\"")}${eselect_python_option}${eselect_python_option:+$(echo "\"")}], stdout=subprocess.PIPE) |
1389 | 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) |
| 1307 | if eselect_process.wait() != 0: |
1390 | if eselect_process.wait() != 0: |
| 1308 | raise ValueError |
1391 | raise ValueError |
| 1309 | except (OSError, ValueError): |
1392 | except (OSError, ValueError): |
| 1310 | sys.stderr.write("Execution of 'eselect python show${eselect_python_option:+ }${eselect_python_option}' failed\n") |
1393 | sys.stderr.write("%s: Execution of 'eselect python show${eselect_python_option:+ }${eselect_python_option}' failed\n" % sys.argv[0]) |
| 1311 | sys.exit(1) |
1394 | sys.exit(1) |
| 1312 | |
1395 | |
| 1313 | EPYTHON = eselect_process.stdout.read() |
1396 | python_interpreter = eselect_process.stdout.read() |
| 1314 | if not isinstance(EPYTHON, str): |
1397 | if not isinstance(python_interpreter, str): |
| 1315 | # Python 3 |
1398 | # Python 3 |
| 1316 | EPYTHON = EPYTHON.decode() |
1399 | python_interpreter = python_interpreter.decode() |
| 1317 | EPYTHON = EPYTHON.rstrip("\n") |
1400 | python_interpreter = python_interpreter.rstrip("\n") |
| 1318 | |
1401 | |
| 1319 | PYTHON_ABI = get_PYTHON_ABI(EPYTHON) |
1402 | PYTHON_ABI = get_PYTHON_ABI(python_interpreter) |
| 1320 | if PYTHON_ABI is None: |
1403 | if PYTHON_ABI is None: |
| 1321 | sys.stderr.write("'eselect python show${eselect_python_option:+ }${eselect_python_option}' printed unrecognized value '%s'\n" % EPYTHON) |
1404 | sys.stderr.write("%s: 'eselect python show${eselect_python_option:+ }${eselect_python_option}' printed unrecognized value '%s'\n" % (sys.argv[0], python_interpreter)) |
| 1322 | sys.exit(1) |
1405 | sys.exit(1) |
| 1323 | |
1406 | |
| 1324 | wrapper_script_path = os.path.realpath(sys.argv[0]) |
1407 | wrapper_script_path = os.path.realpath(sys.argv[0]) |
| 1325 | for PYTHON_ABI in [PYTHON_ABI, ${PYTHON_ABIS_list}]: |
1408 | for PYTHON_ABI in [PYTHON_ABI, ${PYTHON_ABIS_list}]: |
| 1326 | target_executable_path = "%s-%s" % (wrapper_script_path, PYTHON_ABI) |
1409 | target_executable_path = "%s-%s" % (wrapper_script_path, PYTHON_ABI) |
| 1327 | if os.path.exists(target_executable_path): |
1410 | if os.path.exists(target_executable_path): |
| 1328 | break |
1411 | break |
| 1329 | else: |
1412 | else: |
| 1330 | sys.stderr.write("No target script exists for '%s'\n" % wrapper_script_path) |
1413 | sys.stderr.write("%s: No target script exists for '%s'\n" % (sys.argv[0], wrapper_script_path)) |
|
|
1414 | sys.exit(1) |
|
|
1415 | |
|
|
1416 | python_interpreter = get_python_interpreter(PYTHON_ABI) |
|
|
1417 | if python_interpreter is None: |
|
|
1418 | sys.stderr.write("%s: Unrecognized Python ABI '%s'\n" % (sys.argv[0], PYTHON_ABI)) |
| 1331 | sys.exit(1) |
1419 | sys.exit(1) |
| 1332 | EOF |
1420 | EOF |
| 1333 | if [[ "$?" != "0" ]]; then |
1421 | if [[ "$?" != "0" ]]; then |
| 1334 | die "${FUNCNAME}(): Generation of '$1' failed" |
1422 | die "${FUNCNAME}(): Generation of '$1' failed" |
| 1335 | fi |
1423 | fi |
| 1336 | fi |
1424 | fi |
| 1337 | cat << EOF >> "${file}" |
1425 | cat << EOF >> "${file}" |
| 1338 | |
1426 | |
| 1339 | target_executable = open(target_executable_path, "rb") |
1427 | target_executable = open(target_executable_path, "rb") |
| 1340 | target_executable_first_line = target_executable.readline() |
1428 | target_executable_first_line = target_executable.readline() |
|
|
1429 | target_executable.close() |
| 1341 | if not isinstance(target_executable_first_line, str): |
1430 | if not isinstance(target_executable_first_line, str): |
| 1342 | # Python 3 |
1431 | # Python 3 |
| 1343 | target_executable_first_line = target_executable_first_line.decode("utf_8", "replace") |
1432 | target_executable_first_line = target_executable_first_line.decode("utf_8", "replace") |
| 1344 | |
1433 | |
|
|
1434 | options = [] |
|
|
1435 | python_shebang_options_matched = python_shebang_options_re.match(target_executable_first_line) |
|
|
1436 | if python_shebang_options_matched is not None: |
|
|
1437 | options = [python_shebang_options_matched.group(1)] |
|
|
1438 | |
| 1345 | python_shebang_matched = python_shebang_re.match(target_executable_first_line) |
1439 | cpython_shebang_matched = cpython_shebang_re.match(target_executable_first_line) |
| 1346 | target_executable.close() |
|
|
| 1347 | |
1440 | |
| 1348 | if python_shebang_matched is not None: |
1441 | if cpython_shebang_matched is not None: |
| 1349 | try: |
1442 | try: |
| 1350 | python_interpreter_path = "${EPREFIX}/usr/bin/%s" % EPYTHON |
1443 | python_interpreter_path = "${EPREFIX}/usr/bin/%s" % python_interpreter |
| 1351 | os.environ["GENTOO_PYTHON_TARGET_SCRIPT_PATH_VERIFICATION"] = "1" |
1444 | os.environ["GENTOO_PYTHON_TARGET_SCRIPT_PATH_VERIFICATION"] = "1" |
| 1352 | python_verification_process = subprocess.Popen([python_interpreter_path, "-c", "pass"], stdout=subprocess.PIPE) |
1445 | python_verification_process = subprocess.Popen([python_interpreter_path, "-c", "pass"], stdout=subprocess.PIPE) |
| 1353 | del os.environ["GENTOO_PYTHON_TARGET_SCRIPT_PATH_VERIFICATION"] |
1446 | del os.environ["GENTOO_PYTHON_TARGET_SCRIPT_PATH_VERIFICATION"] |
| 1354 | if python_verification_process.wait() != 0: |
1447 | if python_verification_process.wait() != 0: |
| 1355 | raise ValueError |
1448 | raise ValueError |
| … | |
… | |
| 1360 | python_verification_output = python_verification_output.decode() |
1453 | python_verification_output = python_verification_output.decode() |
| 1361 | |
1454 | |
| 1362 | if not python_verification_output_re.match(python_verification_output): |
1455 | if not python_verification_output_re.match(python_verification_output): |
| 1363 | raise ValueError |
1456 | raise ValueError |
| 1364 | |
1457 | |
| 1365 | if cpython_re.match(EPYTHON) is not None: |
1458 | if cpython_interpreter_re.match(python_interpreter) is not None: |
| 1366 | os.environ["GENTOO_PYTHON_PROCESS_NAME"] = os.path.basename(sys.argv[0]) |
1459 | os.environ["GENTOO_PYTHON_PROCESS_NAME"] = os.path.basename(sys.argv[0]) |
| 1367 | os.environ["GENTOO_PYTHON_WRAPPER_SCRIPT_PATH"] = sys.argv[0] |
1460 | os.environ["GENTOO_PYTHON_WRAPPER_SCRIPT_PATH"] = sys.argv[0] |
| 1368 | os.environ["GENTOO_PYTHON_TARGET_SCRIPT_PATH"] = target_executable_path |
1461 | os.environ["GENTOO_PYTHON_TARGET_SCRIPT_PATH"] = target_executable_path |
| 1369 | |
1462 | |
| 1370 | if hasattr(os, "execv"): |
1463 | if hasattr(os, "execv"): |
| 1371 | os.execv(python_interpreter_path, [python_interpreter_path] + sys.argv) |
1464 | os.execv(python_interpreter_path, [python_interpreter_path] + options + sys.argv) |
| 1372 | else: |
1465 | else: |
| 1373 | sys.exit(subprocess.Popen([python_interpreter_path] + sys.argv).wait()) |
1466 | sys.exit(subprocess.Popen([python_interpreter_path] + options + sys.argv).wait()) |
| 1374 | except (KeyboardInterrupt, SystemExit): |
1467 | except (KeyboardInterrupt, SystemExit): |
| 1375 | raise |
1468 | raise |
| 1376 | except: |
1469 | except: |
| 1377 | pass |
1470 | pass |
| 1378 | for variable in ("GENTOO_PYTHON_PROCESS_NAME", "GENTOO_PYTHON_WRAPPER_SCRIPT_PATH", "GENTOO_PYTHON_TARGET_SCRIPT_PATH", "GENTOO_PYTHON_TARGET_SCRIPT_PATH_VERIFICATION"): |
1471 | for variable in ("GENTOO_PYTHON_PROCESS_NAME", "GENTOO_PYTHON_WRAPPER_SCRIPT_PATH", "GENTOO_PYTHON_TARGET_SCRIPT_PATH", "GENTOO_PYTHON_TARGET_SCRIPT_PATH_VERIFICATION"): |
| … | |
… | |
| 1420 | fi |
1513 | fi |
| 1421 | |
1514 | |
| 1422 | _python_check_python_pkg_setup_execution |
1515 | _python_check_python_pkg_setup_execution |
| 1423 | _python_initialize_prefix_variables |
1516 | _python_initialize_prefix_variables |
| 1424 | |
1517 | |
| 1425 | local b file files=() intermediate_installation_images_directory PYTHON_ABI quiet="0" regex shebang version_executable wrapper_scripts=() wrapper_scripts_set=() |
1518 | local absolute_file b file files=() intermediate_installation_images_directory PYTHON_ABI quiet="0" regex shebang version_executable wrapper_scripts=() wrapper_scripts_set=() |
| 1426 | |
1519 | |
| 1427 | while (($#)); do |
1520 | while (($#)); do |
| 1428 | case "$1" in |
1521 | case "$1" in |
| 1429 | -q|--quiet) |
1522 | -q|--quiet) |
| 1430 | quiet="1" |
1523 | quiet="1" |
| … | |
… | |
| 1512 | break |
1605 | break |
| 1513 | fi |
1606 | fi |
| 1514 | done |
1607 | done |
| 1515 | fi |
1608 | fi |
| 1516 | |
1609 | |
| 1517 | [[ "${version_executable}" == "0" || ! -x "${file}" ]] && continue |
1610 | [[ "${version_executable}" == "0" ]] && continue |
| 1518 | |
1611 | |
|
|
1612 | if [[ -L "${file}" ]]; then |
|
|
1613 | absolute_file="$(readlink "${file}")" |
|
|
1614 | if [[ "${absolute_file}" == /* ]]; then |
|
|
1615 | absolute_file="${intermediate_installation_images_directory}/${PYTHON_ABI}${EPREFIX}/${absolute_file##/}" |
|
|
1616 | else |
|
|
1617 | if [[ "${file}" == */* ]]; then |
|
|
1618 | absolute_file="${intermediate_installation_images_directory}/${PYTHON_ABI}${EPREFIX}/${file%/*}/${absolute_file}" |
|
|
1619 | else |
|
|
1620 | absolute_file="${intermediate_installation_images_directory}/${PYTHON_ABI}${EPREFIX}/${absolute_file}" |
|
|
1621 | fi |
|
|
1622 | fi |
|
|
1623 | else |
|
|
1624 | absolute_file="${intermediate_installation_images_directory}/${PYTHON_ABI}${EPREFIX}/${file}" |
|
|
1625 | fi |
|
|
1626 | |
|
|
1627 | [[ ! -x "${absolute_file}" ]] && continue |
|
|
1628 | |
| 1519 | shebang="$(head -n1 "${file}")" || die "Extraction of shebang from '${file}' failed" |
1629 | shebang="$(head -n1 "${absolute_file}")" || die "Extraction of shebang from '${absolute_file}' failed" |
| 1520 | |
1630 | |
| 1521 | if [[ "${version_executable}" == "2" ]]; then |
1631 | if [[ "${version_executable}" == "2" ]]; then |
| 1522 | wrapper_scripts+=("${ED}${file}") |
1632 | wrapper_scripts+=("${ED}${file}") |
| 1523 | elif [[ "${version_executable}" == "1" ]]; then |
1633 | elif [[ "${version_executable}" == "1" ]]; then |
| 1524 | if [[ "${shebang}" =~ ${_PYTHON_SHEBANG_BASE_PART_REGEX}([[:digit:]]+(\.[[:digit:]]+)?)?($|[[:space:]]+) ]]; then |
1634 | if [[ "${shebang}" =~ ${_PYTHON_SHEBANG_BASE_PART_REGEX}([[:digit:]]+(\.[[:digit:]]+)?)?($|[[:space:]]+) ]]; then |
| … | |
… | |
| 1535 | fi |
1645 | fi |
| 1536 | |
1646 | |
| 1537 | mv "${file}" "${file}-${PYTHON_ABI}" || die "Renaming of '${file}' failed" |
1647 | mv "${file}" "${file}-${PYTHON_ABI}" || die "Renaming of '${file}' failed" |
| 1538 | |
1648 | |
| 1539 | if [[ "${shebang}" =~ ${_PYTHON_SHEBANG_BASE_PART_REGEX}[[:digit:]]*($|[[:space:]]+) ]]; then |
1649 | if [[ "${shebang}" =~ ${_PYTHON_SHEBANG_BASE_PART_REGEX}[[:digit:]]*($|[[:space:]]+) ]]; then |
|
|
1650 | if [[ -L "${file}-${PYTHON_ABI}" ]]; then |
|
|
1651 | python_convert_shebangs $([[ "${quiet}" == "1" ]] && echo --quiet) "${PYTHON_ABI}" "${absolute_file}" |
|
|
1652 | else |
| 1540 | python_convert_shebangs $([[ "${quiet}" == "1" ]] && echo --quiet) "${PYTHON_ABI}" "${file}-${PYTHON_ABI}" |
1653 | python_convert_shebangs $([[ "${quiet}" == "1" ]] && echo --quiet) "${PYTHON_ABI}" "${file}-${PYTHON_ABI}" |
|
|
1654 | fi |
| 1541 | fi |
1655 | fi |
| 1542 | done |
1656 | done |
| 1543 | |
1657 | |
| 1544 | popd > /dev/null || die "popd failed" |
1658 | popd > /dev/null || die "popd failed" |
| 1545 | |
1659 | |
|
|
1660 | # This is per bug #390691, without the duplication refactor, and with |
|
|
1661 | # the 3-way structure per comment #6. This enable users with old |
|
|
1662 | # coreutils to upgrade a lot easier (you need to upgrade python+portage |
|
|
1663 | # before coreutils can be upgraded). |
|
|
1664 | if ROOT="/" has_version '>=sys-apps/coreutils-6.9.90'; then |
|
|
1665 | 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" |
| 1546 | if ROOT="/" has_version sys-apps/coreutils; then |
1666 | elif ROOT="/" has_version sys-apps/coreutils; then |
| 1547 | 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" |
1667 | 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" |
| 1548 | else |
1668 | else |
| 1549 | cp -fpr "${intermediate_installation_images_directory}/${PYTHON_ABI}/"* "${D}" || die "Merging of intermediate installation image for Python ABI '${PYTHON_ABI} into installation image failed" |
1669 | cp -fpr "${intermediate_installation_images_directory}/${PYTHON_ABI}/"* "${D}" || die "Merging of intermediate installation image for Python ABI '${PYTHON_ABI} into installation image failed" |
| 1550 | fi |
1670 | fi |
| 1551 | done |
1671 | done |
| … | |
… | |
| 1570 | stdout = sys.stdout.buffer |
1690 | stdout = sys.stdout.buffer |
| 1571 | else: |
1691 | else: |
| 1572 | # Python 2 |
1692 | # Python 2 |
| 1573 | stdout = sys.stdout |
1693 | stdout = sys.stdout |
| 1574 | |
1694 | |
|
|
1695 | python_wrapper_scripts_file = open('${T}/python_wrapper_scripts', 'rb') |
| 1575 | files = set(open('${T}/python_wrapper_scripts', 'rb').read().rstrip(${b}'\x00').split(${b}'\x00')) |
1696 | files = set(python_wrapper_scripts_file.read().rstrip(${b}'\x00').split(${b}'\x00')) |
|
|
1697 | python_wrapper_scripts_file.close() |
| 1576 | |
1698 | |
| 1577 | for file in sorted(files): |
1699 | for file in sorted(files): |
| 1578 | stdout.write(file) |
1700 | stdout.write(file) |
| 1579 | stdout.write(${b}'\x00')" || die "${FUNCNAME}(): Failure of extraction of set of wrapper scripts") |
1701 | stdout.write(${b}'\x00')" || die "${FUNCNAME}(): Failure of extraction of set of wrapper scripts") |
| 1580 | |
1702 | |
| … | |
… | |
| 1645 | # python-updater checks PYTHON_REQUESTED_ACTIVE_VERSION variable. |
1767 | # python-updater checks PYTHON_REQUESTED_ACTIVE_VERSION variable. |
| 1646 | PYTHON_REQUESTED_ACTIVE_VERSION="$1" |
1768 | PYTHON_REQUESTED_ACTIVE_VERSION="$1" |
| 1647 | } |
1769 | } |
| 1648 | |
1770 | |
| 1649 | # @FUNCTION: python_need_rebuild |
1771 | # @FUNCTION: python_need_rebuild |
|
|
1772 | # @DESCRIPTION: |
| 1650 | # @DESCRIPTION: Mark current package for rebuilding by python-updater after |
1773 | # Mark current package for rebuilding by python-updater after |
| 1651 | # switching of active version of Python. |
1774 | # switching of active version of Python. |
| 1652 | python_need_rebuild() { |
1775 | python_need_rebuild() { |
| 1653 | if _python_package_supporting_installation_for_multiple_python_abis; then |
1776 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| 1654 | die "${FUNCNAME}() cannot be used in ebuilds of packages supporting installation for multiple Python ABIs" |
1777 | die "${FUNCNAME}() cannot be used in ebuilds of packages supporting installation for multiple Python ABIs" |
| 1655 | fi |
1778 | fi |
| … | |
… | |
| 1665 | |
1788 | |
| 1666 | # ================================================================================================ |
1789 | # ================================================================================================ |
| 1667 | # ======================================= GETTER FUNCTIONS ======================================= |
1790 | # ======================================= GETTER FUNCTIONS ======================================= |
| 1668 | # ================================================================================================ |
1791 | # ================================================================================================ |
| 1669 | |
1792 | |
| 1670 | _PYTHON_ABI_EXTRACTION_COMMAND='import platform |
1793 | _PYTHON_ABI_EXTRACTION_COMMAND=\ |
|
|
1794 | 'import platform |
| 1671 | import sys |
1795 | import sys |
| 1672 | sys.stdout.write(".".join(str(x) for x in sys.version_info[:2])) |
1796 | sys.stdout.write(".".join(str(x) for x in sys.version_info[:2])) |
| 1673 | if platform.system()[:4] == "Java": |
1797 | if platform.system()[:4] == "Java": |
| 1674 | sys.stdout.write("-jython")' |
1798 | sys.stdout.write("-jython") |
|
|
1799 | elif hasattr(platform, "python_implementation") and platform.python_implementation() == "PyPy": |
|
|
1800 | sys.stdout.write("-pypy-" + ".".join(str(x) for x in sys.pypy_version_info[:2]))' |
| 1675 | |
1801 | |
| 1676 | _python_get_implementation() { |
1802 | _python_get_implementation() { |
| 1677 | local ignore_invalid="0" |
1803 | local ignore_invalid="0" |
| 1678 | |
1804 | |
| 1679 | while (($#)); do |
1805 | while (($#)); do |
| … | |
… | |
| 1701 | |
1827 | |
| 1702 | if [[ "$1" =~ ^[[:digit:]]+\.[[:digit:]]+$ ]]; then |
1828 | if [[ "$1" =~ ^[[:digit:]]+\.[[:digit:]]+$ ]]; then |
| 1703 | echo "CPython" |
1829 | echo "CPython" |
| 1704 | elif [[ "$1" =~ ^[[:digit:]]+\.[[:digit:]]+-jython$ ]]; then |
1830 | elif [[ "$1" =~ ^[[:digit:]]+\.[[:digit:]]+-jython$ ]]; then |
| 1705 | echo "Jython" |
1831 | echo "Jython" |
|
|
1832 | elif [[ "$1" =~ ^[[:digit:]]+\.[[:digit:]]+-pypy-[[:digit:]]+\.[[:digit:]]+$ ]]; then |
|
|
1833 | echo "PyPy" |
| 1706 | else |
1834 | else |
| 1707 | if [[ "${ignore_invalid}" == "0" ]]; then |
1835 | if [[ "${ignore_invalid}" == "0" ]]; then |
| 1708 | die "${FUNCNAME}(): Unrecognized Python ABI '$1'" |
1836 | die "${FUNCNAME}(): Unrecognized Python ABI '$1'" |
| 1709 | fi |
1837 | fi |
| 1710 | fi |
1838 | fi |
| … | |
… | |
| 1773 | die "${FUNCNAME}(): '--final-ABI' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
1901 | die "${FUNCNAME}(): '--final-ABI' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
| 1774 | fi |
1902 | fi |
| 1775 | _python_calculate_PYTHON_ABIS |
1903 | _python_calculate_PYTHON_ABIS |
| 1776 | PYTHON_ABI="${PYTHON_ABIS##* }" |
1904 | PYTHON_ABI="${PYTHON_ABIS##* }" |
| 1777 | elif [[ "${python2}" == "1" ]]; then |
1905 | elif [[ "${python2}" == "1" ]]; then |
| 1778 | PYTHON_ABI="$(eselect python show --python2 --ABI)" |
1906 | PYTHON_ABI="$(ROOT="/" eselect python show --python2 --ABI)" |
| 1779 | if [[ -z "${PYTHON_ABI}" ]]; then |
1907 | if [[ -z "${PYTHON_ABI}" ]]; then |
| 1780 | die "${FUNCNAME}(): Active version of CPython 2 not set" |
1908 | die "${FUNCNAME}(): Active version of CPython 2 not set" |
| 1781 | elif [[ "${PYTHON_ABI}" != "2."* ]]; then |
1909 | elif [[ "${PYTHON_ABI}" != "2."* ]]; then |
| 1782 | die "${FUNCNAME}(): Internal error in \`eselect python show --python2\`" |
1910 | die "${FUNCNAME}(): Internal error in \`eselect python show --python2\`" |
| 1783 | fi |
1911 | fi |
| 1784 | elif [[ "${python3}" == "1" ]]; then |
1912 | elif [[ "${python3}" == "1" ]]; then |
| 1785 | PYTHON_ABI="$(eselect python show --python3 --ABI)" |
1913 | PYTHON_ABI="$(ROOT="/" eselect python show --python3 --ABI)" |
| 1786 | if [[ -z "${PYTHON_ABI}" ]]; then |
1914 | if [[ -z "${PYTHON_ABI}" ]]; then |
| 1787 | die "${FUNCNAME}(): Active version of CPython 3 not set" |
1915 | die "${FUNCNAME}(): Active version of CPython 3 not set" |
| 1788 | elif [[ "${PYTHON_ABI}" != "3."* ]]; then |
1916 | elif [[ "${PYTHON_ABI}" != "3."* ]]; then |
| 1789 | die "${FUNCNAME}(): Internal error in \`eselect python show --python3\`" |
1917 | die "${FUNCNAME}(): Internal error in \`eselect python show --python3\`" |
| 1790 | fi |
1918 | fi |
| … | |
… | |
| 1819 | else |
1947 | else |
| 1820 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
1948 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
| 1821 | python_interpreter="python${PYTHON_ABI}" |
1949 | python_interpreter="python${PYTHON_ABI}" |
| 1822 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
1950 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
| 1823 | python_interpreter="jython${PYTHON_ABI%-jython}" |
1951 | python_interpreter="jython${PYTHON_ABI%-jython}" |
|
|
1952 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "PyPy" ]]; then |
|
|
1953 | python_interpreter="pypy-c${PYTHON_ABI#*-pypy-}" |
| 1824 | fi |
1954 | fi |
| 1825 | |
1955 | |
| 1826 | if [[ "${absolute_path_output}" == "1" ]]; then |
1956 | if [[ "${absolute_path_output}" == "1" ]]; then |
| 1827 | echo -n "${EPREFIX}/usr/bin/${python_interpreter}" |
1957 | echo -n "${EPREFIX}/usr/bin/${python_interpreter}" |
| 1828 | else |
1958 | else |
| … | |
… | |
| 1921 | if [[ "${EAPI:-0}" == "0" ]]; then |
2051 | if [[ "${EAPI:-0}" == "0" ]]; then |
| 1922 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
2052 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
| 1923 | echo "=dev-lang/python-${PYTHON_ABI}*" |
2053 | echo "=dev-lang/python-${PYTHON_ABI}*" |
| 1924 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
2054 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
| 1925 | echo "=dev-java/jython-${PYTHON_ABI%-jython}*" |
2055 | echo "=dev-java/jython-${PYTHON_ABI%-jython}*" |
|
|
2056 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "PyPy" ]]; then |
|
|
2057 | echo "=dev-python/pypy-${PYTHON_ABI#*-pypy-}*" |
| 1926 | fi |
2058 | fi |
| 1927 | else |
2059 | else |
| 1928 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
2060 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
| 1929 | echo "dev-lang/python:${PYTHON_ABI}" |
2061 | echo "dev-lang/python:${PYTHON_ABI}" |
| 1930 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
2062 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
| 1931 | echo "dev-java/jython:${PYTHON_ABI%-jython}" |
2063 | echo "dev-java/jython:${PYTHON_ABI%-jython}" |
|
|
2064 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "PyPy" ]]; then |
|
|
2065 | echo "dev-python/pypy:${PYTHON_ABI#*-pypy-}" |
| 1932 | fi |
2066 | fi |
| 1933 | fi |
2067 | fi |
| 1934 | } |
2068 | } |
| 1935 | |
2069 | |
| 1936 | # @FUNCTION: python_get_includedir |
2070 | # @FUNCTION: python_get_includedir |
| … | |
… | |
| 1983 | |
2117 | |
| 1984 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
2118 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
| 1985 | echo "${prefix}usr/include/python${PYTHON_ABI}" |
2119 | echo "${prefix}usr/include/python${PYTHON_ABI}" |
| 1986 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
2120 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
| 1987 | echo "${prefix}usr/share/jython-${PYTHON_ABI%-jython}/Include" |
2121 | echo "${prefix}usr/share/jython-${PYTHON_ABI%-jython}/Include" |
|
|
2122 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "PyPy" ]]; then |
|
|
2123 | echo "${prefix}usr/$(get_libdir)/pypy${PYTHON_ABI#*-pypy-}/include" |
| 1988 | fi |
2124 | fi |
| 1989 | } |
2125 | } |
| 1990 | |
2126 | |
| 1991 | # @FUNCTION: python_get_libdir |
2127 | # @FUNCTION: python_get_libdir |
| 1992 | # @USAGE: [-b|--base-path] [-f|--final-ABI] |
2128 | # @USAGE: [-b|--base-path] [-f|--final-ABI] |
| 1993 | # @DESCRIPTION: |
2129 | # @DESCRIPTION: |
| 1994 | # Print path to Python library directory. |
2130 | # Print path to Python standard library directory. |
| 1995 | # If --base-path option is specified, then path not prefixed with "/" is printed. |
2131 | # If --base-path option is specified, then path not prefixed with "/" is printed. |
| 1996 | # If --final-ABI option is specified, then final ABI from the list of enabled ABIs is used. |
2132 | # If --final-ABI option is specified, then final ABI from the list of enabled ABIs is used. |
| 1997 | python_get_libdir() { |
2133 | python_get_libdir() { |
| 1998 | _python_check_python_pkg_setup_execution |
2134 | _python_check_python_pkg_setup_execution |
| 1999 | |
2135 | |
| … | |
… | |
| 2038 | |
2174 | |
| 2039 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
2175 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
| 2040 | echo "${prefix}usr/$(get_libdir)/python${PYTHON_ABI}" |
2176 | echo "${prefix}usr/$(get_libdir)/python${PYTHON_ABI}" |
| 2041 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
2177 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
| 2042 | echo "${prefix}usr/share/jython-${PYTHON_ABI%-jython}/Lib" |
2178 | echo "${prefix}usr/share/jython-${PYTHON_ABI%-jython}/Lib" |
|
|
2179 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "PyPy" ]]; then |
|
|
2180 | die "${FUNCNAME}(): PyPy has multiple standard library directories" |
| 2043 | fi |
2181 | fi |
| 2044 | } |
2182 | } |
| 2045 | |
2183 | |
| 2046 | # @FUNCTION: python_get_sitedir |
2184 | # @FUNCTION: python_get_sitedir |
| 2047 | # @USAGE: [-b|--base-path] [-f|--final-ABI] |
2185 | # @USAGE: [-b|--base-path] [-f|--final-ABI] |
| … | |
… | |
| 2050 | # If --base-path option is specified, then path not prefixed with "/" is printed. |
2188 | # If --base-path option is specified, then path not prefixed with "/" is printed. |
| 2051 | # If --final-ABI option is specified, then final ABI from the list of enabled ABIs is used. |
2189 | # If --final-ABI option is specified, then final ABI from the list of enabled ABIs is used. |
| 2052 | python_get_sitedir() { |
2190 | python_get_sitedir() { |
| 2053 | _python_check_python_pkg_setup_execution |
2191 | _python_check_python_pkg_setup_execution |
| 2054 | |
2192 | |
| 2055 | local final_ABI="0" options=() |
2193 | local base_path="0" final_ABI="0" prefix PYTHON_ABI="${PYTHON_ABI}" |
| 2056 | |
2194 | |
| 2057 | while (($#)); do |
2195 | while (($#)); do |
| 2058 | case "$1" in |
2196 | case "$1" in |
| 2059 | -b|--base-path) |
2197 | -b|--base-path) |
| 2060 | options+=("$1") |
2198 | base_path="1" |
| 2061 | ;; |
2199 | ;; |
| 2062 | -f|--final-ABI) |
2200 | -f|--final-ABI) |
| 2063 | final_ABI="1" |
2201 | final_ABI="1" |
| 2064 | options+=("$1") |
|
|
| 2065 | ;; |
2202 | ;; |
| 2066 | -*) |
2203 | -*) |
| 2067 | die "${FUNCNAME}(): Unrecognized option '$1'" |
2204 | die "${FUNCNAME}(): Unrecognized option '$1'" |
| 2068 | ;; |
2205 | ;; |
| 2069 | *) |
2206 | *) |
| 2070 | die "${FUNCNAME}(): Invalid usage" |
2207 | die "${FUNCNAME}(): Invalid usage" |
| 2071 | ;; |
2208 | ;; |
| 2072 | esac |
2209 | esac |
| 2073 | shift |
2210 | shift |
| 2074 | done |
2211 | done |
|
|
2212 | |
|
|
2213 | if [[ "${base_path}" == "0" ]]; then |
|
|
2214 | prefix="/" |
|
|
2215 | fi |
| 2075 | |
2216 | |
| 2076 | if [[ "${final_ABI}" == "1" ]]; then |
2217 | if [[ "${final_ABI}" == "1" ]]; then |
| 2077 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
2218 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
| 2078 | die "${FUNCNAME}(): '--final-ABI' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
2219 | die "${FUNCNAME}(): '--final-ABI' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
| 2079 | fi |
2220 | fi |
|
|
2221 | PYTHON_ABI="$(PYTHON -f --ABI)" |
| 2080 | else |
2222 | else |
| 2081 | if _python_package_supporting_installation_for_multiple_python_abis && ! _python_abi-specific_local_scope; then |
2223 | if _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
2224 | if ! _python_abi-specific_local_scope; then |
| 2082 | die "${FUNCNAME}() should be used in ABI-specific local scope" |
2225 | die "${FUNCNAME}() should be used in ABI-specific local scope" |
| 2083 | fi |
2226 | fi |
|
|
2227 | else |
|
|
2228 | PYTHON_ABI="${PYTHON_ABI:-$(PYTHON --ABI)}" |
| 2084 | fi |
2229 | fi |
|
|
2230 | fi |
| 2085 | |
2231 | |
| 2086 | echo "$(python_get_libdir "${options[@]}")/site-packages" |
2232 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
|
|
2233 | echo "${prefix}usr/$(get_libdir)/python${PYTHON_ABI}/site-packages" |
|
|
2234 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
|
|
2235 | echo "${prefix}usr/share/jython-${PYTHON_ABI%-jython}/Lib/site-packages" |
|
|
2236 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "PyPy" ]]; then |
|
|
2237 | echo "${prefix}usr/$(get_libdir)/pypy${PYTHON_ABI#*-pypy-}/site-packages" |
|
|
2238 | fi |
| 2087 | } |
2239 | } |
| 2088 | |
2240 | |
| 2089 | # @FUNCTION: python_get_library |
2241 | # @FUNCTION: python_get_library |
| 2090 | # @USAGE: [-b|--base-path] [-f|--final-ABI] [-l|--linker-option] |
2242 | # @USAGE: [-b|--base-path] [-f|--final-ABI] [-l|--linker-option] |
| 2091 | # @DESCRIPTION: |
2243 | # @DESCRIPTION: |
| … | |
… | |
| 2148 | else |
2300 | else |
| 2149 | echo "${prefix}usr/$(get_libdir)/libpython${PYTHON_ABI}$(get_libname)" |
2301 | echo "${prefix}usr/$(get_libdir)/libpython${PYTHON_ABI}$(get_libname)" |
| 2150 | fi |
2302 | fi |
| 2151 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
2303 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
| 2152 | die "${FUNCNAME}(): Jython does not have shared library" |
2304 | die "${FUNCNAME}(): Jython does not have shared library" |
|
|
2305 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "PyPy" ]]; then |
|
|
2306 | die "${FUNCNAME}(): PyPy does not have shared library" |
| 2153 | fi |
2307 | fi |
| 2154 | } |
2308 | } |
| 2155 | |
2309 | |
| 2156 | # @FUNCTION: python_get_version |
2310 | # @FUNCTION: python_get_version |
| 2157 | # @USAGE: [-f|--final-ABI] [--full] [--major] [--minor] [--micro] |
2311 | # @USAGE: [-f|--final-ABI] [-l|--language] [--full] [--major] [--minor] [--micro] |
| 2158 | # @DESCRIPTION: |
2312 | # @DESCRIPTION: |
| 2159 | # Print Python version. |
2313 | # Print version of Python implementation. |
| 2160 | # --full, --major, --minor and --micro options cannot be specified simultaneously. |
2314 | # --full, --major, --minor and --micro options cannot be specified simultaneously. |
| 2161 | # If --full, --major, --minor and --micro options are not specified, then "${major_version}.${minor_version}" is printed. |
2315 | # If --full, --major, --minor and --micro options are not specified, then "${major_version}.${minor_version}" is printed. |
|
|
2316 | # If --language option is specified, then version of Python language is printed. |
|
|
2317 | # --language and --full options cannot be specified simultaneously. |
|
|
2318 | # --language and --micro options cannot be specified simultaneously. |
| 2162 | # If --final-ABI option is specified, then final ABI from the list of enabled ABIs is used. |
2319 | # If --final-ABI option is specified, then final ABI from the list of enabled ABIs is used. |
| 2163 | python_get_version() { |
2320 | python_get_version() { |
| 2164 | _python_check_python_pkg_setup_execution |
2321 | _python_check_python_pkg_setup_execution |
| 2165 | |
2322 | |
| 2166 | local final_ABI="0" full="0" major="0" minor="0" micro="0" python_command |
2323 | local final_ABI="0" language="0" language_version full="0" major="0" minor="0" micro="0" PYTHON_ABI="${PYTHON_ABI}" python_command |
| 2167 | |
2324 | |
| 2168 | while (($#)); do |
2325 | while (($#)); do |
| 2169 | case "$1" in |
2326 | case "$1" in |
| 2170 | -f|--final-ABI) |
2327 | -f|--final-ABI) |
| 2171 | final_ABI="1" |
2328 | final_ABI="1" |
| 2172 | ;; |
2329 | ;; |
|
|
2330 | -l|--language) |
|
|
2331 | language="1" |
|
|
2332 | ;; |
| 2173 | --full) |
2333 | --full) |
| 2174 | full="1" |
2334 | full="1" |
| 2175 | ;; |
2335 | ;; |
| 2176 | --major) |
2336 | --major) |
| 2177 | major="1" |
2337 | major="1" |
| … | |
… | |
| 2189 | die "${FUNCNAME}(): Invalid usage" |
2349 | die "${FUNCNAME}(): Invalid usage" |
| 2190 | ;; |
2350 | ;; |
| 2191 | esac |
2351 | esac |
| 2192 | shift |
2352 | shift |
| 2193 | done |
2353 | done |
| 2194 | |
|
|
| 2195 | if [[ "$((${full} + ${major} + ${minor} + ${micro}))" -gt 1 ]]; then |
|
|
| 2196 | die "${FUNCNAME}(): '--full', '--major', '--minor' or '--micro' options cannot be specified simultaneously" |
|
|
| 2197 | fi |
|
|
| 2198 | |
|
|
| 2199 | if [[ "${full}" == "1" ]]; then |
|
|
| 2200 | python_command="from sys import version_info; print('.'.join(str(x) for x in version_info[:3]))" |
|
|
| 2201 | elif [[ "${major}" == "1" ]]; then |
|
|
| 2202 | python_command="from sys import version_info; print(version_info[0])" |
|
|
| 2203 | elif [[ "${minor}" == "1" ]]; then |
|
|
| 2204 | python_command="from sys import version_info; print(version_info[1])" |
|
|
| 2205 | elif [[ "${micro}" == "1" ]]; then |
|
|
| 2206 | python_command="from sys import version_info; print(version_info[2])" |
|
|
| 2207 | else |
|
|
| 2208 | if [[ -n "${PYTHON_ABI}" && "${final_ABI}" == "0" ]]; then |
|
|
| 2209 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
|
|
| 2210 | echo "${PYTHON_ABI}" |
|
|
| 2211 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
|
|
| 2212 | echo "${PYTHON_ABI%-jython}" |
|
|
| 2213 | fi |
|
|
| 2214 | return |
|
|
| 2215 | fi |
|
|
| 2216 | python_command="from sys import version_info; print('.'.join(str(x) for x in version_info[:2]))" |
|
|
| 2217 | fi |
|
|
| 2218 | |
2354 | |
| 2219 | if [[ "${final_ABI}" == "1" ]]; then |
2355 | if [[ "${final_ABI}" == "1" ]]; then |
| 2220 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
2356 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
| 2221 | die "${FUNCNAME}(): '--final-ABI' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
2357 | die "${FUNCNAME}(): '--final-ABI' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
| 2222 | fi |
2358 | fi |
| 2223 | "$(PYTHON -f)" -c "${python_command}" |
|
|
| 2224 | else |
2359 | else |
| 2225 | if _python_package_supporting_installation_for_multiple_python_abis && ! _python_abi-specific_local_scope; then |
2360 | if _python_package_supporting_installation_for_multiple_python_abis && ! _python_abi-specific_local_scope; then |
| 2226 | die "${FUNCNAME}() should be used in ABI-specific local scope" |
2361 | die "${FUNCNAME}() should be used in ABI-specific local scope" |
| 2227 | fi |
2362 | fi |
|
|
2363 | fi |
|
|
2364 | |
|
|
2365 | if [[ "$((${full} + ${major} + ${minor} + ${micro}))" -gt 1 ]]; then |
|
|
2366 | die "${FUNCNAME}(): '--full', '--major', '--minor' or '--micro' options cannot be specified simultaneously" |
|
|
2367 | fi |
|
|
2368 | |
|
|
2369 | if [[ "${language}" == "1" ]]; then |
|
|
2370 | if [[ "${final_ABI}" == "1" ]]; then |
|
|
2371 | PYTHON_ABI="$(PYTHON -f --ABI)" |
|
|
2372 | elif [[ -z "${PYTHON_ABI}" ]]; then |
|
|
2373 | PYTHON_ABI="$(PYTHON --ABI)" |
|
|
2374 | fi |
|
|
2375 | language_version="${PYTHON_ABI%%-*}" |
|
|
2376 | if [[ "${full}" == "1" ]]; then |
|
|
2377 | die "${FUNCNAME}(): '--language' and '--full' options cannot be specified simultaneously" |
|
|
2378 | elif [[ "${major}" == "1" ]]; then |
|
|
2379 | echo "${language_version%.*}" |
|
|
2380 | elif [[ "${minor}" == "1" ]]; then |
|
|
2381 | echo "${language_version#*.}" |
|
|
2382 | elif [[ "${micro}" == "1" ]]; then |
|
|
2383 | die "${FUNCNAME}(): '--language' and '--micro' options cannot be specified simultaneously" |
|
|
2384 | else |
|
|
2385 | echo "${language_version}" |
|
|
2386 | fi |
|
|
2387 | else |
|
|
2388 | if [[ "${full}" == "1" ]]; then |
|
|
2389 | python_command="import sys; print('.'.join(str(x) for x in getattr(sys, 'pypy_version_info', sys.version_info)[:3]))" |
|
|
2390 | elif [[ "${major}" == "1" ]]; then |
|
|
2391 | python_command="import sys; print(getattr(sys, 'pypy_version_info', sys.version_info)[0])" |
|
|
2392 | elif [[ "${minor}" == "1" ]]; then |
|
|
2393 | python_command="import sys; print(getattr(sys, 'pypy_version_info', sys.version_info)[1])" |
|
|
2394 | elif [[ "${micro}" == "1" ]]; then |
|
|
2395 | python_command="import sys; print(getattr(sys, 'pypy_version_info', sys.version_info)[2])" |
|
|
2396 | else |
|
|
2397 | if [[ -n "${PYTHON_ABI}" && "${final_ABI}" == "0" ]]; then |
|
|
2398 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
|
|
2399 | echo "${PYTHON_ABI}" |
|
|
2400 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
|
|
2401 | echo "${PYTHON_ABI%-jython}" |
|
|
2402 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "PyPy" ]]; then |
|
|
2403 | echo "${PYTHON_ABI#*-pypy-}" |
|
|
2404 | fi |
|
|
2405 | return |
|
|
2406 | fi |
|
|
2407 | python_command="from sys import version_info; print('.'.join(str(x) for x in version_info[:2]))" |
|
|
2408 | fi |
|
|
2409 | |
|
|
2410 | if [[ "${final_ABI}" == "1" ]]; then |
|
|
2411 | "$(PYTHON -f)" -c "${python_command}" |
|
|
2412 | else |
| 2228 | "$(PYTHON ${PYTHON_ABI})" -c "${python_command}" |
2413 | "$(PYTHON ${PYTHON_ABI})" -c "${python_command}" |
|
|
2414 | fi |
|
|
2415 | fi |
|
|
2416 | } |
|
|
2417 | |
|
|
2418 | # @FUNCTION: python_get_implementation_and_version |
|
|
2419 | # @USAGE: [-f|--final-ABI] |
|
|
2420 | # @DESCRIPTION: |
|
|
2421 | # Print name and version of Python implementation. |
|
|
2422 | # If version of Python implementation is not bound to version of Python language, then |
|
|
2423 | # version of Python language is additionally printed. |
|
|
2424 | # If --final-ABI option is specified, then final ABI from the list of enabled ABIs is used. |
|
|
2425 | python_get_implementation_and_version() { |
|
|
2426 | _python_check_python_pkg_setup_execution |
|
|
2427 | |
|
|
2428 | local final_ABI="0" PYTHON_ABI="${PYTHON_ABI}" |
|
|
2429 | |
|
|
2430 | while (($#)); do |
|
|
2431 | case "$1" in |
|
|
2432 | -f|--final-ABI) |
|
|
2433 | final_ABI="1" |
|
|
2434 | ;; |
|
|
2435 | -*) |
|
|
2436 | die "${FUNCNAME}(): Unrecognized option '$1'" |
|
|
2437 | ;; |
|
|
2438 | *) |
|
|
2439 | die "${FUNCNAME}(): Invalid usage" |
|
|
2440 | ;; |
|
|
2441 | esac |
|
|
2442 | shift |
|
|
2443 | done |
|
|
2444 | |
|
|
2445 | if [[ "${final_ABI}" == "1" ]]; then |
|
|
2446 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
2447 | die "${FUNCNAME}(): '--final-ABI' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
|
|
2448 | fi |
|
|
2449 | PYTHON_ABI="$(PYTHON -f --ABI)" |
|
|
2450 | else |
|
|
2451 | if _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
2452 | if ! _python_abi-specific_local_scope; then |
|
|
2453 | die "${FUNCNAME}() should be used in ABI-specific local scope" |
|
|
2454 | fi |
|
|
2455 | else |
|
|
2456 | PYTHON_ABI="${PYTHON_ABI:-$(PYTHON --ABI)}" |
|
|
2457 | fi |
|
|
2458 | fi |
|
|
2459 | |
|
|
2460 | if [[ "${PYTHON_ABI}" =~ ^[[:digit:]]+\.[[:digit:]]+-[[:alnum:]]+-[[:digit:]]+\.[[:digit:]]+$ ]]; then |
|
|
2461 | echo "$(_python_get_implementation "${PYTHON_ABI}") ${PYTHON_ABI##*-} (Python ${PYTHON_ABI%%-*})" |
|
|
2462 | else |
|
|
2463 | echo "$(_python_get_implementation "${PYTHON_ABI}") ${PYTHON_ABI%%-*}" |
| 2229 | fi |
2464 | fi |
| 2230 | } |
2465 | } |
| 2231 | |
2466 | |
| 2232 | # ================================================================================================ |
2467 | # ================================================================================================ |
| 2233 | # ================================ FUNCTIONS FOR RUNNING OF TESTS ================================ |
2468 | # ================================ FUNCTIONS FOR RUNNING OF TESTS ================================ |
| … | |
… | |
| 2242 | _python_test_hook() { |
2477 | _python_test_hook() { |
| 2243 | if [[ "$#" -ne 1 ]]; then |
2478 | if [[ "$#" -ne 1 ]]; then |
| 2244 | die "${FUNCNAME}() requires 1 argument" |
2479 | die "${FUNCNAME}() requires 1 argument" |
| 2245 | fi |
2480 | fi |
| 2246 | |
2481 | |
| 2247 | if _python_package_supporting_installation_for_multiple_python_abis && [[ "$(type -t "${FUNCNAME[3]}_$1_hook")" == "function" ]]; then |
2482 | if _python_package_supporting_installation_for_multiple_python_abis && [[ "$(type -t "${_PYTHON_TEST_FUNCTION}_$1_hook")" == "function" ]]; then |
| 2248 | "${FUNCNAME[3]}_$1_hook" |
2483 | "${_PYTHON_TEST_FUNCTION}_$1_hook" |
| 2249 | fi |
2484 | fi |
| 2250 | } |
2485 | } |
| 2251 | |
2486 | |
| 2252 | # @FUNCTION: python_execute_nosetests |
2487 | # @FUNCTION: python_execute_nosetests |
| 2253 | # @USAGE: [-P|--PYTHONPATH PYTHONPATH] [-s|--separate-build-dirs] [--] [arguments] |
2488 | # @USAGE: [-P|--PYTHONPATH PYTHONPATH] [-s|--separate-build-dirs] [--] [arguments] |
| … | |
… | |
| 2287 | python_test_function() { |
2522 | python_test_function() { |
| 2288 | local evaluated_PYTHONPATH |
2523 | local evaluated_PYTHONPATH |
| 2289 | |
2524 | |
| 2290 | eval "evaluated_PYTHONPATH=\"${PYTHONPATH_template}\"" |
2525 | eval "evaluated_PYTHONPATH=\"${PYTHONPATH_template}\"" |
| 2291 | |
2526 | |
| 2292 | _python_test_hook pre |
2527 | _PYTHON_TEST_FUNCTION="python_execute_nosetests" _python_test_hook pre |
| 2293 | |
2528 | |
| 2294 | if [[ -n "${evaluated_PYTHONPATH}" ]]; then |
2529 | if [[ -n "${evaluated_PYTHONPATH}" ]]; then |
| 2295 | echo ${_BOLD}PYTHONPATH="${evaluated_PYTHONPATH}" nosetests --verbosity="${PYTHON_TEST_VERBOSITY}" "$@"${_NORMAL} |
2530 | echo ${_BOLD}PYTHONPATH="${evaluated_PYTHONPATH}" nosetests --verbosity="${PYTHON_TEST_VERBOSITY}" "$@"${_NORMAL} |
| 2296 | PYTHONPATH="${evaluated_PYTHONPATH}" nosetests --verbosity="${PYTHON_TEST_VERBOSITY}" "$@" || return "$?" |
2531 | PYTHONPATH="${evaluated_PYTHONPATH}" nosetests --verbosity="${PYTHON_TEST_VERBOSITY}" "$@" || return "$?" |
| 2297 | else |
2532 | else |
| 2298 | echo ${_BOLD}nosetests --verbosity="${PYTHON_TEST_VERBOSITY}" "$@"${_NORMAL} |
2533 | echo ${_BOLD}nosetests --verbosity="${PYTHON_TEST_VERBOSITY}" "$@"${_NORMAL} |
| 2299 | nosetests --verbosity="${PYTHON_TEST_VERBOSITY}" "$@" || return "$?" |
2534 | nosetests --verbosity="${PYTHON_TEST_VERBOSITY}" "$@" || return "$?" |
| 2300 | fi |
2535 | fi |
| 2301 | |
2536 | |
| 2302 | _python_test_hook post |
2537 | _PYTHON_TEST_FUNCTION="python_execute_nosetests" _python_test_hook post |
| 2303 | } |
2538 | } |
| 2304 | if _python_package_supporting_installation_for_multiple_python_abis; then |
2539 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| 2305 | python_execute_function ${separate_build_dirs:+-s} python_test_function "$@" |
2540 | python_execute_function ${separate_build_dirs:+-s} python_test_function "$@" |
| 2306 | else |
2541 | else |
| 2307 | if [[ -n "${separate_build_dirs}" ]]; then |
2542 | if [[ -n "${separate_build_dirs}" ]]; then |
| … | |
… | |
| 2351 | python_test_function() { |
2586 | python_test_function() { |
| 2352 | local evaluated_PYTHONPATH |
2587 | local evaluated_PYTHONPATH |
| 2353 | |
2588 | |
| 2354 | eval "evaluated_PYTHONPATH=\"${PYTHONPATH_template}\"" |
2589 | eval "evaluated_PYTHONPATH=\"${PYTHONPATH_template}\"" |
| 2355 | |
2590 | |
| 2356 | _python_test_hook pre |
2591 | _PYTHON_TEST_FUNCTION="python_execute_py.test" _python_test_hook pre |
| 2357 | |
2592 | |
| 2358 | if [[ -n "${evaluated_PYTHONPATH}" ]]; then |
2593 | if [[ -n "${evaluated_PYTHONPATH}" ]]; then |
| 2359 | echo ${_BOLD}PYTHONPATH="${evaluated_PYTHONPATH}" py.test $([[ "${PYTHON_TEST_VERBOSITY}" -ge 2 ]] && echo -v) "$@"${_NORMAL} |
2594 | echo ${_BOLD}PYTHONPATH="${evaluated_PYTHONPATH}" py.test $([[ "${PYTHON_TEST_VERBOSITY}" -ge 2 ]] && echo -v) "$@"${_NORMAL} |
| 2360 | PYTHONPATH="${evaluated_PYTHONPATH}" py.test $([[ "${PYTHON_TEST_VERBOSITY}" -ge 2 ]] && echo -v) "$@" || return "$?" |
2595 | PYTHONPATH="${evaluated_PYTHONPATH}" py.test $([[ "${PYTHON_TEST_VERBOSITY}" -ge 2 ]] && echo -v) "$@" || return "$?" |
| 2361 | else |
2596 | else |
| 2362 | echo ${_BOLD}py.test $([[ "${PYTHON_TEST_VERBOSITY}" -gt 1 ]] && echo -v) "$@"${_NORMAL} |
2597 | echo ${_BOLD}py.test $([[ "${PYTHON_TEST_VERBOSITY}" -gt 1 ]] && echo -v) "$@"${_NORMAL} |
| 2363 | py.test $([[ "${PYTHON_TEST_VERBOSITY}" -gt 1 ]] && echo -v) "$@" || return "$?" |
2598 | py.test $([[ "${PYTHON_TEST_VERBOSITY}" -gt 1 ]] && echo -v) "$@" || return "$?" |
| 2364 | fi |
2599 | fi |
| 2365 | |
2600 | |
| 2366 | _python_test_hook post |
2601 | _PYTHON_TEST_FUNCTION="python_execute_py.test" _python_test_hook post |
| 2367 | } |
2602 | } |
| 2368 | if _python_package_supporting_installation_for_multiple_python_abis; then |
2603 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| 2369 | python_execute_function ${separate_build_dirs:+-s} python_test_function "$@" |
2604 | python_execute_function ${separate_build_dirs:+-s} python_test_function "$@" |
| 2370 | else |
2605 | else |
| 2371 | if [[ -n "${separate_build_dirs}" ]]; then |
2606 | if [[ -n "${separate_build_dirs}" ]]; then |
| … | |
… | |
| 2415 | python_test_function() { |
2650 | python_test_function() { |
| 2416 | local evaluated_PYTHONPATH |
2651 | local evaluated_PYTHONPATH |
| 2417 | |
2652 | |
| 2418 | eval "evaluated_PYTHONPATH=\"${PYTHONPATH_template}\"" |
2653 | eval "evaluated_PYTHONPATH=\"${PYTHONPATH_template}\"" |
| 2419 | |
2654 | |
| 2420 | _python_test_hook pre |
2655 | _PYTHON_TEST_FUNCTION="python_execute_trial" _python_test_hook pre |
| 2421 | |
2656 | |
| 2422 | if [[ -n "${evaluated_PYTHONPATH}" ]]; then |
2657 | if [[ -n "${evaluated_PYTHONPATH}" ]]; then |
| 2423 | echo ${_BOLD}PYTHONPATH="${evaluated_PYTHONPATH}" trial $([[ "${PYTHON_TEST_VERBOSITY}" -ge 4 ]] && echo --spew) "$@"${_NORMAL} |
2658 | echo ${_BOLD}PYTHONPATH="${evaluated_PYTHONPATH}" trial $([[ "${PYTHON_TEST_VERBOSITY}" -ge 4 ]] && echo --spew) "$@"${_NORMAL} |
| 2424 | PYTHONPATH="${evaluated_PYTHONPATH}" trial $([[ "${PYTHON_TEST_VERBOSITY}" -ge 4 ]] && echo --spew) "$@" || return "$?" |
2659 | PYTHONPATH="${evaluated_PYTHONPATH}" trial $([[ "${PYTHON_TEST_VERBOSITY}" -ge 4 ]] && echo --spew) "$@" || return "$?" |
| 2425 | else |
2660 | else |
| 2426 | echo ${_BOLD}trial $([[ "${PYTHON_TEST_VERBOSITY}" -ge 4 ]] && echo --spew) "$@"${_NORMAL} |
2661 | echo ${_BOLD}trial $([[ "${PYTHON_TEST_VERBOSITY}" -ge 4 ]] && echo --spew) "$@"${_NORMAL} |
| 2427 | trial $([[ "${PYTHON_TEST_VERBOSITY}" -ge 4 ]] && echo --spew) "$@" || return "$?" |
2662 | trial $([[ "${PYTHON_TEST_VERBOSITY}" -ge 4 ]] && echo --spew) "$@" || return "$?" |
| 2428 | fi |
2663 | fi |
| 2429 | |
2664 | |
| 2430 | _python_test_hook post |
2665 | _PYTHON_TEST_FUNCTION="python_execute_trial" _python_test_hook post |
| 2431 | } |
2666 | } |
| 2432 | if _python_package_supporting_installation_for_multiple_python_abis; then |
2667 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| 2433 | python_execute_function ${separate_build_dirs:+-s} python_test_function "$@" |
2668 | python_execute_function ${separate_build_dirs:+-s} python_test_function "$@" |
| 2434 | else |
2669 | else |
| 2435 | if [[ -n "${separate_build_dirs}" ]]; then |
2670 | if [[ -n "${separate_build_dirs}" ]]; then |
| … | |
… | |
| 2579 | _python_check_python_pkg_setup_execution |
2814 | _python_check_python_pkg_setup_execution |
| 2580 | _python_initialize_prefix_variables |
2815 | _python_initialize_prefix_variables |
| 2581 | |
2816 | |
| 2582 | if ! has "${EAPI:-0}" 0 1 2 || _python_package_supporting_installation_for_multiple_python_abis || _python_implementation || [[ "${CATEGORY}/${PN}" == "sys-apps/portage" ]]; then |
2817 | if ! has "${EAPI:-0}" 0 1 2 || _python_package_supporting_installation_for_multiple_python_abis || _python_implementation || [[ "${CATEGORY}/${PN}" == "sys-apps/portage" ]]; then |
| 2583 | # PYTHON_ABI variable cannot be local in packages not supporting installation for multiple Python ABIs. |
2818 | # PYTHON_ABI variable cannot be local in packages not supporting installation for multiple Python ABIs. |
| 2584 | 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=() |
2819 | 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 |
| 2585 | |
2820 | |
| 2586 | if _python_package_supporting_installation_for_multiple_python_abis; then |
2821 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| 2587 | if has "${EAPI:-0}" 0 1 2 3 && [[ -z "${PYTHON_ABIS}" ]]; then |
2822 | if has "${EAPI:-0}" 0 1 2 3 && [[ -z "${PYTHON_ABIS}" ]]; then |
| 2588 | die "${FUNCNAME}(): python_pkg_setup() or python_execute_function() not called" |
2823 | die "${FUNCNAME}(): python_pkg_setup() or python_execute_function() not called" |
| 2589 | fi |
2824 | fi |
| … | |
… | |
| 2684 | options+=("-q") |
2919 | options+=("-q") |
| 2685 | |
2920 | |
| 2686 | for PYTHON_ABI in ${iterated_PYTHON_ABIS}; do |
2921 | for PYTHON_ABI in ${iterated_PYTHON_ABIS}; do |
| 2687 | if ((${#site_packages_dirs[@]})) || ((${#site_packages_files[@]})) || ((${#evaluated_dirs[@]})) || ((${#evaluated_files[@]})); then |
2922 | if ((${#site_packages_dirs[@]})) || ((${#site_packages_files[@]})) || ((${#evaluated_dirs[@]})) || ((${#evaluated_files[@]})); then |
| 2688 | return_code="0" |
2923 | return_code="0" |
|
|
2924 | stderr="" |
| 2689 | ebegin "Compilation and optimization of Python modules for $(python_get_implementation) $(python_get_version)" |
2925 | ebegin "Compilation and optimization of Python modules for $(python_get_implementation_and_version)" |
| 2690 | if ((${#site_packages_dirs[@]})) || ((${#evaluated_dirs[@]})); then |
2926 | if ((${#site_packages_dirs[@]})) || ((${#evaluated_dirs[@]})); then |
| 2691 | for dir in "${site_packages_dirs[@]}"; do |
2927 | for dir in "${site_packages_dirs[@]}"; do |
| 2692 | dirs+=("${root}$(python_get_sitedir)/${dir}") |
2928 | dirs+=("${root}$(python_get_sitedir)/${dir}") |
| 2693 | done |
2929 | done |
| 2694 | for dir in "${evaluated_dirs[@]}"; do |
2930 | for dir in "${evaluated_dirs[@]}"; do |
| 2695 | eval "dirs+=(\"\${root}${dir}\")" |
2931 | eval "dirs+=(\"\${root}${dir}\")" |
| 2696 | done |
2932 | done |
| 2697 | "$(PYTHON)" "${root}$(python_get_libdir)/compileall.py" "${options[@]}" "${dirs[@]}" || return_code="1" |
2933 | stderr+="${stderr:+$'\n'}$("$(PYTHON)" -m compileall "${options[@]}" "${dirs[@]}" 2>&1)" || return_code="1" |
| 2698 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" != "Jython" ]]; then |
2934 | if ! has "$(_python_get_implementation "${PYTHON_ABI}")" Jython PyPy; then |
| 2699 | "$(PYTHON)" -O "${root}$(python_get_libdir)/compileall.py" "${options[@]}" "${dirs[@]}" &> /dev/null || return_code="1" |
2935 | "$(PYTHON)" -O -m compileall "${options[@]}" "${dirs[@]}" &> /dev/null || return_code="1" |
| 2700 | fi |
2936 | fi |
| 2701 | _python_clean_compiled_modules "${dirs[@]}" |
2937 | _python_clean_compiled_modules "${dirs[@]}" |
| 2702 | fi |
2938 | fi |
| 2703 | if ((${#site_packages_files[@]})) || ((${#evaluated_files[@]})); then |
2939 | if ((${#site_packages_files[@]})) || ((${#evaluated_files[@]})); then |
| 2704 | for file in "${site_packages_files[@]}"; do |
2940 | for file in "${site_packages_files[@]}"; do |
| 2705 | files+=("${root}$(python_get_sitedir)/${file}") |
2941 | files+=("${root}$(python_get_sitedir)/${file}") |
| 2706 | done |
2942 | done |
| 2707 | for file in "${evaluated_files[@]}"; do |
2943 | for file in "${evaluated_files[@]}"; do |
| 2708 | eval "files+=(\"\${root}${file}\")" |
2944 | eval "files+=(\"\${root}${file}\")" |
| 2709 | done |
2945 | done |
| 2710 | "$(PYTHON)" "${root}$(python_get_libdir)/py_compile.py" "${files[@]}" || return_code="1" |
2946 | stderr+="${stderr:+$'\n'}$("$(PYTHON)" -m py_compile "${files[@]}" 2>&1)" || return_code="1" |
| 2711 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" != "Jython" ]]; then |
2947 | if ! has "$(_python_get_implementation "${PYTHON_ABI}")" Jython PyPy; then |
| 2712 | "$(PYTHON)" -O "${root}$(python_get_libdir)/py_compile.py" "${files[@]}" &> /dev/null || return_code="1" |
2948 | "$(PYTHON)" -O -m py_compile "${files[@]}" &> /dev/null || return_code="1" |
| 2713 | fi |
2949 | fi |
| 2714 | _python_clean_compiled_modules "${files[@]}" |
2950 | _python_clean_compiled_modules "${files[@]}" |
| 2715 | fi |
2951 | fi |
| 2716 | eend "${return_code}" |
2952 | eend "${return_code}" |
|
|
2953 | if [[ -n "${stderr}" ]]; then |
|
|
2954 | eerror "Syntax errors / warnings in Python modules for $(python_get_implementation_and_version):" &> /dev/null |
|
|
2955 | while read stderr_line; do |
|
|
2956 | eerror " ${stderr_line}" |
|
|
2957 | done <<< "${stderr}" |
|
|
2958 | fi |
| 2717 | fi |
2959 | fi |
| 2718 | unset dirs files |
2960 | unset dirs files |
| 2719 | done |
2961 | done |
| 2720 | |
2962 | |
| 2721 | if _python_package_supporting_installation_for_multiple_python_abis; then |
2963 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| … | |
… | |
| 2727 | fi |
2969 | fi |
| 2728 | fi |
2970 | fi |
| 2729 | |
2971 | |
| 2730 | if ((${#other_dirs[@]})) || ((${#other_files[@]})); then |
2972 | if ((${#other_dirs[@]})) || ((${#other_files[@]})); then |
| 2731 | return_code="0" |
2973 | return_code="0" |
|
|
2974 | stderr="" |
| 2732 | ebegin "Compilation and optimization of Python modules placed outside of site-packages directories for $(python_get_implementation) $(python_get_version)" |
2975 | ebegin "Compilation and optimization of Python modules placed outside of site-packages directories for $(python_get_implementation_and_version)" |
| 2733 | if ((${#other_dirs[@]})); then |
2976 | if ((${#other_dirs[@]})); then |
| 2734 | "$(PYTHON ${PYTHON_ABI})" "${root}$(python_get_libdir)/compileall.py" "${options[@]}" "${other_dirs[@]}" || return_code="1" |
2977 | stderr+="${stderr:+$'\n'}$("$(PYTHON ${PYTHON_ABI})" -m compileall "${options[@]}" "${other_dirs[@]}" 2>&1)" || return_code="1" |
| 2735 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" != "Jython" ]]; then |
2978 | if ! has "$(_python_get_implementation "${PYTHON_ABI}")" Jython PyPy; then |
| 2736 | "$(PYTHON ${PYTHON_ABI})" -O "${root}$(python_get_libdir)/compileall.py" "${options[@]}" "${other_dirs[@]}" &> /dev/null || return_code="1" |
2979 | "$(PYTHON ${PYTHON_ABI})" -O -m compileall "${options[@]}" "${other_dirs[@]}" &> /dev/null || return_code="1" |
| 2737 | fi |
2980 | fi |
| 2738 | _python_clean_compiled_modules "${other_dirs[@]}" |
2981 | _python_clean_compiled_modules "${other_dirs[@]}" |
| 2739 | fi |
2982 | fi |
| 2740 | if ((${#other_files[@]})); then |
2983 | if ((${#other_files[@]})); then |
| 2741 | "$(PYTHON ${PYTHON_ABI})" "${root}$(python_get_libdir)/py_compile.py" "${other_files[@]}" || return_code="1" |
2984 | stderr+="${stderr:+$'\n'}$("$(PYTHON ${PYTHON_ABI})" -m py_compile "${other_files[@]}" 2>&1)" || return_code="1" |
| 2742 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" != "Jython" ]]; then |
2985 | if ! has "$(_python_get_implementation "${PYTHON_ABI}")" Jython PyPy; then |
| 2743 | "$(PYTHON ${PYTHON_ABI})" -O "${root}$(python_get_libdir)/py_compile.py" "${other_files[@]}" &> /dev/null || return_code="1" |
2986 | "$(PYTHON ${PYTHON_ABI})" -O -m py_compile "${other_files[@]}" &> /dev/null || return_code="1" |
| 2744 | fi |
2987 | fi |
| 2745 | _python_clean_compiled_modules "${other_files[@]}" |
2988 | _python_clean_compiled_modules "${other_files[@]}" |
| 2746 | fi |
2989 | fi |
| 2747 | eend "${return_code}" |
2990 | eend "${return_code}" |
|
|
2991 | if [[ -n "${stderr}" ]]; then |
|
|
2992 | eerror "Syntax errors / warnings in Python modules placed outside of site-packages directories for $(python_get_implementation_and_version):" &> /dev/null |
|
|
2993 | while read stderr_line; do |
|
|
2994 | eerror " ${stderr_line}" |
|
|
2995 | done <<< "${stderr}" |
|
|
2996 | fi |
| 2748 | fi |
2997 | fi |
| 2749 | else |
2998 | else |
| 2750 | # Deprecated part of python_mod_optimize() |
2999 | # Deprecated part of python_mod_optimize() |
| 2751 | ewarn |
3000 | ewarn |
| 2752 | ewarn "Deprecation Warning: Usage of ${FUNCNAME}() in packages not supporting installation" |
3001 | ewarn "Deprecation Warning: Usage of ${FUNCNAME}() in packages not supporting installation" |
| … | |
… | |
| 2928 | } |
3177 | } |
| 2929 | |
3178 | |
| 2930 | # ================================================================================================ |
3179 | # ================================================================================================ |
| 2931 | # ===================================== DEPRECATED FUNCTIONS ===================================== |
3180 | # ===================================== DEPRECATED FUNCTIONS ===================================== |
| 2932 | # ================================================================================================ |
3181 | # ================================================================================================ |
|
|
3182 | |
|
|
3183 | fi # _PYTHON_ECLASS_INHERITED |