| 1 | # Copyright 1999-2011 Gentoo Foundation |
1 | # Copyright 1999-2012 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/eclass/python.eclass,v 1.142 2011/12/18 23:38:11 robbat2 Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/python.eclass,v 1.161 2012/11/24 21:07:14 mgorny Exp $ |
| 4 | |
4 | |
| 5 | # @ECLASS: python.eclass |
5 | # @ECLASS: python.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # Gentoo Python Project <python@gentoo.org> |
7 | # Gentoo Python Project <python@gentoo.org> |
| 8 | # @BLURB: Eclass for Python packages |
8 | # @BLURB: Eclass for Python packages |
| 9 | # @DESCRIPTION: |
9 | # @DESCRIPTION: |
| 10 | # The python eclass contains miscellaneous, useful functions for Python packages. |
10 | # The python eclass contains miscellaneous, useful functions for Python packages. |
| 11 | |
11 | |
|
|
12 | if [[ ${_PYTHON_UTILS_R1} ]]; then |
|
|
13 | die 'python.eclass can not be used with python-r1 suite eclasses.' |
|
|
14 | fi |
|
|
15 | |
|
|
16 | # Must call inherit before EXPORT_FUNCTIONS to avoid QA warning. |
|
|
17 | if [[ -z "${_PYTHON_ECLASS_INHERITED}" ]]; then |
| 12 | inherit multilib |
18 | inherit multilib |
|
|
19 | fi |
| 13 | |
20 | |
|
|
21 | # Export pkg_setup every time to avoid issues with eclass inheritance order. |
|
|
22 | if ! has "${EAPI:-0}" 0 1 2 3 || { has "${EAPI:-0}" 2 3 && [[ -n "${PYTHON_USE_WITH}" || -n "${PYTHON_USE_WITH_OR}" ]]; }; then |
|
|
23 | EXPORT_FUNCTIONS pkg_setup |
|
|
24 | fi |
|
|
25 | |
|
|
26 | # Avoid processing this eclass more than once. |
|
|
27 | if [[ -z "${_PYTHON_ECLASS_INHERITED}" ]]; then |
|
|
28 | _PYTHON_ECLASS_INHERITED="1" |
|
|
29 | |
| 14 | if ! has "${EAPI:-0}" 0 1 2 3 4; then |
30 | if ! has "${EAPI:-0}" 0 1 2 3 4 5; then |
| 15 | die "API of python.eclass in EAPI=\"${EAPI}\" not established" |
31 | die "API of python.eclass in EAPI=\"${EAPI}\" not established" |
| 16 | fi |
32 | fi |
| 17 | |
33 | |
| 18 | _CPYTHON2_GLOBALLY_SUPPORTED_ABIS=(2.4 2.5 2.6 2.7) |
34 | _CPYTHON2_GLOBALLY_SUPPORTED_ABIS=(2.4 2.5 2.6 2.7) |
| 19 | _CPYTHON3_GLOBALLY_SUPPORTED_ABIS=(3.1 3.2) |
35 | _CPYTHON3_GLOBALLY_SUPPORTED_ABIS=(3.1 3.2 3.3) |
| 20 | _JYTHON_GLOBALLY_SUPPORTED_ABIS=(2.5-jython) |
36 | _JYTHON_GLOBALLY_SUPPORTED_ABIS=(2.5-jython) |
| 21 | _PYPY_GLOBALLY_SUPPORTED_ABIS=(2.7-pypy-1.7) |
37 | _PYPY_GLOBALLY_SUPPORTED_ABIS=(2.7-pypy-1.7 2.7-pypy-1.8 2.7-pypy-1.9) |
| 22 | _PYTHON_GLOBALLY_SUPPORTED_ABIS=(${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]} ${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]} ${_JYTHON_GLOBALLY_SUPPORTED_ABIS[@]} ${_PYPY_GLOBALLY_SUPPORTED_ABIS[@]}) |
38 | _PYTHON_GLOBALLY_SUPPORTED_ABIS=(${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]} ${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]} ${_JYTHON_GLOBALLY_SUPPORTED_ABIS[@]} ${_PYPY_GLOBALLY_SUPPORTED_ABIS[@]}) |
| 23 | |
39 | |
| 24 | # ================================================================================================ |
40 | # ================================================================================================ |
| 25 | # ===================================== HANDLING OF METADATA ===================================== |
41 | # ===================================== HANDLING OF METADATA ===================================== |
| 26 | # ================================================================================================ |
42 | # ================================================================================================ |
| … | |
… | |
| 86 | |
102 | |
| 87 | return 1 |
103 | return 1 |
| 88 | fi |
104 | fi |
| 89 | } |
105 | } |
| 90 | |
106 | |
|
|
107 | _python_implementation() { |
|
|
108 | if [[ "${CATEGORY}/${PN}" == "dev-lang/python" ]]; then |
|
|
109 | return 0 |
|
|
110 | elif [[ "${CATEGORY}/${PN}" == "dev-java/jython" ]]; then |
|
|
111 | return 0 |
|
|
112 | elif [[ "${CATEGORY}/${PN}" == "dev-python/pypy" ]]; then |
|
|
113 | return 0 |
|
|
114 | else |
|
|
115 | return 1 |
|
|
116 | fi |
|
|
117 | } |
|
|
118 | |
| 91 | _python_package_supporting_installation_for_multiple_python_abis() { |
119 | _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 |
120 | [[ -n "${SUPPORT_PYTHON_ABIS}" ]] |
| 94 | return 0 |
|
|
| 95 | else |
|
|
| 96 | return 1 |
|
|
| 97 | fi |
|
|
| 98 | else |
|
|
| 99 | die "${FUNCNAME}(): Support for EAPI=\"${EAPI}\" not implemented" |
|
|
| 100 | fi |
|
|
| 101 | } |
121 | } |
| 102 | |
122 | |
| 103 | # @ECLASS-VARIABLE: PYTHON_DEPEND |
123 | # @ECLASS-VARIABLE: PYTHON_DEPEND |
| 104 | # @DESCRIPTION: |
124 | # @DESCRIPTION: |
| 105 | # Specification of dependency on dev-lang/python. |
125 | # Specification of dependency on dev-lang/python. |
| … | |
… | |
| 231 | else |
251 | else |
| 232 | die "Invalid syntax of PYTHON_DEPEND" |
252 | die "Invalid syntax of PYTHON_DEPEND" |
| 233 | fi |
253 | fi |
| 234 | } |
254 | } |
| 235 | |
255 | |
|
|
256 | if _python_implementation; then |
| 236 | DEPEND=">=app-admin/eselect-python-20091230" |
257 | DEPEND=">=app-admin/eselect-python-20091230" |
| 237 | RDEPEND="${DEPEND}" |
258 | RDEPEND="${DEPEND}" |
|
|
259 | PDEPEND="app-admin/python-updater" |
|
|
260 | fi |
| 238 | |
261 | |
| 239 | if [[ -n "${PYTHON_DEPEND}" ]]; then |
262 | if [[ -n "${PYTHON_DEPEND}" ]]; then |
| 240 | _python_parse_PYTHON_DEPEND |
263 | _python_parse_PYTHON_DEPEND |
| 241 | else |
264 | else |
| 242 | _PYTHON_ATOMS=("dev-lang/python") |
265 | _PYTHON_ATOMS=("dev-lang/python") |
| … | |
… | |
| 281 | _PYTHON_USE_WITH_ATOMS="${_PYTHON_USE_WITH_ATOMS_ARRAY[@]}" |
304 | _PYTHON_USE_WITH_ATOMS="${_PYTHON_USE_WITH_ATOMS_ARRAY[@]}" |
| 282 | fi |
305 | fi |
| 283 | if [[ -n "${PYTHON_USE_WITH_OPT}" ]]; then |
306 | if [[ -n "${PYTHON_USE_WITH_OPT}" ]]; then |
| 284 | _PYTHON_USE_WITH_ATOMS="${PYTHON_USE_WITH_OPT}? ( ${_PYTHON_USE_WITH_ATOMS} )" |
307 | _PYTHON_USE_WITH_ATOMS="${PYTHON_USE_WITH_OPT}? ( ${_PYTHON_USE_WITH_ATOMS} )" |
| 285 | fi |
308 | fi |
| 286 | DEPEND+=" ${_PYTHON_USE_WITH_ATOMS}" |
309 | DEPEND+="${DEPEND:+ }${_PYTHON_USE_WITH_ATOMS}" |
| 287 | RDEPEND+=" ${_PYTHON_USE_WITH_ATOMS}" |
310 | RDEPEND+="${RDEPEND:+ }${_PYTHON_USE_WITH_ATOMS}" |
| 288 | unset _PYTHON_ATOM _PYTHON_USE_WITH_ATOMS _PYTHON_USE_WITH_ATOMS_ARRAY |
311 | unset _PYTHON_ATOM _PYTHON_USE_WITH_ATOMS _PYTHON_USE_WITH_ATOMS_ARRAY |
| 289 | fi |
312 | fi |
| 290 | |
313 | |
| 291 | unset _PYTHON_ATOMS |
314 | unset _PYTHON_ATOMS |
| 292 | |
315 | |
| 293 | # ================================================================================================ |
316 | # ================================================================================================ |
| 294 | # =================================== MISCELLANEOUS FUNCTIONS ==================================== |
317 | # =================================== MISCELLANEOUS FUNCTIONS ==================================== |
| 295 | # ================================================================================================ |
318 | # ================================================================================================ |
| 296 | |
|
|
| 297 | _python_implementation() { |
|
|
| 298 | if [[ "${CATEGORY}/${PN}" == "dev-lang/python" ]]; then |
|
|
| 299 | return 0 |
|
|
| 300 | elif [[ "${CATEGORY}/${PN}" == "dev-java/jython" ]]; then |
|
|
| 301 | return 0 |
|
|
| 302 | elif [[ "${CATEGORY}/${PN}" == "dev-python/pypy" ]]; then |
|
|
| 303 | return 0 |
|
|
| 304 | else |
|
|
| 305 | return 1 |
|
|
| 306 | fi |
|
|
| 307 | } |
|
|
| 308 | |
319 | |
| 309 | _python_abi-specific_local_scope() { |
320 | _python_abi-specific_local_scope() { |
| 310 | [[ " ${FUNCNAME[@]:2} " =~ " "(_python_final_sanity_checks|python_execute_function|python_mod_optimize|python_mod_cleanup)" " ]] |
321 | [[ " ${FUNCNAME[@]:2} " =~ " "(_python_final_sanity_checks|python_execute_function|python_mod_optimize|python_mod_cleanup)" " ]] |
| 311 | } |
322 | } |
| 312 | |
323 | |
| … | |
… | |
| 461 | fi |
472 | fi |
| 462 | |
473 | |
| 463 | PYTHON_PKG_SETUP_EXECUTED="1" |
474 | PYTHON_PKG_SETUP_EXECUTED="1" |
| 464 | } |
475 | } |
| 465 | |
476 | |
| 466 | if ! has "${EAPI:-0}" 0 1 2 3 || { has "${EAPI:-0}" 2 3 && [[ -n "${PYTHON_USE_WITH}" || -n "${PYTHON_USE_WITH_OR}" ]]; }; then |
|
|
| 467 | EXPORT_FUNCTIONS pkg_setup |
|
|
| 468 | fi |
|
|
| 469 | |
|
|
| 470 | _PYTHON_SHEBANG_BASE_PART_REGEX='^#![[:space:]]*([^[:space:]]*/usr/bin/env[[:space:]]+)?([^[:space:]]*/)?(jython|pypy-c|python)' |
477 | _PYTHON_SHEBANG_BASE_PART_REGEX='^#![[:space:]]*([^[:space:]]*/usr/bin/env[[:space:]]+)?([^[:space:]]*/)?(jython|pypy-c|python)' |
| 471 | |
478 | |
| 472 | # @FUNCTION: python_convert_shebangs |
479 | # @FUNCTION: python_convert_shebangs |
| 473 | # @USAGE: [-q|--quiet] [-r|--recursive] [-x|--only-executables] [--] <Python_ABI|Python_version> <file|directory> [files|directories] |
480 | # @USAGE: [-q|--quiet] [-r|--recursive] [-x|--only-executables] [--] <Python_ABI|Python_version> <file|directory> [files|directories] |
| 474 | # @DESCRIPTION: |
481 | # @DESCRIPTION: |
| 475 | # Convert shebangs in specified files. Directories can be specified only with --recursive option. |
482 | # Convert shebangs in specified files. Directories can be specified only with --recursive option. |
| 476 | python_convert_shebangs() { |
483 | python_convert_shebangs() { |
| 477 | _python_check_python_pkg_setup_execution |
484 | _python_check_python_pkg_setup_execution |
| 478 | |
485 | |
| 479 | local argument file files=() only_executables="0" python_interpreter quiet="0" recursive="0" |
486 | local argument file files=() only_executables="0" python_interpreter quiet="0" recursive="0" shebangs_converted="0" |
| 480 | |
487 | |
| 481 | while (($#)); do |
488 | while (($#)); do |
| 482 | case "$1" in |
489 | case "$1" in |
| 483 | -r|--recursive) |
490 | -r|--recursive) |
| 484 | recursive="1" |
491 | recursive="1" |
| … | |
… | |
| 539 | [[ "${only_executables}" == "1" && ! -x "${file}" ]] && continue |
546 | [[ "${only_executables}" == "1" && ! -x "${file}" ]] && continue |
| 540 | |
547 | |
| 541 | if [[ "$(head -n1 "${file}")" =~ ${_PYTHON_SHEBANG_BASE_PART_REGEX} ]]; then |
548 | if [[ "$(head -n1 "${file}")" =~ ${_PYTHON_SHEBANG_BASE_PART_REGEX} ]]; then |
| 542 | [[ "$(sed -ne "2p" "${file}")" =~ ^"# Gentoo '".*"' wrapper script generated by python_generate_wrapper_scripts()"$ ]] && continue |
549 | [[ "$(sed -ne "2p" "${file}")" =~ ^"# Gentoo '".*"' wrapper script generated by python_generate_wrapper_scripts()"$ ]] && continue |
| 543 | |
550 | |
|
|
551 | shebangs_converted="1" |
|
|
552 | |
| 544 | if [[ "${quiet}" == "0" ]]; then |
553 | if [[ "${quiet}" == "0" ]]; then |
| 545 | einfo "Converting shebang in '${file}'" |
554 | einfo "Converting shebang in '${file}'" |
| 546 | fi |
555 | fi |
| 547 | |
556 | |
| 548 | 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" |
557 | 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" |
| 549 | fi |
558 | fi |
|
|
559 | done |
|
|
560 | |
|
|
561 | if [[ "${shebangs_converted}" == "0" ]]; then |
|
|
562 | ewarn "${FUNCNAME}(): Python scripts not found" |
|
|
563 | fi |
|
|
564 | } |
|
|
565 | |
|
|
566 | # @FUNCTION: python_clean_py-compile_files |
|
|
567 | # @USAGE: [-q|--quiet] |
|
|
568 | # @DESCRIPTION: |
|
|
569 | # Clean py-compile files to disable byte-compilation. |
|
|
570 | python_clean_py-compile_files() { |
|
|
571 | _python_check_python_pkg_setup_execution |
|
|
572 | |
|
|
573 | local file files=() quiet="0" |
|
|
574 | |
|
|
575 | while (($#)); do |
|
|
576 | case "$1" in |
|
|
577 | -q|--quiet) |
|
|
578 | quiet="1" |
|
|
579 | ;; |
|
|
580 | -*) |
|
|
581 | die "${FUNCNAME}(): Unrecognized option '$1'" |
|
|
582 | ;; |
|
|
583 | *) |
|
|
584 | die "${FUNCNAME}(): Invalid usage" |
|
|
585 | ;; |
|
|
586 | esac |
|
|
587 | shift |
|
|
588 | done |
|
|
589 | |
|
|
590 | while read -d $'\0' -r file; do |
|
|
591 | files+=("${file#./}") |
|
|
592 | done < <(find -name py-compile -type f -print0) |
|
|
593 | |
|
|
594 | for file in "${files[@]}"; do |
|
|
595 | if [[ "${quiet}" == "0" ]]; then |
|
|
596 | einfo "Cleaning '${file}' file" |
|
|
597 | fi |
|
|
598 | echo "#!/bin/sh" > "${file}" |
| 550 | done |
599 | done |
| 551 | } |
600 | } |
| 552 | |
601 | |
| 553 | # @FUNCTION: python_clean_installation_image |
602 | # @FUNCTION: python_clean_installation_image |
| 554 | # @USAGE: [-q|--quiet] |
603 | # @USAGE: [-q|--quiet] |
| … | |
… | |
| 697 | if [[ -n "${PYTHON_EXPORT_PHASE_FUNCTIONS}" ]]; then |
746 | if [[ -n "${PYTHON_EXPORT_PHASE_FUNCTIONS}" ]]; then |
| 698 | EXPORT_FUNCTIONS src_prepare src_configure src_compile src_test src_install |
747 | EXPORT_FUNCTIONS src_prepare src_configure src_compile src_test src_install |
| 699 | fi |
748 | fi |
| 700 | fi |
749 | fi |
| 701 | |
750 | |
| 702 | if has "${EAPI:-0}" 0 1 2 3 4; then |
|
|
| 703 | unset PYTHON_ABIS |
751 | unset PYTHON_ABIS |
| 704 | fi |
|
|
| 705 | |
752 | |
| 706 | _python_calculate_PYTHON_ABIS() { |
753 | _python_calculate_PYTHON_ABIS() { |
| 707 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
754 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
| 708 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
755 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
| 709 | fi |
756 | fi |
| 710 | |
757 | |
| 711 | _python_initial_sanity_checks |
758 | _python_initial_sanity_checks |
| 712 | |
759 | |
| 713 | if [[ "$(declare -p PYTHON_ABIS 2> /dev/null)" != "declare -x PYTHON_ABIS="* ]] && has "${EAPI:-0}" 0 1 2 3 4; then |
760 | if [[ "$(declare -p PYTHON_ABIS 2> /dev/null)" != "declare -x PYTHON_ABIS="* ]]; then |
| 714 | local PYTHON_ABI |
761 | local PYTHON_ABI |
| 715 | |
762 | |
| 716 | if [[ "$(declare -p USE_PYTHON 2> /dev/null)" == "declare -x USE_PYTHON="* ]]; then |
763 | if [[ "$(declare -p USE_PYTHON 2> /dev/null)" == "declare -x USE_PYTHON="* ]]; then |
| 717 | local cpython_enabled="0" |
764 | local cpython_enabled="0" |
| 718 | |
765 | |
| … | |
… | |
| 792 | die "Active version of CPython 3 is not supported by ${CATEGORY}/${PF}" |
839 | die "Active version of CPython 3 is not supported by ${CATEGORY}/${PF}" |
| 793 | fi |
840 | fi |
| 794 | else |
841 | else |
| 795 | python3_version="" |
842 | python3_version="" |
| 796 | fi |
843 | fi |
|
|
844 | fi |
|
|
845 | |
|
|
846 | if [[ -z "${python2_version}" && -z "${python3_version}" ]]; then |
|
|
847 | eerror "${CATEGORY}/${PF} requires at least one of the following packages:" |
|
|
848 | for PYTHON_ABI in "${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]}" "${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]}"; do |
|
|
849 | if ! _python_check_python_abi_matching --patterns-list "${PYTHON_ABI}" "${RESTRICT_PYTHON_ABIS}"; then |
|
|
850 | eerror " dev-lang/python:${PYTHON_ABI}" |
|
|
851 | fi |
|
|
852 | done |
|
|
853 | die "No supported version of CPython installed" |
| 797 | fi |
854 | fi |
| 798 | |
855 | |
| 799 | if [[ -n "${python2_version}" && "${python_version}" == "2."* && "${python_version}" != "${python2_version}" ]]; then |
856 | if [[ -n "${python2_version}" && "${python_version}" == "2."* && "${python_version}" != "${python2_version}" ]]; then |
| 800 | eerror "Python wrapper is configured incorrectly or '${EPREFIX}/usr/bin/python2' symlink" |
857 | eerror "Python wrapper is configured incorrectly or '${EPREFIX}/usr/bin/python2' symlink" |
| 801 | eerror "is set incorrectly. Use \`eselect python\` to fix configuration." |
858 | eerror "is set incorrectly. Use \`eselect python\` to fix configuration." |
| … | |
… | |
| 959 | python_default_function() { |
1016 | python_default_function() { |
| 960 | emake "$@" |
1017 | emake "$@" |
| 961 | } |
1018 | } |
| 962 | elif [[ "${EBUILD_PHASE}" == "test" ]]; then |
1019 | elif [[ "${EBUILD_PHASE}" == "test" ]]; then |
| 963 | python_default_function() { |
1020 | python_default_function() { |
|
|
1021 | # Stolen from portage's _eapi0_src_test() |
|
|
1022 | local emake_cmd="${MAKE:-make} ${MAKEOPTS} ${EXTRA_EMAKE}" |
| 964 | if emake -j1 -n check &> /dev/null; then |
1023 | if ${emake_cmd} -j1 -n check &> /dev/null; then |
| 965 | emake -j1 check "$@" |
1024 | ${emake_cmd} -j1 check "$@" |
| 966 | elif emake -j1 -n test &> /dev/null; then |
1025 | elif ${emake_cmd} -j1 -n test &> /dev/null; then |
| 967 | emake -j1 test "$@" |
1026 | ${emake_cmd} -j1 test "$@" |
| 968 | fi |
1027 | fi |
| 969 | } |
1028 | } |
| 970 | elif [[ "${EBUILD_PHASE}" == "install" ]]; then |
1029 | elif [[ "${EBUILD_PHASE}" == "install" ]]; then |
| 971 | python_default_function() { |
1030 | python_default_function() { |
| 972 | emake DESTDIR="${D}" install "$@" |
1031 | emake DESTDIR="${D}" install "$@" |
| … | |
… | |
| 1240 | cpython_shebang_re = re.compile(r"^#![ \t]*(?:${EPREFIX}/usr/bin/python|(?:${EPREFIX})?/usr/bin/env[ \t]+(?:${EPREFIX}/usr/bin/)?python)") |
1299 | cpython_shebang_re = re.compile(r"^#![ \t]*(?:${EPREFIX}/usr/bin/python|(?:${EPREFIX})?/usr/bin/env[ \t]+(?:${EPREFIX}/usr/bin/)?python)") |
| 1241 | python_shebang_options_re = re.compile(r"^#![ \t]*${EPREFIX}/usr/bin/(?:jython|pypy-c|python)(?:\d+(?:\.\d+)?)?[ \t]+(-\S)") |
1300 | python_shebang_options_re = re.compile(r"^#![ \t]*${EPREFIX}/usr/bin/(?:jython|pypy-c|python)(?:\d+(?:\.\d+)?)?[ \t]+(-\S)") |
| 1242 | python_verification_output_re = re.compile("^GENTOO_PYTHON_TARGET_SCRIPT_PATH supported\n$") |
1301 | python_verification_output_re = re.compile("^GENTOO_PYTHON_TARGET_SCRIPT_PATH supported\n$") |
| 1243 | |
1302 | |
| 1244 | pypy_versions_mapping = { |
1303 | pypy_versions_mapping = { |
| 1245 | "1.5": "2.7" |
1304 | "1.5": "2.7", |
|
|
1305 | "1.6": "2.7", |
|
|
1306 | "1.7": "2.7", |
|
|
1307 | "1.8": "2.7", |
|
|
1308 | "1.9": "2.7", |
| 1246 | } |
1309 | } |
| 1247 | |
1310 | |
| 1248 | def get_PYTHON_ABI(python_interpreter): |
1311 | def get_PYTHON_ABI(python_interpreter): |
| 1249 | cpython_matched = cpython_interpreter_re.match(python_interpreter) |
1312 | cpython_matched = cpython_interpreter_re.match(python_interpreter) |
| 1250 | jython_matched = jython_interpreter_re.match(python_interpreter) |
1313 | jython_matched = jython_interpreter_re.match(python_interpreter) |
| … | |
… | |
| 1594 | |
1657 | |
| 1595 | # This is per bug #390691, without the duplication refactor, and with |
1658 | # This is per bug #390691, without the duplication refactor, and with |
| 1596 | # the 3-way structure per comment #6. This enable users with old |
1659 | # the 3-way structure per comment #6. This enable users with old |
| 1597 | # coreutils to upgrade a lot easier (you need to upgrade python+portage |
1660 | # coreutils to upgrade a lot easier (you need to upgrade python+portage |
| 1598 | # before coreutils can be upgraded). |
1661 | # before coreutils can be upgraded). |
| 1599 | if ROOT="/" has_version >=sys-apps/coreutils-6.9.90; then |
1662 | if ROOT="/" has_version '>=sys-apps/coreutils-6.9.90'; then |
| 1600 | 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" |
1663 | 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" |
| 1601 | elif ROOT="/" has_version sys-apps/coreutils; then |
1664 | elif ROOT="/" has_version sys-apps/coreutils; then |
| 1602 | 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" |
1665 | 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" |
| 1603 | else |
1666 | else |
| 1604 | cp -fpr "${intermediate_installation_images_directory}/${PYTHON_ABI}/"* "${D}" || die "Merging of intermediate installation image for Python ABI '${PYTHON_ABI} into installation image failed" |
1667 | cp -fpr "${intermediate_installation_images_directory}/${PYTHON_ABI}/"* "${D}" || die "Merging of intermediate installation image for Python ABI '${PYTHON_ABI} into installation image failed" |
| … | |
… | |
| 2642 | fi |
2705 | fi |
| 2643 | |
2706 | |
| 2644 | export PYTHONDONTWRITEBYTECODE="1" |
2707 | export PYTHONDONTWRITEBYTECODE="1" |
| 2645 | } |
2708 | } |
| 2646 | |
2709 | |
|
|
2710 | _python_vecho() { |
|
|
2711 | [[ -z ${PORTAGE_VERBOSE} ]] || echo "$@" |
|
|
2712 | } |
|
|
2713 | |
| 2647 | _python_clean_compiled_modules() { |
2714 | _python_clean_compiled_modules() { |
| 2648 | _python_initialize_prefix_variables |
2715 | _python_initialize_prefix_variables |
| 2649 | _python_set_color_variables |
2716 | _python_set_color_variables |
| 2650 | |
2717 | |
| 2651 | [[ "${FUNCNAME[1]}" =~ ^(python_mod_optimize|python_mod_cleanup)$ ]] || die "${FUNCNAME}(): Invalid usage" |
2718 | [[ "${FUNCNAME[1]}" =~ ^(python_mod_optimize|python_mod_cleanup)$ ]] || die "${FUNCNAME}(): Invalid usage" |
| … | |
… | |
| 2664 | |
2731 | |
| 2665 | if [[ "${EBUILD_PHASE}" == "postrm" ]]; then |
2732 | if [[ "${EBUILD_PHASE}" == "postrm" ]]; then |
| 2666 | # Delete empty child directories. |
2733 | # Delete empty child directories. |
| 2667 | find "${path}" -type d | sort -r | while read -r dir; do |
2734 | find "${path}" -type d | sort -r | while read -r dir; do |
| 2668 | if rmdir "${dir}" 2> /dev/null; then |
2735 | if rmdir "${dir}" 2> /dev/null; then |
| 2669 | echo "${_CYAN}<<< ${dir}${_NORMAL}" |
2736 | _python_vecho "<<< ${dir}" |
| 2670 | fi |
2737 | fi |
| 2671 | done |
2738 | done |
| 2672 | fi |
2739 | fi |
| 2673 | elif [[ "${path}" == *.py ]]; then |
2740 | elif [[ "${path}" == *.py ]]; then |
| 2674 | base_module_name="${path##*/}" |
2741 | base_module_name="${path##*/}" |
| … | |
… | |
| 2697 | if [[ "${EBUILD_PHASE}" == "postinst" ]]; then |
2764 | if [[ "${EBUILD_PHASE}" == "postinst" ]]; then |
| 2698 | [[ -f "${py_file}" && "${compiled_file}" -nt "${py_file}" ]] && continue |
2765 | [[ -f "${py_file}" && "${compiled_file}" -nt "${py_file}" ]] && continue |
| 2699 | else |
2766 | else |
| 2700 | [[ -f "${py_file}" ]] && continue |
2767 | [[ -f "${py_file}" ]] && continue |
| 2701 | fi |
2768 | fi |
| 2702 | echo "${_BLUE}<<< ${compiled_file%[co]}[co]${_NORMAL}" |
2769 | _python_vecho "<<< ${compiled_file%[co]}[co]" |
| 2703 | rm -f "${compiled_file%[co]}"[co] |
2770 | rm -f "${compiled_file%[co]}"[co] |
| 2704 | elif [[ "${compiled_file}" == *\$py.class ]]; then |
2771 | elif [[ "${compiled_file}" == *\$py.class ]]; then |
| 2705 | if [[ "${dir}" == "__pycache__" ]]; then |
2772 | if [[ "${dir}" == "__pycache__" ]]; then |
| 2706 | base_module_name="${compiled_file##*/}" |
2773 | base_module_name="${compiled_file##*/}" |
| 2707 | base_module_name="${base_module_name%\$py.class}" |
2774 | base_module_name="${base_module_name%\$py.class}" |
| … | |
… | |
| 2712 | if [[ "${EBUILD_PHASE}" == "postinst" ]]; then |
2779 | if [[ "${EBUILD_PHASE}" == "postinst" ]]; then |
| 2713 | [[ -f "${py_file}" && "${compiled_file}" -nt "${py_file}" ]] && continue |
2780 | [[ -f "${py_file}" && "${compiled_file}" -nt "${py_file}" ]] && continue |
| 2714 | else |
2781 | else |
| 2715 | [[ -f "${py_file}" ]] && continue |
2782 | [[ -f "${py_file}" ]] && continue |
| 2716 | fi |
2783 | fi |
| 2717 | echo "${_BLUE}<<< ${compiled_file}${_NORMAL}" |
2784 | _python_vecho "<<< ${compiled_file}" |
| 2718 | rm -f "${compiled_file}" |
2785 | rm -f "${compiled_file}" |
| 2719 | else |
2786 | else |
| 2720 | die "${FUNCNAME}(): Unrecognized file type: '${compiled_file}'" |
2787 | die "${FUNCNAME}(): Unrecognized file type: '${compiled_file}'" |
| 2721 | fi |
2788 | fi |
| 2722 | |
2789 | |
| 2723 | # Delete empty parent directories. |
2790 | # Delete empty parent directories. |
| 2724 | dir="${compiled_file%/*}" |
2791 | dir="${compiled_file%/*}" |
| 2725 | while [[ "${dir}" != "${root}" ]]; do |
2792 | while [[ "${dir}" != "${root}" ]]; do |
| 2726 | if rmdir "${dir}" 2> /dev/null; then |
2793 | if rmdir "${dir}" 2> /dev/null; then |
| 2727 | echo "${_CYAN}<<< ${dir}${_NORMAL}" |
2794 | _python_vecho "<<< ${dir}" |
| 2728 | else |
2795 | else |
| 2729 | break |
2796 | break |
| 2730 | fi |
2797 | fi |
| 2731 | dir="${dir%/*}" |
2798 | dir="${dir%/*}" |
| 2732 | done |
2799 | done |
| … | |
… | |
| 3112 | } |
3179 | } |
| 3113 | |
3180 | |
| 3114 | # ================================================================================================ |
3181 | # ================================================================================================ |
| 3115 | # ===================================== DEPRECATED FUNCTIONS ===================================== |
3182 | # ===================================== DEPRECATED FUNCTIONS ===================================== |
| 3116 | # ================================================================================================ |
3183 | # ================================================================================================ |
|
|
3184 | |
|
|
3185 | fi # _PYTHON_ECLASS_INHERITED |