| 1 | # Copyright 1999-2010 Gentoo Foundation |
1 | # Copyright 1999-2010 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.103 2010/10/03 00:38:13 arfrever Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/python.eclass,v 1.106 2010/12/24 15:01:09 arfrever 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 |
| … | |
… | |
| 13 | |
13 | |
| 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_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_SUPPORTED_ABIS=(3.0 3.1 3.2) |
19 | _CPYTHON3_GLOBALLY_SUPPORTED_ABIS=(3.0 3.1 3.2) |
| 20 | _JYTHON_SUPPORTED_ABIS=(2.5-jython) |
20 | _JYTHON_GLOBALLY_SUPPORTED_ABIS=(2.5-jython) |
|
|
21 | _PYTHON_GLOBALLY_SUPPORTED_ABIS=(${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]} ${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]} ${_JYTHON_GLOBALLY_SUPPORTED_ABIS[@]}) |
|
|
22 | |
|
|
23 | # ================================================================================================ |
|
|
24 | # ===================================== HANDLING OF METADATA ===================================== |
|
|
25 | # ================================================================================================ |
|
|
26 | |
|
|
27 | _python_check_python_abi_matching() { |
|
|
28 | if [[ "$#" -ne 2 ]]; then |
|
|
29 | die "${FUNCNAME}() requires 2 arguments" |
|
|
30 | fi |
|
|
31 | |
|
|
32 | if [[ "$2" == *"-cpython" ]]; then |
|
|
33 | [[ "$1" =~ ^[[:digit:]]+\.[[:digit:]]+$ && "$1" == ${2%-cpython} ]] |
|
|
34 | elif [[ "$2" == *"-jython" ]]; then |
|
|
35 | [[ "$1" == $2 ]] |
|
|
36 | else |
|
|
37 | if [[ "$1" =~ ^[[:digit:]]+\.[[:digit:]]+$ ]]; then |
|
|
38 | [[ "$1" == $2 ]] |
|
|
39 | elif [[ "$1" =~ ^[[:digit:]]+\.[[:digit:]]+-jython$ ]]; then |
|
|
40 | [[ "${1%-jython}" == $2 ]] |
|
|
41 | else |
|
|
42 | die "${FUNCNAME}(): Unrecognized Python ABI '$1'" |
|
|
43 | fi |
|
|
44 | fi |
|
|
45 | } |
| 21 | |
46 | |
| 22 | # @ECLASS-VARIABLE: PYTHON_DEPEND |
47 | # @ECLASS-VARIABLE: PYTHON_DEPEND |
| 23 | # @DESCRIPTION: |
48 | # @DESCRIPTION: |
| 24 | # Specification of dependency on dev-lang/python. |
49 | # Specification of dependency on dev-lang/python. |
| 25 | # Syntax: |
50 | # Syntax: |
| … | |
… | |
| 27 | # version_components_group: <major_version[:[minimal_version][:maximal_version]]> |
52 | # version_components_group: <major_version[:[minimal_version][:maximal_version]]> |
| 28 | # major_version: <2|3|*> |
53 | # major_version: <2|3|*> |
| 29 | # minimal_version: <minimal_major_version.minimal_minor_version> |
54 | # minimal_version: <minimal_major_version.minimal_minor_version> |
| 30 | # maximal_version: <maximal_major_version.maximal_minor_version> |
55 | # maximal_version: <maximal_major_version.maximal_minor_version> |
| 31 | |
56 | |
| 32 | _parse_PYTHON_DEPEND() { |
57 | _python_parse_PYTHON_DEPEND() { |
| 33 | local major_version maximal_version minimal_version python_all="0" python_maximal_version python_minimal_version python_versions=() python2="0" python2_maximal_version python2_minimal_version python3="0" python3_maximal_version python3_minimal_version USE_flag= version_components_group version_components_group_regex version_components_groups |
58 | local major_version maximal_version minimal_version python_all="0" python_maximal_version python_minimal_version python_versions=() python2="0" python2_maximal_version python2_minimal_version python3="0" python3_maximal_version python3_minimal_version USE_flag= version_components_group version_components_group_regex version_components_groups |
| 34 | |
59 | |
| 35 | version_components_group_regex="(2|3|\*)(:([[:digit:]]+\.[[:digit:]]+)?(:([[:digit:]]+\.[[:digit:]]+)?)?)?" |
60 | version_components_group_regex="(2|3|\*)(:([[:digit:]]+\.[[:digit:]]+)?(:([[:digit:]]+\.[[:digit:]]+)?)?)?" |
| 36 | version_components_groups="${PYTHON_DEPEND}" |
61 | version_components_groups="${PYTHON_DEPEND}" |
| 37 | |
62 | |
| … | |
… | |
| 60 | fi |
85 | fi |
| 61 | fi |
86 | fi |
| 62 | |
87 | |
| 63 | if [[ "${major_version}" == "2" ]]; then |
88 | if [[ "${major_version}" == "2" ]]; then |
| 64 | python2="1" |
89 | python2="1" |
| 65 | python_versions=("${_CPYTHON2_SUPPORTED_ABIS[@]}") |
90 | python_versions=("${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]}") |
| 66 | python2_minimal_version="${minimal_version}" |
91 | python2_minimal_version="${minimal_version}" |
| 67 | python2_maximal_version="${maximal_version}" |
92 | python2_maximal_version="${maximal_version}" |
| 68 | elif [[ "${major_version}" == "3" ]]; then |
93 | elif [[ "${major_version}" == "3" ]]; then |
| 69 | python3="1" |
94 | python3="1" |
| 70 | python_versions=("${_CPYTHON3_SUPPORTED_ABIS[@]}") |
95 | python_versions=("${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]}") |
| 71 | python3_minimal_version="${minimal_version}" |
96 | python3_minimal_version="${minimal_version}" |
| 72 | python3_maximal_version="${maximal_version}" |
97 | python3_maximal_version="${maximal_version}" |
| 73 | else |
98 | else |
| 74 | python_all="1" |
99 | python_all="1" |
| 75 | python_versions=("${_CPYTHON2_SUPPORTED_ABIS[@]}" "${_CPYTHON3_SUPPORTED_ABIS[@]}") |
100 | python_versions=("${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]}" "${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]}") |
| 76 | python_minimal_version="${minimal_version}" |
101 | python_minimal_version="${minimal_version}" |
| 77 | python_maximal_version="${maximal_version}" |
102 | python_maximal_version="${maximal_version}" |
| 78 | fi |
103 | fi |
| 79 | |
104 | |
| 80 | if [[ -n "${minimal_version}" ]] && ! has "${minimal_version}" "${python_versions[@]}"; then |
105 | if [[ -n "${minimal_version}" ]] && ! has "${minimal_version}" "${python_versions[@]}"; then |
| … | |
… | |
| 108 | |
133 | |
| 109 | if [[ "${python_all}" == "1" ]]; then |
134 | if [[ "${python_all}" == "1" ]]; then |
| 110 | if [[ -z "${python_minimal_version}" && -z "${python_maximal_version}" ]]; then |
135 | if [[ -z "${python_minimal_version}" && -z "${python_maximal_version}" ]]; then |
| 111 | _PYTHON_ATOMS+=("dev-lang/python") |
136 | _PYTHON_ATOMS+=("dev-lang/python") |
| 112 | else |
137 | else |
| 113 | python_versions=("${_CPYTHON2_SUPPORTED_ABIS[@]}" "${_CPYTHON3_SUPPORTED_ABIS[@]}") |
138 | python_versions=("${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]}" "${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]}") |
| 114 | python_minimal_version="${python_minimal_version:-${python_versions[0]}}" |
139 | python_minimal_version="${python_minimal_version:-${python_versions[0]}}" |
| 115 | python_maximal_version="${python_maximal_version:-${python_versions[${#python_versions[@]}-1]}}" |
140 | python_maximal_version="${python_maximal_version:-${python_versions[${#python_versions[@]}-1]}}" |
| 116 | _append_accepted_versions_range |
141 | _append_accepted_versions_range |
| 117 | fi |
142 | fi |
| 118 | else |
143 | else |
| 119 | if [[ "${python3}" == "1" ]]; then |
144 | if [[ "${python3}" == "1" ]]; then |
| 120 | if [[ -z "${python3_minimal_version}" && -z "${python3_maximal_version}" ]]; then |
145 | if [[ -z "${python3_minimal_version}" && -z "${python3_maximal_version}" ]]; then |
| 121 | _PYTHON_ATOMS+=("=dev-lang/python-3*") |
146 | _PYTHON_ATOMS+=("=dev-lang/python-3*") |
| 122 | else |
147 | else |
| 123 | python_versions=("${_CPYTHON3_SUPPORTED_ABIS[@]}") |
148 | python_versions=("${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]}") |
| 124 | python_minimal_version="${python3_minimal_version:-${python_versions[0]}}" |
149 | python_minimal_version="${python3_minimal_version:-${python_versions[0]}}" |
| 125 | python_maximal_version="${python3_maximal_version:-${python_versions[${#python_versions[@]}-1]}}" |
150 | python_maximal_version="${python3_maximal_version:-${python_versions[${#python_versions[@]}-1]}}" |
| 126 | _append_accepted_versions_range |
151 | _append_accepted_versions_range |
| 127 | fi |
152 | fi |
| 128 | fi |
153 | fi |
| 129 | if [[ "${python2}" == "1" ]]; then |
154 | if [[ "${python2}" == "1" ]]; then |
| 130 | if [[ -z "${python2_minimal_version}" && -z "${python2_maximal_version}" ]]; then |
155 | if [[ -z "${python2_minimal_version}" && -z "${python2_maximal_version}" ]]; then |
| 131 | _PYTHON_ATOMS+=("=dev-lang/python-2*") |
156 | _PYTHON_ATOMS+=("=dev-lang/python-2*") |
| 132 | else |
157 | else |
| 133 | python_versions=("${_CPYTHON2_SUPPORTED_ABIS[@]}") |
158 | python_versions=("${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]}") |
| 134 | python_minimal_version="${python2_minimal_version:-${python_versions[0]}}" |
159 | python_minimal_version="${python2_minimal_version:-${python_versions[0]}}" |
| 135 | python_maximal_version="${python2_maximal_version:-${python_versions[${#python_versions[@]}-1]}}" |
160 | python_maximal_version="${python2_maximal_version:-${python_versions[${#python_versions[@]}-1]}}" |
| 136 | _append_accepted_versions_range |
161 | _append_accepted_versions_range |
| 137 | fi |
162 | fi |
| 138 | fi |
163 | fi |
| … | |
… | |
| 153 | } |
178 | } |
| 154 | |
179 | |
| 155 | DEPEND=">=app-admin/eselect-python-20091230" |
180 | DEPEND=">=app-admin/eselect-python-20091230" |
| 156 | RDEPEND="${DEPEND}" |
181 | RDEPEND="${DEPEND}" |
| 157 | |
182 | |
| 158 | if [[ -n "${PYTHON_DEPEND}" && -n "${NEED_PYTHON}" ]]; then |
|
|
| 159 | die "PYTHON_DEPEND and NEED_PYTHON cannot be set simultaneously" |
|
|
| 160 | elif [[ -n "${PYTHON_DEPEND}" ]]; then |
183 | if [[ -n "${PYTHON_DEPEND}" ]]; then |
| 161 | _parse_PYTHON_DEPEND |
184 | _python_parse_PYTHON_DEPEND |
| 162 | elif [[ -n "${NEED_PYTHON}" ]]; then |
|
|
| 163 | if ! has "${EAPI:-0}" 0 1 2; then |
|
|
| 164 | eerror "Use PYTHON_DEPEND variable instead of NEED_PYTHON variable." |
|
|
| 165 | die "NEED_PYTHON variable cannot be used in this EAPI" |
|
|
| 166 | fi |
|
|
| 167 | |
|
|
| 168 | ewarn |
|
|
| 169 | ewarn "\"${EBUILD}\":" |
|
|
| 170 | ewarn "Deprecation Warning: NEED_PYTHON variable is deprecated and will be banned on 2010-10-01." |
|
|
| 171 | ewarn "Use PYTHON_DEPEND variable instead of NEED_PYTHON variable." |
|
|
| 172 | ewarn "The ebuild needs to be fixed. Please report a bug, if it has not been already reported." |
|
|
| 173 | ewarn |
|
|
| 174 | |
|
|
| 175 | unset _BOLD _NORMAL |
|
|
| 176 | |
|
|
| 177 | _PYTHON_ATOMS=(">=dev-lang/python-${NEED_PYTHON}") |
|
|
| 178 | DEPEND+="${DEPEND:+ }${_PYTHON_ATOMS[@]}" |
|
|
| 179 | RDEPEND+="${RDEPEND:+ }${_PYTHON_ATOMS[@]}" |
|
|
| 180 | else |
185 | else |
| 181 | _PYTHON_ATOMS=("dev-lang/python") |
186 | _PYTHON_ATOMS=("dev-lang/python") |
|
|
187 | fi |
|
|
188 | unset -f _python_parse_PYTHON_DEPEND |
|
|
189 | |
|
|
190 | if [[ -n "${NEED_PYTHON}" ]]; then |
|
|
191 | eerror "Use PYTHON_DEPEND variable instead of NEED_PYTHON variable." |
|
|
192 | die "NEED_PYTHON variable is banned" |
| 182 | fi |
193 | fi |
| 183 | |
194 | |
| 184 | # @ECLASS-VARIABLE: PYTHON_USE_WITH |
195 | # @ECLASS-VARIABLE: PYTHON_USE_WITH |
| 185 | # @DESCRIPTION: |
196 | # @DESCRIPTION: |
| 186 | # Set this to a space separated list of USE flags the Python slot in use must be built with. |
197 | # Set this to a space separated list of USE flags the Python slot in use must be built with. |
| … | |
… | |
| 357 | |
368 | |
| 358 | if [[ "$#" -ne 0 ]]; then |
369 | if [[ "$#" -ne 0 ]]; then |
| 359 | die "${FUNCNAME}() does not accept arguments" |
370 | die "${FUNCNAME}() does not accept arguments" |
| 360 | fi |
371 | fi |
| 361 | |
372 | |
|
|
373 | export JYTHON_SYSTEM_CACHEDIR="1" |
|
|
374 | addwrite "${EPREFIX}/var/cache/jython" |
|
|
375 | |
| 362 | if _python_package_supporting_installation_for_multiple_python_abis; then |
376 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| 363 | _python_calculate_PYTHON_ABIS |
377 | _python_calculate_PYTHON_ABIS |
| 364 | export EPYTHON="$(PYTHON -f)" |
378 | export EPYTHON="$(PYTHON -f)" |
| 365 | else |
379 | else |
| 366 | PYTHON_ABI="${PYTHON_ABI:-$(PYTHON --ABI)}" |
380 | PYTHON_ABI="${PYTHON_ABI:-$(PYTHON --ABI)}" |
| … | |
… | |
| 408 | fi |
422 | fi |
| 409 | |
423 | |
| 410 | PYTHON_PKG_SETUP_EXECUTED="1" |
424 | PYTHON_PKG_SETUP_EXECUTED="1" |
| 411 | } |
425 | } |
| 412 | |
426 | |
| 413 | if ! has "${EAPI:-0}" 0 1 2 3 || has "${EAPI:-0}" 2 3 && [[ -n "${PYTHON_USE_WITH}" || -n "${PYTHON_USE_WITH_OR}" ]]; then |
427 | if ! has "${EAPI:-0}" 0 1 2 3 || { has "${EAPI:-0}" 2 3 && [[ -n "${PYTHON_USE_WITH}" || -n "${PYTHON_USE_WITH_OR}" ]]; }; then |
| 414 | EXPORT_FUNCTIONS pkg_setup |
428 | EXPORT_FUNCTIONS pkg_setup |
| 415 | fi |
429 | fi |
| 416 | |
430 | |
|
|
431 | _PYTHON_SHEBANG_BASE_PART_REGEX='^#![[:space:]]*([^[:space:]]*/usr/bin/env[[:space:]]+)?([^[:space:]]*/)?(jython|python)' |
|
|
432 | |
| 417 | # @FUNCTION: python_convert_shebangs |
433 | # @FUNCTION: python_convert_shebangs |
| 418 | # @USAGE: [-q|--quiet] [-r|--recursive] [-x|--only-executables] [--] <Python_version> <file|directory> [files|directories] |
434 | # @USAGE: [-q|--quiet] [-r|--recursive] [-x|--only-executables] [--] <Python_ABI|Python_version> <file|directory> [files|directories] |
| 419 | # @DESCRIPTION: |
435 | # @DESCRIPTION: |
| 420 | # Convert shebangs in specified files. Directories can be specified only with --recursive option. |
436 | # Convert shebangs in specified files. Directories can be specified only with --recursive option. |
| 421 | python_convert_shebangs() { |
437 | python_convert_shebangs() { |
| 422 | _python_check_python_pkg_setup_execution |
438 | _python_check_python_pkg_setup_execution |
| 423 | |
439 | |
| 424 | local argument file files=() only_executables="0" python_version quiet="0" recursive="0" |
440 | local argument file files=() only_executables="0" python_interpreter quiet="0" recursive="0" |
| 425 | |
441 | |
| 426 | while (($#)); do |
442 | while (($#)); do |
| 427 | case "$1" in |
443 | case "$1" in |
| 428 | -r|--recursive) |
444 | -r|--recursive) |
| 429 | recursive="1" |
445 | recursive="1" |
| … | |
… | |
| 452 | die "${FUNCNAME}(): Missing Python version and files or directories" |
468 | die "${FUNCNAME}(): Missing Python version and files or directories" |
| 453 | elif [[ "$#" -eq 1 ]]; then |
469 | elif [[ "$#" -eq 1 ]]; then |
| 454 | die "${FUNCNAME}(): Missing files or directories" |
470 | die "${FUNCNAME}(): Missing files or directories" |
| 455 | fi |
471 | fi |
| 456 | |
472 | |
| 457 | python_version="$1" |
473 | if [[ -n "$(_python_get_implementation --ignore-invalid "$1")" ]]; then |
|
|
474 | python_interpreter="$(PYTHON "$1")" |
|
|
475 | else |
|
|
476 | python_interpreter="python$1" |
|
|
477 | fi |
| 458 | shift |
478 | shift |
| 459 | |
479 | |
| 460 | for argument in "$@"; do |
480 | for argument in "$@"; do |
| 461 | if [[ ! -e "${argument}" ]]; then |
481 | if [[ ! -e "${argument}" ]]; then |
| 462 | die "${FUNCNAME}(): '${argument}' does not exist" |
482 | die "${FUNCNAME}(): '${argument}' does not exist" |
| … | |
… | |
| 477 | |
497 | |
| 478 | for file in "${files[@]}"; do |
498 | for file in "${files[@]}"; do |
| 479 | file="${file#./}" |
499 | file="${file#./}" |
| 480 | [[ "${only_executables}" == "1" && ! -x "${file}" ]] && continue |
500 | [[ "${only_executables}" == "1" && ! -x "${file}" ]] && continue |
| 481 | |
501 | |
| 482 | if [[ "$(head -n1 "${file}")" =~ ^'#!'.*python ]]; then |
502 | if [[ "$(head -n1 "${file}")" =~ ${_PYTHON_SHEBANG_BASE_PART_REGEX} ]]; then |
| 483 | [[ "$(sed -ne "2p" "${file}")" =~ ^"# Gentoo '".*"' wrapper script generated by python_generate_wrapper_scripts()"$ ]] && continue |
503 | [[ "$(sed -ne "2p" "${file}")" =~ ^"# Gentoo '".*"' wrapper script generated by python_generate_wrapper_scripts()"$ ]] && continue |
| 484 | |
504 | |
| 485 | if [[ "${quiet}" == "0" ]]; then |
505 | if [[ "${quiet}" == "0" ]]; then |
| 486 | einfo "Converting shebang in '${file}'" |
506 | einfo "Converting shebang in '${file}'" |
| 487 | fi |
507 | fi |
| 488 | |
508 | |
| 489 | sed -e "1s/python\([[:digit:]]\+\(\.[[:digit:]]\+\)\?\)\?/python${python_version}/" -i "${file}" || die "Conversion of shebang in '${file}' failed" |
509 | sed -e "1s:^#![[:space:]]*\([^[:space:]]*/usr/bin/env[[:space:]]\)\?[[:space:]]*\([^[:space:]]*/\)\?\(jython\|python\)\([[:digit:]]\+\(\.[[:digit:]]\+\)\?\)\?\(\$\|[[:space:]].*\):#!\1\2${python_interpreter}\6:" -i "${file}" || die "Conversion of shebang in '${file}' failed" |
| 490 | |
|
|
| 491 | # Delete potential whitespace after "#!". |
|
|
| 492 | sed -e '1s/\(^#!\)[[:space:]]*/\1/' -i "${file}" || die "sed '${file}' failed" |
|
|
| 493 | fi |
510 | fi |
| 494 | done |
511 | done |
| 495 | } |
512 | } |
| 496 | |
513 | |
| 497 | # @FUNCTION: python_clean_installation_image |
514 | # @FUNCTION: python_clean_installation_image |
| … | |
… | |
| 601 | if [[ -n "${PYTHON_EXPORT_PHASE_FUNCTIONS}" ]]; then |
618 | if [[ -n "${PYTHON_EXPORT_PHASE_FUNCTIONS}" ]]; then |
| 602 | EXPORT_FUNCTIONS src_prepare src_configure src_compile src_test src_install |
619 | EXPORT_FUNCTIONS src_prepare src_configure src_compile src_test src_install |
| 603 | fi |
620 | fi |
| 604 | fi |
621 | fi |
| 605 | |
622 | |
|
|
623 | if has "${EAPI:-0}" 0 1 2 3; then |
| 606 | unset PYTHON_ABIS |
624 | unset PYTHON_ABIS |
|
|
625 | fi |
| 607 | |
626 | |
| 608 | _python_calculate_PYTHON_ABIS() { |
627 | _python_calculate_PYTHON_ABIS() { |
| 609 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
628 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
| 610 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
629 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
| 611 | fi |
630 | fi |
| 612 | |
631 | |
| 613 | _python_initial_sanity_checks |
632 | _python_initial_sanity_checks |
| 614 | |
633 | |
| 615 | # USE_${ABI_TYPE^^} and RESTRICT_${ABI_TYPE^^}_ABIS variables hopefully will be included in EAPI >= 5. |
|
|
| 616 | if [[ "$(declare -p PYTHON_ABIS 2> /dev/null)" != "declare -x PYTHON_ABIS="* ]] && has "${EAPI:-0}" 0 1 2 3 4; then |
634 | if [[ "$(declare -p PYTHON_ABIS 2> /dev/null)" != "declare -x PYTHON_ABIS="* ]] && has "${EAPI:-0}" 0 1 2 3; then |
| 617 | local PYTHON_ABI restricted_ABI support_ABI supported_PYTHON_ABIS= |
635 | local PYTHON_ABI restricted_ABI restricted_ABIs support_ABI supported_PYTHON_ABIS |
| 618 | PYTHON_ABI_SUPPORTED_VALUES="${_CPYTHON2_SUPPORTED_ABIS[@]} ${_CPYTHON3_SUPPORTED_ABIS[@]} ${_JYTHON_SUPPORTED_ABIS[@]}" |
636 | |
|
|
637 | restricted_ABIs="${RESTRICT_PYTHON_ABIS// /$'\n'}" |
| 619 | |
638 | |
| 620 | if [[ "$(declare -p USE_PYTHON 2> /dev/null)" == "declare -x USE_PYTHON="* ]]; then |
639 | if [[ "$(declare -p USE_PYTHON 2> /dev/null)" == "declare -x USE_PYTHON="* ]]; then |
| 621 | local cpython_enabled="0" |
640 | local cpython_enabled="0" |
| 622 | |
641 | |
| 623 | if [[ -z "${USE_PYTHON}" ]]; then |
642 | if [[ -z "${USE_PYTHON}" ]]; then |
| 624 | die "USE_PYTHON variable is empty" |
643 | die "USE_PYTHON variable is empty" |
| 625 | fi |
644 | fi |
| 626 | |
645 | |
| 627 | for PYTHON_ABI in ${USE_PYTHON}; do |
646 | for PYTHON_ABI in ${USE_PYTHON}; do |
| 628 | if ! has "${PYTHON_ABI}" ${PYTHON_ABI_SUPPORTED_VALUES}; then |
647 | if ! has "${PYTHON_ABI}" "${_PYTHON_GLOBALLY_SUPPORTED_ABIS[@]}"; then |
| 629 | die "USE_PYTHON variable contains invalid value '${PYTHON_ABI}'" |
648 | die "USE_PYTHON variable contains invalid value '${PYTHON_ABI}'" |
| 630 | fi |
649 | fi |
| 631 | |
650 | |
| 632 | if has "${PYTHON_ABI}" "${_CPYTHON2_SUPPORTED_ABIS[@]}" "${_CPYTHON3_SUPPORTED_ABIS[@]}"; then |
651 | if has "${PYTHON_ABI}" "${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]}" "${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]}"; then |
| 633 | cpython_enabled="1" |
652 | cpython_enabled="1" |
| 634 | fi |
653 | fi |
| 635 | |
654 | |
| 636 | support_ABI="1" |
655 | support_ABI="1" |
| 637 | for restricted_ABI in ${RESTRICT_PYTHON_ABIS}; do |
656 | while read restricted_ABI; do |
| 638 | if [[ "${PYTHON_ABI}" == ${restricted_ABI} ]]; then |
657 | if _python_check_python_abi_matching "${PYTHON_ABI}" "${restricted_ABI}"; then |
| 639 | support_ABI="0" |
658 | support_ABI="0" |
| 640 | break |
659 | break |
| 641 | fi |
660 | fi |
| 642 | done |
661 | done <<< "${restricted_ABIs}" |
| 643 | [[ "${support_ABI}" == "1" ]] && export PYTHON_ABIS+="${PYTHON_ABIS:+ }${PYTHON_ABI}" |
662 | [[ "${support_ABI}" == "1" ]] && export PYTHON_ABIS+="${PYTHON_ABIS:+ }${PYTHON_ABI}" |
| 644 | done |
663 | done |
| 645 | |
664 | |
| 646 | if [[ -z "${PYTHON_ABIS//[${IFS}]/}" ]]; then |
665 | if [[ -z "${PYTHON_ABIS//[${IFS}]/}" ]]; then |
| 647 | die "USE_PYTHON variable does not enable any Python ABI supported by ${CATEGORY}/${PF}" |
666 | die "USE_PYTHON variable does not enable any Python ABI supported by ${CATEGORY}/${PF}" |
| … | |
… | |
| 664 | die "'${EPREFIX}/usr/bin/python2' is not valid symlink" |
683 | die "'${EPREFIX}/usr/bin/python2' is not valid symlink" |
| 665 | fi |
684 | fi |
| 666 | |
685 | |
| 667 | python2_version="$("${EPREFIX}/usr/bin/python2" -c 'from sys import version_info; print(".".join(str(x) for x in version_info[:2]))')" |
686 | python2_version="$("${EPREFIX}/usr/bin/python2" -c 'from sys import version_info; print(".".join(str(x) for x in version_info[:2]))')" |
| 668 | |
687 | |
| 669 | for PYTHON_ABI in "${_CPYTHON2_SUPPORTED_ABIS[@]}"; do |
688 | for PYTHON_ABI in "${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]}"; do |
| 670 | support_python_major_version="1" |
689 | support_python_major_version="1" |
| 671 | for restricted_ABI in ${RESTRICT_PYTHON_ABIS}; do |
690 | while read restricted_ABI; do |
| 672 | if [[ "${PYTHON_ABI}" == ${restricted_ABI} ]]; then |
691 | if _python_check_python_abi_matching "${PYTHON_ABI}" "${restricted_ABI}"; then |
| 673 | support_python_major_version="0" |
692 | support_python_major_version="0" |
| 674 | fi |
693 | fi |
| 675 | done |
694 | done <<< "${restricted_ABIs}" |
| 676 | [[ "${support_python_major_version}" == "1" ]] && break |
695 | [[ "${support_python_major_version}" == "1" ]] && break |
| 677 | done |
696 | done |
| 678 | if [[ "${support_python_major_version}" == "1" ]]; then |
697 | if [[ "${support_python_major_version}" == "1" ]]; then |
| 679 | for restricted_ABI in ${RESTRICT_PYTHON_ABIS}; do |
698 | while read restricted_ABI; do |
| 680 | if [[ "${python2_version}" == ${restricted_ABI} ]]; then |
699 | if _python_check_python_abi_matching "${python2_version}" "${restricted_ABI}"; then |
| 681 | die "Active version of Python 2 is not supported by ${CATEGORY}/${PF}" |
700 | die "Active version of CPython 2 is not supported by ${CATEGORY}/${PF}" |
| 682 | fi |
701 | fi |
| 683 | done |
702 | done <<< "${restricted_ABIs}" |
| 684 | else |
703 | else |
| 685 | python2_version="" |
704 | python2_version="" |
| 686 | fi |
705 | fi |
| 687 | fi |
706 | fi |
| 688 | |
707 | |
| … | |
… | |
| 691 | die "'${EPREFIX}/usr/bin/python3' is not valid symlink" |
710 | die "'${EPREFIX}/usr/bin/python3' is not valid symlink" |
| 692 | fi |
711 | fi |
| 693 | |
712 | |
| 694 | python3_version="$("${EPREFIX}/usr/bin/python3" -c 'from sys import version_info; print(".".join(str(x) for x in version_info[:2]))')" |
713 | python3_version="$("${EPREFIX}/usr/bin/python3" -c 'from sys import version_info; print(".".join(str(x) for x in version_info[:2]))')" |
| 695 | |
714 | |
| 696 | for PYTHON_ABI in "${_CPYTHON3_SUPPORTED_ABIS[@]}"; do |
715 | for PYTHON_ABI in "${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]}"; do |
| 697 | support_python_major_version="1" |
716 | support_python_major_version="1" |
| 698 | for restricted_ABI in ${RESTRICT_PYTHON_ABIS}; do |
717 | while read restricted_ABI; do |
| 699 | if [[ "${PYTHON_ABI}" == ${restricted_ABI} ]]; then |
718 | if _python_check_python_abi_matching "${PYTHON_ABI}" "${restricted_ABI}"; then |
| 700 | support_python_major_version="0" |
719 | support_python_major_version="0" |
| 701 | fi |
720 | fi |
| 702 | done |
721 | done <<< "${restricted_ABIs}" |
| 703 | [[ "${support_python_major_version}" == "1" ]] && break |
722 | [[ "${support_python_major_version}" == "1" ]] && break |
| 704 | done |
723 | done |
| 705 | if [[ "${support_python_major_version}" == "1" ]]; then |
724 | if [[ "${support_python_major_version}" == "1" ]]; then |
| 706 | for restricted_ABI in ${RESTRICT_PYTHON_ABIS}; do |
725 | while read restricted_ABI; do |
| 707 | if [[ "${python3_version}" == ${restricted_ABI} ]]; then |
726 | if _python_check_python_abi_matching "${python3_version}" "${restricted_ABI}"; then |
| 708 | die "Active version of Python 3 is not supported by ${CATEGORY}/${PF}" |
727 | die "Active version of CPython 3 is not supported by ${CATEGORY}/${PF}" |
| 709 | fi |
728 | fi |
| 710 | done |
729 | done <<< "${restricted_ABIs}" |
| 711 | else |
730 | else |
| 712 | python3_version="" |
731 | python3_version="" |
| 713 | fi |
732 | fi |
| 714 | fi |
733 | fi |
| 715 | |
734 | |
| … | |
… | |
| 745 | if [[ "${element}" =~ ^([[:alnum:]]|\.|-|\*|\[|\])+\ (\+|-)\ .+ ]]; then |
764 | if [[ "${element}" =~ ^([[:alnum:]]|\.|-|\*|\[|\])+\ (\+|-)\ .+ ]]; then |
| 746 | pattern="${element%% *}" |
765 | pattern="${element%% *}" |
| 747 | element="${element#* }" |
766 | element="${element#* }" |
| 748 | operator="${element%% *}" |
767 | operator="${element%% *}" |
| 749 | flags="${element#* }" |
768 | flags="${element#* }" |
| 750 | if [[ "${PYTHON_ABI}" == ${pattern} ]]; then |
769 | if _python_check_python_abi_matching "${PYTHON_ABI}" "${pattern}"; then |
| 751 | if [[ "${operator}" == "+" ]]; then |
770 | if [[ "${operator}" == "+" ]]; then |
| 752 | eval "export ${variable}+=\"\${variable:+ }${flags}\"" |
771 | eval "export ${variable}+=\"\${variable:+ }${flags}\"" |
| 753 | elif [[ "${operator}" == "-" ]]; then |
772 | elif [[ "${operator}" == "-" ]]; then |
| 754 | flags="${flags// /$'\n'}" |
773 | flags="${flags// /$'\n'}" |
| 755 | old_value="${!variable// /$'\n'}" |
774 | old_value="${!variable// /$'\n'}" |
| … | |
… | |
| 1062 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
1081 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
| 1063 | fi |
1082 | fi |
| 1064 | |
1083 | |
| 1065 | _python_initialize_prefix_variables |
1084 | _python_initialize_prefix_variables |
| 1066 | |
1085 | |
| 1067 | local eselect_python_option file force="0" quiet="0" PYTHON_ABI python2_enabled="0" python3_enabled="0" respect_EPYTHON="0" |
1086 | local eselect_python_option file force="0" quiet="0" PYTHON_ABI PYTHON_ABIS_list python2_enabled="0" python3_enabled="0" respect_EPYTHON="0" |
| 1068 | |
1087 | |
| 1069 | while (($#)); do |
1088 | while (($#)); do |
| 1070 | case "$1" in |
1089 | case "$1" in |
| 1071 | -E|--respect-EPYTHON) |
1090 | -E|--respect-EPYTHON) |
| 1072 | respect_EPYTHON="1" |
1091 | respect_EPYTHON="1" |
| … | |
… | |
| 1094 | if [[ "$#" -eq 0 ]]; then |
1113 | if [[ "$#" -eq 0 ]]; then |
| 1095 | die "${FUNCNAME}(): Missing arguments" |
1114 | die "${FUNCNAME}(): Missing arguments" |
| 1096 | fi |
1115 | fi |
| 1097 | |
1116 | |
| 1098 | _python_calculate_PYTHON_ABIS |
1117 | _python_calculate_PYTHON_ABIS |
| 1099 | for PYTHON_ABI in "${_CPYTHON2_SUPPORTED_ABIS[@]}"; do |
1118 | for PYTHON_ABI in "${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]}"; do |
| 1100 | if has "${PYTHON_ABI}" ${PYTHON_ABIS}; then |
1119 | if has "${PYTHON_ABI}" ${PYTHON_ABIS}; then |
| 1101 | python2_enabled="1" |
1120 | python2_enabled="1" |
| 1102 | fi |
1121 | fi |
| 1103 | done |
1122 | done |
| 1104 | for PYTHON_ABI in "${_CPYTHON3_SUPPORTED_ABIS[@]}"; do |
1123 | for PYTHON_ABI in "${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]}"; do |
| 1105 | if has "${PYTHON_ABI}" ${PYTHON_ABIS}; then |
1124 | if has "${PYTHON_ABI}" ${PYTHON_ABIS}; then |
| 1106 | python3_enabled="1" |
1125 | python3_enabled="1" |
| 1107 | fi |
1126 | fi |
| 1108 | done |
1127 | done |
| 1109 | |
1128 | |
| … | |
… | |
| 1115 | eselect_python_option="--python3" |
1134 | eselect_python_option="--python3" |
| 1116 | else |
1135 | else |
| 1117 | die "${FUNCNAME}(): Unsupported environment" |
1136 | die "${FUNCNAME}(): Unsupported environment" |
| 1118 | fi |
1137 | fi |
| 1119 | |
1138 | |
|
|
1139 | PYTHON_ABIS_list="$("$(PYTHON -f)" -c "print(', '.join('\"%s\"' % x for x in reversed('${PYTHON_ABIS}'.split())))")" |
|
|
1140 | |
| 1120 | for file in "$@"; do |
1141 | for file in "$@"; do |
| 1121 | if [[ -f "${file}" && "${force}" == "0" ]]; then |
1142 | if [[ -f "${file}" && "${force}" == "0" ]]; then |
| 1122 | die "${FUNCNAME}(): '$1' already exists" |
1143 | die "${FUNCNAME}(): '${file}' already exists" |
| 1123 | fi |
1144 | fi |
| 1124 | |
1145 | |
| 1125 | if [[ "${quiet}" == "0" ]]; then |
1146 | if [[ "${quiet}" == "0" ]]; then |
| 1126 | einfo "Generating '${file#${ED%/}}' wrapper script" |
1147 | einfo "Generating '${file#${ED%/}}' wrapper script" |
| 1127 | fi |
1148 | fi |
| … | |
… | |
| 1133 | import os |
1154 | import os |
| 1134 | import re |
1155 | import re |
| 1135 | import subprocess |
1156 | import subprocess |
| 1136 | import sys |
1157 | import sys |
| 1137 | |
1158 | |
| 1138 | EPYTHON_re = re.compile(r"^python(\d+\.\d+)$") |
1159 | cpython_re = re.compile(r"^python(\d+\.\d+)$") |
|
|
1160 | jython_re = re.compile(r"^jython(\d+\.\d+)$") |
| 1139 | python_shebang_re = re.compile(r"^#! *(${EPREFIX}/usr/bin/python|(${EPREFIX})?/usr/bin/env +(${EPREFIX}/usr/bin/)?python)") |
1161 | python_shebang_re = re.compile(r"^#! *(${EPREFIX}/usr/bin/python|(${EPREFIX})?/usr/bin/env +(${EPREFIX}/usr/bin/)?python)") |
| 1140 | python_verification_output_re = re.compile("^GENTOO_PYTHON_TARGET_SCRIPT_PATH supported\n$") |
1162 | python_verification_output_re = re.compile("^GENTOO_PYTHON_TARGET_SCRIPT_PATH supported\n$") |
|
|
1163 | |
|
|
1164 | def get_PYTHON_ABI(EPYTHON): |
|
|
1165 | cpython_matched = cpython_re.match(EPYTHON) |
|
|
1166 | jython_matched = jython_re.match(EPYTHON) |
|
|
1167 | if cpython_matched is not None: |
|
|
1168 | PYTHON_ABI = cpython_matched.group(1) |
|
|
1169 | elif jython_matched is not None: |
|
|
1170 | PYTHON_ABI = jython_matched.group(1) + "-jython" |
|
|
1171 | else: |
|
|
1172 | PYTHON_ABI = None |
|
|
1173 | return PYTHON_ABI |
| 1141 | |
1174 | |
| 1142 | EOF |
1175 | EOF |
| 1143 | if [[ "$?" != "0" ]]; then |
1176 | if [[ "$?" != "0" ]]; then |
| 1144 | die "${FUNCNAME}(): Generation of '$1' failed" |
1177 | die "${FUNCNAME}(): Generation of '$1' failed" |
| 1145 | fi |
1178 | fi |
| 1146 | if [[ "${respect_EPYTHON}" == "1" ]]; then |
1179 | if [[ "${respect_EPYTHON}" == "1" ]]; then |
| 1147 | cat << EOF >> "${file}" |
1180 | cat << EOF >> "${file}" |
| 1148 | EPYTHON = os.environ.get("EPYTHON") |
1181 | EPYTHON = os.environ.get("EPYTHON") |
| 1149 | if EPYTHON: |
1182 | if EPYTHON: |
| 1150 | EPYTHON_matched = EPYTHON_re.match(EPYTHON) |
1183 | PYTHON_ABI = get_PYTHON_ABI(EPYTHON) |
| 1151 | if EPYTHON_matched: |
1184 | if PYTHON_ABI is None: |
| 1152 | PYTHON_ABI = EPYTHON_matched.group(1) |
|
|
| 1153 | else: |
|
|
| 1154 | sys.stderr.write("EPYTHON variable has unrecognized value '%s'\n" % EPYTHON) |
1185 | sys.stderr.write("EPYTHON variable has unrecognized value '%s'\n" % EPYTHON) |
| 1155 | sys.exit(1) |
1186 | sys.exit(1) |
| 1156 | else: |
1187 | else: |
| 1157 | try: |
1188 | try: |
| 1158 | eselect_process = subprocess.Popen(["${EPREFIX}/usr/bin/eselect", "python", "show"${eselect_python_option:+, $(echo "\"")}${eselect_python_option}${eselect_python_option:+$(echo "\"")}], stdout=subprocess.PIPE) |
1189 | eselect_process = subprocess.Popen(["${EPREFIX}/usr/bin/eselect", "python", "show"${eselect_python_option:+, $(echo "\"")}${eselect_python_option}${eselect_python_option:+$(echo "\"")}], stdout=subprocess.PIPE) |
| … | |
… | |
| 1166 | if not isinstance(EPYTHON, str): |
1197 | if not isinstance(EPYTHON, str): |
| 1167 | # Python 3 |
1198 | # Python 3 |
| 1168 | EPYTHON = EPYTHON.decode() |
1199 | EPYTHON = EPYTHON.decode() |
| 1169 | EPYTHON = EPYTHON.rstrip("\n") |
1200 | EPYTHON = EPYTHON.rstrip("\n") |
| 1170 | |
1201 | |
| 1171 | EPYTHON_matched = EPYTHON_re.match(EPYTHON) |
1202 | PYTHON_ABI = get_PYTHON_ABI(EPYTHON) |
| 1172 | if EPYTHON_matched: |
1203 | if PYTHON_ABI is None: |
| 1173 | PYTHON_ABI = EPYTHON_matched.group(1) |
|
|
| 1174 | else: |
|
|
| 1175 | sys.stderr.write("'eselect python show${eselect_python_option:+ }${eselect_python_option}' printed unrecognized value '%s'\n" % EPYTHON) |
1204 | sys.stderr.write("'eselect python show${eselect_python_option:+ }${eselect_python_option}' printed unrecognized value '%s'\n" % EPYTHON) |
| 1176 | sys.exit(1) |
1205 | sys.exit(1) |
|
|
1206 | |
|
|
1207 | wrapper_script_path = os.path.realpath(sys.argv[0]) |
|
|
1208 | target_executable_path = "%s-%s" % (wrapper_script_path, PYTHON_ABI) |
|
|
1209 | if not os.path.exists(target_executable_path): |
|
|
1210 | sys.stderr.write("'%s' does not exist\n" % target_executable_path) |
|
|
1211 | sys.exit(1) |
| 1177 | EOF |
1212 | EOF |
| 1178 | if [[ "$?" != "0" ]]; then |
1213 | if [[ "$?" != "0" ]]; then |
| 1179 | die "${FUNCNAME}(): Generation of '$1' failed" |
1214 | die "${FUNCNAME}(): Generation of '$1' failed" |
| 1180 | fi |
1215 | fi |
| 1181 | else |
1216 | else |
| … | |
… | |
| 1192 | if not isinstance(EPYTHON, str): |
1227 | if not isinstance(EPYTHON, str): |
| 1193 | # Python 3 |
1228 | # Python 3 |
| 1194 | EPYTHON = EPYTHON.decode() |
1229 | EPYTHON = EPYTHON.decode() |
| 1195 | EPYTHON = EPYTHON.rstrip("\n") |
1230 | EPYTHON = EPYTHON.rstrip("\n") |
| 1196 | |
1231 | |
| 1197 | EPYTHON_matched = EPYTHON_re.match(EPYTHON) |
1232 | PYTHON_ABI = get_PYTHON_ABI(EPYTHON) |
| 1198 | if EPYTHON_matched: |
1233 | if PYTHON_ABI is None: |
| 1199 | PYTHON_ABI = EPYTHON_matched.group(1) |
1234 | sys.stderr.write("'eselect python show${eselect_python_option:+ }${eselect_python_option}' printed unrecognized value '%s'\n" % EPYTHON) |
|
|
1235 | sys.exit(1) |
|
|
1236 | |
|
|
1237 | wrapper_script_path = os.path.realpath(sys.argv[0]) |
|
|
1238 | for PYTHON_ABI in [PYTHON_ABI, ${PYTHON_ABIS_list}]: |
|
|
1239 | target_executable_path = "%s-%s" % (wrapper_script_path, PYTHON_ABI) |
|
|
1240 | if os.path.exists(target_executable_path): |
|
|
1241 | break |
| 1200 | else: |
1242 | else: |
| 1201 | sys.stderr.write("'eselect python show${eselect_python_option:+ }${eselect_python_option}' printed unrecognized value '%s'\n" % EPYTHON) |
1243 | sys.stderr.write("No target script exists for '%s'\n" % wrapper_script_path) |
| 1202 | sys.exit(1) |
1244 | sys.exit(1) |
| 1203 | EOF |
1245 | EOF |
| 1204 | if [[ "$?" != "0" ]]; then |
1246 | if [[ "$?" != "0" ]]; then |
| 1205 | die "${FUNCNAME}(): Generation of '$1' failed" |
1247 | die "${FUNCNAME}(): Generation of '$1' failed" |
| 1206 | fi |
1248 | fi |
| 1207 | fi |
1249 | fi |
| 1208 | cat << EOF >> "${file}" |
1250 | cat << EOF >> "${file}" |
| 1209 | |
|
|
| 1210 | wrapper_script_path = os.path.realpath(sys.argv[0]) |
|
|
| 1211 | target_executable_path = "%s-%s" % (wrapper_script_path, PYTHON_ABI) |
|
|
| 1212 | os.environ["GENTOO_PYTHON_PROCESS_NAME"] = os.path.basename(sys.argv[0]) |
|
|
| 1213 | os.environ["GENTOO_PYTHON_WRAPPER_SCRIPT_PATH"] = sys.argv[0] |
|
|
| 1214 | os.environ["GENTOO_PYTHON_TARGET_SCRIPT_PATH"] = target_executable_path |
|
|
| 1215 | if not os.path.exists(target_executable_path): |
|
|
| 1216 | sys.stderr.write("'%s' does not exist\n" % target_executable_path) |
|
|
| 1217 | sys.exit(1) |
|
|
| 1218 | |
1251 | |
| 1219 | target_executable = open(target_executable_path, "rb") |
1252 | target_executable = open(target_executable_path, "rb") |
| 1220 | target_executable_first_line = target_executable.readline() |
1253 | target_executable_first_line = target_executable.readline() |
| 1221 | if not isinstance(target_executable_first_line, str): |
1254 | if not isinstance(target_executable_first_line, str): |
| 1222 | # Python 3 |
1255 | # Python 3 |
| 1223 | target_executable_first_line = target_executable_first_line.decode("utf_8", "replace") |
1256 | target_executable_first_line = target_executable_first_line.decode("utf_8", "replace") |
| 1224 | |
1257 | |
| 1225 | python_shebang_matched = python_shebang_re.match(target_executable_first_line) |
1258 | python_shebang_matched = python_shebang_re.match(target_executable_first_line) |
| 1226 | target_executable.close() |
1259 | target_executable.close() |
| 1227 | |
1260 | |
| 1228 | if python_shebang_matched: |
1261 | if python_shebang_matched is not None: |
| 1229 | try: |
1262 | try: |
| 1230 | python_interpreter_path = "${EPREFIX}/usr/bin/%s" % EPYTHON |
1263 | python_interpreter_path = "${EPREFIX}/usr/bin/%s" % EPYTHON |
| 1231 | os.environ["GENTOO_PYTHON_TARGET_SCRIPT_PATH_VERIFICATION"] = "1" |
1264 | os.environ["GENTOO_PYTHON_TARGET_SCRIPT_PATH_VERIFICATION"] = "1" |
| 1232 | python_verification_process = subprocess.Popen([python_interpreter_path, "-c", "pass"], stdout=subprocess.PIPE) |
1265 | python_verification_process = subprocess.Popen([python_interpreter_path, "-c", "pass"], stdout=subprocess.PIPE) |
| 1233 | del os.environ["GENTOO_PYTHON_TARGET_SCRIPT_PATH_VERIFICATION"] |
1266 | del os.environ["GENTOO_PYTHON_TARGET_SCRIPT_PATH_VERIFICATION"] |
| … | |
… | |
| 1240 | python_verification_output = python_verification_output.decode() |
1273 | python_verification_output = python_verification_output.decode() |
| 1241 | |
1274 | |
| 1242 | if not python_verification_output_re.match(python_verification_output): |
1275 | if not python_verification_output_re.match(python_verification_output): |
| 1243 | raise ValueError |
1276 | raise ValueError |
| 1244 | |
1277 | |
|
|
1278 | if cpython_re.match(EPYTHON) is not None: |
|
|
1279 | os.environ["GENTOO_PYTHON_PROCESS_NAME"] = os.path.basename(sys.argv[0]) |
|
|
1280 | os.environ["GENTOO_PYTHON_WRAPPER_SCRIPT_PATH"] = sys.argv[0] |
|
|
1281 | os.environ["GENTOO_PYTHON_TARGET_SCRIPT_PATH"] = target_executable_path |
|
|
1282 | |
|
|
1283 | if hasattr(os, "execv"): |
| 1245 | os.execv(python_interpreter_path, [python_interpreter_path] + sys.argv) |
1284 | os.execv(python_interpreter_path, [python_interpreter_path] + sys.argv) |
|
|
1285 | else: |
|
|
1286 | sys.exit(subprocess.Popen([python_interpreter_path] + sys.argv).wait()) |
|
|
1287 | except (KeyboardInterrupt, SystemExit): |
|
|
1288 | raise |
| 1246 | except: |
1289 | except: |
| 1247 | pass |
1290 | pass |
| 1248 | if "GENTOO_PYTHON_TARGET_SCRIPT_PATH_VERIFICATION" in os.environ: |
1291 | for variable in ("GENTOO_PYTHON_PROCESS_NAME", "GENTOO_PYTHON_WRAPPER_SCRIPT_PATH", "GENTOO_PYTHON_TARGET_SCRIPT_PATH", "GENTOO_PYTHON_TARGET_SCRIPT_PATH_VERIFICATION"): |
| 1249 | del os.environ["GENTOO_PYTHON_TARGET_SCRIPT_PATH_VERIFICATION"] |
1292 | if variable in os.environ: |
|
|
1293 | del os.environ[variable] |
| 1250 | |
1294 | |
|
|
1295 | if hasattr(os, "execv"): |
| 1251 | os.execv(target_executable_path, sys.argv) |
1296 | os.execv(target_executable_path, sys.argv) |
|
|
1297 | else: |
|
|
1298 | sys.exit(subprocess.Popen([target_executable_path] + sys.argv[1:]).wait()) |
| 1252 | EOF |
1299 | EOF |
| 1253 | if [[ "$?" != "0" ]]; then |
1300 | if [[ "$?" != "0" ]]; then |
| 1254 | die "${FUNCNAME}(): Generation of '$1' failed" |
1301 | die "${FUNCNAME}(): Generation of '$1' failed" |
| 1255 | fi |
1302 | fi |
| 1256 | fperms +x "${file#${ED%/}}" || die "fperms '${file}' failed" |
1303 | fperms +x "${file#${ED%/}}" || die "fperms '${file}' failed" |
| 1257 | done |
1304 | done |
| 1258 | } |
1305 | } |
| 1259 | |
1306 | |
|
|
1307 | # @ECLASS-VARIABLE: PYTHON_VERSIONED_SCRIPTS |
|
|
1308 | # @DESCRIPTION: |
|
|
1309 | # Array of regular expressions of paths to versioned Python scripts. |
|
|
1310 | # Python scripts in /usr/bin and /usr/sbin are versioned by default. |
|
|
1311 | |
|
|
1312 | # @ECLASS-VARIABLE: PYTHON_VERSIONED_EXECUTABLES |
|
|
1313 | # @DESCRIPTION: |
|
|
1314 | # Array of regular expressions of paths to versioned executables (including Python scripts). |
|
|
1315 | |
|
|
1316 | # @ECLASS-VARIABLE: PYTHON_NONVERSIONED_EXECUTABLES |
|
|
1317 | # @DESCRIPTION: |
|
|
1318 | # Array of regular expressions of paths to nonversioned executables (including Python scripts). |
|
|
1319 | |
|
|
1320 | # @FUNCTION: python_merge_intermediate_installation_images |
|
|
1321 | # @USAGE: [-q|--quiet] [--] <intermediate_installation_images_directory> |
|
|
1322 | # @DESCRIPTION: |
|
|
1323 | # Merge intermediate installation images into installation image. |
|
|
1324 | python_merge_intermediate_installation_images() { |
|
|
1325 | _python_check_python_pkg_setup_execution |
|
|
1326 | _python_initialize_prefix_variables |
|
|
1327 | |
|
|
1328 | local b file files=() intermediate_installation_images_directory PYTHON_ABI quiet="0" regex shebang version_executable wrapper_scripts=() wrapper_scripts_set=() |
|
|
1329 | |
|
|
1330 | # Check if phase is src_install(). |
|
|
1331 | [[ "${EBUILD_PHASE}" != "install" ]] && die "${FUNCNAME}() can be used only in src_install() phase" |
|
|
1332 | |
|
|
1333 | while (($#)); do |
|
|
1334 | case "$1" in |
|
|
1335 | -q|--quiet) |
|
|
1336 | quiet="1" |
|
|
1337 | ;; |
|
|
1338 | --) |
|
|
1339 | shift |
|
|
1340 | break |
|
|
1341 | ;; |
|
|
1342 | -*) |
|
|
1343 | die "${FUNCNAME}(): Unrecognized option '$1'" |
|
|
1344 | ;; |
|
|
1345 | *) |
|
|
1346 | break |
|
|
1347 | ;; |
|
|
1348 | esac |
|
|
1349 | shift |
|
|
1350 | done |
|
|
1351 | |
|
|
1352 | if [[ "$#" -ne 1 ]]; then |
|
|
1353 | die "${FUNCNAME}() requires 1 argument" |
|
|
1354 | fi |
|
|
1355 | |
|
|
1356 | intermediate_installation_images_directory="$1" |
|
|
1357 | |
|
|
1358 | if [[ ! -d "${intermediate_installation_images_directory}" ]]; then |
|
|
1359 | die "${FUNCNAME}(): Intermediate installation images directory '${intermediate_installation_images_directory}' does not exist" |
|
|
1360 | fi |
|
|
1361 | |
|
|
1362 | _python_calculate_PYTHON_ABIS |
|
|
1363 | if [[ "$(PYTHON -f --ABI)" == 3.* ]]; then |
|
|
1364 | b="b" |
|
|
1365 | fi |
|
|
1366 | |
|
|
1367 | while read -d $'\0' -r file; do |
|
|
1368 | files+=("${file}") |
|
|
1369 | done < <("$(PYTHON -f)" -c \ |
|
|
1370 | "import os |
|
|
1371 | import sys |
|
|
1372 | |
|
|
1373 | if hasattr(sys.stdout, 'buffer'): |
|
|
1374 | # Python 3 |
|
|
1375 | stdout = sys.stdout.buffer |
|
|
1376 | else: |
|
|
1377 | # Python 2 |
|
|
1378 | stdout = sys.stdout |
|
|
1379 | |
|
|
1380 | files_set = set() |
|
|
1381 | |
|
|
1382 | os.chdir(${b}'${intermediate_installation_images_directory}') |
|
|
1383 | |
|
|
1384 | for PYTHON_ABI in ${b}'${PYTHON_ABIS}'.split(): |
|
|
1385 | for root, dirs, files in os.walk(PYTHON_ABI + ${b}'${EPREFIX}'): |
|
|
1386 | root = root[len(PYTHON_ABI + ${b}'${EPREFIX}')+1:] |
|
|
1387 | files_set.update(root + ${b}'/' + file for file in files) |
|
|
1388 | |
|
|
1389 | for file in sorted(files_set): |
|
|
1390 | stdout.write(file) |
|
|
1391 | stdout.write(${b}'\x00')" || die "${FUNCNAME}(): Failure of extraction of files in intermediate installation images") |
|
|
1392 | |
|
|
1393 | for PYTHON_ABI in ${PYTHON_ABIS}; do |
|
|
1394 | if [[ ! -d "${intermediate_installation_images_directory}/${PYTHON_ABI}" ]]; then |
|
|
1395 | die "${FUNCNAME}(): Intermediate installation image for Python ABI '${PYTHON_ABI}' does not exist" |
|
|
1396 | fi |
|
|
1397 | |
|
|
1398 | pushd "${intermediate_installation_images_directory}/${PYTHON_ABI}${EPREFIX}" > /dev/null || die "pushd failed" |
|
|
1399 | |
|
|
1400 | for file in "${files[@]}"; do |
|
|
1401 | version_executable="0" |
|
|
1402 | for regex in "/usr/bin/.*" "/usr/sbin/.*" "${PYTHON_VERSIONED_SCRIPTS[@]}"; do |
|
|
1403 | if [[ "/${file}" =~ ^${regex}$ ]]; then |
|
|
1404 | version_executable="1" |
|
|
1405 | break |
|
|
1406 | fi |
|
|
1407 | done |
|
|
1408 | for regex in "${PYTHON_VERSIONED_EXECUTABLES[@]}"; do |
|
|
1409 | if [[ "/${file}" =~ ^${regex}$ ]]; then |
|
|
1410 | version_executable="2" |
|
|
1411 | break |
|
|
1412 | fi |
|
|
1413 | done |
|
|
1414 | if [[ "${version_executable}" != "0" ]]; then |
|
|
1415 | for regex in "${PYTHON_NONVERSIONED_EXECUTABLES[@]}"; do |
|
|
1416 | if [[ "/${file}" =~ ^${regex}$ ]]; then |
|
|
1417 | version_executable="0" |
|
|
1418 | break |
|
|
1419 | fi |
|
|
1420 | done |
|
|
1421 | fi |
|
|
1422 | |
|
|
1423 | [[ "${version_executable}" == "0" || ! -x "${file}" ]] && continue |
|
|
1424 | |
|
|
1425 | shebang="$(head -n1 "${file}")" || die "Extraction of shebang from '${file}' failed" |
|
|
1426 | |
|
|
1427 | if [[ "${version_executable}" == "2" ]]; then |
|
|
1428 | wrapper_scripts+=("${ED}${file}") |
|
|
1429 | elif [[ "${version_executable}" == "1" ]]; then |
|
|
1430 | if [[ "${shebang}" =~ ${_PYTHON_SHEBANG_BASE_PART_REGEX}([[:digit:]]+(\.[[:digit:]]+)?)?($|[[:space:]]+) ]]; then |
|
|
1431 | wrapper_scripts+=("${ED}${file}") |
|
|
1432 | else |
|
|
1433 | version_executable="0" |
|
|
1434 | fi |
|
|
1435 | fi |
|
|
1436 | |
|
|
1437 | [[ "${version_executable}" == "0" ]] && continue |
|
|
1438 | |
|
|
1439 | if [[ -e "${file}-${PYTHON_ABI}" ]]; then |
|
|
1440 | die "${FUNCNAME}(): '${EPREFIX}/${file}-${PYTHON_ABI}' already exists" |
|
|
1441 | fi |
|
|
1442 | |
|
|
1443 | mv "${file}" "${file}-${PYTHON_ABI}" || die "Renaming of '${file}' failed" |
|
|
1444 | |
|
|
1445 | if [[ "${shebang}" =~ ${_PYTHON_SHEBANG_BASE_PART_REGEX}[[:digit:]]*($|[[:space:]]+) ]]; then |
|
|
1446 | python_convert_shebangs $([[ "${quiet}" == "1" ]] && echo --quiet) "${PYTHON_ABI}" "${file}-${PYTHON_ABI}" |
|
|
1447 | fi |
|
|
1448 | done |
|
|
1449 | |
|
|
1450 | popd > /dev/null || die "popd failed" |
|
|
1451 | |
|
|
1452 | cp -fr --preserve=all "${intermediate_installation_images_directory}/${PYTHON_ABI}/"* "${ED}" || die "Merging of intermediate installation image for Python ABI '${PYTHON_ABI} into installation image failed" |
|
|
1453 | done |
|
|
1454 | |
|
|
1455 | if [[ "${#wrapper_scripts[@]}" -ge 1 ]]; then |
|
|
1456 | rm -f "${T}/python_wrapper_scripts" |
|
|
1457 | |
|
|
1458 | for file in "${wrapper_scripts[@]}"; do |
|
|
1459 | echo -n "${file}" >> "${T}/python_wrapper_scripts" |
|
|
1460 | echo -en "\x00" >> "${T}/python_wrapper_scripts" |
|
|
1461 | done |
|
|
1462 | |
|
|
1463 | while read -d $'\0' -r file; do |
|
|
1464 | wrapper_scripts_set+=("${file}") |
|
|
1465 | done < <("$(PYTHON -f)" -c \ |
|
|
1466 | "import sys |
|
|
1467 | |
|
|
1468 | if hasattr(sys.stdout, 'buffer'): |
|
|
1469 | # Python 3 |
|
|
1470 | stdout = sys.stdout.buffer |
|
|
1471 | else: |
|
|
1472 | # Python 2 |
|
|
1473 | stdout = sys.stdout |
|
|
1474 | |
|
|
1475 | files = set(open('${T}/python_wrapper_scripts', 'rb').read().rstrip(${b}'\x00').split(${b}'\x00')) |
|
|
1476 | |
|
|
1477 | for file in sorted(files): |
|
|
1478 | stdout.write(file) |
|
|
1479 | stdout.write(${b}'\x00')" || die "${FUNCNAME}(): Failure of extraction of set of wrapper scripts") |
|
|
1480 | |
|
|
1481 | python_generate_wrapper_scripts $([[ "${quiet}" == "1" ]] && echo --quiet) "${wrapper_scripts_set[@]}" |
|
|
1482 | fi |
|
|
1483 | } |
|
|
1484 | |
| 1260 | # ================================================================================================ |
1485 | # ================================================================================================ |
| 1261 | # ========= FUNCTIONS FOR PACKAGES NOT SUPPORTING INSTALLATION FOR MULTIPLE PYTHON ABIS ========== |
1486 | # ========= FUNCTIONS FOR PACKAGES NOT SUPPORTING INSTALLATION FOR MULTIPLE PYTHON ABIS ========== |
| 1262 | # ================================================================================================ |
1487 | # ================================================================================================ |
| 1263 | |
1488 | |
| 1264 | unset EPYTHON PYTHON_ABI |
1489 | unset EPYTHON PYTHON_ABI |
| 1265 | |
1490 | |
| 1266 | # @FUNCTION: python_set_active_version |
1491 | # @FUNCTION: python_set_active_version |
| 1267 | # @USAGE: <CPython_ABI|2|3> |
1492 | # @USAGE: <Python_ABI|2|3> |
| 1268 | # @DESCRIPTION: |
1493 | # @DESCRIPTION: |
| 1269 | # Set specified version of CPython as active version of Python. |
1494 | # Set locally active version of Python. |
|
|
1495 | # If Python_ABI argument is specified, then version of Python corresponding to Python_ABI is used. |
|
|
1496 | # If 2 argument is specified, then active version of CPython 2 is used. |
|
|
1497 | # If 3 argument is specified, then active version of CPython 3 is used. |
| 1270 | # |
1498 | # |
| 1271 | # This function can be used only in pkg_setup() phase. |
1499 | # This function can be used only in pkg_setup() phase. |
| 1272 | python_set_active_version() { |
1500 | python_set_active_version() { |
| 1273 | # Check if phase is pkg_setup(). |
1501 | # Check if phase is pkg_setup(). |
| 1274 | [[ "${EBUILD_PHASE}" != "setup" ]] && die "${FUNCNAME}() can be used only in pkg_setup() phase" |
1502 | [[ "${EBUILD_PHASE}" != "setup" ]] && die "${FUNCNAME}() can be used only in pkg_setup() phase" |
| … | |
… | |
| 1282 | fi |
1510 | fi |
| 1283 | |
1511 | |
| 1284 | _python_initial_sanity_checks |
1512 | _python_initial_sanity_checks |
| 1285 | |
1513 | |
| 1286 | if [[ -z "${PYTHON_ABI}" ]]; then |
1514 | if [[ -z "${PYTHON_ABI}" ]]; then |
| 1287 | if [[ "$1" =~ ^[[:digit:]]+\.[[:digit:]]+$ ]]; then |
1515 | if [[ -n "$(_python_get_implementation --ignore-invalid "$1")" ]]; then |
| 1288 | if ! _python_implementation && ! has_version "dev-lang/python:$1"; then |
1516 | # PYTHON_ABI variable is intended to be used only in ebuilds/eclasses, |
| 1289 | die "${FUNCNAME}(): 'dev-lang/python:$1' is not installed" |
1517 | # so it does not need to be exported to subprocesses. |
|
|
1518 | PYTHON_ABI="$1" |
|
|
1519 | if ! _python_implementation && ! has_version "$(python_get_implementational_package)"; then |
|
|
1520 | die "${FUNCNAME}(): '$(python_get_implementational_package)' is not installed" |
| 1290 | fi |
1521 | fi |
| 1291 | export EPYTHON="$(PYTHON "$1")" |
1522 | export EPYTHON="$(PYTHON "$1")" |
| 1292 | elif [[ "$1" == "2" ]]; then |
1523 | elif [[ "$1" == "2" ]]; then |
| 1293 | if ! _python_implementation && ! has_version "=dev-lang/python-2*"; then |
1524 | if ! _python_implementation && ! has_version "=dev-lang/python-2*"; then |
| 1294 | die "${FUNCNAME}(): '=dev-lang/python-2*' is not installed" |
1525 | die "${FUNCNAME}(): '=dev-lang/python-2*' is not installed" |
| 1295 | fi |
1526 | fi |
| 1296 | export EPYTHON="$(PYTHON -2)" |
1527 | export EPYTHON="$(PYTHON -2)" |
|
|
1528 | PYTHON_ABI="${EPYTHON#python}" |
|
|
1529 | PYTHON_ABI="${PYTHON_ABI%%-*}" |
| 1297 | elif [[ "$1" == "3" ]]; then |
1530 | elif [[ "$1" == "3" ]]; then |
| 1298 | if ! _python_implementation && ! has_version "=dev-lang/python-3*"; then |
1531 | if ! _python_implementation && ! has_version "=dev-lang/python-3*"; then |
| 1299 | die "${FUNCNAME}(): '=dev-lang/python-3*' is not installed" |
1532 | die "${FUNCNAME}(): '=dev-lang/python-3*' is not installed" |
| 1300 | fi |
1533 | fi |
| 1301 | export EPYTHON="$(PYTHON -3)" |
1534 | export EPYTHON="$(PYTHON -3)" |
|
|
1535 | PYTHON_ABI="${EPYTHON#python}" |
|
|
1536 | PYTHON_ABI="${PYTHON_ABI%%-*}" |
| 1302 | else |
1537 | else |
| 1303 | die "${FUNCNAME}(): Unrecognized argument '$1'" |
1538 | die "${FUNCNAME}(): Unrecognized argument '$1'" |
| 1304 | fi |
1539 | fi |
| 1305 | |
|
|
| 1306 | # PYTHON_ABI variable is intended to be used only in ebuilds/eclasses, |
|
|
| 1307 | # so it does not need to be exported to subprocesses. |
|
|
| 1308 | PYTHON_ABI="${EPYTHON#python}" |
|
|
| 1309 | PYTHON_ABI="${PYTHON_ABI%%-*}" |
|
|
| 1310 | fi |
1540 | fi |
| 1311 | |
1541 | |
| 1312 | _python_final_sanity_checks |
1542 | _python_final_sanity_checks |
| 1313 | |
1543 | |
| 1314 | # python-updater checks PYTHON_REQUESTED_ACTIVE_VERSION variable. |
1544 | # python-updater checks PYTHON_REQUESTED_ACTIVE_VERSION variable. |
| … | |
… | |
| 1341 | sys.stdout.write(".".join(str(x) for x in sys.version_info[:2])) |
1571 | sys.stdout.write(".".join(str(x) for x in sys.version_info[:2])) |
| 1342 | if platform.system()[:4] == "Java": |
1572 | if platform.system()[:4] == "Java": |
| 1343 | sys.stdout.write("-jython")' |
1573 | sys.stdout.write("-jython")' |
| 1344 | |
1574 | |
| 1345 | _python_get_implementation() { |
1575 | _python_get_implementation() { |
|
|
1576 | local ignore_invalid="0" |
|
|
1577 | |
|
|
1578 | while (($#)); do |
|
|
1579 | case "$1" in |
|
|
1580 | --ignore-invalid) |
|
|
1581 | ignore_invalid="1" |
|
|
1582 | ;; |
|
|
1583 | --) |
|
|
1584 | shift |
|
|
1585 | break |
|
|
1586 | ;; |
|
|
1587 | -*) |
|
|
1588 | die "${FUNCNAME}(): Unrecognized option '$1'" |
|
|
1589 | ;; |
|
|
1590 | *) |
|
|
1591 | break |
|
|
1592 | ;; |
|
|
1593 | esac |
|
|
1594 | shift |
|
|
1595 | done |
|
|
1596 | |
| 1346 | if [[ "$#" -ne 1 ]]; then |
1597 | if [[ "$#" -ne 1 ]]; then |
| 1347 | die "${FUNCNAME}() requires 1 argument" |
1598 | die "${FUNCNAME}() requires 1 argument" |
| 1348 | fi |
1599 | fi |
| 1349 | |
1600 | |
| 1350 | if [[ "$1" =~ ^[[:digit:]]+\.[[:digit:]]+$ ]]; then |
1601 | if [[ "$1" =~ ^[[:digit:]]+\.[[:digit:]]+$ ]]; then |
| 1351 | echo "CPython" |
1602 | echo "CPython" |
| 1352 | elif [[ "$1" =~ ^[[:digit:]]+\.[[:digit:]]+-jython$ ]]; then |
1603 | elif [[ "$1" =~ ^[[:digit:]]+\.[[:digit:]]+-jython$ ]]; then |
| 1353 | echo "Jython" |
1604 | echo "Jython" |
| 1354 | else |
1605 | else |
|
|
1606 | if [[ "${ignore_invalid}" == "0" ]]; then |
| 1355 | die "${FUNCNAME}(): Unrecognized Python ABI '$1'" |
1607 | die "${FUNCNAME}(): Unrecognized Python ABI '$1'" |
|
|
1608 | fi |
| 1356 | fi |
1609 | fi |
| 1357 | } |
1610 | } |
| 1358 | |
1611 | |
| 1359 | # @FUNCTION: PYTHON |
1612 | # @FUNCTION: PYTHON |
| 1360 | # @USAGE: [-2] [-3] [--ABI] [-a|--absolute-path] [-f|--final-ABI] [--] <Python_ABI="${PYTHON_ABI}"> |
1613 | # @USAGE: [-2] [-3] [--ABI] [-a|--absolute-path] [-f|--final-ABI] [--] <Python_ABI="${PYTHON_ABI}"> |
| 1361 | # @DESCRIPTION: |
1614 | # @DESCRIPTION: |
| 1362 | # Print filename of Python interpreter for specified Python ABI. If Python_ABI argument |
1615 | # Print filename of Python interpreter for specified Python ABI. If Python_ABI argument |
| 1363 | # is ommitted, then PYTHON_ABI environment variable must be set and is used. |
1616 | # is ommitted, then PYTHON_ABI environment variable must be set and is used. |
| 1364 | # If -2 option is specified, then active version of Python 2 is used. |
1617 | # If -2 option is specified, then active version of CPython 2 is used. |
| 1365 | # If -3 option is specified, then active version of Python 3 is used. |
1618 | # If -3 option is specified, then active version of CPython 3 is used. |
| 1366 | # If --final-ABI option is specified, then final ABI from the list of enabled ABIs is used. |
1619 | # If --final-ABI option is specified, then final ABI from the list of enabled ABIs is used. |
| 1367 | # -2, -3 and --final-ABI options and Python_ABI argument cannot be specified simultaneously. |
1620 | # -2, -3 and --final-ABI options and Python_ABI argument cannot be specified simultaneously. |
| 1368 | # If --ABI option is specified, then only specified Python ABI is printed instead of |
1621 | # If --ABI option is specified, then only specified Python ABI is printed instead of |
| 1369 | # filename of Python interpreter. |
1622 | # filename of Python interpreter. |
| 1370 | # If --absolute-path option is specified, then absolute path to Python interpreter is printed. |
1623 | # If --absolute-path option is specified, then absolute path to Python interpreter is printed. |
| … | |
… | |
| 1421 | _python_calculate_PYTHON_ABIS |
1674 | _python_calculate_PYTHON_ABIS |
| 1422 | PYTHON_ABI="${PYTHON_ABIS##* }" |
1675 | PYTHON_ABI="${PYTHON_ABIS##* }" |
| 1423 | elif [[ "${python2}" == "1" ]]; then |
1676 | elif [[ "${python2}" == "1" ]]; then |
| 1424 | PYTHON_ABI="$(eselect python show --python2 --ABI)" |
1677 | PYTHON_ABI="$(eselect python show --python2 --ABI)" |
| 1425 | if [[ -z "${PYTHON_ABI}" ]]; then |
1678 | if [[ -z "${PYTHON_ABI}" ]]; then |
| 1426 | die "${FUNCNAME}(): Active version of Python 2 not set" |
1679 | die "${FUNCNAME}(): Active version of CPython 2 not set" |
| 1427 | elif [[ "${PYTHON_ABI}" != "2."* ]]; then |
1680 | elif [[ "${PYTHON_ABI}" != "2."* ]]; then |
| 1428 | die "${FUNCNAME}(): Internal error in \`eselect python show --python2\`" |
1681 | die "${FUNCNAME}(): Internal error in \`eselect python show --python2\`" |
| 1429 | fi |
1682 | fi |
| 1430 | elif [[ "${python3}" == "1" ]]; then |
1683 | elif [[ "${python3}" == "1" ]]; then |
| 1431 | PYTHON_ABI="$(eselect python show --python3 --ABI)" |
1684 | PYTHON_ABI="$(eselect python show --python3 --ABI)" |
| 1432 | if [[ -z "${PYTHON_ABI}" ]]; then |
1685 | if [[ -z "${PYTHON_ABI}" ]]; then |
| 1433 | die "${FUNCNAME}(): Active version of Python 3 not set" |
1686 | die "${FUNCNAME}(): Active version of CPython 3 not set" |
| 1434 | elif [[ "${PYTHON_ABI}" != "3."* ]]; then |
1687 | elif [[ "${PYTHON_ABI}" != "3."* ]]; then |
| 1435 | die "${FUNCNAME}(): Internal error in \`eselect python show --python3\`" |
1688 | die "${FUNCNAME}(): Internal error in \`eselect python show --python3\`" |
| 1436 | fi |
1689 | fi |
| 1437 | elif _python_package_supporting_installation_for_multiple_python_abis; then |
1690 | elif _python_package_supporting_installation_for_multiple_python_abis; then |
| 1438 | if ! _python_abi-specific_local_scope; then |
1691 | if ! _python_abi-specific_local_scope; then |
| … | |
… | |
| 1464 | return |
1717 | return |
| 1465 | else |
1718 | else |
| 1466 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
1719 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
| 1467 | python_interpreter="python${PYTHON_ABI}" |
1720 | python_interpreter="python${PYTHON_ABI}" |
| 1468 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
1721 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
| 1469 | python_interpreter="jython-${PYTHON_ABI%-jython}" |
1722 | python_interpreter="jython${PYTHON_ABI%-jython}" |
| 1470 | fi |
1723 | fi |
| 1471 | |
1724 | |
| 1472 | if [[ "${absolute_path_output}" == "1" ]]; then |
1725 | if [[ "${absolute_path_output}" == "1" ]]; then |
| 1473 | echo -n "${EPREFIX}/usr/bin/${python_interpreter}" |
1726 | echo -n "${EPREFIX}/usr/bin/${python_interpreter}" |
| 1474 | else |
1727 | else |
| … | |
… | |
| 1562 | else |
1815 | else |
| 1563 | PYTHON_ABI="${PYTHON_ABI:-$(PYTHON --ABI)}" |
1816 | PYTHON_ABI="${PYTHON_ABI:-$(PYTHON --ABI)}" |
| 1564 | fi |
1817 | fi |
| 1565 | fi |
1818 | fi |
| 1566 | |
1819 | |
|
|
1820 | if [[ "${EAPI:-0}" == "0" ]]; then |
| 1567 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
1821 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
| 1568 | echo "dev-lang/python:${PYTHON_ABI}" |
1822 | echo "=dev-lang/python-${PYTHON_ABI}*" |
| 1569 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
1823 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
|
|
1824 | echo "=dev-java/jython-${PYTHON_ABI%-jython}*" |
|
|
1825 | fi |
|
|
1826 | else |
|
|
1827 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
|
|
1828 | echo "dev-lang/python:${PYTHON_ABI}" |
|
|
1829 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
| 1570 | echo "dev-java/jython:${PYTHON_ABI%-jython}" |
1830 | echo "dev-java/jython:${PYTHON_ABI%-jython}" |
|
|
1831 | fi |
| 1571 | fi |
1832 | fi |
| 1572 | } |
1833 | } |
| 1573 | |
1834 | |
| 1574 | # @FUNCTION: python_get_includedir |
1835 | # @FUNCTION: python_get_includedir |
| 1575 | # @USAGE: [-b|--base-path] [-f|--final-ABI] |
1836 | # @USAGE: [-b|--base-path] [-f|--final-ABI] |
| … | |
… | |
| 2114 | |
2375 | |
| 2115 | _python_clean_compiled_modules() { |
2376 | _python_clean_compiled_modules() { |
| 2116 | _python_initialize_prefix_variables |
2377 | _python_initialize_prefix_variables |
| 2117 | _python_set_color_variables |
2378 | _python_set_color_variables |
| 2118 | |
2379 | |
| 2119 | [[ "${FUNCNAME[1]}" =~ ^(python_mod_optimize|python_mod_compile|python_mod_cleanup)$ ]] || die "${FUNCNAME}(): Invalid usage" |
2380 | [[ "${FUNCNAME[1]}" =~ ^(python_mod_optimize|python_mod_cleanup)$ ]] || die "${FUNCNAME}(): Invalid usage" |
| 2120 | |
2381 | |
| 2121 | local base_module_name compiled_file compiled_files=() dir path py_file root |
2382 | local base_module_name compiled_file compiled_files=() dir path py_file root |
| 2122 | |
2383 | |
| 2123 | # Strip trailing slash from EROOT. |
2384 | # Strip trailing slash from EROOT. |
| 2124 | root="${EROOT%/}" |
2385 | root="${EROOT%/}" |
| … | |
… | |
| 2173 | if [[ "${dir}" == "__pycache__" ]]; then |
2434 | if [[ "${dir}" == "__pycache__" ]]; then |
| 2174 | base_module_name="${compiled_file##*/}" |
2435 | base_module_name="${compiled_file##*/}" |
| 2175 | base_module_name="${base_module_name%\$py.class}" |
2436 | base_module_name="${base_module_name%\$py.class}" |
| 2176 | py_file="${compiled_file%__pycache__/*}${base_module_name}.py" |
2437 | py_file="${compiled_file%__pycache__/*}${base_module_name}.py" |
| 2177 | else |
2438 | else |
| 2178 | py_file="${compiled_file%\$py.class}" |
2439 | py_file="${compiled_file%\$py.class}.py" |
| 2179 | fi |
2440 | fi |
| 2180 | if [[ "${EBUILD_PHASE}" == "postinst" ]]; then |
2441 | if [[ "${EBUILD_PHASE}" == "postinst" ]]; then |
| 2181 | [[ -f "${py_file}" && "${compiled_file}" -nt "${py_file}" ]] && continue |
2442 | [[ -f "${py_file}" && "${compiled_file}" -nt "${py_file}" ]] && continue |
| 2182 | else |
2443 | else |
| 2183 | [[ -f "${py_file}" ]] && continue |
2444 | [[ -f "${py_file}" ]] && continue |
| … | |
… | |
| 2201 | done |
2462 | done |
| 2202 | done |
2463 | done |
| 2203 | } |
2464 | } |
| 2204 | |
2465 | |
| 2205 | # @FUNCTION: python_mod_optimize |
2466 | # @FUNCTION: python_mod_optimize |
| 2206 | # @USAGE: [options] [directory|file] |
2467 | # @USAGE: [--allow-evaluated-non-sitedir-paths] [-d directory] [-f] [-l] [-q] [-x regular_expression] [--] <file|directory> [files|directories] |
| 2207 | # @DESCRIPTION: |
2468 | # @DESCRIPTION: |
| 2208 | # If no arguments supplied, it will recompile not recursively all modules |
2469 | # Byte-compile specified Python modules. |
| 2209 | # under sys.path (eg. /usr/lib/python2.6, /usr/lib/python2.6/site-packages). |
|
|
| 2210 | # |
|
|
| 2211 | # If supplied with arguments, it will recompile all modules recursively |
|
|
| 2212 | # in the supplied directory. |
|
|
| 2213 | # |
|
|
| 2214 | # Options passed to this function are passed to compileall.py. |
2470 | # -d, -f, -l, -q and -x options passed to this function are passed to compileall.py. |
| 2215 | # |
2471 | # |
| 2216 | # This function can be used only in pkg_postinst() phase. |
2472 | # This function can be used only in pkg_postinst() phase. |
| 2217 | python_mod_optimize() { |
2473 | python_mod_optimize() { |
| 2218 | _python_check_python_pkg_setup_execution |
2474 | _python_check_python_pkg_setup_execution |
| 2219 | _python_initialize_prefix_variables |
2475 | _python_initialize_prefix_variables |
| 2220 | |
2476 | |
| 2221 | # Check if phase is pkg_postinst(). |
2477 | # Check if phase is pkg_postinst(). |
| 2222 | [[ "${EBUILD_PHASE}" != "postinst" ]] && die "${FUNCNAME}() can be used only in pkg_postinst() phase" |
2478 | [[ "${EBUILD_PHASE}" != "postinst" ]] && die "${FUNCNAME}() can be used only in pkg_postinst() phase" |
| 2223 | |
2479 | |
| 2224 | if ! has "${EAPI:-0}" 0 1 2 || _python_package_supporting_installation_for_multiple_python_abis; then |
2480 | if ! has "${EAPI:-0}" 0 1 2 || _python_package_supporting_installation_for_multiple_python_abis || _python_implementation || [[ "${CATEGORY}/${PN}" == "sys-apps/portage" ]]; then |
| 2225 | # PYTHON_ABI variable cannot be local in packages not supporting installation for multiple Python ABIs. |
2481 | # PYTHON_ABI variable cannot be local in packages not supporting installation for multiple Python ABIs. |
| 2226 | 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=() |
2482 | local allow_evaluated_non_sitedir_paths="0" dir dirs=() evaluated_dirs=() evaluated_files=() file files=() iterated_PYTHON_ABIS options=() other_dirs=() other_files=() previous_PYTHON_ABI="${PYTHON_ABI}" return_code root site_packages_dirs=() site_packages_files=() |
| 2227 | |
2483 | |
| 2228 | if _python_package_supporting_installation_for_multiple_python_abis; then |
2484 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| 2229 | if has "${EAPI:-0}" 0 1 2 3 && [[ -z "${PYTHON_ABIS}" ]]; then |
2485 | if has "${EAPI:-0}" 0 1 2 3 && [[ -z "${PYTHON_ABIS}" ]]; then |
| … | |
… | |
| 2270 | if [[ "${allow_evaluated_non_sitedir_paths}" == "1" ]] && ! _python_package_supporting_installation_for_multiple_python_abis; then |
2526 | if [[ "${allow_evaluated_non_sitedir_paths}" == "1" ]] && ! _python_package_supporting_installation_for_multiple_python_abis; then |
| 2271 | die "${FUNCNAME}(): '--allow-evaluated-non-sitedir-paths' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
2527 | die "${FUNCNAME}(): '--allow-evaluated-non-sitedir-paths' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
| 2272 | fi |
2528 | fi |
| 2273 | |
2529 | |
| 2274 | if [[ "$#" -eq 0 ]]; then |
2530 | if [[ "$#" -eq 0 ]]; then |
| 2275 | ewarn |
2531 | die "${FUNCNAME}(): Missing files or directories" |
| 2276 | ewarn "Deprecation Warning: Not passing of paths to ${FUNCNAME}() is deprecated and will be" |
|
|
| 2277 | ewarn "disallowed on 2010-09-01. Call ${FUNCNAME}() with paths to Python modules." |
|
|
| 2278 | ewarn "The ebuild needs to be fixed. Please report a bug, if it has not been already reported." |
|
|
| 2279 | ewarn |
|
|
| 2280 | fi |
2532 | fi |
| 2281 | |
2533 | |
| 2282 | while (($#)); do |
2534 | while (($#)); do |
| 2283 | if [[ "$1" =~ ^($|(\.|\.\.|/)($|/)) ]]; then |
2535 | if [[ "$1" =~ ^($|(\.|\.\.|/)($|/)) ]]; then |
| 2284 | die "${FUNCNAME}(): Invalid argument '$1'" |
2536 | die "${FUNCNAME}(): Invalid argument '$1'" |
| … | |
… | |
| 2386 | if ((${#other_files[@]})); then |
2638 | if ((${#other_files[@]})); then |
| 2387 | "$(PYTHON ${PYTHON_ABI})" "${root}$(python_get_libdir)/py_compile.py" "${other_files[@]}" || return_code="1" |
2639 | "$(PYTHON ${PYTHON_ABI})" "${root}$(python_get_libdir)/py_compile.py" "${other_files[@]}" || return_code="1" |
| 2388 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" != "Jython" ]]; then |
2640 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" != "Jython" ]]; then |
| 2389 | "$(PYTHON ${PYTHON_ABI})" -O "${root}$(python_get_libdir)/py_compile.py" "${other_files[@]}" &> /dev/null || return_code="1" |
2641 | "$(PYTHON ${PYTHON_ABI})" -O "${root}$(python_get_libdir)/py_compile.py" "${other_files[@]}" &> /dev/null || return_code="1" |
| 2390 | fi |
2642 | fi |
| 2391 | _python_clean_compiled_modules "${other_dirs[@]}" |
2643 | _python_clean_compiled_modules "${other_files[@]}" |
| 2392 | fi |
2644 | fi |
| 2393 | eend "${return_code}" |
2645 | eend "${return_code}" |
| 2394 | fi |
2646 | fi |
| 2395 | else |
2647 | else |
| 2396 | # Deprecated part of python_mod_optimize() |
2648 | # Deprecated part of python_mod_optimize() |
|
|
2649 | # ewarn |
|
|
2650 | # ewarn "Deprecation Warning: Usage of ${FUNCNAME}() in packages not supporting installation" |
|
|
2651 | # ewarn "for multiple Python ABIs in EAPI <=2 is deprecated and will be disallowed on 2011-06-01." |
|
|
2652 | # ewarn "Use EAPI >=3 and call ${FUNCNAME}() with paths having appropriate syntax." |
|
|
2653 | # ewarn "The ebuild needs to be fixed. Please report a bug, if it has not been already reported." |
|
|
2654 | # ewarn |
| 2397 | |
2655 | |
| 2398 | local myroot mydirs=() myfiles=() myopts=() return_code="0" |
2656 | local myroot mydirs=() myfiles=() myopts=() return_code="0" |
| 2399 | |
2657 | |
| 2400 | # strip trailing slash |
2658 | # strip trailing slash |
| 2401 | myroot="${EROOT%/}" |
2659 | myroot="${EROOT%/}" |
| … | |
… | |
| 2423 | esac |
2681 | esac |
| 2424 | shift |
2682 | shift |
| 2425 | done |
2683 | done |
| 2426 | |
2684 | |
| 2427 | if [[ "$#" -eq 0 ]]; then |
2685 | if [[ "$#" -eq 0 ]]; then |
| 2428 | ewarn |
2686 | die "${FUNCNAME}(): Missing files or directories" |
| 2429 | ewarn "Deprecation Warning: Not passing of paths to ${FUNCNAME}() is deprecated and will be" |
|
|
| 2430 | ewarn "disallowed on 2010-09-01. Call ${FUNCNAME}() with paths to Python modules." |
|
|
| 2431 | ewarn "The ebuild needs to be fixed. Please report a bug, if it has not been already reported." |
|
|
| 2432 | ewarn |
|
|
| 2433 | fi |
2687 | fi |
| 2434 | |
2688 | |
| 2435 | while (($#)); do |
2689 | while (($#)); do |
| 2436 | if [[ "$1" =~ ^($|(\.|\.\.|/)($|/)) ]]; then |
2690 | if [[ "$1" =~ ^($|(\.|\.\.|/)($|/)) ]]; then |
| 2437 | die "${FUNCNAME}(): Invalid argument '$1'" |
2691 | die "${FUNCNAME}(): Invalid argument '$1'" |
| 2438 | elif [[ -d "${myroot}/${1#/}" ]]; then |
2692 | elif [[ -d "${myroot}/${1#/}" ]]; then |
| 2439 | mydirs+=("${myroot}/${1#/}") |
2693 | mydirs+=("${myroot}/${1#/}") |
| 2440 | elif [[ -f "${myroot}/${1#/}" ]]; then |
2694 | elif [[ -f "${myroot}/${1#/}" ]]; then |
| 2441 | # Files are passed to python_mod_compile which is EROOT-aware |
2695 | myfiles+=("${myroot}/${1#/}") |
| 2442 | myfiles+=("$1") |
|
|
| 2443 | elif [[ -e "${myroot}/${1#/}" ]]; then |
2696 | elif [[ -e "${myroot}/${1#/}" ]]; then |
| 2444 | eerror "${FUNCNAME}(): ${myroot}/${1#/} is not a regular file or directory" |
2697 | eerror "${FUNCNAME}(): ${myroot}/${1#/} is not a regular file or directory" |
| 2445 | else |
2698 | else |
| 2446 | eerror "${FUNCNAME}(): ${myroot}/${1#/} does not exist" |
2699 | eerror "${FUNCNAME}(): ${myroot}/${1#/} does not exist" |
| 2447 | fi |
2700 | fi |
| … | |
… | |
| 2459 | "$(PYTHON ${PYTHON_ABI})" -O "${myroot}$(python_get_libdir)/compileall.py" "${myopts[@]}" "${mydirs[@]}" &> /dev/null || return_code="1" |
2712 | "$(PYTHON ${PYTHON_ABI})" -O "${myroot}$(python_get_libdir)/compileall.py" "${myopts[@]}" "${mydirs[@]}" &> /dev/null || return_code="1" |
| 2460 | _python_clean_compiled_modules "${mydirs[@]}" |
2713 | _python_clean_compiled_modules "${mydirs[@]}" |
| 2461 | fi |
2714 | fi |
| 2462 | |
2715 | |
| 2463 | if ((${#myfiles[@]})); then |
2716 | if ((${#myfiles[@]})); then |
|
|
2717 | "$(PYTHON ${PYTHON_ABI})" "${myroot}$(python_get_libdir)/py_compile.py" "${myfiles[@]}" || return_code="1" |
|
|
2718 | "$(PYTHON ${PYTHON_ABI})" -O "${myroot}$(python_get_libdir)/py_compile.py" "${myfiles[@]}" &> /dev/null || return_code="1" |
| 2464 | python_mod_compile "${myfiles[@]}" |
2719 | _python_clean_compiled_modules "${myfiles[@]}" |
| 2465 | fi |
2720 | fi |
| 2466 | |
2721 | |
| 2467 | eend "${return_code}" |
2722 | eend "${return_code}" |
| 2468 | fi |
2723 | fi |
| 2469 | } |
2724 | } |
| 2470 | |
2725 | |
| 2471 | # @FUNCTION: python_mod_cleanup |
2726 | # @FUNCTION: python_mod_cleanup |
| 2472 | # @USAGE: [directory|file] |
2727 | # @USAGE: [--allow-evaluated-non-sitedir-paths] [--] <file|directory> [files|directories] |
| 2473 | # @DESCRIPTION: |
2728 | # @DESCRIPTION: |
| 2474 | # Run with optional arguments, where arguments are Python modules. If none given, |
2729 | # Delete orphaned byte-compiled Python modules corresponding to specified Python modules. |
| 2475 | # it will look in /usr/lib/python[0-9].[0-9]. |
|
|
| 2476 | # |
|
|
| 2477 | # It will recursively scan all compiled Python modules in the directories and |
|
|
| 2478 | # determine if they are orphaned (i.e. their corresponding .py files are missing.) |
|
|
| 2479 | # If they are, then it will remove their corresponding .pyc and .pyo files. |
|
|
| 2480 | # |
2730 | # |
| 2481 | # This function can be used only in pkg_postrm() phase. |
2731 | # This function can be used only in pkg_postrm() phase. |
| 2482 | python_mod_cleanup() { |
2732 | python_mod_cleanup() { |
| 2483 | _python_check_python_pkg_setup_execution |
2733 | _python_check_python_pkg_setup_execution |
| 2484 | _python_initialize_prefix_variables |
2734 | _python_initialize_prefix_variables |
| … | |
… | |
| 2525 | |
2775 | |
| 2526 | if [[ "${allow_evaluated_non_sitedir_paths}" == "1" ]] && ! _python_package_supporting_installation_for_multiple_python_abis; then |
2776 | if [[ "${allow_evaluated_non_sitedir_paths}" == "1" ]] && ! _python_package_supporting_installation_for_multiple_python_abis; then |
| 2527 | die "${FUNCNAME}(): '--allow-evaluated-non-sitedir-paths' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
2777 | die "${FUNCNAME}(): '--allow-evaluated-non-sitedir-paths' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
| 2528 | fi |
2778 | fi |
| 2529 | |
2779 | |
| 2530 | if [[ "$#" -gt 0 ]]; then |
2780 | if [[ "$#" -eq 0 ]]; then |
| 2531 | if ! has "${EAPI:-0}" 0 1 2 || _python_package_supporting_installation_for_multiple_python_abis; then |
2781 | die "${FUNCNAME}(): Missing files or directories" |
|
|
2782 | fi |
|
|
2783 | |
|
|
2784 | if ! has "${EAPI:-0}" 0 1 2 || _python_package_supporting_installation_for_multiple_python_abis || _python_implementation || [[ "${CATEGORY}/${PN}" == "sys-apps/portage" ]]; then |
| 2532 | while (($#)); do |
2785 | while (($#)); do |
| 2533 | if [[ "$1" =~ ^($|(\.|\.\.|/)($|/)) ]]; then |
2786 | if [[ "$1" =~ ^($|(\.|\.\.|/)($|/)) ]]; then |
| 2534 | die "${FUNCNAME}(): Invalid argument '$1'" |
2787 | die "${FUNCNAME}(): Invalid argument '$1'" |
| 2535 | elif ! _python_implementation && [[ "$1" =~ ^/usr/lib(32|64)?/python[[:digit:]]+\.[[:digit:]]+ ]]; then |
2788 | elif ! _python_implementation && [[ "$1" =~ ^/usr/lib(32|64)?/python[[:digit:]]+\.[[:digit:]]+ ]]; then |
| 2536 | die "${FUNCNAME}(): Paths of directories / files in site-packages directories must be relative to site-packages directories" |
2789 | die "${FUNCNAME}(): Paths of directories / files in site-packages directories must be relative to site-packages directories" |
| 2537 | elif [[ "$1" =~ ^/ ]]; then |
2790 | elif [[ "$1" =~ ^/ ]]; then |
| 2538 | if _python_package_supporting_installation_for_multiple_python_abis; then |
2791 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| 2539 | if [[ "${allow_evaluated_non_sitedir_paths}" != "1" ]]; then |
2792 | if [[ "${allow_evaluated_non_sitedir_paths}" != "1" ]]; then |
| 2540 | die "${FUNCNAME}(): Absolute paths cannot be used in ebuilds of packages supporting installation for multiple Python ABIs" |
2793 | die "${FUNCNAME}(): Absolute paths cannot be used in ebuilds of packages supporting installation for multiple Python ABIs" |
| 2541 | fi |
|
|
| 2542 | if [[ "$1" != *\$* ]]; then |
|
|
| 2543 | die "${FUNCNAME}(): '$1' has invalid syntax" |
|
|
| 2544 | fi |
|
|
| 2545 | for PYTHON_ABI in ${iterated_PYTHON_ABIS}; do |
|
|
| 2546 | eval "search_paths+=(\"\${root}$1\")" |
|
|
| 2547 | done |
|
|
| 2548 | else |
|
|
| 2549 | search_paths+=("${root}$1") |
|
|
| 2550 | fi |
2794 | fi |
|
|
2795 | if [[ "$1" != *\$* ]]; then |
|
|
2796 | die "${FUNCNAME}(): '$1' has invalid syntax" |
|
|
2797 | fi |
|
|
2798 | for PYTHON_ABI in ${iterated_PYTHON_ABIS}; do |
|
|
2799 | eval "search_paths+=(\"\${root}$1\")" |
|
|
2800 | done |
| 2551 | else |
2801 | else |
|
|
2802 | search_paths+=("${root}$1") |
|
|
2803 | fi |
|
|
2804 | else |
| 2552 | for PYTHON_ABI in ${iterated_PYTHON_ABIS}; do |
2805 | for PYTHON_ABI in ${iterated_PYTHON_ABIS}; do |
| 2553 | search_paths+=("${root}$(python_get_sitedir)/$1") |
2806 | search_paths+=("${root}$(python_get_sitedir)/$1") |
| 2554 | done |
|
|
| 2555 | fi |
|
|
| 2556 | shift |
|
|
| 2557 | done |
|
|
| 2558 | else |
|
|
| 2559 | # Deprecated part of python_mod_cleanup() |
|
|
| 2560 | |
|
|
| 2561 | search_paths=("${@#/}") |
|
|
| 2562 | search_paths=("${search_paths[@]/#/${root}/}") |
|
|
| 2563 | fi |
|
|
| 2564 | else |
|
|
| 2565 | ewarn |
|
|
| 2566 | ewarn "Deprecation Warning: Not passing of paths to ${FUNCNAME}() is deprecated and will be" |
|
|
| 2567 | ewarn "disallowed on 2010-09-01. Call ${FUNCNAME}() with paths to Python modules." |
|
|
| 2568 | ewarn "The ebuild needs to be fixed. Please report a bug, if it has not been already reported." |
|
|
| 2569 | ewarn |
|
|
| 2570 | |
|
|
| 2571 | for dir in "${root}"/usr/lib*; do |
|
|
| 2572 | if [[ -d "${dir}" && ! -L "${dir}" ]]; then |
|
|
| 2573 | for sitedir in "${dir}"/python*/site-packages; do |
|
|
| 2574 | if [[ -d "${sitedir}" ]]; then |
|
|
| 2575 | search_paths+=("${sitedir}") |
|
|
| 2576 | fi |
|
|
| 2577 | done |
2807 | done |
| 2578 | fi |
2808 | fi |
|
|
2809 | shift |
| 2579 | done |
2810 | done |
| 2580 | for sitedir in "${root}"/usr/share/jython-*/Lib/site-packages; do |
2811 | else |
| 2581 | if [[ -d "${sitedir}" ]]; then |
2812 | # Deprecated part of python_mod_cleanup() |
|
|
2813 | # ewarn |
|
|
2814 | # ewarn "Deprecation Warning: Usage of ${FUNCNAME}() in packages not supporting installation" |
|
|
2815 | # ewarn "for multiple Python ABIs in EAPI <=2 is deprecated and will be disallowed on 2011-06-01." |
|
|
2816 | # ewarn "Use EAPI >=3 and call ${FUNCNAME}() with paths having appropriate syntax." |
|
|
2817 | # ewarn "The ebuild needs to be fixed. Please report a bug, if it has not been already reported." |
|
|
2818 | # ewarn |
|
|
2819 | |
| 2582 | search_paths+=("${sitedir}") |
2820 | search_paths=("${@#/}") |
| 2583 | fi |
2821 | search_paths=("${search_paths[@]/#/${root}/}") |
| 2584 | done |
|
|
| 2585 | fi |
2822 | fi |
| 2586 | |
2823 | |
| 2587 | _python_clean_compiled_modules "${search_paths[@]}" |
2824 | _python_clean_compiled_modules "${search_paths[@]}" |
| 2588 | } |
2825 | } |
| 2589 | |
2826 | |
| … | |
… | |
| 2607 | python_tkinter_exists() { |
2844 | python_tkinter_exists() { |
| 2608 | eerror "Use PYTHON_USE_WITH=\"xml\" and python_pkg_setup() instead of ${FUNCNAME}()." |
2845 | eerror "Use PYTHON_USE_WITH=\"xml\" and python_pkg_setup() instead of ${FUNCNAME}()." |
| 2609 | die "${FUNCNAME}() is banned" |
2846 | die "${FUNCNAME}() is banned" |
| 2610 | } |
2847 | } |
| 2611 | |
2848 | |
| 2612 | # @FUNCTION: python_mod_compile |
2849 | # Scheduled for deletion on 2011-04-01. |
| 2613 | # @USAGE: <file> [more files ...] |
|
|
| 2614 | # @DESCRIPTION: |
|
|
| 2615 | # Given filenames, it will pre-compile the module's .pyc and .pyo. |
|
|
| 2616 | # This function can be used only in pkg_postinst() phase. |
|
|
| 2617 | # |
|
|
| 2618 | # Example: |
|
|
| 2619 | # python_mod_compile /usr/lib/python2.3/site-packages/pygoogle.py |
|
|
| 2620 | # |
|
|
| 2621 | python_mod_compile() { |
2850 | python_mod_compile() { |
| 2622 | if ! has "${EAPI:-0}" 0 1 2 || _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
| 2623 | eerror "Use python_mod_optimize() instead of ${FUNCNAME}()." |
2851 | eerror "Use python_mod_optimize() instead of ${FUNCNAME}()." |
| 2624 | die "${FUNCNAME}() cannot be used in this EAPI" |
2852 | die "${FUNCNAME}() is banned" |
| 2625 | fi |
|
|
| 2626 | |
|
|
| 2627 | _python_initialize_prefix_variables |
|
|
| 2628 | _python_set_color_variables |
|
|
| 2629 | |
|
|
| 2630 | if [[ "${FUNCNAME[1]}" != "python_mod_optimize" ]]; then |
|
|
| 2631 | ewarn |
|
|
| 2632 | ewarn "Deprecation Warning: ${FUNCNAME}() is deprecated and will be banned on 2010-09-01." |
|
|
| 2633 | ewarn "Use python_mod_optimize() instead of ${FUNCNAME}()." |
|
|
| 2634 | ewarn "The ebuild needs to be fixed. Please report a bug, if it has not been already reported." |
|
|
| 2635 | ewarn |
|
|
| 2636 | fi |
|
|
| 2637 | |
|
|
| 2638 | local f myroot myfiles=() |
|
|
| 2639 | |
|
|
| 2640 | # Check if phase is pkg_postinst() |
|
|
| 2641 | [[ "${EBUILD_PHASE}" != "postinst" ]] && die "${FUNCNAME}() can be used only in pkg_postinst() phase" |
|
|
| 2642 | |
|
|
| 2643 | # strip trailing slash |
|
|
| 2644 | myroot="${EROOT%/}" |
|
|
| 2645 | |
|
|
| 2646 | # respect EROOT |
|
|
| 2647 | for f in "$@"; do |
|
|
| 2648 | [[ -f "${myroot}/${f}" ]] && myfiles+=("${myroot}/${f}") |
|
|
| 2649 | done |
|
|
| 2650 | |
|
|
| 2651 | PYTHON_ABI="$(PYTHON --ABI)" |
|
|
| 2652 | |
|
|
| 2653 | if ((${#myfiles[@]})); then |
|
|
| 2654 | "$(PYTHON ${PYTHON_ABI})" "${myroot}$(python_get_libdir)/py_compile.py" "${myfiles[@]}" |
|
|
| 2655 | "$(PYTHON ${PYTHON_ABI})" -O "${myroot}$(python_get_libdir)/py_compile.py" "${myfiles[@]}" &> /dev/null |
|
|
| 2656 | _python_clean_compiled_modules "${myfiles[@]}" |
|
|
| 2657 | else |
|
|
| 2658 | ewarn "No files to compile!" |
|
|
| 2659 | fi |
|
|
| 2660 | } |
2853 | } |