| 1 | # Copyright 1999-2010 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.103 2010/10/03 00:38:13 arfrever Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/python.eclass,v 1.150 2012/02/13 23:50:12 zmedico 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 | # Must call inherit before EXPORT_FUNCTIONS to avoid QA warning. |
|
|
13 | if [[ -z "${_PYTHON_ECLASS_INHERITED}" ]]; then |
| 12 | inherit multilib |
14 | inherit multilib |
|
|
15 | fi |
| 13 | |
16 | |
|
|
17 | # Export pkg_setup every time to avoid issues with eclass inheritance order. |
|
|
18 | if ! has "${EAPI:-0}" 0 1 2 3 || { has "${EAPI:-0}" 2 3 && [[ -n "${PYTHON_USE_WITH}" || -n "${PYTHON_USE_WITH_OR}" ]]; }; then |
|
|
19 | EXPORT_FUNCTIONS pkg_setup |
|
|
20 | fi |
|
|
21 | |
|
|
22 | # Avoid processing this eclass more than once. |
|
|
23 | if [[ -z "${_PYTHON_ECLASS_INHERITED}" ]]; then |
|
|
24 | _PYTHON_ECLASS_INHERITED="1" |
|
|
25 | |
| 14 | if ! has "${EAPI:-0}" 0 1 2 3; then |
26 | if ! has "${EAPI:-0}" 0 1 2 3 4; then |
| 15 | die "API of python.eclass in EAPI=\"${EAPI}\" not established" |
27 | die "API of python.eclass in EAPI=\"${EAPI}\" not established" |
| 16 | fi |
28 | fi |
| 17 | |
29 | |
| 18 | _CPYTHON2_SUPPORTED_ABIS=(2.4 2.5 2.6 2.7) |
30 | _CPYTHON2_GLOBALLY_SUPPORTED_ABIS=(2.4 2.5 2.6 2.7) |
| 19 | _CPYTHON3_SUPPORTED_ABIS=(3.0 3.1 3.2) |
31 | _CPYTHON3_GLOBALLY_SUPPORTED_ABIS=(3.1 3.2) |
| 20 | _JYTHON_SUPPORTED_ABIS=(2.5-jython) |
32 | _JYTHON_GLOBALLY_SUPPORTED_ABIS=(2.5-jython) |
|
|
33 | _PYPY_GLOBALLY_SUPPORTED_ABIS=(2.7-pypy-1.7 2.7-pypy-1.8) |
|
|
34 | _PYTHON_GLOBALLY_SUPPORTED_ABIS=(${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]} ${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]} ${_JYTHON_GLOBALLY_SUPPORTED_ABIS[@]} ${_PYPY_GLOBALLY_SUPPORTED_ABIS[@]}) |
|
|
35 | |
|
|
36 | # ================================================================================================ |
|
|
37 | # ===================================== HANDLING OF METADATA ===================================== |
|
|
38 | # ================================================================================================ |
|
|
39 | |
|
|
40 | _PYTHON_ABI_PATTERN_REGEX="([[:alnum:]]|\.|-|\*|\[|\])+" |
|
|
41 | |
|
|
42 | _python_check_python_abi_matching() { |
|
|
43 | local pattern patterns patterns_list="0" PYTHON_ABI |
|
|
44 | |
|
|
45 | while (($#)); do |
|
|
46 | case "$1" in |
|
|
47 | --patterns-list) |
|
|
48 | patterns_list="1" |
|
|
49 | ;; |
|
|
50 | --) |
|
|
51 | shift |
|
|
52 | break |
|
|
53 | ;; |
|
|
54 | -*) |
|
|
55 | die "${FUNCNAME}(): Unrecognized option '$1'" |
|
|
56 | ;; |
|
|
57 | *) |
|
|
58 | break |
|
|
59 | ;; |
|
|
60 | esac |
|
|
61 | shift |
|
|
62 | done |
|
|
63 | |
|
|
64 | if [[ "$#" -ne 2 ]]; then |
|
|
65 | die "${FUNCNAME}() requires 2 arguments" |
|
|
66 | fi |
|
|
67 | |
|
|
68 | PYTHON_ABI="$1" |
|
|
69 | |
|
|
70 | if [[ "${patterns_list}" == "0" ]]; then |
|
|
71 | pattern="$2" |
|
|
72 | |
|
|
73 | if [[ "${pattern}" == *"-cpython" ]]; then |
|
|
74 | [[ "${PYTHON_ABI}" =~ ^[[:digit:]]+\.[[:digit:]]+$ && "${PYTHON_ABI}" == ${pattern%-cpython} ]] |
|
|
75 | elif [[ "${pattern}" == *"-jython" ]]; then |
|
|
76 | [[ "${PYTHON_ABI}" == ${pattern} ]] |
|
|
77 | elif [[ "${pattern}" == *"-pypy-"* ]]; then |
|
|
78 | [[ "${PYTHON_ABI}" == ${pattern} ]] |
|
|
79 | else |
|
|
80 | if [[ "${PYTHON_ABI}" =~ ^[[:digit:]]+\.[[:digit:]]+$ ]]; then |
|
|
81 | [[ "${PYTHON_ABI}" == ${pattern} ]] |
|
|
82 | elif [[ "${PYTHON_ABI}" =~ ^[[:digit:]]+\.[[:digit:]]+-jython$ ]]; then |
|
|
83 | [[ "${PYTHON_ABI%-jython}" == ${pattern} ]] |
|
|
84 | elif [[ "${PYTHON_ABI}" =~ ^[[:digit:]]+\.[[:digit:]]+-pypy-[[:digit:]]+\.[[:digit:]]+$ ]]; then |
|
|
85 | [[ "${PYTHON_ABI%-pypy-*}" == ${pattern} ]] |
|
|
86 | else |
|
|
87 | die "${FUNCNAME}(): Unrecognized Python ABI '${PYTHON_ABI}'" |
|
|
88 | fi |
|
|
89 | fi |
|
|
90 | else |
|
|
91 | patterns="${2// /$'\n'}" |
|
|
92 | |
|
|
93 | while read pattern; do |
|
|
94 | if _python_check_python_abi_matching "${PYTHON_ABI}" "${pattern}"; then |
|
|
95 | return 0 |
|
|
96 | fi |
|
|
97 | done <<< "${patterns}" |
|
|
98 | |
|
|
99 | return 1 |
|
|
100 | fi |
|
|
101 | } |
|
|
102 | |
|
|
103 | _python_package_supporting_installation_for_multiple_python_abis() { |
|
|
104 | if has "${EAPI:-0}" 0 1 2 3 4; then |
|
|
105 | if [[ -n "${SUPPORT_PYTHON_ABIS}" ]]; then |
|
|
106 | return 0 |
|
|
107 | else |
|
|
108 | return 1 |
|
|
109 | fi |
|
|
110 | else |
|
|
111 | die "${FUNCNAME}(): Support for EAPI=\"${EAPI}\" not implemented" |
|
|
112 | fi |
|
|
113 | } |
| 21 | |
114 | |
| 22 | # @ECLASS-VARIABLE: PYTHON_DEPEND |
115 | # @ECLASS-VARIABLE: PYTHON_DEPEND |
| 23 | # @DESCRIPTION: |
116 | # @DESCRIPTION: |
| 24 | # Specification of dependency on dev-lang/python. |
117 | # Specification of dependency on dev-lang/python. |
| 25 | # Syntax: |
118 | # Syntax: |
| … | |
… | |
| 27 | # version_components_group: <major_version[:[minimal_version][:maximal_version]]> |
120 | # version_components_group: <major_version[:[minimal_version][:maximal_version]]> |
| 28 | # major_version: <2|3|*> |
121 | # major_version: <2|3|*> |
| 29 | # minimal_version: <minimal_major_version.minimal_minor_version> |
122 | # minimal_version: <minimal_major_version.minimal_minor_version> |
| 30 | # maximal_version: <maximal_major_version.maximal_minor_version> |
123 | # maximal_version: <maximal_major_version.maximal_minor_version> |
| 31 | |
124 | |
| 32 | _parse_PYTHON_DEPEND() { |
125 | _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 |
126 | 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 | |
127 | |
| 35 | version_components_group_regex="(2|3|\*)(:([[:digit:]]+\.[[:digit:]]+)?(:([[:digit:]]+\.[[:digit:]]+)?)?)?" |
128 | version_components_group_regex="(2|3|\*)(:([[:digit:]]+\.[[:digit:]]+)?(:([[:digit:]]+\.[[:digit:]]+)?)?)?" |
| 36 | version_components_groups="${PYTHON_DEPEND}" |
129 | version_components_groups="${PYTHON_DEPEND}" |
| 37 | |
130 | |
| … | |
… | |
| 60 | fi |
153 | fi |
| 61 | fi |
154 | fi |
| 62 | |
155 | |
| 63 | if [[ "${major_version}" == "2" ]]; then |
156 | if [[ "${major_version}" == "2" ]]; then |
| 64 | python2="1" |
157 | python2="1" |
| 65 | python_versions=("${_CPYTHON2_SUPPORTED_ABIS[@]}") |
158 | python_versions=("${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]}") |
| 66 | python2_minimal_version="${minimal_version}" |
159 | python2_minimal_version="${minimal_version}" |
| 67 | python2_maximal_version="${maximal_version}" |
160 | python2_maximal_version="${maximal_version}" |
| 68 | elif [[ "${major_version}" == "3" ]]; then |
161 | elif [[ "${major_version}" == "3" ]]; then |
| 69 | python3="1" |
162 | python3="1" |
| 70 | python_versions=("${_CPYTHON3_SUPPORTED_ABIS[@]}") |
163 | python_versions=("${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]}") |
| 71 | python3_minimal_version="${minimal_version}" |
164 | python3_minimal_version="${minimal_version}" |
| 72 | python3_maximal_version="${maximal_version}" |
165 | python3_maximal_version="${maximal_version}" |
| 73 | else |
166 | else |
| 74 | python_all="1" |
167 | python_all="1" |
| 75 | python_versions=("${_CPYTHON2_SUPPORTED_ABIS[@]}" "${_CPYTHON3_SUPPORTED_ABIS[@]}") |
168 | python_versions=("${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]}" "${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]}") |
| 76 | python_minimal_version="${minimal_version}" |
169 | python_minimal_version="${minimal_version}" |
| 77 | python_maximal_version="${maximal_version}" |
170 | python_maximal_version="${maximal_version}" |
| 78 | fi |
171 | fi |
| 79 | |
172 | |
| 80 | if [[ -n "${minimal_version}" ]] && ! has "${minimal_version}" "${python_versions[@]}"; then |
173 | if [[ -n "${minimal_version}" ]] && ! has "${minimal_version}" "${python_versions[@]}"; then |
| … | |
… | |
| 108 | |
201 | |
| 109 | if [[ "${python_all}" == "1" ]]; then |
202 | if [[ "${python_all}" == "1" ]]; then |
| 110 | if [[ -z "${python_minimal_version}" && -z "${python_maximal_version}" ]]; then |
203 | if [[ -z "${python_minimal_version}" && -z "${python_maximal_version}" ]]; then |
| 111 | _PYTHON_ATOMS+=("dev-lang/python") |
204 | _PYTHON_ATOMS+=("dev-lang/python") |
| 112 | else |
205 | else |
| 113 | python_versions=("${_CPYTHON2_SUPPORTED_ABIS[@]}" "${_CPYTHON3_SUPPORTED_ABIS[@]}") |
206 | python_versions=("${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]}" "${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]}") |
| 114 | python_minimal_version="${python_minimal_version:-${python_versions[0]}}" |
207 | python_minimal_version="${python_minimal_version:-${python_versions[0]}}" |
| 115 | python_maximal_version="${python_maximal_version:-${python_versions[${#python_versions[@]}-1]}}" |
208 | python_maximal_version="${python_maximal_version:-${python_versions[${#python_versions[@]}-1]}}" |
| 116 | _append_accepted_versions_range |
209 | _append_accepted_versions_range |
| 117 | fi |
210 | fi |
| 118 | else |
211 | else |
| 119 | if [[ "${python3}" == "1" ]]; then |
212 | if [[ "${python3}" == "1" ]]; then |
| 120 | if [[ -z "${python3_minimal_version}" && -z "${python3_maximal_version}" ]]; then |
213 | if [[ -z "${python3_minimal_version}" && -z "${python3_maximal_version}" ]]; then |
| 121 | _PYTHON_ATOMS+=("=dev-lang/python-3*") |
214 | _PYTHON_ATOMS+=("=dev-lang/python-3*") |
| 122 | else |
215 | else |
| 123 | python_versions=("${_CPYTHON3_SUPPORTED_ABIS[@]}") |
216 | python_versions=("${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]}") |
| 124 | python_minimal_version="${python3_minimal_version:-${python_versions[0]}}" |
217 | python_minimal_version="${python3_minimal_version:-${python_versions[0]}}" |
| 125 | python_maximal_version="${python3_maximal_version:-${python_versions[${#python_versions[@]}-1]}}" |
218 | python_maximal_version="${python3_maximal_version:-${python_versions[${#python_versions[@]}-1]}}" |
| 126 | _append_accepted_versions_range |
219 | _append_accepted_versions_range |
| 127 | fi |
220 | fi |
| 128 | fi |
221 | fi |
| 129 | if [[ "${python2}" == "1" ]]; then |
222 | if [[ "${python2}" == "1" ]]; then |
| 130 | if [[ -z "${python2_minimal_version}" && -z "${python2_maximal_version}" ]]; then |
223 | if [[ -z "${python2_minimal_version}" && -z "${python2_maximal_version}" ]]; then |
| 131 | _PYTHON_ATOMS+=("=dev-lang/python-2*") |
224 | _PYTHON_ATOMS+=("=dev-lang/python-2*") |
| 132 | else |
225 | else |
| 133 | python_versions=("${_CPYTHON2_SUPPORTED_ABIS[@]}") |
226 | python_versions=("${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]}") |
| 134 | python_minimal_version="${python2_minimal_version:-${python_versions[0]}}" |
227 | python_minimal_version="${python2_minimal_version:-${python_versions[0]}}" |
| 135 | python_maximal_version="${python2_maximal_version:-${python_versions[${#python_versions[@]}-1]}}" |
228 | python_maximal_version="${python2_maximal_version:-${python_versions[${#python_versions[@]}-1]}}" |
| 136 | _append_accepted_versions_range |
229 | _append_accepted_versions_range |
| 137 | fi |
230 | fi |
| 138 | fi |
231 | fi |
| … | |
… | |
| 153 | } |
246 | } |
| 154 | |
247 | |
| 155 | DEPEND=">=app-admin/eselect-python-20091230" |
248 | DEPEND=">=app-admin/eselect-python-20091230" |
| 156 | RDEPEND="${DEPEND}" |
249 | RDEPEND="${DEPEND}" |
| 157 | |
250 | |
| 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 |
251 | if [[ -n "${PYTHON_DEPEND}" ]]; then |
| 161 | _parse_PYTHON_DEPEND |
252 | _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 |
253 | else |
| 181 | _PYTHON_ATOMS=("dev-lang/python") |
254 | _PYTHON_ATOMS=("dev-lang/python") |
|
|
255 | fi |
|
|
256 | unset -f _python_parse_PYTHON_DEPEND |
|
|
257 | |
|
|
258 | if [[ -n "${NEED_PYTHON}" ]]; then |
|
|
259 | eerror "Use PYTHON_DEPEND variable instead of NEED_PYTHON variable." |
|
|
260 | die "NEED_PYTHON variable is banned" |
| 182 | fi |
261 | fi |
| 183 | |
262 | |
| 184 | # @ECLASS-VARIABLE: PYTHON_USE_WITH |
263 | # @ECLASS-VARIABLE: PYTHON_USE_WITH |
| 185 | # @DESCRIPTION: |
264 | # @DESCRIPTION: |
| 186 | # Set this to a space separated list of USE flags the Python slot in use must be built with. |
265 | # Set this to a space separated list of USE flags the Python slot in use must be built with. |
| … | |
… | |
| 230 | _python_implementation() { |
309 | _python_implementation() { |
| 231 | if [[ "${CATEGORY}/${PN}" == "dev-lang/python" ]]; then |
310 | if [[ "${CATEGORY}/${PN}" == "dev-lang/python" ]]; then |
| 232 | return 0 |
311 | return 0 |
| 233 | elif [[ "${CATEGORY}/${PN}" == "dev-java/jython" ]]; then |
312 | elif [[ "${CATEGORY}/${PN}" == "dev-java/jython" ]]; then |
| 234 | return 0 |
313 | return 0 |
|
|
314 | elif [[ "${CATEGORY}/${PN}" == "dev-python/pypy" ]]; then |
|
|
315 | return 0 |
| 235 | else |
316 | else |
| 236 | return 1 |
317 | return 1 |
| 237 | fi |
|
|
| 238 | } |
|
|
| 239 | |
|
|
| 240 | _python_package_supporting_installation_for_multiple_python_abis() { |
|
|
| 241 | if [[ "${EBUILD_PHASE}" == "depend" ]]; then |
|
|
| 242 | die "${FUNCNAME}() cannot be used in global scope" |
|
|
| 243 | fi |
|
|
| 244 | |
|
|
| 245 | if has "${EAPI:-0}" 0 1 2 3 4; then |
|
|
| 246 | if [[ -n "${SUPPORT_PYTHON_ABIS}" ]]; then |
|
|
| 247 | return 0 |
|
|
| 248 | else |
|
|
| 249 | return 1 |
|
|
| 250 | fi |
|
|
| 251 | else |
|
|
| 252 | die "${FUNCNAME}(): Support for EAPI=\"${EAPI}\" not implemented" |
|
|
| 253 | fi |
318 | fi |
| 254 | } |
319 | } |
| 255 | |
320 | |
| 256 | _python_abi-specific_local_scope() { |
321 | _python_abi-specific_local_scope() { |
| 257 | [[ " ${FUNCNAME[@]:2} " =~ " "(_python_final_sanity_checks|python_execute_function|python_mod_optimize|python_mod_cleanup)" " ]] |
322 | [[ " ${FUNCNAME[@]:2} " =~ " "(_python_final_sanity_checks|python_execute_function|python_mod_optimize|python_mod_cleanup)" " ]] |
| … | |
… | |
| 331 | _CYAN= |
396 | _CYAN= |
| 332 | _NORMAL= |
397 | _NORMAL= |
| 333 | fi |
398 | fi |
| 334 | } |
399 | } |
| 335 | |
400 | |
| 336 | unset PYTHON_PKG_SETUP_EXECUTED |
|
|
| 337 | |
|
|
| 338 | _python_check_python_pkg_setup_execution() { |
401 | _python_check_python_pkg_setup_execution() { |
| 339 | [[ " ${FUNCNAME[@]:1} " =~ " "(python_set_active_version|python_pkg_setup)" " ]] && return |
402 | [[ " ${FUNCNAME[@]:1} " =~ " "(python_set_active_version|python_pkg_setup)" " ]] && return |
| 340 | |
403 | |
| 341 | if ! has "${EAPI:-0}" 0 1 2 3 && [[ -z "${PYTHON_PKG_SETUP_EXECUTED}" ]]; then |
404 | if ! has "${EAPI:-0}" 0 1 2 3 && [[ -z "${PYTHON_PKG_SETUP_EXECUTED}" ]]; then |
| 342 | die "python_pkg_setup() not called" |
405 | die "python_pkg_setup() not called" |
| … | |
… | |
| 347 | # @DESCRIPTION: |
410 | # @DESCRIPTION: |
| 348 | # Perform sanity checks and initialize environment. |
411 | # Perform sanity checks and initialize environment. |
| 349 | # |
412 | # |
| 350 | # This function is exported in EAPI 2 and 3 when PYTHON_USE_WITH or PYTHON_USE_WITH_OR variable |
413 | # This function is exported in EAPI 2 and 3 when PYTHON_USE_WITH or PYTHON_USE_WITH_OR variable |
| 351 | # is set and always in EAPI >=4. Calling of this function is mandatory in EAPI >=4. |
414 | # is set and always in EAPI >=4. Calling of this function is mandatory in EAPI >=4. |
| 352 | # |
|
|
| 353 | # This function can be used only in pkg_setup() phase. |
|
|
| 354 | python_pkg_setup() { |
415 | python_pkg_setup() { |
| 355 | # Check if phase is pkg_setup(). |
416 | if [[ "${EBUILD_PHASE}" != "setup" ]]; then |
| 356 | [[ "${EBUILD_PHASE}" != "setup" ]] && die "${FUNCNAME}() can be used only in pkg_setup() phase" |
417 | die "${FUNCNAME}() can be used only in pkg_setup() phase" |
|
|
418 | fi |
| 357 | |
419 | |
| 358 | if [[ "$#" -ne 0 ]]; then |
420 | if [[ "$#" -ne 0 ]]; then |
| 359 | die "${FUNCNAME}() does not accept arguments" |
421 | die "${FUNCNAME}() does not accept arguments" |
| 360 | fi |
422 | fi |
|
|
423 | |
|
|
424 | export JYTHON_SYSTEM_CACHEDIR="1" |
|
|
425 | addwrite "${EPREFIX}/var/cache/jython" |
| 361 | |
426 | |
| 362 | if _python_package_supporting_installation_for_multiple_python_abis; then |
427 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| 363 | _python_calculate_PYTHON_ABIS |
428 | _python_calculate_PYTHON_ABIS |
| 364 | export EPYTHON="$(PYTHON -f)" |
429 | export EPYTHON="$(PYTHON -f)" |
| 365 | else |
430 | else |
| … | |
… | |
| 408 | fi |
473 | fi |
| 409 | |
474 | |
| 410 | PYTHON_PKG_SETUP_EXECUTED="1" |
475 | PYTHON_PKG_SETUP_EXECUTED="1" |
| 411 | } |
476 | } |
| 412 | |
477 | |
| 413 | if ! has "${EAPI:-0}" 0 1 2 3 || has "${EAPI:-0}" 2 3 && [[ -n "${PYTHON_USE_WITH}" || -n "${PYTHON_USE_WITH_OR}" ]]; then |
478 | _PYTHON_SHEBANG_BASE_PART_REGEX='^#![[:space:]]*([^[:space:]]*/usr/bin/env[[:space:]]+)?([^[:space:]]*/)?(jython|pypy-c|python)' |
| 414 | EXPORT_FUNCTIONS pkg_setup |
|
|
| 415 | fi |
|
|
| 416 | |
479 | |
| 417 | # @FUNCTION: python_convert_shebangs |
480 | # @FUNCTION: python_convert_shebangs |
| 418 | # @USAGE: [-q|--quiet] [-r|--recursive] [-x|--only-executables] [--] <Python_version> <file|directory> [files|directories] |
481 | # @USAGE: [-q|--quiet] [-r|--recursive] [-x|--only-executables] [--] <Python_ABI|Python_version> <file|directory> [files|directories] |
| 419 | # @DESCRIPTION: |
482 | # @DESCRIPTION: |
| 420 | # Convert shebangs in specified files. Directories can be specified only with --recursive option. |
483 | # Convert shebangs in specified files. Directories can be specified only with --recursive option. |
| 421 | python_convert_shebangs() { |
484 | python_convert_shebangs() { |
| 422 | _python_check_python_pkg_setup_execution |
485 | _python_check_python_pkg_setup_execution |
| 423 | |
486 | |
| 424 | local argument file files=() only_executables="0" python_version quiet="0" recursive="0" |
487 | local argument file files=() only_executables="0" python_interpreter quiet="0" recursive="0" shebangs_converted="0" |
| 425 | |
488 | |
| 426 | while (($#)); do |
489 | while (($#)); do |
| 427 | case "$1" in |
490 | case "$1" in |
| 428 | -r|--recursive) |
491 | -r|--recursive) |
| 429 | recursive="1" |
492 | recursive="1" |
| … | |
… | |
| 452 | die "${FUNCNAME}(): Missing Python version and files or directories" |
515 | die "${FUNCNAME}(): Missing Python version and files or directories" |
| 453 | elif [[ "$#" -eq 1 ]]; then |
516 | elif [[ "$#" -eq 1 ]]; then |
| 454 | die "${FUNCNAME}(): Missing files or directories" |
517 | die "${FUNCNAME}(): Missing files or directories" |
| 455 | fi |
518 | fi |
| 456 | |
519 | |
| 457 | python_version="$1" |
520 | if [[ -n "$(_python_get_implementation --ignore-invalid "$1")" ]]; then |
|
|
521 | python_interpreter="$(PYTHON "$1")" |
|
|
522 | else |
|
|
523 | python_interpreter="python$1" |
|
|
524 | fi |
| 458 | shift |
525 | shift |
| 459 | |
526 | |
| 460 | for argument in "$@"; do |
527 | for argument in "$@"; do |
| 461 | if [[ ! -e "${argument}" ]]; then |
528 | if [[ ! -e "${argument}" ]]; then |
| 462 | die "${FUNCNAME}(): '${argument}' does not exist" |
529 | die "${FUNCNAME}(): '${argument}' does not exist" |
| … | |
… | |
| 477 | |
544 | |
| 478 | for file in "${files[@]}"; do |
545 | for file in "${files[@]}"; do |
| 479 | file="${file#./}" |
546 | file="${file#./}" |
| 480 | [[ "${only_executables}" == "1" && ! -x "${file}" ]] && continue |
547 | [[ "${only_executables}" == "1" && ! -x "${file}" ]] && continue |
| 481 | |
548 | |
| 482 | if [[ "$(head -n1 "${file}")" =~ ^'#!'.*python ]]; then |
549 | 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 |
550 | [[ "$(sed -ne "2p" "${file}")" =~ ^"# Gentoo '".*"' wrapper script generated by python_generate_wrapper_scripts()"$ ]] && continue |
|
|
551 | |
|
|
552 | shebangs_converted="1" |
| 484 | |
553 | |
| 485 | if [[ "${quiet}" == "0" ]]; then |
554 | if [[ "${quiet}" == "0" ]]; then |
| 486 | einfo "Converting shebang in '${file}'" |
555 | einfo "Converting shebang in '${file}'" |
| 487 | fi |
556 | fi |
| 488 | |
557 | |
| 489 | sed -e "1s/python\([[:digit:]]\+\(\.[[:digit:]]\+\)\?\)\?/python${python_version}/" -i "${file}" || die "Conversion of shebang in '${file}' failed" |
558 | 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" |
|
|
559 | fi |
|
|
560 | done |
| 490 | |
561 | |
| 491 | # Delete potential whitespace after "#!". |
562 | if [[ "${shebangs_converted}" == "0" ]]; then |
| 492 | sed -e '1s/\(^#!\)[[:space:]]*/\1/' -i "${file}" || die "sed '${file}' failed" |
563 | ewarn "${FUNCNAME}(): Python scripts not found" |
| 493 | fi |
564 | fi |
| 494 | done |
|
|
| 495 | } |
565 | } |
| 496 | |
566 | |
| 497 | # @FUNCTION: python_clean_installation_image |
567 | # @FUNCTION: python_clean_py-compile_files |
| 498 | # @USAGE: [-q|--quiet] |
568 | # @USAGE: [-q|--quiet] |
| 499 | # @DESCRIPTION: |
569 | # @DESCRIPTION: |
| 500 | # Delete needless files in installation image. |
570 | # Clean py-compile files to disable byte-compilation. |
| 501 | python_clean_installation_image() { |
571 | python_clean_py-compile_files() { |
| 502 | _python_check_python_pkg_setup_execution |
572 | _python_check_python_pkg_setup_execution |
| 503 | _python_initialize_prefix_variables |
|
|
| 504 | |
573 | |
| 505 | local file files=() quiet="0" |
574 | local file files=() quiet="0" |
| 506 | |
|
|
| 507 | # Check if phase is src_install(). |
|
|
| 508 | [[ "${EBUILD_PHASE}" != "install" ]] && die "${FUNCNAME}() can be used only in src_install() phase" |
|
|
| 509 | |
575 | |
| 510 | while (($#)); do |
576 | while (($#)); do |
| 511 | case "$1" in |
577 | case "$1" in |
| 512 | -q|--quiet) |
578 | -q|--quiet) |
| 513 | quiet="1" |
579 | quiet="1" |
| … | |
… | |
| 521 | esac |
587 | esac |
| 522 | shift |
588 | shift |
| 523 | done |
589 | done |
| 524 | |
590 | |
| 525 | while read -d $'\0' -r file; do |
591 | while read -d $'\0' -r file; do |
|
|
592 | files+=("${file#./}") |
|
|
593 | done < <(find -name py-compile -type f -print0) |
|
|
594 | |
|
|
595 | for file in "${files[@]}"; do |
|
|
596 | if [[ "${quiet}" == "0" ]]; then |
|
|
597 | einfo "Cleaning '${file}' file" |
|
|
598 | fi |
|
|
599 | echo "#!/bin/sh" > "${file}" |
|
|
600 | done |
|
|
601 | } |
|
|
602 | |
|
|
603 | # @FUNCTION: python_clean_installation_image |
|
|
604 | # @USAGE: [-q|--quiet] |
|
|
605 | # @DESCRIPTION: |
|
|
606 | # Delete needless files in installation image. |
|
|
607 | # |
|
|
608 | # This function can be used only in src_install() phase. |
|
|
609 | python_clean_installation_image() { |
|
|
610 | if [[ "${EBUILD_PHASE}" != "install" ]]; then |
|
|
611 | die "${FUNCNAME}() can be used only in src_install() phase" |
|
|
612 | fi |
|
|
613 | |
|
|
614 | _python_check_python_pkg_setup_execution |
|
|
615 | _python_initialize_prefix_variables |
|
|
616 | |
|
|
617 | local file files=() quiet="0" |
|
|
618 | |
|
|
619 | while (($#)); do |
|
|
620 | case "$1" in |
|
|
621 | -q|--quiet) |
|
|
622 | quiet="1" |
|
|
623 | ;; |
|
|
624 | -*) |
|
|
625 | die "${FUNCNAME}(): Unrecognized option '$1'" |
|
|
626 | ;; |
|
|
627 | *) |
|
|
628 | die "${FUNCNAME}(): Invalid usage" |
|
|
629 | ;; |
|
|
630 | esac |
|
|
631 | shift |
|
|
632 | done |
|
|
633 | |
|
|
634 | while read -d $'\0' -r file; do |
| 526 | files+=("${file}") |
635 | files+=("${file}") |
| 527 | done < <(find "${ED}" "(" -name "*.py[co]" -o -name "*\$py.class" ")" -type f -print0) |
636 | done < <(find "${ED}" "(" -name "*.py[co]" -o -name "*\$py.class" ")" -type f -print0) |
| 528 | |
637 | |
| 529 | if [[ "${#files[@]}" -gt 0 ]]; then |
638 | if [[ "${#files[@]}" -gt 0 ]]; then |
| 530 | if [[ "${quiet}" == "0" ]]; then |
639 | if [[ "${quiet}" == "0" ]]; then |
| … | |
… | |
| 564 | # @ECLASS-VARIABLE: SUPPORT_PYTHON_ABIS |
673 | # @ECLASS-VARIABLE: SUPPORT_PYTHON_ABIS |
| 565 | # @DESCRIPTION: |
674 | # @DESCRIPTION: |
| 566 | # Set this in EAPI <= 4 to indicate that current package supports installation for |
675 | # Set this in EAPI <= 4 to indicate that current package supports installation for |
| 567 | # multiple Python ABIs. |
676 | # multiple Python ABIs. |
| 568 | |
677 | |
|
|
678 | # @ECLASS-VARIABLE: PYTHON_TESTS_RESTRICTED_ABIS |
|
|
679 | # @DESCRIPTION: |
|
|
680 | # Space-separated list of Python ABI patterns. Testing in Python ABIs matching any Python ABI |
|
|
681 | # patterns specified in this list is skipped. |
|
|
682 | |
| 569 | # @ECLASS-VARIABLE: PYTHON_EXPORT_PHASE_FUNCTIONS |
683 | # @ECLASS-VARIABLE: PYTHON_EXPORT_PHASE_FUNCTIONS |
| 570 | # @DESCRIPTION: |
684 | # @DESCRIPTION: |
| 571 | # Set this to export phase functions for the following ebuild phases: |
685 | # Set this to export phase functions for the following ebuild phases: |
| 572 | # src_prepare, src_configure, src_compile, src_test, src_install. |
686 | # src_prepare(), src_configure(), src_compile(), src_test(), src_install(). |
| 573 | if ! has "${EAPI:-0}" 0 1; then |
687 | if ! has "${EAPI:-0}" 0 1; then |
| 574 | python_src_prepare() { |
688 | python_src_prepare() { |
| 575 | _python_check_python_pkg_setup_execution |
689 | if [[ "${EBUILD_PHASE}" != "prepare" ]]; then |
|
|
690 | die "${FUNCNAME}() can be used only in src_prepare() phase" |
|
|
691 | fi |
| 576 | |
692 | |
| 577 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
693 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
| 578 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
694 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
| 579 | fi |
695 | fi |
| 580 | |
696 | |
|
|
697 | _python_check_python_pkg_setup_execution |
|
|
698 | |
| 581 | if [[ "$#" -ne 0 ]]; then |
699 | if [[ "$#" -ne 0 ]]; then |
| 582 | die "${FUNCNAME}() does not accept arguments" |
700 | die "${FUNCNAME}() does not accept arguments" |
| 583 | fi |
701 | fi |
| 584 | |
702 | |
| 585 | python_copy_sources |
703 | python_copy_sources |
| 586 | } |
704 | } |
| 587 | |
705 | |
| 588 | for python_default_function in src_configure src_compile src_test src_install; do |
706 | for python_default_function in src_configure src_compile src_test; do |
| 589 | eval "python_${python_default_function}() { |
707 | eval "python_${python_default_function}() { |
| 590 | _python_check_python_pkg_setup_execution |
708 | if [[ \"\${EBUILD_PHASE}\" != \"${python_default_function#src_}\" ]]; then |
|
|
709 | die \"\${FUNCNAME}() can be used only in ${python_default_function}() phase\" |
|
|
710 | fi |
| 591 | |
711 | |
| 592 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
712 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
| 593 | die \"\${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs\" |
713 | die \"\${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs\" |
| 594 | fi |
714 | fi |
| 595 | |
715 | |
|
|
716 | _python_check_python_pkg_setup_execution |
|
|
717 | |
| 596 | python_execute_function -d -s -- \"\$@\" |
718 | python_execute_function -d -s -- \"\$@\" |
| 597 | }" |
719 | }" |
| 598 | done |
720 | done |
| 599 | unset python_default_function |
721 | unset python_default_function |
| 600 | |
722 | |
|
|
723 | python_src_install() { |
|
|
724 | if [[ "${EBUILD_PHASE}" != "install" ]]; then |
|
|
725 | die "${FUNCNAME}() can be used only in src_install() phase" |
|
|
726 | fi |
|
|
727 | |
|
|
728 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
729 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
|
|
730 | fi |
|
|
731 | |
|
|
732 | _python_check_python_pkg_setup_execution |
|
|
733 | |
|
|
734 | if has "${EAPI:-0}" 0 1 2 3; then |
|
|
735 | python_execute_function -d -s -- "$@" |
|
|
736 | else |
|
|
737 | python_installation() { |
|
|
738 | emake DESTDIR="${T}/images/${PYTHON_ABI}" install "$@" |
|
|
739 | } |
|
|
740 | python_execute_function -s python_installation "$@" |
|
|
741 | unset python_installation |
|
|
742 | |
|
|
743 | python_merge_intermediate_installation_images "${T}/images" |
|
|
744 | fi |
|
|
745 | } |
|
|
746 | |
| 601 | if [[ -n "${PYTHON_EXPORT_PHASE_FUNCTIONS}" ]]; then |
747 | if [[ -n "${PYTHON_EXPORT_PHASE_FUNCTIONS}" ]]; then |
| 602 | EXPORT_FUNCTIONS src_prepare src_configure src_compile src_test src_install |
748 | EXPORT_FUNCTIONS src_prepare src_configure src_compile src_test src_install |
| 603 | fi |
749 | fi |
| 604 | fi |
750 | fi |
| 605 | |
751 | |
|
|
752 | if has "${EAPI:-0}" 0 1 2 3 4; then |
| 606 | unset PYTHON_ABIS |
753 | unset PYTHON_ABIS |
|
|
754 | fi |
| 607 | |
755 | |
| 608 | _python_calculate_PYTHON_ABIS() { |
756 | _python_calculate_PYTHON_ABIS() { |
| 609 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
757 | 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" |
758 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
| 611 | fi |
759 | fi |
| 612 | |
760 | |
| 613 | _python_initial_sanity_checks |
761 | _python_initial_sanity_checks |
| 614 | |
762 | |
| 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 |
763 | if [[ "$(declare -p PYTHON_ABIS 2> /dev/null)" != "declare -x PYTHON_ABIS="* ]] && has "${EAPI:-0}" 0 1 2 3 4; then |
| 617 | local PYTHON_ABI restricted_ABI support_ABI supported_PYTHON_ABIS= |
764 | local PYTHON_ABI |
| 618 | PYTHON_ABI_SUPPORTED_VALUES="${_CPYTHON2_SUPPORTED_ABIS[@]} ${_CPYTHON3_SUPPORTED_ABIS[@]} ${_JYTHON_SUPPORTED_ABIS[@]}" |
|
|
| 619 | |
765 | |
| 620 | if [[ "$(declare -p USE_PYTHON 2> /dev/null)" == "declare -x USE_PYTHON="* ]]; then |
766 | if [[ "$(declare -p USE_PYTHON 2> /dev/null)" == "declare -x USE_PYTHON="* ]]; then |
| 621 | local cpython_enabled="0" |
767 | local cpython_enabled="0" |
| 622 | |
768 | |
| 623 | if [[ -z "${USE_PYTHON}" ]]; then |
769 | if [[ -z "${USE_PYTHON}" ]]; then |
| 624 | die "USE_PYTHON variable is empty" |
770 | die "USE_PYTHON variable is empty" |
| 625 | fi |
771 | fi |
| 626 | |
772 | |
| 627 | for PYTHON_ABI in ${USE_PYTHON}; do |
773 | for PYTHON_ABI in ${USE_PYTHON}; do |
| 628 | if ! has "${PYTHON_ABI}" ${PYTHON_ABI_SUPPORTED_VALUES}; then |
774 | if ! has "${PYTHON_ABI}" "${_PYTHON_GLOBALLY_SUPPORTED_ABIS[@]}"; then |
| 629 | die "USE_PYTHON variable contains invalid value '${PYTHON_ABI}'" |
775 | die "USE_PYTHON variable contains invalid value '${PYTHON_ABI}'" |
| 630 | fi |
776 | fi |
| 631 | |
777 | |
| 632 | if has "${PYTHON_ABI}" "${_CPYTHON2_SUPPORTED_ABIS[@]}" "${_CPYTHON3_SUPPORTED_ABIS[@]}"; then |
778 | if has "${PYTHON_ABI}" "${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]}" "${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]}"; then |
| 633 | cpython_enabled="1" |
779 | cpython_enabled="1" |
| 634 | fi |
780 | fi |
| 635 | |
781 | |
| 636 | support_ABI="1" |
782 | if ! _python_check_python_abi_matching --patterns-list "${PYTHON_ABI}" "${RESTRICT_PYTHON_ABIS}"; then |
| 637 | for restricted_ABI in ${RESTRICT_PYTHON_ABIS}; do |
783 | export PYTHON_ABIS+="${PYTHON_ABIS:+ }${PYTHON_ABI}" |
| 638 | if [[ "${PYTHON_ABI}" == ${restricted_ABI} ]]; then |
784 | fi |
| 639 | support_ABI="0" |
785 | done |
|
|
786 | |
|
|
787 | if [[ -z "${PYTHON_ABIS//[${IFS}]/}" ]]; then |
|
|
788 | die "USE_PYTHON variable does not enable any Python ABI supported by ${CATEGORY}/${PF}" |
|
|
789 | fi |
|
|
790 | |
|
|
791 | if [[ "${cpython_enabled}" == "0" ]]; then |
|
|
792 | die "USE_PYTHON variable does not enable any CPython ABI" |
|
|
793 | fi |
|
|
794 | else |
|
|
795 | local python_version python2_version python3_version support_python_major_version |
|
|
796 | |
|
|
797 | if ! has_version "dev-lang/python"; then |
|
|
798 | die "${FUNCNAME}(): 'dev-lang/python' is not installed" |
|
|
799 | fi |
|
|
800 | |
|
|
801 | python_version="$("${EPREFIX}/usr/bin/python" -c 'from sys import version_info; print(".".join(str(x) for x in version_info[:2]))')" |
|
|
802 | |
|
|
803 | if has_version "=dev-lang/python-2*"; then |
|
|
804 | if [[ "$(readlink "${EPREFIX}/usr/bin/python2")" != "python2."* ]]; then |
|
|
805 | die "'${EPREFIX}/usr/bin/python2' is not valid symlink" |
|
|
806 | fi |
|
|
807 | |
|
|
808 | python2_version="$("${EPREFIX}/usr/bin/python2" -c 'from sys import version_info; print(".".join(str(x) for x in version_info[:2]))')" |
|
|
809 | |
|
|
810 | support_python_major_version="0" |
|
|
811 | for PYTHON_ABI in "${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]}"; do |
|
|
812 | if ! _python_check_python_abi_matching --patterns-list "${PYTHON_ABI}" "${RESTRICT_PYTHON_ABIS}"; then |
|
|
813 | support_python_major_version="1" |
| 640 | break |
814 | break |
| 641 | fi |
815 | fi |
| 642 | done |
816 | done |
| 643 | [[ "${support_ABI}" == "1" ]] && export PYTHON_ABIS+="${PYTHON_ABIS:+ }${PYTHON_ABI}" |
|
|
| 644 | done |
|
|
| 645 | |
|
|
| 646 | if [[ -z "${PYTHON_ABIS//[${IFS}]/}" ]]; then |
|
|
| 647 | die "USE_PYTHON variable does not enable any Python ABI supported by ${CATEGORY}/${PF}" |
|
|
| 648 | fi |
|
|
| 649 | |
|
|
| 650 | if [[ "${cpython_enabled}" == "0" ]]; then |
|
|
| 651 | die "USE_PYTHON variable does not enable any CPython ABI" |
|
|
| 652 | fi |
|
|
| 653 | else |
|
|
| 654 | local python_version python2_version= python3_version= support_python_major_version |
|
|
| 655 | |
|
|
| 656 | if ! has_version "dev-lang/python"; then |
|
|
| 657 | die "${FUNCNAME}(): 'dev-lang/python' is not installed" |
|
|
| 658 | fi |
|
|
| 659 | |
|
|
| 660 | python_version="$("${EPREFIX}/usr/bin/python" -c 'from sys import version_info; print(".".join(str(x) for x in version_info[:2]))')" |
|
|
| 661 | |
|
|
| 662 | if has_version "=dev-lang/python-2*"; then |
|
|
| 663 | if [[ "$(readlink "${EPREFIX}/usr/bin/python2")" != "python2."* ]]; then |
|
|
| 664 | die "'${EPREFIX}/usr/bin/python2' is not valid symlink" |
|
|
| 665 | fi |
|
|
| 666 | |
|
|
| 667 | python2_version="$("${EPREFIX}/usr/bin/python2" -c 'from sys import version_info; print(".".join(str(x) for x in version_info[:2]))')" |
|
|
| 668 | |
|
|
| 669 | for PYTHON_ABI in "${_CPYTHON2_SUPPORTED_ABIS[@]}"; do |
|
|
| 670 | support_python_major_version="1" |
|
|
| 671 | for restricted_ABI in ${RESTRICT_PYTHON_ABIS}; do |
|
|
| 672 | if [[ "${PYTHON_ABI}" == ${restricted_ABI} ]]; then |
|
|
| 673 | support_python_major_version="0" |
|
|
| 674 | fi |
|
|
| 675 | done |
|
|
| 676 | [[ "${support_python_major_version}" == "1" ]] && break |
|
|
| 677 | done |
|
|
| 678 | if [[ "${support_python_major_version}" == "1" ]]; then |
817 | if [[ "${support_python_major_version}" == "1" ]]; then |
| 679 | for restricted_ABI in ${RESTRICT_PYTHON_ABIS}; do |
818 | if _python_check_python_abi_matching --patterns-list "${python2_version}" "${RESTRICT_PYTHON_ABIS}"; then |
| 680 | if [[ "${python2_version}" == ${restricted_ABI} ]]; then |
|
|
| 681 | die "Active version of Python 2 is not supported by ${CATEGORY}/${PF}" |
819 | die "Active version of CPython 2 is not supported by ${CATEGORY}/${PF}" |
| 682 | fi |
820 | fi |
| 683 | done |
|
|
| 684 | else |
821 | else |
| 685 | python2_version="" |
822 | python2_version="" |
| 686 | fi |
823 | fi |
| 687 | fi |
824 | fi |
| 688 | |
825 | |
| … | |
… | |
| 691 | die "'${EPREFIX}/usr/bin/python3' is not valid symlink" |
828 | die "'${EPREFIX}/usr/bin/python3' is not valid symlink" |
| 692 | fi |
829 | fi |
| 693 | |
830 | |
| 694 | python3_version="$("${EPREFIX}/usr/bin/python3" -c 'from sys import version_info; print(".".join(str(x) for x in version_info[:2]))')" |
831 | python3_version="$("${EPREFIX}/usr/bin/python3" -c 'from sys import version_info; print(".".join(str(x) for x in version_info[:2]))')" |
| 695 | |
832 | |
|
|
833 | support_python_major_version="0" |
| 696 | for PYTHON_ABI in "${_CPYTHON3_SUPPORTED_ABIS[@]}"; do |
834 | for PYTHON_ABI in "${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]}"; do |
|
|
835 | if ! _python_check_python_abi_matching --patterns-list "${PYTHON_ABI}" "${RESTRICT_PYTHON_ABIS}"; then |
| 697 | support_python_major_version="1" |
836 | support_python_major_version="1" |
| 698 | for restricted_ABI in ${RESTRICT_PYTHON_ABIS}; do |
837 | break |
| 699 | if [[ "${PYTHON_ABI}" == ${restricted_ABI} ]]; then |
|
|
| 700 | support_python_major_version="0" |
|
|
| 701 | fi |
838 | fi |
| 702 | done |
|
|
| 703 | [[ "${support_python_major_version}" == "1" ]] && break |
|
|
| 704 | done |
839 | done |
| 705 | if [[ "${support_python_major_version}" == "1" ]]; then |
840 | if [[ "${support_python_major_version}" == "1" ]]; then |
| 706 | for restricted_ABI in ${RESTRICT_PYTHON_ABIS}; do |
841 | if _python_check_python_abi_matching --patterns-list "${python3_version}" "${RESTRICT_PYTHON_ABIS}"; then |
| 707 | if [[ "${python3_version}" == ${restricted_ABI} ]]; then |
|
|
| 708 | die "Active version of Python 3 is not supported by ${CATEGORY}/${PF}" |
842 | die "Active version of CPython 3 is not supported by ${CATEGORY}/${PF}" |
| 709 | fi |
843 | fi |
| 710 | done |
|
|
| 711 | else |
844 | else |
| 712 | python3_version="" |
845 | python3_version="" |
| 713 | fi |
846 | fi |
| 714 | fi |
847 | fi |
| 715 | |
848 | |
| … | |
… | |
| 740 | eval "_PYTHON_SAVED_${variable}=\"\${!variable}\"" |
873 | eval "_PYTHON_SAVED_${variable}=\"\${!variable}\"" |
| 741 | for prefix in PYTHON_USER_ PYTHON_; do |
874 | for prefix in PYTHON_USER_ PYTHON_; do |
| 742 | if [[ "$(declare -p ${prefix}${variable} 2> /dev/null)" == "declare -a ${prefix}${variable}="* ]]; then |
875 | if [[ "$(declare -p ${prefix}${variable} 2> /dev/null)" == "declare -a ${prefix}${variable}="* ]]; then |
| 743 | eval "array=(\"\${${prefix}${variable}[@]}\")" |
876 | eval "array=(\"\${${prefix}${variable}[@]}\")" |
| 744 | for element in "${array[@]}"; do |
877 | for element in "${array[@]}"; do |
| 745 | if [[ "${element}" =~ ^([[:alnum:]]|\.|-|\*|\[|\])+\ (\+|-)\ .+ ]]; then |
878 | if [[ "${element}" =~ ^${_PYTHON_ABI_PATTERN_REGEX}\ (\+|-)\ .+ ]]; then |
| 746 | pattern="${element%% *}" |
879 | pattern="${element%% *}" |
| 747 | element="${element#* }" |
880 | element="${element#* }" |
| 748 | operator="${element%% *}" |
881 | operator="${element%% *}" |
| 749 | flags="${element#* }" |
882 | flags="${element#* }" |
| 750 | if [[ "${PYTHON_ABI}" == ${pattern} ]]; then |
883 | if _python_check_python_abi_matching "${PYTHON_ABI}" "${pattern}"; then |
| 751 | if [[ "${operator}" == "+" ]]; then |
884 | if [[ "${operator}" == "+" ]]; then |
| 752 | eval "export ${variable}+=\"\${variable:+ }${flags}\"" |
885 | eval "export ${variable}+=\"\${variable:+ }${flags}\"" |
| 753 | elif [[ "${operator}" == "-" ]]; then |
886 | elif [[ "${operator}" == "-" ]]; then |
| 754 | flags="${flags// /$'\n'}" |
887 | flags="${flags// /$'\n'}" |
| 755 | old_value="${!variable// /$'\n'}" |
888 | old_value="${!variable// /$'\n'}" |
| … | |
… | |
| 789 | # @USAGE: [--action-message message] [-d|--default-function] [--failure-message message] [-f|--final-ABI] [--nonfatal] [-q|--quiet] [-s|--separate-build-dirs] [--source-dir source_directory] [--] <function> [arguments] |
922 | # @USAGE: [--action-message message] [-d|--default-function] [--failure-message message] [-f|--final-ABI] [--nonfatal] [-q|--quiet] [-s|--separate-build-dirs] [--source-dir source_directory] [--] <function> [arguments] |
| 790 | # @DESCRIPTION: |
923 | # @DESCRIPTION: |
| 791 | # Execute specified function for each value of PYTHON_ABIS, optionally passing additional |
924 | # Execute specified function for each value of PYTHON_ABIS, optionally passing additional |
| 792 | # arguments. The specified function can use PYTHON_ABI and BUILDDIR variables. |
925 | # arguments. The specified function can use PYTHON_ABI and BUILDDIR variables. |
| 793 | python_execute_function() { |
926 | python_execute_function() { |
| 794 | _python_check_python_pkg_setup_execution |
|
|
| 795 | |
|
|
| 796 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
927 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
| 797 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
928 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
| 798 | fi |
929 | fi |
| 799 | |
930 | |
|
|
931 | _python_check_python_pkg_setup_execution |
| 800 | _python_set_color_variables |
932 | _python_set_color_variables |
| 801 | |
933 | |
| 802 | local action action_message action_message_template= default_function="0" failure_message failure_message_template= final_ABI="0" function iterated_PYTHON_ABIS nonfatal="0" previous_directory previous_directory_stack previous_directory_stack_length PYTHON_ABI quiet="0" return_code separate_build_dirs="0" source_dir= |
934 | local action action_message action_message_template default_function="0" failure_message failure_message_template final_ABI="0" function iterated_PYTHON_ABIS nonfatal="0" previous_directory previous_directory_stack previous_directory_stack_length PYTHON_ABI quiet="0" return_code separate_build_dirs="0" source_dir |
| 803 | |
935 | |
| 804 | while (($#)); do |
936 | while (($#)); do |
| 805 | case "$1" in |
937 | case "$1" in |
| 806 | --action-message) |
938 | --action-message) |
| 807 | action_message_template="$2" |
939 | action_message_template="$2" |
| … | |
… | |
| 919 | iterated_PYTHON_ABIS="$(PYTHON -f --ABI)" |
1051 | iterated_PYTHON_ABIS="$(PYTHON -f --ABI)" |
| 920 | else |
1052 | else |
| 921 | iterated_PYTHON_ABIS="${PYTHON_ABIS}" |
1053 | iterated_PYTHON_ABIS="${PYTHON_ABIS}" |
| 922 | fi |
1054 | fi |
| 923 | for PYTHON_ABI in ${iterated_PYTHON_ABIS}; do |
1055 | for PYTHON_ABI in ${iterated_PYTHON_ABIS}; do |
|
|
1056 | if [[ "${EBUILD_PHASE}" == "test" ]] && _python_check_python_abi_matching --patterns-list "${PYTHON_ABI}" "${PYTHON_TESTS_RESTRICTED_ABIS}"; then |
|
|
1057 | if [[ "${quiet}" == "0" ]]; then |
|
|
1058 | echo " ${_GREEN}*${_NORMAL} ${_BLUE}Testing of ${CATEGORY}/${PF} with $(python_get_implementation_and_version) skipped${_NORMAL}" |
|
|
1059 | fi |
|
|
1060 | continue |
|
|
1061 | fi |
|
|
1062 | |
| 924 | _python_prepare_flags |
1063 | _python_prepare_flags |
| 925 | |
1064 | |
| 926 | if [[ "${quiet}" == "0" ]]; then |
1065 | if [[ "${quiet}" == "0" ]]; then |
| 927 | if [[ -n "${action_message_template}" ]]; then |
1066 | if [[ -n "${action_message_template}" ]]; then |
| 928 | eval "action_message=\"${action_message_template}\"" |
1067 | eval "action_message=\"${action_message_template}\"" |
| 929 | else |
1068 | else |
| 930 | action_message="${action} of ${CATEGORY}/${PF} with $(python_get_implementation) $(python_get_version)..." |
1069 | action_message="${action} of ${CATEGORY}/${PF} with $(python_get_implementation_and_version)..." |
| 931 | fi |
1070 | fi |
| 932 | echo " ${_GREEN}*${_NORMAL} ${_BLUE}${action_message}${_NORMAL}" |
1071 | echo " ${_GREEN}*${_NORMAL} ${_BLUE}${action_message}${_NORMAL}" |
| 933 | fi |
1072 | fi |
| 934 | |
1073 | |
| 935 | if [[ "${separate_build_dirs}" == "1" ]]; then |
1074 | if [[ "${separate_build_dirs}" == "1" ]]; then |
| … | |
… | |
| 959 | |
1098 | |
| 960 | if [[ "${return_code}" -ne 0 ]]; then |
1099 | if [[ "${return_code}" -ne 0 ]]; then |
| 961 | if [[ -n "${failure_message_template}" ]]; then |
1100 | if [[ -n "${failure_message_template}" ]]; then |
| 962 | eval "failure_message=\"${failure_message_template}\"" |
1101 | eval "failure_message=\"${failure_message_template}\"" |
| 963 | else |
1102 | else |
| 964 | failure_message="${action} failed with $(python_get_implementation) $(python_get_version) in ${function}() function" |
1103 | failure_message="${action} failed with $(python_get_implementation_and_version) in ${function}() function" |
| 965 | fi |
1104 | fi |
| 966 | |
1105 | |
| 967 | if [[ "${nonfatal}" == "1" ]]; then |
1106 | if [[ "${nonfatal}" == "1" ]]; then |
| 968 | if [[ "${quiet}" == "0" ]]; then |
1107 | if [[ "${quiet}" == "0" ]]; then |
| 969 | ewarn "${failure_message}" |
1108 | ewarn "${failure_message}" |
| … | |
… | |
| 1022 | # @FUNCTION: python_copy_sources |
1161 | # @FUNCTION: python_copy_sources |
| 1023 | # @USAGE: <directory="${S}"> [directory] |
1162 | # @USAGE: <directory="${S}"> [directory] |
| 1024 | # @DESCRIPTION: |
1163 | # @DESCRIPTION: |
| 1025 | # Copy unpacked sources of current package to separate build directory for each Python ABI. |
1164 | # Copy unpacked sources of current package to separate build directory for each Python ABI. |
| 1026 | python_copy_sources() { |
1165 | python_copy_sources() { |
| 1027 | _python_check_python_pkg_setup_execution |
|
|
| 1028 | |
|
|
| 1029 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
1166 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
| 1030 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
1167 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
| 1031 | fi |
1168 | fi |
|
|
1169 | |
|
|
1170 | _python_check_python_pkg_setup_execution |
| 1032 | |
1171 | |
| 1033 | local dir dirs=() PYTHON_ABI |
1172 | local dir dirs=() PYTHON_ABI |
| 1034 | |
1173 | |
| 1035 | if [[ "$#" -eq 0 ]]; then |
1174 | if [[ "$#" -eq 0 ]]; then |
| 1036 | if [[ "${WORKDIR}" == "${S}" ]]; then |
1175 | if [[ "${WORKDIR}" == "${S}" ]]; then |
| … | |
… | |
| 1053 | # @USAGE: [-E|--respect-EPYTHON] [-f|--force] [-q|--quiet] [--] <file> [files] |
1192 | # @USAGE: [-E|--respect-EPYTHON] [-f|--force] [-q|--quiet] [--] <file> [files] |
| 1054 | # @DESCRIPTION: |
1193 | # @DESCRIPTION: |
| 1055 | # Generate wrapper scripts. Existing files are overwritten only with --force option. |
1194 | # Generate wrapper scripts. Existing files are overwritten only with --force option. |
| 1056 | # If --respect-EPYTHON option is specified, then generated wrapper scripts will |
1195 | # If --respect-EPYTHON option is specified, then generated wrapper scripts will |
| 1057 | # respect EPYTHON variable at run time. |
1196 | # respect EPYTHON variable at run time. |
|
|
1197 | # |
|
|
1198 | # This function can be used only in src_install() phase. |
| 1058 | python_generate_wrapper_scripts() { |
1199 | python_generate_wrapper_scripts() { |
| 1059 | _python_check_python_pkg_setup_execution |
1200 | if [[ "${EBUILD_PHASE}" != "install" ]]; then |
|
|
1201 | die "${FUNCNAME}() can be used only in src_install() phase" |
|
|
1202 | fi |
| 1060 | |
1203 | |
| 1061 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
1204 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
| 1062 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
1205 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
| 1063 | fi |
1206 | fi |
| 1064 | |
1207 | |
|
|
1208 | _python_check_python_pkg_setup_execution |
| 1065 | _python_initialize_prefix_variables |
1209 | _python_initialize_prefix_variables |
| 1066 | |
1210 | |
| 1067 | local eselect_python_option file force="0" quiet="0" PYTHON_ABI python2_enabled="0" python3_enabled="0" respect_EPYTHON="0" |
1211 | local eselect_python_option file force="0" quiet="0" PYTHON_ABI PYTHON_ABIS_list python2_enabled="0" python3_enabled="0" respect_EPYTHON="0" |
| 1068 | |
1212 | |
| 1069 | while (($#)); do |
1213 | while (($#)); do |
| 1070 | case "$1" in |
1214 | case "$1" in |
| 1071 | -E|--respect-EPYTHON) |
1215 | -E|--respect-EPYTHON) |
| 1072 | respect_EPYTHON="1" |
1216 | respect_EPYTHON="1" |
| … | |
… | |
| 1094 | if [[ "$#" -eq 0 ]]; then |
1238 | if [[ "$#" -eq 0 ]]; then |
| 1095 | die "${FUNCNAME}(): Missing arguments" |
1239 | die "${FUNCNAME}(): Missing arguments" |
| 1096 | fi |
1240 | fi |
| 1097 | |
1241 | |
| 1098 | _python_calculate_PYTHON_ABIS |
1242 | _python_calculate_PYTHON_ABIS |
| 1099 | for PYTHON_ABI in "${_CPYTHON2_SUPPORTED_ABIS[@]}"; do |
1243 | for PYTHON_ABI in "${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]}"; do |
| 1100 | if has "${PYTHON_ABI}" ${PYTHON_ABIS}; then |
1244 | if has "${PYTHON_ABI}" ${PYTHON_ABIS}; then |
| 1101 | python2_enabled="1" |
1245 | python2_enabled="1" |
| 1102 | fi |
1246 | fi |
| 1103 | done |
1247 | done |
| 1104 | for PYTHON_ABI in "${_CPYTHON3_SUPPORTED_ABIS[@]}"; do |
1248 | for PYTHON_ABI in "${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]}"; do |
| 1105 | if has "${PYTHON_ABI}" ${PYTHON_ABIS}; then |
1249 | if has "${PYTHON_ABI}" ${PYTHON_ABIS}; then |
| 1106 | python3_enabled="1" |
1250 | python3_enabled="1" |
| 1107 | fi |
1251 | fi |
| 1108 | done |
1252 | done |
| 1109 | |
1253 | |
| … | |
… | |
| 1115 | eselect_python_option="--python3" |
1259 | eselect_python_option="--python3" |
| 1116 | else |
1260 | else |
| 1117 | die "${FUNCNAME}(): Unsupported environment" |
1261 | die "${FUNCNAME}(): Unsupported environment" |
| 1118 | fi |
1262 | fi |
| 1119 | |
1263 | |
|
|
1264 | PYTHON_ABIS_list="$("$(PYTHON -f)" -c "print(', '.join('\"%s\"' % x for x in reversed('${PYTHON_ABIS}'.split())))")" |
|
|
1265 | |
| 1120 | for file in "$@"; do |
1266 | for file in "$@"; do |
| 1121 | if [[ -f "${file}" && "${force}" == "0" ]]; then |
1267 | if [[ -f "${file}" && "${force}" == "0" ]]; then |
| 1122 | die "${FUNCNAME}(): '$1' already exists" |
1268 | die "${FUNCNAME}(): '${file}' already exists" |
| 1123 | fi |
1269 | fi |
| 1124 | |
1270 | |
| 1125 | if [[ "${quiet}" == "0" ]]; then |
1271 | if [[ "${quiet}" == "0" ]]; then |
| 1126 | einfo "Generating '${file#${ED%/}}' wrapper script" |
1272 | einfo "Generating '${file#${ED%/}}' wrapper script" |
| 1127 | fi |
1273 | fi |
| … | |
… | |
| 1133 | import os |
1279 | import os |
| 1134 | import re |
1280 | import re |
| 1135 | import subprocess |
1281 | import subprocess |
| 1136 | import sys |
1282 | import sys |
| 1137 | |
1283 | |
|
|
1284 | cpython_ABI_re = re.compile(r"^(\d+\.\d+)$") |
|
|
1285 | jython_ABI_re = re.compile(r"^(\d+\.\d+)-jython$") |
|
|
1286 | pypy_ABI_re = re.compile(r"^\d+\.\d+-pypy-(\d+\.\d+)$") |
| 1138 | EPYTHON_re = re.compile(r"^python(\d+\.\d+)$") |
1287 | cpython_interpreter_re = re.compile(r"^python(\d+\.\d+)$") |
|
|
1288 | jython_interpreter_re = re.compile(r"^jython(\d+\.\d+)$") |
|
|
1289 | pypy_interpreter_re = re.compile(r"^pypy-c(\d+\.\d+)$") |
| 1139 | python_shebang_re = re.compile(r"^#! *(${EPREFIX}/usr/bin/python|(${EPREFIX})?/usr/bin/env +(${EPREFIX}/usr/bin/)?python)") |
1290 | cpython_shebang_re = re.compile(r"^#![ \t]*(?:${EPREFIX}/usr/bin/python|(?:${EPREFIX})?/usr/bin/env[ \t]+(?:${EPREFIX}/usr/bin/)?python)") |
|
|
1291 | python_shebang_options_re = re.compile(r"^#![ \t]*${EPREFIX}/usr/bin/(?:jython|pypy-c|python)(?:\d+(?:\.\d+)?)?[ \t]+(-\S)") |
| 1140 | python_verification_output_re = re.compile("^GENTOO_PYTHON_TARGET_SCRIPT_PATH supported\n$") |
1292 | python_verification_output_re = re.compile("^GENTOO_PYTHON_TARGET_SCRIPT_PATH supported\n$") |
|
|
1293 | |
|
|
1294 | pypy_versions_mapping = { |
|
|
1295 | "1.5": "2.7" |
|
|
1296 | } |
|
|
1297 | |
|
|
1298 | def get_PYTHON_ABI(python_interpreter): |
|
|
1299 | cpython_matched = cpython_interpreter_re.match(python_interpreter) |
|
|
1300 | jython_matched = jython_interpreter_re.match(python_interpreter) |
|
|
1301 | pypy_matched = pypy_interpreter_re.match(python_interpreter) |
|
|
1302 | if cpython_matched is not None: |
|
|
1303 | PYTHON_ABI = cpython_matched.group(1) |
|
|
1304 | elif jython_matched is not None: |
|
|
1305 | PYTHON_ABI = jython_matched.group(1) + "-jython" |
|
|
1306 | elif pypy_matched is not None: |
|
|
1307 | PYTHON_ABI = pypy_versions_mapping[pypy_matched.group(1)] + "-pypy-" + pypy_matched.group(1) |
|
|
1308 | else: |
|
|
1309 | PYTHON_ABI = None |
|
|
1310 | return PYTHON_ABI |
|
|
1311 | |
|
|
1312 | def get_python_interpreter(PYTHON_ABI): |
|
|
1313 | cpython_matched = cpython_ABI_re.match(PYTHON_ABI) |
|
|
1314 | jython_matched = jython_ABI_re.match(PYTHON_ABI) |
|
|
1315 | pypy_matched = pypy_ABI_re.match(PYTHON_ABI) |
|
|
1316 | if cpython_matched is not None: |
|
|
1317 | python_interpreter = "python" + cpython_matched.group(1) |
|
|
1318 | elif jython_matched is not None: |
|
|
1319 | python_interpreter = "jython" + jython_matched.group(1) |
|
|
1320 | elif pypy_matched is not None: |
|
|
1321 | python_interpreter = "pypy-c" + pypy_matched.group(1) |
|
|
1322 | else: |
|
|
1323 | python_interpreter = None |
|
|
1324 | return python_interpreter |
| 1141 | |
1325 | |
| 1142 | EOF |
1326 | EOF |
| 1143 | if [[ "$?" != "0" ]]; then |
1327 | if [[ "$?" != "0" ]]; then |
| 1144 | die "${FUNCNAME}(): Generation of '$1' failed" |
1328 | die "${FUNCNAME}(): Generation of '$1' failed" |
| 1145 | fi |
1329 | fi |
| 1146 | if [[ "${respect_EPYTHON}" == "1" ]]; then |
1330 | if [[ "${respect_EPYTHON}" == "1" ]]; then |
| 1147 | cat << EOF >> "${file}" |
1331 | cat << EOF >> "${file}" |
| 1148 | EPYTHON = os.environ.get("EPYTHON") |
1332 | python_interpreter = os.environ.get("EPYTHON") |
| 1149 | if EPYTHON: |
1333 | if python_interpreter: |
| 1150 | EPYTHON_matched = EPYTHON_re.match(EPYTHON) |
1334 | PYTHON_ABI = get_PYTHON_ABI(python_interpreter) |
| 1151 | if EPYTHON_matched: |
1335 | 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) |
1336 | sys.stderr.write("%s: EPYTHON variable has unrecognized value '%s'\n" % (sys.argv[0], python_interpreter)) |
| 1155 | sys.exit(1) |
1337 | sys.exit(1) |
| 1156 | else: |
1338 | else: |
| 1157 | try: |
1339 | try: |
|
|
1340 | environment = os.environ.copy() |
|
|
1341 | environment["ROOT"] = "/" |
| 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) |
1342 | eselect_process = subprocess.Popen(["${EPREFIX}/usr/bin/eselect", "python", "show"${eselect_python_option:+, $(echo "\"")}${eselect_python_option}${eselect_python_option:+$(echo "\"")}], env=environment, stdout=subprocess.PIPE) |
| 1159 | if eselect_process.wait() != 0: |
1343 | if eselect_process.wait() != 0: |
| 1160 | raise ValueError |
1344 | raise ValueError |
| 1161 | except (OSError, ValueError): |
1345 | except (OSError, ValueError): |
| 1162 | sys.stderr.write("Execution of 'eselect python show${eselect_python_option:+ }${eselect_python_option}' failed\n") |
1346 | sys.stderr.write("%s: Execution of 'eselect python show${eselect_python_option:+ }${eselect_python_option}' failed\n" % sys.argv[0]) |
| 1163 | sys.exit(1) |
1347 | sys.exit(1) |
| 1164 | |
1348 | |
| 1165 | EPYTHON = eselect_process.stdout.read() |
1349 | python_interpreter = eselect_process.stdout.read() |
| 1166 | if not isinstance(EPYTHON, str): |
1350 | if not isinstance(python_interpreter, str): |
| 1167 | # Python 3 |
1351 | # Python 3 |
| 1168 | EPYTHON = EPYTHON.decode() |
1352 | python_interpreter = python_interpreter.decode() |
| 1169 | EPYTHON = EPYTHON.rstrip("\n") |
1353 | python_interpreter = python_interpreter.rstrip("\n") |
| 1170 | |
1354 | |
| 1171 | EPYTHON_matched = EPYTHON_re.match(EPYTHON) |
1355 | PYTHON_ABI = get_PYTHON_ABI(python_interpreter) |
| 1172 | if EPYTHON_matched: |
1356 | 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) |
1357 | sys.stderr.write("%s: 'eselect python show${eselect_python_option:+ }${eselect_python_option}' printed unrecognized value '%s'\n" % (sys.argv[0], python_interpreter)) |
| 1176 | sys.exit(1) |
1358 | sys.exit(1) |
| 1177 | EOF |
|
|
| 1178 | if [[ "$?" != "0" ]]; then |
|
|
| 1179 | die "${FUNCNAME}(): Generation of '$1' failed" |
|
|
| 1180 | fi |
|
|
| 1181 | else |
|
|
| 1182 | cat << EOF >> "${file}" |
|
|
| 1183 | try: |
|
|
| 1184 | eselect_process = subprocess.Popen(["${EPREFIX}/usr/bin/eselect", "python", "show"${eselect_python_option:+, $(echo "\"")}${eselect_python_option}${eselect_python_option:+$(echo "\"")}], stdout=subprocess.PIPE) |
|
|
| 1185 | if eselect_process.wait() != 0: |
|
|
| 1186 | raise ValueError |
|
|
| 1187 | except (OSError, ValueError): |
|
|
| 1188 | sys.stderr.write("Execution of 'eselect python show${eselect_python_option:+ }${eselect_python_option}' failed\n") |
|
|
| 1189 | sys.exit(1) |
|
|
| 1190 | |
1359 | |
| 1191 | EPYTHON = eselect_process.stdout.read() |
1360 | wrapper_script_path = os.path.realpath(sys.argv[0]) |
| 1192 | if not isinstance(EPYTHON, str): |
1361 | target_executable_path = "%s-%s" % (wrapper_script_path, PYTHON_ABI) |
| 1193 | # Python 3 |
1362 | if not os.path.exists(target_executable_path): |
| 1194 | EPYTHON = EPYTHON.decode() |
1363 | sys.stderr.write("%s: '%s' does not exist\n" % (sys.argv[0], target_executable_path)) |
| 1195 | EPYTHON = EPYTHON.rstrip("\n") |
|
|
| 1196 | |
|
|
| 1197 | EPYTHON_matched = EPYTHON_re.match(EPYTHON) |
|
|
| 1198 | if EPYTHON_matched: |
|
|
| 1199 | PYTHON_ABI = EPYTHON_matched.group(1) |
|
|
| 1200 | else: |
|
|
| 1201 | sys.stderr.write("'eselect python show${eselect_python_option:+ }${eselect_python_option}' printed unrecognized value '%s'\n" % EPYTHON) |
|
|
| 1202 | sys.exit(1) |
1364 | sys.exit(1) |
| 1203 | EOF |
1365 | EOF |
| 1204 | if [[ "$?" != "0" ]]; then |
1366 | if [[ "$?" != "0" ]]; then |
| 1205 | die "${FUNCNAME}(): Generation of '$1' failed" |
1367 | die "${FUNCNAME}(): Generation of '$1' failed" |
| 1206 | fi |
1368 | fi |
|
|
1369 | else |
|
|
1370 | cat << EOF >> "${file}" |
|
|
1371 | try: |
|
|
1372 | environment = os.environ.copy() |
|
|
1373 | environment["ROOT"] = "/" |
|
|
1374 | eselect_process = subprocess.Popen(["${EPREFIX}/usr/bin/eselect", "python", "show"${eselect_python_option:+, $(echo "\"")}${eselect_python_option}${eselect_python_option:+$(echo "\"")}], env=environment, stdout=subprocess.PIPE) |
|
|
1375 | if eselect_process.wait() != 0: |
|
|
1376 | raise ValueError |
|
|
1377 | except (OSError, ValueError): |
|
|
1378 | sys.stderr.write("%s: Execution of 'eselect python show${eselect_python_option:+ }${eselect_python_option}' failed\n" % sys.argv[0]) |
|
|
1379 | sys.exit(1) |
|
|
1380 | |
|
|
1381 | python_interpreter = eselect_process.stdout.read() |
|
|
1382 | if not isinstance(python_interpreter, str): |
|
|
1383 | # Python 3 |
|
|
1384 | python_interpreter = python_interpreter.decode() |
|
|
1385 | python_interpreter = python_interpreter.rstrip("\n") |
|
|
1386 | |
|
|
1387 | PYTHON_ABI = get_PYTHON_ABI(python_interpreter) |
|
|
1388 | if PYTHON_ABI is None: |
|
|
1389 | sys.stderr.write("%s: 'eselect python show${eselect_python_option:+ }${eselect_python_option}' printed unrecognized value '%s'\n" % (sys.argv[0], python_interpreter)) |
|
|
1390 | sys.exit(1) |
|
|
1391 | |
|
|
1392 | wrapper_script_path = os.path.realpath(sys.argv[0]) |
|
|
1393 | for PYTHON_ABI in [PYTHON_ABI, ${PYTHON_ABIS_list}]: |
|
|
1394 | target_executable_path = "%s-%s" % (wrapper_script_path, PYTHON_ABI) |
|
|
1395 | if os.path.exists(target_executable_path): |
|
|
1396 | break |
|
|
1397 | else: |
|
|
1398 | sys.stderr.write("%s: No target script exists for '%s'\n" % (sys.argv[0], wrapper_script_path)) |
|
|
1399 | sys.exit(1) |
|
|
1400 | |
|
|
1401 | python_interpreter = get_python_interpreter(PYTHON_ABI) |
|
|
1402 | if python_interpreter is None: |
|
|
1403 | sys.stderr.write("%s: Unrecognized Python ABI '%s'\n" % (sys.argv[0], PYTHON_ABI)) |
|
|
1404 | sys.exit(1) |
|
|
1405 | EOF |
|
|
1406 | if [[ "$?" != "0" ]]; then |
|
|
1407 | die "${FUNCNAME}(): Generation of '$1' failed" |
|
|
1408 | fi |
| 1207 | fi |
1409 | fi |
| 1208 | cat << EOF >> "${file}" |
1410 | 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 | |
1411 | |
| 1219 | target_executable = open(target_executable_path, "rb") |
1412 | target_executable = open(target_executable_path, "rb") |
| 1220 | target_executable_first_line = target_executable.readline() |
1413 | target_executable_first_line = target_executable.readline() |
|
|
1414 | target_executable.close() |
| 1221 | if not isinstance(target_executable_first_line, str): |
1415 | if not isinstance(target_executable_first_line, str): |
| 1222 | # Python 3 |
1416 | # Python 3 |
| 1223 | target_executable_first_line = target_executable_first_line.decode("utf_8", "replace") |
1417 | target_executable_first_line = target_executable_first_line.decode("utf_8", "replace") |
| 1224 | |
1418 | |
|
|
1419 | options = [] |
|
|
1420 | python_shebang_options_matched = python_shebang_options_re.match(target_executable_first_line) |
|
|
1421 | if python_shebang_options_matched is not None: |
|
|
1422 | options = [python_shebang_options_matched.group(1)] |
|
|
1423 | |
| 1225 | python_shebang_matched = python_shebang_re.match(target_executable_first_line) |
1424 | cpython_shebang_matched = cpython_shebang_re.match(target_executable_first_line) |
| 1226 | target_executable.close() |
|
|
| 1227 | |
1425 | |
| 1228 | if python_shebang_matched: |
1426 | if cpython_shebang_matched is not None: |
| 1229 | try: |
1427 | try: |
| 1230 | python_interpreter_path = "${EPREFIX}/usr/bin/%s" % EPYTHON |
1428 | python_interpreter_path = "${EPREFIX}/usr/bin/%s" % python_interpreter |
| 1231 | os.environ["GENTOO_PYTHON_TARGET_SCRIPT_PATH_VERIFICATION"] = "1" |
1429 | os.environ["GENTOO_PYTHON_TARGET_SCRIPT_PATH_VERIFICATION"] = "1" |
| 1232 | python_verification_process = subprocess.Popen([python_interpreter_path, "-c", "pass"], stdout=subprocess.PIPE) |
1430 | python_verification_process = subprocess.Popen([python_interpreter_path, "-c", "pass"], stdout=subprocess.PIPE) |
| 1233 | del os.environ["GENTOO_PYTHON_TARGET_SCRIPT_PATH_VERIFICATION"] |
1431 | del os.environ["GENTOO_PYTHON_TARGET_SCRIPT_PATH_VERIFICATION"] |
| 1234 | if python_verification_process.wait() != 0: |
1432 | if python_verification_process.wait() != 0: |
| 1235 | raise ValueError |
1433 | raise ValueError |
| … | |
… | |
| 1240 | python_verification_output = python_verification_output.decode() |
1438 | python_verification_output = python_verification_output.decode() |
| 1241 | |
1439 | |
| 1242 | if not python_verification_output_re.match(python_verification_output): |
1440 | if not python_verification_output_re.match(python_verification_output): |
| 1243 | raise ValueError |
1441 | raise ValueError |
| 1244 | |
1442 | |
|
|
1443 | if cpython_interpreter_re.match(python_interpreter) is not None: |
|
|
1444 | os.environ["GENTOO_PYTHON_PROCESS_NAME"] = os.path.basename(sys.argv[0]) |
|
|
1445 | os.environ["GENTOO_PYTHON_WRAPPER_SCRIPT_PATH"] = sys.argv[0] |
|
|
1446 | os.environ["GENTOO_PYTHON_TARGET_SCRIPT_PATH"] = target_executable_path |
|
|
1447 | |
|
|
1448 | if hasattr(os, "execv"): |
| 1245 | os.execv(python_interpreter_path, [python_interpreter_path] + sys.argv) |
1449 | os.execv(python_interpreter_path, [python_interpreter_path] + options + sys.argv) |
|
|
1450 | else: |
|
|
1451 | sys.exit(subprocess.Popen([python_interpreter_path] + options + sys.argv).wait()) |
|
|
1452 | except (KeyboardInterrupt, SystemExit): |
|
|
1453 | raise |
| 1246 | except: |
1454 | except: |
| 1247 | pass |
1455 | pass |
| 1248 | if "GENTOO_PYTHON_TARGET_SCRIPT_PATH_VERIFICATION" in os.environ: |
1456 | 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"] |
1457 | if variable in os.environ: |
|
|
1458 | del os.environ[variable] |
| 1250 | |
1459 | |
|
|
1460 | if hasattr(os, "execv"): |
| 1251 | os.execv(target_executable_path, sys.argv) |
1461 | os.execv(target_executable_path, sys.argv) |
|
|
1462 | else: |
|
|
1463 | sys.exit(subprocess.Popen([target_executable_path] + sys.argv[1:]).wait()) |
| 1252 | EOF |
1464 | EOF |
| 1253 | if [[ "$?" != "0" ]]; then |
1465 | if [[ "$?" != "0" ]]; then |
| 1254 | die "${FUNCNAME}(): Generation of '$1' failed" |
1466 | die "${FUNCNAME}(): Generation of '$1' failed" |
| 1255 | fi |
1467 | fi |
| 1256 | fperms +x "${file#${ED%/}}" || die "fperms '${file}' failed" |
1468 | fperms +x "${file#${ED%/}}" || die "fperms '${file}' failed" |
| 1257 | done |
1469 | done |
| 1258 | } |
1470 | } |
| 1259 | |
1471 | |
|
|
1472 | # @ECLASS-VARIABLE: PYTHON_VERSIONED_SCRIPTS |
|
|
1473 | # @DESCRIPTION: |
|
|
1474 | # Array of regular expressions of paths to versioned Python scripts. |
|
|
1475 | # Python scripts in /usr/bin and /usr/sbin are versioned by default. |
|
|
1476 | |
|
|
1477 | # @ECLASS-VARIABLE: PYTHON_VERSIONED_EXECUTABLES |
|
|
1478 | # @DESCRIPTION: |
|
|
1479 | # Array of regular expressions of paths to versioned executables (including Python scripts). |
|
|
1480 | |
|
|
1481 | # @ECLASS-VARIABLE: PYTHON_NONVERSIONED_EXECUTABLES |
|
|
1482 | # @DESCRIPTION: |
|
|
1483 | # Array of regular expressions of paths to nonversioned executables (including Python scripts). |
|
|
1484 | |
|
|
1485 | # @FUNCTION: python_merge_intermediate_installation_images |
|
|
1486 | # @USAGE: [-q|--quiet] [--] <intermediate_installation_images_directory> |
|
|
1487 | # @DESCRIPTION: |
|
|
1488 | # Merge intermediate installation images into installation image. |
|
|
1489 | # |
|
|
1490 | # This function can be used only in src_install() phase. |
|
|
1491 | python_merge_intermediate_installation_images() { |
|
|
1492 | if [[ "${EBUILD_PHASE}" != "install" ]]; then |
|
|
1493 | die "${FUNCNAME}() can be used only in src_install() phase" |
|
|
1494 | fi |
|
|
1495 | |
|
|
1496 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
1497 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
|
|
1498 | fi |
|
|
1499 | |
|
|
1500 | _python_check_python_pkg_setup_execution |
|
|
1501 | _python_initialize_prefix_variables |
|
|
1502 | |
|
|
1503 | local absolute_file b file files=() intermediate_installation_images_directory PYTHON_ABI quiet="0" regex shebang version_executable wrapper_scripts=() wrapper_scripts_set=() |
|
|
1504 | |
|
|
1505 | while (($#)); do |
|
|
1506 | case "$1" in |
|
|
1507 | -q|--quiet) |
|
|
1508 | quiet="1" |
|
|
1509 | ;; |
|
|
1510 | --) |
|
|
1511 | shift |
|
|
1512 | break |
|
|
1513 | ;; |
|
|
1514 | -*) |
|
|
1515 | die "${FUNCNAME}(): Unrecognized option '$1'" |
|
|
1516 | ;; |
|
|
1517 | *) |
|
|
1518 | break |
|
|
1519 | ;; |
|
|
1520 | esac |
|
|
1521 | shift |
|
|
1522 | done |
|
|
1523 | |
|
|
1524 | if [[ "$#" -ne 1 ]]; then |
|
|
1525 | die "${FUNCNAME}() requires 1 argument" |
|
|
1526 | fi |
|
|
1527 | |
|
|
1528 | intermediate_installation_images_directory="$1" |
|
|
1529 | |
|
|
1530 | if [[ ! -d "${intermediate_installation_images_directory}" ]]; then |
|
|
1531 | die "${FUNCNAME}(): Intermediate installation images directory '${intermediate_installation_images_directory}' does not exist" |
|
|
1532 | fi |
|
|
1533 | |
|
|
1534 | _python_calculate_PYTHON_ABIS |
|
|
1535 | if [[ "$(PYTHON -f --ABI)" == 3.* ]]; then |
|
|
1536 | b="b" |
|
|
1537 | fi |
|
|
1538 | |
|
|
1539 | while read -d $'\0' -r file; do |
|
|
1540 | files+=("${file}") |
|
|
1541 | done < <("$(PYTHON -f)" -c \ |
|
|
1542 | "import os |
|
|
1543 | import sys |
|
|
1544 | |
|
|
1545 | if hasattr(sys.stdout, 'buffer'): |
|
|
1546 | # Python 3 |
|
|
1547 | stdout = sys.stdout.buffer |
|
|
1548 | else: |
|
|
1549 | # Python 2 |
|
|
1550 | stdout = sys.stdout |
|
|
1551 | |
|
|
1552 | files_set = set() |
|
|
1553 | |
|
|
1554 | os.chdir(${b}'${intermediate_installation_images_directory}') |
|
|
1555 | |
|
|
1556 | for PYTHON_ABI in ${b}'${PYTHON_ABIS}'.split(): |
|
|
1557 | for root, dirs, files in os.walk(PYTHON_ABI + ${b}'${EPREFIX}'): |
|
|
1558 | root = root[len(PYTHON_ABI + ${b}'${EPREFIX}')+1:] |
|
|
1559 | files_set.update(root + ${b}'/' + file for file in files) |
|
|
1560 | |
|
|
1561 | for file in sorted(files_set): |
|
|
1562 | stdout.write(file) |
|
|
1563 | stdout.write(${b}'\x00')" || die "${FUNCNAME}(): Failure of extraction of files in intermediate installation images") |
|
|
1564 | |
|
|
1565 | for PYTHON_ABI in ${PYTHON_ABIS}; do |
|
|
1566 | if [[ ! -d "${intermediate_installation_images_directory}/${PYTHON_ABI}" ]]; then |
|
|
1567 | die "${FUNCNAME}(): Intermediate installation image for Python ABI '${PYTHON_ABI}' does not exist" |
|
|
1568 | fi |
|
|
1569 | |
|
|
1570 | pushd "${intermediate_installation_images_directory}/${PYTHON_ABI}${EPREFIX}" > /dev/null || die "pushd failed" |
|
|
1571 | |
|
|
1572 | for file in "${files[@]}"; do |
|
|
1573 | version_executable="0" |
|
|
1574 | for regex in "/usr/bin/.*" "/usr/sbin/.*" "${PYTHON_VERSIONED_SCRIPTS[@]}"; do |
|
|
1575 | if [[ "/${file}" =~ ^${regex}$ ]]; then |
|
|
1576 | version_executable="1" |
|
|
1577 | break |
|
|
1578 | fi |
|
|
1579 | done |
|
|
1580 | for regex in "${PYTHON_VERSIONED_EXECUTABLES[@]}"; do |
|
|
1581 | if [[ "/${file}" =~ ^${regex}$ ]]; then |
|
|
1582 | version_executable="2" |
|
|
1583 | break |
|
|
1584 | fi |
|
|
1585 | done |
|
|
1586 | if [[ "${version_executable}" != "0" ]]; then |
|
|
1587 | for regex in "${PYTHON_NONVERSIONED_EXECUTABLES[@]}"; do |
|
|
1588 | if [[ "/${file}" =~ ^${regex}$ ]]; then |
|
|
1589 | version_executable="0" |
|
|
1590 | break |
|
|
1591 | fi |
|
|
1592 | done |
|
|
1593 | fi |
|
|
1594 | |
|
|
1595 | [[ "${version_executable}" == "0" ]] && continue |
|
|
1596 | |
|
|
1597 | if [[ -L "${file}" ]]; then |
|
|
1598 | absolute_file="$(readlink "${file}")" |
|
|
1599 | if [[ "${absolute_file}" == /* ]]; then |
|
|
1600 | absolute_file="${intermediate_installation_images_directory}/${PYTHON_ABI}${EPREFIX}/${absolute_file##/}" |
|
|
1601 | else |
|
|
1602 | if [[ "${file}" == */* ]]; then |
|
|
1603 | absolute_file="${intermediate_installation_images_directory}/${PYTHON_ABI}${EPREFIX}/${file%/*}/${absolute_file}" |
|
|
1604 | else |
|
|
1605 | absolute_file="${intermediate_installation_images_directory}/${PYTHON_ABI}${EPREFIX}/${absolute_file}" |
|
|
1606 | fi |
|
|
1607 | fi |
|
|
1608 | else |
|
|
1609 | absolute_file="${intermediate_installation_images_directory}/${PYTHON_ABI}${EPREFIX}/${file}" |
|
|
1610 | fi |
|
|
1611 | |
|
|
1612 | [[ ! -x "${absolute_file}" ]] && continue |
|
|
1613 | |
|
|
1614 | shebang="$(head -n1 "${absolute_file}")" || die "Extraction of shebang from '${absolute_file}' failed" |
|
|
1615 | |
|
|
1616 | if [[ "${version_executable}" == "2" ]]; then |
|
|
1617 | wrapper_scripts+=("${ED}${file}") |
|
|
1618 | elif [[ "${version_executable}" == "1" ]]; then |
|
|
1619 | if [[ "${shebang}" =~ ${_PYTHON_SHEBANG_BASE_PART_REGEX}([[:digit:]]+(\.[[:digit:]]+)?)?($|[[:space:]]+) ]]; then |
|
|
1620 | wrapper_scripts+=("${ED}${file}") |
|
|
1621 | else |
|
|
1622 | version_executable="0" |
|
|
1623 | fi |
|
|
1624 | fi |
|
|
1625 | |
|
|
1626 | [[ "${version_executable}" == "0" ]] && continue |
|
|
1627 | |
|
|
1628 | if [[ -e "${file}-${PYTHON_ABI}" ]]; then |
|
|
1629 | die "${FUNCNAME}(): '${EPREFIX}/${file}-${PYTHON_ABI}' already exists" |
|
|
1630 | fi |
|
|
1631 | |
|
|
1632 | mv "${file}" "${file}-${PYTHON_ABI}" || die "Renaming of '${file}' failed" |
|
|
1633 | |
|
|
1634 | if [[ "${shebang}" =~ ${_PYTHON_SHEBANG_BASE_PART_REGEX}[[:digit:]]*($|[[:space:]]+) ]]; then |
|
|
1635 | if [[ -L "${file}-${PYTHON_ABI}" ]]; then |
|
|
1636 | python_convert_shebangs $([[ "${quiet}" == "1" ]] && echo --quiet) "${PYTHON_ABI}" "${absolute_file}" |
|
|
1637 | else |
|
|
1638 | python_convert_shebangs $([[ "${quiet}" == "1" ]] && echo --quiet) "${PYTHON_ABI}" "${file}-${PYTHON_ABI}" |
|
|
1639 | fi |
|
|
1640 | fi |
|
|
1641 | done |
|
|
1642 | |
|
|
1643 | popd > /dev/null || die "popd failed" |
|
|
1644 | |
|
|
1645 | # This is per bug #390691, without the duplication refactor, and with |
|
|
1646 | # the 3-way structure per comment #6. This enable users with old |
|
|
1647 | # coreutils to upgrade a lot easier (you need to upgrade python+portage |
|
|
1648 | # before coreutils can be upgraded). |
|
|
1649 | if ROOT="/" has_version '>=sys-apps/coreutils-6.9.90'; then |
|
|
1650 | 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" |
|
|
1651 | elif ROOT="/" has_version sys-apps/coreutils; then |
|
|
1652 | 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" |
|
|
1653 | else |
|
|
1654 | cp -fpr "${intermediate_installation_images_directory}/${PYTHON_ABI}/"* "${D}" || die "Merging of intermediate installation image for Python ABI '${PYTHON_ABI} into installation image failed" |
|
|
1655 | fi |
|
|
1656 | done |
|
|
1657 | |
|
|
1658 | rm -fr "${intermediate_installation_images_directory}" |
|
|
1659 | |
|
|
1660 | if [[ "${#wrapper_scripts[@]}" -ge 1 ]]; then |
|
|
1661 | rm -f "${T}/python_wrapper_scripts" |
|
|
1662 | |
|
|
1663 | for file in "${wrapper_scripts[@]}"; do |
|
|
1664 | echo -n "${file}" >> "${T}/python_wrapper_scripts" |
|
|
1665 | echo -en "\x00" >> "${T}/python_wrapper_scripts" |
|
|
1666 | done |
|
|
1667 | |
|
|
1668 | while read -d $'\0' -r file; do |
|
|
1669 | wrapper_scripts_set+=("${file}") |
|
|
1670 | done < <("$(PYTHON -f)" -c \ |
|
|
1671 | "import sys |
|
|
1672 | |
|
|
1673 | if hasattr(sys.stdout, 'buffer'): |
|
|
1674 | # Python 3 |
|
|
1675 | stdout = sys.stdout.buffer |
|
|
1676 | else: |
|
|
1677 | # Python 2 |
|
|
1678 | stdout = sys.stdout |
|
|
1679 | |
|
|
1680 | python_wrapper_scripts_file = open('${T}/python_wrapper_scripts', 'rb') |
|
|
1681 | files = set(python_wrapper_scripts_file.read().rstrip(${b}'\x00').split(${b}'\x00')) |
|
|
1682 | python_wrapper_scripts_file.close() |
|
|
1683 | |
|
|
1684 | for file in sorted(files): |
|
|
1685 | stdout.write(file) |
|
|
1686 | stdout.write(${b}'\x00')" || die "${FUNCNAME}(): Failure of extraction of set of wrapper scripts") |
|
|
1687 | |
|
|
1688 | python_generate_wrapper_scripts $([[ "${quiet}" == "1" ]] && echo --quiet) "${wrapper_scripts_set[@]}" |
|
|
1689 | fi |
|
|
1690 | } |
|
|
1691 | |
| 1260 | # ================================================================================================ |
1692 | # ================================================================================================ |
| 1261 | # ========= FUNCTIONS FOR PACKAGES NOT SUPPORTING INSTALLATION FOR MULTIPLE PYTHON ABIS ========== |
1693 | # ========= FUNCTIONS FOR PACKAGES NOT SUPPORTING INSTALLATION FOR MULTIPLE PYTHON ABIS ========== |
| 1262 | # ================================================================================================ |
1694 | # ================================================================================================ |
| 1263 | |
1695 | |
| 1264 | unset EPYTHON PYTHON_ABI |
1696 | unset EPYTHON PYTHON_ABI |
| 1265 | |
1697 | |
| 1266 | # @FUNCTION: python_set_active_version |
1698 | # @FUNCTION: python_set_active_version |
| 1267 | # @USAGE: <CPython_ABI|2|3> |
1699 | # @USAGE: <Python_ABI|2|3> |
| 1268 | # @DESCRIPTION: |
1700 | # @DESCRIPTION: |
| 1269 | # Set specified version of CPython as active version of Python. |
1701 | # Set locally active version of Python. |
|
|
1702 | # If Python_ABI argument is specified, then version of Python corresponding to Python_ABI is used. |
|
|
1703 | # If 2 argument is specified, then active version of CPython 2 is used. |
|
|
1704 | # If 3 argument is specified, then active version of CPython 3 is used. |
| 1270 | # |
1705 | # |
| 1271 | # This function can be used only in pkg_setup() phase. |
1706 | # This function can be used only in pkg_setup() phase. |
| 1272 | python_set_active_version() { |
1707 | python_set_active_version() { |
| 1273 | # Check if phase is pkg_setup(). |
1708 | if [[ "${EBUILD_PHASE}" != "setup" ]]; then |
| 1274 | [[ "${EBUILD_PHASE}" != "setup" ]] && die "${FUNCNAME}() can be used only in pkg_setup() phase" |
1709 | die "${FUNCNAME}() can be used only in pkg_setup() phase" |
|
|
1710 | fi |
| 1275 | |
1711 | |
| 1276 | if _python_package_supporting_installation_for_multiple_python_abis; then |
1712 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| 1277 | die "${FUNCNAME}() cannot be used in ebuilds of packages supporting installation for multiple Python ABIs" |
1713 | die "${FUNCNAME}() cannot be used in ebuilds of packages supporting installation for multiple Python ABIs" |
| 1278 | fi |
1714 | fi |
| 1279 | |
1715 | |
| … | |
… | |
| 1282 | fi |
1718 | fi |
| 1283 | |
1719 | |
| 1284 | _python_initial_sanity_checks |
1720 | _python_initial_sanity_checks |
| 1285 | |
1721 | |
| 1286 | if [[ -z "${PYTHON_ABI}" ]]; then |
1722 | if [[ -z "${PYTHON_ABI}" ]]; then |
| 1287 | if [[ "$1" =~ ^[[:digit:]]+\.[[:digit:]]+$ ]]; then |
1723 | if [[ -n "$(_python_get_implementation --ignore-invalid "$1")" ]]; then |
| 1288 | if ! _python_implementation && ! has_version "dev-lang/python:$1"; then |
1724 | # PYTHON_ABI variable is intended to be used only in ebuilds/eclasses, |
| 1289 | die "${FUNCNAME}(): 'dev-lang/python:$1' is not installed" |
1725 | # so it does not need to be exported to subprocesses. |
|
|
1726 | PYTHON_ABI="$1" |
|
|
1727 | if ! _python_implementation && ! has_version "$(python_get_implementational_package)"; then |
|
|
1728 | die "${FUNCNAME}(): '$(python_get_implementational_package)' is not installed" |
| 1290 | fi |
1729 | fi |
| 1291 | export EPYTHON="$(PYTHON "$1")" |
1730 | export EPYTHON="$(PYTHON "$1")" |
| 1292 | elif [[ "$1" == "2" ]]; then |
1731 | elif [[ "$1" == "2" ]]; then |
| 1293 | if ! _python_implementation && ! has_version "=dev-lang/python-2*"; then |
1732 | if ! _python_implementation && ! has_version "=dev-lang/python-2*"; then |
| 1294 | die "${FUNCNAME}(): '=dev-lang/python-2*' is not installed" |
1733 | die "${FUNCNAME}(): '=dev-lang/python-2*' is not installed" |
| 1295 | fi |
1734 | fi |
| 1296 | export EPYTHON="$(PYTHON -2)" |
1735 | export EPYTHON="$(PYTHON -2)" |
|
|
1736 | PYTHON_ABI="${EPYTHON#python}" |
|
|
1737 | PYTHON_ABI="${PYTHON_ABI%%-*}" |
| 1297 | elif [[ "$1" == "3" ]]; then |
1738 | elif [[ "$1" == "3" ]]; then |
| 1298 | if ! _python_implementation && ! has_version "=dev-lang/python-3*"; then |
1739 | if ! _python_implementation && ! has_version "=dev-lang/python-3*"; then |
| 1299 | die "${FUNCNAME}(): '=dev-lang/python-3*' is not installed" |
1740 | die "${FUNCNAME}(): '=dev-lang/python-3*' is not installed" |
| 1300 | fi |
1741 | fi |
| 1301 | export EPYTHON="$(PYTHON -3)" |
1742 | export EPYTHON="$(PYTHON -3)" |
|
|
1743 | PYTHON_ABI="${EPYTHON#python}" |
|
|
1744 | PYTHON_ABI="${PYTHON_ABI%%-*}" |
| 1302 | else |
1745 | else |
| 1303 | die "${FUNCNAME}(): Unrecognized argument '$1'" |
1746 | die "${FUNCNAME}(): Unrecognized argument '$1'" |
| 1304 | fi |
1747 | 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 |
1748 | fi |
| 1311 | |
1749 | |
| 1312 | _python_final_sanity_checks |
1750 | _python_final_sanity_checks |
| 1313 | |
1751 | |
| 1314 | # python-updater checks PYTHON_REQUESTED_ACTIVE_VERSION variable. |
1752 | # python-updater checks PYTHON_REQUESTED_ACTIVE_VERSION variable. |
| 1315 | PYTHON_REQUESTED_ACTIVE_VERSION="$1" |
1753 | PYTHON_REQUESTED_ACTIVE_VERSION="$1" |
| 1316 | } |
1754 | } |
| 1317 | |
1755 | |
| 1318 | # @FUNCTION: python_need_rebuild |
1756 | # @FUNCTION: python_need_rebuild |
|
|
1757 | # @DESCRIPTION: |
| 1319 | # @DESCRIPTION: Mark current package for rebuilding by python-updater after |
1758 | # Mark current package for rebuilding by python-updater after |
| 1320 | # switching of active version of Python. |
1759 | # switching of active version of Python. |
| 1321 | python_need_rebuild() { |
1760 | python_need_rebuild() { |
| 1322 | _python_check_python_pkg_setup_execution |
|
|
| 1323 | |
|
|
| 1324 | if _python_package_supporting_installation_for_multiple_python_abis; then |
1761 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| 1325 | die "${FUNCNAME}() cannot be used in ebuilds of packages supporting installation for multiple Python ABIs" |
1762 | die "${FUNCNAME}() cannot be used in ebuilds of packages supporting installation for multiple Python ABIs" |
| 1326 | fi |
1763 | fi |
|
|
1764 | |
|
|
1765 | _python_check_python_pkg_setup_execution |
| 1327 | |
1766 | |
| 1328 | if [[ "$#" -ne 0 ]]; then |
1767 | if [[ "$#" -ne 0 ]]; then |
| 1329 | die "${FUNCNAME}() does not accept arguments" |
1768 | die "${FUNCNAME}() does not accept arguments" |
| 1330 | fi |
1769 | fi |
| 1331 | |
1770 | |
| … | |
… | |
| 1334 | |
1773 | |
| 1335 | # ================================================================================================ |
1774 | # ================================================================================================ |
| 1336 | # ======================================= GETTER FUNCTIONS ======================================= |
1775 | # ======================================= GETTER FUNCTIONS ======================================= |
| 1337 | # ================================================================================================ |
1776 | # ================================================================================================ |
| 1338 | |
1777 | |
| 1339 | _PYTHON_ABI_EXTRACTION_COMMAND='import platform |
1778 | _PYTHON_ABI_EXTRACTION_COMMAND=\ |
|
|
1779 | 'import platform |
| 1340 | import sys |
1780 | import sys |
| 1341 | sys.stdout.write(".".join(str(x) for x in sys.version_info[:2])) |
1781 | sys.stdout.write(".".join(str(x) for x in sys.version_info[:2])) |
| 1342 | if platform.system()[:4] == "Java": |
1782 | if platform.system()[:4] == "Java": |
| 1343 | sys.stdout.write("-jython")' |
1783 | sys.stdout.write("-jython") |
|
|
1784 | elif hasattr(platform, "python_implementation") and platform.python_implementation() == "PyPy": |
|
|
1785 | sys.stdout.write("-pypy-" + ".".join(str(x) for x in sys.pypy_version_info[:2]))' |
| 1344 | |
1786 | |
| 1345 | _python_get_implementation() { |
1787 | _python_get_implementation() { |
|
|
1788 | local ignore_invalid="0" |
|
|
1789 | |
|
|
1790 | while (($#)); do |
|
|
1791 | case "$1" in |
|
|
1792 | --ignore-invalid) |
|
|
1793 | ignore_invalid="1" |
|
|
1794 | ;; |
|
|
1795 | --) |
|
|
1796 | shift |
|
|
1797 | break |
|
|
1798 | ;; |
|
|
1799 | -*) |
|
|
1800 | die "${FUNCNAME}(): Unrecognized option '$1'" |
|
|
1801 | ;; |
|
|
1802 | *) |
|
|
1803 | break |
|
|
1804 | ;; |
|
|
1805 | esac |
|
|
1806 | shift |
|
|
1807 | done |
|
|
1808 | |
| 1346 | if [[ "$#" -ne 1 ]]; then |
1809 | if [[ "$#" -ne 1 ]]; then |
| 1347 | die "${FUNCNAME}() requires 1 argument" |
1810 | die "${FUNCNAME}() requires 1 argument" |
| 1348 | fi |
1811 | fi |
| 1349 | |
1812 | |
| 1350 | if [[ "$1" =~ ^[[:digit:]]+\.[[:digit:]]+$ ]]; then |
1813 | if [[ "$1" =~ ^[[:digit:]]+\.[[:digit:]]+$ ]]; then |
| 1351 | echo "CPython" |
1814 | echo "CPython" |
| 1352 | elif [[ "$1" =~ ^[[:digit:]]+\.[[:digit:]]+-jython$ ]]; then |
1815 | elif [[ "$1" =~ ^[[:digit:]]+\.[[:digit:]]+-jython$ ]]; then |
| 1353 | echo "Jython" |
1816 | echo "Jython" |
|
|
1817 | elif [[ "$1" =~ ^[[:digit:]]+\.[[:digit:]]+-pypy-[[:digit:]]+\.[[:digit:]]+$ ]]; then |
|
|
1818 | echo "PyPy" |
| 1354 | else |
1819 | else |
|
|
1820 | if [[ "${ignore_invalid}" == "0" ]]; then |
| 1355 | die "${FUNCNAME}(): Unrecognized Python ABI '$1'" |
1821 | die "${FUNCNAME}(): Unrecognized Python ABI '$1'" |
|
|
1822 | fi |
| 1356 | fi |
1823 | fi |
| 1357 | } |
1824 | } |
| 1358 | |
1825 | |
| 1359 | # @FUNCTION: PYTHON |
1826 | # @FUNCTION: PYTHON |
| 1360 | # @USAGE: [-2] [-3] [--ABI] [-a|--absolute-path] [-f|--final-ABI] [--] <Python_ABI="${PYTHON_ABI}"> |
1827 | # @USAGE: [-2] [-3] [--ABI] [-a|--absolute-path] [-f|--final-ABI] [--] <Python_ABI="${PYTHON_ABI}"> |
| 1361 | # @DESCRIPTION: |
1828 | # @DESCRIPTION: |
| 1362 | # Print filename of Python interpreter for specified Python ABI. If Python_ABI argument |
1829 | # 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. |
1830 | # 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. |
1831 | # 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. |
1832 | # 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. |
1833 | # 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. |
1834 | # -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 |
1835 | # If --ABI option is specified, then only specified Python ABI is printed instead of |
| 1369 | # filename of Python interpreter. |
1836 | # filename of Python interpreter. |
| 1370 | # If --absolute-path option is specified, then absolute path to Python interpreter is printed. |
1837 | # If --absolute-path option is specified, then absolute path to Python interpreter is printed. |
| … | |
… | |
| 1419 | die "${FUNCNAME}(): '--final-ABI' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
1886 | die "${FUNCNAME}(): '--final-ABI' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
| 1420 | fi |
1887 | fi |
| 1421 | _python_calculate_PYTHON_ABIS |
1888 | _python_calculate_PYTHON_ABIS |
| 1422 | PYTHON_ABI="${PYTHON_ABIS##* }" |
1889 | PYTHON_ABI="${PYTHON_ABIS##* }" |
| 1423 | elif [[ "${python2}" == "1" ]]; then |
1890 | elif [[ "${python2}" == "1" ]]; then |
| 1424 | PYTHON_ABI="$(eselect python show --python2 --ABI)" |
1891 | PYTHON_ABI="$(ROOT="/" eselect python show --python2 --ABI)" |
| 1425 | if [[ -z "${PYTHON_ABI}" ]]; then |
1892 | if [[ -z "${PYTHON_ABI}" ]]; then |
| 1426 | die "${FUNCNAME}(): Active version of Python 2 not set" |
1893 | die "${FUNCNAME}(): Active version of CPython 2 not set" |
| 1427 | elif [[ "${PYTHON_ABI}" != "2."* ]]; then |
1894 | elif [[ "${PYTHON_ABI}" != "2."* ]]; then |
| 1428 | die "${FUNCNAME}(): Internal error in \`eselect python show --python2\`" |
1895 | die "${FUNCNAME}(): Internal error in \`eselect python show --python2\`" |
| 1429 | fi |
1896 | fi |
| 1430 | elif [[ "${python3}" == "1" ]]; then |
1897 | elif [[ "${python3}" == "1" ]]; then |
| 1431 | PYTHON_ABI="$(eselect python show --python3 --ABI)" |
1898 | PYTHON_ABI="$(ROOT="/" eselect python show --python3 --ABI)" |
| 1432 | if [[ -z "${PYTHON_ABI}" ]]; then |
1899 | if [[ -z "${PYTHON_ABI}" ]]; then |
| 1433 | die "${FUNCNAME}(): Active version of Python 3 not set" |
1900 | die "${FUNCNAME}(): Active version of CPython 3 not set" |
| 1434 | elif [[ "${PYTHON_ABI}" != "3."* ]]; then |
1901 | elif [[ "${PYTHON_ABI}" != "3."* ]]; then |
| 1435 | die "${FUNCNAME}(): Internal error in \`eselect python show --python3\`" |
1902 | die "${FUNCNAME}(): Internal error in \`eselect python show --python3\`" |
| 1436 | fi |
1903 | fi |
| 1437 | elif _python_package_supporting_installation_for_multiple_python_abis; then |
1904 | elif _python_package_supporting_installation_for_multiple_python_abis; then |
| 1438 | if ! _python_abi-specific_local_scope; then |
1905 | if ! _python_abi-specific_local_scope; then |
| … | |
… | |
| 1464 | return |
1931 | return |
| 1465 | else |
1932 | else |
| 1466 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
1933 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
| 1467 | python_interpreter="python${PYTHON_ABI}" |
1934 | python_interpreter="python${PYTHON_ABI}" |
| 1468 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
1935 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
| 1469 | python_interpreter="jython-${PYTHON_ABI%-jython}" |
1936 | python_interpreter="jython${PYTHON_ABI%-jython}" |
|
|
1937 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "PyPy" ]]; then |
|
|
1938 | python_interpreter="pypy-c${PYTHON_ABI#*-pypy-}" |
| 1470 | fi |
1939 | fi |
| 1471 | |
1940 | |
| 1472 | if [[ "${absolute_path_output}" == "1" ]]; then |
1941 | if [[ "${absolute_path_output}" == "1" ]]; then |
| 1473 | echo -n "${EPREFIX}/usr/bin/${python_interpreter}" |
1942 | echo -n "${EPREFIX}/usr/bin/${python_interpreter}" |
| 1474 | else |
1943 | else |
| … | |
… | |
| 1562 | else |
2031 | else |
| 1563 | PYTHON_ABI="${PYTHON_ABI:-$(PYTHON --ABI)}" |
2032 | PYTHON_ABI="${PYTHON_ABI:-$(PYTHON --ABI)}" |
| 1564 | fi |
2033 | fi |
| 1565 | fi |
2034 | fi |
| 1566 | |
2035 | |
|
|
2036 | if [[ "${EAPI:-0}" == "0" ]]; then |
| 1567 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
2037 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
| 1568 | echo "dev-lang/python:${PYTHON_ABI}" |
2038 | echo "=dev-lang/python-${PYTHON_ABI}*" |
| 1569 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
2039 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
|
|
2040 | echo "=dev-java/jython-${PYTHON_ABI%-jython}*" |
|
|
2041 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "PyPy" ]]; then |
|
|
2042 | echo "=dev-python/pypy-${PYTHON_ABI#*-pypy-}*" |
|
|
2043 | fi |
|
|
2044 | else |
|
|
2045 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
|
|
2046 | echo "dev-lang/python:${PYTHON_ABI}" |
|
|
2047 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
| 1570 | echo "dev-java/jython:${PYTHON_ABI%-jython}" |
2048 | echo "dev-java/jython:${PYTHON_ABI%-jython}" |
|
|
2049 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "PyPy" ]]; then |
|
|
2050 | echo "dev-python/pypy:${PYTHON_ABI#*-pypy-}" |
|
|
2051 | fi |
| 1571 | fi |
2052 | fi |
| 1572 | } |
2053 | } |
| 1573 | |
2054 | |
| 1574 | # @FUNCTION: python_get_includedir |
2055 | # @FUNCTION: python_get_includedir |
| 1575 | # @USAGE: [-b|--base-path] [-f|--final-ABI] |
2056 | # @USAGE: [-b|--base-path] [-f|--final-ABI] |
| … | |
… | |
| 1621 | |
2102 | |
| 1622 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
2103 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
| 1623 | echo "${prefix}usr/include/python${PYTHON_ABI}" |
2104 | echo "${prefix}usr/include/python${PYTHON_ABI}" |
| 1624 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
2105 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
| 1625 | echo "${prefix}usr/share/jython-${PYTHON_ABI%-jython}/Include" |
2106 | echo "${prefix}usr/share/jython-${PYTHON_ABI%-jython}/Include" |
|
|
2107 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "PyPy" ]]; then |
|
|
2108 | echo "${prefix}usr/$(get_libdir)/pypy${PYTHON_ABI#*-pypy-}/include" |
| 1626 | fi |
2109 | fi |
| 1627 | } |
2110 | } |
| 1628 | |
2111 | |
| 1629 | # @FUNCTION: python_get_libdir |
2112 | # @FUNCTION: python_get_libdir |
| 1630 | # @USAGE: [-b|--base-path] [-f|--final-ABI] |
2113 | # @USAGE: [-b|--base-path] [-f|--final-ABI] |
| 1631 | # @DESCRIPTION: |
2114 | # @DESCRIPTION: |
| 1632 | # Print path to Python library directory. |
2115 | # Print path to Python standard library directory. |
| 1633 | # If --base-path option is specified, then path not prefixed with "/" is printed. |
2116 | # If --base-path option is specified, then path not prefixed with "/" is printed. |
| 1634 | # If --final-ABI option is specified, then final ABI from the list of enabled ABIs is used. |
2117 | # If --final-ABI option is specified, then final ABI from the list of enabled ABIs is used. |
| 1635 | python_get_libdir() { |
2118 | python_get_libdir() { |
| 1636 | _python_check_python_pkg_setup_execution |
2119 | _python_check_python_pkg_setup_execution |
| 1637 | |
2120 | |
| … | |
… | |
| 1676 | |
2159 | |
| 1677 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
2160 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
| 1678 | echo "${prefix}usr/$(get_libdir)/python${PYTHON_ABI}" |
2161 | echo "${prefix}usr/$(get_libdir)/python${PYTHON_ABI}" |
| 1679 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
2162 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
| 1680 | echo "${prefix}usr/share/jython-${PYTHON_ABI%-jython}/Lib" |
2163 | echo "${prefix}usr/share/jython-${PYTHON_ABI%-jython}/Lib" |
|
|
2164 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "PyPy" ]]; then |
|
|
2165 | die "${FUNCNAME}(): PyPy has multiple standard library directories" |
| 1681 | fi |
2166 | fi |
| 1682 | } |
2167 | } |
| 1683 | |
2168 | |
| 1684 | # @FUNCTION: python_get_sitedir |
2169 | # @FUNCTION: python_get_sitedir |
| 1685 | # @USAGE: [-b|--base-path] [-f|--final-ABI] |
2170 | # @USAGE: [-b|--base-path] [-f|--final-ABI] |
| … | |
… | |
| 1688 | # If --base-path option is specified, then path not prefixed with "/" is printed. |
2173 | # If --base-path option is specified, then path not prefixed with "/" is printed. |
| 1689 | # If --final-ABI option is specified, then final ABI from the list of enabled ABIs is used. |
2174 | # If --final-ABI option is specified, then final ABI from the list of enabled ABIs is used. |
| 1690 | python_get_sitedir() { |
2175 | python_get_sitedir() { |
| 1691 | _python_check_python_pkg_setup_execution |
2176 | _python_check_python_pkg_setup_execution |
| 1692 | |
2177 | |
| 1693 | local final_ABI="0" options=() |
2178 | local base_path="0" final_ABI="0" prefix PYTHON_ABI="${PYTHON_ABI}" |
| 1694 | |
2179 | |
| 1695 | while (($#)); do |
2180 | while (($#)); do |
| 1696 | case "$1" in |
2181 | case "$1" in |
| 1697 | -b|--base-path) |
2182 | -b|--base-path) |
| 1698 | options+=("$1") |
2183 | base_path="1" |
| 1699 | ;; |
2184 | ;; |
| 1700 | -f|--final-ABI) |
2185 | -f|--final-ABI) |
| 1701 | final_ABI="1" |
2186 | final_ABI="1" |
| 1702 | options+=("$1") |
|
|
| 1703 | ;; |
2187 | ;; |
| 1704 | -*) |
2188 | -*) |
| 1705 | die "${FUNCNAME}(): Unrecognized option '$1'" |
2189 | die "${FUNCNAME}(): Unrecognized option '$1'" |
| 1706 | ;; |
2190 | ;; |
| 1707 | *) |
2191 | *) |
| 1708 | die "${FUNCNAME}(): Invalid usage" |
2192 | die "${FUNCNAME}(): Invalid usage" |
| 1709 | ;; |
2193 | ;; |
| 1710 | esac |
2194 | esac |
| 1711 | shift |
2195 | shift |
| 1712 | done |
2196 | done |
|
|
2197 | |
|
|
2198 | if [[ "${base_path}" == "0" ]]; then |
|
|
2199 | prefix="/" |
|
|
2200 | fi |
| 1713 | |
2201 | |
| 1714 | if [[ "${final_ABI}" == "1" ]]; then |
2202 | if [[ "${final_ABI}" == "1" ]]; then |
| 1715 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
2203 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
| 1716 | die "${FUNCNAME}(): '--final-ABI' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
2204 | die "${FUNCNAME}(): '--final-ABI' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
| 1717 | fi |
2205 | fi |
|
|
2206 | PYTHON_ABI="$(PYTHON -f --ABI)" |
| 1718 | else |
2207 | else |
| 1719 | if _python_package_supporting_installation_for_multiple_python_abis && ! _python_abi-specific_local_scope; then |
2208 | if _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
2209 | if ! _python_abi-specific_local_scope; then |
| 1720 | die "${FUNCNAME}() should be used in ABI-specific local scope" |
2210 | die "${FUNCNAME}() should be used in ABI-specific local scope" |
| 1721 | fi |
2211 | fi |
|
|
2212 | else |
|
|
2213 | PYTHON_ABI="${PYTHON_ABI:-$(PYTHON --ABI)}" |
| 1722 | fi |
2214 | fi |
|
|
2215 | fi |
| 1723 | |
2216 | |
| 1724 | echo "$(python_get_libdir "${options[@]}")/site-packages" |
2217 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
|
|
2218 | echo "${prefix}usr/$(get_libdir)/python${PYTHON_ABI}/site-packages" |
|
|
2219 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
|
|
2220 | echo "${prefix}usr/share/jython-${PYTHON_ABI%-jython}/Lib/site-packages" |
|
|
2221 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "PyPy" ]]; then |
|
|
2222 | echo "${prefix}usr/$(get_libdir)/pypy${PYTHON_ABI#*-pypy-}/site-packages" |
|
|
2223 | fi |
| 1725 | } |
2224 | } |
| 1726 | |
2225 | |
| 1727 | # @FUNCTION: python_get_library |
2226 | # @FUNCTION: python_get_library |
| 1728 | # @USAGE: [-b|--base-path] [-f|--final-ABI] [-l|--linker-option] |
2227 | # @USAGE: [-b|--base-path] [-f|--final-ABI] [-l|--linker-option] |
| 1729 | # @DESCRIPTION: |
2228 | # @DESCRIPTION: |
| … | |
… | |
| 1786 | else |
2285 | else |
| 1787 | echo "${prefix}usr/$(get_libdir)/libpython${PYTHON_ABI}$(get_libname)" |
2286 | echo "${prefix}usr/$(get_libdir)/libpython${PYTHON_ABI}$(get_libname)" |
| 1788 | fi |
2287 | fi |
| 1789 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
2288 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
| 1790 | die "${FUNCNAME}(): Jython does not have shared library" |
2289 | die "${FUNCNAME}(): Jython does not have shared library" |
|
|
2290 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "PyPy" ]]; then |
|
|
2291 | die "${FUNCNAME}(): PyPy does not have shared library" |
| 1791 | fi |
2292 | fi |
| 1792 | } |
2293 | } |
| 1793 | |
2294 | |
| 1794 | # @FUNCTION: python_get_version |
2295 | # @FUNCTION: python_get_version |
| 1795 | # @USAGE: [-f|--final-ABI] [--full] [--major] [--minor] [--micro] |
2296 | # @USAGE: [-f|--final-ABI] [-l|--language] [--full] [--major] [--minor] [--micro] |
| 1796 | # @DESCRIPTION: |
2297 | # @DESCRIPTION: |
| 1797 | # Print Python version. |
2298 | # Print version of Python implementation. |
| 1798 | # --full, --major, --minor and --micro options cannot be specified simultaneously. |
2299 | # --full, --major, --minor and --micro options cannot be specified simultaneously. |
| 1799 | # If --full, --major, --minor and --micro options are not specified, then "${major_version}.${minor_version}" is printed. |
2300 | # If --full, --major, --minor and --micro options are not specified, then "${major_version}.${minor_version}" is printed. |
|
|
2301 | # If --language option is specified, then version of Python language is printed. |
|
|
2302 | # --language and --full options cannot be specified simultaneously. |
|
|
2303 | # --language and --micro options cannot be specified simultaneously. |
| 1800 | # If --final-ABI option is specified, then final ABI from the list of enabled ABIs is used. |
2304 | # If --final-ABI option is specified, then final ABI from the list of enabled ABIs is used. |
| 1801 | python_get_version() { |
2305 | python_get_version() { |
| 1802 | _python_check_python_pkg_setup_execution |
2306 | _python_check_python_pkg_setup_execution |
| 1803 | |
2307 | |
| 1804 | local final_ABI="0" full="0" major="0" minor="0" micro="0" python_command |
2308 | local final_ABI="0" language="0" language_version full="0" major="0" minor="0" micro="0" PYTHON_ABI="${PYTHON_ABI}" python_command |
| 1805 | |
2309 | |
| 1806 | while (($#)); do |
2310 | while (($#)); do |
| 1807 | case "$1" in |
2311 | case "$1" in |
| 1808 | -f|--final-ABI) |
2312 | -f|--final-ABI) |
| 1809 | final_ABI="1" |
2313 | final_ABI="1" |
| 1810 | ;; |
2314 | ;; |
|
|
2315 | -l|--language) |
|
|
2316 | language="1" |
|
|
2317 | ;; |
| 1811 | --full) |
2318 | --full) |
| 1812 | full="1" |
2319 | full="1" |
| 1813 | ;; |
2320 | ;; |
| 1814 | --major) |
2321 | --major) |
| 1815 | major="1" |
2322 | major="1" |
| … | |
… | |
| 1827 | die "${FUNCNAME}(): Invalid usage" |
2334 | die "${FUNCNAME}(): Invalid usage" |
| 1828 | ;; |
2335 | ;; |
| 1829 | esac |
2336 | esac |
| 1830 | shift |
2337 | shift |
| 1831 | done |
2338 | done |
| 1832 | |
|
|
| 1833 | if [[ "$((${full} + ${major} + ${minor} + ${micro}))" -gt 1 ]]; then |
|
|
| 1834 | die "${FUNCNAME}(): '--full', '--major', '--minor' or '--micro' options cannot be specified simultaneously" |
|
|
| 1835 | fi |
|
|
| 1836 | |
|
|
| 1837 | if [[ "${full}" == "1" ]]; then |
|
|
| 1838 | python_command="from sys import version_info; print('.'.join(str(x) for x in version_info[:3]))" |
|
|
| 1839 | elif [[ "${major}" == "1" ]]; then |
|
|
| 1840 | python_command="from sys import version_info; print(version_info[0])" |
|
|
| 1841 | elif [[ "${minor}" == "1" ]]; then |
|
|
| 1842 | python_command="from sys import version_info; print(version_info[1])" |
|
|
| 1843 | elif [[ "${micro}" == "1" ]]; then |
|
|
| 1844 | python_command="from sys import version_info; print(version_info[2])" |
|
|
| 1845 | else |
|
|
| 1846 | if [[ -n "${PYTHON_ABI}" && "${final_ABI}" == "0" ]]; then |
|
|
| 1847 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
|
|
| 1848 | echo "${PYTHON_ABI}" |
|
|
| 1849 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
|
|
| 1850 | echo "${PYTHON_ABI%-jython}" |
|
|
| 1851 | fi |
|
|
| 1852 | return |
|
|
| 1853 | fi |
|
|
| 1854 | python_command="from sys import version_info; print('.'.join(str(x) for x in version_info[:2]))" |
|
|
| 1855 | fi |
|
|
| 1856 | |
2339 | |
| 1857 | if [[ "${final_ABI}" == "1" ]]; then |
2340 | if [[ "${final_ABI}" == "1" ]]; then |
| 1858 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
2341 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
| 1859 | die "${FUNCNAME}(): '--final-ABI' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
2342 | die "${FUNCNAME}(): '--final-ABI' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
| 1860 | fi |
2343 | fi |
| 1861 | "$(PYTHON -f)" -c "${python_command}" |
|
|
| 1862 | else |
2344 | else |
| 1863 | if _python_package_supporting_installation_for_multiple_python_abis && ! _python_abi-specific_local_scope; then |
2345 | if _python_package_supporting_installation_for_multiple_python_abis && ! _python_abi-specific_local_scope; then |
| 1864 | die "${FUNCNAME}() should be used in ABI-specific local scope" |
2346 | die "${FUNCNAME}() should be used in ABI-specific local scope" |
| 1865 | fi |
2347 | fi |
|
|
2348 | fi |
|
|
2349 | |
|
|
2350 | if [[ "$((${full} + ${major} + ${minor} + ${micro}))" -gt 1 ]]; then |
|
|
2351 | die "${FUNCNAME}(): '--full', '--major', '--minor' or '--micro' options cannot be specified simultaneously" |
|
|
2352 | fi |
|
|
2353 | |
|
|
2354 | if [[ "${language}" == "1" ]]; then |
|
|
2355 | if [[ "${final_ABI}" == "1" ]]; then |
|
|
2356 | PYTHON_ABI="$(PYTHON -f --ABI)" |
|
|
2357 | elif [[ -z "${PYTHON_ABI}" ]]; then |
|
|
2358 | PYTHON_ABI="$(PYTHON --ABI)" |
|
|
2359 | fi |
|
|
2360 | language_version="${PYTHON_ABI%%-*}" |
|
|
2361 | if [[ "${full}" == "1" ]]; then |
|
|
2362 | die "${FUNCNAME}(): '--language' and '--full' options cannot be specified simultaneously" |
|
|
2363 | elif [[ "${major}" == "1" ]]; then |
|
|
2364 | echo "${language_version%.*}" |
|
|
2365 | elif [[ "${minor}" == "1" ]]; then |
|
|
2366 | echo "${language_version#*.}" |
|
|
2367 | elif [[ "${micro}" == "1" ]]; then |
|
|
2368 | die "${FUNCNAME}(): '--language' and '--micro' options cannot be specified simultaneously" |
|
|
2369 | else |
|
|
2370 | echo "${language_version}" |
|
|
2371 | fi |
|
|
2372 | else |
|
|
2373 | if [[ "${full}" == "1" ]]; then |
|
|
2374 | python_command="import sys; print('.'.join(str(x) for x in getattr(sys, 'pypy_version_info', sys.version_info)[:3]))" |
|
|
2375 | elif [[ "${major}" == "1" ]]; then |
|
|
2376 | python_command="import sys; print(getattr(sys, 'pypy_version_info', sys.version_info)[0])" |
|
|
2377 | elif [[ "${minor}" == "1" ]]; then |
|
|
2378 | python_command="import sys; print(getattr(sys, 'pypy_version_info', sys.version_info)[1])" |
|
|
2379 | elif [[ "${micro}" == "1" ]]; then |
|
|
2380 | python_command="import sys; print(getattr(sys, 'pypy_version_info', sys.version_info)[2])" |
|
|
2381 | else |
|
|
2382 | if [[ -n "${PYTHON_ABI}" && "${final_ABI}" == "0" ]]; then |
|
|
2383 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
|
|
2384 | echo "${PYTHON_ABI}" |
|
|
2385 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
|
|
2386 | echo "${PYTHON_ABI%-jython}" |
|
|
2387 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "PyPy" ]]; then |
|
|
2388 | echo "${PYTHON_ABI#*-pypy-}" |
|
|
2389 | fi |
|
|
2390 | return |
|
|
2391 | fi |
|
|
2392 | python_command="from sys import version_info; print('.'.join(str(x) for x in version_info[:2]))" |
|
|
2393 | fi |
|
|
2394 | |
|
|
2395 | if [[ "${final_ABI}" == "1" ]]; then |
|
|
2396 | "$(PYTHON -f)" -c "${python_command}" |
|
|
2397 | else |
| 1866 | "$(PYTHON ${PYTHON_ABI})" -c "${python_command}" |
2398 | "$(PYTHON ${PYTHON_ABI})" -c "${python_command}" |
|
|
2399 | fi |
|
|
2400 | fi |
|
|
2401 | } |
|
|
2402 | |
|
|
2403 | # @FUNCTION: python_get_implementation_and_version |
|
|
2404 | # @USAGE: [-f|--final-ABI] |
|
|
2405 | # @DESCRIPTION: |
|
|
2406 | # Print name and version of Python implementation. |
|
|
2407 | # If version of Python implementation is not bound to version of Python language, then |
|
|
2408 | # version of Python language is additionally printed. |
|
|
2409 | # If --final-ABI option is specified, then final ABI from the list of enabled ABIs is used. |
|
|
2410 | python_get_implementation_and_version() { |
|
|
2411 | _python_check_python_pkg_setup_execution |
|
|
2412 | |
|
|
2413 | local final_ABI="0" PYTHON_ABI="${PYTHON_ABI}" |
|
|
2414 | |
|
|
2415 | while (($#)); do |
|
|
2416 | case "$1" in |
|
|
2417 | -f|--final-ABI) |
|
|
2418 | final_ABI="1" |
|
|
2419 | ;; |
|
|
2420 | -*) |
|
|
2421 | die "${FUNCNAME}(): Unrecognized option '$1'" |
|
|
2422 | ;; |
|
|
2423 | *) |
|
|
2424 | die "${FUNCNAME}(): Invalid usage" |
|
|
2425 | ;; |
|
|
2426 | esac |
|
|
2427 | shift |
|
|
2428 | done |
|
|
2429 | |
|
|
2430 | if [[ "${final_ABI}" == "1" ]]; then |
|
|
2431 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
2432 | die "${FUNCNAME}(): '--final-ABI' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
|
|
2433 | fi |
|
|
2434 | PYTHON_ABI="$(PYTHON -f --ABI)" |
|
|
2435 | else |
|
|
2436 | if _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
2437 | if ! _python_abi-specific_local_scope; then |
|
|
2438 | die "${FUNCNAME}() should be used in ABI-specific local scope" |
|
|
2439 | fi |
|
|
2440 | else |
|
|
2441 | PYTHON_ABI="${PYTHON_ABI:-$(PYTHON --ABI)}" |
|
|
2442 | fi |
|
|
2443 | fi |
|
|
2444 | |
|
|
2445 | if [[ "${PYTHON_ABI}" =~ ^[[:digit:]]+\.[[:digit:]]+-[[:alnum:]]+-[[:digit:]]+\.[[:digit:]]+$ ]]; then |
|
|
2446 | echo "$(_python_get_implementation "${PYTHON_ABI}") ${PYTHON_ABI##*-} (Python ${PYTHON_ABI%%-*})" |
|
|
2447 | else |
|
|
2448 | echo "$(_python_get_implementation "${PYTHON_ABI}") ${PYTHON_ABI%%-*}" |
| 1867 | fi |
2449 | fi |
| 1868 | } |
2450 | } |
| 1869 | |
2451 | |
| 1870 | # ================================================================================================ |
2452 | # ================================================================================================ |
| 1871 | # ================================ FUNCTIONS FOR RUNNING OF TESTS ================================ |
2453 | # ================================ FUNCTIONS FOR RUNNING OF TESTS ================================ |
| … | |
… | |
| 1880 | _python_test_hook() { |
2462 | _python_test_hook() { |
| 1881 | if [[ "$#" -ne 1 ]]; then |
2463 | if [[ "$#" -ne 1 ]]; then |
| 1882 | die "${FUNCNAME}() requires 1 argument" |
2464 | die "${FUNCNAME}() requires 1 argument" |
| 1883 | fi |
2465 | fi |
| 1884 | |
2466 | |
| 1885 | if _python_package_supporting_installation_for_multiple_python_abis && [[ "$(type -t "${FUNCNAME[3]}_$1_hook")" == "function" ]]; then |
2467 | if _python_package_supporting_installation_for_multiple_python_abis && [[ "$(type -t "${_PYTHON_TEST_FUNCTION}_$1_hook")" == "function" ]]; then |
| 1886 | "${FUNCNAME[3]}_$1_hook" |
2468 | "${_PYTHON_TEST_FUNCTION}_$1_hook" |
| 1887 | fi |
2469 | fi |
| 1888 | } |
2470 | } |
| 1889 | |
2471 | |
| 1890 | # @FUNCTION: python_execute_nosetests |
2472 | # @FUNCTION: python_execute_nosetests |
| 1891 | # @USAGE: [-P|--PYTHONPATH PYTHONPATH] [-s|--separate-build-dirs] [--] [arguments] |
2473 | # @USAGE: [-P|--PYTHONPATH PYTHONPATH] [-s|--separate-build-dirs] [--] [arguments] |
| … | |
… | |
| 1895 | # python_execute_nosetests_pre_hook() and python_execute_nosetests_post_hook(), if they are defined. |
2477 | # python_execute_nosetests_pre_hook() and python_execute_nosetests_post_hook(), if they are defined. |
| 1896 | python_execute_nosetests() { |
2478 | python_execute_nosetests() { |
| 1897 | _python_check_python_pkg_setup_execution |
2479 | _python_check_python_pkg_setup_execution |
| 1898 | _python_set_color_variables |
2480 | _python_set_color_variables |
| 1899 | |
2481 | |
| 1900 | local PYTHONPATH_template= separate_build_dirs= |
2482 | local PYTHONPATH_template separate_build_dirs |
| 1901 | |
2483 | |
| 1902 | while (($#)); do |
2484 | while (($#)); do |
| 1903 | case "$1" in |
2485 | case "$1" in |
| 1904 | -P|--PYTHONPATH) |
2486 | -P|--PYTHONPATH) |
| 1905 | PYTHONPATH_template="$2" |
2487 | PYTHONPATH_template="$2" |
| … | |
… | |
| 1925 | python_test_function() { |
2507 | python_test_function() { |
| 1926 | local evaluated_PYTHONPATH |
2508 | local evaluated_PYTHONPATH |
| 1927 | |
2509 | |
| 1928 | eval "evaluated_PYTHONPATH=\"${PYTHONPATH_template}\"" |
2510 | eval "evaluated_PYTHONPATH=\"${PYTHONPATH_template}\"" |
| 1929 | |
2511 | |
| 1930 | _python_test_hook pre |
2512 | _PYTHON_TEST_FUNCTION="python_execute_nosetests" _python_test_hook pre |
| 1931 | |
2513 | |
| 1932 | if [[ -n "${evaluated_PYTHONPATH}" ]]; then |
2514 | if [[ -n "${evaluated_PYTHONPATH}" ]]; then |
| 1933 | echo ${_BOLD}PYTHONPATH="${evaluated_PYTHONPATH}" nosetests --verbosity="${PYTHON_TEST_VERBOSITY}" "$@"${_NORMAL} |
2515 | echo ${_BOLD}PYTHONPATH="${evaluated_PYTHONPATH}" nosetests --verbosity="${PYTHON_TEST_VERBOSITY}" "$@"${_NORMAL} |
| 1934 | PYTHONPATH="${evaluated_PYTHONPATH}" nosetests --verbosity="${PYTHON_TEST_VERBOSITY}" "$@" || return "$?" |
2516 | PYTHONPATH="${evaluated_PYTHONPATH}" nosetests --verbosity="${PYTHON_TEST_VERBOSITY}" "$@" || return "$?" |
| 1935 | else |
2517 | else |
| 1936 | echo ${_BOLD}nosetests --verbosity="${PYTHON_TEST_VERBOSITY}" "$@"${_NORMAL} |
2518 | echo ${_BOLD}nosetests --verbosity="${PYTHON_TEST_VERBOSITY}" "$@"${_NORMAL} |
| 1937 | nosetests --verbosity="${PYTHON_TEST_VERBOSITY}" "$@" || return "$?" |
2519 | nosetests --verbosity="${PYTHON_TEST_VERBOSITY}" "$@" || return "$?" |
| 1938 | fi |
2520 | fi |
| 1939 | |
2521 | |
| 1940 | _python_test_hook post |
2522 | _PYTHON_TEST_FUNCTION="python_execute_nosetests" _python_test_hook post |
| 1941 | } |
2523 | } |
| 1942 | if _python_package_supporting_installation_for_multiple_python_abis; then |
2524 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| 1943 | python_execute_function ${separate_build_dirs:+-s} python_test_function "$@" |
2525 | python_execute_function ${separate_build_dirs:+-s} python_test_function "$@" |
| 1944 | else |
2526 | else |
| 1945 | if [[ -n "${separate_build_dirs}" ]]; then |
2527 | if [[ -n "${separate_build_dirs}" ]]; then |
| … | |
… | |
| 1959 | # python_execute_py.test_pre_hook() and python_execute_py.test_post_hook(), if they are defined. |
2541 | # python_execute_py.test_pre_hook() and python_execute_py.test_post_hook(), if they are defined. |
| 1960 | python_execute_py.test() { |
2542 | python_execute_py.test() { |
| 1961 | _python_check_python_pkg_setup_execution |
2543 | _python_check_python_pkg_setup_execution |
| 1962 | _python_set_color_variables |
2544 | _python_set_color_variables |
| 1963 | |
2545 | |
| 1964 | local PYTHONPATH_template= separate_build_dirs= |
2546 | local PYTHONPATH_template separate_build_dirs |
| 1965 | |
2547 | |
| 1966 | while (($#)); do |
2548 | while (($#)); do |
| 1967 | case "$1" in |
2549 | case "$1" in |
| 1968 | -P|--PYTHONPATH) |
2550 | -P|--PYTHONPATH) |
| 1969 | PYTHONPATH_template="$2" |
2551 | PYTHONPATH_template="$2" |
| … | |
… | |
| 1989 | python_test_function() { |
2571 | python_test_function() { |
| 1990 | local evaluated_PYTHONPATH |
2572 | local evaluated_PYTHONPATH |
| 1991 | |
2573 | |
| 1992 | eval "evaluated_PYTHONPATH=\"${PYTHONPATH_template}\"" |
2574 | eval "evaluated_PYTHONPATH=\"${PYTHONPATH_template}\"" |
| 1993 | |
2575 | |
| 1994 | _python_test_hook pre |
2576 | _PYTHON_TEST_FUNCTION="python_execute_py.test" _python_test_hook pre |
| 1995 | |
2577 | |
| 1996 | if [[ -n "${evaluated_PYTHONPATH}" ]]; then |
2578 | if [[ -n "${evaluated_PYTHONPATH}" ]]; then |
| 1997 | echo ${_BOLD}PYTHONPATH="${evaluated_PYTHONPATH}" py.test $([[ "${PYTHON_TEST_VERBOSITY}" -ge 2 ]] && echo -v) "$@"${_NORMAL} |
2579 | echo ${_BOLD}PYTHONPATH="${evaluated_PYTHONPATH}" py.test $([[ "${PYTHON_TEST_VERBOSITY}" -ge 2 ]] && echo -v) "$@"${_NORMAL} |
| 1998 | PYTHONPATH="${evaluated_PYTHONPATH}" py.test $([[ "${PYTHON_TEST_VERBOSITY}" -ge 2 ]] && echo -v) "$@" || return "$?" |
2580 | PYTHONPATH="${evaluated_PYTHONPATH}" py.test $([[ "${PYTHON_TEST_VERBOSITY}" -ge 2 ]] && echo -v) "$@" || return "$?" |
| 1999 | else |
2581 | else |
| 2000 | echo ${_BOLD}py.test $([[ "${PYTHON_TEST_VERBOSITY}" -gt 1 ]] && echo -v) "$@"${_NORMAL} |
2582 | echo ${_BOLD}py.test $([[ "${PYTHON_TEST_VERBOSITY}" -gt 1 ]] && echo -v) "$@"${_NORMAL} |
| 2001 | py.test $([[ "${PYTHON_TEST_VERBOSITY}" -gt 1 ]] && echo -v) "$@" || return "$?" |
2583 | py.test $([[ "${PYTHON_TEST_VERBOSITY}" -gt 1 ]] && echo -v) "$@" || return "$?" |
| 2002 | fi |
2584 | fi |
| 2003 | |
2585 | |
| 2004 | _python_test_hook post |
2586 | _PYTHON_TEST_FUNCTION="python_execute_py.test" _python_test_hook post |
| 2005 | } |
2587 | } |
| 2006 | if _python_package_supporting_installation_for_multiple_python_abis; then |
2588 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| 2007 | python_execute_function ${separate_build_dirs:+-s} python_test_function "$@" |
2589 | python_execute_function ${separate_build_dirs:+-s} python_test_function "$@" |
| 2008 | else |
2590 | else |
| 2009 | if [[ -n "${separate_build_dirs}" ]]; then |
2591 | if [[ -n "${separate_build_dirs}" ]]; then |
| … | |
… | |
| 2023 | # calls python_execute_trial_pre_hook() and python_execute_trial_post_hook(), if they are defined. |
2605 | # calls python_execute_trial_pre_hook() and python_execute_trial_post_hook(), if they are defined. |
| 2024 | python_execute_trial() { |
2606 | python_execute_trial() { |
| 2025 | _python_check_python_pkg_setup_execution |
2607 | _python_check_python_pkg_setup_execution |
| 2026 | _python_set_color_variables |
2608 | _python_set_color_variables |
| 2027 | |
2609 | |
| 2028 | local PYTHONPATH_template= separate_build_dirs= |
2610 | local PYTHONPATH_template separate_build_dirs |
| 2029 | |
2611 | |
| 2030 | while (($#)); do |
2612 | while (($#)); do |
| 2031 | case "$1" in |
2613 | case "$1" in |
| 2032 | -P|--PYTHONPATH) |
2614 | -P|--PYTHONPATH) |
| 2033 | PYTHONPATH_template="$2" |
2615 | PYTHONPATH_template="$2" |
| … | |
… | |
| 2053 | python_test_function() { |
2635 | python_test_function() { |
| 2054 | local evaluated_PYTHONPATH |
2636 | local evaluated_PYTHONPATH |
| 2055 | |
2637 | |
| 2056 | eval "evaluated_PYTHONPATH=\"${PYTHONPATH_template}\"" |
2638 | eval "evaluated_PYTHONPATH=\"${PYTHONPATH_template}\"" |
| 2057 | |
2639 | |
| 2058 | _python_test_hook pre |
2640 | _PYTHON_TEST_FUNCTION="python_execute_trial" _python_test_hook pre |
| 2059 | |
2641 | |
| 2060 | if [[ -n "${evaluated_PYTHONPATH}" ]]; then |
2642 | if [[ -n "${evaluated_PYTHONPATH}" ]]; then |
| 2061 | echo ${_BOLD}PYTHONPATH="${evaluated_PYTHONPATH}" trial $([[ "${PYTHON_TEST_VERBOSITY}" -ge 4 ]] && echo --spew) "$@"${_NORMAL} |
2643 | echo ${_BOLD}PYTHONPATH="${evaluated_PYTHONPATH}" trial $([[ "${PYTHON_TEST_VERBOSITY}" -ge 4 ]] && echo --spew) "$@"${_NORMAL} |
| 2062 | PYTHONPATH="${evaluated_PYTHONPATH}" trial $([[ "${PYTHON_TEST_VERBOSITY}" -ge 4 ]] && echo --spew) "$@" || return "$?" |
2644 | PYTHONPATH="${evaluated_PYTHONPATH}" trial $([[ "${PYTHON_TEST_VERBOSITY}" -ge 4 ]] && echo --spew) "$@" || return "$?" |
| 2063 | else |
2645 | else |
| 2064 | echo ${_BOLD}trial $([[ "${PYTHON_TEST_VERBOSITY}" -ge 4 ]] && echo --spew) "$@"${_NORMAL} |
2646 | echo ${_BOLD}trial $([[ "${PYTHON_TEST_VERBOSITY}" -ge 4 ]] && echo --spew) "$@"${_NORMAL} |
| 2065 | trial $([[ "${PYTHON_TEST_VERBOSITY}" -ge 4 ]] && echo --spew) "$@" || return "$?" |
2647 | trial $([[ "${PYTHON_TEST_VERBOSITY}" -ge 4 ]] && echo --spew) "$@" || return "$?" |
| 2066 | fi |
2648 | fi |
| 2067 | |
2649 | |
| 2068 | _python_test_hook post |
2650 | _PYTHON_TEST_FUNCTION="python_execute_trial" _python_test_hook post |
| 2069 | } |
2651 | } |
| 2070 | if _python_package_supporting_installation_for_multiple_python_abis; then |
2652 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| 2071 | python_execute_function ${separate_build_dirs:+-s} python_test_function "$@" |
2653 | python_execute_function ${separate_build_dirs:+-s} python_test_function "$@" |
| 2072 | else |
2654 | else |
| 2073 | if [[ -n "${separate_build_dirs}" ]]; then |
2655 | if [[ -n "${separate_build_dirs}" ]]; then |
| … | |
… | |
| 2114 | |
2696 | |
| 2115 | _python_clean_compiled_modules() { |
2697 | _python_clean_compiled_modules() { |
| 2116 | _python_initialize_prefix_variables |
2698 | _python_initialize_prefix_variables |
| 2117 | _python_set_color_variables |
2699 | _python_set_color_variables |
| 2118 | |
2700 | |
| 2119 | [[ "${FUNCNAME[1]}" =~ ^(python_mod_optimize|python_mod_compile|python_mod_cleanup)$ ]] || die "${FUNCNAME}(): Invalid usage" |
2701 | [[ "${FUNCNAME[1]}" =~ ^(python_mod_optimize|python_mod_cleanup)$ ]] || die "${FUNCNAME}(): Invalid usage" |
| 2120 | |
2702 | |
| 2121 | local base_module_name compiled_file compiled_files=() dir path py_file root |
2703 | local base_module_name compiled_file compiled_files=() dir path py_file root |
| 2122 | |
2704 | |
| 2123 | # Strip trailing slash from EROOT. |
2705 | # Strip trailing slash from EROOT. |
| 2124 | root="${EROOT%/}" |
2706 | root="${EROOT%/}" |
| … | |
… | |
| 2173 | if [[ "${dir}" == "__pycache__" ]]; then |
2755 | if [[ "${dir}" == "__pycache__" ]]; then |
| 2174 | base_module_name="${compiled_file##*/}" |
2756 | base_module_name="${compiled_file##*/}" |
| 2175 | base_module_name="${base_module_name%\$py.class}" |
2757 | base_module_name="${base_module_name%\$py.class}" |
| 2176 | py_file="${compiled_file%__pycache__/*}${base_module_name}.py" |
2758 | py_file="${compiled_file%__pycache__/*}${base_module_name}.py" |
| 2177 | else |
2759 | else |
| 2178 | py_file="${compiled_file%\$py.class}" |
2760 | py_file="${compiled_file%\$py.class}.py" |
| 2179 | fi |
2761 | fi |
| 2180 | if [[ "${EBUILD_PHASE}" == "postinst" ]]; then |
2762 | if [[ "${EBUILD_PHASE}" == "postinst" ]]; then |
| 2181 | [[ -f "${py_file}" && "${compiled_file}" -nt "${py_file}" ]] && continue |
2763 | [[ -f "${py_file}" && "${compiled_file}" -nt "${py_file}" ]] && continue |
| 2182 | else |
2764 | else |
| 2183 | [[ -f "${py_file}" ]] && continue |
2765 | [[ -f "${py_file}" ]] && continue |
| … | |
… | |
| 2201 | done |
2783 | done |
| 2202 | done |
2784 | done |
| 2203 | } |
2785 | } |
| 2204 | |
2786 | |
| 2205 | # @FUNCTION: python_mod_optimize |
2787 | # @FUNCTION: python_mod_optimize |
| 2206 | # @USAGE: [options] [directory|file] |
2788 | # @USAGE: [--allow-evaluated-non-sitedir-paths] [-d directory] [-f] [-l] [-q] [-x regular_expression] [--] <file|directory> [files|directories] |
| 2207 | # @DESCRIPTION: |
2789 | # @DESCRIPTION: |
| 2208 | # If no arguments supplied, it will recompile not recursively all modules |
2790 | # 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. |
2791 | # -d, -f, -l, -q and -x options passed to this function are passed to compileall.py. |
| 2215 | # |
2792 | # |
| 2216 | # This function can be used only in pkg_postinst() phase. |
2793 | # This function can be used only in pkg_postinst() phase. |
| 2217 | python_mod_optimize() { |
2794 | python_mod_optimize() { |
|
|
2795 | if [[ "${EBUILD_PHASE}" != "postinst" ]]; then |
|
|
2796 | die "${FUNCNAME}() can be used only in pkg_postinst() phase" |
|
|
2797 | fi |
|
|
2798 | |
| 2218 | _python_check_python_pkg_setup_execution |
2799 | _python_check_python_pkg_setup_execution |
| 2219 | _python_initialize_prefix_variables |
2800 | _python_initialize_prefix_variables |
| 2220 | |
2801 | |
| 2221 | # Check if phase is pkg_postinst(). |
2802 | if ! has "${EAPI:-0}" 0 1 2 || _python_package_supporting_installation_for_multiple_python_abis || _python_implementation || [[ "${CATEGORY}/${PN}" == "sys-apps/portage" ]]; then |
| 2222 | [[ "${EBUILD_PHASE}" != "postinst" ]] && die "${FUNCNAME}() can be used only in pkg_postinst() phase" |
|
|
| 2223 | |
|
|
| 2224 | if ! has "${EAPI:-0}" 0 1 2 || _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
| 2225 | # PYTHON_ABI variable cannot be local in packages not supporting installation for multiple Python ABIs. |
2803 | # 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=() |
2804 | local allow_evaluated_non_sitedir_paths="0" dir dirs=() evaluated_dirs=() evaluated_files=() file files=() iterated_PYTHON_ABIS options=() other_dirs=() other_files=() previous_PYTHON_ABI="${PYTHON_ABI}" return_code root site_packages_dirs=() site_packages_files=() stderr stderr_line |
| 2227 | |
2805 | |
| 2228 | if _python_package_supporting_installation_for_multiple_python_abis; then |
2806 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| 2229 | if has "${EAPI:-0}" 0 1 2 3 && [[ -z "${PYTHON_ABIS}" ]]; then |
2807 | if has "${EAPI:-0}" 0 1 2 3 && [[ -z "${PYTHON_ABIS}" ]]; then |
| 2230 | die "${FUNCNAME}(): python_pkg_setup() or python_execute_function() not called" |
2808 | die "${FUNCNAME}(): python_pkg_setup() or python_execute_function() not called" |
| 2231 | fi |
2809 | fi |
| … | |
… | |
| 2270 | if [[ "${allow_evaluated_non_sitedir_paths}" == "1" ]] && ! _python_package_supporting_installation_for_multiple_python_abis; then |
2848 | 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" |
2849 | die "${FUNCNAME}(): '--allow-evaluated-non-sitedir-paths' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
| 2272 | fi |
2850 | fi |
| 2273 | |
2851 | |
| 2274 | if [[ "$#" -eq 0 ]]; then |
2852 | if [[ "$#" -eq 0 ]]; then |
| 2275 | ewarn |
2853 | 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 |
2854 | fi |
| 2281 | |
2855 | |
| 2282 | while (($#)); do |
2856 | while (($#)); do |
| 2283 | if [[ "$1" =~ ^($|(\.|\.\.|/)($|/)) ]]; then |
2857 | if [[ "$1" =~ ^($|(\.|\.\.|/)($|/)) ]]; then |
| 2284 | die "${FUNCNAME}(): Invalid argument '$1'" |
2858 | die "${FUNCNAME}(): Invalid argument '$1'" |
| … | |
… | |
| 2330 | options+=("-q") |
2904 | options+=("-q") |
| 2331 | |
2905 | |
| 2332 | for PYTHON_ABI in ${iterated_PYTHON_ABIS}; do |
2906 | for PYTHON_ABI in ${iterated_PYTHON_ABIS}; do |
| 2333 | if ((${#site_packages_dirs[@]})) || ((${#site_packages_files[@]})) || ((${#evaluated_dirs[@]})) || ((${#evaluated_files[@]})); then |
2907 | if ((${#site_packages_dirs[@]})) || ((${#site_packages_files[@]})) || ((${#evaluated_dirs[@]})) || ((${#evaluated_files[@]})); then |
| 2334 | return_code="0" |
2908 | return_code="0" |
|
|
2909 | stderr="" |
| 2335 | ebegin "Compilation and optimization of Python modules for $(python_get_implementation) $(python_get_version)" |
2910 | ebegin "Compilation and optimization of Python modules for $(python_get_implementation_and_version)" |
| 2336 | if ((${#site_packages_dirs[@]})) || ((${#evaluated_dirs[@]})); then |
2911 | if ((${#site_packages_dirs[@]})) || ((${#evaluated_dirs[@]})); then |
| 2337 | for dir in "${site_packages_dirs[@]}"; do |
2912 | for dir in "${site_packages_dirs[@]}"; do |
| 2338 | dirs+=("${root}$(python_get_sitedir)/${dir}") |
2913 | dirs+=("${root}$(python_get_sitedir)/${dir}") |
| 2339 | done |
2914 | done |
| 2340 | for dir in "${evaluated_dirs[@]}"; do |
2915 | for dir in "${evaluated_dirs[@]}"; do |
| 2341 | eval "dirs+=(\"\${root}${dir}\")" |
2916 | eval "dirs+=(\"\${root}${dir}\")" |
| 2342 | done |
2917 | done |
| 2343 | "$(PYTHON)" "${root}$(python_get_libdir)/compileall.py" "${options[@]}" "${dirs[@]}" || return_code="1" |
2918 | stderr+="${stderr:+$'\n'}$("$(PYTHON)" -m compileall "${options[@]}" "${dirs[@]}" 2>&1)" || return_code="1" |
| 2344 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" != "Jython" ]]; then |
2919 | if ! has "$(_python_get_implementation "${PYTHON_ABI}")" Jython PyPy; then |
| 2345 | "$(PYTHON)" -O "${root}$(python_get_libdir)/compileall.py" "${options[@]}" "${dirs[@]}" &> /dev/null || return_code="1" |
2920 | "$(PYTHON)" -O -m compileall "${options[@]}" "${dirs[@]}" &> /dev/null || return_code="1" |
| 2346 | fi |
2921 | fi |
| 2347 | _python_clean_compiled_modules "${dirs[@]}" |
2922 | _python_clean_compiled_modules "${dirs[@]}" |
| 2348 | fi |
2923 | fi |
| 2349 | if ((${#site_packages_files[@]})) || ((${#evaluated_files[@]})); then |
2924 | if ((${#site_packages_files[@]})) || ((${#evaluated_files[@]})); then |
| 2350 | for file in "${site_packages_files[@]}"; do |
2925 | for file in "${site_packages_files[@]}"; do |
| 2351 | files+=("${root}$(python_get_sitedir)/${file}") |
2926 | files+=("${root}$(python_get_sitedir)/${file}") |
| 2352 | done |
2927 | done |
| 2353 | for file in "${evaluated_files[@]}"; do |
2928 | for file in "${evaluated_files[@]}"; do |
| 2354 | eval "files+=(\"\${root}${file}\")" |
2929 | eval "files+=(\"\${root}${file}\")" |
| 2355 | done |
2930 | done |
| 2356 | "$(PYTHON)" "${root}$(python_get_libdir)/py_compile.py" "${files[@]}" || return_code="1" |
2931 | stderr+="${stderr:+$'\n'}$("$(PYTHON)" -m py_compile "${files[@]}" 2>&1)" || return_code="1" |
| 2357 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" != "Jython" ]]; then |
2932 | if ! has "$(_python_get_implementation "${PYTHON_ABI}")" Jython PyPy; then |
| 2358 | "$(PYTHON)" -O "${root}$(python_get_libdir)/py_compile.py" "${files[@]}" &> /dev/null || return_code="1" |
2933 | "$(PYTHON)" -O -m py_compile "${files[@]}" &> /dev/null || return_code="1" |
| 2359 | fi |
2934 | fi |
| 2360 | _python_clean_compiled_modules "${files[@]}" |
2935 | _python_clean_compiled_modules "${files[@]}" |
| 2361 | fi |
2936 | fi |
| 2362 | eend "${return_code}" |
2937 | eend "${return_code}" |
|
|
2938 | if [[ -n "${stderr}" ]]; then |
|
|
2939 | eerror "Syntax errors / warnings in Python modules for $(python_get_implementation_and_version):" &> /dev/null |
|
|
2940 | while read stderr_line; do |
|
|
2941 | eerror " ${stderr_line}" |
|
|
2942 | done <<< "${stderr}" |
|
|
2943 | fi |
| 2363 | fi |
2944 | fi |
| 2364 | unset dirs files |
2945 | unset dirs files |
| 2365 | done |
2946 | done |
| 2366 | |
2947 | |
| 2367 | if _python_package_supporting_installation_for_multiple_python_abis; then |
2948 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| … | |
… | |
| 2373 | fi |
2954 | fi |
| 2374 | fi |
2955 | fi |
| 2375 | |
2956 | |
| 2376 | if ((${#other_dirs[@]})) || ((${#other_files[@]})); then |
2957 | if ((${#other_dirs[@]})) || ((${#other_files[@]})); then |
| 2377 | return_code="0" |
2958 | return_code="0" |
|
|
2959 | stderr="" |
| 2378 | ebegin "Compilation and optimization of Python modules placed outside of site-packages directories for $(python_get_implementation) $(python_get_version)" |
2960 | ebegin "Compilation and optimization of Python modules placed outside of site-packages directories for $(python_get_implementation_and_version)" |
| 2379 | if ((${#other_dirs[@]})); then |
2961 | if ((${#other_dirs[@]})); then |
| 2380 | "$(PYTHON ${PYTHON_ABI})" "${root}$(python_get_libdir)/compileall.py" "${options[@]}" "${other_dirs[@]}" || return_code="1" |
2962 | stderr+="${stderr:+$'\n'}$("$(PYTHON ${PYTHON_ABI})" -m compileall "${options[@]}" "${other_dirs[@]}" 2>&1)" || return_code="1" |
| 2381 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" != "Jython" ]]; then |
2963 | if ! has "$(_python_get_implementation "${PYTHON_ABI}")" Jython PyPy; then |
| 2382 | "$(PYTHON ${PYTHON_ABI})" -O "${root}$(python_get_libdir)/compileall.py" "${options[@]}" "${other_dirs[@]}" &> /dev/null || return_code="1" |
2964 | "$(PYTHON ${PYTHON_ABI})" -O -m compileall "${options[@]}" "${other_dirs[@]}" &> /dev/null || return_code="1" |
| 2383 | fi |
2965 | fi |
| 2384 | _python_clean_compiled_modules "${other_dirs[@]}" |
2966 | _python_clean_compiled_modules "${other_dirs[@]}" |
| 2385 | fi |
2967 | fi |
| 2386 | if ((${#other_files[@]})); then |
2968 | if ((${#other_files[@]})); then |
| 2387 | "$(PYTHON ${PYTHON_ABI})" "${root}$(python_get_libdir)/py_compile.py" "${other_files[@]}" || return_code="1" |
2969 | stderr+="${stderr:+$'\n'}$("$(PYTHON ${PYTHON_ABI})" -m py_compile "${other_files[@]}" 2>&1)" || return_code="1" |
| 2388 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" != "Jython" ]]; then |
2970 | if ! has "$(_python_get_implementation "${PYTHON_ABI}")" Jython PyPy; then |
| 2389 | "$(PYTHON ${PYTHON_ABI})" -O "${root}$(python_get_libdir)/py_compile.py" "${other_files[@]}" &> /dev/null || return_code="1" |
2971 | "$(PYTHON ${PYTHON_ABI})" -O -m py_compile "${other_files[@]}" &> /dev/null || return_code="1" |
| 2390 | fi |
2972 | fi |
| 2391 | _python_clean_compiled_modules "${other_dirs[@]}" |
2973 | _python_clean_compiled_modules "${other_files[@]}" |
| 2392 | fi |
2974 | fi |
| 2393 | eend "${return_code}" |
2975 | eend "${return_code}" |
|
|
2976 | if [[ -n "${stderr}" ]]; then |
|
|
2977 | eerror "Syntax errors / warnings in Python modules placed outside of site-packages directories for $(python_get_implementation_and_version):" &> /dev/null |
|
|
2978 | while read stderr_line; do |
|
|
2979 | eerror " ${stderr_line}" |
|
|
2980 | done <<< "${stderr}" |
|
|
2981 | fi |
| 2394 | fi |
2982 | fi |
| 2395 | else |
2983 | else |
| 2396 | # Deprecated part of python_mod_optimize() |
2984 | # Deprecated part of python_mod_optimize() |
|
|
2985 | ewarn |
|
|
2986 | ewarn "Deprecation Warning: Usage of ${FUNCNAME}() in packages not supporting installation" |
|
|
2987 | ewarn "for multiple Python ABIs in EAPI <=2 is deprecated and will be disallowed on 2011-08-01." |
|
|
2988 | ewarn "Use EAPI >=3 and call ${FUNCNAME}() with paths having appropriate syntax." |
|
|
2989 | ewarn "The ebuild needs to be fixed. Please report a bug, if it has not been already reported." |
|
|
2990 | ewarn |
| 2397 | |
2991 | |
| 2398 | local myroot mydirs=() myfiles=() myopts=() return_code="0" |
2992 | local myroot mydirs=() myfiles=() myopts=() return_code="0" |
| 2399 | |
2993 | |
| 2400 | # strip trailing slash |
2994 | # strip trailing slash |
| 2401 | myroot="${EROOT%/}" |
2995 | myroot="${EROOT%/}" |
| … | |
… | |
| 2423 | esac |
3017 | esac |
| 2424 | shift |
3018 | shift |
| 2425 | done |
3019 | done |
| 2426 | |
3020 | |
| 2427 | if [[ "$#" -eq 0 ]]; then |
3021 | if [[ "$#" -eq 0 ]]; then |
| 2428 | ewarn |
3022 | 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 |
3023 | fi |
| 2434 | |
3024 | |
| 2435 | while (($#)); do |
3025 | while (($#)); do |
| 2436 | if [[ "$1" =~ ^($|(\.|\.\.|/)($|/)) ]]; then |
3026 | if [[ "$1" =~ ^($|(\.|\.\.|/)($|/)) ]]; then |
| 2437 | die "${FUNCNAME}(): Invalid argument '$1'" |
3027 | die "${FUNCNAME}(): Invalid argument '$1'" |
| 2438 | elif [[ -d "${myroot}/${1#/}" ]]; then |
3028 | elif [[ -d "${myroot}/${1#/}" ]]; then |
| 2439 | mydirs+=("${myroot}/${1#/}") |
3029 | mydirs+=("${myroot}/${1#/}") |
| 2440 | elif [[ -f "${myroot}/${1#/}" ]]; then |
3030 | elif [[ -f "${myroot}/${1#/}" ]]; then |
| 2441 | # Files are passed to python_mod_compile which is EROOT-aware |
3031 | myfiles+=("${myroot}/${1#/}") |
| 2442 | myfiles+=("$1") |
|
|
| 2443 | elif [[ -e "${myroot}/${1#/}" ]]; then |
3032 | elif [[ -e "${myroot}/${1#/}" ]]; then |
| 2444 | eerror "${FUNCNAME}(): ${myroot}/${1#/} is not a regular file or directory" |
3033 | eerror "${FUNCNAME}(): ${myroot}/${1#/} is not a regular file or directory" |
| 2445 | else |
3034 | else |
| 2446 | eerror "${FUNCNAME}(): ${myroot}/${1#/} does not exist" |
3035 | eerror "${FUNCNAME}(): ${myroot}/${1#/} does not exist" |
| 2447 | fi |
3036 | fi |
| … | |
… | |
| 2459 | "$(PYTHON ${PYTHON_ABI})" -O "${myroot}$(python_get_libdir)/compileall.py" "${myopts[@]}" "${mydirs[@]}" &> /dev/null || return_code="1" |
3048 | "$(PYTHON ${PYTHON_ABI})" -O "${myroot}$(python_get_libdir)/compileall.py" "${myopts[@]}" "${mydirs[@]}" &> /dev/null || return_code="1" |
| 2460 | _python_clean_compiled_modules "${mydirs[@]}" |
3049 | _python_clean_compiled_modules "${mydirs[@]}" |
| 2461 | fi |
3050 | fi |
| 2462 | |
3051 | |
| 2463 | if ((${#myfiles[@]})); then |
3052 | if ((${#myfiles[@]})); then |
|
|
3053 | "$(PYTHON ${PYTHON_ABI})" "${myroot}$(python_get_libdir)/py_compile.py" "${myfiles[@]}" || return_code="1" |
|
|
3054 | "$(PYTHON ${PYTHON_ABI})" -O "${myroot}$(python_get_libdir)/py_compile.py" "${myfiles[@]}" &> /dev/null || return_code="1" |
| 2464 | python_mod_compile "${myfiles[@]}" |
3055 | _python_clean_compiled_modules "${myfiles[@]}" |
| 2465 | fi |
3056 | fi |
| 2466 | |
3057 | |
| 2467 | eend "${return_code}" |
3058 | eend "${return_code}" |
| 2468 | fi |
3059 | fi |
| 2469 | } |
3060 | } |
| 2470 | |
3061 | |
| 2471 | # @FUNCTION: python_mod_cleanup |
3062 | # @FUNCTION: python_mod_cleanup |
| 2472 | # @USAGE: [directory|file] |
3063 | # @USAGE: [--allow-evaluated-non-sitedir-paths] [--] <file|directory> [files|directories] |
| 2473 | # @DESCRIPTION: |
3064 | # @DESCRIPTION: |
| 2474 | # Run with optional arguments, where arguments are Python modules. If none given, |
3065 | # 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 | # |
3066 | # |
| 2481 | # This function can be used only in pkg_postrm() phase. |
3067 | # This function can be used only in pkg_postrm() phase. |
| 2482 | python_mod_cleanup() { |
3068 | python_mod_cleanup() { |
|
|
3069 | if [[ "${EBUILD_PHASE}" != "postrm" ]]; then |
|
|
3070 | die "${FUNCNAME}() can be used only in pkg_postrm() phase" |
|
|
3071 | fi |
|
|
3072 | |
| 2483 | _python_check_python_pkg_setup_execution |
3073 | _python_check_python_pkg_setup_execution |
| 2484 | _python_initialize_prefix_variables |
3074 | _python_initialize_prefix_variables |
| 2485 | |
3075 | |
| 2486 | local allow_evaluated_non_sitedir_paths="0" dir iterated_PYTHON_ABIS PYTHON_ABI="${PYTHON_ABI}" root search_paths=() sitedir |
3076 | local allow_evaluated_non_sitedir_paths="0" dir iterated_PYTHON_ABIS PYTHON_ABI="${PYTHON_ABI}" root search_paths=() sitedir |
| 2487 | |
|
|
| 2488 | # Check if phase is pkg_postrm(). |
|
|
| 2489 | [[ "${EBUILD_PHASE}" != "postrm" ]] && die "${FUNCNAME}() can be used only in pkg_postrm() phase" |
|
|
| 2490 | |
3077 | |
| 2491 | if _python_package_supporting_installation_for_multiple_python_abis; then |
3078 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| 2492 | if has "${EAPI:-0}" 0 1 2 3 && [[ -z "${PYTHON_ABIS}" ]]; then |
3079 | if has "${EAPI:-0}" 0 1 2 3 && [[ -z "${PYTHON_ABIS}" ]]; then |
| 2493 | die "${FUNCNAME}(): python_pkg_setup() or python_execute_function() not called" |
3080 | die "${FUNCNAME}(): python_pkg_setup() or python_execute_function() not called" |
| 2494 | fi |
3081 | fi |
| … | |
… | |
| 2525 | |
3112 | |
| 2526 | if [[ "${allow_evaluated_non_sitedir_paths}" == "1" ]] && ! _python_package_supporting_installation_for_multiple_python_abis; then |
3113 | 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" |
3114 | die "${FUNCNAME}(): '--allow-evaluated-non-sitedir-paths' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
| 2528 | fi |
3115 | fi |
| 2529 | |
3116 | |
| 2530 | if [[ "$#" -gt 0 ]]; then |
3117 | if [[ "$#" -eq 0 ]]; then |
| 2531 | if ! has "${EAPI:-0}" 0 1 2 || _python_package_supporting_installation_for_multiple_python_abis; then |
3118 | die "${FUNCNAME}(): Missing files or directories" |
|
|
3119 | fi |
|
|
3120 | |
|
|
3121 | 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 |
3122 | while (($#)); do |
| 2533 | if [[ "$1" =~ ^($|(\.|\.\.|/)($|/)) ]]; then |
3123 | if [[ "$1" =~ ^($|(\.|\.\.|/)($|/)) ]]; then |
| 2534 | die "${FUNCNAME}(): Invalid argument '$1'" |
3124 | die "${FUNCNAME}(): Invalid argument '$1'" |
| 2535 | elif ! _python_implementation && [[ "$1" =~ ^/usr/lib(32|64)?/python[[:digit:]]+\.[[:digit:]]+ ]]; then |
3125 | 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" |
3126 | die "${FUNCNAME}(): Paths of directories / files in site-packages directories must be relative to site-packages directories" |
| 2537 | elif [[ "$1" =~ ^/ ]]; then |
3127 | elif [[ "$1" =~ ^/ ]]; then |
| 2538 | if _python_package_supporting_installation_for_multiple_python_abis; then |
3128 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| 2539 | if [[ "${allow_evaluated_non_sitedir_paths}" != "1" ]]; then |
3129 | 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" |
3130 | 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 |
3131 | fi |
|
|
3132 | if [[ "$1" != *\$* ]]; then |
|
|
3133 | die "${FUNCNAME}(): '$1' has invalid syntax" |
|
|
3134 | fi |
|
|
3135 | for PYTHON_ABI in ${iterated_PYTHON_ABIS}; do |
|
|
3136 | eval "search_paths+=(\"\${root}$1\")" |
|
|
3137 | done |
| 2551 | else |
3138 | else |
|
|
3139 | search_paths+=("${root}$1") |
|
|
3140 | fi |
|
|
3141 | else |
| 2552 | for PYTHON_ABI in ${iterated_PYTHON_ABIS}; do |
3142 | for PYTHON_ABI in ${iterated_PYTHON_ABIS}; do |
| 2553 | search_paths+=("${root}$(python_get_sitedir)/$1") |
3143 | search_paths+=("${root}$(python_get_sitedir)/$1") |
| 2554 | done |
3144 | done |
| 2555 | fi |
3145 | fi |
| 2556 | shift |
3146 | shift |
| 2557 | done |
3147 | done |
| 2558 | else |
3148 | else |
| 2559 | # Deprecated part of python_mod_cleanup() |
3149 | # Deprecated part of python_mod_cleanup() |
| 2560 | |
|
|
| 2561 | search_paths=("${@#/}") |
|
|
| 2562 | search_paths=("${search_paths[@]/#/${root}/}") |
|
|
| 2563 | fi |
|
|
| 2564 | else |
|
|
| 2565 | ewarn |
3150 | ewarn |
| 2566 | ewarn "Deprecation Warning: Not passing of paths to ${FUNCNAME}() is deprecated and will be" |
3151 | ewarn "Deprecation Warning: Usage of ${FUNCNAME}() in packages not supporting installation" |
| 2567 | ewarn "disallowed on 2010-09-01. Call ${FUNCNAME}() with paths to Python modules." |
3152 | ewarn "for multiple Python ABIs in EAPI <=2 is deprecated and will be disallowed on 2011-08-01." |
|
|
3153 | ewarn "Use EAPI >=3 and call ${FUNCNAME}() with paths having appropriate syntax." |
| 2568 | ewarn "The ebuild needs to be fixed. Please report a bug, if it has not been already reported." |
3154 | ewarn "The ebuild needs to be fixed. Please report a bug, if it has not been already reported." |
| 2569 | ewarn |
3155 | ewarn |
| 2570 | |
3156 | |
| 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 |
|
|
| 2578 | fi |
|
|
| 2579 | done |
|
|
| 2580 | for sitedir in "${root}"/usr/share/jython-*/Lib/site-packages; do |
|
|
| 2581 | if [[ -d "${sitedir}" ]]; then |
|
|
| 2582 | search_paths+=("${sitedir}") |
3157 | search_paths=("${@#/}") |
| 2583 | fi |
3158 | search_paths=("${search_paths[@]/#/${root}/}") |
| 2584 | done |
|
|
| 2585 | fi |
3159 | fi |
| 2586 | |
3160 | |
| 2587 | _python_clean_compiled_modules "${search_paths[@]}" |
3161 | _python_clean_compiled_modules "${search_paths[@]}" |
| 2588 | } |
3162 | } |
| 2589 | |
3163 | |
| 2590 | # ================================================================================================ |
3164 | # ================================================================================================ |
| 2591 | # ===================================== DEPRECATED FUNCTIONS ===================================== |
3165 | # ===================================== DEPRECATED FUNCTIONS ===================================== |
| 2592 | # ================================================================================================ |
3166 | # ================================================================================================ |
| 2593 | |
3167 | |
| 2594 | # Scheduled for deletion on 2011-01-01. |
3168 | fi # _PYTHON_ECLASS_INHERITED |
| 2595 | python_version() { |
|
|
| 2596 | eerror "Use PYTHON() instead of python variable. Use python_get_*() instead of PYVER* variables." |
|
|
| 2597 | die "${FUNCNAME}() is banned" |
|
|
| 2598 | } |
|
|
| 2599 | |
|
|
| 2600 | # Scheduled for deletion on 2011-01-01. |
|
|
| 2601 | python_mod_exists() { |
|
|
| 2602 | eerror "Use USE dependencies and/or has_version() instead of ${FUNCNAME}()." |
|
|
| 2603 | die "${FUNCNAME}() is banned" |
|
|
| 2604 | } |
|
|
| 2605 | |
|
|
| 2606 | # Scheduled for deletion on 2011-01-01. |
|
|
| 2607 | python_tkinter_exists() { |
|
|
| 2608 | eerror "Use PYTHON_USE_WITH=\"xml\" and python_pkg_setup() instead of ${FUNCNAME}()." |
|
|
| 2609 | die "${FUNCNAME}() is banned" |
|
|
| 2610 | } |
|
|
| 2611 | |
|
|
| 2612 | # @FUNCTION: python_mod_compile |
|
|
| 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() { |
|
|
| 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}()." |
|
|
| 2624 | die "${FUNCNAME}() cannot be used in this EAPI" |
|
|
| 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 | } |
|
|