| 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.156 2012/08/16 07:46:15 patrick Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/python.eclass,v 1.162 2012/12/20 06:07:05 floppym Exp $ |
| 4 | |
4 | |
| 5 | # @ECLASS: python.eclass |
5 | # @ECLASS: python.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # Gentoo Python Project <python@gentoo.org> |
7 | # Gentoo Python Project <python@gentoo.org> |
| 8 | # @BLURB: Eclass for Python packages |
8 | # @BLURB: Eclass for Python packages |
| 9 | # @DESCRIPTION: |
9 | # @DESCRIPTION: |
| 10 | # The python eclass contains miscellaneous, useful functions for Python packages. |
10 | # The python eclass contains miscellaneous, useful functions for Python packages. |
| 11 | |
11 | |
|
|
12 | if [[ ${_PYTHON_UTILS_R1} ]]; then |
|
|
13 | die 'python.eclass can not be used with python-r1 suite eclasses.' |
|
|
14 | fi |
|
|
15 | |
| 12 | # Must call inherit before EXPORT_FUNCTIONS to avoid QA warning. |
16 | # Must call inherit before EXPORT_FUNCTIONS to avoid QA warning. |
| 13 | if [[ -z "${_PYTHON_ECLASS_INHERITED}" ]]; then |
17 | if [[ -z "${_PYTHON_ECLASS_INHERITED}" ]]; then |
| 14 | inherit multilib |
18 | inherit multilib |
| 15 | fi |
19 | fi |
| 16 | |
20 | |
| … | |
… | |
| 21 | |
25 | |
| 22 | # Avoid processing this eclass more than once. |
26 | # Avoid processing this eclass more than once. |
| 23 | if [[ -z "${_PYTHON_ECLASS_INHERITED}" ]]; then |
27 | if [[ -z "${_PYTHON_ECLASS_INHERITED}" ]]; then |
| 24 | _PYTHON_ECLASS_INHERITED="1" |
28 | _PYTHON_ECLASS_INHERITED="1" |
| 25 | |
29 | |
| 26 | if ! has "${EAPI:-0}" 0 1 2 3 4; then |
30 | if ! has "${EAPI:-0}" 0 1 2 3 4 5; then |
| 27 | die "API of python.eclass in EAPI=\"${EAPI}\" not established" |
31 | die "API of python.eclass in EAPI=\"${EAPI}\" not established" |
| 28 | fi |
32 | fi |
| 29 | |
33 | |
| 30 | _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) |
| 31 | _CPYTHON3_GLOBALLY_SUPPORTED_ABIS=(3.1 3.2) |
35 | _CPYTHON3_GLOBALLY_SUPPORTED_ABIS=(3.1 3.2 3.3) |
| 32 | _JYTHON_GLOBALLY_SUPPORTED_ABIS=(2.5-jython) |
36 | _JYTHON_GLOBALLY_SUPPORTED_ABIS=(2.5-jython) |
| 33 | _PYPY_GLOBALLY_SUPPORTED_ABIS=(2.7-pypy-1.7 2.7-pypy-1.8 2.7-pypy-1.9) |
37 | _PYPY_GLOBALLY_SUPPORTED_ABIS=(2.7-pypy-1.7 2.7-pypy-1.8 2.7-pypy-1.9 2.7-pypy-2.0) |
| 34 | _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[@]}) |
| 35 | |
39 | |
| 36 | # ================================================================================================ |
40 | # ================================================================================================ |
| 37 | # ===================================== HANDLING OF METADATA ===================================== |
41 | # ===================================== HANDLING OF METADATA ===================================== |
| 38 | # ================================================================================================ |
42 | # ================================================================================================ |
| … | |
… | |
| 111 | return 1 |
115 | return 1 |
| 112 | fi |
116 | fi |
| 113 | } |
117 | } |
| 114 | |
118 | |
| 115 | _python_package_supporting_installation_for_multiple_python_abis() { |
119 | _python_package_supporting_installation_for_multiple_python_abis() { |
| 116 | if has "${EAPI:-0}" 0 1 2 3 4; then |
|
|
| 117 | if [[ -n "${SUPPORT_PYTHON_ABIS}" ]]; then |
120 | [[ -n "${SUPPORT_PYTHON_ABIS}" ]] |
| 118 | return 0 |
|
|
| 119 | else |
|
|
| 120 | return 1 |
|
|
| 121 | fi |
|
|
| 122 | else |
|
|
| 123 | die "${FUNCNAME}(): Support for EAPI=\"${EAPI}\" not implemented" |
|
|
| 124 | fi |
|
|
| 125 | } |
121 | } |
| 126 | |
122 | |
| 127 | # @ECLASS-VARIABLE: PYTHON_DEPEND |
123 | # @ECLASS-VARIABLE: PYTHON_DEPEND |
| 128 | # @DESCRIPTION: |
124 | # @DESCRIPTION: |
| 129 | # Specification of dependency on dev-lang/python. |
125 | # Specification of dependency on dev-lang/python. |
| … | |
… | |
| 750 | if [[ -n "${PYTHON_EXPORT_PHASE_FUNCTIONS}" ]]; then |
746 | if [[ -n "${PYTHON_EXPORT_PHASE_FUNCTIONS}" ]]; then |
| 751 | 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 |
| 752 | fi |
748 | fi |
| 753 | fi |
749 | fi |
| 754 | |
750 | |
| 755 | if has "${EAPI:-0}" 0 1 2 3 4; then |
|
|
| 756 | unset PYTHON_ABIS |
751 | unset PYTHON_ABIS |
| 757 | fi |
|
|
| 758 | |
752 | |
| 759 | _python_calculate_PYTHON_ABIS() { |
753 | _python_calculate_PYTHON_ABIS() { |
| 760 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
754 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
| 761 | 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" |
| 762 | fi |
756 | fi |
| 763 | |
757 | |
| 764 | _python_initial_sanity_checks |
758 | _python_initial_sanity_checks |
| 765 | |
759 | |
| 766 | 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 |
| 767 | local PYTHON_ABI |
761 | local PYTHON_ABI |
| 768 | |
762 | |
| 769 | 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 |
| 770 | local cpython_enabled="0" |
764 | local cpython_enabled="0" |
| 771 | |
765 | |
| … | |
… | |
| 2711 | fi |
2705 | fi |
| 2712 | |
2706 | |
| 2713 | export PYTHONDONTWRITEBYTECODE="1" |
2707 | export PYTHONDONTWRITEBYTECODE="1" |
| 2714 | } |
2708 | } |
| 2715 | |
2709 | |
|
|
2710 | _python_vecho() { |
|
|
2711 | [[ -z ${PORTAGE_VERBOSE} ]] || echo "$@" |
|
|
2712 | } |
|
|
2713 | |
| 2716 | _python_clean_compiled_modules() { |
2714 | _python_clean_compiled_modules() { |
| 2717 | _python_initialize_prefix_variables |
2715 | _python_initialize_prefix_variables |
| 2718 | _python_set_color_variables |
2716 | _python_set_color_variables |
| 2719 | |
2717 | |
| 2720 | [[ "${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" |
| … | |
… | |
| 2733 | |
2731 | |
| 2734 | if [[ "${EBUILD_PHASE}" == "postrm" ]]; then |
2732 | if [[ "${EBUILD_PHASE}" == "postrm" ]]; then |
| 2735 | # Delete empty child directories. |
2733 | # Delete empty child directories. |
| 2736 | find "${path}" -type d | sort -r | while read -r dir; do |
2734 | find "${path}" -type d | sort -r | while read -r dir; do |
| 2737 | if rmdir "${dir}" 2> /dev/null; then |
2735 | if rmdir "${dir}" 2> /dev/null; then |
| 2738 | echo "${_CYAN}<<< ${dir}${_NORMAL}" |
2736 | _python_vecho "<<< ${dir}" |
| 2739 | fi |
2737 | fi |
| 2740 | done |
2738 | done |
| 2741 | fi |
2739 | fi |
| 2742 | elif [[ "${path}" == *.py ]]; then |
2740 | elif [[ "${path}" == *.py ]]; then |
| 2743 | base_module_name="${path##*/}" |
2741 | base_module_name="${path##*/}" |
| … | |
… | |
| 2766 | if [[ "${EBUILD_PHASE}" == "postinst" ]]; then |
2764 | if [[ "${EBUILD_PHASE}" == "postinst" ]]; then |
| 2767 | [[ -f "${py_file}" && "${compiled_file}" -nt "${py_file}" ]] && continue |
2765 | [[ -f "${py_file}" && "${compiled_file}" -nt "${py_file}" ]] && continue |
| 2768 | else |
2766 | else |
| 2769 | [[ -f "${py_file}" ]] && continue |
2767 | [[ -f "${py_file}" ]] && continue |
| 2770 | fi |
2768 | fi |
|
|
2769 | _python_vecho "<<< ${compiled_file%[co]}[co]" |
| 2771 | rm -f "${compiled_file%[co]}"[co] |
2770 | rm -f "${compiled_file%[co]}"[co] |
| 2772 | elif [[ "${compiled_file}" == *\$py.class ]]; then |
2771 | elif [[ "${compiled_file}" == *\$py.class ]]; then |
| 2773 | if [[ "${dir}" == "__pycache__" ]]; then |
2772 | if [[ "${dir}" == "__pycache__" ]]; then |
| 2774 | base_module_name="${compiled_file##*/}" |
2773 | base_module_name="${compiled_file##*/}" |
| 2775 | base_module_name="${base_module_name%\$py.class}" |
2774 | base_module_name="${base_module_name%\$py.class}" |
| … | |
… | |
| 2780 | if [[ "${EBUILD_PHASE}" == "postinst" ]]; then |
2779 | if [[ "${EBUILD_PHASE}" == "postinst" ]]; then |
| 2781 | [[ -f "${py_file}" && "${compiled_file}" -nt "${py_file}" ]] && continue |
2780 | [[ -f "${py_file}" && "${compiled_file}" -nt "${py_file}" ]] && continue |
| 2782 | else |
2781 | else |
| 2783 | [[ -f "${py_file}" ]] && continue |
2782 | [[ -f "${py_file}" ]] && continue |
| 2784 | fi |
2783 | fi |
|
|
2784 | _python_vecho "<<< ${compiled_file}" |
| 2785 | rm -f "${compiled_file}" |
2785 | rm -f "${compiled_file}" |
| 2786 | else |
2786 | else |
| 2787 | die "${FUNCNAME}(): Unrecognized file type: '${compiled_file}'" |
2787 | die "${FUNCNAME}(): Unrecognized file type: '${compiled_file}'" |
| 2788 | fi |
2788 | fi |
| 2789 | |
2789 | |
| 2790 | # Delete empty parent directories. |
2790 | # Delete empty parent directories. |
| 2791 | dir="${compiled_file%/*}" |
2791 | dir="${compiled_file%/*}" |
| 2792 | while [[ "${dir}" != "${root}" ]]; do |
2792 | while [[ "${dir}" != "${root}" ]]; do |
| 2793 | if ! rmdir "${dir}" 2> /dev/null; then |
2793 | if rmdir "${dir}" 2> /dev/null; then |
|
|
2794 | _python_vecho "<<< ${dir}" |
|
|
2795 | else |
| 2794 | break |
2796 | break |
| 2795 | fi |
2797 | fi |
| 2796 | dir="${dir%/*}" |
2798 | dir="${dir%/*}" |
| 2797 | done |
2799 | done |
| 2798 | done |
2800 | done |