| 1 | # Copyright 1999-2011 Gentoo Foundation |
1 | # Copyright 1999-2011 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.138 2011/10/07 10:57:48 djc 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 |
| … | |
… | |
| 14 | if ! has "${EAPI:-0}" 0 1 2 3; then |
14 | if ! has "${EAPI:-0}" 0 1 2 3; then |
| 15 | die "API of python.eclass in EAPI=\"${EAPI}\" not established" |
15 | die "API of python.eclass in EAPI=\"${EAPI}\" not established" |
| 16 | fi |
16 | fi |
| 17 | |
17 | |
| 18 | _CPYTHON2_GLOBALLY_SUPPORTED_ABIS=(2.4 2.5 2.6 2.7) |
18 | _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) |
19 | _CPYTHON3_GLOBALLY_SUPPORTED_ABIS=(3.1 3.2) |
| 20 | _JYTHON_GLOBALLY_SUPPORTED_ABIS=(2.5-jython) |
20 | _JYTHON_GLOBALLY_SUPPORTED_ABIS=(2.5-jython) |
|
|
21 | _PYPY_GLOBALLY_SUPPORTED_ABIS=(2.7-pypy-1.5) |
| 21 | _PYTHON_GLOBALLY_SUPPORTED_ABIS=(${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]} ${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]} ${_JYTHON_GLOBALLY_SUPPORTED_ABIS[@]}) |
22 | _PYTHON_GLOBALLY_SUPPORTED_ABIS=(${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]} ${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]} ${_JYTHON_GLOBALLY_SUPPORTED_ABIS[@]} ${_PYPY_GLOBALLY_SUPPORTED_ABIS[@]}) |
| 22 | |
23 | |
| 23 | # ================================================================================================ |
24 | # ================================================================================================ |
| 24 | # ===================================== HANDLING OF METADATA ===================================== |
25 | # ===================================== HANDLING OF METADATA ===================================== |
| 25 | # ================================================================================================ |
26 | # ================================================================================================ |
|
|
27 | |
|
|
28 | _PYTHON_ABI_PATTERN_REGEX="([[:alnum:]]|\.|-|\*|\[|\])+" |
| 26 | |
29 | |
| 27 | _python_check_python_abi_matching() { |
30 | _python_check_python_abi_matching() { |
| 28 | local pattern patterns patterns_list="0" PYTHON_ABI |
31 | local pattern patterns patterns_list="0" PYTHON_ABI |
| 29 | |
32 | |
| 30 | while (($#)); do |
33 | while (($#)); do |
| … | |
… | |
| 56 | pattern="$2" |
59 | pattern="$2" |
| 57 | |
60 | |
| 58 | if [[ "${pattern}" == *"-cpython" ]]; then |
61 | if [[ "${pattern}" == *"-cpython" ]]; then |
| 59 | [[ "${PYTHON_ABI}" =~ ^[[:digit:]]+\.[[:digit:]]+$ && "${PYTHON_ABI}" == ${pattern%-cpython} ]] |
62 | [[ "${PYTHON_ABI}" =~ ^[[:digit:]]+\.[[:digit:]]+$ && "${PYTHON_ABI}" == ${pattern%-cpython} ]] |
| 60 | elif [[ "${pattern}" == *"-jython" ]]; then |
63 | elif [[ "${pattern}" == *"-jython" ]]; then |
|
|
64 | [[ "${PYTHON_ABI}" == ${pattern} ]] |
|
|
65 | elif [[ "${pattern}" == *"-pypy-"* ]]; then |
| 61 | [[ "${PYTHON_ABI}" == ${pattern} ]] |
66 | [[ "${PYTHON_ABI}" == ${pattern} ]] |
| 62 | else |
67 | else |
| 63 | if [[ "${PYTHON_ABI}" =~ ^[[:digit:]]+\.[[:digit:]]+$ ]]; then |
68 | if [[ "${PYTHON_ABI}" =~ ^[[:digit:]]+\.[[:digit:]]+$ ]]; then |
| 64 | [[ "${PYTHON_ABI}" == ${pattern} ]] |
69 | [[ "${PYTHON_ABI}" == ${pattern} ]] |
| 65 | elif [[ "${PYTHON_ABI}" =~ ^[[:digit:]]+\.[[:digit:]]+-jython$ ]]; then |
70 | elif [[ "${PYTHON_ABI}" =~ ^[[:digit:]]+\.[[:digit:]]+-jython$ ]]; then |
| 66 | [[ "${PYTHON_ABI%-jython}" == ${pattern} ]] |
71 | [[ "${PYTHON_ABI%-jython}" == ${pattern} ]] |
|
|
72 | elif [[ "${PYTHON_ABI}" =~ ^[[:digit:]]+\.[[:digit:]]+-pypy-[[:digit:]]+\.[[:digit:]]+$ ]]; then |
|
|
73 | [[ "${PYTHON_ABI%-pypy-*}" == ${pattern} ]] |
| 67 | else |
74 | else |
| 68 | die "${FUNCNAME}(): Unrecognized Python ABI '${PYTHON_ABI}'" |
75 | die "${FUNCNAME}(): Unrecognized Python ABI '${PYTHON_ABI}'" |
| 69 | fi |
76 | fi |
| 70 | fi |
77 | fi |
| 71 | else |
78 | else |
| … | |
… | |
| 76 | return 0 |
83 | return 0 |
| 77 | fi |
84 | fi |
| 78 | done <<< "${patterns}" |
85 | done <<< "${patterns}" |
| 79 | |
86 | |
| 80 | return 1 |
87 | return 1 |
|
|
88 | fi |
|
|
89 | } |
|
|
90 | |
|
|
91 | _python_package_supporting_installation_for_multiple_python_abis() { |
|
|
92 | if has "${EAPI:-0}" 0 1 2 3 4; then |
|
|
93 | if [[ -n "${SUPPORT_PYTHON_ABIS}" ]]; then |
|
|
94 | return 0 |
|
|
95 | else |
|
|
96 | return 1 |
|
|
97 | fi |
|
|
98 | else |
|
|
99 | die "${FUNCNAME}(): Support for EAPI=\"${EAPI}\" not implemented" |
| 81 | fi |
100 | fi |
| 82 | } |
101 | } |
| 83 | |
102 | |
| 84 | # @ECLASS-VARIABLE: PYTHON_DEPEND |
103 | # @ECLASS-VARIABLE: PYTHON_DEPEND |
| 85 | # @DESCRIPTION: |
104 | # @DESCRIPTION: |
| … | |
… | |
| 278 | _python_implementation() { |
297 | _python_implementation() { |
| 279 | if [[ "${CATEGORY}/${PN}" == "dev-lang/python" ]]; then |
298 | if [[ "${CATEGORY}/${PN}" == "dev-lang/python" ]]; then |
| 280 | return 0 |
299 | return 0 |
| 281 | elif [[ "${CATEGORY}/${PN}" == "dev-java/jython" ]]; then |
300 | elif [[ "${CATEGORY}/${PN}" == "dev-java/jython" ]]; then |
| 282 | return 0 |
301 | return 0 |
|
|
302 | elif [[ "${CATEGORY}/${PN}" == "dev-python/pypy" ]]; then |
|
|
303 | return 0 |
| 283 | else |
304 | else |
| 284 | return 1 |
305 | 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 |
306 | fi |
| 302 | } |
307 | } |
| 303 | |
308 | |
| 304 | _python_abi-specific_local_scope() { |
309 | _python_abi-specific_local_scope() { |
| 305 | [[ " ${FUNCNAME[@]:2} " =~ " "(_python_final_sanity_checks|python_execute_function|python_mod_optimize|python_mod_cleanup)" " ]] |
310 | [[ " ${FUNCNAME[@]:2} " =~ " "(_python_final_sanity_checks|python_execute_function|python_mod_optimize|python_mod_cleanup)" " ]] |
| … | |
… | |
| 462 | |
467 | |
| 463 | if ! has "${EAPI:-0}" 0 1 2 3 || { has "${EAPI:-0}" 2 3 && [[ -n "${PYTHON_USE_WITH}" || -n "${PYTHON_USE_WITH_OR}" ]]; }; then |
468 | 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 |
469 | EXPORT_FUNCTIONS pkg_setup |
| 465 | fi |
470 | fi |
| 466 | |
471 | |
| 467 | _PYTHON_SHEBANG_BASE_PART_REGEX='^#![[:space:]]*([^[:space:]]*/usr/bin/env[[:space:]]+)?([^[:space:]]*/)?(jython|python)' |
472 | _PYTHON_SHEBANG_BASE_PART_REGEX='^#![[:space:]]*([^[:space:]]*/usr/bin/env[[:space:]]+)?([^[:space:]]*/)?(jython|pypy-c|python)' |
| 468 | |
473 | |
| 469 | # @FUNCTION: python_convert_shebangs |
474 | # @FUNCTION: python_convert_shebangs |
| 470 | # @USAGE: [-q|--quiet] [-r|--recursive] [-x|--only-executables] [--] <Python_ABI|Python_version> <file|directory> [files|directories] |
475 | # @USAGE: [-q|--quiet] [-r|--recursive] [-x|--only-executables] [--] <Python_ABI|Python_version> <file|directory> [files|directories] |
| 471 | # @DESCRIPTION: |
476 | # @DESCRIPTION: |
| 472 | # Convert shebangs in specified files. Directories can be specified only with --recursive option. |
477 | # Convert shebangs in specified files. Directories can be specified only with --recursive option. |
| … | |
… | |
| 540 | |
545 | |
| 541 | if [[ "${quiet}" == "0" ]]; then |
546 | if [[ "${quiet}" == "0" ]]; then |
| 542 | einfo "Converting shebang in '${file}'" |
547 | einfo "Converting shebang in '${file}'" |
| 543 | fi |
548 | fi |
| 544 | |
549 | |
| 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" |
550 | 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" |
| 546 | fi |
551 | fi |
| 547 | done |
552 | done |
| 548 | } |
553 | } |
| 549 | |
554 | |
| 550 | # @FUNCTION: python_clean_installation_image |
555 | # @FUNCTION: python_clean_installation_image |
| … | |
… | |
| 706 | fi |
711 | fi |
| 707 | |
712 | |
| 708 | _python_initial_sanity_checks |
713 | _python_initial_sanity_checks |
| 709 | |
714 | |
| 710 | if [[ "$(declare -p PYTHON_ABIS 2> /dev/null)" != "declare -x PYTHON_ABIS="* ]] && has "${EAPI:-0}" 0 1 2 3 4; then |
715 | 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 |
716 | local PYTHON_ABI |
| 712 | |
|
|
| 713 | restricted_ABIs="${RESTRICT_PYTHON_ABIS// /$'\n'}" |
|
|
| 714 | |
717 | |
| 715 | if [[ "$(declare -p USE_PYTHON 2> /dev/null)" == "declare -x USE_PYTHON="* ]]; then |
718 | if [[ "$(declare -p USE_PYTHON 2> /dev/null)" == "declare -x USE_PYTHON="* ]]; then |
| 716 | local cpython_enabled="0" |
719 | local cpython_enabled="0" |
| 717 | |
720 | |
| 718 | if [[ -z "${USE_PYTHON}" ]]; then |
721 | if [[ -z "${USE_PYTHON}" ]]; then |
| … | |
… | |
| 726 | |
729 | |
| 727 | if has "${PYTHON_ABI}" "${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]}" "${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]}"; then |
730 | if has "${PYTHON_ABI}" "${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]}" "${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]}"; then |
| 728 | cpython_enabled="1" |
731 | cpython_enabled="1" |
| 729 | fi |
732 | fi |
| 730 | |
733 | |
| 731 | support_ABI="1" |
|
|
| 732 | while read restricted_ABI; do |
|
|
| 733 | if _python_check_python_abi_matching "${PYTHON_ABI}" "${restricted_ABI}"; then |
734 | if ! _python_check_python_abi_matching --patterns-list "${PYTHON_ABI}" "${RESTRICT_PYTHON_ABIS}"; then |
| 734 | support_ABI="0" |
735 | export PYTHON_ABIS+="${PYTHON_ABIS:+ }${PYTHON_ABI}" |
| 735 | break |
|
|
| 736 | fi |
736 | fi |
| 737 | done <<< "${restricted_ABIs}" |
|
|
| 738 | [[ "${support_ABI}" == "1" ]] && export PYTHON_ABIS+="${PYTHON_ABIS:+ }${PYTHON_ABI}" |
|
|
| 739 | done |
737 | done |
| 740 | |
738 | |
| 741 | if [[ -z "${PYTHON_ABIS//[${IFS}]/}" ]]; then |
739 | if [[ -z "${PYTHON_ABIS//[${IFS}]/}" ]]; then |
| 742 | die "USE_PYTHON variable does not enable any Python ABI supported by ${CATEGORY}/${PF}" |
740 | die "USE_PYTHON variable does not enable any Python ABI supported by ${CATEGORY}/${PF}" |
| 743 | fi |
741 | fi |
| … | |
… | |
| 759 | die "'${EPREFIX}/usr/bin/python2' is not valid symlink" |
757 | die "'${EPREFIX}/usr/bin/python2' is not valid symlink" |
| 760 | fi |
758 | fi |
| 761 | |
759 | |
| 762 | python2_version="$("${EPREFIX}/usr/bin/python2" -c 'from sys import version_info; print(".".join(str(x) for x in version_info[:2]))')" |
760 | python2_version="$("${EPREFIX}/usr/bin/python2" -c 'from sys import version_info; print(".".join(str(x) for x in version_info[:2]))')" |
| 763 | |
761 | |
|
|
762 | support_python_major_version="0" |
| 764 | for PYTHON_ABI in "${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]}"; do |
763 | for PYTHON_ABI in "${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]}"; do |
|
|
764 | if ! _python_check_python_abi_matching --patterns-list "${PYTHON_ABI}" "${RESTRICT_PYTHON_ABIS}"; then |
| 765 | support_python_major_version="1" |
765 | support_python_major_version="1" |
| 766 | while read restricted_ABI; do |
766 | break |
| 767 | if _python_check_python_abi_matching "${PYTHON_ABI}" "${restricted_ABI}"; then |
|
|
| 768 | support_python_major_version="0" |
|
|
| 769 | fi |
767 | fi |
| 770 | done <<< "${restricted_ABIs}" |
|
|
| 771 | [[ "${support_python_major_version}" == "1" ]] && break |
|
|
| 772 | done |
768 | done |
| 773 | if [[ "${support_python_major_version}" == "1" ]]; then |
769 | 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 |
770 | 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}" |
771 | die "Active version of CPython 2 is not supported by ${CATEGORY}/${PF}" |
| 777 | fi |
772 | fi |
| 778 | done <<< "${restricted_ABIs}" |
|
|
| 779 | else |
773 | else |
| 780 | python2_version="" |
774 | python2_version="" |
| 781 | fi |
775 | fi |
| 782 | fi |
776 | fi |
| 783 | |
777 | |
| … | |
… | |
| 786 | die "'${EPREFIX}/usr/bin/python3' is not valid symlink" |
780 | die "'${EPREFIX}/usr/bin/python3' is not valid symlink" |
| 787 | fi |
781 | fi |
| 788 | |
782 | |
| 789 | python3_version="$("${EPREFIX}/usr/bin/python3" -c 'from sys import version_info; print(".".join(str(x) for x in version_info[:2]))')" |
783 | python3_version="$("${EPREFIX}/usr/bin/python3" -c 'from sys import version_info; print(".".join(str(x) for x in version_info[:2]))')" |
| 790 | |
784 | |
|
|
785 | support_python_major_version="0" |
| 791 | for PYTHON_ABI in "${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]}"; do |
786 | for PYTHON_ABI in "${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]}"; do |
|
|
787 | if ! _python_check_python_abi_matching --patterns-list "${PYTHON_ABI}" "${RESTRICT_PYTHON_ABIS}"; then |
| 792 | support_python_major_version="1" |
788 | support_python_major_version="1" |
| 793 | while read restricted_ABI; do |
789 | break |
| 794 | if _python_check_python_abi_matching "${PYTHON_ABI}" "${restricted_ABI}"; then |
|
|
| 795 | support_python_major_version="0" |
|
|
| 796 | fi |
790 | fi |
| 797 | done <<< "${restricted_ABIs}" |
|
|
| 798 | [[ "${support_python_major_version}" == "1" ]] && break |
|
|
| 799 | done |
791 | done |
| 800 | if [[ "${support_python_major_version}" == "1" ]]; then |
792 | 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 |
793 | 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}" |
794 | die "Active version of CPython 3 is not supported by ${CATEGORY}/${PF}" |
| 804 | fi |
795 | fi |
| 805 | done <<< "${restricted_ABIs}" |
|
|
| 806 | else |
796 | else |
| 807 | python3_version="" |
797 | python3_version="" |
| 808 | fi |
798 | fi |
| 809 | fi |
799 | fi |
| 810 | |
800 | |
| … | |
… | |
| 835 | eval "_PYTHON_SAVED_${variable}=\"\${!variable}\"" |
825 | eval "_PYTHON_SAVED_${variable}=\"\${!variable}\"" |
| 836 | for prefix in PYTHON_USER_ PYTHON_; do |
826 | for prefix in PYTHON_USER_ PYTHON_; do |
| 837 | if [[ "$(declare -p ${prefix}${variable} 2> /dev/null)" == "declare -a ${prefix}${variable}="* ]]; then |
827 | if [[ "$(declare -p ${prefix}${variable} 2> /dev/null)" == "declare -a ${prefix}${variable}="* ]]; then |
| 838 | eval "array=(\"\${${prefix}${variable}[@]}\")" |
828 | eval "array=(\"\${${prefix}${variable}[@]}\")" |
| 839 | for element in "${array[@]}"; do |
829 | for element in "${array[@]}"; do |
| 840 | if [[ "${element}" =~ ^([[:alnum:]]|\.|-|\*|\[|\])+\ (\+|-)\ .+ ]]; then |
830 | if [[ "${element}" =~ ^${_PYTHON_ABI_PATTERN_REGEX}\ (\+|-)\ .+ ]]; then |
| 841 | pattern="${element%% *}" |
831 | pattern="${element%% *}" |
| 842 | element="${element#* }" |
832 | element="${element#* }" |
| 843 | operator="${element%% *}" |
833 | operator="${element%% *}" |
| 844 | flags="${element#* }" |
834 | flags="${element#* }" |
| 845 | if _python_check_python_abi_matching "${PYTHON_ABI}" "${pattern}"; then |
835 | if _python_check_python_abi_matching "${PYTHON_ABI}" "${pattern}"; then |
| … | |
… | |
| 1015 | iterated_PYTHON_ABIS="${PYTHON_ABIS}" |
1005 | iterated_PYTHON_ABIS="${PYTHON_ABIS}" |
| 1016 | fi |
1006 | fi |
| 1017 | for PYTHON_ABI in ${iterated_PYTHON_ABIS}; do |
1007 | 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 |
1008 | if [[ "${EBUILD_PHASE}" == "test" ]] && _python_check_python_abi_matching --patterns-list "${PYTHON_ABI}" "${PYTHON_TESTS_RESTRICTED_ABIS}"; then |
| 1019 | if [[ "${quiet}" == "0" ]]; then |
1009 | if [[ "${quiet}" == "0" ]]; then |
| 1020 | echo " ${_GREEN}*${_NORMAL} ${_BLUE}Testing of ${CATEGORY}/${PF} with $(python_get_implementation) $(python_get_version) skipped${_NORMAL}" |
1010 | echo " ${_GREEN}*${_NORMAL} ${_BLUE}Testing of ${CATEGORY}/${PF} with $(python_get_implementation_and_version) skipped${_NORMAL}" |
| 1021 | fi |
1011 | fi |
| 1022 | continue |
1012 | continue |
| 1023 | fi |
1013 | fi |
| 1024 | |
1014 | |
| 1025 | _python_prepare_flags |
1015 | _python_prepare_flags |
| 1026 | |
1016 | |
| 1027 | if [[ "${quiet}" == "0" ]]; then |
1017 | if [[ "${quiet}" == "0" ]]; then |
| 1028 | if [[ -n "${action_message_template}" ]]; then |
1018 | if [[ -n "${action_message_template}" ]]; then |
| 1029 | eval "action_message=\"${action_message_template}\"" |
1019 | eval "action_message=\"${action_message_template}\"" |
| 1030 | else |
1020 | else |
| 1031 | action_message="${action} of ${CATEGORY}/${PF} with $(python_get_implementation) $(python_get_version)..." |
1021 | action_message="${action} of ${CATEGORY}/${PF} with $(python_get_implementation_and_version)..." |
| 1032 | fi |
1022 | fi |
| 1033 | echo " ${_GREEN}*${_NORMAL} ${_BLUE}${action_message}${_NORMAL}" |
1023 | echo " ${_GREEN}*${_NORMAL} ${_BLUE}${action_message}${_NORMAL}" |
| 1034 | fi |
1024 | fi |
| 1035 | |
1025 | |
| 1036 | if [[ "${separate_build_dirs}" == "1" ]]; then |
1026 | if [[ "${separate_build_dirs}" == "1" ]]; then |
| … | |
… | |
| 1060 | |
1050 | |
| 1061 | if [[ "${return_code}" -ne 0 ]]; then |
1051 | if [[ "${return_code}" -ne 0 ]]; then |
| 1062 | if [[ -n "${failure_message_template}" ]]; then |
1052 | if [[ -n "${failure_message_template}" ]]; then |
| 1063 | eval "failure_message=\"${failure_message_template}\"" |
1053 | eval "failure_message=\"${failure_message_template}\"" |
| 1064 | else |
1054 | else |
| 1065 | failure_message="${action} failed with $(python_get_implementation) $(python_get_version) in ${function}() function" |
1055 | failure_message="${action} failed with $(python_get_implementation_and_version) in ${function}() function" |
| 1066 | fi |
1056 | fi |
| 1067 | |
1057 | |
| 1068 | if [[ "${nonfatal}" == "1" ]]; then |
1058 | if [[ "${nonfatal}" == "1" ]]; then |
| 1069 | if [[ "${quiet}" == "0" ]]; then |
1059 | if [[ "${quiet}" == "0" ]]; then |
| 1070 | ewarn "${failure_message}" |
1060 | ewarn "${failure_message}" |
| … | |
… | |
| 1241 | import os |
1231 | import os |
| 1242 | import re |
1232 | import re |
| 1243 | import subprocess |
1233 | import subprocess |
| 1244 | import sys |
1234 | import sys |
| 1245 | |
1235 | |
| 1246 | cpython_re = re.compile(r"^python(\d+\.\d+)$") |
1236 | cpython_ABI_re = re.compile(r"^(\d+\.\d+)$") |
|
|
1237 | jython_ABI_re = re.compile(r"^(\d+\.\d+)-jython$") |
|
|
1238 | pypy_ABI_re = re.compile(r"^\d+\.\d+-pypy-(\d+\.\d+)$") |
|
|
1239 | cpython_interpreter_re = re.compile(r"^python(\d+\.\d+)$") |
| 1247 | jython_re = re.compile(r"^jython(\d+\.\d+)$") |
1240 | jython_interpreter_re = re.compile(r"^jython(\d+\.\d+)$") |
|
|
1241 | 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)") |
1242 | cpython_shebang_re = re.compile(r"^#![ \t]*(?:${EPREFIX}/usr/bin/python|(?:${EPREFIX})?/usr/bin/env[ \t]+(?:${EPREFIX}/usr/bin/)?python)") |
|
|
1243 | 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$") |
1244 | python_verification_output_re = re.compile("^GENTOO_PYTHON_TARGET_SCRIPT_PATH supported\n$") |
| 1250 | |
1245 | |
| 1251 | def get_PYTHON_ABI(EPYTHON): |
1246 | pypy_versions_mapping = { |
| 1252 | cpython_matched = cpython_re.match(EPYTHON) |
1247 | "1.5": "2.7" |
| 1253 | jython_matched = jython_re.match(EPYTHON) |
1248 | } |
|
|
1249 | |
|
|
1250 | def get_PYTHON_ABI(python_interpreter): |
|
|
1251 | cpython_matched = cpython_interpreter_re.match(python_interpreter) |
|
|
1252 | jython_matched = jython_interpreter_re.match(python_interpreter) |
|
|
1253 | pypy_matched = pypy_interpreter_re.match(python_interpreter) |
| 1254 | if cpython_matched is not None: |
1254 | if cpython_matched is not None: |
| 1255 | PYTHON_ABI = cpython_matched.group(1) |
1255 | PYTHON_ABI = cpython_matched.group(1) |
| 1256 | elif jython_matched is not None: |
1256 | elif jython_matched is not None: |
| 1257 | PYTHON_ABI = jython_matched.group(1) + "-jython" |
1257 | PYTHON_ABI = jython_matched.group(1) + "-jython" |
|
|
1258 | elif pypy_matched is not None: |
|
|
1259 | PYTHON_ABI = pypy_versions_mapping[pypy_matched.group(1)] + "-pypy-" + pypy_matched.group(1) |
| 1258 | else: |
1260 | else: |
| 1259 | PYTHON_ABI = None |
1261 | PYTHON_ABI = None |
| 1260 | return PYTHON_ABI |
1262 | return PYTHON_ABI |
| 1261 | |
1263 | |
|
|
1264 | def get_python_interpreter(PYTHON_ABI): |
|
|
1265 | cpython_matched = cpython_ABI_re.match(PYTHON_ABI) |
|
|
1266 | jython_matched = jython_ABI_re.match(PYTHON_ABI) |
|
|
1267 | pypy_matched = pypy_ABI_re.match(PYTHON_ABI) |
|
|
1268 | if cpython_matched is not None: |
|
|
1269 | python_interpreter = "python" + cpython_matched.group(1) |
|
|
1270 | elif jython_matched is not None: |
|
|
1271 | python_interpreter = "jython" + jython_matched.group(1) |
|
|
1272 | elif pypy_matched is not None: |
|
|
1273 | python_interpreter = "pypy-c" + pypy_matched.group(1) |
|
|
1274 | else: |
|
|
1275 | python_interpreter = None |
|
|
1276 | return python_interpreter |
|
|
1277 | |
| 1262 | EOF |
1278 | EOF |
| 1263 | if [[ "$?" != "0" ]]; then |
1279 | if [[ "$?" != "0" ]]; then |
| 1264 | die "${FUNCNAME}(): Generation of '$1' failed" |
1280 | die "${FUNCNAME}(): Generation of '$1' failed" |
| 1265 | fi |
1281 | fi |
| 1266 | if [[ "${respect_EPYTHON}" == "1" ]]; then |
1282 | if [[ "${respect_EPYTHON}" == "1" ]]; then |
| 1267 | cat << EOF >> "${file}" |
1283 | cat << EOF >> "${file}" |
| 1268 | EPYTHON = os.environ.get("EPYTHON") |
1284 | python_interpreter = os.environ.get("EPYTHON") |
| 1269 | if EPYTHON: |
1285 | if python_interpreter: |
| 1270 | PYTHON_ABI = get_PYTHON_ABI(EPYTHON) |
1286 | PYTHON_ABI = get_PYTHON_ABI(python_interpreter) |
| 1271 | if PYTHON_ABI is None: |
1287 | if PYTHON_ABI is None: |
| 1272 | sys.stderr.write("EPYTHON variable has unrecognized value '%s'\n" % EPYTHON) |
1288 | sys.stderr.write("%s: EPYTHON variable has unrecognized value '%s'\n" % (sys.argv[0], python_interpreter)) |
| 1273 | sys.exit(1) |
1289 | sys.exit(1) |
| 1274 | else: |
1290 | else: |
| 1275 | try: |
1291 | try: |
|
|
1292 | environment = os.environ.copy() |
|
|
1293 | 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) |
1294 | 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: |
1295 | if eselect_process.wait() != 0: |
| 1278 | raise ValueError |
1296 | raise ValueError |
| 1279 | except (OSError, ValueError): |
1297 | except (OSError, ValueError): |
| 1280 | sys.stderr.write("Execution of 'eselect python show${eselect_python_option:+ }${eselect_python_option}' failed\n") |
1298 | sys.stderr.write("%s: Execution of 'eselect python show${eselect_python_option:+ }${eselect_python_option}' failed\n" % sys.argv[0]) |
| 1281 | sys.exit(1) |
1299 | sys.exit(1) |
| 1282 | |
1300 | |
| 1283 | EPYTHON = eselect_process.stdout.read() |
1301 | python_interpreter = eselect_process.stdout.read() |
| 1284 | if not isinstance(EPYTHON, str): |
1302 | if not isinstance(python_interpreter, str): |
| 1285 | # Python 3 |
1303 | # Python 3 |
| 1286 | EPYTHON = EPYTHON.decode() |
1304 | python_interpreter = python_interpreter.decode() |
| 1287 | EPYTHON = EPYTHON.rstrip("\n") |
1305 | python_interpreter = python_interpreter.rstrip("\n") |
| 1288 | |
1306 | |
| 1289 | PYTHON_ABI = get_PYTHON_ABI(EPYTHON) |
1307 | PYTHON_ABI = get_PYTHON_ABI(python_interpreter) |
| 1290 | if PYTHON_ABI is None: |
1308 | if PYTHON_ABI is None: |
| 1291 | sys.stderr.write("'eselect python show${eselect_python_option:+ }${eselect_python_option}' printed unrecognized value '%s'\n" % EPYTHON) |
1309 | 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) |
1310 | sys.exit(1) |
| 1293 | |
1311 | |
| 1294 | wrapper_script_path = os.path.realpath(sys.argv[0]) |
1312 | wrapper_script_path = os.path.realpath(sys.argv[0]) |
| 1295 | target_executable_path = "%s-%s" % (wrapper_script_path, PYTHON_ABI) |
1313 | target_executable_path = "%s-%s" % (wrapper_script_path, PYTHON_ABI) |
| 1296 | if not os.path.exists(target_executable_path): |
1314 | if not os.path.exists(target_executable_path): |
| 1297 | sys.stderr.write("'%s' does not exist\n" % target_executable_path) |
1315 | sys.stderr.write("%s: '%s' does not exist\n" % (sys.argv[0], target_executable_path)) |
| 1298 | sys.exit(1) |
1316 | sys.exit(1) |
| 1299 | EOF |
1317 | EOF |
| 1300 | if [[ "$?" != "0" ]]; then |
1318 | if [[ "$?" != "0" ]]; then |
| 1301 | die "${FUNCNAME}(): Generation of '$1' failed" |
1319 | die "${FUNCNAME}(): Generation of '$1' failed" |
| 1302 | fi |
1320 | fi |
| 1303 | else |
1321 | else |
| 1304 | cat << EOF >> "${file}" |
1322 | cat << EOF >> "${file}" |
| 1305 | try: |
1323 | try: |
|
|
1324 | environment = os.environ.copy() |
|
|
1325 | 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) |
1326 | 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: |
1327 | if eselect_process.wait() != 0: |
| 1308 | raise ValueError |
1328 | raise ValueError |
| 1309 | except (OSError, ValueError): |
1329 | except (OSError, ValueError): |
| 1310 | sys.stderr.write("Execution of 'eselect python show${eselect_python_option:+ }${eselect_python_option}' failed\n") |
1330 | sys.stderr.write("%s: Execution of 'eselect python show${eselect_python_option:+ }${eselect_python_option}' failed\n" % sys.argv[0]) |
| 1311 | sys.exit(1) |
1331 | sys.exit(1) |
| 1312 | |
1332 | |
| 1313 | EPYTHON = eselect_process.stdout.read() |
1333 | python_interpreter = eselect_process.stdout.read() |
| 1314 | if not isinstance(EPYTHON, str): |
1334 | if not isinstance(python_interpreter, str): |
| 1315 | # Python 3 |
1335 | # Python 3 |
| 1316 | EPYTHON = EPYTHON.decode() |
1336 | python_interpreter = python_interpreter.decode() |
| 1317 | EPYTHON = EPYTHON.rstrip("\n") |
1337 | python_interpreter = python_interpreter.rstrip("\n") |
| 1318 | |
1338 | |
| 1319 | PYTHON_ABI = get_PYTHON_ABI(EPYTHON) |
1339 | PYTHON_ABI = get_PYTHON_ABI(python_interpreter) |
| 1320 | if PYTHON_ABI is None: |
1340 | if PYTHON_ABI is None: |
| 1321 | sys.stderr.write("'eselect python show${eselect_python_option:+ }${eselect_python_option}' printed unrecognized value '%s'\n" % EPYTHON) |
1341 | 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) |
1342 | sys.exit(1) |
| 1323 | |
1343 | |
| 1324 | wrapper_script_path = os.path.realpath(sys.argv[0]) |
1344 | wrapper_script_path = os.path.realpath(sys.argv[0]) |
| 1325 | for PYTHON_ABI in [PYTHON_ABI, ${PYTHON_ABIS_list}]: |
1345 | for PYTHON_ABI in [PYTHON_ABI, ${PYTHON_ABIS_list}]: |
| 1326 | target_executable_path = "%s-%s" % (wrapper_script_path, PYTHON_ABI) |
1346 | target_executable_path = "%s-%s" % (wrapper_script_path, PYTHON_ABI) |
| 1327 | if os.path.exists(target_executable_path): |
1347 | if os.path.exists(target_executable_path): |
| 1328 | break |
1348 | break |
| 1329 | else: |
1349 | else: |
| 1330 | sys.stderr.write("No target script exists for '%s'\n" % wrapper_script_path) |
1350 | sys.stderr.write("%s: No target script exists for '%s'\n" % (sys.argv[0], wrapper_script_path)) |
|
|
1351 | sys.exit(1) |
|
|
1352 | |
|
|
1353 | python_interpreter = get_python_interpreter(PYTHON_ABI) |
|
|
1354 | if python_interpreter is None: |
|
|
1355 | sys.stderr.write("%s: Unrecognized Python ABI '%s'\n" % (sys.argv[0], PYTHON_ABI)) |
| 1331 | sys.exit(1) |
1356 | sys.exit(1) |
| 1332 | EOF |
1357 | EOF |
| 1333 | if [[ "$?" != "0" ]]; then |
1358 | if [[ "$?" != "0" ]]; then |
| 1334 | die "${FUNCNAME}(): Generation of '$1' failed" |
1359 | die "${FUNCNAME}(): Generation of '$1' failed" |
| 1335 | fi |
1360 | fi |
| 1336 | fi |
1361 | fi |
| 1337 | cat << EOF >> "${file}" |
1362 | cat << EOF >> "${file}" |
| 1338 | |
1363 | |
| 1339 | target_executable = open(target_executable_path, "rb") |
1364 | target_executable = open(target_executable_path, "rb") |
| 1340 | target_executable_first_line = target_executable.readline() |
1365 | target_executable_first_line = target_executable.readline() |
|
|
1366 | target_executable.close() |
| 1341 | if not isinstance(target_executable_first_line, str): |
1367 | if not isinstance(target_executable_first_line, str): |
| 1342 | # Python 3 |
1368 | # Python 3 |
| 1343 | target_executable_first_line = target_executable_first_line.decode("utf_8", "replace") |
1369 | target_executable_first_line = target_executable_first_line.decode("utf_8", "replace") |
| 1344 | |
1370 | |
|
|
1371 | options = [] |
|
|
1372 | python_shebang_options_matched = python_shebang_options_re.match(target_executable_first_line) |
|
|
1373 | if python_shebang_options_matched is not None: |
|
|
1374 | options = [python_shebang_options_matched.group(1)] |
|
|
1375 | |
| 1345 | python_shebang_matched = python_shebang_re.match(target_executable_first_line) |
1376 | cpython_shebang_matched = cpython_shebang_re.match(target_executable_first_line) |
| 1346 | target_executable.close() |
|
|
| 1347 | |
1377 | |
| 1348 | if python_shebang_matched is not None: |
1378 | if cpython_shebang_matched is not None: |
| 1349 | try: |
1379 | try: |
| 1350 | python_interpreter_path = "${EPREFIX}/usr/bin/%s" % EPYTHON |
1380 | python_interpreter_path = "${EPREFIX}/usr/bin/%s" % python_interpreter |
| 1351 | os.environ["GENTOO_PYTHON_TARGET_SCRIPT_PATH_VERIFICATION"] = "1" |
1381 | os.environ["GENTOO_PYTHON_TARGET_SCRIPT_PATH_VERIFICATION"] = "1" |
| 1352 | python_verification_process = subprocess.Popen([python_interpreter_path, "-c", "pass"], stdout=subprocess.PIPE) |
1382 | python_verification_process = subprocess.Popen([python_interpreter_path, "-c", "pass"], stdout=subprocess.PIPE) |
| 1353 | del os.environ["GENTOO_PYTHON_TARGET_SCRIPT_PATH_VERIFICATION"] |
1383 | del os.environ["GENTOO_PYTHON_TARGET_SCRIPT_PATH_VERIFICATION"] |
| 1354 | if python_verification_process.wait() != 0: |
1384 | if python_verification_process.wait() != 0: |
| 1355 | raise ValueError |
1385 | raise ValueError |
| … | |
… | |
| 1360 | python_verification_output = python_verification_output.decode() |
1390 | python_verification_output = python_verification_output.decode() |
| 1361 | |
1391 | |
| 1362 | if not python_verification_output_re.match(python_verification_output): |
1392 | if not python_verification_output_re.match(python_verification_output): |
| 1363 | raise ValueError |
1393 | raise ValueError |
| 1364 | |
1394 | |
| 1365 | if cpython_re.match(EPYTHON) is not None: |
1395 | if cpython_interpreter_re.match(python_interpreter) is not None: |
| 1366 | os.environ["GENTOO_PYTHON_PROCESS_NAME"] = os.path.basename(sys.argv[0]) |
1396 | os.environ["GENTOO_PYTHON_PROCESS_NAME"] = os.path.basename(sys.argv[0]) |
| 1367 | os.environ["GENTOO_PYTHON_WRAPPER_SCRIPT_PATH"] = sys.argv[0] |
1397 | os.environ["GENTOO_PYTHON_WRAPPER_SCRIPT_PATH"] = sys.argv[0] |
| 1368 | os.environ["GENTOO_PYTHON_TARGET_SCRIPT_PATH"] = target_executable_path |
1398 | os.environ["GENTOO_PYTHON_TARGET_SCRIPT_PATH"] = target_executable_path |
| 1369 | |
1399 | |
| 1370 | if hasattr(os, "execv"): |
1400 | if hasattr(os, "execv"): |
| 1371 | os.execv(python_interpreter_path, [python_interpreter_path] + sys.argv) |
1401 | os.execv(python_interpreter_path, [python_interpreter_path] + options + sys.argv) |
| 1372 | else: |
1402 | else: |
| 1373 | sys.exit(subprocess.Popen([python_interpreter_path] + sys.argv).wait()) |
1403 | sys.exit(subprocess.Popen([python_interpreter_path] + options + sys.argv).wait()) |
| 1374 | except (KeyboardInterrupt, SystemExit): |
1404 | except (KeyboardInterrupt, SystemExit): |
| 1375 | raise |
1405 | raise |
| 1376 | except: |
1406 | except: |
| 1377 | pass |
1407 | 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"): |
1408 | 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 |
1450 | fi |
| 1421 | |
1451 | |
| 1422 | _python_check_python_pkg_setup_execution |
1452 | _python_check_python_pkg_setup_execution |
| 1423 | _python_initialize_prefix_variables |
1453 | _python_initialize_prefix_variables |
| 1424 | |
1454 | |
| 1425 | local b file files=() intermediate_installation_images_directory PYTHON_ABI quiet="0" regex shebang version_executable wrapper_scripts=() wrapper_scripts_set=() |
1455 | local absolute_file b file files=() intermediate_installation_images_directory PYTHON_ABI quiet="0" regex shebang version_executable wrapper_scripts=() wrapper_scripts_set=() |
| 1426 | |
1456 | |
| 1427 | while (($#)); do |
1457 | while (($#)); do |
| 1428 | case "$1" in |
1458 | case "$1" in |
| 1429 | -q|--quiet) |
1459 | -q|--quiet) |
| 1430 | quiet="1" |
1460 | quiet="1" |
| … | |
… | |
| 1512 | break |
1542 | break |
| 1513 | fi |
1543 | fi |
| 1514 | done |
1544 | done |
| 1515 | fi |
1545 | fi |
| 1516 | |
1546 | |
| 1517 | [[ "${version_executable}" == "0" || ! -x "${file}" ]] && continue |
1547 | [[ "${version_executable}" == "0" ]] && continue |
| 1518 | |
1548 | |
|
|
1549 | if [[ -L "${file}" ]]; then |
|
|
1550 | absolute_file="$(readlink "${file}")" |
|
|
1551 | if [[ "${absolute_file}" == /* ]]; then |
|
|
1552 | absolute_file="${intermediate_installation_images_directory}/${PYTHON_ABI}${EPREFIX}/${absolute_file##/}" |
|
|
1553 | else |
|
|
1554 | if [[ "${file}" == */* ]]; then |
|
|
1555 | absolute_file="${intermediate_installation_images_directory}/${PYTHON_ABI}${EPREFIX}/${file%/*}/${absolute_file}" |
|
|
1556 | else |
|
|
1557 | absolute_file="${intermediate_installation_images_directory}/${PYTHON_ABI}${EPREFIX}/${absolute_file}" |
|
|
1558 | fi |
|
|
1559 | fi |
|
|
1560 | else |
|
|
1561 | absolute_file="${intermediate_installation_images_directory}/${PYTHON_ABI}${EPREFIX}/${file}" |
|
|
1562 | fi |
|
|
1563 | |
|
|
1564 | [[ ! -x "${absolute_file}" ]] && continue |
|
|
1565 | |
| 1519 | shebang="$(head -n1 "${file}")" || die "Extraction of shebang from '${file}' failed" |
1566 | shebang="$(head -n1 "${absolute_file}")" || die "Extraction of shebang from '${absolute_file}' failed" |
| 1520 | |
1567 | |
| 1521 | if [[ "${version_executable}" == "2" ]]; then |
1568 | if [[ "${version_executable}" == "2" ]]; then |
| 1522 | wrapper_scripts+=("${ED}${file}") |
1569 | wrapper_scripts+=("${ED}${file}") |
| 1523 | elif [[ "${version_executable}" == "1" ]]; then |
1570 | elif [[ "${version_executable}" == "1" ]]; then |
| 1524 | if [[ "${shebang}" =~ ${_PYTHON_SHEBANG_BASE_PART_REGEX}([[:digit:]]+(\.[[:digit:]]+)?)?($|[[:space:]]+) ]]; then |
1571 | if [[ "${shebang}" =~ ${_PYTHON_SHEBANG_BASE_PART_REGEX}([[:digit:]]+(\.[[:digit:]]+)?)?($|[[:space:]]+) ]]; then |
| … | |
… | |
| 1535 | fi |
1582 | fi |
| 1536 | |
1583 | |
| 1537 | mv "${file}" "${file}-${PYTHON_ABI}" || die "Renaming of '${file}' failed" |
1584 | mv "${file}" "${file}-${PYTHON_ABI}" || die "Renaming of '${file}' failed" |
| 1538 | |
1585 | |
| 1539 | if [[ "${shebang}" =~ ${_PYTHON_SHEBANG_BASE_PART_REGEX}[[:digit:]]*($|[[:space:]]+) ]]; then |
1586 | if [[ "${shebang}" =~ ${_PYTHON_SHEBANG_BASE_PART_REGEX}[[:digit:]]*($|[[:space:]]+) ]]; then |
|
|
1587 | if [[ -L "${file}-${PYTHON_ABI}" ]]; then |
|
|
1588 | python_convert_shebangs $([[ "${quiet}" == "1" ]] && echo --quiet) "${PYTHON_ABI}" "${absolute_file}" |
|
|
1589 | else |
| 1540 | python_convert_shebangs $([[ "${quiet}" == "1" ]] && echo --quiet) "${PYTHON_ABI}" "${file}-${PYTHON_ABI}" |
1590 | python_convert_shebangs $([[ "${quiet}" == "1" ]] && echo --quiet) "${PYTHON_ABI}" "${file}-${PYTHON_ABI}" |
|
|
1591 | fi |
| 1541 | fi |
1592 | fi |
| 1542 | done |
1593 | done |
| 1543 | |
1594 | |
| 1544 | popd > /dev/null || die "popd failed" |
1595 | popd > /dev/null || die "popd failed" |
| 1545 | |
1596 | |
| 1546 | if ROOT="/" has_version sys-apps/coreutils; then |
1597 | if 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" |
1598 | 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" |
| 1548 | else |
1599 | 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" |
1600 | 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 |
1601 | fi |
| 1551 | done |
1602 | done |
| 1552 | |
1603 | |
| … | |
… | |
| 1570 | stdout = sys.stdout.buffer |
1621 | stdout = sys.stdout.buffer |
| 1571 | else: |
1622 | else: |
| 1572 | # Python 2 |
1623 | # Python 2 |
| 1573 | stdout = sys.stdout |
1624 | stdout = sys.stdout |
| 1574 | |
1625 | |
|
|
1626 | 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')) |
1627 | files = set(python_wrapper_scripts_file.read().rstrip(${b}'\x00').split(${b}'\x00')) |
|
|
1628 | python_wrapper_scripts_file.close() |
| 1576 | |
1629 | |
| 1577 | for file in sorted(files): |
1630 | for file in sorted(files): |
| 1578 | stdout.write(file) |
1631 | stdout.write(file) |
| 1579 | stdout.write(${b}'\x00')" || die "${FUNCNAME}(): Failure of extraction of set of wrapper scripts") |
1632 | stdout.write(${b}'\x00')" || die "${FUNCNAME}(): Failure of extraction of set of wrapper scripts") |
| 1580 | |
1633 | |
| … | |
… | |
| 1645 | # python-updater checks PYTHON_REQUESTED_ACTIVE_VERSION variable. |
1698 | # python-updater checks PYTHON_REQUESTED_ACTIVE_VERSION variable. |
| 1646 | PYTHON_REQUESTED_ACTIVE_VERSION="$1" |
1699 | PYTHON_REQUESTED_ACTIVE_VERSION="$1" |
| 1647 | } |
1700 | } |
| 1648 | |
1701 | |
| 1649 | # @FUNCTION: python_need_rebuild |
1702 | # @FUNCTION: python_need_rebuild |
|
|
1703 | # @DESCRIPTION: |
| 1650 | # @DESCRIPTION: Mark current package for rebuilding by python-updater after |
1704 | # Mark current package for rebuilding by python-updater after |
| 1651 | # switching of active version of Python. |
1705 | # switching of active version of Python. |
| 1652 | python_need_rebuild() { |
1706 | python_need_rebuild() { |
| 1653 | if _python_package_supporting_installation_for_multiple_python_abis; then |
1707 | 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" |
1708 | die "${FUNCNAME}() cannot be used in ebuilds of packages supporting installation for multiple Python ABIs" |
| 1655 | fi |
1709 | fi |
| … | |
… | |
| 1665 | |
1719 | |
| 1666 | # ================================================================================================ |
1720 | # ================================================================================================ |
| 1667 | # ======================================= GETTER FUNCTIONS ======================================= |
1721 | # ======================================= GETTER FUNCTIONS ======================================= |
| 1668 | # ================================================================================================ |
1722 | # ================================================================================================ |
| 1669 | |
1723 | |
| 1670 | _PYTHON_ABI_EXTRACTION_COMMAND='import platform |
1724 | _PYTHON_ABI_EXTRACTION_COMMAND=\ |
|
|
1725 | 'import platform |
| 1671 | import sys |
1726 | import sys |
| 1672 | sys.stdout.write(".".join(str(x) for x in sys.version_info[:2])) |
1727 | sys.stdout.write(".".join(str(x) for x in sys.version_info[:2])) |
| 1673 | if platform.system()[:4] == "Java": |
1728 | if platform.system()[:4] == "Java": |
| 1674 | sys.stdout.write("-jython")' |
1729 | sys.stdout.write("-jython") |
|
|
1730 | elif hasattr(platform, "python_implementation") and platform.python_implementation() == "PyPy": |
|
|
1731 | sys.stdout.write("-pypy-" + ".".join(str(x) for x in sys.pypy_version_info[:2]))' |
| 1675 | |
1732 | |
| 1676 | _python_get_implementation() { |
1733 | _python_get_implementation() { |
| 1677 | local ignore_invalid="0" |
1734 | local ignore_invalid="0" |
| 1678 | |
1735 | |
| 1679 | while (($#)); do |
1736 | while (($#)); do |
| … | |
… | |
| 1701 | |
1758 | |
| 1702 | if [[ "$1" =~ ^[[:digit:]]+\.[[:digit:]]+$ ]]; then |
1759 | if [[ "$1" =~ ^[[:digit:]]+\.[[:digit:]]+$ ]]; then |
| 1703 | echo "CPython" |
1760 | echo "CPython" |
| 1704 | elif [[ "$1" =~ ^[[:digit:]]+\.[[:digit:]]+-jython$ ]]; then |
1761 | elif [[ "$1" =~ ^[[:digit:]]+\.[[:digit:]]+-jython$ ]]; then |
| 1705 | echo "Jython" |
1762 | echo "Jython" |
|
|
1763 | elif [[ "$1" =~ ^[[:digit:]]+\.[[:digit:]]+-pypy-[[:digit:]]+\.[[:digit:]]+$ ]]; then |
|
|
1764 | echo "PyPy" |
| 1706 | else |
1765 | else |
| 1707 | if [[ "${ignore_invalid}" == "0" ]]; then |
1766 | if [[ "${ignore_invalid}" == "0" ]]; then |
| 1708 | die "${FUNCNAME}(): Unrecognized Python ABI '$1'" |
1767 | die "${FUNCNAME}(): Unrecognized Python ABI '$1'" |
| 1709 | fi |
1768 | fi |
| 1710 | fi |
1769 | fi |
| … | |
… | |
| 1773 | die "${FUNCNAME}(): '--final-ABI' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
1832 | die "${FUNCNAME}(): '--final-ABI' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
| 1774 | fi |
1833 | fi |
| 1775 | _python_calculate_PYTHON_ABIS |
1834 | _python_calculate_PYTHON_ABIS |
| 1776 | PYTHON_ABI="${PYTHON_ABIS##* }" |
1835 | PYTHON_ABI="${PYTHON_ABIS##* }" |
| 1777 | elif [[ "${python2}" == "1" ]]; then |
1836 | elif [[ "${python2}" == "1" ]]; then |
| 1778 | PYTHON_ABI="$(eselect python show --python2 --ABI)" |
1837 | PYTHON_ABI="$(ROOT="/" eselect python show --python2 --ABI)" |
| 1779 | if [[ -z "${PYTHON_ABI}" ]]; then |
1838 | if [[ -z "${PYTHON_ABI}" ]]; then |
| 1780 | die "${FUNCNAME}(): Active version of CPython 2 not set" |
1839 | die "${FUNCNAME}(): Active version of CPython 2 not set" |
| 1781 | elif [[ "${PYTHON_ABI}" != "2."* ]]; then |
1840 | elif [[ "${PYTHON_ABI}" != "2."* ]]; then |
| 1782 | die "${FUNCNAME}(): Internal error in \`eselect python show --python2\`" |
1841 | die "${FUNCNAME}(): Internal error in \`eselect python show --python2\`" |
| 1783 | fi |
1842 | fi |
| 1784 | elif [[ "${python3}" == "1" ]]; then |
1843 | elif [[ "${python3}" == "1" ]]; then |
| 1785 | PYTHON_ABI="$(eselect python show --python3 --ABI)" |
1844 | PYTHON_ABI="$(ROOT="/" eselect python show --python3 --ABI)" |
| 1786 | if [[ -z "${PYTHON_ABI}" ]]; then |
1845 | if [[ -z "${PYTHON_ABI}" ]]; then |
| 1787 | die "${FUNCNAME}(): Active version of CPython 3 not set" |
1846 | die "${FUNCNAME}(): Active version of CPython 3 not set" |
| 1788 | elif [[ "${PYTHON_ABI}" != "3."* ]]; then |
1847 | elif [[ "${PYTHON_ABI}" != "3."* ]]; then |
| 1789 | die "${FUNCNAME}(): Internal error in \`eselect python show --python3\`" |
1848 | die "${FUNCNAME}(): Internal error in \`eselect python show --python3\`" |
| 1790 | fi |
1849 | fi |
| … | |
… | |
| 1819 | else |
1878 | else |
| 1820 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
1879 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
| 1821 | python_interpreter="python${PYTHON_ABI}" |
1880 | python_interpreter="python${PYTHON_ABI}" |
| 1822 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
1881 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
| 1823 | python_interpreter="jython${PYTHON_ABI%-jython}" |
1882 | python_interpreter="jython${PYTHON_ABI%-jython}" |
|
|
1883 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "PyPy" ]]; then |
|
|
1884 | python_interpreter="pypy-c${PYTHON_ABI#*-pypy-}" |
| 1824 | fi |
1885 | fi |
| 1825 | |
1886 | |
| 1826 | if [[ "${absolute_path_output}" == "1" ]]; then |
1887 | if [[ "${absolute_path_output}" == "1" ]]; then |
| 1827 | echo -n "${EPREFIX}/usr/bin/${python_interpreter}" |
1888 | echo -n "${EPREFIX}/usr/bin/${python_interpreter}" |
| 1828 | else |
1889 | else |
| … | |
… | |
| 1921 | if [[ "${EAPI:-0}" == "0" ]]; then |
1982 | if [[ "${EAPI:-0}" == "0" ]]; then |
| 1922 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
1983 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
| 1923 | echo "=dev-lang/python-${PYTHON_ABI}*" |
1984 | echo "=dev-lang/python-${PYTHON_ABI}*" |
| 1924 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
1985 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
| 1925 | echo "=dev-java/jython-${PYTHON_ABI%-jython}*" |
1986 | echo "=dev-java/jython-${PYTHON_ABI%-jython}*" |
|
|
1987 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "PyPy" ]]; then |
|
|
1988 | echo "=dev-python/pypy-${PYTHON_ABI#*-pypy-}*" |
| 1926 | fi |
1989 | fi |
| 1927 | else |
1990 | else |
| 1928 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
1991 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
| 1929 | echo "dev-lang/python:${PYTHON_ABI}" |
1992 | echo "dev-lang/python:${PYTHON_ABI}" |
| 1930 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
1993 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
| 1931 | echo "dev-java/jython:${PYTHON_ABI%-jython}" |
1994 | echo "dev-java/jython:${PYTHON_ABI%-jython}" |
|
|
1995 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "PyPy" ]]; then |
|
|
1996 | echo "dev-python/pypy:${PYTHON_ABI#*-pypy-}" |
| 1932 | fi |
1997 | fi |
| 1933 | fi |
1998 | fi |
| 1934 | } |
1999 | } |
| 1935 | |
2000 | |
| 1936 | # @FUNCTION: python_get_includedir |
2001 | # @FUNCTION: python_get_includedir |
| … | |
… | |
| 1983 | |
2048 | |
| 1984 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
2049 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
| 1985 | echo "${prefix}usr/include/python${PYTHON_ABI}" |
2050 | echo "${prefix}usr/include/python${PYTHON_ABI}" |
| 1986 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
2051 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
| 1987 | echo "${prefix}usr/share/jython-${PYTHON_ABI%-jython}/Include" |
2052 | echo "${prefix}usr/share/jython-${PYTHON_ABI%-jython}/Include" |
|
|
2053 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "PyPy" ]]; then |
|
|
2054 | echo "${prefix}usr/$(get_libdir)/pypy${PYTHON_ABI#*-pypy-}/include" |
| 1988 | fi |
2055 | fi |
| 1989 | } |
2056 | } |
| 1990 | |
2057 | |
| 1991 | # @FUNCTION: python_get_libdir |
2058 | # @FUNCTION: python_get_libdir |
| 1992 | # @USAGE: [-b|--base-path] [-f|--final-ABI] |
2059 | # @USAGE: [-b|--base-path] [-f|--final-ABI] |
| 1993 | # @DESCRIPTION: |
2060 | # @DESCRIPTION: |
| 1994 | # Print path to Python library directory. |
2061 | # Print path to Python standard library directory. |
| 1995 | # If --base-path option is specified, then path not prefixed with "/" is printed. |
2062 | # 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. |
2063 | # If --final-ABI option is specified, then final ABI from the list of enabled ABIs is used. |
| 1997 | python_get_libdir() { |
2064 | python_get_libdir() { |
| 1998 | _python_check_python_pkg_setup_execution |
2065 | _python_check_python_pkg_setup_execution |
| 1999 | |
2066 | |
| … | |
… | |
| 2038 | |
2105 | |
| 2039 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
2106 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
| 2040 | echo "${prefix}usr/$(get_libdir)/python${PYTHON_ABI}" |
2107 | echo "${prefix}usr/$(get_libdir)/python${PYTHON_ABI}" |
| 2041 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
2108 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
| 2042 | echo "${prefix}usr/share/jython-${PYTHON_ABI%-jython}/Lib" |
2109 | echo "${prefix}usr/share/jython-${PYTHON_ABI%-jython}/Lib" |
|
|
2110 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "PyPy" ]]; then |
|
|
2111 | die "${FUNCNAME}(): PyPy has multiple standard library directories" |
| 2043 | fi |
2112 | fi |
| 2044 | } |
2113 | } |
| 2045 | |
2114 | |
| 2046 | # @FUNCTION: python_get_sitedir |
2115 | # @FUNCTION: python_get_sitedir |
| 2047 | # @USAGE: [-b|--base-path] [-f|--final-ABI] |
2116 | # @USAGE: [-b|--base-path] [-f|--final-ABI] |
| … | |
… | |
| 2050 | # If --base-path option is specified, then path not prefixed with "/" is printed. |
2119 | # 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. |
2120 | # If --final-ABI option is specified, then final ABI from the list of enabled ABIs is used. |
| 2052 | python_get_sitedir() { |
2121 | python_get_sitedir() { |
| 2053 | _python_check_python_pkg_setup_execution |
2122 | _python_check_python_pkg_setup_execution |
| 2054 | |
2123 | |
| 2055 | local final_ABI="0" options=() |
2124 | local base_path="0" final_ABI="0" prefix PYTHON_ABI="${PYTHON_ABI}" |
| 2056 | |
2125 | |
| 2057 | while (($#)); do |
2126 | while (($#)); do |
| 2058 | case "$1" in |
2127 | case "$1" in |
| 2059 | -b|--base-path) |
2128 | -b|--base-path) |
| 2060 | options+=("$1") |
2129 | base_path="1" |
| 2061 | ;; |
2130 | ;; |
| 2062 | -f|--final-ABI) |
2131 | -f|--final-ABI) |
| 2063 | final_ABI="1" |
2132 | final_ABI="1" |
| 2064 | options+=("$1") |
|
|
| 2065 | ;; |
2133 | ;; |
| 2066 | -*) |
2134 | -*) |
| 2067 | die "${FUNCNAME}(): Unrecognized option '$1'" |
2135 | die "${FUNCNAME}(): Unrecognized option '$1'" |
| 2068 | ;; |
2136 | ;; |
| 2069 | *) |
2137 | *) |
| … | |
… | |
| 2071 | ;; |
2139 | ;; |
| 2072 | esac |
2140 | esac |
| 2073 | shift |
2141 | shift |
| 2074 | done |
2142 | done |
| 2075 | |
2143 | |
|
|
2144 | if [[ "${base_path}" == "0" ]]; then |
|
|
2145 | prefix="/" |
|
|
2146 | fi |
|
|
2147 | |
| 2076 | if [[ "${final_ABI}" == "1" ]]; then |
2148 | if [[ "${final_ABI}" == "1" ]]; then |
| 2077 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
2149 | 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" |
2150 | die "${FUNCNAME}(): '--final-ABI' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
| 2079 | fi |
2151 | fi |
|
|
2152 | PYTHON_ABI="$(PYTHON -f --ABI)" |
| 2080 | else |
2153 | else |
| 2081 | if _python_package_supporting_installation_for_multiple_python_abis && ! _python_abi-specific_local_scope; then |
2154 | if _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
2155 | if ! _python_abi-specific_local_scope; then |
| 2082 | die "${FUNCNAME}() should be used in ABI-specific local scope" |
2156 | die "${FUNCNAME}() should be used in ABI-specific local scope" |
| 2083 | fi |
2157 | fi |
|
|
2158 | else |
|
|
2159 | PYTHON_ABI="${PYTHON_ABI:-$(PYTHON --ABI)}" |
| 2084 | fi |
2160 | fi |
|
|
2161 | fi |
| 2085 | |
2162 | |
| 2086 | echo "$(python_get_libdir "${options[@]}")/site-packages" |
2163 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
|
|
2164 | echo "${prefix}usr/$(get_libdir)/python${PYTHON_ABI}/site-packages" |
|
|
2165 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
|
|
2166 | echo "${prefix}usr/share/jython-${PYTHON_ABI%-jython}/Lib/site-packages" |
|
|
2167 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "PyPy" ]]; then |
|
|
2168 | echo "${prefix}usr/$(get_libdir)/pypy${PYTHON_ABI#*-pypy-}/site-packages" |
|
|
2169 | fi |
| 2087 | } |
2170 | } |
| 2088 | |
2171 | |
| 2089 | # @FUNCTION: python_get_library |
2172 | # @FUNCTION: python_get_library |
| 2090 | # @USAGE: [-b|--base-path] [-f|--final-ABI] [-l|--linker-option] |
2173 | # @USAGE: [-b|--base-path] [-f|--final-ABI] [-l|--linker-option] |
| 2091 | # @DESCRIPTION: |
2174 | # @DESCRIPTION: |
| … | |
… | |
| 2148 | else |
2231 | else |
| 2149 | echo "${prefix}usr/$(get_libdir)/libpython${PYTHON_ABI}$(get_libname)" |
2232 | echo "${prefix}usr/$(get_libdir)/libpython${PYTHON_ABI}$(get_libname)" |
| 2150 | fi |
2233 | fi |
| 2151 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
2234 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
| 2152 | die "${FUNCNAME}(): Jython does not have shared library" |
2235 | die "${FUNCNAME}(): Jython does not have shared library" |
|
|
2236 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "PyPy" ]]; then |
|
|
2237 | die "${FUNCNAME}(): PyPy does not have shared library" |
| 2153 | fi |
2238 | fi |
| 2154 | } |
2239 | } |
| 2155 | |
2240 | |
| 2156 | # @FUNCTION: python_get_version |
2241 | # @FUNCTION: python_get_version |
| 2157 | # @USAGE: [-f|--final-ABI] [--full] [--major] [--minor] [--micro] |
2242 | # @USAGE: [-f|--final-ABI] [-l|--language] [--full] [--major] [--minor] [--micro] |
| 2158 | # @DESCRIPTION: |
2243 | # @DESCRIPTION: |
| 2159 | # Print Python version. |
2244 | # Print version of Python implementation. |
| 2160 | # --full, --major, --minor and --micro options cannot be specified simultaneously. |
2245 | # --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. |
2246 | # If --full, --major, --minor and --micro options are not specified, then "${major_version}.${minor_version}" is printed. |
|
|
2247 | # If --language option is specified, then version of Python language is printed. |
|
|
2248 | # --language and --full options cannot be specified simultaneously. |
|
|
2249 | # --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. |
2250 | # If --final-ABI option is specified, then final ABI from the list of enabled ABIs is used. |
| 2163 | python_get_version() { |
2251 | python_get_version() { |
| 2164 | _python_check_python_pkg_setup_execution |
2252 | _python_check_python_pkg_setup_execution |
| 2165 | |
2253 | |
| 2166 | local final_ABI="0" full="0" major="0" minor="0" micro="0" python_command |
2254 | local final_ABI="0" language="0" language_version full="0" major="0" minor="0" micro="0" PYTHON_ABI="${PYTHON_ABI}" python_command |
| 2167 | |
2255 | |
| 2168 | while (($#)); do |
2256 | while (($#)); do |
| 2169 | case "$1" in |
2257 | case "$1" in |
| 2170 | -f|--final-ABI) |
2258 | -f|--final-ABI) |
| 2171 | final_ABI="1" |
2259 | final_ABI="1" |
| 2172 | ;; |
2260 | ;; |
|
|
2261 | -l|--language) |
|
|
2262 | language="1" |
|
|
2263 | ;; |
| 2173 | --full) |
2264 | --full) |
| 2174 | full="1" |
2265 | full="1" |
| 2175 | ;; |
2266 | ;; |
| 2176 | --major) |
2267 | --major) |
| 2177 | major="1" |
2268 | major="1" |
| … | |
… | |
| 2190 | ;; |
2281 | ;; |
| 2191 | esac |
2282 | esac |
| 2192 | shift |
2283 | shift |
| 2193 | done |
2284 | done |
| 2194 | |
2285 | |
| 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 | |
|
|
| 2219 | if [[ "${final_ABI}" == "1" ]]; then |
2286 | if [[ "${final_ABI}" == "1" ]]; then |
| 2220 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
2287 | 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" |
2288 | die "${FUNCNAME}(): '--final-ABI' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
| 2222 | fi |
2289 | fi |
| 2223 | "$(PYTHON -f)" -c "${python_command}" |
|
|
| 2224 | else |
2290 | else |
| 2225 | if _python_package_supporting_installation_for_multiple_python_abis && ! _python_abi-specific_local_scope; then |
2291 | 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" |
2292 | die "${FUNCNAME}() should be used in ABI-specific local scope" |
| 2227 | fi |
2293 | fi |
|
|
2294 | fi |
|
|
2295 | |
|
|
2296 | if [[ "$((${full} + ${major} + ${minor} + ${micro}))" -gt 1 ]]; then |
|
|
2297 | die "${FUNCNAME}(): '--full', '--major', '--minor' or '--micro' options cannot be specified simultaneously" |
|
|
2298 | fi |
|
|
2299 | |
|
|
2300 | if [[ "${language}" == "1" ]]; then |
|
|
2301 | if [[ "${final_ABI}" == "1" ]]; then |
|
|
2302 | PYTHON_ABI="$(PYTHON -f --ABI)" |
|
|
2303 | elif [[ -z "${PYTHON_ABI}" ]]; then |
|
|
2304 | PYTHON_ABI="$(PYTHON --ABI)" |
|
|
2305 | fi |
|
|
2306 | language_version="${PYTHON_ABI%%-*}" |
|
|
2307 | if [[ "${full}" == "1" ]]; then |
|
|
2308 | die "${FUNCNAME}(): '--language' and '--full' options cannot be specified simultaneously" |
|
|
2309 | elif [[ "${major}" == "1" ]]; then |
|
|
2310 | echo "${language_version%.*}" |
|
|
2311 | elif [[ "${minor}" == "1" ]]; then |
|
|
2312 | echo "${language_version#*.}" |
|
|
2313 | elif [[ "${micro}" == "1" ]]; then |
|
|
2314 | die "${FUNCNAME}(): '--language' and '--micro' options cannot be specified simultaneously" |
|
|
2315 | else |
|
|
2316 | echo "${language_version}" |
|
|
2317 | fi |
|
|
2318 | else |
|
|
2319 | if [[ "${full}" == "1" ]]; then |
|
|
2320 | python_command="import sys; print('.'.join(str(x) for x in getattr(sys, 'pypy_version_info', sys.version_info)[:3]))" |
|
|
2321 | elif [[ "${major}" == "1" ]]; then |
|
|
2322 | python_command="import sys; print(getattr(sys, 'pypy_version_info', sys.version_info)[0])" |
|
|
2323 | elif [[ "${minor}" == "1" ]]; then |
|
|
2324 | python_command="import sys; print(getattr(sys, 'pypy_version_info', sys.version_info)[1])" |
|
|
2325 | elif [[ "${micro}" == "1" ]]; then |
|
|
2326 | python_command="import sys; print(getattr(sys, 'pypy_version_info', sys.version_info)[2])" |
|
|
2327 | else |
|
|
2328 | if [[ -n "${PYTHON_ABI}" && "${final_ABI}" == "0" ]]; then |
|
|
2329 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
|
|
2330 | echo "${PYTHON_ABI}" |
|
|
2331 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
|
|
2332 | echo "${PYTHON_ABI%-jython}" |
|
|
2333 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "PyPy" ]]; then |
|
|
2334 | echo "${PYTHON_ABI#*-pypy-}" |
|
|
2335 | fi |
|
|
2336 | return |
|
|
2337 | fi |
|
|
2338 | python_command="from sys import version_info; print('.'.join(str(x) for x in version_info[:2]))" |
|
|
2339 | fi |
|
|
2340 | |
|
|
2341 | if [[ "${final_ABI}" == "1" ]]; then |
|
|
2342 | "$(PYTHON -f)" -c "${python_command}" |
|
|
2343 | else |
| 2228 | "$(PYTHON ${PYTHON_ABI})" -c "${python_command}" |
2344 | "$(PYTHON ${PYTHON_ABI})" -c "${python_command}" |
|
|
2345 | fi |
|
|
2346 | fi |
|
|
2347 | } |
|
|
2348 | |
|
|
2349 | # @FUNCTION: python_get_implementation_and_version |
|
|
2350 | # @USAGE: [-f|--final-ABI] |
|
|
2351 | # @DESCRIPTION: |
|
|
2352 | # Print name and version of Python implementation. |
|
|
2353 | # If version of Python implementation is not bound to version of Python language, then |
|
|
2354 | # version of Python language is additionally printed. |
|
|
2355 | # If --final-ABI option is specified, then final ABI from the list of enabled ABIs is used. |
|
|
2356 | python_get_implementation_and_version() { |
|
|
2357 | _python_check_python_pkg_setup_execution |
|
|
2358 | |
|
|
2359 | local final_ABI="0" PYTHON_ABI="${PYTHON_ABI}" |
|
|
2360 | |
|
|
2361 | while (($#)); do |
|
|
2362 | case "$1" in |
|
|
2363 | -f|--final-ABI) |
|
|
2364 | final_ABI="1" |
|
|
2365 | ;; |
|
|
2366 | -*) |
|
|
2367 | die "${FUNCNAME}(): Unrecognized option '$1'" |
|
|
2368 | ;; |
|
|
2369 | *) |
|
|
2370 | die "${FUNCNAME}(): Invalid usage" |
|
|
2371 | ;; |
|
|
2372 | esac |
|
|
2373 | shift |
|
|
2374 | done |
|
|
2375 | |
|
|
2376 | if [[ "${final_ABI}" == "1" ]]; then |
|
|
2377 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
2378 | die "${FUNCNAME}(): '--final-ABI' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
|
|
2379 | fi |
|
|
2380 | PYTHON_ABI="$(PYTHON -f --ABI)" |
|
|
2381 | else |
|
|
2382 | if _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
2383 | if ! _python_abi-specific_local_scope; then |
|
|
2384 | die "${FUNCNAME}() should be used in ABI-specific local scope" |
|
|
2385 | fi |
|
|
2386 | else |
|
|
2387 | PYTHON_ABI="${PYTHON_ABI:-$(PYTHON --ABI)}" |
|
|
2388 | fi |
|
|
2389 | fi |
|
|
2390 | |
|
|
2391 | if [[ "${PYTHON_ABI}" =~ ^[[:digit:]]+\.[[:digit:]]+-[[:alnum:]]+-[[:digit:]]+\.[[:digit:]]+$ ]]; then |
|
|
2392 | echo "$(_python_get_implementation "${PYTHON_ABI}") ${PYTHON_ABI##*-} (Python ${PYTHON_ABI%%-*})" |
|
|
2393 | else |
|
|
2394 | echo "$(_python_get_implementation "${PYTHON_ABI}") ${PYTHON_ABI%%-*}" |
| 2229 | fi |
2395 | fi |
| 2230 | } |
2396 | } |
| 2231 | |
2397 | |
| 2232 | # ================================================================================================ |
2398 | # ================================================================================================ |
| 2233 | # ================================ FUNCTIONS FOR RUNNING OF TESTS ================================ |
2399 | # ================================ FUNCTIONS FOR RUNNING OF TESTS ================================ |
| … | |
… | |
| 2242 | _python_test_hook() { |
2408 | _python_test_hook() { |
| 2243 | if [[ "$#" -ne 1 ]]; then |
2409 | if [[ "$#" -ne 1 ]]; then |
| 2244 | die "${FUNCNAME}() requires 1 argument" |
2410 | die "${FUNCNAME}() requires 1 argument" |
| 2245 | fi |
2411 | fi |
| 2246 | |
2412 | |
| 2247 | if _python_package_supporting_installation_for_multiple_python_abis && [[ "$(type -t "${FUNCNAME[3]}_$1_hook")" == "function" ]]; then |
2413 | if _python_package_supporting_installation_for_multiple_python_abis && [[ "$(type -t "${_PYTHON_TEST_FUNCTION}_$1_hook")" == "function" ]]; then |
| 2248 | "${FUNCNAME[3]}_$1_hook" |
2414 | "${_PYTHON_TEST_FUNCTION}_$1_hook" |
| 2249 | fi |
2415 | fi |
| 2250 | } |
2416 | } |
| 2251 | |
2417 | |
| 2252 | # @FUNCTION: python_execute_nosetests |
2418 | # @FUNCTION: python_execute_nosetests |
| 2253 | # @USAGE: [-P|--PYTHONPATH PYTHONPATH] [-s|--separate-build-dirs] [--] [arguments] |
2419 | # @USAGE: [-P|--PYTHONPATH PYTHONPATH] [-s|--separate-build-dirs] [--] [arguments] |
| … | |
… | |
| 2287 | python_test_function() { |
2453 | python_test_function() { |
| 2288 | local evaluated_PYTHONPATH |
2454 | local evaluated_PYTHONPATH |
| 2289 | |
2455 | |
| 2290 | eval "evaluated_PYTHONPATH=\"${PYTHONPATH_template}\"" |
2456 | eval "evaluated_PYTHONPATH=\"${PYTHONPATH_template}\"" |
| 2291 | |
2457 | |
| 2292 | _python_test_hook pre |
2458 | _PYTHON_TEST_FUNCTION="python_execute_nosetests" _python_test_hook pre |
| 2293 | |
2459 | |
| 2294 | if [[ -n "${evaluated_PYTHONPATH}" ]]; then |
2460 | if [[ -n "${evaluated_PYTHONPATH}" ]]; then |
| 2295 | echo ${_BOLD}PYTHONPATH="${evaluated_PYTHONPATH}" nosetests --verbosity="${PYTHON_TEST_VERBOSITY}" "$@"${_NORMAL} |
2461 | echo ${_BOLD}PYTHONPATH="${evaluated_PYTHONPATH}" nosetests --verbosity="${PYTHON_TEST_VERBOSITY}" "$@"${_NORMAL} |
| 2296 | PYTHONPATH="${evaluated_PYTHONPATH}" nosetests --verbosity="${PYTHON_TEST_VERBOSITY}" "$@" || return "$?" |
2462 | PYTHONPATH="${evaluated_PYTHONPATH}" nosetests --verbosity="${PYTHON_TEST_VERBOSITY}" "$@" || return "$?" |
| 2297 | else |
2463 | else |
| 2298 | echo ${_BOLD}nosetests --verbosity="${PYTHON_TEST_VERBOSITY}" "$@"${_NORMAL} |
2464 | echo ${_BOLD}nosetests --verbosity="${PYTHON_TEST_VERBOSITY}" "$@"${_NORMAL} |
| 2299 | nosetests --verbosity="${PYTHON_TEST_VERBOSITY}" "$@" || return "$?" |
2465 | nosetests --verbosity="${PYTHON_TEST_VERBOSITY}" "$@" || return "$?" |
| 2300 | fi |
2466 | fi |
| 2301 | |
2467 | |
| 2302 | _python_test_hook post |
2468 | _PYTHON_TEST_FUNCTION="python_execute_nosetests" _python_test_hook post |
| 2303 | } |
2469 | } |
| 2304 | if _python_package_supporting_installation_for_multiple_python_abis; then |
2470 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| 2305 | python_execute_function ${separate_build_dirs:+-s} python_test_function "$@" |
2471 | python_execute_function ${separate_build_dirs:+-s} python_test_function "$@" |
| 2306 | else |
2472 | else |
| 2307 | if [[ -n "${separate_build_dirs}" ]]; then |
2473 | if [[ -n "${separate_build_dirs}" ]]; then |
| … | |
… | |
| 2351 | python_test_function() { |
2517 | python_test_function() { |
| 2352 | local evaluated_PYTHONPATH |
2518 | local evaluated_PYTHONPATH |
| 2353 | |
2519 | |
| 2354 | eval "evaluated_PYTHONPATH=\"${PYTHONPATH_template}\"" |
2520 | eval "evaluated_PYTHONPATH=\"${PYTHONPATH_template}\"" |
| 2355 | |
2521 | |
| 2356 | _python_test_hook pre |
2522 | _PYTHON_TEST_FUNCTION="python_execute_py.test" _python_test_hook pre |
| 2357 | |
2523 | |
| 2358 | if [[ -n "${evaluated_PYTHONPATH}" ]]; then |
2524 | if [[ -n "${evaluated_PYTHONPATH}" ]]; then |
| 2359 | echo ${_BOLD}PYTHONPATH="${evaluated_PYTHONPATH}" py.test $([[ "${PYTHON_TEST_VERBOSITY}" -ge 2 ]] && echo -v) "$@"${_NORMAL} |
2525 | 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 "$?" |
2526 | PYTHONPATH="${evaluated_PYTHONPATH}" py.test $([[ "${PYTHON_TEST_VERBOSITY}" -ge 2 ]] && echo -v) "$@" || return "$?" |
| 2361 | else |
2527 | else |
| 2362 | echo ${_BOLD}py.test $([[ "${PYTHON_TEST_VERBOSITY}" -gt 1 ]] && echo -v) "$@"${_NORMAL} |
2528 | echo ${_BOLD}py.test $([[ "${PYTHON_TEST_VERBOSITY}" -gt 1 ]] && echo -v) "$@"${_NORMAL} |
| 2363 | py.test $([[ "${PYTHON_TEST_VERBOSITY}" -gt 1 ]] && echo -v) "$@" || return "$?" |
2529 | py.test $([[ "${PYTHON_TEST_VERBOSITY}" -gt 1 ]] && echo -v) "$@" || return "$?" |
| 2364 | fi |
2530 | fi |
| 2365 | |
2531 | |
| 2366 | _python_test_hook post |
2532 | _PYTHON_TEST_FUNCTION="python_execute_py.test" _python_test_hook post |
| 2367 | } |
2533 | } |
| 2368 | if _python_package_supporting_installation_for_multiple_python_abis; then |
2534 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| 2369 | python_execute_function ${separate_build_dirs:+-s} python_test_function "$@" |
2535 | python_execute_function ${separate_build_dirs:+-s} python_test_function "$@" |
| 2370 | else |
2536 | else |
| 2371 | if [[ -n "${separate_build_dirs}" ]]; then |
2537 | if [[ -n "${separate_build_dirs}" ]]; then |
| … | |
… | |
| 2415 | python_test_function() { |
2581 | python_test_function() { |
| 2416 | local evaluated_PYTHONPATH |
2582 | local evaluated_PYTHONPATH |
| 2417 | |
2583 | |
| 2418 | eval "evaluated_PYTHONPATH=\"${PYTHONPATH_template}\"" |
2584 | eval "evaluated_PYTHONPATH=\"${PYTHONPATH_template}\"" |
| 2419 | |
2585 | |
| 2420 | _python_test_hook pre |
2586 | _PYTHON_TEST_FUNCTION="python_execute_trial" _python_test_hook pre |
| 2421 | |
2587 | |
| 2422 | if [[ -n "${evaluated_PYTHONPATH}" ]]; then |
2588 | if [[ -n "${evaluated_PYTHONPATH}" ]]; then |
| 2423 | echo ${_BOLD}PYTHONPATH="${evaluated_PYTHONPATH}" trial $([[ "${PYTHON_TEST_VERBOSITY}" -ge 4 ]] && echo --spew) "$@"${_NORMAL} |
2589 | 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 "$?" |
2590 | PYTHONPATH="${evaluated_PYTHONPATH}" trial $([[ "${PYTHON_TEST_VERBOSITY}" -ge 4 ]] && echo --spew) "$@" || return "$?" |
| 2425 | else |
2591 | else |
| 2426 | echo ${_BOLD}trial $([[ "${PYTHON_TEST_VERBOSITY}" -ge 4 ]] && echo --spew) "$@"${_NORMAL} |
2592 | echo ${_BOLD}trial $([[ "${PYTHON_TEST_VERBOSITY}" -ge 4 ]] && echo --spew) "$@"${_NORMAL} |
| 2427 | trial $([[ "${PYTHON_TEST_VERBOSITY}" -ge 4 ]] && echo --spew) "$@" || return "$?" |
2593 | trial $([[ "${PYTHON_TEST_VERBOSITY}" -ge 4 ]] && echo --spew) "$@" || return "$?" |
| 2428 | fi |
2594 | fi |
| 2429 | |
2595 | |
| 2430 | _python_test_hook post |
2596 | _PYTHON_TEST_FUNCTION="python_execute_trial" _python_test_hook post |
| 2431 | } |
2597 | } |
| 2432 | if _python_package_supporting_installation_for_multiple_python_abis; then |
2598 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| 2433 | python_execute_function ${separate_build_dirs:+-s} python_test_function "$@" |
2599 | python_execute_function ${separate_build_dirs:+-s} python_test_function "$@" |
| 2434 | else |
2600 | else |
| 2435 | if [[ -n "${separate_build_dirs}" ]]; then |
2601 | if [[ -n "${separate_build_dirs}" ]]; then |
| … | |
… | |
| 2579 | _python_check_python_pkg_setup_execution |
2745 | _python_check_python_pkg_setup_execution |
| 2580 | _python_initialize_prefix_variables |
2746 | _python_initialize_prefix_variables |
| 2581 | |
2747 | |
| 2582 | if ! has "${EAPI:-0}" 0 1 2 || _python_package_supporting_installation_for_multiple_python_abis || _python_implementation || [[ "${CATEGORY}/${PN}" == "sys-apps/portage" ]]; then |
2748 | 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. |
2749 | # 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=() |
2750 | 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 | |
2751 | |
| 2586 | if _python_package_supporting_installation_for_multiple_python_abis; then |
2752 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| 2587 | if has "${EAPI:-0}" 0 1 2 3 && [[ -z "${PYTHON_ABIS}" ]]; then |
2753 | if has "${EAPI:-0}" 0 1 2 3 && [[ -z "${PYTHON_ABIS}" ]]; then |
| 2588 | die "${FUNCNAME}(): python_pkg_setup() or python_execute_function() not called" |
2754 | die "${FUNCNAME}(): python_pkg_setup() or python_execute_function() not called" |
| 2589 | fi |
2755 | fi |
| … | |
… | |
| 2684 | options+=("-q") |
2850 | options+=("-q") |
| 2685 | |
2851 | |
| 2686 | for PYTHON_ABI in ${iterated_PYTHON_ABIS}; do |
2852 | for PYTHON_ABI in ${iterated_PYTHON_ABIS}; do |
| 2687 | if ((${#site_packages_dirs[@]})) || ((${#site_packages_files[@]})) || ((${#evaluated_dirs[@]})) || ((${#evaluated_files[@]})); then |
2853 | if ((${#site_packages_dirs[@]})) || ((${#site_packages_files[@]})) || ((${#evaluated_dirs[@]})) || ((${#evaluated_files[@]})); then |
| 2688 | return_code="0" |
2854 | return_code="0" |
|
|
2855 | stderr="" |
| 2689 | ebegin "Compilation and optimization of Python modules for $(python_get_implementation) $(python_get_version)" |
2856 | ebegin "Compilation and optimization of Python modules for $(python_get_implementation_and_version)" |
| 2690 | if ((${#site_packages_dirs[@]})) || ((${#evaluated_dirs[@]})); then |
2857 | if ((${#site_packages_dirs[@]})) || ((${#evaluated_dirs[@]})); then |
| 2691 | for dir in "${site_packages_dirs[@]}"; do |
2858 | for dir in "${site_packages_dirs[@]}"; do |
| 2692 | dirs+=("${root}$(python_get_sitedir)/${dir}") |
2859 | dirs+=("${root}$(python_get_sitedir)/${dir}") |
| 2693 | done |
2860 | done |
| 2694 | for dir in "${evaluated_dirs[@]}"; do |
2861 | for dir in "${evaluated_dirs[@]}"; do |
| 2695 | eval "dirs+=(\"\${root}${dir}\")" |
2862 | eval "dirs+=(\"\${root}${dir}\")" |
| 2696 | done |
2863 | done |
| 2697 | "$(PYTHON)" "${root}$(python_get_libdir)/compileall.py" "${options[@]}" "${dirs[@]}" || return_code="1" |
2864 | stderr+="${stderr:+$'\n'}$("$(PYTHON)" -m compileall "${options[@]}" "${dirs[@]}" 2>&1)" || return_code="1" |
| 2698 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" != "Jython" ]]; then |
2865 | 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" |
2866 | "$(PYTHON)" -O -m compileall "${options[@]}" "${dirs[@]}" &> /dev/null || return_code="1" |
| 2700 | fi |
2867 | fi |
| 2701 | _python_clean_compiled_modules "${dirs[@]}" |
2868 | _python_clean_compiled_modules "${dirs[@]}" |
| 2702 | fi |
2869 | fi |
| 2703 | if ((${#site_packages_files[@]})) || ((${#evaluated_files[@]})); then |
2870 | if ((${#site_packages_files[@]})) || ((${#evaluated_files[@]})); then |
| 2704 | for file in "${site_packages_files[@]}"; do |
2871 | for file in "${site_packages_files[@]}"; do |
| 2705 | files+=("${root}$(python_get_sitedir)/${file}") |
2872 | files+=("${root}$(python_get_sitedir)/${file}") |
| 2706 | done |
2873 | done |
| 2707 | for file in "${evaluated_files[@]}"; do |
2874 | for file in "${evaluated_files[@]}"; do |
| 2708 | eval "files+=(\"\${root}${file}\")" |
2875 | eval "files+=(\"\${root}${file}\")" |
| 2709 | done |
2876 | done |
| 2710 | "$(PYTHON)" "${root}$(python_get_libdir)/py_compile.py" "${files[@]}" || return_code="1" |
2877 | stderr+="${stderr:+$'\n'}$("$(PYTHON)" -m py_compile "${files[@]}" 2>&1)" || return_code="1" |
| 2711 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" != "Jython" ]]; then |
2878 | 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" |
2879 | "$(PYTHON)" -O -m py_compile "${files[@]}" &> /dev/null || return_code="1" |
| 2713 | fi |
2880 | fi |
| 2714 | _python_clean_compiled_modules "${files[@]}" |
2881 | _python_clean_compiled_modules "${files[@]}" |
| 2715 | fi |
2882 | fi |
| 2716 | eend "${return_code}" |
2883 | eend "${return_code}" |
|
|
2884 | if [[ -n "${stderr}" ]]; then |
|
|
2885 | eerror "Syntax errors / warnings in Python modules for $(python_get_implementation_and_version):" &> /dev/null |
|
|
2886 | while read stderr_line; do |
|
|
2887 | eerror " ${stderr_line}" |
|
|
2888 | done <<< "${stderr}" |
|
|
2889 | fi |
| 2717 | fi |
2890 | fi |
| 2718 | unset dirs files |
2891 | unset dirs files |
| 2719 | done |
2892 | done |
| 2720 | |
2893 | |
| 2721 | if _python_package_supporting_installation_for_multiple_python_abis; then |
2894 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| … | |
… | |
| 2727 | fi |
2900 | fi |
| 2728 | fi |
2901 | fi |
| 2729 | |
2902 | |
| 2730 | if ((${#other_dirs[@]})) || ((${#other_files[@]})); then |
2903 | if ((${#other_dirs[@]})) || ((${#other_files[@]})); then |
| 2731 | return_code="0" |
2904 | return_code="0" |
|
|
2905 | stderr="" |
| 2732 | ebegin "Compilation and optimization of Python modules placed outside of site-packages directories for $(python_get_implementation) $(python_get_version)" |
2906 | ebegin "Compilation and optimization of Python modules placed outside of site-packages directories for $(python_get_implementation_and_version)" |
| 2733 | if ((${#other_dirs[@]})); then |
2907 | if ((${#other_dirs[@]})); then |
| 2734 | "$(PYTHON ${PYTHON_ABI})" "${root}$(python_get_libdir)/compileall.py" "${options[@]}" "${other_dirs[@]}" || return_code="1" |
2908 | 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 |
2909 | 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" |
2910 | "$(PYTHON ${PYTHON_ABI})" -O -m compileall "${options[@]}" "${other_dirs[@]}" &> /dev/null || return_code="1" |
| 2737 | fi |
2911 | fi |
| 2738 | _python_clean_compiled_modules "${other_dirs[@]}" |
2912 | _python_clean_compiled_modules "${other_dirs[@]}" |
| 2739 | fi |
2913 | fi |
| 2740 | if ((${#other_files[@]})); then |
2914 | if ((${#other_files[@]})); then |
| 2741 | "$(PYTHON ${PYTHON_ABI})" "${root}$(python_get_libdir)/py_compile.py" "${other_files[@]}" || return_code="1" |
2915 | 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 |
2916 | 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" |
2917 | "$(PYTHON ${PYTHON_ABI})" -O -m py_compile "${other_files[@]}" &> /dev/null || return_code="1" |
| 2744 | fi |
2918 | fi |
| 2745 | _python_clean_compiled_modules "${other_files[@]}" |
2919 | _python_clean_compiled_modules "${other_files[@]}" |
| 2746 | fi |
2920 | fi |
| 2747 | eend "${return_code}" |
2921 | eend "${return_code}" |
|
|
2922 | if [[ -n "${stderr}" ]]; then |
|
|
2923 | eerror "Syntax errors / warnings in Python modules placed outside of site-packages directories for $(python_get_implementation_and_version):" &> /dev/null |
|
|
2924 | while read stderr_line; do |
|
|
2925 | eerror " ${stderr_line}" |
|
|
2926 | done <<< "${stderr}" |
|
|
2927 | fi |
| 2748 | fi |
2928 | fi |
| 2749 | else |
2929 | else |
| 2750 | # Deprecated part of python_mod_optimize() |
2930 | # Deprecated part of python_mod_optimize() |
| 2751 | ewarn |
2931 | ewarn |
| 2752 | ewarn "Deprecation Warning: Usage of ${FUNCNAME}() in packages not supporting installation" |
2932 | ewarn "Deprecation Warning: Usage of ${FUNCNAME}() in packages not supporting installation" |