| 1 | # Copyright 1999-2010 Gentoo Foundation |
1 | # Copyright 1999-2011 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.101 2010/07/17 23:02:14 arfrever Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/python.eclass,v 1.139 2011/10/15 20:58:08 phajdan.jr 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 | inherit multilib |
12 | inherit multilib |
| 13 | |
13 | |
| 14 | if ! has "${EAPI:-0}" 0 1 2 3; then |
14 | if ! has "${EAPI:-0}" 0 1 2 3 4; then |
| 15 | die "API of python.eclass in EAPI=\"${EAPI}\" not established" |
15 | die "API of python.eclass in EAPI=\"${EAPI}\" not established" |
| 16 | fi |
16 | fi |
| 17 | |
17 | |
| 18 | _CPYTHON2_SUPPORTED_ABIS=(2.4 2.5 2.6 2.7) |
18 | _CPYTHON2_GLOBALLY_SUPPORTED_ABIS=(2.4 2.5 2.6 2.7) |
| 19 | _CPYTHON3_SUPPORTED_ABIS=(3.0 3.1 3.2) |
19 | _CPYTHON3_GLOBALLY_SUPPORTED_ABIS=(3.1 3.2) |
| 20 | _JYTHON_SUPPORTED_ABIS=(2.5-jython) |
20 | _JYTHON_GLOBALLY_SUPPORTED_ABIS=(2.5-jython) |
|
|
21 | _PYPY_GLOBALLY_SUPPORTED_ABIS=(2.7-pypy-1.5) |
|
|
22 | _PYTHON_GLOBALLY_SUPPORTED_ABIS=(${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]} ${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]} ${_JYTHON_GLOBALLY_SUPPORTED_ABIS[@]} ${_PYPY_GLOBALLY_SUPPORTED_ABIS[@]}) |
|
|
23 | |
|
|
24 | # ================================================================================================ |
|
|
25 | # ===================================== HANDLING OF METADATA ===================================== |
|
|
26 | # ================================================================================================ |
|
|
27 | |
|
|
28 | _PYTHON_ABI_PATTERN_REGEX="([[:alnum:]]|\.|-|\*|\[|\])+" |
|
|
29 | |
|
|
30 | _python_check_python_abi_matching() { |
|
|
31 | local pattern patterns patterns_list="0" PYTHON_ABI |
|
|
32 | |
|
|
33 | while (($#)); do |
|
|
34 | case "$1" in |
|
|
35 | --patterns-list) |
|
|
36 | patterns_list="1" |
|
|
37 | ;; |
|
|
38 | --) |
|
|
39 | shift |
|
|
40 | break |
|
|
41 | ;; |
|
|
42 | -*) |
|
|
43 | die "${FUNCNAME}(): Unrecognized option '$1'" |
|
|
44 | ;; |
|
|
45 | *) |
|
|
46 | break |
|
|
47 | ;; |
|
|
48 | esac |
|
|
49 | shift |
|
|
50 | done |
|
|
51 | |
|
|
52 | if [[ "$#" -ne 2 ]]; then |
|
|
53 | die "${FUNCNAME}() requires 2 arguments" |
|
|
54 | fi |
|
|
55 | |
|
|
56 | PYTHON_ABI="$1" |
|
|
57 | |
|
|
58 | if [[ "${patterns_list}" == "0" ]]; then |
|
|
59 | pattern="$2" |
|
|
60 | |
|
|
61 | if [[ "${pattern}" == *"-cpython" ]]; then |
|
|
62 | [[ "${PYTHON_ABI}" =~ ^[[:digit:]]+\.[[:digit:]]+$ && "${PYTHON_ABI}" == ${pattern%-cpython} ]] |
|
|
63 | elif [[ "${pattern}" == *"-jython" ]]; then |
|
|
64 | [[ "${PYTHON_ABI}" == ${pattern} ]] |
|
|
65 | elif [[ "${pattern}" == *"-pypy-"* ]]; then |
|
|
66 | [[ "${PYTHON_ABI}" == ${pattern} ]] |
|
|
67 | else |
|
|
68 | if [[ "${PYTHON_ABI}" =~ ^[[:digit:]]+\.[[:digit:]]+$ ]]; then |
|
|
69 | [[ "${PYTHON_ABI}" == ${pattern} ]] |
|
|
70 | elif [[ "${PYTHON_ABI}" =~ ^[[:digit:]]+\.[[:digit:]]+-jython$ ]]; then |
|
|
71 | [[ "${PYTHON_ABI%-jython}" == ${pattern} ]] |
|
|
72 | elif [[ "${PYTHON_ABI}" =~ ^[[:digit:]]+\.[[:digit:]]+-pypy-[[:digit:]]+\.[[:digit:]]+$ ]]; then |
|
|
73 | [[ "${PYTHON_ABI%-pypy-*}" == ${pattern} ]] |
|
|
74 | else |
|
|
75 | die "${FUNCNAME}(): Unrecognized Python ABI '${PYTHON_ABI}'" |
|
|
76 | fi |
|
|
77 | fi |
|
|
78 | else |
|
|
79 | patterns="${2// /$'\n'}" |
|
|
80 | |
|
|
81 | while read pattern; do |
|
|
82 | if _python_check_python_abi_matching "${PYTHON_ABI}" "${pattern}"; then |
|
|
83 | return 0 |
|
|
84 | fi |
|
|
85 | done <<< "${patterns}" |
|
|
86 | |
|
|
87 | return 1 |
|
|
88 | fi |
|
|
89 | } |
|
|
90 | |
|
|
91 | _python_package_supporting_installation_for_multiple_python_abis() { |
|
|
92 | if has "${EAPI:-0}" 0 1 2 3 4; then |
|
|
93 | if [[ -n "${SUPPORT_PYTHON_ABIS}" ]]; then |
|
|
94 | return 0 |
|
|
95 | else |
|
|
96 | return 1 |
|
|
97 | fi |
|
|
98 | else |
|
|
99 | die "${FUNCNAME}(): Support for EAPI=\"${EAPI}\" not implemented" |
|
|
100 | fi |
|
|
101 | } |
| 21 | |
102 | |
| 22 | # @ECLASS-VARIABLE: PYTHON_DEPEND |
103 | # @ECLASS-VARIABLE: PYTHON_DEPEND |
| 23 | # @DESCRIPTION: |
104 | # @DESCRIPTION: |
| 24 | # Specification of dependency on dev-lang/python. |
105 | # Specification of dependency on dev-lang/python. |
| 25 | # Syntax: |
106 | # Syntax: |
| … | |
… | |
| 27 | # version_components_group: <major_version[:[minimal_version][:maximal_version]]> |
108 | # version_components_group: <major_version[:[minimal_version][:maximal_version]]> |
| 28 | # major_version: <2|3|*> |
109 | # major_version: <2|3|*> |
| 29 | # minimal_version: <minimal_major_version.minimal_minor_version> |
110 | # minimal_version: <minimal_major_version.minimal_minor_version> |
| 30 | # maximal_version: <maximal_major_version.maximal_minor_version> |
111 | # maximal_version: <maximal_major_version.maximal_minor_version> |
| 31 | |
112 | |
| 32 | _parse_PYTHON_DEPEND() { |
113 | _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 |
114 | 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 | |
115 | |
| 35 | version_components_group_regex="(2|3|\*)(:([[:digit:]]+\.[[:digit:]]+)?(:([[:digit:]]+\.[[:digit:]]+)?)?)?" |
116 | version_components_group_regex="(2|3|\*)(:([[:digit:]]+\.[[:digit:]]+)?(:([[:digit:]]+\.[[:digit:]]+)?)?)?" |
| 36 | version_components_groups="${PYTHON_DEPEND}" |
117 | version_components_groups="${PYTHON_DEPEND}" |
| 37 | |
118 | |
| … | |
… | |
| 60 | fi |
141 | fi |
| 61 | fi |
142 | fi |
| 62 | |
143 | |
| 63 | if [[ "${major_version}" == "2" ]]; then |
144 | if [[ "${major_version}" == "2" ]]; then |
| 64 | python2="1" |
145 | python2="1" |
| 65 | python_versions=("${_CPYTHON2_SUPPORTED_ABIS[@]}") |
146 | python_versions=("${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]}") |
| 66 | python2_minimal_version="${minimal_version}" |
147 | python2_minimal_version="${minimal_version}" |
| 67 | python2_maximal_version="${maximal_version}" |
148 | python2_maximal_version="${maximal_version}" |
| 68 | elif [[ "${major_version}" == "3" ]]; then |
149 | elif [[ "${major_version}" == "3" ]]; then |
| 69 | python3="1" |
150 | python3="1" |
| 70 | python_versions=("${_CPYTHON3_SUPPORTED_ABIS[@]}") |
151 | python_versions=("${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]}") |
| 71 | python3_minimal_version="${minimal_version}" |
152 | python3_minimal_version="${minimal_version}" |
| 72 | python3_maximal_version="${maximal_version}" |
153 | python3_maximal_version="${maximal_version}" |
| 73 | else |
154 | else |
| 74 | python_all="1" |
155 | python_all="1" |
| 75 | python_versions=("${_CPYTHON2_SUPPORTED_ABIS[@]}" "${_CPYTHON3_SUPPORTED_ABIS[@]}") |
156 | python_versions=("${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]}" "${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]}") |
| 76 | python_minimal_version="${minimal_version}" |
157 | python_minimal_version="${minimal_version}" |
| 77 | python_maximal_version="${maximal_version}" |
158 | python_maximal_version="${maximal_version}" |
| 78 | fi |
159 | fi |
| 79 | |
160 | |
| 80 | if [[ -n "${minimal_version}" ]] && ! has "${minimal_version}" "${python_versions[@]}"; then |
161 | if [[ -n "${minimal_version}" ]] && ! has "${minimal_version}" "${python_versions[@]}"; then |
| … | |
… | |
| 108 | |
189 | |
| 109 | if [[ "${python_all}" == "1" ]]; then |
190 | if [[ "${python_all}" == "1" ]]; then |
| 110 | if [[ -z "${python_minimal_version}" && -z "${python_maximal_version}" ]]; then |
191 | if [[ -z "${python_minimal_version}" && -z "${python_maximal_version}" ]]; then |
| 111 | _PYTHON_ATOMS+=("dev-lang/python") |
192 | _PYTHON_ATOMS+=("dev-lang/python") |
| 112 | else |
193 | else |
| 113 | python_versions=("${_CPYTHON2_SUPPORTED_ABIS[@]}" "${_CPYTHON3_SUPPORTED_ABIS[@]}") |
194 | python_versions=("${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]}" "${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]}") |
| 114 | python_minimal_version="${python_minimal_version:-${python_versions[0]}}" |
195 | python_minimal_version="${python_minimal_version:-${python_versions[0]}}" |
| 115 | python_maximal_version="${python_maximal_version:-${python_versions[${#python_versions[@]}-1]}}" |
196 | python_maximal_version="${python_maximal_version:-${python_versions[${#python_versions[@]}-1]}}" |
| 116 | _append_accepted_versions_range |
197 | _append_accepted_versions_range |
| 117 | fi |
198 | fi |
| 118 | else |
199 | else |
| 119 | if [[ "${python3}" == "1" ]]; then |
200 | if [[ "${python3}" == "1" ]]; then |
| 120 | if [[ -z "${python3_minimal_version}" && -z "${python3_maximal_version}" ]]; then |
201 | if [[ -z "${python3_minimal_version}" && -z "${python3_maximal_version}" ]]; then |
| 121 | _PYTHON_ATOMS+=("=dev-lang/python-3*") |
202 | _PYTHON_ATOMS+=("=dev-lang/python-3*") |
| 122 | else |
203 | else |
| 123 | python_versions=("${_CPYTHON3_SUPPORTED_ABIS[@]}") |
204 | python_versions=("${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]}") |
| 124 | python_minimal_version="${python3_minimal_version:-${python_versions[0]}}" |
205 | python_minimal_version="${python3_minimal_version:-${python_versions[0]}}" |
| 125 | python_maximal_version="${python3_maximal_version:-${python_versions[${#python_versions[@]}-1]}}" |
206 | python_maximal_version="${python3_maximal_version:-${python_versions[${#python_versions[@]}-1]}}" |
| 126 | _append_accepted_versions_range |
207 | _append_accepted_versions_range |
| 127 | fi |
208 | fi |
| 128 | fi |
209 | fi |
| 129 | if [[ "${python2}" == "1" ]]; then |
210 | if [[ "${python2}" == "1" ]]; then |
| 130 | if [[ -z "${python2_minimal_version}" && -z "${python2_maximal_version}" ]]; then |
211 | if [[ -z "${python2_minimal_version}" && -z "${python2_maximal_version}" ]]; then |
| 131 | _PYTHON_ATOMS+=("=dev-lang/python-2*") |
212 | _PYTHON_ATOMS+=("=dev-lang/python-2*") |
| 132 | else |
213 | else |
| 133 | python_versions=("${_CPYTHON2_SUPPORTED_ABIS[@]}") |
214 | python_versions=("${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]}") |
| 134 | python_minimal_version="${python2_minimal_version:-${python_versions[0]}}" |
215 | python_minimal_version="${python2_minimal_version:-${python_versions[0]}}" |
| 135 | python_maximal_version="${python2_maximal_version:-${python_versions[${#python_versions[@]}-1]}}" |
216 | python_maximal_version="${python2_maximal_version:-${python_versions[${#python_versions[@]}-1]}}" |
| 136 | _append_accepted_versions_range |
217 | _append_accepted_versions_range |
| 137 | fi |
218 | fi |
| 138 | fi |
219 | fi |
| … | |
… | |
| 153 | } |
234 | } |
| 154 | |
235 | |
| 155 | DEPEND=">=app-admin/eselect-python-20091230" |
236 | DEPEND=">=app-admin/eselect-python-20091230" |
| 156 | RDEPEND="${DEPEND}" |
237 | RDEPEND="${DEPEND}" |
| 157 | |
238 | |
| 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 |
239 | if [[ -n "${PYTHON_DEPEND}" ]]; then |
| 161 | _parse_PYTHON_DEPEND |
240 | _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 | if [[ "${NOCOLOR:-false}" =~ ^(false|no)$ ]]; then |
|
|
| 169 | _RED=$'\e[1;31m' |
|
|
| 170 | _NORMAL=$'\e[0m' |
|
|
| 171 | else |
|
|
| 172 | _RED= |
|
|
| 173 | _NORMAL= |
|
|
| 174 | fi |
|
|
| 175 | |
|
|
| 176 | echo |
|
|
| 177 | echo " ${_RED}*${_NORMAL} ${_RED}Deprecation Warning: NEED_PYTHON variable is deprecated and will be banned on 2010-10-01.${_NORMAL}" |
|
|
| 178 | echo " ${_RED}*${_NORMAL} ${_RED}Use PYTHON_DEPEND variable instead of NEED_PYTHON variable.${_NORMAL}" |
|
|
| 179 | echo " ${_RED}*${_NORMAL} ${_RED}The ebuild needs to be fixed. Please report a bug, if it has not been already reported.${_NORMAL}" |
|
|
| 180 | echo |
|
|
| 181 | |
|
|
| 182 | unset _BOLD _NORMAL |
|
|
| 183 | |
|
|
| 184 | _PYTHON_ATOMS=(">=dev-lang/python-${NEED_PYTHON}") |
|
|
| 185 | DEPEND+="${DEPEND:+ }${_PYTHON_ATOMS[@]}" |
|
|
| 186 | RDEPEND+="${RDEPEND:+ }${_PYTHON_ATOMS[@]}" |
|
|
| 187 | else |
241 | else |
| 188 | _PYTHON_ATOMS=("dev-lang/python") |
242 | _PYTHON_ATOMS=("dev-lang/python") |
|
|
243 | fi |
|
|
244 | unset -f _python_parse_PYTHON_DEPEND |
|
|
245 | |
|
|
246 | if [[ -n "${NEED_PYTHON}" ]]; then |
|
|
247 | eerror "Use PYTHON_DEPEND variable instead of NEED_PYTHON variable." |
|
|
248 | die "NEED_PYTHON variable is banned" |
| 189 | fi |
249 | fi |
| 190 | |
250 | |
| 191 | # @ECLASS-VARIABLE: PYTHON_USE_WITH |
251 | # @ECLASS-VARIABLE: PYTHON_USE_WITH |
| 192 | # @DESCRIPTION: |
252 | # @DESCRIPTION: |
| 193 | # Set this to a space separated list of USE flags the Python slot in use must be built with. |
253 | # Set this to a space separated list of USE flags the Python slot in use must be built with. |
| … | |
… | |
| 237 | _python_implementation() { |
297 | _python_implementation() { |
| 238 | if [[ "${CATEGORY}/${PN}" == "dev-lang/python" ]]; then |
298 | if [[ "${CATEGORY}/${PN}" == "dev-lang/python" ]]; then |
| 239 | return 0 |
299 | return 0 |
| 240 | elif [[ "${CATEGORY}/${PN}" == "dev-java/jython" ]]; then |
300 | elif [[ "${CATEGORY}/${PN}" == "dev-java/jython" ]]; then |
| 241 | return 0 |
301 | return 0 |
|
|
302 | elif [[ "${CATEGORY}/${PN}" == "dev-python/pypy" ]]; then |
|
|
303 | return 0 |
| 242 | else |
304 | else |
| 243 | return 1 |
305 | return 1 |
| 244 | fi |
|
|
| 245 | } |
|
|
| 246 | |
|
|
| 247 | _python_package_supporting_installation_for_multiple_python_abis() { |
|
|
| 248 | if [[ "${EBUILD_PHASE}" == "depend" ]]; then |
|
|
| 249 | die "${FUNCNAME}() cannot be used in global scope" |
|
|
| 250 | fi |
|
|
| 251 | |
|
|
| 252 | if has "${EAPI:-0}" 0 1 2 3 4; then |
|
|
| 253 | if [[ -n "${SUPPORT_PYTHON_ABIS}" ]]; then |
|
|
| 254 | return 0 |
|
|
| 255 | else |
|
|
| 256 | return 1 |
|
|
| 257 | fi |
|
|
| 258 | else |
|
|
| 259 | die "${FUNCNAME}(): Support for EAPI=\"${EAPI}\" not implemented" |
|
|
| 260 | fi |
306 | fi |
| 261 | } |
307 | } |
| 262 | |
308 | |
| 263 | _python_abi-specific_local_scope() { |
309 | _python_abi-specific_local_scope() { |
| 264 | [[ " ${FUNCNAME[@]:2} " =~ " "(_python_final_sanity_checks|python_execute_function|python_mod_optimize|python_mod_cleanup)" " ]] |
310 | [[ " ${FUNCNAME[@]:2} " =~ " "(_python_final_sanity_checks|python_execute_function|python_mod_optimize|python_mod_cleanup)" " ]] |
| … | |
… | |
| 315 | done |
361 | done |
| 316 | fi |
362 | fi |
| 317 | PYTHON_SANITY_CHECKS_EXECUTED="1" |
363 | PYTHON_SANITY_CHECKS_EXECUTED="1" |
| 318 | } |
364 | } |
| 319 | |
365 | |
|
|
366 | # @ECLASS-VARIABLE: PYTHON_COLORS |
|
|
367 | # @DESCRIPTION: |
|
|
368 | # User-configurable colored output. |
|
|
369 | PYTHON_COLORS="${PYTHON_COLORS:-0}" |
|
|
370 | |
| 320 | _python_set_color_variables() { |
371 | _python_set_color_variables() { |
| 321 | if [[ "${NOCOLOR:-false}" =~ ^(false|no)$ ]]; then |
372 | if [[ "${PYTHON_COLORS}" != "0" && "${NOCOLOR:-false}" =~ ^(false|no)$ ]]; then |
| 322 | _BOLD=$'\e[1m' |
373 | _BOLD=$'\e[1m' |
| 323 | _RED=$'\e[1;31m' |
374 | _RED=$'\e[1;31m' |
| 324 | _GREEN=$'\e[1;32m' |
375 | _GREEN=$'\e[1;32m' |
| 325 | _BLUE=$'\e[1;34m' |
376 | _BLUE=$'\e[1;34m' |
| 326 | _CYAN=$'\e[1;36m' |
377 | _CYAN=$'\e[1;36m' |
| … | |
… | |
| 349 | # @DESCRIPTION: |
400 | # @DESCRIPTION: |
| 350 | # Perform sanity checks and initialize environment. |
401 | # Perform sanity checks and initialize environment. |
| 351 | # |
402 | # |
| 352 | # This function is exported in EAPI 2 and 3 when PYTHON_USE_WITH or PYTHON_USE_WITH_OR variable |
403 | # This function is exported in EAPI 2 and 3 when PYTHON_USE_WITH or PYTHON_USE_WITH_OR variable |
| 353 | # is set and always in EAPI >=4. Calling of this function is mandatory in EAPI >=4. |
404 | # is set and always in EAPI >=4. Calling of this function is mandatory in EAPI >=4. |
| 354 | # |
|
|
| 355 | # This function can be used only in pkg_setup() phase. |
|
|
| 356 | python_pkg_setup() { |
405 | python_pkg_setup() { |
| 357 | # Check if phase is pkg_setup(). |
406 | if [[ "${EBUILD_PHASE}" != "setup" ]]; then |
| 358 | [[ "${EBUILD_PHASE}" != "setup" ]] && die "${FUNCNAME}() can be used only in pkg_setup() phase" |
407 | die "${FUNCNAME}() can be used only in pkg_setup() phase" |
|
|
408 | fi |
| 359 | |
409 | |
| 360 | if [[ "$#" -ne 0 ]]; then |
410 | if [[ "$#" -ne 0 ]]; then |
| 361 | die "${FUNCNAME}() does not accept arguments" |
411 | die "${FUNCNAME}() does not accept arguments" |
| 362 | fi |
412 | fi |
|
|
413 | |
|
|
414 | export JYTHON_SYSTEM_CACHEDIR="1" |
|
|
415 | addwrite "${EPREFIX}/var/cache/jython" |
| 363 | |
416 | |
| 364 | if _python_package_supporting_installation_for_multiple_python_abis; then |
417 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| 365 | _python_calculate_PYTHON_ABIS |
418 | _python_calculate_PYTHON_ABIS |
| 366 | export EPYTHON="$(PYTHON -f)" |
419 | export EPYTHON="$(PYTHON -f)" |
| 367 | else |
420 | else |
| … | |
… | |
| 410 | fi |
463 | fi |
| 411 | |
464 | |
| 412 | PYTHON_PKG_SETUP_EXECUTED="1" |
465 | PYTHON_PKG_SETUP_EXECUTED="1" |
| 413 | } |
466 | } |
| 414 | |
467 | |
| 415 | if ! has "${EAPI:-0}" 0 1 2 3 || has "${EAPI:-0}" 2 3 && [[ -n "${PYTHON_USE_WITH}" || -n "${PYTHON_USE_WITH_OR}" ]]; then |
468 | if ! has "${EAPI:-0}" 0 1 2 3 || { has "${EAPI:-0}" 2 3 && [[ -n "${PYTHON_USE_WITH}" || -n "${PYTHON_USE_WITH_OR}" ]]; }; then |
| 416 | EXPORT_FUNCTIONS pkg_setup |
469 | EXPORT_FUNCTIONS pkg_setup |
| 417 | fi |
470 | fi |
| 418 | |
471 | |
|
|
472 | _PYTHON_SHEBANG_BASE_PART_REGEX='^#![[:space:]]*([^[:space:]]*/usr/bin/env[[:space:]]+)?([^[:space:]]*/)?(jython|pypy-c|python)' |
|
|
473 | |
| 419 | # @FUNCTION: python_convert_shebangs |
474 | # @FUNCTION: python_convert_shebangs |
| 420 | # @USAGE: [-q|--quiet] [-r|--recursive] [-x|--only-executables] [--] <Python_version> <file|directory> [files|directories] |
475 | # @USAGE: [-q|--quiet] [-r|--recursive] [-x|--only-executables] [--] <Python_ABI|Python_version> <file|directory> [files|directories] |
| 421 | # @DESCRIPTION: |
476 | # @DESCRIPTION: |
| 422 | # Convert shebangs in specified files. Directories can be specified only with --recursive option. |
477 | # Convert shebangs in specified files. Directories can be specified only with --recursive option. |
| 423 | python_convert_shebangs() { |
478 | python_convert_shebangs() { |
| 424 | _python_check_python_pkg_setup_execution |
479 | _python_check_python_pkg_setup_execution |
| 425 | |
480 | |
| 426 | local argument file files=() only_executables="0" python_version quiet="0" recursive="0" |
481 | local argument file files=() only_executables="0" python_interpreter quiet="0" recursive="0" |
| 427 | |
482 | |
| 428 | while (($#)); do |
483 | while (($#)); do |
| 429 | case "$1" in |
484 | case "$1" in |
| 430 | -r|--recursive) |
485 | -r|--recursive) |
| 431 | recursive="1" |
486 | recursive="1" |
| … | |
… | |
| 454 | die "${FUNCNAME}(): Missing Python version and files or directories" |
509 | die "${FUNCNAME}(): Missing Python version and files or directories" |
| 455 | elif [[ "$#" -eq 1 ]]; then |
510 | elif [[ "$#" -eq 1 ]]; then |
| 456 | die "${FUNCNAME}(): Missing files or directories" |
511 | die "${FUNCNAME}(): Missing files or directories" |
| 457 | fi |
512 | fi |
| 458 | |
513 | |
| 459 | python_version="$1" |
514 | if [[ -n "$(_python_get_implementation --ignore-invalid "$1")" ]]; then |
|
|
515 | python_interpreter="$(PYTHON "$1")" |
|
|
516 | else |
|
|
517 | python_interpreter="python$1" |
|
|
518 | fi |
| 460 | shift |
519 | shift |
| 461 | |
520 | |
| 462 | for argument in "$@"; do |
521 | for argument in "$@"; do |
| 463 | if [[ ! -e "${argument}" ]]; then |
522 | if [[ ! -e "${argument}" ]]; then |
| 464 | die "${FUNCNAME}(): '${argument}' does not exist" |
523 | die "${FUNCNAME}(): '${argument}' does not exist" |
| … | |
… | |
| 479 | |
538 | |
| 480 | for file in "${files[@]}"; do |
539 | for file in "${files[@]}"; do |
| 481 | file="${file#./}" |
540 | file="${file#./}" |
| 482 | [[ "${only_executables}" == "1" && ! -x "${file}" ]] && continue |
541 | [[ "${only_executables}" == "1" && ! -x "${file}" ]] && continue |
| 483 | |
542 | |
| 484 | if [[ "$(head -n1 "${file}")" =~ ^'#!'.*python ]]; then |
543 | if [[ "$(head -n1 "${file}")" =~ ${_PYTHON_SHEBANG_BASE_PART_REGEX} ]]; then |
| 485 | [[ "$(sed -ne "2p" "${file}")" =~ ^"# Gentoo '".*"' wrapper script generated by python_generate_wrapper_scripts()"$ ]] && continue |
544 | [[ "$(sed -ne "2p" "${file}")" =~ ^"# Gentoo '".*"' wrapper script generated by python_generate_wrapper_scripts()"$ ]] && continue |
| 486 | |
545 | |
| 487 | if [[ "${quiet}" == "0" ]]; then |
546 | if [[ "${quiet}" == "0" ]]; then |
| 488 | einfo "Converting shebang in '${file}'" |
547 | einfo "Converting shebang in '${file}'" |
| 489 | fi |
548 | fi |
| 490 | |
549 | |
| 491 | sed -e "1s/python\([[:digit:]]\+\(\.[[:digit:]]\+\)\?\)\?/python${python_version}/" -i "${file}" || die "Conversion of shebang in '${file}' failed" |
550 | 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" |
| 492 | |
|
|
| 493 | # Delete potential whitespace after "#!". |
|
|
| 494 | sed -e '1s/\(^#!\)[[:space:]]*/\1/' -i "${file}" || die "sed '${file}' failed" |
|
|
| 495 | fi |
551 | fi |
| 496 | done |
552 | done |
| 497 | } |
553 | } |
| 498 | |
554 | |
| 499 | # @FUNCTION: python_clean_installation_image |
555 | # @FUNCTION: python_clean_installation_image |
| 500 | # @USAGE: [-q|--quiet] |
556 | # @USAGE: [-q|--quiet] |
| 501 | # @DESCRIPTION: |
557 | # @DESCRIPTION: |
| 502 | # Delete needless files in installation image. |
558 | # Delete needless files in installation image. |
|
|
559 | # |
|
|
560 | # This function can be used only in src_install() phase. |
| 503 | python_clean_installation_image() { |
561 | python_clean_installation_image() { |
|
|
562 | if [[ "${EBUILD_PHASE}" != "install" ]]; then |
|
|
563 | die "${FUNCNAME}() can be used only in src_install() phase" |
|
|
564 | fi |
|
|
565 | |
| 504 | _python_check_python_pkg_setup_execution |
566 | _python_check_python_pkg_setup_execution |
| 505 | _python_initialize_prefix_variables |
567 | _python_initialize_prefix_variables |
| 506 | |
568 | |
| 507 | local file files=() quiet="0" |
569 | local file files=() quiet="0" |
| 508 | |
|
|
| 509 | # Check if phase is src_install(). |
|
|
| 510 | [[ "${EBUILD_PHASE}" != "install" ]] && die "${FUNCNAME}() can be used only in src_install() phase" |
|
|
| 511 | |
570 | |
| 512 | while (($#)); do |
571 | while (($#)); do |
| 513 | case "$1" in |
572 | case "$1" in |
| 514 | -q|--quiet) |
573 | -q|--quiet) |
| 515 | quiet="1" |
574 | quiet="1" |
| … | |
… | |
| 566 | # @ECLASS-VARIABLE: SUPPORT_PYTHON_ABIS |
625 | # @ECLASS-VARIABLE: SUPPORT_PYTHON_ABIS |
| 567 | # @DESCRIPTION: |
626 | # @DESCRIPTION: |
| 568 | # Set this in EAPI <= 4 to indicate that current package supports installation for |
627 | # Set this in EAPI <= 4 to indicate that current package supports installation for |
| 569 | # multiple Python ABIs. |
628 | # multiple Python ABIs. |
| 570 | |
629 | |
|
|
630 | # @ECLASS-VARIABLE: PYTHON_TESTS_RESTRICTED_ABIS |
|
|
631 | # @DESCRIPTION: |
|
|
632 | # Space-separated list of Python ABI patterns. Testing in Python ABIs matching any Python ABI |
|
|
633 | # patterns specified in this list is skipped. |
|
|
634 | |
| 571 | # @ECLASS-VARIABLE: PYTHON_EXPORT_PHASE_FUNCTIONS |
635 | # @ECLASS-VARIABLE: PYTHON_EXPORT_PHASE_FUNCTIONS |
| 572 | # @DESCRIPTION: |
636 | # @DESCRIPTION: |
| 573 | # Set this to export phase functions for the following ebuild phases: |
637 | # Set this to export phase functions for the following ebuild phases: |
| 574 | # src_prepare, src_configure, src_compile, src_test, src_install. |
638 | # src_prepare(), src_configure(), src_compile(), src_test(), src_install(). |
| 575 | if ! has "${EAPI:-0}" 0 1; then |
639 | if ! has "${EAPI:-0}" 0 1; then |
| 576 | python_src_prepare() { |
640 | python_src_prepare() { |
| 577 | _python_check_python_pkg_setup_execution |
641 | if [[ "${EBUILD_PHASE}" != "prepare" ]]; then |
|
|
642 | die "${FUNCNAME}() can be used only in src_prepare() phase" |
|
|
643 | fi |
| 578 | |
644 | |
| 579 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
645 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
| 580 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
646 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
| 581 | fi |
647 | fi |
| 582 | |
648 | |
|
|
649 | _python_check_python_pkg_setup_execution |
|
|
650 | |
| 583 | if [[ "$#" -ne 0 ]]; then |
651 | if [[ "$#" -ne 0 ]]; then |
| 584 | die "${FUNCNAME}() does not accept arguments" |
652 | die "${FUNCNAME}() does not accept arguments" |
| 585 | fi |
653 | fi |
| 586 | |
654 | |
| 587 | python_copy_sources |
655 | python_copy_sources |
| 588 | } |
656 | } |
| 589 | |
657 | |
| 590 | for python_default_function in src_configure src_compile src_test src_install; do |
658 | for python_default_function in src_configure src_compile src_test; do |
| 591 | eval "python_${python_default_function}() { |
659 | eval "python_${python_default_function}() { |
| 592 | _python_check_python_pkg_setup_execution |
660 | if [[ \"\${EBUILD_PHASE}\" != \"${python_default_function#src_}\" ]]; then |
|
|
661 | die \"\${FUNCNAME}() can be used only in ${python_default_function}() phase\" |
|
|
662 | fi |
| 593 | |
663 | |
| 594 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
664 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
| 595 | die \"\${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs\" |
665 | die \"\${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs\" |
| 596 | fi |
666 | fi |
|
|
667 | |
|
|
668 | _python_check_python_pkg_setup_execution |
| 597 | |
669 | |
| 598 | python_execute_function -d -s -- \"\$@\" |
670 | python_execute_function -d -s -- \"\$@\" |
| 599 | }" |
671 | }" |
| 600 | done |
672 | done |
| 601 | unset python_default_function |
673 | unset python_default_function |
| 602 | |
674 | |
|
|
675 | python_src_install() { |
|
|
676 | if [[ "${EBUILD_PHASE}" != "install" ]]; then |
|
|
677 | die "${FUNCNAME}() can be used only in src_install() phase" |
|
|
678 | fi |
|
|
679 | |
|
|
680 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
681 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
|
|
682 | fi |
|
|
683 | |
|
|
684 | _python_check_python_pkg_setup_execution |
|
|
685 | |
|
|
686 | if has "${EAPI:-0}" 0 1 2 3; then |
|
|
687 | python_execute_function -d -s -- "$@" |
|
|
688 | else |
|
|
689 | python_installation() { |
|
|
690 | emake DESTDIR="${T}/images/${PYTHON_ABI}" install "$@" |
|
|
691 | } |
|
|
692 | python_execute_function -s python_installation "$@" |
|
|
693 | unset python_installation |
|
|
694 | |
|
|
695 | python_merge_intermediate_installation_images "${T}/images" |
|
|
696 | fi |
|
|
697 | } |
|
|
698 | |
| 603 | if [[ -n "${PYTHON_EXPORT_PHASE_FUNCTIONS}" ]]; then |
699 | if [[ -n "${PYTHON_EXPORT_PHASE_FUNCTIONS}" ]]; then |
| 604 | EXPORT_FUNCTIONS src_prepare src_configure src_compile src_test src_install |
700 | EXPORT_FUNCTIONS src_prepare src_configure src_compile src_test src_install |
| 605 | fi |
701 | fi |
| 606 | fi |
702 | fi |
| 607 | |
703 | |
|
|
704 | if has "${EAPI:-0}" 0 1 2 3 4; then |
| 608 | unset PYTHON_ABIS |
705 | unset PYTHON_ABIS |
|
|
706 | fi |
| 609 | |
707 | |
| 610 | _python_calculate_PYTHON_ABIS() { |
708 | _python_calculate_PYTHON_ABIS() { |
| 611 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
709 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
| 612 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
710 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
| 613 | fi |
711 | fi |
| 614 | |
712 | |
| 615 | _python_initial_sanity_checks |
713 | _python_initial_sanity_checks |
| 616 | |
714 | |
| 617 | # USE_${ABI_TYPE^^} and RESTRICT_${ABI_TYPE^^}_ABIS variables hopefully will be included in EAPI >= 5. |
|
|
| 618 | if [[ "$(declare -p PYTHON_ABIS 2> /dev/null)" != "declare -x PYTHON_ABIS="* ]] && has "${EAPI:-0}" 0 1 2 3 4; then |
715 | if [[ "$(declare -p PYTHON_ABIS 2> /dev/null)" != "declare -x PYTHON_ABIS="* ]] && has "${EAPI:-0}" 0 1 2 3 4; then |
| 619 | local PYTHON_ABI restricted_ABI support_ABI supported_PYTHON_ABIS= |
716 | local PYTHON_ABI |
| 620 | PYTHON_ABI_SUPPORTED_VALUES="${_CPYTHON2_SUPPORTED_ABIS[@]} ${_CPYTHON3_SUPPORTED_ABIS[@]} ${_JYTHON_SUPPORTED_ABIS[@]}" |
|
|
| 621 | |
717 | |
| 622 | if [[ "$(declare -p USE_PYTHON 2> /dev/null)" == "declare -x USE_PYTHON="* ]]; then |
718 | if [[ "$(declare -p USE_PYTHON 2> /dev/null)" == "declare -x USE_PYTHON="* ]]; then |
| 623 | local cpython_enabled="0" |
719 | local cpython_enabled="0" |
| 624 | |
720 | |
| 625 | if [[ -z "${USE_PYTHON}" ]]; then |
721 | if [[ -z "${USE_PYTHON}" ]]; then |
| 626 | die "USE_PYTHON variable is empty" |
722 | die "USE_PYTHON variable is empty" |
| 627 | fi |
723 | fi |
| 628 | |
724 | |
| 629 | for PYTHON_ABI in ${USE_PYTHON}; do |
725 | for PYTHON_ABI in ${USE_PYTHON}; do |
| 630 | if ! has "${PYTHON_ABI}" ${PYTHON_ABI_SUPPORTED_VALUES}; then |
726 | if ! has "${PYTHON_ABI}" "${_PYTHON_GLOBALLY_SUPPORTED_ABIS[@]}"; then |
| 631 | die "USE_PYTHON variable contains invalid value '${PYTHON_ABI}'" |
727 | die "USE_PYTHON variable contains invalid value '${PYTHON_ABI}'" |
| 632 | fi |
728 | fi |
| 633 | |
729 | |
| 634 | if has "${PYTHON_ABI}" "${_CPYTHON2_SUPPORTED_ABIS[@]}" "${_CPYTHON3_SUPPORTED_ABIS[@]}"; then |
730 | if has "${PYTHON_ABI}" "${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]}" "${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]}"; then |
| 635 | cpython_enabled="1" |
731 | cpython_enabled="1" |
| 636 | fi |
732 | fi |
| 637 | |
733 | |
| 638 | support_ABI="1" |
734 | if ! _python_check_python_abi_matching --patterns-list "${PYTHON_ABI}" "${RESTRICT_PYTHON_ABIS}"; then |
| 639 | for restricted_ABI in ${RESTRICT_PYTHON_ABIS}; do |
735 | export PYTHON_ABIS+="${PYTHON_ABIS:+ }${PYTHON_ABI}" |
| 640 | if [[ "${PYTHON_ABI}" == ${restricted_ABI} ]]; then |
736 | fi |
| 641 | support_ABI="0" |
737 | done |
|
|
738 | |
|
|
739 | if [[ -z "${PYTHON_ABIS//[${IFS}]/}" ]]; then |
|
|
740 | die "USE_PYTHON variable does not enable any Python ABI supported by ${CATEGORY}/${PF}" |
|
|
741 | fi |
|
|
742 | |
|
|
743 | if [[ "${cpython_enabled}" == "0" ]]; then |
|
|
744 | die "USE_PYTHON variable does not enable any CPython ABI" |
|
|
745 | fi |
|
|
746 | else |
|
|
747 | local python_version python2_version python3_version support_python_major_version |
|
|
748 | |
|
|
749 | if ! has_version "dev-lang/python"; then |
|
|
750 | die "${FUNCNAME}(): 'dev-lang/python' is not installed" |
|
|
751 | fi |
|
|
752 | |
|
|
753 | python_version="$("${EPREFIX}/usr/bin/python" -c 'from sys import version_info; print(".".join(str(x) for x in version_info[:2]))')" |
|
|
754 | |
|
|
755 | if has_version "=dev-lang/python-2*"; then |
|
|
756 | if [[ "$(readlink "${EPREFIX}/usr/bin/python2")" != "python2."* ]]; then |
|
|
757 | die "'${EPREFIX}/usr/bin/python2' is not valid symlink" |
|
|
758 | fi |
|
|
759 | |
|
|
760 | python2_version="$("${EPREFIX}/usr/bin/python2" -c 'from sys import version_info; print(".".join(str(x) for x in version_info[:2]))')" |
|
|
761 | |
|
|
762 | support_python_major_version="0" |
|
|
763 | for PYTHON_ABI in "${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]}"; do |
|
|
764 | if ! _python_check_python_abi_matching --patterns-list "${PYTHON_ABI}" "${RESTRICT_PYTHON_ABIS}"; then |
|
|
765 | support_python_major_version="1" |
| 642 | break |
766 | break |
| 643 | fi |
767 | fi |
| 644 | done |
768 | done |
| 645 | [[ "${support_ABI}" == "1" ]] && export PYTHON_ABIS+="${PYTHON_ABIS:+ }${PYTHON_ABI}" |
|
|
| 646 | done |
|
|
| 647 | |
|
|
| 648 | if [[ -z "${PYTHON_ABIS//[${IFS}]/}" ]]; then |
|
|
| 649 | die "USE_PYTHON variable does not enable any Python ABI supported by ${CATEGORY}/${PF}" |
|
|
| 650 | fi |
|
|
| 651 | |
|
|
| 652 | if [[ "${cpython_enabled}" == "0" ]]; then |
|
|
| 653 | die "USE_PYTHON variable does not enable any CPython ABI" |
|
|
| 654 | fi |
|
|
| 655 | else |
|
|
| 656 | local python_version python2_version= python3_version= support_python_major_version |
|
|
| 657 | |
|
|
| 658 | if ! has_version "dev-lang/python"; then |
|
|
| 659 | die "${FUNCNAME}(): 'dev-lang/python' is not installed" |
|
|
| 660 | fi |
|
|
| 661 | |
|
|
| 662 | python_version="$("${EPREFIX}/usr/bin/python" -c 'from sys import version_info; print(".".join(str(x) for x in version_info[:2]))')" |
|
|
| 663 | |
|
|
| 664 | if has_version "=dev-lang/python-2*"; then |
|
|
| 665 | if [[ "$(readlink "${EPREFIX}/usr/bin/python2")" != "python2."* ]]; then |
|
|
| 666 | die "'${EPREFIX}/usr/bin/python2' is not valid symlink" |
|
|
| 667 | fi |
|
|
| 668 | |
|
|
| 669 | python2_version="$("${EPREFIX}/usr/bin/python2" -c 'from sys import version_info; print(".".join(str(x) for x in version_info[:2]))')" |
|
|
| 670 | |
|
|
| 671 | for PYTHON_ABI in "${_CPYTHON2_SUPPORTED_ABIS[@]}"; do |
|
|
| 672 | support_python_major_version="1" |
|
|
| 673 | for restricted_ABI in ${RESTRICT_PYTHON_ABIS}; do |
|
|
| 674 | if [[ "${PYTHON_ABI}" == ${restricted_ABI} ]]; then |
|
|
| 675 | support_python_major_version="0" |
|
|
| 676 | fi |
|
|
| 677 | done |
|
|
| 678 | [[ "${support_python_major_version}" == "1" ]] && break |
|
|
| 679 | done |
|
|
| 680 | if [[ "${support_python_major_version}" == "1" ]]; then |
769 | if [[ "${support_python_major_version}" == "1" ]]; then |
| 681 | for restricted_ABI in ${RESTRICT_PYTHON_ABIS}; do |
770 | if _python_check_python_abi_matching --patterns-list "${python2_version}" "${RESTRICT_PYTHON_ABIS}"; then |
| 682 | if [[ "${python2_version}" == ${restricted_ABI} ]]; then |
|
|
| 683 | die "Active version of Python 2 is not supported by ${CATEGORY}/${PF}" |
771 | die "Active version of CPython 2 is not supported by ${CATEGORY}/${PF}" |
| 684 | fi |
772 | fi |
| 685 | done |
|
|
| 686 | else |
773 | else |
| 687 | python2_version="" |
774 | python2_version="" |
| 688 | fi |
775 | fi |
| 689 | fi |
776 | fi |
| 690 | |
777 | |
| … | |
… | |
| 693 | die "'${EPREFIX}/usr/bin/python3' is not valid symlink" |
780 | die "'${EPREFIX}/usr/bin/python3' is not valid symlink" |
| 694 | fi |
781 | fi |
| 695 | |
782 | |
| 696 | python3_version="$("${EPREFIX}/usr/bin/python3" -c 'from sys import version_info; print(".".join(str(x) for x in version_info[:2]))')" |
783 | python3_version="$("${EPREFIX}/usr/bin/python3" -c 'from sys import version_info; print(".".join(str(x) for x in version_info[:2]))')" |
| 697 | |
784 | |
|
|
785 | support_python_major_version="0" |
| 698 | for PYTHON_ABI in "${_CPYTHON3_SUPPORTED_ABIS[@]}"; do |
786 | for PYTHON_ABI in "${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]}"; do |
|
|
787 | if ! _python_check_python_abi_matching --patterns-list "${PYTHON_ABI}" "${RESTRICT_PYTHON_ABIS}"; then |
| 699 | support_python_major_version="1" |
788 | support_python_major_version="1" |
| 700 | for restricted_ABI in ${RESTRICT_PYTHON_ABIS}; do |
789 | break |
| 701 | if [[ "${PYTHON_ABI}" == ${restricted_ABI} ]]; then |
|
|
| 702 | support_python_major_version="0" |
|
|
| 703 | fi |
790 | fi |
| 704 | done |
|
|
| 705 | [[ "${support_python_major_version}" == "1" ]] && break |
|
|
| 706 | done |
791 | done |
| 707 | if [[ "${support_python_major_version}" == "1" ]]; then |
792 | if [[ "${support_python_major_version}" == "1" ]]; then |
| 708 | for restricted_ABI in ${RESTRICT_PYTHON_ABIS}; do |
793 | if _python_check_python_abi_matching --patterns-list "${python3_version}" "${RESTRICT_PYTHON_ABIS}"; then |
| 709 | if [[ "${python3_version}" == ${restricted_ABI} ]]; then |
|
|
| 710 | die "Active version of Python 3 is not supported by ${CATEGORY}/${PF}" |
794 | die "Active version of CPython 3 is not supported by ${CATEGORY}/${PF}" |
| 711 | fi |
795 | fi |
| 712 | done |
|
|
| 713 | else |
796 | else |
| 714 | python3_version="" |
797 | python3_version="" |
| 715 | fi |
798 | fi |
| 716 | fi |
799 | fi |
| 717 | |
800 | |
| … | |
… | |
| 742 | eval "_PYTHON_SAVED_${variable}=\"\${!variable}\"" |
825 | eval "_PYTHON_SAVED_${variable}=\"\${!variable}\"" |
| 743 | for prefix in PYTHON_USER_ PYTHON_; do |
826 | for prefix in PYTHON_USER_ PYTHON_; do |
| 744 | if [[ "$(declare -p ${prefix}${variable} 2> /dev/null)" == "declare -a ${prefix}${variable}="* ]]; then |
827 | if [[ "$(declare -p ${prefix}${variable} 2> /dev/null)" == "declare -a ${prefix}${variable}="* ]]; then |
| 745 | eval "array=(\"\${${prefix}${variable}[@]}\")" |
828 | eval "array=(\"\${${prefix}${variable}[@]}\")" |
| 746 | for element in "${array[@]}"; do |
829 | for element in "${array[@]}"; do |
| 747 | if [[ "${element}" =~ ^([[:alnum:]]|\.|-|\*|\[|\])+\ (\+|-)\ .+ ]]; then |
830 | if [[ "${element}" =~ ^${_PYTHON_ABI_PATTERN_REGEX}\ (\+|-)\ .+ ]]; then |
| 748 | pattern="${element%% *}" |
831 | pattern="${element%% *}" |
| 749 | element="${element#* }" |
832 | element="${element#* }" |
| 750 | operator="${element%% *}" |
833 | operator="${element%% *}" |
| 751 | flags="${element#* }" |
834 | flags="${element#* }" |
| 752 | if [[ "${PYTHON_ABI}" == ${pattern} ]]; then |
835 | if _python_check_python_abi_matching "${PYTHON_ABI}" "${pattern}"; then |
| 753 | if [[ "${operator}" == "+" ]]; then |
836 | if [[ "${operator}" == "+" ]]; then |
| 754 | eval "export ${variable}+=\"\${variable:+ }${flags}\"" |
837 | eval "export ${variable}+=\"\${variable:+ }${flags}\"" |
| 755 | elif [[ "${operator}" == "-" ]]; then |
838 | elif [[ "${operator}" == "-" ]]; then |
| 756 | flags="${flags// /$'\n'}" |
839 | flags="${flags// /$'\n'}" |
| 757 | old_value="${!variable// /$'\n'}" |
840 | old_value="${!variable// /$'\n'}" |
| … | |
… | |
| 791 | # @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] |
874 | # @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] |
| 792 | # @DESCRIPTION: |
875 | # @DESCRIPTION: |
| 793 | # Execute specified function for each value of PYTHON_ABIS, optionally passing additional |
876 | # Execute specified function for each value of PYTHON_ABIS, optionally passing additional |
| 794 | # arguments. The specified function can use PYTHON_ABI and BUILDDIR variables. |
877 | # arguments. The specified function can use PYTHON_ABI and BUILDDIR variables. |
| 795 | python_execute_function() { |
878 | python_execute_function() { |
| 796 | _python_check_python_pkg_setup_execution |
|
|
| 797 | |
|
|
| 798 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
879 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
| 799 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
880 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
| 800 | fi |
881 | fi |
| 801 | |
882 | |
|
|
883 | _python_check_python_pkg_setup_execution |
| 802 | _python_set_color_variables |
884 | _python_set_color_variables |
| 803 | |
885 | |
| 804 | 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= |
886 | 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 |
| 805 | |
887 | |
| 806 | while (($#)); do |
888 | while (($#)); do |
| 807 | case "$1" in |
889 | case "$1" in |
| 808 | --action-message) |
890 | --action-message) |
| 809 | action_message_template="$2" |
891 | action_message_template="$2" |
| … | |
… | |
| 921 | iterated_PYTHON_ABIS="$(PYTHON -f --ABI)" |
1003 | iterated_PYTHON_ABIS="$(PYTHON -f --ABI)" |
| 922 | else |
1004 | else |
| 923 | iterated_PYTHON_ABIS="${PYTHON_ABIS}" |
1005 | iterated_PYTHON_ABIS="${PYTHON_ABIS}" |
| 924 | fi |
1006 | fi |
| 925 | for PYTHON_ABI in ${iterated_PYTHON_ABIS}; do |
1007 | for PYTHON_ABI in ${iterated_PYTHON_ABIS}; do |
|
|
1008 | if [[ "${EBUILD_PHASE}" == "test" ]] && _python_check_python_abi_matching --patterns-list "${PYTHON_ABI}" "${PYTHON_TESTS_RESTRICTED_ABIS}"; then |
|
|
1009 | if [[ "${quiet}" == "0" ]]; then |
|
|
1010 | echo " ${_GREEN}*${_NORMAL} ${_BLUE}Testing of ${CATEGORY}/${PF} with $(python_get_implementation_and_version) skipped${_NORMAL}" |
|
|
1011 | fi |
|
|
1012 | continue |
|
|
1013 | fi |
|
|
1014 | |
| 926 | _python_prepare_flags |
1015 | _python_prepare_flags |
| 927 | |
1016 | |
| 928 | if [[ "${quiet}" == "0" ]]; then |
1017 | if [[ "${quiet}" == "0" ]]; then |
| 929 | if [[ -n "${action_message_template}" ]]; then |
1018 | if [[ -n "${action_message_template}" ]]; then |
| 930 | action_message="$(eval echo -n "${action_message_template}")" |
1019 | eval "action_message=\"${action_message_template}\"" |
| 931 | else |
1020 | else |
| 932 | action_message="${action} of ${CATEGORY}/${PF} with $(python_get_implementation) $(python_get_version)..." |
1021 | action_message="${action} of ${CATEGORY}/${PF} with $(python_get_implementation_and_version)..." |
| 933 | fi |
1022 | fi |
| 934 | echo " ${_GREEN}*${_NORMAL} ${_BLUE}${action_message}${_NORMAL}" |
1023 | echo " ${_GREEN}*${_NORMAL} ${_BLUE}${action_message}${_NORMAL}" |
| 935 | fi |
1024 | fi |
| 936 | |
1025 | |
| 937 | if [[ "${separate_build_dirs}" == "1" ]]; then |
1026 | if [[ "${separate_build_dirs}" == "1" ]]; then |
| … | |
… | |
| 959 | |
1048 | |
| 960 | _python_restore_flags |
1049 | _python_restore_flags |
| 961 | |
1050 | |
| 962 | if [[ "${return_code}" -ne 0 ]]; then |
1051 | if [[ "${return_code}" -ne 0 ]]; then |
| 963 | if [[ -n "${failure_message_template}" ]]; then |
1052 | if [[ -n "${failure_message_template}" ]]; then |
| 964 | failure_message="$(eval echo -n "${failure_message_template}")" |
1053 | eval "failure_message=\"${failure_message_template}\"" |
| 965 | else |
1054 | else |
| 966 | failure_message="${action} failed with $(python_get_implementation) $(python_get_version) in ${function}() function" |
1055 | failure_message="${action} failed with $(python_get_implementation_and_version) in ${function}() function" |
| 967 | fi |
1056 | fi |
| 968 | |
1057 | |
| 969 | if [[ "${nonfatal}" == "1" ]]; then |
1058 | if [[ "${nonfatal}" == "1" ]]; then |
| 970 | if [[ "${quiet}" == "0" ]]; then |
1059 | if [[ "${quiet}" == "0" ]]; then |
| 971 | ewarn "${_RED}${failure_message}${_NORMAL}" |
1060 | ewarn "${failure_message}" |
| 972 | fi |
1061 | fi |
| 973 | elif [[ "${final_ABI}" == "0" ]] && has "${PYTHON_ABI}" ${FAILURE_TOLERANT_PYTHON_ABIS}; then |
1062 | elif [[ "${final_ABI}" == "0" ]] && has "${PYTHON_ABI}" ${FAILURE_TOLERANT_PYTHON_ABIS}; then |
| 974 | if [[ "${EBUILD_PHASE}" != "test" ]] || ! has test-fail-continue ${FEATURES}; then |
1063 | if [[ "${EBUILD_PHASE}" != "test" ]] || ! has test-fail-continue ${FEATURES}; then |
| 975 | local enabled_PYTHON_ABIS= other_PYTHON_ABI |
1064 | local enabled_PYTHON_ABIS= other_PYTHON_ABI |
| 976 | for other_PYTHON_ABI in ${PYTHON_ABIS}; do |
1065 | for other_PYTHON_ABI in ${PYTHON_ABIS}; do |
| 977 | [[ "${other_PYTHON_ABI}" != "${PYTHON_ABI}" ]] && enabled_PYTHON_ABIS+="${enabled_PYTHON_ABIS:+ }${other_PYTHON_ABI}" |
1066 | [[ "${other_PYTHON_ABI}" != "${PYTHON_ABI}" ]] && enabled_PYTHON_ABIS+="${enabled_PYTHON_ABIS:+ }${other_PYTHON_ABI}" |
| 978 | done |
1067 | done |
| 979 | export PYTHON_ABIS="${enabled_PYTHON_ABIS}" |
1068 | export PYTHON_ABIS="${enabled_PYTHON_ABIS}" |
| 980 | fi |
1069 | fi |
| 981 | if [[ "${quiet}" == "0" ]]; then |
1070 | if [[ "${quiet}" == "0" ]]; then |
| 982 | ewarn "${_RED}${failure_message}${_NORMAL}" |
1071 | ewarn "${failure_message}" |
| 983 | fi |
1072 | fi |
| 984 | if [[ -z "${PYTHON_ABIS}" ]]; then |
1073 | if [[ -z "${PYTHON_ABIS}" ]]; then |
| 985 | die "${function}() function failed with all enabled Python ABIs" |
1074 | die "${function}() function failed with all enabled Python ABIs" |
| 986 | fi |
1075 | fi |
| 987 | else |
1076 | else |
| … | |
… | |
| 1024 | # @FUNCTION: python_copy_sources |
1113 | # @FUNCTION: python_copy_sources |
| 1025 | # @USAGE: <directory="${S}"> [directory] |
1114 | # @USAGE: <directory="${S}"> [directory] |
| 1026 | # @DESCRIPTION: |
1115 | # @DESCRIPTION: |
| 1027 | # Copy unpacked sources of current package to separate build directory for each Python ABI. |
1116 | # Copy unpacked sources of current package to separate build directory for each Python ABI. |
| 1028 | python_copy_sources() { |
1117 | python_copy_sources() { |
| 1029 | _python_check_python_pkg_setup_execution |
|
|
| 1030 | |
|
|
| 1031 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
1118 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
| 1032 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
1119 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
| 1033 | fi |
1120 | fi |
|
|
1121 | |
|
|
1122 | _python_check_python_pkg_setup_execution |
| 1034 | |
1123 | |
| 1035 | local dir dirs=() PYTHON_ABI |
1124 | local dir dirs=() PYTHON_ABI |
| 1036 | |
1125 | |
| 1037 | if [[ "$#" -eq 0 ]]; then |
1126 | if [[ "$#" -eq 0 ]]; then |
| 1038 | if [[ "${WORKDIR}" == "${S}" ]]; then |
1127 | if [[ "${WORKDIR}" == "${S}" ]]; then |
| … | |
… | |
| 1055 | # @USAGE: [-E|--respect-EPYTHON] [-f|--force] [-q|--quiet] [--] <file> [files] |
1144 | # @USAGE: [-E|--respect-EPYTHON] [-f|--force] [-q|--quiet] [--] <file> [files] |
| 1056 | # @DESCRIPTION: |
1145 | # @DESCRIPTION: |
| 1057 | # Generate wrapper scripts. Existing files are overwritten only with --force option. |
1146 | # Generate wrapper scripts. Existing files are overwritten only with --force option. |
| 1058 | # If --respect-EPYTHON option is specified, then generated wrapper scripts will |
1147 | # If --respect-EPYTHON option is specified, then generated wrapper scripts will |
| 1059 | # respect EPYTHON variable at run time. |
1148 | # respect EPYTHON variable at run time. |
|
|
1149 | # |
|
|
1150 | # This function can be used only in src_install() phase. |
| 1060 | python_generate_wrapper_scripts() { |
1151 | python_generate_wrapper_scripts() { |
| 1061 | _python_check_python_pkg_setup_execution |
1152 | if [[ "${EBUILD_PHASE}" != "install" ]]; then |
|
|
1153 | die "${FUNCNAME}() can be used only in src_install() phase" |
|
|
1154 | fi |
| 1062 | |
1155 | |
| 1063 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
1156 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
| 1064 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
1157 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
| 1065 | fi |
1158 | fi |
| 1066 | |
1159 | |
|
|
1160 | _python_check_python_pkg_setup_execution |
| 1067 | _python_initialize_prefix_variables |
1161 | _python_initialize_prefix_variables |
| 1068 | |
1162 | |
| 1069 | local eselect_python_option file force="0" quiet="0" PYTHON_ABI python2_enabled="0" python3_enabled="0" respect_EPYTHON="0" |
1163 | local eselect_python_option file force="0" quiet="0" PYTHON_ABI PYTHON_ABIS_list python2_enabled="0" python3_enabled="0" respect_EPYTHON="0" |
| 1070 | |
1164 | |
| 1071 | while (($#)); do |
1165 | while (($#)); do |
| 1072 | case "$1" in |
1166 | case "$1" in |
| 1073 | -E|--respect-EPYTHON) |
1167 | -E|--respect-EPYTHON) |
| 1074 | respect_EPYTHON="1" |
1168 | respect_EPYTHON="1" |
| … | |
… | |
| 1096 | if [[ "$#" -eq 0 ]]; then |
1190 | if [[ "$#" -eq 0 ]]; then |
| 1097 | die "${FUNCNAME}(): Missing arguments" |
1191 | die "${FUNCNAME}(): Missing arguments" |
| 1098 | fi |
1192 | fi |
| 1099 | |
1193 | |
| 1100 | _python_calculate_PYTHON_ABIS |
1194 | _python_calculate_PYTHON_ABIS |
| 1101 | for PYTHON_ABI in "${_CPYTHON2_SUPPORTED_ABIS[@]}"; do |
1195 | for PYTHON_ABI in "${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]}"; do |
| 1102 | if has "${PYTHON_ABI}" ${PYTHON_ABIS}; then |
1196 | if has "${PYTHON_ABI}" ${PYTHON_ABIS}; then |
| 1103 | python2_enabled="1" |
1197 | python2_enabled="1" |
| 1104 | fi |
1198 | fi |
| 1105 | done |
1199 | done |
| 1106 | for PYTHON_ABI in "${_CPYTHON3_SUPPORTED_ABIS[@]}"; do |
1200 | for PYTHON_ABI in "${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]}"; do |
| 1107 | if has "${PYTHON_ABI}" ${PYTHON_ABIS}; then |
1201 | if has "${PYTHON_ABI}" ${PYTHON_ABIS}; then |
| 1108 | python3_enabled="1" |
1202 | python3_enabled="1" |
| 1109 | fi |
1203 | fi |
| 1110 | done |
1204 | done |
| 1111 | |
1205 | |
| … | |
… | |
| 1117 | eselect_python_option="--python3" |
1211 | eselect_python_option="--python3" |
| 1118 | else |
1212 | else |
| 1119 | die "${FUNCNAME}(): Unsupported environment" |
1213 | die "${FUNCNAME}(): Unsupported environment" |
| 1120 | fi |
1214 | fi |
| 1121 | |
1215 | |
|
|
1216 | PYTHON_ABIS_list="$("$(PYTHON -f)" -c "print(', '.join('\"%s\"' % x for x in reversed('${PYTHON_ABIS}'.split())))")" |
|
|
1217 | |
| 1122 | for file in "$@"; do |
1218 | for file in "$@"; do |
| 1123 | if [[ -f "${file}" && "${force}" == "0" ]]; then |
1219 | if [[ -f "${file}" && "${force}" == "0" ]]; then |
| 1124 | die "${FUNCNAME}(): '$1' already exists" |
1220 | die "${FUNCNAME}(): '${file}' already exists" |
| 1125 | fi |
1221 | fi |
| 1126 | |
1222 | |
| 1127 | if [[ "${quiet}" == "0" ]]; then |
1223 | if [[ "${quiet}" == "0" ]]; then |
| 1128 | einfo "Generating '${file#${ED%/}}' wrapper script" |
1224 | einfo "Generating '${file#${ED%/}}' wrapper script" |
| 1129 | fi |
1225 | fi |
| … | |
… | |
| 1135 | import os |
1231 | import os |
| 1136 | import re |
1232 | import re |
| 1137 | import subprocess |
1233 | import subprocess |
| 1138 | import sys |
1234 | import sys |
| 1139 | |
1235 | |
|
|
1236 | cpython_ABI_re = re.compile(r"^(\d+\.\d+)$") |
|
|
1237 | jython_ABI_re = re.compile(r"^(\d+\.\d+)-jython$") |
|
|
1238 | pypy_ABI_re = re.compile(r"^\d+\.\d+-pypy-(\d+\.\d+)$") |
| 1140 | EPYTHON_re = re.compile(r"^python(\d+\.\d+)$") |
1239 | cpython_interpreter_re = re.compile(r"^python(\d+\.\d+)$") |
|
|
1240 | jython_interpreter_re = re.compile(r"^jython(\d+\.\d+)$") |
|
|
1241 | pypy_interpreter_re = re.compile(r"^pypy-c(\d+\.\d+)$") |
| 1141 | python_shebang_re = re.compile(r"^#! *(${EPREFIX}/usr/bin/python|(${EPREFIX})?/usr/bin/env +(${EPREFIX}/usr/bin/)?python)") |
1242 | cpython_shebang_re = re.compile(r"^#![ \t]*(?:${EPREFIX}/usr/bin/python|(?:${EPREFIX})?/usr/bin/env[ \t]+(?:${EPREFIX}/usr/bin/)?python)") |
|
|
1243 | python_shebang_options_re = re.compile(r"^#![ \t]*${EPREFIX}/usr/bin/(?:jython|pypy-c|python)(?:\d+(?:\.\d+)?)?[ \t]+(-\S)") |
| 1142 | python_verification_output_re = re.compile("^GENTOO_PYTHON_TARGET_SCRIPT_PATH supported\n$") |
1244 | python_verification_output_re = re.compile("^GENTOO_PYTHON_TARGET_SCRIPT_PATH supported\n$") |
|
|
1245 | |
|
|
1246 | pypy_versions_mapping = { |
|
|
1247 | "1.5": "2.7" |
|
|
1248 | } |
|
|
1249 | |
|
|
1250 | def get_PYTHON_ABI(python_interpreter): |
|
|
1251 | cpython_matched = cpython_interpreter_re.match(python_interpreter) |
|
|
1252 | jython_matched = jython_interpreter_re.match(python_interpreter) |
|
|
1253 | pypy_matched = pypy_interpreter_re.match(python_interpreter) |
|
|
1254 | if cpython_matched is not None: |
|
|
1255 | PYTHON_ABI = cpython_matched.group(1) |
|
|
1256 | elif jython_matched is not None: |
|
|
1257 | PYTHON_ABI = jython_matched.group(1) + "-jython" |
|
|
1258 | elif pypy_matched is not None: |
|
|
1259 | PYTHON_ABI = pypy_versions_mapping[pypy_matched.group(1)] + "-pypy-" + pypy_matched.group(1) |
|
|
1260 | else: |
|
|
1261 | PYTHON_ABI = None |
|
|
1262 | return PYTHON_ABI |
|
|
1263 | |
|
|
1264 | def get_python_interpreter(PYTHON_ABI): |
|
|
1265 | cpython_matched = cpython_ABI_re.match(PYTHON_ABI) |
|
|
1266 | jython_matched = jython_ABI_re.match(PYTHON_ABI) |
|
|
1267 | pypy_matched = pypy_ABI_re.match(PYTHON_ABI) |
|
|
1268 | if cpython_matched is not None: |
|
|
1269 | python_interpreter = "python" + cpython_matched.group(1) |
|
|
1270 | elif jython_matched is not None: |
|
|
1271 | python_interpreter = "jython" + jython_matched.group(1) |
|
|
1272 | elif pypy_matched is not None: |
|
|
1273 | python_interpreter = "pypy-c" + pypy_matched.group(1) |
|
|
1274 | else: |
|
|
1275 | python_interpreter = None |
|
|
1276 | return python_interpreter |
| 1143 | |
1277 | |
| 1144 | EOF |
1278 | EOF |
| 1145 | if [[ "$?" != "0" ]]; then |
1279 | if [[ "$?" != "0" ]]; then |
| 1146 | die "${FUNCNAME}(): Generation of '$1' failed" |
1280 | die "${FUNCNAME}(): Generation of '$1' failed" |
| 1147 | fi |
1281 | fi |
| 1148 | if [[ "${respect_EPYTHON}" == "1" ]]; then |
1282 | if [[ "${respect_EPYTHON}" == "1" ]]; then |
| 1149 | cat << EOF >> "${file}" |
1283 | cat << EOF >> "${file}" |
| 1150 | EPYTHON = os.environ.get("EPYTHON") |
1284 | python_interpreter = os.environ.get("EPYTHON") |
| 1151 | if EPYTHON: |
1285 | if python_interpreter: |
| 1152 | EPYTHON_matched = EPYTHON_re.match(EPYTHON) |
1286 | PYTHON_ABI = get_PYTHON_ABI(python_interpreter) |
| 1153 | if EPYTHON_matched: |
1287 | if PYTHON_ABI is None: |
| 1154 | PYTHON_ABI = EPYTHON_matched.group(1) |
|
|
| 1155 | else: |
|
|
| 1156 | sys.stderr.write("EPYTHON variable has unrecognized value '%s'\n" % EPYTHON) |
1288 | sys.stderr.write("%s: EPYTHON variable has unrecognized value '%s'\n" % (sys.argv[0], python_interpreter)) |
| 1157 | sys.exit(1) |
1289 | sys.exit(1) |
| 1158 | else: |
1290 | else: |
| 1159 | try: |
1291 | try: |
|
|
1292 | environment = os.environ.copy() |
|
|
1293 | environment["ROOT"] = "/" |
| 1160 | eselect_process = subprocess.Popen(["${EPREFIX}/usr/bin/eselect", "python", "show"${eselect_python_option:+, $(echo "\"")}${eselect_python_option}${eselect_python_option:+$(echo "\"")}], stdout=subprocess.PIPE) |
1294 | 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) |
| 1161 | if eselect_process.wait() != 0: |
1295 | if eselect_process.wait() != 0: |
| 1162 | raise ValueError |
1296 | raise ValueError |
| 1163 | except (OSError, ValueError): |
1297 | except (OSError, ValueError): |
| 1164 | sys.stderr.write("Execution of 'eselect python show${eselect_python_option:+ }${eselect_python_option}' failed\n") |
1298 | sys.stderr.write("%s: Execution of 'eselect python show${eselect_python_option:+ }${eselect_python_option}' failed\n" % sys.argv[0]) |
| 1165 | sys.exit(1) |
1299 | sys.exit(1) |
| 1166 | |
1300 | |
| 1167 | EPYTHON = eselect_process.stdout.read() |
1301 | python_interpreter = eselect_process.stdout.read() |
| 1168 | if not isinstance(EPYTHON, str): |
1302 | if not isinstance(python_interpreter, str): |
| 1169 | # Python 3 |
1303 | # Python 3 |
| 1170 | EPYTHON = EPYTHON.decode() |
1304 | python_interpreter = python_interpreter.decode() |
| 1171 | EPYTHON = EPYTHON.rstrip("\n") |
1305 | python_interpreter = python_interpreter.rstrip("\n") |
| 1172 | |
1306 | |
| 1173 | EPYTHON_matched = EPYTHON_re.match(EPYTHON) |
1307 | PYTHON_ABI = get_PYTHON_ABI(python_interpreter) |
| 1174 | if EPYTHON_matched: |
1308 | if PYTHON_ABI is None: |
| 1175 | PYTHON_ABI = EPYTHON_matched.group(1) |
|
|
| 1176 | else: |
|
|
| 1177 | sys.stderr.write("'eselect python show${eselect_python_option:+ }${eselect_python_option}' printed unrecognized value '%s'\n" % EPYTHON) |
1309 | sys.stderr.write("%s: 'eselect python show${eselect_python_option:+ }${eselect_python_option}' printed unrecognized value '%s'\n" % (sys.argv[0], python_interpreter)) |
| 1178 | sys.exit(1) |
1310 | sys.exit(1) |
| 1179 | EOF |
|
|
| 1180 | if [[ "$?" != "0" ]]; then |
|
|
| 1181 | die "${FUNCNAME}(): Generation of '$1' failed" |
|
|
| 1182 | fi |
|
|
| 1183 | else |
|
|
| 1184 | cat << EOF >> "${file}" |
|
|
| 1185 | try: |
|
|
| 1186 | eselect_process = subprocess.Popen(["${EPREFIX}/usr/bin/eselect", "python", "show"${eselect_python_option:+, $(echo "\"")}${eselect_python_option}${eselect_python_option:+$(echo "\"")}], stdout=subprocess.PIPE) |
|
|
| 1187 | if eselect_process.wait() != 0: |
|
|
| 1188 | raise ValueError |
|
|
| 1189 | except (OSError, ValueError): |
|
|
| 1190 | sys.stderr.write("Execution of 'eselect python show${eselect_python_option:+ }${eselect_python_option}' failed\n") |
|
|
| 1191 | sys.exit(1) |
|
|
| 1192 | |
1311 | |
| 1193 | EPYTHON = eselect_process.stdout.read() |
1312 | wrapper_script_path = os.path.realpath(sys.argv[0]) |
| 1194 | if not isinstance(EPYTHON, str): |
1313 | target_executable_path = "%s-%s" % (wrapper_script_path, PYTHON_ABI) |
| 1195 | # Python 3 |
1314 | if not os.path.exists(target_executable_path): |
| 1196 | EPYTHON = EPYTHON.decode() |
1315 | sys.stderr.write("%s: '%s' does not exist\n" % (sys.argv[0], target_executable_path)) |
| 1197 | EPYTHON = EPYTHON.rstrip("\n") |
|
|
| 1198 | |
|
|
| 1199 | EPYTHON_matched = EPYTHON_re.match(EPYTHON) |
|
|
| 1200 | if EPYTHON_matched: |
|
|
| 1201 | PYTHON_ABI = EPYTHON_matched.group(1) |
|
|
| 1202 | else: |
|
|
| 1203 | sys.stderr.write("'eselect python show${eselect_python_option:+ }${eselect_python_option}' printed unrecognized value '%s'\n" % EPYTHON) |
|
|
| 1204 | sys.exit(1) |
1316 | sys.exit(1) |
| 1205 | EOF |
1317 | EOF |
| 1206 | if [[ "$?" != "0" ]]; then |
1318 | if [[ "$?" != "0" ]]; then |
| 1207 | die "${FUNCNAME}(): Generation of '$1' failed" |
1319 | die "${FUNCNAME}(): Generation of '$1' failed" |
| 1208 | fi |
1320 | fi |
|
|
1321 | else |
|
|
1322 | cat << EOF >> "${file}" |
|
|
1323 | try: |
|
|
1324 | environment = os.environ.copy() |
|
|
1325 | environment["ROOT"] = "/" |
|
|
1326 | 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) |
|
|
1327 | if eselect_process.wait() != 0: |
|
|
1328 | raise ValueError |
|
|
1329 | except (OSError, ValueError): |
|
|
1330 | sys.stderr.write("%s: Execution of 'eselect python show${eselect_python_option:+ }${eselect_python_option}' failed\n" % sys.argv[0]) |
|
|
1331 | sys.exit(1) |
|
|
1332 | |
|
|
1333 | python_interpreter = eselect_process.stdout.read() |
|
|
1334 | if not isinstance(python_interpreter, str): |
|
|
1335 | # Python 3 |
|
|
1336 | python_interpreter = python_interpreter.decode() |
|
|
1337 | python_interpreter = python_interpreter.rstrip("\n") |
|
|
1338 | |
|
|
1339 | PYTHON_ABI = get_PYTHON_ABI(python_interpreter) |
|
|
1340 | if PYTHON_ABI is None: |
|
|
1341 | sys.stderr.write("%s: 'eselect python show${eselect_python_option:+ }${eselect_python_option}' printed unrecognized value '%s'\n" % (sys.argv[0], python_interpreter)) |
|
|
1342 | sys.exit(1) |
|
|
1343 | |
|
|
1344 | wrapper_script_path = os.path.realpath(sys.argv[0]) |
|
|
1345 | for PYTHON_ABI in [PYTHON_ABI, ${PYTHON_ABIS_list}]: |
|
|
1346 | target_executable_path = "%s-%s" % (wrapper_script_path, PYTHON_ABI) |
|
|
1347 | if os.path.exists(target_executable_path): |
|
|
1348 | break |
|
|
1349 | else: |
|
|
1350 | sys.stderr.write("%s: No target script exists for '%s'\n" % (sys.argv[0], wrapper_script_path)) |
|
|
1351 | sys.exit(1) |
|
|
1352 | |
|
|
1353 | python_interpreter = get_python_interpreter(PYTHON_ABI) |
|
|
1354 | if python_interpreter is None: |
|
|
1355 | sys.stderr.write("%s: Unrecognized Python ABI '%s'\n" % (sys.argv[0], PYTHON_ABI)) |
|
|
1356 | sys.exit(1) |
|
|
1357 | EOF |
|
|
1358 | if [[ "$?" != "0" ]]; then |
|
|
1359 | die "${FUNCNAME}(): Generation of '$1' failed" |
|
|
1360 | fi |
| 1209 | fi |
1361 | fi |
| 1210 | cat << EOF >> "${file}" |
1362 | cat << EOF >> "${file}" |
| 1211 | |
|
|
| 1212 | wrapper_script_path = os.path.realpath(sys.argv[0]) |
|
|
| 1213 | target_executable_path = "%s-%s" % (wrapper_script_path, PYTHON_ABI) |
|
|
| 1214 | os.environ["GENTOO_PYTHON_PROCESS_NAME"] = os.path.basename(sys.argv[0]) |
|
|
| 1215 | os.environ["GENTOO_PYTHON_WRAPPER_SCRIPT_PATH"] = sys.argv[0] |
|
|
| 1216 | os.environ["GENTOO_PYTHON_TARGET_SCRIPT_PATH"] = target_executable_path |
|
|
| 1217 | if not os.path.exists(target_executable_path): |
|
|
| 1218 | sys.stderr.write("'%s' does not exist\n" % target_executable_path) |
|
|
| 1219 | sys.exit(1) |
|
|
| 1220 | |
1363 | |
| 1221 | target_executable = open(target_executable_path, "rb") |
1364 | target_executable = open(target_executable_path, "rb") |
| 1222 | target_executable_first_line = target_executable.readline() |
1365 | target_executable_first_line = target_executable.readline() |
|
|
1366 | target_executable.close() |
| 1223 | if not isinstance(target_executable_first_line, str): |
1367 | if not isinstance(target_executable_first_line, str): |
| 1224 | # Python 3 |
1368 | # Python 3 |
| 1225 | target_executable_first_line = target_executable_first_line.decode("utf_8", "replace") |
1369 | target_executable_first_line = target_executable_first_line.decode("utf_8", "replace") |
| 1226 | |
1370 | |
|
|
1371 | options = [] |
|
|
1372 | python_shebang_options_matched = python_shebang_options_re.match(target_executable_first_line) |
|
|
1373 | if python_shebang_options_matched is not None: |
|
|
1374 | options = [python_shebang_options_matched.group(1)] |
|
|
1375 | |
| 1227 | python_shebang_matched = python_shebang_re.match(target_executable_first_line) |
1376 | cpython_shebang_matched = cpython_shebang_re.match(target_executable_first_line) |
| 1228 | target_executable.close() |
|
|
| 1229 | |
1377 | |
| 1230 | if python_shebang_matched: |
1378 | if cpython_shebang_matched is not None: |
| 1231 | try: |
1379 | try: |
| 1232 | python_interpreter_path = "${EPREFIX}/usr/bin/%s" % EPYTHON |
1380 | python_interpreter_path = "${EPREFIX}/usr/bin/%s" % python_interpreter |
| 1233 | os.environ["GENTOO_PYTHON_TARGET_SCRIPT_PATH_VERIFICATION"] = "1" |
1381 | os.environ["GENTOO_PYTHON_TARGET_SCRIPT_PATH_VERIFICATION"] = "1" |
| 1234 | python_verification_process = subprocess.Popen([python_interpreter_path, "-c", "pass"], stdout=subprocess.PIPE) |
1382 | python_verification_process = subprocess.Popen([python_interpreter_path, "-c", "pass"], stdout=subprocess.PIPE) |
| 1235 | del os.environ["GENTOO_PYTHON_TARGET_SCRIPT_PATH_VERIFICATION"] |
1383 | del os.environ["GENTOO_PYTHON_TARGET_SCRIPT_PATH_VERIFICATION"] |
| 1236 | if python_verification_process.wait() != 0: |
1384 | if python_verification_process.wait() != 0: |
| 1237 | raise ValueError |
1385 | raise ValueError |
| … | |
… | |
| 1242 | python_verification_output = python_verification_output.decode() |
1390 | python_verification_output = python_verification_output.decode() |
| 1243 | |
1391 | |
| 1244 | if not python_verification_output_re.match(python_verification_output): |
1392 | if not python_verification_output_re.match(python_verification_output): |
| 1245 | raise ValueError |
1393 | raise ValueError |
| 1246 | |
1394 | |
|
|
1395 | if cpython_interpreter_re.match(python_interpreter) is not None: |
|
|
1396 | os.environ["GENTOO_PYTHON_PROCESS_NAME"] = os.path.basename(sys.argv[0]) |
|
|
1397 | os.environ["GENTOO_PYTHON_WRAPPER_SCRIPT_PATH"] = sys.argv[0] |
|
|
1398 | os.environ["GENTOO_PYTHON_TARGET_SCRIPT_PATH"] = target_executable_path |
|
|
1399 | |
|
|
1400 | if hasattr(os, "execv"): |
| 1247 | os.execv(python_interpreter_path, [python_interpreter_path] + sys.argv) |
1401 | os.execv(python_interpreter_path, [python_interpreter_path] + options + sys.argv) |
|
|
1402 | else: |
|
|
1403 | sys.exit(subprocess.Popen([python_interpreter_path] + options + sys.argv).wait()) |
|
|
1404 | except (KeyboardInterrupt, SystemExit): |
|
|
1405 | raise |
| 1248 | except: |
1406 | except: |
| 1249 | pass |
1407 | pass |
| 1250 | if "GENTOO_PYTHON_TARGET_SCRIPT_PATH_VERIFICATION" in os.environ: |
1408 | for variable in ("GENTOO_PYTHON_PROCESS_NAME", "GENTOO_PYTHON_WRAPPER_SCRIPT_PATH", "GENTOO_PYTHON_TARGET_SCRIPT_PATH", "GENTOO_PYTHON_TARGET_SCRIPT_PATH_VERIFICATION"): |
| 1251 | del os.environ["GENTOO_PYTHON_TARGET_SCRIPT_PATH_VERIFICATION"] |
1409 | if variable in os.environ: |
|
|
1410 | del os.environ[variable] |
| 1252 | |
1411 | |
|
|
1412 | if hasattr(os, "execv"): |
| 1253 | os.execv(target_executable_path, sys.argv) |
1413 | os.execv(target_executable_path, sys.argv) |
|
|
1414 | else: |
|
|
1415 | sys.exit(subprocess.Popen([target_executable_path] + sys.argv[1:]).wait()) |
| 1254 | EOF |
1416 | EOF |
| 1255 | if [[ "$?" != "0" ]]; then |
1417 | if [[ "$?" != "0" ]]; then |
| 1256 | die "${FUNCNAME}(): Generation of '$1' failed" |
1418 | die "${FUNCNAME}(): Generation of '$1' failed" |
| 1257 | fi |
1419 | fi |
| 1258 | fperms +x "${file#${ED%/}}" || die "fperms '${file}' failed" |
1420 | fperms +x "${file#${ED%/}}" || die "fperms '${file}' failed" |
| 1259 | done |
1421 | done |
| 1260 | } |
1422 | } |
| 1261 | |
1423 | |
|
|
1424 | # @ECLASS-VARIABLE: PYTHON_VERSIONED_SCRIPTS |
|
|
1425 | # @DESCRIPTION: |
|
|
1426 | # Array of regular expressions of paths to versioned Python scripts. |
|
|
1427 | # Python scripts in /usr/bin and /usr/sbin are versioned by default. |
|
|
1428 | |
|
|
1429 | # @ECLASS-VARIABLE: PYTHON_VERSIONED_EXECUTABLES |
|
|
1430 | # @DESCRIPTION: |
|
|
1431 | # Array of regular expressions of paths to versioned executables (including Python scripts). |
|
|
1432 | |
|
|
1433 | # @ECLASS-VARIABLE: PYTHON_NONVERSIONED_EXECUTABLES |
|
|
1434 | # @DESCRIPTION: |
|
|
1435 | # Array of regular expressions of paths to nonversioned executables (including Python scripts). |
|
|
1436 | |
|
|
1437 | # @FUNCTION: python_merge_intermediate_installation_images |
|
|
1438 | # @USAGE: [-q|--quiet] [--] <intermediate_installation_images_directory> |
|
|
1439 | # @DESCRIPTION: |
|
|
1440 | # Merge intermediate installation images into installation image. |
|
|
1441 | # |
|
|
1442 | # This function can be used only in src_install() phase. |
|
|
1443 | python_merge_intermediate_installation_images() { |
|
|
1444 | if [[ "${EBUILD_PHASE}" != "install" ]]; then |
|
|
1445 | die "${FUNCNAME}() can be used only in src_install() phase" |
|
|
1446 | fi |
|
|
1447 | |
|
|
1448 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
1449 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
|
|
1450 | fi |
|
|
1451 | |
|
|
1452 | _python_check_python_pkg_setup_execution |
|
|
1453 | _python_initialize_prefix_variables |
|
|
1454 | |
|
|
1455 | local absolute_file b file files=() intermediate_installation_images_directory PYTHON_ABI quiet="0" regex shebang version_executable wrapper_scripts=() wrapper_scripts_set=() |
|
|
1456 | |
|
|
1457 | while (($#)); do |
|
|
1458 | case "$1" in |
|
|
1459 | -q|--quiet) |
|
|
1460 | quiet="1" |
|
|
1461 | ;; |
|
|
1462 | --) |
|
|
1463 | shift |
|
|
1464 | break |
|
|
1465 | ;; |
|
|
1466 | -*) |
|
|
1467 | die "${FUNCNAME}(): Unrecognized option '$1'" |
|
|
1468 | ;; |
|
|
1469 | *) |
|
|
1470 | break |
|
|
1471 | ;; |
|
|
1472 | esac |
|
|
1473 | shift |
|
|
1474 | done |
|
|
1475 | |
|
|
1476 | if [[ "$#" -ne 1 ]]; then |
|
|
1477 | die "${FUNCNAME}() requires 1 argument" |
|
|
1478 | fi |
|
|
1479 | |
|
|
1480 | intermediate_installation_images_directory="$1" |
|
|
1481 | |
|
|
1482 | if [[ ! -d "${intermediate_installation_images_directory}" ]]; then |
|
|
1483 | die "${FUNCNAME}(): Intermediate installation images directory '${intermediate_installation_images_directory}' does not exist" |
|
|
1484 | fi |
|
|
1485 | |
|
|
1486 | _python_calculate_PYTHON_ABIS |
|
|
1487 | if [[ "$(PYTHON -f --ABI)" == 3.* ]]; then |
|
|
1488 | b="b" |
|
|
1489 | fi |
|
|
1490 | |
|
|
1491 | while read -d $'\0' -r file; do |
|
|
1492 | files+=("${file}") |
|
|
1493 | done < <("$(PYTHON -f)" -c \ |
|
|
1494 | "import os |
|
|
1495 | import sys |
|
|
1496 | |
|
|
1497 | if hasattr(sys.stdout, 'buffer'): |
|
|
1498 | # Python 3 |
|
|
1499 | stdout = sys.stdout.buffer |
|
|
1500 | else: |
|
|
1501 | # Python 2 |
|
|
1502 | stdout = sys.stdout |
|
|
1503 | |
|
|
1504 | files_set = set() |
|
|
1505 | |
|
|
1506 | os.chdir(${b}'${intermediate_installation_images_directory}') |
|
|
1507 | |
|
|
1508 | for PYTHON_ABI in ${b}'${PYTHON_ABIS}'.split(): |
|
|
1509 | for root, dirs, files in os.walk(PYTHON_ABI + ${b}'${EPREFIX}'): |
|
|
1510 | root = root[len(PYTHON_ABI + ${b}'${EPREFIX}')+1:] |
|
|
1511 | files_set.update(root + ${b}'/' + file for file in files) |
|
|
1512 | |
|
|
1513 | for file in sorted(files_set): |
|
|
1514 | stdout.write(file) |
|
|
1515 | stdout.write(${b}'\x00')" || die "${FUNCNAME}(): Failure of extraction of files in intermediate installation images") |
|
|
1516 | |
|
|
1517 | for PYTHON_ABI in ${PYTHON_ABIS}; do |
|
|
1518 | if [[ ! -d "${intermediate_installation_images_directory}/${PYTHON_ABI}" ]]; then |
|
|
1519 | die "${FUNCNAME}(): Intermediate installation image for Python ABI '${PYTHON_ABI}' does not exist" |
|
|
1520 | fi |
|
|
1521 | |
|
|
1522 | pushd "${intermediate_installation_images_directory}/${PYTHON_ABI}${EPREFIX}" > /dev/null || die "pushd failed" |
|
|
1523 | |
|
|
1524 | for file in "${files[@]}"; do |
|
|
1525 | version_executable="0" |
|
|
1526 | for regex in "/usr/bin/.*" "/usr/sbin/.*" "${PYTHON_VERSIONED_SCRIPTS[@]}"; do |
|
|
1527 | if [[ "/${file}" =~ ^${regex}$ ]]; then |
|
|
1528 | version_executable="1" |
|
|
1529 | break |
|
|
1530 | fi |
|
|
1531 | done |
|
|
1532 | for regex in "${PYTHON_VERSIONED_EXECUTABLES[@]}"; do |
|
|
1533 | if [[ "/${file}" =~ ^${regex}$ ]]; then |
|
|
1534 | version_executable="2" |
|
|
1535 | break |
|
|
1536 | fi |
|
|
1537 | done |
|
|
1538 | if [[ "${version_executable}" != "0" ]]; then |
|
|
1539 | for regex in "${PYTHON_NONVERSIONED_EXECUTABLES[@]}"; do |
|
|
1540 | if [[ "/${file}" =~ ^${regex}$ ]]; then |
|
|
1541 | version_executable="0" |
|
|
1542 | break |
|
|
1543 | fi |
|
|
1544 | done |
|
|
1545 | fi |
|
|
1546 | |
|
|
1547 | [[ "${version_executable}" == "0" ]] && continue |
|
|
1548 | |
|
|
1549 | if [[ -L "${file}" ]]; then |
|
|
1550 | absolute_file="$(readlink "${file}")" |
|
|
1551 | if [[ "${absolute_file}" == /* ]]; then |
|
|
1552 | absolute_file="${intermediate_installation_images_directory}/${PYTHON_ABI}${EPREFIX}/${absolute_file##/}" |
|
|
1553 | else |
|
|
1554 | if [[ "${file}" == */* ]]; then |
|
|
1555 | absolute_file="${intermediate_installation_images_directory}/${PYTHON_ABI}${EPREFIX}/${file%/*}/${absolute_file}" |
|
|
1556 | else |
|
|
1557 | absolute_file="${intermediate_installation_images_directory}/${PYTHON_ABI}${EPREFIX}/${absolute_file}" |
|
|
1558 | fi |
|
|
1559 | fi |
|
|
1560 | else |
|
|
1561 | absolute_file="${intermediate_installation_images_directory}/${PYTHON_ABI}${EPREFIX}/${file}" |
|
|
1562 | fi |
|
|
1563 | |
|
|
1564 | [[ ! -x "${absolute_file}" ]] && continue |
|
|
1565 | |
|
|
1566 | shebang="$(head -n1 "${absolute_file}")" || die "Extraction of shebang from '${absolute_file}' failed" |
|
|
1567 | |
|
|
1568 | if [[ "${version_executable}" == "2" ]]; then |
|
|
1569 | wrapper_scripts+=("${ED}${file}") |
|
|
1570 | elif [[ "${version_executable}" == "1" ]]; then |
|
|
1571 | if [[ "${shebang}" =~ ${_PYTHON_SHEBANG_BASE_PART_REGEX}([[:digit:]]+(\.[[:digit:]]+)?)?($|[[:space:]]+) ]]; then |
|
|
1572 | wrapper_scripts+=("${ED}${file}") |
|
|
1573 | else |
|
|
1574 | version_executable="0" |
|
|
1575 | fi |
|
|
1576 | fi |
|
|
1577 | |
|
|
1578 | [[ "${version_executable}" == "0" ]] && continue |
|
|
1579 | |
|
|
1580 | if [[ -e "${file}-${PYTHON_ABI}" ]]; then |
|
|
1581 | die "${FUNCNAME}(): '${EPREFIX}/${file}-${PYTHON_ABI}' already exists" |
|
|
1582 | fi |
|
|
1583 | |
|
|
1584 | mv "${file}" "${file}-${PYTHON_ABI}" || die "Renaming of '${file}' failed" |
|
|
1585 | |
|
|
1586 | if [[ "${shebang}" =~ ${_PYTHON_SHEBANG_BASE_PART_REGEX}[[:digit:]]*($|[[:space:]]+) ]]; then |
|
|
1587 | if [[ -L "${file}-${PYTHON_ABI}" ]]; then |
|
|
1588 | python_convert_shebangs $([[ "${quiet}" == "1" ]] && echo --quiet) "${PYTHON_ABI}" "${absolute_file}" |
|
|
1589 | else |
|
|
1590 | python_convert_shebangs $([[ "${quiet}" == "1" ]] && echo --quiet) "${PYTHON_ABI}" "${file}-${PYTHON_ABI}" |
|
|
1591 | fi |
|
|
1592 | fi |
|
|
1593 | done |
|
|
1594 | |
|
|
1595 | popd > /dev/null || die "popd failed" |
|
|
1596 | |
|
|
1597 | if ROOT="/" has_version sys-apps/coreutils; then |
|
|
1598 | 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" |
|
|
1599 | else |
|
|
1600 | cp -fpr "${intermediate_installation_images_directory}/${PYTHON_ABI}/"* "${D}" || die "Merging of intermediate installation image for Python ABI '${PYTHON_ABI} into installation image failed" |
|
|
1601 | fi |
|
|
1602 | done |
|
|
1603 | |
|
|
1604 | rm -fr "${intermediate_installation_images_directory}" |
|
|
1605 | |
|
|
1606 | if [[ "${#wrapper_scripts[@]}" -ge 1 ]]; then |
|
|
1607 | rm -f "${T}/python_wrapper_scripts" |
|
|
1608 | |
|
|
1609 | for file in "${wrapper_scripts[@]}"; do |
|
|
1610 | echo -n "${file}" >> "${T}/python_wrapper_scripts" |
|
|
1611 | echo -en "\x00" >> "${T}/python_wrapper_scripts" |
|
|
1612 | done |
|
|
1613 | |
|
|
1614 | while read -d $'\0' -r file; do |
|
|
1615 | wrapper_scripts_set+=("${file}") |
|
|
1616 | done < <("$(PYTHON -f)" -c \ |
|
|
1617 | "import sys |
|
|
1618 | |
|
|
1619 | if hasattr(sys.stdout, 'buffer'): |
|
|
1620 | # Python 3 |
|
|
1621 | stdout = sys.stdout.buffer |
|
|
1622 | else: |
|
|
1623 | # Python 2 |
|
|
1624 | stdout = sys.stdout |
|
|
1625 | |
|
|
1626 | python_wrapper_scripts_file = open('${T}/python_wrapper_scripts', 'rb') |
|
|
1627 | files = set(python_wrapper_scripts_file.read().rstrip(${b}'\x00').split(${b}'\x00')) |
|
|
1628 | python_wrapper_scripts_file.close() |
|
|
1629 | |
|
|
1630 | for file in sorted(files): |
|
|
1631 | stdout.write(file) |
|
|
1632 | stdout.write(${b}'\x00')" || die "${FUNCNAME}(): Failure of extraction of set of wrapper scripts") |
|
|
1633 | |
|
|
1634 | python_generate_wrapper_scripts $([[ "${quiet}" == "1" ]] && echo --quiet) "${wrapper_scripts_set[@]}" |
|
|
1635 | fi |
|
|
1636 | } |
|
|
1637 | |
| 1262 | # ================================================================================================ |
1638 | # ================================================================================================ |
| 1263 | # ========= FUNCTIONS FOR PACKAGES NOT SUPPORTING INSTALLATION FOR MULTIPLE PYTHON ABIS ========== |
1639 | # ========= FUNCTIONS FOR PACKAGES NOT SUPPORTING INSTALLATION FOR MULTIPLE PYTHON ABIS ========== |
| 1264 | # ================================================================================================ |
1640 | # ================================================================================================ |
| 1265 | |
1641 | |
| 1266 | unset EPYTHON PYTHON_ABI |
1642 | unset EPYTHON PYTHON_ABI |
| 1267 | |
1643 | |
| 1268 | # @FUNCTION: python_set_active_version |
1644 | # @FUNCTION: python_set_active_version |
| 1269 | # @USAGE: <CPython_ABI|2|3> |
1645 | # @USAGE: <Python_ABI|2|3> |
| 1270 | # @DESCRIPTION: |
1646 | # @DESCRIPTION: |
| 1271 | # Set specified version of CPython as active version of Python. |
1647 | # Set locally active version of Python. |
|
|
1648 | # If Python_ABI argument is specified, then version of Python corresponding to Python_ABI is used. |
|
|
1649 | # If 2 argument is specified, then active version of CPython 2 is used. |
|
|
1650 | # If 3 argument is specified, then active version of CPython 3 is used. |
| 1272 | # |
1651 | # |
| 1273 | # This function can be used only in pkg_setup() phase. |
1652 | # This function can be used only in pkg_setup() phase. |
| 1274 | python_set_active_version() { |
1653 | python_set_active_version() { |
| 1275 | # Check if phase is pkg_setup(). |
1654 | if [[ "${EBUILD_PHASE}" != "setup" ]]; then |
| 1276 | [[ "${EBUILD_PHASE}" != "setup" ]] && die "${FUNCNAME}() can be used only in pkg_setup() phase" |
1655 | die "${FUNCNAME}() can be used only in pkg_setup() phase" |
|
|
1656 | fi |
| 1277 | |
1657 | |
| 1278 | if _python_package_supporting_installation_for_multiple_python_abis; then |
1658 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| 1279 | die "${FUNCNAME}() cannot be used in ebuilds of packages supporting installation for multiple Python ABIs" |
1659 | die "${FUNCNAME}() cannot be used in ebuilds of packages supporting installation for multiple Python ABIs" |
| 1280 | fi |
1660 | fi |
| 1281 | |
1661 | |
| … | |
… | |
| 1284 | fi |
1664 | fi |
| 1285 | |
1665 | |
| 1286 | _python_initial_sanity_checks |
1666 | _python_initial_sanity_checks |
| 1287 | |
1667 | |
| 1288 | if [[ -z "${PYTHON_ABI}" ]]; then |
1668 | if [[ -z "${PYTHON_ABI}" ]]; then |
| 1289 | if [[ "$1" =~ ^[[:digit:]]+\.[[:digit:]]+$ ]]; then |
1669 | if [[ -n "$(_python_get_implementation --ignore-invalid "$1")" ]]; then |
| 1290 | if ! _python_implementation && ! has_version "dev-lang/python:$1"; then |
1670 | # PYTHON_ABI variable is intended to be used only in ebuilds/eclasses, |
| 1291 | die "${FUNCNAME}(): 'dev-lang/python:$1' is not installed" |
1671 | # so it does not need to be exported to subprocesses. |
|
|
1672 | PYTHON_ABI="$1" |
|
|
1673 | if ! _python_implementation && ! has_version "$(python_get_implementational_package)"; then |
|
|
1674 | die "${FUNCNAME}(): '$(python_get_implementational_package)' is not installed" |
| 1292 | fi |
1675 | fi |
| 1293 | export EPYTHON="$(PYTHON "$1")" |
1676 | export EPYTHON="$(PYTHON "$1")" |
| 1294 | elif [[ "$1" == "2" ]]; then |
1677 | elif [[ "$1" == "2" ]]; then |
| 1295 | if ! _python_implementation && ! has_version "=dev-lang/python-2*"; then |
1678 | if ! _python_implementation && ! has_version "=dev-lang/python-2*"; then |
| 1296 | die "${FUNCNAME}(): '=dev-lang/python-2*' is not installed" |
1679 | die "${FUNCNAME}(): '=dev-lang/python-2*' is not installed" |
| 1297 | fi |
1680 | fi |
| 1298 | export EPYTHON="$(PYTHON -2)" |
1681 | export EPYTHON="$(PYTHON -2)" |
|
|
1682 | PYTHON_ABI="${EPYTHON#python}" |
|
|
1683 | PYTHON_ABI="${PYTHON_ABI%%-*}" |
| 1299 | elif [[ "$1" == "3" ]]; then |
1684 | elif [[ "$1" == "3" ]]; then |
| 1300 | if ! _python_implementation && ! has_version "=dev-lang/python-3*"; then |
1685 | if ! _python_implementation && ! has_version "=dev-lang/python-3*"; then |
| 1301 | die "${FUNCNAME}(): '=dev-lang/python-3*' is not installed" |
1686 | die "${FUNCNAME}(): '=dev-lang/python-3*' is not installed" |
| 1302 | fi |
1687 | fi |
| 1303 | export EPYTHON="$(PYTHON -3)" |
1688 | export EPYTHON="$(PYTHON -3)" |
|
|
1689 | PYTHON_ABI="${EPYTHON#python}" |
|
|
1690 | PYTHON_ABI="${PYTHON_ABI%%-*}" |
| 1304 | else |
1691 | else |
| 1305 | die "${FUNCNAME}(): Unrecognized argument '$1'" |
1692 | die "${FUNCNAME}(): Unrecognized argument '$1'" |
| 1306 | fi |
1693 | fi |
| 1307 | |
|
|
| 1308 | # PYTHON_ABI variable is intended to be used only in ebuilds/eclasses, |
|
|
| 1309 | # so it does not need to be exported to subprocesses. |
|
|
| 1310 | PYTHON_ABI="${EPYTHON#python}" |
|
|
| 1311 | PYTHON_ABI="${PYTHON_ABI%%-*}" |
|
|
| 1312 | fi |
1694 | fi |
| 1313 | |
1695 | |
| 1314 | _python_final_sanity_checks |
1696 | _python_final_sanity_checks |
| 1315 | |
1697 | |
| 1316 | # python-updater checks PYTHON_REQUESTED_ACTIVE_VERSION variable. |
1698 | # python-updater checks PYTHON_REQUESTED_ACTIVE_VERSION variable. |
| 1317 | PYTHON_REQUESTED_ACTIVE_VERSION="$1" |
1699 | PYTHON_REQUESTED_ACTIVE_VERSION="$1" |
| 1318 | } |
1700 | } |
| 1319 | |
1701 | |
| 1320 | # @FUNCTION: python_need_rebuild |
1702 | # @FUNCTION: python_need_rebuild |
|
|
1703 | # @DESCRIPTION: |
| 1321 | # @DESCRIPTION: Mark current package for rebuilding by python-updater after |
1704 | # Mark current package for rebuilding by python-updater after |
| 1322 | # switching of active version of Python. |
1705 | # switching of active version of Python. |
| 1323 | python_need_rebuild() { |
1706 | python_need_rebuild() { |
| 1324 | _python_check_python_pkg_setup_execution |
|
|
| 1325 | |
|
|
| 1326 | if _python_package_supporting_installation_for_multiple_python_abis; then |
1707 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| 1327 | die "${FUNCNAME}() cannot be used in ebuilds of packages supporting installation for multiple Python ABIs" |
1708 | die "${FUNCNAME}() cannot be used in ebuilds of packages supporting installation for multiple Python ABIs" |
| 1328 | fi |
1709 | fi |
|
|
1710 | |
|
|
1711 | _python_check_python_pkg_setup_execution |
| 1329 | |
1712 | |
| 1330 | if [[ "$#" -ne 0 ]]; then |
1713 | if [[ "$#" -ne 0 ]]; then |
| 1331 | die "${FUNCNAME}() does not accept arguments" |
1714 | die "${FUNCNAME}() does not accept arguments" |
| 1332 | fi |
1715 | fi |
| 1333 | |
1716 | |
| … | |
… | |
| 1336 | |
1719 | |
| 1337 | # ================================================================================================ |
1720 | # ================================================================================================ |
| 1338 | # ======================================= GETTER FUNCTIONS ======================================= |
1721 | # ======================================= GETTER FUNCTIONS ======================================= |
| 1339 | # ================================================================================================ |
1722 | # ================================================================================================ |
| 1340 | |
1723 | |
| 1341 | _PYTHON_ABI_EXTRACTION_COMMAND='import platform |
1724 | _PYTHON_ABI_EXTRACTION_COMMAND=\ |
|
|
1725 | 'import platform |
| 1342 | import sys |
1726 | import sys |
| 1343 | sys.stdout.write(".".join(str(x) for x in sys.version_info[:2])) |
1727 | sys.stdout.write(".".join(str(x) for x in sys.version_info[:2])) |
| 1344 | if platform.system()[:4] == "Java": |
1728 | if platform.system()[:4] == "Java": |
| 1345 | sys.stdout.write("-jython")' |
1729 | sys.stdout.write("-jython") |
|
|
1730 | elif hasattr(platform, "python_implementation") and platform.python_implementation() == "PyPy": |
|
|
1731 | sys.stdout.write("-pypy-" + ".".join(str(x) for x in sys.pypy_version_info[:2]))' |
| 1346 | |
1732 | |
| 1347 | _python_get_implementation() { |
1733 | _python_get_implementation() { |
|
|
1734 | local ignore_invalid="0" |
|
|
1735 | |
|
|
1736 | while (($#)); do |
|
|
1737 | case "$1" in |
|
|
1738 | --ignore-invalid) |
|
|
1739 | ignore_invalid="1" |
|
|
1740 | ;; |
|
|
1741 | --) |
|
|
1742 | shift |
|
|
1743 | break |
|
|
1744 | ;; |
|
|
1745 | -*) |
|
|
1746 | die "${FUNCNAME}(): Unrecognized option '$1'" |
|
|
1747 | ;; |
|
|
1748 | *) |
|
|
1749 | break |
|
|
1750 | ;; |
|
|
1751 | esac |
|
|
1752 | shift |
|
|
1753 | done |
|
|
1754 | |
| 1348 | if [[ "$#" -ne 1 ]]; then |
1755 | if [[ "$#" -ne 1 ]]; then |
| 1349 | die "${FUNCNAME}() requires 1 argument" |
1756 | die "${FUNCNAME}() requires 1 argument" |
| 1350 | fi |
1757 | fi |
| 1351 | |
1758 | |
| 1352 | if [[ "$1" =~ ^[[:digit:]]+\.[[:digit:]]+$ ]]; then |
1759 | if [[ "$1" =~ ^[[:digit:]]+\.[[:digit:]]+$ ]]; then |
| 1353 | echo "CPython" |
1760 | echo "CPython" |
| 1354 | elif [[ "$1" =~ ^[[:digit:]]+\.[[:digit:]]+-jython$ ]]; then |
1761 | elif [[ "$1" =~ ^[[:digit:]]+\.[[:digit:]]+-jython$ ]]; then |
| 1355 | echo "Jython" |
1762 | echo "Jython" |
|
|
1763 | elif [[ "$1" =~ ^[[:digit:]]+\.[[:digit:]]+-pypy-[[:digit:]]+\.[[:digit:]]+$ ]]; then |
|
|
1764 | echo "PyPy" |
| 1356 | else |
1765 | else |
|
|
1766 | if [[ "${ignore_invalid}" == "0" ]]; then |
| 1357 | die "${FUNCNAME}(): Unrecognized Python ABI '$1'" |
1767 | die "${FUNCNAME}(): Unrecognized Python ABI '$1'" |
|
|
1768 | fi |
| 1358 | fi |
1769 | fi |
| 1359 | } |
1770 | } |
| 1360 | |
1771 | |
| 1361 | # @FUNCTION: PYTHON |
1772 | # @FUNCTION: PYTHON |
| 1362 | # @USAGE: [-2] [-3] [--ABI] [-a|--absolute-path] [-f|--final-ABI] [--] <Python_ABI="${PYTHON_ABI}"> |
1773 | # @USAGE: [-2] [-3] [--ABI] [-a|--absolute-path] [-f|--final-ABI] [--] <Python_ABI="${PYTHON_ABI}"> |
| 1363 | # @DESCRIPTION: |
1774 | # @DESCRIPTION: |
| 1364 | # Print filename of Python interpreter for specified Python ABI. If Python_ABI argument |
1775 | # Print filename of Python interpreter for specified Python ABI. If Python_ABI argument |
| 1365 | # is ommitted, then PYTHON_ABI environment variable must be set and is used. |
1776 | # is ommitted, then PYTHON_ABI environment variable must be set and is used. |
| 1366 | # If -2 option is specified, then active version of Python 2 is used. |
1777 | # If -2 option is specified, then active version of CPython 2 is used. |
| 1367 | # If -3 option is specified, then active version of Python 3 is used. |
1778 | # If -3 option is specified, then active version of CPython 3 is used. |
| 1368 | # If --final-ABI option is specified, then final ABI from the list of enabled ABIs is used. |
1779 | # If --final-ABI option is specified, then final ABI from the list of enabled ABIs is used. |
| 1369 | # -2, -3 and --final-ABI options and Python_ABI argument cannot be specified simultaneously. |
1780 | # -2, -3 and --final-ABI options and Python_ABI argument cannot be specified simultaneously. |
| 1370 | # If --ABI option is specified, then only specified Python ABI is printed instead of |
1781 | # If --ABI option is specified, then only specified Python ABI is printed instead of |
| 1371 | # filename of Python interpreter. |
1782 | # filename of Python interpreter. |
| 1372 | # If --absolute-path option is specified, then absolute path to Python interpreter is printed. |
1783 | # If --absolute-path option is specified, then absolute path to Python interpreter is printed. |
| … | |
… | |
| 1421 | die "${FUNCNAME}(): '--final-ABI' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
1832 | die "${FUNCNAME}(): '--final-ABI' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
| 1422 | fi |
1833 | fi |
| 1423 | _python_calculate_PYTHON_ABIS |
1834 | _python_calculate_PYTHON_ABIS |
| 1424 | PYTHON_ABI="${PYTHON_ABIS##* }" |
1835 | PYTHON_ABI="${PYTHON_ABIS##* }" |
| 1425 | elif [[ "${python2}" == "1" ]]; then |
1836 | elif [[ "${python2}" == "1" ]]; then |
| 1426 | PYTHON_ABI="$(eselect python show --python2 --ABI)" |
1837 | PYTHON_ABI="$(ROOT="/" eselect python show --python2 --ABI)" |
| 1427 | if [[ -z "${PYTHON_ABI}" ]]; then |
1838 | if [[ -z "${PYTHON_ABI}" ]]; then |
| 1428 | die "${FUNCNAME}(): Active version of Python 2 not set" |
1839 | die "${FUNCNAME}(): Active version of CPython 2 not set" |
| 1429 | elif [[ "${PYTHON_ABI}" != "2."* ]]; then |
1840 | elif [[ "${PYTHON_ABI}" != "2."* ]]; then |
| 1430 | die "${FUNCNAME}(): Internal error in \`eselect python show --python2\`" |
1841 | die "${FUNCNAME}(): Internal error in \`eselect python show --python2\`" |
| 1431 | fi |
1842 | fi |
| 1432 | elif [[ "${python3}" == "1" ]]; then |
1843 | elif [[ "${python3}" == "1" ]]; then |
| 1433 | PYTHON_ABI="$(eselect python show --python3 --ABI)" |
1844 | PYTHON_ABI="$(ROOT="/" eselect python show --python3 --ABI)" |
| 1434 | if [[ -z "${PYTHON_ABI}" ]]; then |
1845 | if [[ -z "${PYTHON_ABI}" ]]; then |
| 1435 | die "${FUNCNAME}(): Active version of Python 3 not set" |
1846 | die "${FUNCNAME}(): Active version of CPython 3 not set" |
| 1436 | elif [[ "${PYTHON_ABI}" != "3."* ]]; then |
1847 | elif [[ "${PYTHON_ABI}" != "3."* ]]; then |
| 1437 | die "${FUNCNAME}(): Internal error in \`eselect python show --python3\`" |
1848 | die "${FUNCNAME}(): Internal error in \`eselect python show --python3\`" |
| 1438 | fi |
1849 | fi |
| 1439 | elif _python_package_supporting_installation_for_multiple_python_abis; then |
1850 | elif _python_package_supporting_installation_for_multiple_python_abis; then |
| 1440 | if ! _python_abi-specific_local_scope; then |
1851 | if ! _python_abi-specific_local_scope; then |
| … | |
… | |
| 1466 | return |
1877 | return |
| 1467 | else |
1878 | else |
| 1468 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
1879 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
| 1469 | python_interpreter="python${PYTHON_ABI}" |
1880 | python_interpreter="python${PYTHON_ABI}" |
| 1470 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
1881 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
| 1471 | python_interpreter="jython-${PYTHON_ABI%-jython}" |
1882 | python_interpreter="jython${PYTHON_ABI%-jython}" |
|
|
1883 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "PyPy" ]]; then |
|
|
1884 | python_interpreter="pypy-c${PYTHON_ABI#*-pypy-}" |
| 1472 | fi |
1885 | fi |
| 1473 | |
1886 | |
| 1474 | if [[ "${absolute_path_output}" == "1" ]]; then |
1887 | if [[ "${absolute_path_output}" == "1" ]]; then |
| 1475 | echo -n "${EPREFIX}/usr/bin/${python_interpreter}" |
1888 | echo -n "${EPREFIX}/usr/bin/${python_interpreter}" |
| 1476 | else |
1889 | else |
| … | |
… | |
| 1564 | else |
1977 | else |
| 1565 | PYTHON_ABI="${PYTHON_ABI:-$(PYTHON --ABI)}" |
1978 | PYTHON_ABI="${PYTHON_ABI:-$(PYTHON --ABI)}" |
| 1566 | fi |
1979 | fi |
| 1567 | fi |
1980 | fi |
| 1568 | |
1981 | |
|
|
1982 | if [[ "${EAPI:-0}" == "0" ]]; then |
| 1569 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
1983 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
| 1570 | echo "dev-lang/python:${PYTHON_ABI}" |
1984 | echo "=dev-lang/python-${PYTHON_ABI}*" |
| 1571 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
1985 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
|
|
1986 | echo "=dev-java/jython-${PYTHON_ABI%-jython}*" |
|
|
1987 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "PyPy" ]]; then |
|
|
1988 | echo "=dev-python/pypy-${PYTHON_ABI#*-pypy-}*" |
|
|
1989 | fi |
|
|
1990 | else |
|
|
1991 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
|
|
1992 | echo "dev-lang/python:${PYTHON_ABI}" |
|
|
1993 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
| 1572 | echo "dev-java/jython:${PYTHON_ABI%-jython}" |
1994 | echo "dev-java/jython:${PYTHON_ABI%-jython}" |
|
|
1995 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "PyPy" ]]; then |
|
|
1996 | echo "dev-python/pypy:${PYTHON_ABI#*-pypy-}" |
|
|
1997 | fi |
| 1573 | fi |
1998 | fi |
| 1574 | } |
1999 | } |
| 1575 | |
2000 | |
| 1576 | # @FUNCTION: python_get_includedir |
2001 | # @FUNCTION: python_get_includedir |
| 1577 | # @USAGE: [-b|--base-path] [-f|--final-ABI] |
2002 | # @USAGE: [-b|--base-path] [-f|--final-ABI] |
| … | |
… | |
| 1623 | |
2048 | |
| 1624 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
2049 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
| 1625 | echo "${prefix}usr/include/python${PYTHON_ABI}" |
2050 | echo "${prefix}usr/include/python${PYTHON_ABI}" |
| 1626 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
2051 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
| 1627 | echo "${prefix}usr/share/jython-${PYTHON_ABI%-jython}/Include" |
2052 | echo "${prefix}usr/share/jython-${PYTHON_ABI%-jython}/Include" |
|
|
2053 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "PyPy" ]]; then |
|
|
2054 | echo "${prefix}usr/$(get_libdir)/pypy${PYTHON_ABI#*-pypy-}/include" |
| 1628 | fi |
2055 | fi |
| 1629 | } |
2056 | } |
| 1630 | |
2057 | |
| 1631 | # @FUNCTION: python_get_libdir |
2058 | # @FUNCTION: python_get_libdir |
| 1632 | # @USAGE: [-b|--base-path] [-f|--final-ABI] |
2059 | # @USAGE: [-b|--base-path] [-f|--final-ABI] |
| 1633 | # @DESCRIPTION: |
2060 | # @DESCRIPTION: |
| 1634 | # Print path to Python library directory. |
2061 | # Print path to Python standard library directory. |
| 1635 | # If --base-path option is specified, then path not prefixed with "/" is printed. |
2062 | # If --base-path option is specified, then path not prefixed with "/" is printed. |
| 1636 | # If --final-ABI option is specified, then final ABI from the list of enabled ABIs is used. |
2063 | # If --final-ABI option is specified, then final ABI from the list of enabled ABIs is used. |
| 1637 | python_get_libdir() { |
2064 | python_get_libdir() { |
| 1638 | _python_check_python_pkg_setup_execution |
2065 | _python_check_python_pkg_setup_execution |
| 1639 | |
2066 | |
| … | |
… | |
| 1678 | |
2105 | |
| 1679 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
2106 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
| 1680 | echo "${prefix}usr/$(get_libdir)/python${PYTHON_ABI}" |
2107 | echo "${prefix}usr/$(get_libdir)/python${PYTHON_ABI}" |
| 1681 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
2108 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
| 1682 | echo "${prefix}usr/share/jython-${PYTHON_ABI%-jython}/Lib" |
2109 | echo "${prefix}usr/share/jython-${PYTHON_ABI%-jython}/Lib" |
|
|
2110 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "PyPy" ]]; then |
|
|
2111 | die "${FUNCNAME}(): PyPy has multiple standard library directories" |
| 1683 | fi |
2112 | fi |
| 1684 | } |
2113 | } |
| 1685 | |
2114 | |
| 1686 | # @FUNCTION: python_get_sitedir |
2115 | # @FUNCTION: python_get_sitedir |
| 1687 | # @USAGE: [-b|--base-path] [-f|--final-ABI] |
2116 | # @USAGE: [-b|--base-path] [-f|--final-ABI] |
| … | |
… | |
| 1690 | # If --base-path option is specified, then path not prefixed with "/" is printed. |
2119 | # If --base-path option is specified, then path not prefixed with "/" is printed. |
| 1691 | # If --final-ABI option is specified, then final ABI from the list of enabled ABIs is used. |
2120 | # If --final-ABI option is specified, then final ABI from the list of enabled ABIs is used. |
| 1692 | python_get_sitedir() { |
2121 | python_get_sitedir() { |
| 1693 | _python_check_python_pkg_setup_execution |
2122 | _python_check_python_pkg_setup_execution |
| 1694 | |
2123 | |
| 1695 | local final_ABI="0" options=() |
2124 | local base_path="0" final_ABI="0" prefix PYTHON_ABI="${PYTHON_ABI}" |
| 1696 | |
2125 | |
| 1697 | while (($#)); do |
2126 | while (($#)); do |
| 1698 | case "$1" in |
2127 | case "$1" in |
| 1699 | -b|--base-path) |
2128 | -b|--base-path) |
| 1700 | options+=("$1") |
2129 | base_path="1" |
| 1701 | ;; |
2130 | ;; |
| 1702 | -f|--final-ABI) |
2131 | -f|--final-ABI) |
| 1703 | final_ABI="1" |
2132 | final_ABI="1" |
| 1704 | options+=("$1") |
|
|
| 1705 | ;; |
2133 | ;; |
| 1706 | -*) |
2134 | -*) |
| 1707 | die "${FUNCNAME}(): Unrecognized option '$1'" |
2135 | die "${FUNCNAME}(): Unrecognized option '$1'" |
| 1708 | ;; |
2136 | ;; |
| 1709 | *) |
2137 | *) |
| … | |
… | |
| 1711 | ;; |
2139 | ;; |
| 1712 | esac |
2140 | esac |
| 1713 | shift |
2141 | shift |
| 1714 | done |
2142 | done |
| 1715 | |
2143 | |
|
|
2144 | if [[ "${base_path}" == "0" ]]; then |
|
|
2145 | prefix="/" |
|
|
2146 | fi |
|
|
2147 | |
| 1716 | if [[ "${final_ABI}" == "1" ]]; then |
2148 | if [[ "${final_ABI}" == "1" ]]; then |
| 1717 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
2149 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
| 1718 | die "${FUNCNAME}(): '--final-ABI' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
2150 | die "${FUNCNAME}(): '--final-ABI' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
| 1719 | fi |
2151 | fi |
|
|
2152 | PYTHON_ABI="$(PYTHON -f --ABI)" |
| 1720 | else |
2153 | else |
| 1721 | if _python_package_supporting_installation_for_multiple_python_abis && ! _python_abi-specific_local_scope; then |
2154 | if _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
2155 | if ! _python_abi-specific_local_scope; then |
| 1722 | die "${FUNCNAME}() should be used in ABI-specific local scope" |
2156 | die "${FUNCNAME}() should be used in ABI-specific local scope" |
| 1723 | fi |
2157 | fi |
|
|
2158 | else |
|
|
2159 | PYTHON_ABI="${PYTHON_ABI:-$(PYTHON --ABI)}" |
| 1724 | fi |
2160 | fi |
|
|
2161 | fi |
| 1725 | |
2162 | |
| 1726 | echo "$(python_get_libdir "${options[@]}")/site-packages" |
2163 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
|
|
2164 | echo "${prefix}usr/$(get_libdir)/python${PYTHON_ABI}/site-packages" |
|
|
2165 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
|
|
2166 | echo "${prefix}usr/share/jython-${PYTHON_ABI%-jython}/Lib/site-packages" |
|
|
2167 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "PyPy" ]]; then |
|
|
2168 | echo "${prefix}usr/$(get_libdir)/pypy${PYTHON_ABI#*-pypy-}/site-packages" |
|
|
2169 | fi |
| 1727 | } |
2170 | } |
| 1728 | |
2171 | |
| 1729 | # @FUNCTION: python_get_library |
2172 | # @FUNCTION: python_get_library |
| 1730 | # @USAGE: [-b|--base-path] [-f|--final-ABI] [-l|--linker-option] |
2173 | # @USAGE: [-b|--base-path] [-f|--final-ABI] [-l|--linker-option] |
| 1731 | # @DESCRIPTION: |
2174 | # @DESCRIPTION: |
| … | |
… | |
| 1788 | else |
2231 | else |
| 1789 | echo "${prefix}usr/$(get_libdir)/libpython${PYTHON_ABI}$(get_libname)" |
2232 | echo "${prefix}usr/$(get_libdir)/libpython${PYTHON_ABI}$(get_libname)" |
| 1790 | fi |
2233 | fi |
| 1791 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
2234 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
| 1792 | die "${FUNCNAME}(): Jython does not have shared library" |
2235 | die "${FUNCNAME}(): Jython does not have shared library" |
|
|
2236 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "PyPy" ]]; then |
|
|
2237 | die "${FUNCNAME}(): PyPy does not have shared library" |
| 1793 | fi |
2238 | fi |
| 1794 | } |
2239 | } |
| 1795 | |
2240 | |
| 1796 | # @FUNCTION: python_get_version |
2241 | # @FUNCTION: python_get_version |
| 1797 | # @USAGE: [-f|--final-ABI] [--full] [--major] [--minor] [--micro] |
2242 | # @USAGE: [-f|--final-ABI] [-l|--language] [--full] [--major] [--minor] [--micro] |
| 1798 | # @DESCRIPTION: |
2243 | # @DESCRIPTION: |
| 1799 | # Print Python version. |
2244 | # Print version of Python implementation. |
| 1800 | # --full, --major, --minor and --micro options cannot be specified simultaneously. |
2245 | # --full, --major, --minor and --micro options cannot be specified simultaneously. |
| 1801 | # If --full, --major, --minor and --micro options are not specified, then "${major_version}.${minor_version}" is printed. |
2246 | # If --full, --major, --minor and --micro options are not specified, then "${major_version}.${minor_version}" is printed. |
|
|
2247 | # If --language option is specified, then version of Python language is printed. |
|
|
2248 | # --language and --full options cannot be specified simultaneously. |
|
|
2249 | # --language and --micro options cannot be specified simultaneously. |
| 1802 | # If --final-ABI option is specified, then final ABI from the list of enabled ABIs is used. |
2250 | # If --final-ABI option is specified, then final ABI from the list of enabled ABIs is used. |
| 1803 | python_get_version() { |
2251 | python_get_version() { |
| 1804 | _python_check_python_pkg_setup_execution |
2252 | _python_check_python_pkg_setup_execution |
| 1805 | |
2253 | |
| 1806 | local final_ABI="0" full="0" major="0" minor="0" micro="0" python_command |
2254 | local final_ABI="0" language="0" language_version full="0" major="0" minor="0" micro="0" PYTHON_ABI="${PYTHON_ABI}" python_command |
| 1807 | |
2255 | |
| 1808 | while (($#)); do |
2256 | while (($#)); do |
| 1809 | case "$1" in |
2257 | case "$1" in |
| 1810 | -f|--final-ABI) |
2258 | -f|--final-ABI) |
| 1811 | final_ABI="1" |
2259 | final_ABI="1" |
| 1812 | ;; |
2260 | ;; |
|
|
2261 | -l|--language) |
|
|
2262 | language="1" |
|
|
2263 | ;; |
| 1813 | --full) |
2264 | --full) |
| 1814 | full="1" |
2265 | full="1" |
| 1815 | ;; |
2266 | ;; |
| 1816 | --major) |
2267 | --major) |
| 1817 | major="1" |
2268 | major="1" |
| … | |
… | |
| 1830 | ;; |
2281 | ;; |
| 1831 | esac |
2282 | esac |
| 1832 | shift |
2283 | shift |
| 1833 | done |
2284 | done |
| 1834 | |
2285 | |
| 1835 | if [[ "$((${full} + ${major} + ${minor} + ${micro}))" -gt 1 ]]; then |
|
|
| 1836 | die "${FUNCNAME}(): '--full', '--major', '--minor' or '--micro' options cannot be specified simultaneously" |
|
|
| 1837 | fi |
|
|
| 1838 | |
|
|
| 1839 | if [[ "${full}" == "1" ]]; then |
|
|
| 1840 | python_command="from sys import version_info; print('.'.join(str(x) for x in version_info[:3]))" |
|
|
| 1841 | elif [[ "${major}" == "1" ]]; then |
|
|
| 1842 | python_command="from sys import version_info; print(version_info[0])" |
|
|
| 1843 | elif [[ "${minor}" == "1" ]]; then |
|
|
| 1844 | python_command="from sys import version_info; print(version_info[1])" |
|
|
| 1845 | elif [[ "${micro}" == "1" ]]; then |
|
|
| 1846 | python_command="from sys import version_info; print(version_info[2])" |
|
|
| 1847 | else |
|
|
| 1848 | if [[ -n "${PYTHON_ABI}" && "${final_ABI}" == "0" ]]; then |
|
|
| 1849 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
|
|
| 1850 | echo "${PYTHON_ABI}" |
|
|
| 1851 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
|
|
| 1852 | echo "${PYTHON_ABI%-jython}" |
|
|
| 1853 | fi |
|
|
| 1854 | return |
|
|
| 1855 | fi |
|
|
| 1856 | python_command="from sys import version_info; print('.'.join(str(x) for x in version_info[:2]))" |
|
|
| 1857 | fi |
|
|
| 1858 | |
|
|
| 1859 | if [[ "${final_ABI}" == "1" ]]; then |
2286 | if [[ "${final_ABI}" == "1" ]]; then |
| 1860 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
2287 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
| 1861 | die "${FUNCNAME}(): '--final-ABI' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
2288 | die "${FUNCNAME}(): '--final-ABI' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
| 1862 | fi |
2289 | fi |
| 1863 | "$(PYTHON -f)" -c "${python_command}" |
|
|
| 1864 | else |
2290 | else |
| 1865 | if _python_package_supporting_installation_for_multiple_python_abis && ! _python_abi-specific_local_scope; then |
2291 | if _python_package_supporting_installation_for_multiple_python_abis && ! _python_abi-specific_local_scope; then |
| 1866 | die "${FUNCNAME}() should be used in ABI-specific local scope" |
2292 | die "${FUNCNAME}() should be used in ABI-specific local scope" |
| 1867 | fi |
2293 | fi |
|
|
2294 | fi |
|
|
2295 | |
|
|
2296 | if [[ "$((${full} + ${major} + ${minor} + ${micro}))" -gt 1 ]]; then |
|
|
2297 | die "${FUNCNAME}(): '--full', '--major', '--minor' or '--micro' options cannot be specified simultaneously" |
|
|
2298 | fi |
|
|
2299 | |
|
|
2300 | if [[ "${language}" == "1" ]]; then |
|
|
2301 | if [[ "${final_ABI}" == "1" ]]; then |
|
|
2302 | PYTHON_ABI="$(PYTHON -f --ABI)" |
|
|
2303 | elif [[ -z "${PYTHON_ABI}" ]]; then |
|
|
2304 | PYTHON_ABI="$(PYTHON --ABI)" |
|
|
2305 | fi |
|
|
2306 | language_version="${PYTHON_ABI%%-*}" |
|
|
2307 | if [[ "${full}" == "1" ]]; then |
|
|
2308 | die "${FUNCNAME}(): '--language' and '--full' options cannot be specified simultaneously" |
|
|
2309 | elif [[ "${major}" == "1" ]]; then |
|
|
2310 | echo "${language_version%.*}" |
|
|
2311 | elif [[ "${minor}" == "1" ]]; then |
|
|
2312 | echo "${language_version#*.}" |
|
|
2313 | elif [[ "${micro}" == "1" ]]; then |
|
|
2314 | die "${FUNCNAME}(): '--language' and '--micro' options cannot be specified simultaneously" |
|
|
2315 | else |
|
|
2316 | echo "${language_version}" |
|
|
2317 | fi |
|
|
2318 | else |
|
|
2319 | if [[ "${full}" == "1" ]]; then |
|
|
2320 | python_command="import sys; print('.'.join(str(x) for x in getattr(sys, 'pypy_version_info', sys.version_info)[:3]))" |
|
|
2321 | elif [[ "${major}" == "1" ]]; then |
|
|
2322 | python_command="import sys; print(getattr(sys, 'pypy_version_info', sys.version_info)[0])" |
|
|
2323 | elif [[ "${minor}" == "1" ]]; then |
|
|
2324 | python_command="import sys; print(getattr(sys, 'pypy_version_info', sys.version_info)[1])" |
|
|
2325 | elif [[ "${micro}" == "1" ]]; then |
|
|
2326 | python_command="import sys; print(getattr(sys, 'pypy_version_info', sys.version_info)[2])" |
|
|
2327 | else |
|
|
2328 | if [[ -n "${PYTHON_ABI}" && "${final_ABI}" == "0" ]]; then |
|
|
2329 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
|
|
2330 | echo "${PYTHON_ABI}" |
|
|
2331 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
|
|
2332 | echo "${PYTHON_ABI%-jython}" |
|
|
2333 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "PyPy" ]]; then |
|
|
2334 | echo "${PYTHON_ABI#*-pypy-}" |
|
|
2335 | fi |
|
|
2336 | return |
|
|
2337 | fi |
|
|
2338 | python_command="from sys import version_info; print('.'.join(str(x) for x in version_info[:2]))" |
|
|
2339 | fi |
|
|
2340 | |
|
|
2341 | if [[ "${final_ABI}" == "1" ]]; then |
|
|
2342 | "$(PYTHON -f)" -c "${python_command}" |
|
|
2343 | else |
| 1868 | "$(PYTHON ${PYTHON_ABI})" -c "${python_command}" |
2344 | "$(PYTHON ${PYTHON_ABI})" -c "${python_command}" |
|
|
2345 | fi |
|
|
2346 | fi |
|
|
2347 | } |
|
|
2348 | |
|
|
2349 | # @FUNCTION: python_get_implementation_and_version |
|
|
2350 | # @USAGE: [-f|--final-ABI] |
|
|
2351 | # @DESCRIPTION: |
|
|
2352 | # Print name and version of Python implementation. |
|
|
2353 | # If version of Python implementation is not bound to version of Python language, then |
|
|
2354 | # version of Python language is additionally printed. |
|
|
2355 | # If --final-ABI option is specified, then final ABI from the list of enabled ABIs is used. |
|
|
2356 | python_get_implementation_and_version() { |
|
|
2357 | _python_check_python_pkg_setup_execution |
|
|
2358 | |
|
|
2359 | local final_ABI="0" PYTHON_ABI="${PYTHON_ABI}" |
|
|
2360 | |
|
|
2361 | while (($#)); do |
|
|
2362 | case "$1" in |
|
|
2363 | -f|--final-ABI) |
|
|
2364 | final_ABI="1" |
|
|
2365 | ;; |
|
|
2366 | -*) |
|
|
2367 | die "${FUNCNAME}(): Unrecognized option '$1'" |
|
|
2368 | ;; |
|
|
2369 | *) |
|
|
2370 | die "${FUNCNAME}(): Invalid usage" |
|
|
2371 | ;; |
|
|
2372 | esac |
|
|
2373 | shift |
|
|
2374 | done |
|
|
2375 | |
|
|
2376 | if [[ "${final_ABI}" == "1" ]]; then |
|
|
2377 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
2378 | die "${FUNCNAME}(): '--final-ABI' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
|
|
2379 | fi |
|
|
2380 | PYTHON_ABI="$(PYTHON -f --ABI)" |
|
|
2381 | else |
|
|
2382 | if _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
2383 | if ! _python_abi-specific_local_scope; then |
|
|
2384 | die "${FUNCNAME}() should be used in ABI-specific local scope" |
|
|
2385 | fi |
|
|
2386 | else |
|
|
2387 | PYTHON_ABI="${PYTHON_ABI:-$(PYTHON --ABI)}" |
|
|
2388 | fi |
|
|
2389 | fi |
|
|
2390 | |
|
|
2391 | if [[ "${PYTHON_ABI}" =~ ^[[:digit:]]+\.[[:digit:]]+-[[:alnum:]]+-[[:digit:]]+\.[[:digit:]]+$ ]]; then |
|
|
2392 | echo "$(_python_get_implementation "${PYTHON_ABI}") ${PYTHON_ABI##*-} (Python ${PYTHON_ABI%%-*})" |
|
|
2393 | else |
|
|
2394 | echo "$(_python_get_implementation "${PYTHON_ABI}") ${PYTHON_ABI%%-*}" |
| 1869 | fi |
2395 | fi |
| 1870 | } |
2396 | } |
| 1871 | |
2397 | |
| 1872 | # ================================================================================================ |
2398 | # ================================================================================================ |
| 1873 | # ================================ FUNCTIONS FOR RUNNING OF TESTS ================================ |
2399 | # ================================ FUNCTIONS FOR RUNNING OF TESTS ================================ |
| … | |
… | |
| 1882 | _python_test_hook() { |
2408 | _python_test_hook() { |
| 1883 | if [[ "$#" -ne 1 ]]; then |
2409 | if [[ "$#" -ne 1 ]]; then |
| 1884 | die "${FUNCNAME}() requires 1 argument" |
2410 | die "${FUNCNAME}() requires 1 argument" |
| 1885 | fi |
2411 | fi |
| 1886 | |
2412 | |
| 1887 | if _python_package_supporting_installation_for_multiple_python_abis && [[ "$(type -t "${FUNCNAME[3]}_$1_hook")" == "function" ]]; then |
2413 | if _python_package_supporting_installation_for_multiple_python_abis && [[ "$(type -t "${_PYTHON_TEST_FUNCTION}_$1_hook")" == "function" ]]; then |
| 1888 | "${FUNCNAME[3]}_$1_hook" |
2414 | "${_PYTHON_TEST_FUNCTION}_$1_hook" |
| 1889 | fi |
2415 | fi |
| 1890 | } |
2416 | } |
| 1891 | |
2417 | |
| 1892 | # @FUNCTION: python_execute_nosetests |
2418 | # @FUNCTION: python_execute_nosetests |
| 1893 | # @USAGE: [-P|--PYTHONPATH PYTHONPATH] [-s|--separate-build-dirs] [--] [arguments] |
2419 | # @USAGE: [-P|--PYTHONPATH PYTHONPATH] [-s|--separate-build-dirs] [--] [arguments] |
| … | |
… | |
| 1897 | # python_execute_nosetests_pre_hook() and python_execute_nosetests_post_hook(), if they are defined. |
2423 | # python_execute_nosetests_pre_hook() and python_execute_nosetests_post_hook(), if they are defined. |
| 1898 | python_execute_nosetests() { |
2424 | python_execute_nosetests() { |
| 1899 | _python_check_python_pkg_setup_execution |
2425 | _python_check_python_pkg_setup_execution |
| 1900 | _python_set_color_variables |
2426 | _python_set_color_variables |
| 1901 | |
2427 | |
| 1902 | local PYTHONPATH_template= separate_build_dirs= |
2428 | local PYTHONPATH_template separate_build_dirs |
| 1903 | |
2429 | |
| 1904 | while (($#)); do |
2430 | while (($#)); do |
| 1905 | case "$1" in |
2431 | case "$1" in |
| 1906 | -P|--PYTHONPATH) |
2432 | -P|--PYTHONPATH) |
| 1907 | PYTHONPATH_template="$2" |
2433 | PYTHONPATH_template="$2" |
| … | |
… | |
| 1925 | done |
2451 | done |
| 1926 | |
2452 | |
| 1927 | python_test_function() { |
2453 | python_test_function() { |
| 1928 | local evaluated_PYTHONPATH |
2454 | local evaluated_PYTHONPATH |
| 1929 | |
2455 | |
| 1930 | evaluated_PYTHONPATH="$(eval echo -n "${PYTHONPATH_template}")" |
2456 | eval "evaluated_PYTHONPATH=\"${PYTHONPATH_template}\"" |
| 1931 | |
2457 | |
| 1932 | _python_test_hook pre |
2458 | _PYTHON_TEST_FUNCTION="python_execute_nosetests" _python_test_hook pre |
| 1933 | |
2459 | |
| 1934 | if [[ -n "${evaluated_PYTHONPATH}" ]]; then |
2460 | if [[ -n "${evaluated_PYTHONPATH}" ]]; then |
| 1935 | echo ${_BOLD}PYTHONPATH="${evaluated_PYTHONPATH}" nosetests --verbosity="${PYTHON_TEST_VERBOSITY}" "$@"${_NORMAL} |
2461 | echo ${_BOLD}PYTHONPATH="${evaluated_PYTHONPATH}" nosetests --verbosity="${PYTHON_TEST_VERBOSITY}" "$@"${_NORMAL} |
| 1936 | PYTHONPATH="${evaluated_PYTHONPATH}" nosetests --verbosity="${PYTHON_TEST_VERBOSITY}" "$@" || return "$?" |
2462 | PYTHONPATH="${evaluated_PYTHONPATH}" nosetests --verbosity="${PYTHON_TEST_VERBOSITY}" "$@" || return "$?" |
| 1937 | else |
2463 | else |
| 1938 | echo ${_BOLD}nosetests --verbosity="${PYTHON_TEST_VERBOSITY}" "$@"${_NORMAL} |
2464 | echo ${_BOLD}nosetests --verbosity="${PYTHON_TEST_VERBOSITY}" "$@"${_NORMAL} |
| 1939 | nosetests --verbosity="${PYTHON_TEST_VERBOSITY}" "$@" || return "$?" |
2465 | nosetests --verbosity="${PYTHON_TEST_VERBOSITY}" "$@" || return "$?" |
| 1940 | fi |
2466 | fi |
| 1941 | |
2467 | |
| 1942 | _python_test_hook post |
2468 | _PYTHON_TEST_FUNCTION="python_execute_nosetests" _python_test_hook post |
| 1943 | } |
2469 | } |
| 1944 | if _python_package_supporting_installation_for_multiple_python_abis; then |
2470 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| 1945 | python_execute_function ${separate_build_dirs:+-s} python_test_function "$@" |
2471 | python_execute_function ${separate_build_dirs:+-s} python_test_function "$@" |
| 1946 | else |
2472 | else |
| 1947 | if [[ -n "${separate_build_dirs}" ]]; then |
2473 | if [[ -n "${separate_build_dirs}" ]]; then |
| … | |
… | |
| 1961 | # python_execute_py.test_pre_hook() and python_execute_py.test_post_hook(), if they are defined. |
2487 | # python_execute_py.test_pre_hook() and python_execute_py.test_post_hook(), if they are defined. |
| 1962 | python_execute_py.test() { |
2488 | python_execute_py.test() { |
| 1963 | _python_check_python_pkg_setup_execution |
2489 | _python_check_python_pkg_setup_execution |
| 1964 | _python_set_color_variables |
2490 | _python_set_color_variables |
| 1965 | |
2491 | |
| 1966 | local PYTHONPATH_template= separate_build_dirs= |
2492 | local PYTHONPATH_template separate_build_dirs |
| 1967 | |
2493 | |
| 1968 | while (($#)); do |
2494 | while (($#)); do |
| 1969 | case "$1" in |
2495 | case "$1" in |
| 1970 | -P|--PYTHONPATH) |
2496 | -P|--PYTHONPATH) |
| 1971 | PYTHONPATH_template="$2" |
2497 | PYTHONPATH_template="$2" |
| … | |
… | |
| 1989 | done |
2515 | done |
| 1990 | |
2516 | |
| 1991 | python_test_function() { |
2517 | python_test_function() { |
| 1992 | local evaluated_PYTHONPATH |
2518 | local evaluated_PYTHONPATH |
| 1993 | |
2519 | |
| 1994 | evaluated_PYTHONPATH="$(eval echo -n "${PYTHONPATH_template}")" |
2520 | eval "evaluated_PYTHONPATH=\"${PYTHONPATH_template}\"" |
| 1995 | |
2521 | |
| 1996 | _python_test_hook pre |
2522 | _PYTHON_TEST_FUNCTION="python_execute_py.test" _python_test_hook pre |
| 1997 | |
2523 | |
| 1998 | if [[ -n "${evaluated_PYTHONPATH}" ]]; then |
2524 | if [[ -n "${evaluated_PYTHONPATH}" ]]; then |
| 1999 | echo ${_BOLD}PYTHONPATH="${evaluated_PYTHONPATH}" py.test $([[ "${PYTHON_TEST_VERBOSITY}" -ge 2 ]] && echo -v) "$@"${_NORMAL} |
2525 | echo ${_BOLD}PYTHONPATH="${evaluated_PYTHONPATH}" py.test $([[ "${PYTHON_TEST_VERBOSITY}" -ge 2 ]] && echo -v) "$@"${_NORMAL} |
| 2000 | PYTHONPATH="${evaluated_PYTHONPATH}" py.test $([[ "${PYTHON_TEST_VERBOSITY}" -ge 2 ]] && echo -v) "$@" || return "$?" |
2526 | PYTHONPATH="${evaluated_PYTHONPATH}" py.test $([[ "${PYTHON_TEST_VERBOSITY}" -ge 2 ]] && echo -v) "$@" || return "$?" |
| 2001 | else |
2527 | else |
| 2002 | echo ${_BOLD}py.test $([[ "${PYTHON_TEST_VERBOSITY}" -gt 1 ]] && echo -v) "$@"${_NORMAL} |
2528 | echo ${_BOLD}py.test $([[ "${PYTHON_TEST_VERBOSITY}" -gt 1 ]] && echo -v) "$@"${_NORMAL} |
| 2003 | py.test $([[ "${PYTHON_TEST_VERBOSITY}" -gt 1 ]] && echo -v) "$@" || return "$?" |
2529 | py.test $([[ "${PYTHON_TEST_VERBOSITY}" -gt 1 ]] && echo -v) "$@" || return "$?" |
| 2004 | fi |
2530 | fi |
| 2005 | |
2531 | |
| 2006 | _python_test_hook post |
2532 | _PYTHON_TEST_FUNCTION="python_execute_py.test" _python_test_hook post |
| 2007 | } |
2533 | } |
| 2008 | if _python_package_supporting_installation_for_multiple_python_abis; then |
2534 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| 2009 | python_execute_function ${separate_build_dirs:+-s} python_test_function "$@" |
2535 | python_execute_function ${separate_build_dirs:+-s} python_test_function "$@" |
| 2010 | else |
2536 | else |
| 2011 | if [[ -n "${separate_build_dirs}" ]]; then |
2537 | if [[ -n "${separate_build_dirs}" ]]; then |
| … | |
… | |
| 2025 | # calls python_execute_trial_pre_hook() and python_execute_trial_post_hook(), if they are defined. |
2551 | # calls python_execute_trial_pre_hook() and python_execute_trial_post_hook(), if they are defined. |
| 2026 | python_execute_trial() { |
2552 | python_execute_trial() { |
| 2027 | _python_check_python_pkg_setup_execution |
2553 | _python_check_python_pkg_setup_execution |
| 2028 | _python_set_color_variables |
2554 | _python_set_color_variables |
| 2029 | |
2555 | |
| 2030 | local PYTHONPATH_template= separate_build_dirs= |
2556 | local PYTHONPATH_template separate_build_dirs |
| 2031 | |
2557 | |
| 2032 | while (($#)); do |
2558 | while (($#)); do |
| 2033 | case "$1" in |
2559 | case "$1" in |
| 2034 | -P|--PYTHONPATH) |
2560 | -P|--PYTHONPATH) |
| 2035 | PYTHONPATH_template="$2" |
2561 | PYTHONPATH_template="$2" |
| … | |
… | |
| 2053 | done |
2579 | done |
| 2054 | |
2580 | |
| 2055 | python_test_function() { |
2581 | python_test_function() { |
| 2056 | local evaluated_PYTHONPATH |
2582 | local evaluated_PYTHONPATH |
| 2057 | |
2583 | |
| 2058 | evaluated_PYTHONPATH="$(eval echo -n "${PYTHONPATH_template}")" |
2584 | eval "evaluated_PYTHONPATH=\"${PYTHONPATH_template}\"" |
| 2059 | |
2585 | |
| 2060 | _python_test_hook pre |
2586 | _PYTHON_TEST_FUNCTION="python_execute_trial" _python_test_hook pre |
| 2061 | |
2587 | |
| 2062 | if [[ -n "${evaluated_PYTHONPATH}" ]]; then |
2588 | if [[ -n "${evaluated_PYTHONPATH}" ]]; then |
| 2063 | echo ${_BOLD}PYTHONPATH="${evaluated_PYTHONPATH}" trial $([[ "${PYTHON_TEST_VERBOSITY}" -ge 4 ]] && echo --spew) "$@"${_NORMAL} |
2589 | echo ${_BOLD}PYTHONPATH="${evaluated_PYTHONPATH}" trial $([[ "${PYTHON_TEST_VERBOSITY}" -ge 4 ]] && echo --spew) "$@"${_NORMAL} |
| 2064 | PYTHONPATH="${evaluated_PYTHONPATH}" trial $([[ "${PYTHON_TEST_VERBOSITY}" -ge 4 ]] && echo --spew) "$@" || return "$?" |
2590 | PYTHONPATH="${evaluated_PYTHONPATH}" trial $([[ "${PYTHON_TEST_VERBOSITY}" -ge 4 ]] && echo --spew) "$@" || return "$?" |
| 2065 | else |
2591 | else |
| 2066 | echo ${_BOLD}trial $([[ "${PYTHON_TEST_VERBOSITY}" -ge 4 ]] && echo --spew) "$@"${_NORMAL} |
2592 | echo ${_BOLD}trial $([[ "${PYTHON_TEST_VERBOSITY}" -ge 4 ]] && echo --spew) "$@"${_NORMAL} |
| 2067 | trial $([[ "${PYTHON_TEST_VERBOSITY}" -ge 4 ]] && echo --spew) "$@" || return "$?" |
2593 | trial $([[ "${PYTHON_TEST_VERBOSITY}" -ge 4 ]] && echo --spew) "$@" || return "$?" |
| 2068 | fi |
2594 | fi |
| 2069 | |
2595 | |
| 2070 | _python_test_hook post |
2596 | _PYTHON_TEST_FUNCTION="python_execute_trial" _python_test_hook post |
| 2071 | } |
2597 | } |
| 2072 | if _python_package_supporting_installation_for_multiple_python_abis; then |
2598 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| 2073 | python_execute_function ${separate_build_dirs:+-s} python_test_function "$@" |
2599 | python_execute_function ${separate_build_dirs:+-s} python_test_function "$@" |
| 2074 | else |
2600 | else |
| 2075 | if [[ -n "${separate_build_dirs}" ]]; then |
2601 | if [[ -n "${separate_build_dirs}" ]]; then |
| … | |
… | |
| 2116 | |
2642 | |
| 2117 | _python_clean_compiled_modules() { |
2643 | _python_clean_compiled_modules() { |
| 2118 | _python_initialize_prefix_variables |
2644 | _python_initialize_prefix_variables |
| 2119 | _python_set_color_variables |
2645 | _python_set_color_variables |
| 2120 | |
2646 | |
| 2121 | [[ "${FUNCNAME[1]}" =~ ^(python_mod_optimize|python_mod_compile|python_mod_cleanup)$ ]] || die "${FUNCNAME}(): Invalid usage" |
2647 | [[ "${FUNCNAME[1]}" =~ ^(python_mod_optimize|python_mod_cleanup)$ ]] || die "${FUNCNAME}(): Invalid usage" |
| 2122 | |
2648 | |
| 2123 | local base_module_name compiled_file compiled_files=() dir path py_file root |
2649 | local base_module_name compiled_file compiled_files=() dir path py_file root |
| 2124 | |
2650 | |
| 2125 | # Strip trailing slash from EROOT. |
2651 | # Strip trailing slash from EROOT. |
| 2126 | root="${EROOT%/}" |
2652 | root="${EROOT%/}" |
| … | |
… | |
| 2175 | if [[ "${dir}" == "__pycache__" ]]; then |
2701 | if [[ "${dir}" == "__pycache__" ]]; then |
| 2176 | base_module_name="${compiled_file##*/}" |
2702 | base_module_name="${compiled_file##*/}" |
| 2177 | base_module_name="${base_module_name%\$py.class}" |
2703 | base_module_name="${base_module_name%\$py.class}" |
| 2178 | py_file="${compiled_file%__pycache__/*}${base_module_name}.py" |
2704 | py_file="${compiled_file%__pycache__/*}${base_module_name}.py" |
| 2179 | else |
2705 | else |
| 2180 | py_file="${compiled_file%\$py.class}" |
2706 | py_file="${compiled_file%\$py.class}.py" |
| 2181 | fi |
2707 | fi |
| 2182 | if [[ "${EBUILD_PHASE}" == "postinst" ]]; then |
2708 | if [[ "${EBUILD_PHASE}" == "postinst" ]]; then |
| 2183 | [[ -f "${py_file}" && "${compiled_file}" -nt "${py_file}" ]] && continue |
2709 | [[ -f "${py_file}" && "${compiled_file}" -nt "${py_file}" ]] && continue |
| 2184 | else |
2710 | else |
| 2185 | [[ -f "${py_file}" ]] && continue |
2711 | [[ -f "${py_file}" ]] && continue |
| … | |
… | |
| 2203 | done |
2729 | done |
| 2204 | done |
2730 | done |
| 2205 | } |
2731 | } |
| 2206 | |
2732 | |
| 2207 | # @FUNCTION: python_mod_optimize |
2733 | # @FUNCTION: python_mod_optimize |
| 2208 | # @USAGE: [options] [directory|file] |
2734 | # @USAGE: [--allow-evaluated-non-sitedir-paths] [-d directory] [-f] [-l] [-q] [-x regular_expression] [--] <file|directory> [files|directories] |
| 2209 | # @DESCRIPTION: |
2735 | # @DESCRIPTION: |
| 2210 | # If no arguments supplied, it will recompile not recursively all modules |
2736 | # Byte-compile specified Python modules. |
| 2211 | # under sys.path (eg. /usr/lib/python2.6, /usr/lib/python2.6/site-packages). |
|
|
| 2212 | # |
|
|
| 2213 | # If supplied with arguments, it will recompile all modules recursively |
|
|
| 2214 | # in the supplied directory. |
|
|
| 2215 | # |
|
|
| 2216 | # Options passed to this function are passed to compileall.py. |
2737 | # -d, -f, -l, -q and -x options passed to this function are passed to compileall.py. |
| 2217 | # |
2738 | # |
| 2218 | # This function can be used only in pkg_postinst() phase. |
2739 | # This function can be used only in pkg_postinst() phase. |
| 2219 | python_mod_optimize() { |
2740 | python_mod_optimize() { |
|
|
2741 | if [[ "${EBUILD_PHASE}" != "postinst" ]]; then |
|
|
2742 | die "${FUNCNAME}() can be used only in pkg_postinst() phase" |
|
|
2743 | fi |
|
|
2744 | |
| 2220 | _python_check_python_pkg_setup_execution |
2745 | _python_check_python_pkg_setup_execution |
| 2221 | _python_initialize_prefix_variables |
2746 | _python_initialize_prefix_variables |
| 2222 | |
2747 | |
| 2223 | # Check if phase is pkg_postinst(). |
2748 | if ! has "${EAPI:-0}" 0 1 2 || _python_package_supporting_installation_for_multiple_python_abis || _python_implementation || [[ "${CATEGORY}/${PN}" == "sys-apps/portage" ]]; then |
| 2224 | [[ "${EBUILD_PHASE}" != "postinst" ]] && die "${FUNCNAME}() can be used only in pkg_postinst() phase" |
|
|
| 2225 | |
|
|
| 2226 | if ! has "${EAPI:-0}" 0 1 2 || _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
| 2227 | # PYTHON_ABI variable cannot be local in packages not supporting installation for multiple Python ABIs. |
2749 | # PYTHON_ABI variable cannot be local in packages not supporting installation for multiple Python ABIs. |
| 2228 | local dir file iterated_PYTHON_ABIS options=() other_dirs=() other_files=() previous_PYTHON_ABI="${PYTHON_ABI}" return_code root site_packages_absolute_dirs=() site_packages_dirs=() site_packages_absolute_files=() site_packages_files=() |
2750 | 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 |
| 2229 | |
2751 | |
| 2230 | if _python_package_supporting_installation_for_multiple_python_abis; then |
2752 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| 2231 | if has "${EAPI:-0}" 0 1 2 3 && [[ -z "${PYTHON_ABIS}" ]]; then |
2753 | if has "${EAPI:-0}" 0 1 2 3 && [[ -z "${PYTHON_ABIS}" ]]; then |
| 2232 | die "${FUNCNAME}(): python_pkg_setup() or python_execute_function() not called" |
2754 | die "${FUNCNAME}(): python_pkg_setup() or python_execute_function() not called" |
| 2233 | fi |
2755 | fi |
| … | |
… | |
| 2243 | # Strip trailing slash from EROOT. |
2765 | # Strip trailing slash from EROOT. |
| 2244 | root="${EROOT%/}" |
2766 | root="${EROOT%/}" |
| 2245 | |
2767 | |
| 2246 | while (($#)); do |
2768 | while (($#)); do |
| 2247 | case "$1" in |
2769 | case "$1" in |
|
|
2770 | --allow-evaluated-non-sitedir-paths) |
|
|
2771 | allow_evaluated_non_sitedir_paths="1" |
|
|
2772 | ;; |
| 2248 | -l|-f|-q) |
2773 | -l|-f|-q) |
| 2249 | options+=("$1") |
2774 | options+=("$1") |
| 2250 | ;; |
2775 | ;; |
| 2251 | -d|-x) |
2776 | -d|-x) |
| 2252 | options+=("$1" "$2") |
2777 | options+=("$1" "$2") |
| … | |
… | |
| 2264 | ;; |
2789 | ;; |
| 2265 | esac |
2790 | esac |
| 2266 | shift |
2791 | shift |
| 2267 | done |
2792 | done |
| 2268 | |
2793 | |
|
|
2794 | if [[ "${allow_evaluated_non_sitedir_paths}" == "1" ]] && ! _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
2795 | die "${FUNCNAME}(): '--allow-evaluated-non-sitedir-paths' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
|
|
2796 | fi |
|
|
2797 | |
| 2269 | if [[ "$#" -eq 0 ]]; then |
2798 | if [[ "$#" -eq 0 ]]; then |
| 2270 | _python_set_color_variables |
2799 | die "${FUNCNAME}(): Missing files or directories" |
| 2271 | |
|
|
| 2272 | echo |
|
|
| 2273 | echo " ${_RED}*${_NORMAL} ${_RED}Deprecation Warning: Not passing of paths to ${FUNCNAME}() is deprecated and will be${_NORMAL}" |
|
|
| 2274 | echo " ${_RED}*${_NORMAL} ${_RED}disallowed on 2010-09-01. Call ${FUNCNAME}() with paths to Python modules.${_NORMAL}" |
|
|
| 2275 | echo " ${_RED}*${_NORMAL} ${_RED}The ebuild needs to be fixed. Please report a bug, if it has not been already reported.${_NORMAL}" |
|
|
| 2276 | echo |
|
|
| 2277 | |
|
|
| 2278 | einfo &> /dev/null |
|
|
| 2279 | einfo "Deprecation Warning: Not passing of paths to ${FUNCNAME}() is deprecated and will be" &> /dev/null |
|
|
| 2280 | einfo "disallowed on 2010-09-01. Call ${FUNCNAME}() with paths to Python modules." &> /dev/null |
|
|
| 2281 | einfo "The ebuild needs to be fixed. Please report a bug, if it has not been already reported." &> /dev/null |
|
|
| 2282 | einfo &> /dev/null |
|
|
| 2283 | fi |
2800 | fi |
| 2284 | |
2801 | |
| 2285 | while (($#)); do |
2802 | while (($#)); do |
| 2286 | if [[ "$1" =~ ^($|(\.|\.\.|/)($|/)) ]]; then |
2803 | if [[ "$1" =~ ^($|(\.|\.\.|/)($|/)) ]]; then |
| 2287 | die "${FUNCNAME}(): Invalid argument '$1'" |
2804 | die "${FUNCNAME}(): Invalid argument '$1'" |
| 2288 | elif ! _python_implementation && [[ "$1" =~ ^/usr/lib(32|64)?/python[[:digit:]]+\.[[:digit:]]+ ]]; then |
2805 | elif ! _python_implementation && [[ "$1" =~ ^/usr/lib(32|64)?/python[[:digit:]]+\.[[:digit:]]+ ]]; then |
| 2289 | die "${FUNCNAME}(): Paths of directories / files in site-packages directories must be relative to site-packages directories" |
2806 | die "${FUNCNAME}(): Paths of directories / files in site-packages directories must be relative to site-packages directories" |
| 2290 | elif [[ "$1" =~ ^/ ]]; then |
2807 | elif [[ "$1" =~ ^/ ]]; then |
| 2291 | if _python_package_supporting_installation_for_multiple_python_abis; then |
2808 | if _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
2809 | if [[ "${allow_evaluated_non_sitedir_paths}" != "1" ]]; then |
| 2292 | die "${FUNCNAME}(): Absolute paths cannot be used in ebuilds of packages supporting installation for multiple Python ABIs" |
2810 | die "${FUNCNAME}(): Absolute paths cannot be used in ebuilds of packages supporting installation for multiple Python ABIs" |
| 2293 | fi |
2811 | fi |
| 2294 | if [[ -d "${root}$1" ]]; then |
2812 | if [[ "$1" != *\$* ]]; then |
| 2295 | other_dirs+=("${root}$1") |
2813 | die "${FUNCNAME}(): '$1' has invalid syntax" |
| 2296 | elif [[ -f "${root}$1" ]]; then |
2814 | fi |
| 2297 | other_files+=("${root}$1") |
2815 | if [[ "$1" == *.py ]]; then |
| 2298 | elif [[ -e "${root}$1" ]]; then |
2816 | evaluated_files+=("$1") |
| 2299 | eerror "${FUNCNAME}(): '${root}$1' is not a regular file or a directory" |
2817 | else |
|
|
2818 | evaluated_dirs+=("$1") |
|
|
2819 | fi |
| 2300 | else |
2820 | else |
|
|
2821 | if [[ -d "${root}$1" ]]; then |
|
|
2822 | other_dirs+=("${root}$1") |
|
|
2823 | elif [[ -f "${root}$1" ]]; then |
|
|
2824 | other_files+=("${root}$1") |
|
|
2825 | elif [[ -e "${root}$1" ]]; then |
|
|
2826 | eerror "${FUNCNAME}(): '${root}$1' is not a regular file or a directory" |
|
|
2827 | else |
| 2301 | eerror "${FUNCNAME}(): '${root}$1' does not exist" |
2828 | eerror "${FUNCNAME}(): '${root}$1' does not exist" |
|
|
2829 | fi |
| 2302 | fi |
2830 | fi |
| 2303 | else |
2831 | else |
| 2304 | for PYTHON_ABI in ${iterated_PYTHON_ABIS}; do |
2832 | for PYTHON_ABI in ${iterated_PYTHON_ABIS}; do |
| 2305 | if [[ -d "${root}$(python_get_sitedir)/$1" ]]; then |
2833 | if [[ -d "${root}$(python_get_sitedir)/$1" ]]; then |
| 2306 | site_packages_dirs+=("$1") |
2834 | site_packages_dirs+=("$1") |
| … | |
… | |
| 2320 | |
2848 | |
| 2321 | # Set additional options. |
2849 | # Set additional options. |
| 2322 | options+=("-q") |
2850 | options+=("-q") |
| 2323 | |
2851 | |
| 2324 | for PYTHON_ABI in ${iterated_PYTHON_ABIS}; do |
2852 | for PYTHON_ABI in ${iterated_PYTHON_ABIS}; do |
| 2325 | if ((${#site_packages_dirs[@]})) || ((${#site_packages_files[@]})); then |
2853 | if ((${#site_packages_dirs[@]})) || ((${#site_packages_files[@]})) || ((${#evaluated_dirs[@]})) || ((${#evaluated_files[@]})); then |
| 2326 | return_code="0" |
2854 | return_code="0" |
|
|
2855 | stderr="" |
| 2327 | ebegin "Compilation and optimization of Python modules for $(python_get_implementation) $(python_get_version)" |
2856 | ebegin "Compilation and optimization of Python modules for $(python_get_implementation_and_version)" |
| 2328 | if ((${#site_packages_dirs[@]})); then |
2857 | if ((${#site_packages_dirs[@]})) || ((${#evaluated_dirs[@]})); then |
| 2329 | for dir in "${site_packages_dirs[@]}"; do |
2858 | for dir in "${site_packages_dirs[@]}"; do |
| 2330 | site_packages_absolute_dirs+=("${root}$(python_get_sitedir)/${dir}") |
2859 | dirs+=("${root}$(python_get_sitedir)/${dir}") |
| 2331 | done |
2860 | done |
| 2332 | "$(PYTHON)" "${root}$(python_get_libdir)/compileall.py" "${options[@]}" "${site_packages_absolute_dirs[@]}" || return_code="1" |
2861 | for dir in "${evaluated_dirs[@]}"; do |
|
|
2862 | eval "dirs+=(\"\${root}${dir}\")" |
|
|
2863 | done |
|
|
2864 | stderr+="${stderr:+$'\n'}$("$(PYTHON)" -m compileall "${options[@]}" "${dirs[@]}" 2>&1)" || return_code="1" |
| 2333 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" != "Jython" ]]; then |
2865 | if ! has "$(_python_get_implementation "${PYTHON_ABI}")" Jython PyPy; then |
| 2334 | "$(PYTHON)" -O "${root}$(python_get_libdir)/compileall.py" "${options[@]}" "${site_packages_absolute_dirs[@]}" &> /dev/null || return_code="1" |
2866 | "$(PYTHON)" -O -m compileall "${options[@]}" "${dirs[@]}" &> /dev/null || return_code="1" |
| 2335 | fi |
2867 | fi |
| 2336 | _python_clean_compiled_modules "${site_packages_absolute_dirs[@]}" |
2868 | _python_clean_compiled_modules "${dirs[@]}" |
| 2337 | fi |
2869 | fi |
| 2338 | if ((${#site_packages_files[@]})); then |
2870 | if ((${#site_packages_files[@]})) || ((${#evaluated_files[@]})); then |
| 2339 | for file in "${site_packages_files[@]}"; do |
2871 | for file in "${site_packages_files[@]}"; do |
| 2340 | site_packages_absolute_files+=("${root}$(python_get_sitedir)/${file}") |
2872 | files+=("${root}$(python_get_sitedir)/${file}") |
| 2341 | done |
2873 | done |
| 2342 | "$(PYTHON)" "${root}$(python_get_libdir)/py_compile.py" "${site_packages_absolute_files[@]}" || return_code="1" |
2874 | for file in "${evaluated_files[@]}"; do |
|
|
2875 | eval "files+=(\"\${root}${file}\")" |
|
|
2876 | done |
|
|
2877 | stderr+="${stderr:+$'\n'}$("$(PYTHON)" -m py_compile "${files[@]}" 2>&1)" || return_code="1" |
| 2343 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" != "Jython" ]]; then |
2878 | if ! has "$(_python_get_implementation "${PYTHON_ABI}")" Jython PyPy; then |
| 2344 | "$(PYTHON)" -O "${root}$(python_get_libdir)/py_compile.py" "${site_packages_absolute_files[@]}" &> /dev/null || return_code="1" |
2879 | "$(PYTHON)" -O -m py_compile "${files[@]}" &> /dev/null || return_code="1" |
| 2345 | fi |
2880 | fi |
| 2346 | _python_clean_compiled_modules "${site_packages_absolute_files[@]}" |
2881 | _python_clean_compiled_modules "${files[@]}" |
| 2347 | fi |
2882 | fi |
| 2348 | eend "${return_code}" |
2883 | eend "${return_code}" |
|
|
2884 | if [[ -n "${stderr}" ]]; then |
|
|
2885 | eerror "Syntax errors / warnings in Python modules for $(python_get_implementation_and_version):" &> /dev/null |
|
|
2886 | while read stderr_line; do |
|
|
2887 | eerror " ${stderr_line}" |
|
|
2888 | done <<< "${stderr}" |
| 2349 | fi |
2889 | fi |
| 2350 | unset site_packages_absolute_dirs site_packages_absolute_files |
2890 | fi |
|
|
2891 | unset dirs files |
| 2351 | done |
2892 | done |
| 2352 | |
2893 | |
| 2353 | if _python_package_supporting_installation_for_multiple_python_abis; then |
2894 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| 2354 | # Restore previous value of PYTHON_ABI. |
2895 | # Restore previous value of PYTHON_ABI. |
| 2355 | if [[ -n "${previous_PYTHON_ABI}" ]]; then |
2896 | if [[ -n "${previous_PYTHON_ABI}" ]]; then |
| … | |
… | |
| 2359 | fi |
2900 | fi |
| 2360 | fi |
2901 | fi |
| 2361 | |
2902 | |
| 2362 | if ((${#other_dirs[@]})) || ((${#other_files[@]})); then |
2903 | if ((${#other_dirs[@]})) || ((${#other_files[@]})); then |
| 2363 | return_code="0" |
2904 | return_code="0" |
|
|
2905 | stderr="" |
| 2364 | ebegin "Compilation and optimization of Python modules placed outside of site-packages directories for $(python_get_implementation) $(python_get_version)" |
2906 | ebegin "Compilation and optimization of Python modules placed outside of site-packages directories for $(python_get_implementation_and_version)" |
| 2365 | if ((${#other_dirs[@]})); then |
2907 | if ((${#other_dirs[@]})); then |
| 2366 | "$(PYTHON ${PYTHON_ABI})" "${root}$(python_get_libdir)/compileall.py" "${options[@]}" "${other_dirs[@]}" || return_code="1" |
2908 | stderr+="${stderr:+$'\n'}$("$(PYTHON ${PYTHON_ABI})" -m compileall "${options[@]}" "${other_dirs[@]}" 2>&1)" || return_code="1" |
| 2367 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" != "Jython" ]]; then |
2909 | if ! has "$(_python_get_implementation "${PYTHON_ABI}")" Jython PyPy; then |
| 2368 | "$(PYTHON ${PYTHON_ABI})" -O "${root}$(python_get_libdir)/compileall.py" "${options[@]}" "${other_dirs[@]}" &> /dev/null || return_code="1" |
2910 | "$(PYTHON ${PYTHON_ABI})" -O -m compileall "${options[@]}" "${other_dirs[@]}" &> /dev/null || return_code="1" |
| 2369 | fi |
2911 | fi |
| 2370 | _python_clean_compiled_modules "${other_dirs[@]}" |
2912 | _python_clean_compiled_modules "${other_dirs[@]}" |
| 2371 | fi |
2913 | fi |
| 2372 | if ((${#other_files[@]})); then |
2914 | if ((${#other_files[@]})); then |
| 2373 | "$(PYTHON ${PYTHON_ABI})" "${root}$(python_get_libdir)/py_compile.py" "${other_files[@]}" || return_code="1" |
2915 | stderr+="${stderr:+$'\n'}$("$(PYTHON ${PYTHON_ABI})" -m py_compile "${other_files[@]}" 2>&1)" || return_code="1" |
| 2374 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" != "Jython" ]]; then |
2916 | if ! has "$(_python_get_implementation "${PYTHON_ABI}")" Jython PyPy; then |
| 2375 | "$(PYTHON ${PYTHON_ABI})" -O "${root}$(python_get_libdir)/py_compile.py" "${other_files[@]}" &> /dev/null || return_code="1" |
2917 | "$(PYTHON ${PYTHON_ABI})" -O -m py_compile "${other_files[@]}" &> /dev/null || return_code="1" |
| 2376 | fi |
2918 | fi |
| 2377 | _python_clean_compiled_modules "${other_dirs[@]}" |
2919 | _python_clean_compiled_modules "${other_files[@]}" |
| 2378 | fi |
2920 | fi |
| 2379 | eend "${return_code}" |
2921 | eend "${return_code}" |
|
|
2922 | if [[ -n "${stderr}" ]]; then |
|
|
2923 | eerror "Syntax errors / warnings in Python modules placed outside of site-packages directories for $(python_get_implementation_and_version):" &> /dev/null |
|
|
2924 | while read stderr_line; do |
|
|
2925 | eerror " ${stderr_line}" |
|
|
2926 | done <<< "${stderr}" |
|
|
2927 | fi |
| 2380 | fi |
2928 | fi |
| 2381 | else |
2929 | else |
| 2382 | # Deprecated part of python_mod_optimize() |
2930 | # Deprecated part of python_mod_optimize() |
|
|
2931 | ewarn |
|
|
2932 | ewarn "Deprecation Warning: Usage of ${FUNCNAME}() in packages not supporting installation" |
|
|
2933 | ewarn "for multiple Python ABIs in EAPI <=2 is deprecated and will be disallowed on 2011-08-01." |
|
|
2934 | ewarn "Use EAPI >=3 and call ${FUNCNAME}() with paths having appropriate syntax." |
|
|
2935 | ewarn "The ebuild needs to be fixed. Please report a bug, if it has not been already reported." |
|
|
2936 | ewarn |
| 2383 | |
2937 | |
| 2384 | local myroot mydirs=() myfiles=() myopts=() return_code="0" |
2938 | local myroot mydirs=() myfiles=() myopts=() return_code="0" |
| 2385 | |
2939 | |
| 2386 | # strip trailing slash |
2940 | # strip trailing slash |
| 2387 | myroot="${EROOT%/}" |
2941 | myroot="${EROOT%/}" |
| … | |
… | |
| 2409 | esac |
2963 | esac |
| 2410 | shift |
2964 | shift |
| 2411 | done |
2965 | done |
| 2412 | |
2966 | |
| 2413 | if [[ "$#" -eq 0 ]]; then |
2967 | if [[ "$#" -eq 0 ]]; then |
| 2414 | _python_set_color_variables |
2968 | die "${FUNCNAME}(): Missing files or directories" |
| 2415 | |
|
|
| 2416 | echo |
|
|
| 2417 | echo " ${_RED}*${_NORMAL} ${_RED}Deprecation Warning: Not passing of paths to ${FUNCNAME}() is deprecated and will be${_NORMAL}" |
|
|
| 2418 | echo " ${_RED}*${_NORMAL} ${_RED}disallowed on 2010-09-01. Call ${FUNCNAME}() with paths to Python modules.${_NORMAL}" |
|
|
| 2419 | echo " ${_RED}*${_NORMAL} ${_RED}The ebuild needs to be fixed. Please report a bug, if it has not been already reported.${_NORMAL}" |
|
|
| 2420 | echo |
|
|
| 2421 | |
|
|
| 2422 | einfo &> /dev/null |
|
|
| 2423 | einfo "Deprecation Warning: Not passing of paths to ${FUNCNAME}() is deprecated and will be" &> /dev/null |
|
|
| 2424 | einfo "disallowed on 2010-09-01. Call ${FUNCNAME}() with paths to Python modules." &> /dev/null |
|
|
| 2425 | einfo "The ebuild needs to be fixed. Please report a bug, if it has not been already reported." &> /dev/null |
|
|
| 2426 | einfo &> /dev/null |
|
|
| 2427 | fi |
2969 | fi |
| 2428 | |
2970 | |
| 2429 | while (($#)); do |
2971 | while (($#)); do |
| 2430 | if [[ "$1" =~ ^($|(\.|\.\.|/)($|/)) ]]; then |
2972 | if [[ "$1" =~ ^($|(\.|\.\.|/)($|/)) ]]; then |
| 2431 | die "${FUNCNAME}(): Invalid argument '$1'" |
2973 | die "${FUNCNAME}(): Invalid argument '$1'" |
| 2432 | elif [[ -d "${myroot}/${1#/}" ]]; then |
2974 | elif [[ -d "${myroot}/${1#/}" ]]; then |
| 2433 | mydirs+=("${myroot}/${1#/}") |
2975 | mydirs+=("${myroot}/${1#/}") |
| 2434 | elif [[ -f "${myroot}/${1#/}" ]]; then |
2976 | elif [[ -f "${myroot}/${1#/}" ]]; then |
| 2435 | # Files are passed to python_mod_compile which is EROOT-aware |
2977 | myfiles+=("${myroot}/${1#/}") |
| 2436 | myfiles+=("$1") |
|
|
| 2437 | elif [[ -e "${myroot}/${1#/}" ]]; then |
2978 | elif [[ -e "${myroot}/${1#/}" ]]; then |
| 2438 | eerror "${FUNCNAME}(): ${myroot}/${1#/} is not a regular file or directory" |
2979 | eerror "${FUNCNAME}(): ${myroot}/${1#/} is not a regular file or directory" |
| 2439 | else |
2980 | else |
| 2440 | eerror "${FUNCNAME}(): ${myroot}/${1#/} does not exist" |
2981 | eerror "${FUNCNAME}(): ${myroot}/${1#/} does not exist" |
| 2441 | fi |
2982 | fi |
| … | |
… | |
| 2453 | "$(PYTHON ${PYTHON_ABI})" -O "${myroot}$(python_get_libdir)/compileall.py" "${myopts[@]}" "${mydirs[@]}" &> /dev/null || return_code="1" |
2994 | "$(PYTHON ${PYTHON_ABI})" -O "${myroot}$(python_get_libdir)/compileall.py" "${myopts[@]}" "${mydirs[@]}" &> /dev/null || return_code="1" |
| 2454 | _python_clean_compiled_modules "${mydirs[@]}" |
2995 | _python_clean_compiled_modules "${mydirs[@]}" |
| 2455 | fi |
2996 | fi |
| 2456 | |
2997 | |
| 2457 | if ((${#myfiles[@]})); then |
2998 | if ((${#myfiles[@]})); then |
|
|
2999 | "$(PYTHON ${PYTHON_ABI})" "${myroot}$(python_get_libdir)/py_compile.py" "${myfiles[@]}" || return_code="1" |
|
|
3000 | "$(PYTHON ${PYTHON_ABI})" -O "${myroot}$(python_get_libdir)/py_compile.py" "${myfiles[@]}" &> /dev/null || return_code="1" |
| 2458 | python_mod_compile "${myfiles[@]}" |
3001 | _python_clean_compiled_modules "${myfiles[@]}" |
| 2459 | fi |
3002 | fi |
| 2460 | |
3003 | |
| 2461 | eend "${return_code}" |
3004 | eend "${return_code}" |
| 2462 | fi |
3005 | fi |
| 2463 | } |
3006 | } |
| 2464 | |
3007 | |
| 2465 | # @FUNCTION: python_mod_cleanup |
3008 | # @FUNCTION: python_mod_cleanup |
| 2466 | # @USAGE: [directory|file] |
3009 | # @USAGE: [--allow-evaluated-non-sitedir-paths] [--] <file|directory> [files|directories] |
| 2467 | # @DESCRIPTION: |
3010 | # @DESCRIPTION: |
| 2468 | # Run with optional arguments, where arguments are Python modules. If none given, |
3011 | # Delete orphaned byte-compiled Python modules corresponding to specified Python modules. |
| 2469 | # it will look in /usr/lib/python[0-9].[0-9]. |
|
|
| 2470 | # |
|
|
| 2471 | # It will recursively scan all compiled Python modules in the directories and |
|
|
| 2472 | # determine if they are orphaned (i.e. their corresponding .py files are missing.) |
|
|
| 2473 | # If they are, then it will remove their corresponding .pyc and .pyo files. |
|
|
| 2474 | # |
3012 | # |
| 2475 | # This function can be used only in pkg_postrm() phase. |
3013 | # This function can be used only in pkg_postrm() phase. |
| 2476 | python_mod_cleanup() { |
3014 | python_mod_cleanup() { |
|
|
3015 | if [[ "${EBUILD_PHASE}" != "postrm" ]]; then |
|
|
3016 | die "${FUNCNAME}() can be used only in pkg_postrm() phase" |
|
|
3017 | fi |
|
|
3018 | |
| 2477 | _python_check_python_pkg_setup_execution |
3019 | _python_check_python_pkg_setup_execution |
| 2478 | _python_initialize_prefix_variables |
3020 | _python_initialize_prefix_variables |
| 2479 | |
3021 | |
| 2480 | local dir iterated_PYTHON_ABIS PYTHON_ABI="${PYTHON_ABI}" root search_paths=() sitedir |
3022 | local allow_evaluated_non_sitedir_paths="0" dir iterated_PYTHON_ABIS PYTHON_ABI="${PYTHON_ABI}" root search_paths=() sitedir |
| 2481 | |
|
|
| 2482 | # Check if phase is pkg_postrm(). |
|
|
| 2483 | [[ "${EBUILD_PHASE}" != "postrm" ]] && die "${FUNCNAME}() can be used only in pkg_postrm() phase" |
|
|
| 2484 | |
3023 | |
| 2485 | if _python_package_supporting_installation_for_multiple_python_abis; then |
3024 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| 2486 | if has "${EAPI:-0}" 0 1 2 3 && [[ -z "${PYTHON_ABIS}" ]]; then |
3025 | if has "${EAPI:-0}" 0 1 2 3 && [[ -z "${PYTHON_ABIS}" ]]; then |
| 2487 | die "${FUNCNAME}(): python_pkg_setup() or python_execute_function() not called" |
3026 | die "${FUNCNAME}(): python_pkg_setup() or python_execute_function() not called" |
| 2488 | fi |
3027 | fi |
| … | |
… | |
| 2496 | fi |
3035 | fi |
| 2497 | |
3036 | |
| 2498 | # Strip trailing slash from EROOT. |
3037 | # Strip trailing slash from EROOT. |
| 2499 | root="${EROOT%/}" |
3038 | root="${EROOT%/}" |
| 2500 | |
3039 | |
|
|
3040 | while (($#)); do |
|
|
3041 | case "$1" in |
|
|
3042 | --allow-evaluated-non-sitedir-paths) |
|
|
3043 | allow_evaluated_non_sitedir_paths="1" |
|
|
3044 | ;; |
|
|
3045 | --) |
|
|
3046 | shift |
|
|
3047 | break |
|
|
3048 | ;; |
|
|
3049 | -*) |
|
|
3050 | die "${FUNCNAME}(): Unrecognized option '$1'" |
|
|
3051 | ;; |
|
|
3052 | *) |
|
|
3053 | break |
|
|
3054 | ;; |
|
|
3055 | esac |
|
|
3056 | shift |
|
|
3057 | done |
|
|
3058 | |
|
|
3059 | if [[ "${allow_evaluated_non_sitedir_paths}" == "1" ]] && ! _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
3060 | die "${FUNCNAME}(): '--allow-evaluated-non-sitedir-paths' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
|
|
3061 | fi |
|
|
3062 | |
| 2501 | if [[ "$#" -gt 0 ]]; then |
3063 | if [[ "$#" -eq 0 ]]; then |
| 2502 | if ! has "${EAPI:-0}" 0 1 2 || _python_package_supporting_installation_for_multiple_python_abis; then |
3064 | die "${FUNCNAME}(): Missing files or directories" |
|
|
3065 | fi |
|
|
3066 | |
|
|
3067 | if ! has "${EAPI:-0}" 0 1 2 || _python_package_supporting_installation_for_multiple_python_abis || _python_implementation || [[ "${CATEGORY}/${PN}" == "sys-apps/portage" ]]; then |
| 2503 | while (($#)); do |
3068 | while (($#)); do |
| 2504 | if [[ "$1" =~ ^($|(\.|\.\.|/)($|/)) ]]; then |
3069 | if [[ "$1" =~ ^($|(\.|\.\.|/)($|/)) ]]; then |
| 2505 | die "${FUNCNAME}(): Invalid argument '$1'" |
3070 | die "${FUNCNAME}(): Invalid argument '$1'" |
| 2506 | elif ! _python_implementation && [[ "$1" =~ ^/usr/lib(32|64)?/python[[:digit:]]+\.[[:digit:]]+ ]]; then |
3071 | elif ! _python_implementation && [[ "$1" =~ ^/usr/lib(32|64)?/python[[:digit:]]+\.[[:digit:]]+ ]]; then |
| 2507 | die "${FUNCNAME}(): Paths of directories / files in site-packages directories must be relative to site-packages directories" |
3072 | die "${FUNCNAME}(): Paths of directories / files in site-packages directories must be relative to site-packages directories" |
| 2508 | elif [[ "$1" =~ ^/ ]]; then |
3073 | elif [[ "$1" =~ ^/ ]]; then |
| 2509 | if _python_package_supporting_installation_for_multiple_python_abis; then |
3074 | if _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
3075 | if [[ "${allow_evaluated_non_sitedir_paths}" != "1" ]]; then |
| 2510 | die "${FUNCNAME}(): Absolute paths cannot be used in ebuilds of packages supporting installation for multiple Python ABIs" |
3076 | die "${FUNCNAME}(): Absolute paths cannot be used in ebuilds of packages supporting installation for multiple Python ABIs" |
| 2511 | fi |
3077 | fi |
|
|
3078 | if [[ "$1" != *\$* ]]; then |
|
|
3079 | die "${FUNCNAME}(): '$1' has invalid syntax" |
|
|
3080 | fi |
|
|
3081 | for PYTHON_ABI in ${iterated_PYTHON_ABIS}; do |
|
|
3082 | eval "search_paths+=(\"\${root}$1\")" |
|
|
3083 | done |
|
|
3084 | else |
| 2512 | search_paths+=("${root}$1") |
3085 | search_paths+=("${root}$1") |
|
|
3086 | fi |
| 2513 | else |
3087 | else |
| 2514 | for PYTHON_ABI in ${iterated_PYTHON_ABIS}; do |
3088 | for PYTHON_ABI in ${iterated_PYTHON_ABIS}; do |
| 2515 | search_paths+=("${root}$(python_get_sitedir)/$1") |
3089 | search_paths+=("${root}$(python_get_sitedir)/$1") |
| 2516 | done |
|
|
| 2517 | fi |
|
|
| 2518 | shift |
|
|
| 2519 | done |
|
|
| 2520 | else |
|
|
| 2521 | # Deprecated part of python_mod_cleanup() |
|
|
| 2522 | |
|
|
| 2523 | search_paths=("${@#/}") |
|
|
| 2524 | search_paths=("${search_paths[@]/#/${root}/}") |
|
|
| 2525 | fi |
|
|
| 2526 | else |
|
|
| 2527 | _python_set_color_variables |
|
|
| 2528 | |
|
|
| 2529 | echo |
|
|
| 2530 | echo " ${_RED}*${_NORMAL} ${_RED}Deprecation Warning: Not passing of paths to ${FUNCNAME}() is deprecated and will be${_NORMAL}" |
|
|
| 2531 | echo " ${_RED}*${_NORMAL} ${_RED}disallowed on 2010-09-01. Call ${FUNCNAME}() with paths to Python modules.${_NORMAL}" |
|
|
| 2532 | echo " ${_RED}*${_NORMAL} ${_RED}The ebuild needs to be fixed. Please report a bug, if it has not been already reported.${_NORMAL}" |
|
|
| 2533 | echo |
|
|
| 2534 | |
|
|
| 2535 | einfo &> /dev/null |
|
|
| 2536 | einfo "Deprecation Warning: Not passing of paths to ${FUNCNAME}() is deprecated and will be" &> /dev/null |
|
|
| 2537 | einfo "disallowed on 2010-09-01. Call ${FUNCNAME}() with paths to Python modules." &> /dev/null |
|
|
| 2538 | einfo "The ebuild needs to be fixed. Please report a bug, if it has not been already reported." &> /dev/null |
|
|
| 2539 | einfo &> /dev/null |
|
|
| 2540 | |
|
|
| 2541 | for dir in "${root}"/usr/lib*; do |
|
|
| 2542 | if [[ -d "${dir}" && ! -L "${dir}" ]]; then |
|
|
| 2543 | for sitedir in "${dir}"/python*/site-packages; do |
|
|
| 2544 | if [[ -d "${sitedir}" ]]; then |
|
|
| 2545 | search_paths+=("${sitedir}") |
|
|
| 2546 | fi |
|
|
| 2547 | done |
3090 | done |
| 2548 | fi |
3091 | fi |
|
|
3092 | shift |
| 2549 | done |
3093 | done |
| 2550 | for sitedir in "${root}"/usr/share/jython-*/Lib/site-packages; do |
3094 | else |
| 2551 | if [[ -d "${sitedir}" ]]; then |
3095 | # Deprecated part of python_mod_cleanup() |
|
|
3096 | ewarn |
|
|
3097 | ewarn "Deprecation Warning: Usage of ${FUNCNAME}() in packages not supporting installation" |
|
|
3098 | ewarn "for multiple Python ABIs in EAPI <=2 is deprecated and will be disallowed on 2011-08-01." |
|
|
3099 | ewarn "Use EAPI >=3 and call ${FUNCNAME}() with paths having appropriate syntax." |
|
|
3100 | ewarn "The ebuild needs to be fixed. Please report a bug, if it has not been already reported." |
|
|
3101 | ewarn |
|
|
3102 | |
| 2552 | search_paths+=("${sitedir}") |
3103 | search_paths=("${@#/}") |
| 2553 | fi |
3104 | search_paths=("${search_paths[@]/#/${root}/}") |
| 2554 | done |
|
|
| 2555 | fi |
3105 | fi |
| 2556 | |
3106 | |
| 2557 | _python_clean_compiled_modules "${search_paths[@]}" |
3107 | _python_clean_compiled_modules "${search_paths[@]}" |
| 2558 | } |
3108 | } |
| 2559 | |
3109 | |
| 2560 | # ================================================================================================ |
3110 | # ================================================================================================ |
| 2561 | # ===================================== DEPRECATED FUNCTIONS ===================================== |
3111 | # ===================================== DEPRECATED FUNCTIONS ===================================== |
| 2562 | # ================================================================================================ |
3112 | # ================================================================================================ |
| 2563 | |
|
|
| 2564 | # Scheduled for deletion on 2011-01-01. |
|
|
| 2565 | python_version() { |
|
|
| 2566 | eerror "Use PYTHON() instead of python variable. Use python_get_*() instead of PYVER* variables." |
|
|
| 2567 | die "${FUNCNAME}() is banned" |
|
|
| 2568 | } |
|
|
| 2569 | |
|
|
| 2570 | # Scheduled for deletion on 2011-01-01. |
|
|
| 2571 | python_mod_exists() { |
|
|
| 2572 | eerror "Use USE dependencies and/or has_version() instead of ${FUNCNAME}()." |
|
|
| 2573 | die "${FUNCNAME}() is banned" |
|
|
| 2574 | } |
|
|
| 2575 | |
|
|
| 2576 | # Scheduled for deletion on 2011-01-01. |
|
|
| 2577 | python_tkinter_exists() { |
|
|
| 2578 | eerror "Use PYTHON_USE_WITH=\"xml\" and python_pkg_setup() instead of ${FUNCNAME}()." |
|
|
| 2579 | die "${FUNCNAME}() is banned" |
|
|
| 2580 | } |
|
|
| 2581 | |
|
|
| 2582 | # @FUNCTION: python_mod_compile |
|
|
| 2583 | # @USAGE: <file> [more files ...] |
|
|
| 2584 | # @DESCRIPTION: |
|
|
| 2585 | # Given filenames, it will pre-compile the module's .pyc and .pyo. |
|
|
| 2586 | # This function can be used only in pkg_postinst() phase. |
|
|
| 2587 | # |
|
|
| 2588 | # Example: |
|
|
| 2589 | # python_mod_compile /usr/lib/python2.3/site-packages/pygoogle.py |
|
|
| 2590 | # |
|
|
| 2591 | python_mod_compile() { |
|
|
| 2592 | if ! has "${EAPI:-0}" 0 1 2 || _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
| 2593 | eerror "Use python_mod_optimize() instead of ${FUNCNAME}()." |
|
|
| 2594 | die "${FUNCNAME}() cannot be used in this EAPI" |
|
|
| 2595 | fi |
|
|
| 2596 | |
|
|
| 2597 | _python_initialize_prefix_variables |
|
|
| 2598 | _python_set_color_variables |
|
|
| 2599 | |
|
|
| 2600 | if [[ "${FUNCNAME[1]}" != "python_mod_optimize" ]]; then |
|
|
| 2601 | echo |
|
|
| 2602 | echo " ${_RED}*${_NORMAL} ${_RED}Deprecation Warning: ${FUNCNAME}() is deprecated and will be banned on 2010-09-01.${_NORMAL}" |
|
|
| 2603 | echo " ${_RED}*${_NORMAL} ${_RED}Use python_mod_optimize() instead of ${FUNCNAME}().${_NORMAL}" |
|
|
| 2604 | echo " ${_RED}*${_NORMAL} ${_RED}The ebuild needs to be fixed. Please report a bug, if it has not been already reported.${_NORMAL}" |
|
|
| 2605 | echo |
|
|
| 2606 | |
|
|
| 2607 | einfo &> /dev/null |
|
|
| 2608 | einfo "Deprecation Warning: ${FUNCNAME}() is deprecated and will be banned on 2010-09-01." &> /dev/null |
|
|
| 2609 | einfo "Use python_mod_optimize() instead of ${FUNCNAME}()." &> /dev/null |
|
|
| 2610 | einfo "The ebuild needs to be fixed. Please report a bug, if it has not been already reported." &> /dev/null |
|
|
| 2611 | einfo &> /dev/null |
|
|
| 2612 | fi |
|
|
| 2613 | |
|
|
| 2614 | local f myroot myfiles=() |
|
|
| 2615 | |
|
|
| 2616 | # Check if phase is pkg_postinst() |
|
|
| 2617 | [[ "${EBUILD_PHASE}" != "postinst" ]] && die "${FUNCNAME}() can be used only in pkg_postinst() phase" |
|
|
| 2618 | |
|
|
| 2619 | # strip trailing slash |
|
|
| 2620 | myroot="${EROOT%/}" |
|
|
| 2621 | |
|
|
| 2622 | # respect EROOT |
|
|
| 2623 | for f in "$@"; do |
|
|
| 2624 | [[ -f "${myroot}/${f}" ]] && myfiles+=("${myroot}/${f}") |
|
|
| 2625 | done |
|
|
| 2626 | |
|
|
| 2627 | PYTHON_ABI="$(PYTHON --ABI)" |
|
|
| 2628 | |
|
|
| 2629 | if ((${#myfiles[@]})); then |
|
|
| 2630 | "$(PYTHON ${PYTHON_ABI})" "${myroot}$(python_get_libdir)/py_compile.py" "${myfiles[@]}" |
|
|
| 2631 | "$(PYTHON ${PYTHON_ABI})" -O "${myroot}$(python_get_libdir)/py_compile.py" "${myfiles[@]}" &> /dev/null |
|
|
| 2632 | _python_clean_compiled_modules "${myfiles[@]}" |
|
|
| 2633 | else |
|
|
| 2634 | ewarn "No files to compile!" |
|
|
| 2635 | fi |
|
|
| 2636 | } |
|
|