| 1 | # Copyright 1999-2012 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.145 2012/01/21 19:48:20 floppym Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/python.eclass,v 1.156 2012/08/16 07:46:15 patrick 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 |
| … | |
… | |
| 28 | fi |
28 | fi |
| 29 | |
29 | |
| 30 | _CPYTHON2_GLOBALLY_SUPPORTED_ABIS=(2.4 2.5 2.6 2.7) |
30 | _CPYTHON2_GLOBALLY_SUPPORTED_ABIS=(2.4 2.5 2.6 2.7) |
| 31 | _CPYTHON3_GLOBALLY_SUPPORTED_ABIS=(3.1 3.2) |
31 | _CPYTHON3_GLOBALLY_SUPPORTED_ABIS=(3.1 3.2) |
| 32 | _JYTHON_GLOBALLY_SUPPORTED_ABIS=(2.5-jython) |
32 | _JYTHON_GLOBALLY_SUPPORTED_ABIS=(2.5-jython) |
| 33 | _PYPY_GLOBALLY_SUPPORTED_ABIS=(2.7-pypy-1.7) |
33 | _PYPY_GLOBALLY_SUPPORTED_ABIS=(2.7-pypy-1.7 2.7-pypy-1.8 2.7-pypy-1.9) |
| 34 | _PYTHON_GLOBALLY_SUPPORTED_ABIS=(${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]} ${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]} ${_JYTHON_GLOBALLY_SUPPORTED_ABIS[@]} ${_PYPY_GLOBALLY_SUPPORTED_ABIS[@]}) |
34 | _PYTHON_GLOBALLY_SUPPORTED_ABIS=(${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]} ${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]} ${_JYTHON_GLOBALLY_SUPPORTED_ABIS[@]} ${_PYPY_GLOBALLY_SUPPORTED_ABIS[@]}) |
| 35 | |
35 | |
| 36 | # ================================================================================================ |
36 | # ================================================================================================ |
| 37 | # ===================================== HANDLING OF METADATA ===================================== |
37 | # ===================================== HANDLING OF METADATA ===================================== |
| 38 | # ================================================================================================ |
38 | # ================================================================================================ |
| … | |
… | |
| 98 | |
98 | |
| 99 | return 1 |
99 | return 1 |
| 100 | fi |
100 | fi |
| 101 | } |
101 | } |
| 102 | |
102 | |
|
|
103 | _python_implementation() { |
|
|
104 | if [[ "${CATEGORY}/${PN}" == "dev-lang/python" ]]; then |
|
|
105 | return 0 |
|
|
106 | elif [[ "${CATEGORY}/${PN}" == "dev-java/jython" ]]; then |
|
|
107 | return 0 |
|
|
108 | elif [[ "${CATEGORY}/${PN}" == "dev-python/pypy" ]]; then |
|
|
109 | return 0 |
|
|
110 | else |
|
|
111 | return 1 |
|
|
112 | fi |
|
|
113 | } |
|
|
114 | |
| 103 | _python_package_supporting_installation_for_multiple_python_abis() { |
115 | _python_package_supporting_installation_for_multiple_python_abis() { |
| 104 | if has "${EAPI:-0}" 0 1 2 3 4; then |
116 | if has "${EAPI:-0}" 0 1 2 3 4; then |
| 105 | if [[ -n "${SUPPORT_PYTHON_ABIS}" ]]; then |
117 | if [[ -n "${SUPPORT_PYTHON_ABIS}" ]]; then |
| 106 | return 0 |
118 | return 0 |
| 107 | else |
119 | else |
| … | |
… | |
| 243 | else |
255 | else |
| 244 | die "Invalid syntax of PYTHON_DEPEND" |
256 | die "Invalid syntax of PYTHON_DEPEND" |
| 245 | fi |
257 | fi |
| 246 | } |
258 | } |
| 247 | |
259 | |
|
|
260 | if _python_implementation; then |
| 248 | DEPEND=">=app-admin/eselect-python-20091230" |
261 | DEPEND=">=app-admin/eselect-python-20091230" |
| 249 | RDEPEND="${DEPEND}" |
262 | RDEPEND="${DEPEND}" |
|
|
263 | PDEPEND="app-admin/python-updater" |
|
|
264 | fi |
| 250 | |
265 | |
| 251 | if [[ -n "${PYTHON_DEPEND}" ]]; then |
266 | if [[ -n "${PYTHON_DEPEND}" ]]; then |
| 252 | _python_parse_PYTHON_DEPEND |
267 | _python_parse_PYTHON_DEPEND |
| 253 | else |
268 | else |
| 254 | _PYTHON_ATOMS=("dev-lang/python") |
269 | _PYTHON_ATOMS=("dev-lang/python") |
| … | |
… | |
| 293 | _PYTHON_USE_WITH_ATOMS="${_PYTHON_USE_WITH_ATOMS_ARRAY[@]}" |
308 | _PYTHON_USE_WITH_ATOMS="${_PYTHON_USE_WITH_ATOMS_ARRAY[@]}" |
| 294 | fi |
309 | fi |
| 295 | if [[ -n "${PYTHON_USE_WITH_OPT}" ]]; then |
310 | if [[ -n "${PYTHON_USE_WITH_OPT}" ]]; then |
| 296 | _PYTHON_USE_WITH_ATOMS="${PYTHON_USE_WITH_OPT}? ( ${_PYTHON_USE_WITH_ATOMS} )" |
311 | _PYTHON_USE_WITH_ATOMS="${PYTHON_USE_WITH_OPT}? ( ${_PYTHON_USE_WITH_ATOMS} )" |
| 297 | fi |
312 | fi |
| 298 | DEPEND+=" ${_PYTHON_USE_WITH_ATOMS}" |
313 | DEPEND+="${DEPEND:+ }${_PYTHON_USE_WITH_ATOMS}" |
| 299 | RDEPEND+=" ${_PYTHON_USE_WITH_ATOMS}" |
314 | RDEPEND+="${RDEPEND:+ }${_PYTHON_USE_WITH_ATOMS}" |
| 300 | unset _PYTHON_ATOM _PYTHON_USE_WITH_ATOMS _PYTHON_USE_WITH_ATOMS_ARRAY |
315 | unset _PYTHON_ATOM _PYTHON_USE_WITH_ATOMS _PYTHON_USE_WITH_ATOMS_ARRAY |
| 301 | fi |
316 | fi |
| 302 | |
317 | |
| 303 | unset _PYTHON_ATOMS |
318 | unset _PYTHON_ATOMS |
| 304 | |
319 | |
| 305 | # ================================================================================================ |
320 | # ================================================================================================ |
| 306 | # =================================== MISCELLANEOUS FUNCTIONS ==================================== |
321 | # =================================== MISCELLANEOUS FUNCTIONS ==================================== |
| 307 | # ================================================================================================ |
322 | # ================================================================================================ |
| 308 | |
|
|
| 309 | _python_implementation() { |
|
|
| 310 | if [[ "${CATEGORY}/${PN}" == "dev-lang/python" ]]; then |
|
|
| 311 | return 0 |
|
|
| 312 | elif [[ "${CATEGORY}/${PN}" == "dev-java/jython" ]]; then |
|
|
| 313 | return 0 |
|
|
| 314 | elif [[ "${CATEGORY}/${PN}" == "dev-python/pypy" ]]; then |
|
|
| 315 | return 0 |
|
|
| 316 | else |
|
|
| 317 | return 1 |
|
|
| 318 | fi |
|
|
| 319 | } |
|
|
| 320 | |
323 | |
| 321 | _python_abi-specific_local_scope() { |
324 | _python_abi-specific_local_scope() { |
| 322 | [[ " ${FUNCNAME[@]:2} " =~ " "(_python_final_sanity_checks|python_execute_function|python_mod_optimize|python_mod_cleanup)" " ]] |
325 | [[ " ${FUNCNAME[@]:2} " =~ " "(_python_final_sanity_checks|python_execute_function|python_mod_optimize|python_mod_cleanup)" " ]] |
| 323 | } |
326 | } |
| 324 | |
327 | |
| … | |
… | |
| 482 | # @DESCRIPTION: |
485 | # @DESCRIPTION: |
| 483 | # Convert shebangs in specified files. Directories can be specified only with --recursive option. |
486 | # Convert shebangs in specified files. Directories can be specified only with --recursive option. |
| 484 | python_convert_shebangs() { |
487 | python_convert_shebangs() { |
| 485 | _python_check_python_pkg_setup_execution |
488 | _python_check_python_pkg_setup_execution |
| 486 | |
489 | |
| 487 | local argument file files=() only_executables="0" python_interpreter quiet="0" recursive="0" |
490 | local argument file files=() only_executables="0" python_interpreter quiet="0" recursive="0" shebangs_converted="0" |
| 488 | |
491 | |
| 489 | while (($#)); do |
492 | while (($#)); do |
| 490 | case "$1" in |
493 | case "$1" in |
| 491 | -r|--recursive) |
494 | -r|--recursive) |
| 492 | recursive="1" |
495 | recursive="1" |
| … | |
… | |
| 547 | [[ "${only_executables}" == "1" && ! -x "${file}" ]] && continue |
550 | [[ "${only_executables}" == "1" && ! -x "${file}" ]] && continue |
| 548 | |
551 | |
| 549 | if [[ "$(head -n1 "${file}")" =~ ${_PYTHON_SHEBANG_BASE_PART_REGEX} ]]; then |
552 | if [[ "$(head -n1 "${file}")" =~ ${_PYTHON_SHEBANG_BASE_PART_REGEX} ]]; then |
| 550 | [[ "$(sed -ne "2p" "${file}")" =~ ^"# Gentoo '".*"' wrapper script generated by python_generate_wrapper_scripts()"$ ]] && continue |
553 | [[ "$(sed -ne "2p" "${file}")" =~ ^"# Gentoo '".*"' wrapper script generated by python_generate_wrapper_scripts()"$ ]] && continue |
| 551 | |
554 | |
|
|
555 | shebangs_converted="1" |
|
|
556 | |
| 552 | if [[ "${quiet}" == "0" ]]; then |
557 | if [[ "${quiet}" == "0" ]]; then |
| 553 | einfo "Converting shebang in '${file}'" |
558 | einfo "Converting shebang in '${file}'" |
| 554 | fi |
559 | fi |
| 555 | |
560 | |
| 556 | 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" |
561 | sed -e "1s:^#![[:space:]]*\([^[:space:]]*/usr/bin/env[[:space:]]\)\?[[:space:]]*\([^[:space:]]*/\)\?\(jython\|pypy-c\|python\)\([[:digit:]]\+\(\.[[:digit:]]\+\)\?\)\?\(\$\|[[:space:]].*\):#!\1\2${python_interpreter}\6:" -i "${file}" || die "Conversion of shebang in '${file}' failed" |
| 557 | fi |
562 | fi |
| 558 | done |
563 | done |
|
|
564 | |
|
|
565 | if [[ "${shebangs_converted}" == "0" ]]; then |
|
|
566 | ewarn "${FUNCNAME}(): Python scripts not found" |
|
|
567 | fi |
| 559 | } |
568 | } |
| 560 | |
569 | |
| 561 | # @FUNCTION: python_clean_py-compile_files |
570 | # @FUNCTION: python_clean_py-compile_files |
| 562 | # @USAGE: [-q|--quiet] |
571 | # @USAGE: [-q|--quiet] |
| 563 | # @DESCRIPTION: |
572 | # @DESCRIPTION: |
| … | |
… | |
| 836 | die "Active version of CPython 3 is not supported by ${CATEGORY}/${PF}" |
845 | die "Active version of CPython 3 is not supported by ${CATEGORY}/${PF}" |
| 837 | fi |
846 | fi |
| 838 | else |
847 | else |
| 839 | python3_version="" |
848 | python3_version="" |
| 840 | fi |
849 | fi |
|
|
850 | fi |
|
|
851 | |
|
|
852 | if [[ -z "${python2_version}" && -z "${python3_version}" ]]; then |
|
|
853 | eerror "${CATEGORY}/${PF} requires at least one of the following packages:" |
|
|
854 | for PYTHON_ABI in "${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]}" "${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]}"; do |
|
|
855 | if ! _python_check_python_abi_matching --patterns-list "${PYTHON_ABI}" "${RESTRICT_PYTHON_ABIS}"; then |
|
|
856 | eerror " dev-lang/python:${PYTHON_ABI}" |
|
|
857 | fi |
|
|
858 | done |
|
|
859 | die "No supported version of CPython installed" |
| 841 | fi |
860 | fi |
| 842 | |
861 | |
| 843 | if [[ -n "${python2_version}" && "${python_version}" == "2."* && "${python_version}" != "${python2_version}" ]]; then |
862 | if [[ -n "${python2_version}" && "${python_version}" == "2."* && "${python_version}" != "${python2_version}" ]]; then |
| 844 | eerror "Python wrapper is configured incorrectly or '${EPREFIX}/usr/bin/python2' symlink" |
863 | eerror "Python wrapper is configured incorrectly or '${EPREFIX}/usr/bin/python2' symlink" |
| 845 | eerror "is set incorrectly. Use \`eselect python\` to fix configuration." |
864 | eerror "is set incorrectly. Use \`eselect python\` to fix configuration." |
| … | |
… | |
| 1003 | python_default_function() { |
1022 | python_default_function() { |
| 1004 | emake "$@" |
1023 | emake "$@" |
| 1005 | } |
1024 | } |
| 1006 | elif [[ "${EBUILD_PHASE}" == "test" ]]; then |
1025 | elif [[ "${EBUILD_PHASE}" == "test" ]]; then |
| 1007 | python_default_function() { |
1026 | python_default_function() { |
|
|
1027 | # Stolen from portage's _eapi0_src_test() |
|
|
1028 | local emake_cmd="${MAKE:-make} ${MAKEOPTS} ${EXTRA_EMAKE}" |
| 1008 | if emake -j1 -n check &> /dev/null; then |
1029 | if ${emake_cmd} -j1 -n check &> /dev/null; then |
| 1009 | emake -j1 check "$@" |
1030 | ${emake_cmd} -j1 check "$@" |
| 1010 | elif emake -j1 -n test &> /dev/null; then |
1031 | elif ${emake_cmd} -j1 -n test &> /dev/null; then |
| 1011 | emake -j1 test "$@" |
1032 | ${emake_cmd} -j1 test "$@" |
| 1012 | fi |
1033 | fi |
| 1013 | } |
1034 | } |
| 1014 | elif [[ "${EBUILD_PHASE}" == "install" ]]; then |
1035 | elif [[ "${EBUILD_PHASE}" == "install" ]]; then |
| 1015 | python_default_function() { |
1036 | python_default_function() { |
| 1016 | emake DESTDIR="${D}" install "$@" |
1037 | emake DESTDIR="${D}" install "$@" |
| … | |
… | |
| 1284 | cpython_shebang_re = re.compile(r"^#![ \t]*(?:${EPREFIX}/usr/bin/python|(?:${EPREFIX})?/usr/bin/env[ \t]+(?:${EPREFIX}/usr/bin/)?python)") |
1305 | cpython_shebang_re = re.compile(r"^#![ \t]*(?:${EPREFIX}/usr/bin/python|(?:${EPREFIX})?/usr/bin/env[ \t]+(?:${EPREFIX}/usr/bin/)?python)") |
| 1285 | python_shebang_options_re = re.compile(r"^#![ \t]*${EPREFIX}/usr/bin/(?:jython|pypy-c|python)(?:\d+(?:\.\d+)?)?[ \t]+(-\S)") |
1306 | python_shebang_options_re = re.compile(r"^#![ \t]*${EPREFIX}/usr/bin/(?:jython|pypy-c|python)(?:\d+(?:\.\d+)?)?[ \t]+(-\S)") |
| 1286 | python_verification_output_re = re.compile("^GENTOO_PYTHON_TARGET_SCRIPT_PATH supported\n$") |
1307 | python_verification_output_re = re.compile("^GENTOO_PYTHON_TARGET_SCRIPT_PATH supported\n$") |
| 1287 | |
1308 | |
| 1288 | pypy_versions_mapping = { |
1309 | pypy_versions_mapping = { |
| 1289 | "1.5": "2.7" |
1310 | "1.5": "2.7", |
|
|
1311 | "1.6": "2.7", |
|
|
1312 | "1.7": "2.7", |
|
|
1313 | "1.8": "2.7", |
|
|
1314 | "1.9": "2.7", |
| 1290 | } |
1315 | } |
| 1291 | |
1316 | |
| 1292 | def get_PYTHON_ABI(python_interpreter): |
1317 | def get_PYTHON_ABI(python_interpreter): |
| 1293 | cpython_matched = cpython_interpreter_re.match(python_interpreter) |
1318 | cpython_matched = cpython_interpreter_re.match(python_interpreter) |
| 1294 | jython_matched = jython_interpreter_re.match(python_interpreter) |
1319 | jython_matched = jython_interpreter_re.match(python_interpreter) |
| … | |
… | |
| 2741 | if [[ "${EBUILD_PHASE}" == "postinst" ]]; then |
2766 | if [[ "${EBUILD_PHASE}" == "postinst" ]]; then |
| 2742 | [[ -f "${py_file}" && "${compiled_file}" -nt "${py_file}" ]] && continue |
2767 | [[ -f "${py_file}" && "${compiled_file}" -nt "${py_file}" ]] && continue |
| 2743 | else |
2768 | else |
| 2744 | [[ -f "${py_file}" ]] && continue |
2769 | [[ -f "${py_file}" ]] && continue |
| 2745 | fi |
2770 | fi |
| 2746 | echo "${_BLUE}<<< ${compiled_file%[co]}[co]${_NORMAL}" |
|
|
| 2747 | rm -f "${compiled_file%[co]}"[co] |
2771 | rm -f "${compiled_file%[co]}"[co] |
| 2748 | elif [[ "${compiled_file}" == *\$py.class ]]; then |
2772 | elif [[ "${compiled_file}" == *\$py.class ]]; then |
| 2749 | if [[ "${dir}" == "__pycache__" ]]; then |
2773 | if [[ "${dir}" == "__pycache__" ]]; then |
| 2750 | base_module_name="${compiled_file##*/}" |
2774 | base_module_name="${compiled_file##*/}" |
| 2751 | base_module_name="${base_module_name%\$py.class}" |
2775 | base_module_name="${base_module_name%\$py.class}" |
| … | |
… | |
| 2756 | if [[ "${EBUILD_PHASE}" == "postinst" ]]; then |
2780 | if [[ "${EBUILD_PHASE}" == "postinst" ]]; then |
| 2757 | [[ -f "${py_file}" && "${compiled_file}" -nt "${py_file}" ]] && continue |
2781 | [[ -f "${py_file}" && "${compiled_file}" -nt "${py_file}" ]] && continue |
| 2758 | else |
2782 | else |
| 2759 | [[ -f "${py_file}" ]] && continue |
2783 | [[ -f "${py_file}" ]] && continue |
| 2760 | fi |
2784 | fi |
| 2761 | echo "${_BLUE}<<< ${compiled_file}${_NORMAL}" |
|
|
| 2762 | rm -f "${compiled_file}" |
2785 | rm -f "${compiled_file}" |
| 2763 | else |
2786 | else |
| 2764 | die "${FUNCNAME}(): Unrecognized file type: '${compiled_file}'" |
2787 | die "${FUNCNAME}(): Unrecognized file type: '${compiled_file}'" |
| 2765 | fi |
2788 | fi |
| 2766 | |
2789 | |
| 2767 | # Delete empty parent directories. |
2790 | # Delete empty parent directories. |
| 2768 | dir="${compiled_file%/*}" |
2791 | dir="${compiled_file%/*}" |
| 2769 | while [[ "${dir}" != "${root}" ]]; do |
2792 | while [[ "${dir}" != "${root}" ]]; do |
| 2770 | if rmdir "${dir}" 2> /dev/null; then |
2793 | if ! rmdir "${dir}" 2> /dev/null; then |
| 2771 | echo "${_CYAN}<<< ${dir}${_NORMAL}" |
|
|
| 2772 | else |
|
|
| 2773 | break |
2794 | break |
| 2774 | fi |
2795 | fi |
| 2775 | dir="${dir%/*}" |
2796 | dir="${dir%/*}" |
| 2776 | done |
2797 | done |
| 2777 | done |
2798 | done |