| 1 | # Copyright 1999-2010 Gentoo Foundation |
1 | # Copyright 1999-2012 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/eclass/python.eclass,v 1.101 2010/07/17 23:02:14 arfrever Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/python.eclass,v 1.152 2012/03/07 04:13:27 floppym Exp $ |
| 4 | |
4 | |
| 5 | # @ECLASS: python.eclass |
5 | # @ECLASS: python.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # Gentoo Python Project <python@gentoo.org> |
7 | # Gentoo Python Project <python@gentoo.org> |
| 8 | # @BLURB: Eclass for Python packages |
8 | # @BLURB: Eclass for Python packages |
| 9 | # @DESCRIPTION: |
9 | # @DESCRIPTION: |
| 10 | # The python eclass contains miscellaneous, useful functions for Python packages. |
10 | # The python eclass contains miscellaneous, useful functions for Python packages. |
| 11 | |
11 | |
|
|
12 | # Must call inherit before EXPORT_FUNCTIONS to avoid QA warning. |
|
|
13 | if [[ -z "${_PYTHON_ECLASS_INHERITED}" ]]; then |
| 12 | inherit multilib |
14 | inherit multilib |
|
|
15 | fi |
| 13 | |
16 | |
|
|
17 | # Export pkg_setup every time to avoid issues with eclass inheritance order. |
|
|
18 | if ! has "${EAPI:-0}" 0 1 2 3 || { has "${EAPI:-0}" 2 3 && [[ -n "${PYTHON_USE_WITH}" || -n "${PYTHON_USE_WITH_OR}" ]]; }; then |
|
|
19 | EXPORT_FUNCTIONS pkg_setup |
|
|
20 | fi |
|
|
21 | |
|
|
22 | # Avoid processing this eclass more than once. |
|
|
23 | if [[ -z "${_PYTHON_ECLASS_INHERITED}" ]]; then |
|
|
24 | _PYTHON_ECLASS_INHERITED="1" |
|
|
25 | |
| 14 | if ! has "${EAPI:-0}" 0 1 2 3; then |
26 | if ! has "${EAPI:-0}" 0 1 2 3 4; then |
| 15 | die "API of python.eclass in EAPI=\"${EAPI}\" not established" |
27 | die "API of python.eclass in EAPI=\"${EAPI}\" not established" |
| 16 | fi |
28 | fi |
| 17 | |
29 | |
| 18 | _CPYTHON2_SUPPORTED_ABIS=(2.4 2.5 2.6 2.7) |
30 | _CPYTHON2_GLOBALLY_SUPPORTED_ABIS=(2.4 2.5 2.6 2.7) |
| 19 | _CPYTHON3_SUPPORTED_ABIS=(3.0 3.1 3.2) |
31 | _CPYTHON3_GLOBALLY_SUPPORTED_ABIS=(3.1 3.2) |
| 20 | _JYTHON_SUPPORTED_ABIS=(2.5-jython) |
32 | _JYTHON_GLOBALLY_SUPPORTED_ABIS=(2.5-jython) |
|
|
33 | _PYPY_GLOBALLY_SUPPORTED_ABIS=(2.7-pypy-1.7 2.7-pypy-1.8) |
|
|
34 | _PYTHON_GLOBALLY_SUPPORTED_ABIS=(${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]} ${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]} ${_JYTHON_GLOBALLY_SUPPORTED_ABIS[@]} ${_PYPY_GLOBALLY_SUPPORTED_ABIS[@]}) |
|
|
35 | |
|
|
36 | # ================================================================================================ |
|
|
37 | # ===================================== HANDLING OF METADATA ===================================== |
|
|
38 | # ================================================================================================ |
|
|
39 | |
|
|
40 | _PYTHON_ABI_PATTERN_REGEX="([[:alnum:]]|\.|-|\*|\[|\])+" |
|
|
41 | |
|
|
42 | _python_check_python_abi_matching() { |
|
|
43 | local pattern patterns patterns_list="0" PYTHON_ABI |
|
|
44 | |
|
|
45 | while (($#)); do |
|
|
46 | case "$1" in |
|
|
47 | --patterns-list) |
|
|
48 | patterns_list="1" |
|
|
49 | ;; |
|
|
50 | --) |
|
|
51 | shift |
|
|
52 | break |
|
|
53 | ;; |
|
|
54 | -*) |
|
|
55 | die "${FUNCNAME}(): Unrecognized option '$1'" |
|
|
56 | ;; |
|
|
57 | *) |
|
|
58 | break |
|
|
59 | ;; |
|
|
60 | esac |
|
|
61 | shift |
|
|
62 | done |
|
|
63 | |
|
|
64 | if [[ "$#" -ne 2 ]]; then |
|
|
65 | die "${FUNCNAME}() requires 2 arguments" |
|
|
66 | fi |
|
|
67 | |
|
|
68 | PYTHON_ABI="$1" |
|
|
69 | |
|
|
70 | if [[ "${patterns_list}" == "0" ]]; then |
|
|
71 | pattern="$2" |
|
|
72 | |
|
|
73 | if [[ "${pattern}" == *"-cpython" ]]; then |
|
|
74 | [[ "${PYTHON_ABI}" =~ ^[[:digit:]]+\.[[:digit:]]+$ && "${PYTHON_ABI}" == ${pattern%-cpython} ]] |
|
|
75 | elif [[ "${pattern}" == *"-jython" ]]; then |
|
|
76 | [[ "${PYTHON_ABI}" == ${pattern} ]] |
|
|
77 | elif [[ "${pattern}" == *"-pypy-"* ]]; then |
|
|
78 | [[ "${PYTHON_ABI}" == ${pattern} ]] |
|
|
79 | else |
|
|
80 | if [[ "${PYTHON_ABI}" =~ ^[[:digit:]]+\.[[:digit:]]+$ ]]; then |
|
|
81 | [[ "${PYTHON_ABI}" == ${pattern} ]] |
|
|
82 | elif [[ "${PYTHON_ABI}" =~ ^[[:digit:]]+\.[[:digit:]]+-jython$ ]]; then |
|
|
83 | [[ "${PYTHON_ABI%-jython}" == ${pattern} ]] |
|
|
84 | elif [[ "${PYTHON_ABI}" =~ ^[[:digit:]]+\.[[:digit:]]+-pypy-[[:digit:]]+\.[[:digit:]]+$ ]]; then |
|
|
85 | [[ "${PYTHON_ABI%-pypy-*}" == ${pattern} ]] |
|
|
86 | else |
|
|
87 | die "${FUNCNAME}(): Unrecognized Python ABI '${PYTHON_ABI}'" |
|
|
88 | fi |
|
|
89 | fi |
|
|
90 | else |
|
|
91 | patterns="${2// /$'\n'}" |
|
|
92 | |
|
|
93 | while read pattern; do |
|
|
94 | if _python_check_python_abi_matching "${PYTHON_ABI}" "${pattern}"; then |
|
|
95 | return 0 |
|
|
96 | fi |
|
|
97 | done <<< "${patterns}" |
|
|
98 | |
|
|
99 | return 1 |
|
|
100 | fi |
|
|
101 | } |
|
|
102 | |
|
|
103 | _python_package_supporting_installation_for_multiple_python_abis() { |
|
|
104 | if has "${EAPI:-0}" 0 1 2 3 4; then |
|
|
105 | if [[ -n "${SUPPORT_PYTHON_ABIS}" ]]; then |
|
|
106 | return 0 |
|
|
107 | else |
|
|
108 | return 1 |
|
|
109 | fi |
|
|
110 | else |
|
|
111 | die "${FUNCNAME}(): Support for EAPI=\"${EAPI}\" not implemented" |
|
|
112 | fi |
|
|
113 | } |
| 21 | |
114 | |
| 22 | # @ECLASS-VARIABLE: PYTHON_DEPEND |
115 | # @ECLASS-VARIABLE: PYTHON_DEPEND |
| 23 | # @DESCRIPTION: |
116 | # @DESCRIPTION: |
| 24 | # Specification of dependency on dev-lang/python. |
117 | # Specification of dependency on dev-lang/python. |
| 25 | # Syntax: |
118 | # Syntax: |
| … | |
… | |
| 27 | # version_components_group: <major_version[:[minimal_version][:maximal_version]]> |
120 | # version_components_group: <major_version[:[minimal_version][:maximal_version]]> |
| 28 | # major_version: <2|3|*> |
121 | # major_version: <2|3|*> |
| 29 | # minimal_version: <minimal_major_version.minimal_minor_version> |
122 | # minimal_version: <minimal_major_version.minimal_minor_version> |
| 30 | # maximal_version: <maximal_major_version.maximal_minor_version> |
123 | # maximal_version: <maximal_major_version.maximal_minor_version> |
| 31 | |
124 | |
| 32 | _parse_PYTHON_DEPEND() { |
125 | _python_parse_PYTHON_DEPEND() { |
| 33 | local major_version maximal_version minimal_version python_all="0" python_maximal_version python_minimal_version python_versions=() python2="0" python2_maximal_version python2_minimal_version python3="0" python3_maximal_version python3_minimal_version USE_flag= version_components_group version_components_group_regex version_components_groups |
126 | local major_version maximal_version minimal_version python_all="0" python_maximal_version python_minimal_version python_versions=() python2="0" python2_maximal_version python2_minimal_version python3="0" python3_maximal_version python3_minimal_version USE_flag= version_components_group version_components_group_regex version_components_groups |
| 34 | |
127 | |
| 35 | version_components_group_regex="(2|3|\*)(:([[:digit:]]+\.[[:digit:]]+)?(:([[:digit:]]+\.[[:digit:]]+)?)?)?" |
128 | version_components_group_regex="(2|3|\*)(:([[:digit:]]+\.[[:digit:]]+)?(:([[:digit:]]+\.[[:digit:]]+)?)?)?" |
| 36 | version_components_groups="${PYTHON_DEPEND}" |
129 | version_components_groups="${PYTHON_DEPEND}" |
| 37 | |
130 | |
| … | |
… | |
| 60 | fi |
153 | fi |
| 61 | fi |
154 | fi |
| 62 | |
155 | |
| 63 | if [[ "${major_version}" == "2" ]]; then |
156 | if [[ "${major_version}" == "2" ]]; then |
| 64 | python2="1" |
157 | python2="1" |
| 65 | python_versions=("${_CPYTHON2_SUPPORTED_ABIS[@]}") |
158 | python_versions=("${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]}") |
| 66 | python2_minimal_version="${minimal_version}" |
159 | python2_minimal_version="${minimal_version}" |
| 67 | python2_maximal_version="${maximal_version}" |
160 | python2_maximal_version="${maximal_version}" |
| 68 | elif [[ "${major_version}" == "3" ]]; then |
161 | elif [[ "${major_version}" == "3" ]]; then |
| 69 | python3="1" |
162 | python3="1" |
| 70 | python_versions=("${_CPYTHON3_SUPPORTED_ABIS[@]}") |
163 | python_versions=("${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]}") |
| 71 | python3_minimal_version="${minimal_version}" |
164 | python3_minimal_version="${minimal_version}" |
| 72 | python3_maximal_version="${maximal_version}" |
165 | python3_maximal_version="${maximal_version}" |
| 73 | else |
166 | else |
| 74 | python_all="1" |
167 | python_all="1" |
| 75 | python_versions=("${_CPYTHON2_SUPPORTED_ABIS[@]}" "${_CPYTHON3_SUPPORTED_ABIS[@]}") |
168 | python_versions=("${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]}" "${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]}") |
| 76 | python_minimal_version="${minimal_version}" |
169 | python_minimal_version="${minimal_version}" |
| 77 | python_maximal_version="${maximal_version}" |
170 | python_maximal_version="${maximal_version}" |
| 78 | fi |
171 | fi |
| 79 | |
172 | |
| 80 | if [[ -n "${minimal_version}" ]] && ! has "${minimal_version}" "${python_versions[@]}"; then |
173 | if [[ -n "${minimal_version}" ]] && ! has "${minimal_version}" "${python_versions[@]}"; then |
| … | |
… | |
| 108 | |
201 | |
| 109 | if [[ "${python_all}" == "1" ]]; then |
202 | if [[ "${python_all}" == "1" ]]; then |
| 110 | if [[ -z "${python_minimal_version}" && -z "${python_maximal_version}" ]]; then |
203 | if [[ -z "${python_minimal_version}" && -z "${python_maximal_version}" ]]; then |
| 111 | _PYTHON_ATOMS+=("dev-lang/python") |
204 | _PYTHON_ATOMS+=("dev-lang/python") |
| 112 | else |
205 | else |
| 113 | python_versions=("${_CPYTHON2_SUPPORTED_ABIS[@]}" "${_CPYTHON3_SUPPORTED_ABIS[@]}") |
206 | python_versions=("${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]}" "${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]}") |
| 114 | python_minimal_version="${python_minimal_version:-${python_versions[0]}}" |
207 | python_minimal_version="${python_minimal_version:-${python_versions[0]}}" |
| 115 | python_maximal_version="${python_maximal_version:-${python_versions[${#python_versions[@]}-1]}}" |
208 | python_maximal_version="${python_maximal_version:-${python_versions[${#python_versions[@]}-1]}}" |
| 116 | _append_accepted_versions_range |
209 | _append_accepted_versions_range |
| 117 | fi |
210 | fi |
| 118 | else |
211 | else |
| 119 | if [[ "${python3}" == "1" ]]; then |
212 | if [[ "${python3}" == "1" ]]; then |
| 120 | if [[ -z "${python3_minimal_version}" && -z "${python3_maximal_version}" ]]; then |
213 | if [[ -z "${python3_minimal_version}" && -z "${python3_maximal_version}" ]]; then |
| 121 | _PYTHON_ATOMS+=("=dev-lang/python-3*") |
214 | _PYTHON_ATOMS+=("=dev-lang/python-3*") |
| 122 | else |
215 | else |
| 123 | python_versions=("${_CPYTHON3_SUPPORTED_ABIS[@]}") |
216 | python_versions=("${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]}") |
| 124 | python_minimal_version="${python3_minimal_version:-${python_versions[0]}}" |
217 | python_minimal_version="${python3_minimal_version:-${python_versions[0]}}" |
| 125 | python_maximal_version="${python3_maximal_version:-${python_versions[${#python_versions[@]}-1]}}" |
218 | python_maximal_version="${python3_maximal_version:-${python_versions[${#python_versions[@]}-1]}}" |
| 126 | _append_accepted_versions_range |
219 | _append_accepted_versions_range |
| 127 | fi |
220 | fi |
| 128 | fi |
221 | fi |
| 129 | if [[ "${python2}" == "1" ]]; then |
222 | if [[ "${python2}" == "1" ]]; then |
| 130 | if [[ -z "${python2_minimal_version}" && -z "${python2_maximal_version}" ]]; then |
223 | if [[ -z "${python2_minimal_version}" && -z "${python2_maximal_version}" ]]; then |
| 131 | _PYTHON_ATOMS+=("=dev-lang/python-2*") |
224 | _PYTHON_ATOMS+=("=dev-lang/python-2*") |
| 132 | else |
225 | else |
| 133 | python_versions=("${_CPYTHON2_SUPPORTED_ABIS[@]}") |
226 | python_versions=("${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]}") |
| 134 | python_minimal_version="${python2_minimal_version:-${python_versions[0]}}" |
227 | python_minimal_version="${python2_minimal_version:-${python_versions[0]}}" |
| 135 | python_maximal_version="${python2_maximal_version:-${python_versions[${#python_versions[@]}-1]}}" |
228 | python_maximal_version="${python2_maximal_version:-${python_versions[${#python_versions[@]}-1]}}" |
| 136 | _append_accepted_versions_range |
229 | _append_accepted_versions_range |
| 137 | fi |
230 | fi |
| 138 | fi |
231 | fi |
| … | |
… | |
| 153 | } |
246 | } |
| 154 | |
247 | |
| 155 | DEPEND=">=app-admin/eselect-python-20091230" |
248 | DEPEND=">=app-admin/eselect-python-20091230" |
| 156 | RDEPEND="${DEPEND}" |
249 | RDEPEND="${DEPEND}" |
| 157 | |
250 | |
| 158 | if [[ -n "${PYTHON_DEPEND}" && -n "${NEED_PYTHON}" ]]; then |
|
|
| 159 | die "PYTHON_DEPEND and NEED_PYTHON cannot be set simultaneously" |
|
|
| 160 | elif [[ -n "${PYTHON_DEPEND}" ]]; then |
251 | if [[ -n "${PYTHON_DEPEND}" ]]; then |
| 161 | _parse_PYTHON_DEPEND |
252 | _python_parse_PYTHON_DEPEND |
| 162 | elif [[ -n "${NEED_PYTHON}" ]]; then |
|
|
| 163 | if ! has "${EAPI:-0}" 0 1 2; then |
|
|
| 164 | eerror "Use PYTHON_DEPEND variable instead of NEED_PYTHON variable." |
|
|
| 165 | die "NEED_PYTHON variable cannot be used in this EAPI" |
|
|
| 166 | fi |
|
|
| 167 | |
|
|
| 168 | 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 |
253 | else |
| 188 | _PYTHON_ATOMS=("dev-lang/python") |
254 | _PYTHON_ATOMS=("dev-lang/python") |
|
|
255 | fi |
|
|
256 | unset -f _python_parse_PYTHON_DEPEND |
|
|
257 | |
|
|
258 | if [[ -n "${NEED_PYTHON}" ]]; then |
|
|
259 | eerror "Use PYTHON_DEPEND variable instead of NEED_PYTHON variable." |
|
|
260 | die "NEED_PYTHON variable is banned" |
| 189 | fi |
261 | fi |
| 190 | |
262 | |
| 191 | # @ECLASS-VARIABLE: PYTHON_USE_WITH |
263 | # @ECLASS-VARIABLE: PYTHON_USE_WITH |
| 192 | # @DESCRIPTION: |
264 | # @DESCRIPTION: |
| 193 | # Set this to a space separated list of USE flags the Python slot in use must be built with. |
265 | # Set this to a space separated list of USE flags the Python slot in use must be built with. |
| … | |
… | |
| 237 | _python_implementation() { |
309 | _python_implementation() { |
| 238 | if [[ "${CATEGORY}/${PN}" == "dev-lang/python" ]]; then |
310 | if [[ "${CATEGORY}/${PN}" == "dev-lang/python" ]]; then |
| 239 | return 0 |
311 | return 0 |
| 240 | elif [[ "${CATEGORY}/${PN}" == "dev-java/jython" ]]; then |
312 | elif [[ "${CATEGORY}/${PN}" == "dev-java/jython" ]]; then |
| 241 | return 0 |
313 | return 0 |
|
|
314 | elif [[ "${CATEGORY}/${PN}" == "dev-python/pypy" ]]; then |
|
|
315 | return 0 |
| 242 | else |
316 | else |
| 243 | return 1 |
317 | 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 |
318 | fi |
| 261 | } |
319 | } |
| 262 | |
320 | |
| 263 | _python_abi-specific_local_scope() { |
321 | _python_abi-specific_local_scope() { |
| 264 | [[ " ${FUNCNAME[@]:2} " =~ " "(_python_final_sanity_checks|python_execute_function|python_mod_optimize|python_mod_cleanup)" " ]] |
322 | [[ " ${FUNCNAME[@]:2} " =~ " "(_python_final_sanity_checks|python_execute_function|python_mod_optimize|python_mod_cleanup)" " ]] |
| … | |
… | |
| 315 | done |
373 | done |
| 316 | fi |
374 | fi |
| 317 | PYTHON_SANITY_CHECKS_EXECUTED="1" |
375 | PYTHON_SANITY_CHECKS_EXECUTED="1" |
| 318 | } |
376 | } |
| 319 | |
377 | |
|
|
378 | # @ECLASS-VARIABLE: PYTHON_COLORS |
|
|
379 | # @DESCRIPTION: |
|
|
380 | # User-configurable colored output. |
|
|
381 | PYTHON_COLORS="${PYTHON_COLORS:-0}" |
|
|
382 | |
| 320 | _python_set_color_variables() { |
383 | _python_set_color_variables() { |
| 321 | if [[ "${NOCOLOR:-false}" =~ ^(false|no)$ ]]; then |
384 | if [[ "${PYTHON_COLORS}" != "0" && "${NOCOLOR:-false}" =~ ^(false|no)$ ]]; then |
| 322 | _BOLD=$'\e[1m' |
385 | _BOLD=$'\e[1m' |
| 323 | _RED=$'\e[1;31m' |
386 | _RED=$'\e[1;31m' |
| 324 | _GREEN=$'\e[1;32m' |
387 | _GREEN=$'\e[1;32m' |
| 325 | _BLUE=$'\e[1;34m' |
388 | _BLUE=$'\e[1;34m' |
| 326 | _CYAN=$'\e[1;36m' |
389 | _CYAN=$'\e[1;36m' |
| … | |
… | |
| 333 | _CYAN= |
396 | _CYAN= |
| 334 | _NORMAL= |
397 | _NORMAL= |
| 335 | fi |
398 | fi |
| 336 | } |
399 | } |
| 337 | |
400 | |
| 338 | unset PYTHON_PKG_SETUP_EXECUTED |
|
|
| 339 | |
|
|
| 340 | _python_check_python_pkg_setup_execution() { |
401 | _python_check_python_pkg_setup_execution() { |
| 341 | [[ " ${FUNCNAME[@]:1} " =~ " "(python_set_active_version|python_pkg_setup)" " ]] && return |
402 | [[ " ${FUNCNAME[@]:1} " =~ " "(python_set_active_version|python_pkg_setup)" " ]] && return |
| 342 | |
403 | |
| 343 | if ! has "${EAPI:-0}" 0 1 2 3 && [[ -z "${PYTHON_PKG_SETUP_EXECUTED}" ]]; then |
404 | if ! has "${EAPI:-0}" 0 1 2 3 && [[ -z "${PYTHON_PKG_SETUP_EXECUTED}" ]]; then |
| 344 | die "python_pkg_setup() not called" |
405 | die "python_pkg_setup() not called" |
| … | |
… | |
| 349 | # @DESCRIPTION: |
410 | # @DESCRIPTION: |
| 350 | # Perform sanity checks and initialize environment. |
411 | # Perform sanity checks and initialize environment. |
| 351 | # |
412 | # |
| 352 | # This function is exported in EAPI 2 and 3 when PYTHON_USE_WITH or PYTHON_USE_WITH_OR variable |
413 | # This function is exported in EAPI 2 and 3 when PYTHON_USE_WITH or PYTHON_USE_WITH_OR variable |
| 353 | # is set and always in EAPI >=4. Calling of this function is mandatory in EAPI >=4. |
414 | # is set and always in EAPI >=4. Calling of this function is mandatory in EAPI >=4. |
| 354 | # |
|
|
| 355 | # This function can be used only in pkg_setup() phase. |
|
|
| 356 | python_pkg_setup() { |
415 | python_pkg_setup() { |
| 357 | # Check if phase is pkg_setup(). |
416 | if [[ "${EBUILD_PHASE}" != "setup" ]]; then |
| 358 | [[ "${EBUILD_PHASE}" != "setup" ]] && die "${FUNCNAME}() can be used only in pkg_setup() phase" |
417 | die "${FUNCNAME}() can be used only in pkg_setup() phase" |
|
|
418 | fi |
| 359 | |
419 | |
| 360 | if [[ "$#" -ne 0 ]]; then |
420 | if [[ "$#" -ne 0 ]]; then |
| 361 | die "${FUNCNAME}() does not accept arguments" |
421 | die "${FUNCNAME}() does not accept arguments" |
| 362 | fi |
422 | fi |
|
|
423 | |
|
|
424 | export JYTHON_SYSTEM_CACHEDIR="1" |
|
|
425 | addwrite "${EPREFIX}/var/cache/jython" |
| 363 | |
426 | |
| 364 | if _python_package_supporting_installation_for_multiple_python_abis; then |
427 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| 365 | _python_calculate_PYTHON_ABIS |
428 | _python_calculate_PYTHON_ABIS |
| 366 | export EPYTHON="$(PYTHON -f)" |
429 | export EPYTHON="$(PYTHON -f)" |
| 367 | else |
430 | else |
| … | |
… | |
| 410 | fi |
473 | fi |
| 411 | |
474 | |
| 412 | PYTHON_PKG_SETUP_EXECUTED="1" |
475 | PYTHON_PKG_SETUP_EXECUTED="1" |
| 413 | } |
476 | } |
| 414 | |
477 | |
| 415 | if ! has "${EAPI:-0}" 0 1 2 3 || has "${EAPI:-0}" 2 3 && [[ -n "${PYTHON_USE_WITH}" || -n "${PYTHON_USE_WITH_OR}" ]]; then |
478 | _PYTHON_SHEBANG_BASE_PART_REGEX='^#![[:space:]]*([^[:space:]]*/usr/bin/env[[:space:]]+)?([^[:space:]]*/)?(jython|pypy-c|python)' |
| 416 | EXPORT_FUNCTIONS pkg_setup |
|
|
| 417 | fi |
|
|
| 418 | |
479 | |
| 419 | # @FUNCTION: python_convert_shebangs |
480 | # @FUNCTION: python_convert_shebangs |
| 420 | # @USAGE: [-q|--quiet] [-r|--recursive] [-x|--only-executables] [--] <Python_version> <file|directory> [files|directories] |
481 | # @USAGE: [-q|--quiet] [-r|--recursive] [-x|--only-executables] [--] <Python_ABI|Python_version> <file|directory> [files|directories] |
| 421 | # @DESCRIPTION: |
482 | # @DESCRIPTION: |
| 422 | # Convert shebangs in specified files. Directories can be specified only with --recursive option. |
483 | # Convert shebangs in specified files. Directories can be specified only with --recursive option. |
| 423 | python_convert_shebangs() { |
484 | python_convert_shebangs() { |
| 424 | _python_check_python_pkg_setup_execution |
485 | _python_check_python_pkg_setup_execution |
| 425 | |
486 | |
| 426 | local argument file files=() only_executables="0" python_version quiet="0" recursive="0" |
487 | local argument file files=() only_executables="0" python_interpreter quiet="0" recursive="0" shebangs_converted="0" |
| 427 | |
488 | |
| 428 | while (($#)); do |
489 | while (($#)); do |
| 429 | case "$1" in |
490 | case "$1" in |
| 430 | -r|--recursive) |
491 | -r|--recursive) |
| 431 | recursive="1" |
492 | recursive="1" |
| … | |
… | |
| 454 | die "${FUNCNAME}(): Missing Python version and files or directories" |
515 | die "${FUNCNAME}(): Missing Python version and files or directories" |
| 455 | elif [[ "$#" -eq 1 ]]; then |
516 | elif [[ "$#" -eq 1 ]]; then |
| 456 | die "${FUNCNAME}(): Missing files or directories" |
517 | die "${FUNCNAME}(): Missing files or directories" |
| 457 | fi |
518 | fi |
| 458 | |
519 | |
| 459 | python_version="$1" |
520 | if [[ -n "$(_python_get_implementation --ignore-invalid "$1")" ]]; then |
|
|
521 | python_interpreter="$(PYTHON "$1")" |
|
|
522 | else |
|
|
523 | python_interpreter="python$1" |
|
|
524 | fi |
| 460 | shift |
525 | shift |
| 461 | |
526 | |
| 462 | for argument in "$@"; do |
527 | for argument in "$@"; do |
| 463 | if [[ ! -e "${argument}" ]]; then |
528 | if [[ ! -e "${argument}" ]]; then |
| 464 | die "${FUNCNAME}(): '${argument}' does not exist" |
529 | die "${FUNCNAME}(): '${argument}' does not exist" |
| … | |
… | |
| 479 | |
544 | |
| 480 | for file in "${files[@]}"; do |
545 | for file in "${files[@]}"; do |
| 481 | file="${file#./}" |
546 | file="${file#./}" |
| 482 | [[ "${only_executables}" == "1" && ! -x "${file}" ]] && continue |
547 | [[ "${only_executables}" == "1" && ! -x "${file}" ]] && continue |
| 483 | |
548 | |
| 484 | if [[ "$(head -n1 "${file}")" =~ ^'#!'.*python ]]; then |
549 | 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 |
550 | [[ "$(sed -ne "2p" "${file}")" =~ ^"# Gentoo '".*"' wrapper script generated by python_generate_wrapper_scripts()"$ ]] && continue |
|
|
551 | |
|
|
552 | shebangs_converted="1" |
| 486 | |
553 | |
| 487 | if [[ "${quiet}" == "0" ]]; then |
554 | if [[ "${quiet}" == "0" ]]; then |
| 488 | einfo "Converting shebang in '${file}'" |
555 | einfo "Converting shebang in '${file}'" |
| 489 | fi |
556 | fi |
| 490 | |
557 | |
| 491 | sed -e "1s/python\([[:digit:]]\+\(\.[[:digit:]]\+\)\?\)\?/python${python_version}/" -i "${file}" || die "Conversion of shebang in '${file}' failed" |
558 | sed -e "1s:^#![[:space:]]*\([^[:space:]]*/usr/bin/env[[:space:]]\)\?[[:space:]]*\([^[:space:]]*/\)\?\(jython\|pypy-c\|python\)\([[:digit:]]\+\(\.[[:digit:]]\+\)\?\)\?\(\$\|[[:space:]].*\):#!\1\2${python_interpreter}\6:" -i "${file}" || die "Conversion of shebang in '${file}' failed" |
|
|
559 | fi |
|
|
560 | done |
| 492 | |
561 | |
| 493 | # Delete potential whitespace after "#!". |
562 | if [[ "${shebangs_converted}" == "0" ]]; then |
| 494 | sed -e '1s/\(^#!\)[[:space:]]*/\1/' -i "${file}" || die "sed '${file}' failed" |
563 | ewarn "${FUNCNAME}(): Python scripts not found" |
| 495 | fi |
564 | fi |
| 496 | done |
|
|
| 497 | } |
565 | } |
| 498 | |
566 | |
| 499 | # @FUNCTION: python_clean_installation_image |
567 | # @FUNCTION: python_clean_py-compile_files |
| 500 | # @USAGE: [-q|--quiet] |
568 | # @USAGE: [-q|--quiet] |
| 501 | # @DESCRIPTION: |
569 | # @DESCRIPTION: |
| 502 | # Delete needless files in installation image. |
570 | # Clean py-compile files to disable byte-compilation. |
| 503 | python_clean_installation_image() { |
571 | python_clean_py-compile_files() { |
| 504 | _python_check_python_pkg_setup_execution |
572 | _python_check_python_pkg_setup_execution |
| 505 | _python_initialize_prefix_variables |
|
|
| 506 | |
573 | |
| 507 | local file files=() quiet="0" |
574 | 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 | |
575 | |
| 512 | while (($#)); do |
576 | while (($#)); do |
| 513 | case "$1" in |
577 | case "$1" in |
| 514 | -q|--quiet) |
578 | -q|--quiet) |
| 515 | quiet="1" |
579 | quiet="1" |
| … | |
… | |
| 523 | esac |
587 | esac |
| 524 | shift |
588 | shift |
| 525 | done |
589 | done |
| 526 | |
590 | |
| 527 | while read -d $'\0' -r file; do |
591 | while read -d $'\0' -r file; do |
|
|
592 | files+=("${file#./}") |
|
|
593 | done < <(find -name py-compile -type f -print0) |
|
|
594 | |
|
|
595 | for file in "${files[@]}"; do |
|
|
596 | if [[ "${quiet}" == "0" ]]; then |
|
|
597 | einfo "Cleaning '${file}' file" |
|
|
598 | fi |
|
|
599 | echo "#!/bin/sh" > "${file}" |
|
|
600 | done |
|
|
601 | } |
|
|
602 | |
|
|
603 | # @FUNCTION: python_clean_installation_image |
|
|
604 | # @USAGE: [-q|--quiet] |
|
|
605 | # @DESCRIPTION: |
|
|
606 | # Delete needless files in installation image. |
|
|
607 | # |
|
|
608 | # This function can be used only in src_install() phase. |
|
|
609 | python_clean_installation_image() { |
|
|
610 | if [[ "${EBUILD_PHASE}" != "install" ]]; then |
|
|
611 | die "${FUNCNAME}() can be used only in src_install() phase" |
|
|
612 | fi |
|
|
613 | |
|
|
614 | _python_check_python_pkg_setup_execution |
|
|
615 | _python_initialize_prefix_variables |
|
|
616 | |
|
|
617 | local file files=() quiet="0" |
|
|
618 | |
|
|
619 | while (($#)); do |
|
|
620 | case "$1" in |
|
|
621 | -q|--quiet) |
|
|
622 | quiet="1" |
|
|
623 | ;; |
|
|
624 | -*) |
|
|
625 | die "${FUNCNAME}(): Unrecognized option '$1'" |
|
|
626 | ;; |
|
|
627 | *) |
|
|
628 | die "${FUNCNAME}(): Invalid usage" |
|
|
629 | ;; |
|
|
630 | esac |
|
|
631 | shift |
|
|
632 | done |
|
|
633 | |
|
|
634 | while read -d $'\0' -r file; do |
| 528 | files+=("${file}") |
635 | files+=("${file}") |
| 529 | done < <(find "${ED}" "(" -name "*.py[co]" -o -name "*\$py.class" ")" -type f -print0) |
636 | done < <(find "${ED}" "(" -name "*.py[co]" -o -name "*\$py.class" ")" -type f -print0) |
| 530 | |
637 | |
| 531 | if [[ "${#files[@]}" -gt 0 ]]; then |
638 | if [[ "${#files[@]}" -gt 0 ]]; then |
| 532 | if [[ "${quiet}" == "0" ]]; then |
639 | if [[ "${quiet}" == "0" ]]; then |
| … | |
… | |
| 566 | # @ECLASS-VARIABLE: SUPPORT_PYTHON_ABIS |
673 | # @ECLASS-VARIABLE: SUPPORT_PYTHON_ABIS |
| 567 | # @DESCRIPTION: |
674 | # @DESCRIPTION: |
| 568 | # Set this in EAPI <= 4 to indicate that current package supports installation for |
675 | # Set this in EAPI <= 4 to indicate that current package supports installation for |
| 569 | # multiple Python ABIs. |
676 | # multiple Python ABIs. |
| 570 | |
677 | |
|
|
678 | # @ECLASS-VARIABLE: PYTHON_TESTS_RESTRICTED_ABIS |
|
|
679 | # @DESCRIPTION: |
|
|
680 | # Space-separated list of Python ABI patterns. Testing in Python ABIs matching any Python ABI |
|
|
681 | # patterns specified in this list is skipped. |
|
|
682 | |
| 571 | # @ECLASS-VARIABLE: PYTHON_EXPORT_PHASE_FUNCTIONS |
683 | # @ECLASS-VARIABLE: PYTHON_EXPORT_PHASE_FUNCTIONS |
| 572 | # @DESCRIPTION: |
684 | # @DESCRIPTION: |
| 573 | # Set this to export phase functions for the following ebuild phases: |
685 | # Set this to export phase functions for the following ebuild phases: |
| 574 | # src_prepare, src_configure, src_compile, src_test, src_install. |
686 | # src_prepare(), src_configure(), src_compile(), src_test(), src_install(). |
| 575 | if ! has "${EAPI:-0}" 0 1; then |
687 | if ! has "${EAPI:-0}" 0 1; then |
| 576 | python_src_prepare() { |
688 | python_src_prepare() { |
| 577 | _python_check_python_pkg_setup_execution |
689 | if [[ "${EBUILD_PHASE}" != "prepare" ]]; then |
|
|
690 | die "${FUNCNAME}() can be used only in src_prepare() phase" |
|
|
691 | fi |
| 578 | |
692 | |
| 579 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
693 | 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" |
694 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
| 581 | fi |
695 | fi |
| 582 | |
696 | |
|
|
697 | _python_check_python_pkg_setup_execution |
|
|
698 | |
| 583 | if [[ "$#" -ne 0 ]]; then |
699 | if [[ "$#" -ne 0 ]]; then |
| 584 | die "${FUNCNAME}() does not accept arguments" |
700 | die "${FUNCNAME}() does not accept arguments" |
| 585 | fi |
701 | fi |
| 586 | |
702 | |
| 587 | python_copy_sources |
703 | python_copy_sources |
| 588 | } |
704 | } |
| 589 | |
705 | |
| 590 | for python_default_function in src_configure src_compile src_test src_install; do |
706 | for python_default_function in src_configure src_compile src_test; do |
| 591 | eval "python_${python_default_function}() { |
707 | eval "python_${python_default_function}() { |
| 592 | _python_check_python_pkg_setup_execution |
708 | if [[ \"\${EBUILD_PHASE}\" != \"${python_default_function#src_}\" ]]; then |
|
|
709 | die \"\${FUNCNAME}() can be used only in ${python_default_function}() phase\" |
|
|
710 | fi |
| 593 | |
711 | |
| 594 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
712 | 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\" |
713 | die \"\${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs\" |
| 596 | fi |
714 | fi |
| 597 | |
715 | |
|
|
716 | _python_check_python_pkg_setup_execution |
|
|
717 | |
| 598 | python_execute_function -d -s -- \"\$@\" |
718 | python_execute_function -d -s -- \"\$@\" |
| 599 | }" |
719 | }" |
| 600 | done |
720 | done |
| 601 | unset python_default_function |
721 | unset python_default_function |
| 602 | |
722 | |
|
|
723 | python_src_install() { |
|
|
724 | if [[ "${EBUILD_PHASE}" != "install" ]]; then |
|
|
725 | die "${FUNCNAME}() can be used only in src_install() phase" |
|
|
726 | fi |
|
|
727 | |
|
|
728 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
729 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
|
|
730 | fi |
|
|
731 | |
|
|
732 | _python_check_python_pkg_setup_execution |
|
|
733 | |
|
|
734 | if has "${EAPI:-0}" 0 1 2 3; then |
|
|
735 | python_execute_function -d -s -- "$@" |
|
|
736 | else |
|
|
737 | python_installation() { |
|
|
738 | emake DESTDIR="${T}/images/${PYTHON_ABI}" install "$@" |
|
|
739 | } |
|
|
740 | python_execute_function -s python_installation "$@" |
|
|
741 | unset python_installation |
|
|
742 | |
|
|
743 | python_merge_intermediate_installation_images "${T}/images" |
|
|
744 | fi |
|
|
745 | } |
|
|
746 | |
| 603 | if [[ -n "${PYTHON_EXPORT_PHASE_FUNCTIONS}" ]]; then |
747 | if [[ -n "${PYTHON_EXPORT_PHASE_FUNCTIONS}" ]]; then |
| 604 | EXPORT_FUNCTIONS src_prepare src_configure src_compile src_test src_install |
748 | EXPORT_FUNCTIONS src_prepare src_configure src_compile src_test src_install |
| 605 | fi |
749 | fi |
| 606 | fi |
750 | fi |
| 607 | |
751 | |
|
|
752 | if has "${EAPI:-0}" 0 1 2 3 4; then |
| 608 | unset PYTHON_ABIS |
753 | unset PYTHON_ABIS |
|
|
754 | fi |
| 609 | |
755 | |
| 610 | _python_calculate_PYTHON_ABIS() { |
756 | _python_calculate_PYTHON_ABIS() { |
| 611 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
757 | 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" |
758 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
| 613 | fi |
759 | fi |
| 614 | |
760 | |
| 615 | _python_initial_sanity_checks |
761 | _python_initial_sanity_checks |
| 616 | |
762 | |
| 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 |
763 | 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= |
764 | local PYTHON_ABI |
| 620 | PYTHON_ABI_SUPPORTED_VALUES="${_CPYTHON2_SUPPORTED_ABIS[@]} ${_CPYTHON3_SUPPORTED_ABIS[@]} ${_JYTHON_SUPPORTED_ABIS[@]}" |
|
|
| 621 | |
765 | |
| 622 | if [[ "$(declare -p USE_PYTHON 2> /dev/null)" == "declare -x USE_PYTHON="* ]]; then |
766 | if [[ "$(declare -p USE_PYTHON 2> /dev/null)" == "declare -x USE_PYTHON="* ]]; then |
| 623 | local cpython_enabled="0" |
767 | local cpython_enabled="0" |
| 624 | |
768 | |
| 625 | if [[ -z "${USE_PYTHON}" ]]; then |
769 | if [[ -z "${USE_PYTHON}" ]]; then |
| 626 | die "USE_PYTHON variable is empty" |
770 | die "USE_PYTHON variable is empty" |
| 627 | fi |
771 | fi |
| 628 | |
772 | |
| 629 | for PYTHON_ABI in ${USE_PYTHON}; do |
773 | for PYTHON_ABI in ${USE_PYTHON}; do |
| 630 | if ! has "${PYTHON_ABI}" ${PYTHON_ABI_SUPPORTED_VALUES}; then |
774 | if ! has "${PYTHON_ABI}" "${_PYTHON_GLOBALLY_SUPPORTED_ABIS[@]}"; then |
| 631 | die "USE_PYTHON variable contains invalid value '${PYTHON_ABI}'" |
775 | die "USE_PYTHON variable contains invalid value '${PYTHON_ABI}'" |
| 632 | fi |
776 | fi |
| 633 | |
777 | |
| 634 | if has "${PYTHON_ABI}" "${_CPYTHON2_SUPPORTED_ABIS[@]}" "${_CPYTHON3_SUPPORTED_ABIS[@]}"; then |
778 | if has "${PYTHON_ABI}" "${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]}" "${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]}"; then |
| 635 | cpython_enabled="1" |
779 | cpython_enabled="1" |
| 636 | fi |
780 | fi |
| 637 | |
781 | |
| 638 | support_ABI="1" |
782 | if ! _python_check_python_abi_matching --patterns-list "${PYTHON_ABI}" "${RESTRICT_PYTHON_ABIS}"; then |
| 639 | for restricted_ABI in ${RESTRICT_PYTHON_ABIS}; do |
783 | export PYTHON_ABIS+="${PYTHON_ABIS:+ }${PYTHON_ABI}" |
| 640 | if [[ "${PYTHON_ABI}" == ${restricted_ABI} ]]; then |
784 | fi |
| 641 | support_ABI="0" |
785 | done |
|
|
786 | |
|
|
787 | if [[ -z "${PYTHON_ABIS//[${IFS}]/}" ]]; then |
|
|
788 | die "USE_PYTHON variable does not enable any Python ABI supported by ${CATEGORY}/${PF}" |
|
|
789 | fi |
|
|
790 | |
|
|
791 | if [[ "${cpython_enabled}" == "0" ]]; then |
|
|
792 | die "USE_PYTHON variable does not enable any CPython ABI" |
|
|
793 | fi |
|
|
794 | else |
|
|
795 | local python_version python2_version python3_version support_python_major_version |
|
|
796 | |
|
|
797 | if ! has_version "dev-lang/python"; then |
|
|
798 | die "${FUNCNAME}(): 'dev-lang/python' is not installed" |
|
|
799 | fi |
|
|
800 | |
|
|
801 | python_version="$("${EPREFIX}/usr/bin/python" -c 'from sys import version_info; print(".".join(str(x) for x in version_info[:2]))')" |
|
|
802 | |
|
|
803 | if has_version "=dev-lang/python-2*"; then |
|
|
804 | if [[ "$(readlink "${EPREFIX}/usr/bin/python2")" != "python2."* ]]; then |
|
|
805 | die "'${EPREFIX}/usr/bin/python2' is not valid symlink" |
|
|
806 | fi |
|
|
807 | |
|
|
808 | python2_version="$("${EPREFIX}/usr/bin/python2" -c 'from sys import version_info; print(".".join(str(x) for x in version_info[:2]))')" |
|
|
809 | |
|
|
810 | support_python_major_version="0" |
|
|
811 | for PYTHON_ABI in "${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]}"; do |
|
|
812 | if ! _python_check_python_abi_matching --patterns-list "${PYTHON_ABI}" "${RESTRICT_PYTHON_ABIS}"; then |
|
|
813 | support_python_major_version="1" |
| 642 | break |
814 | break |
| 643 | fi |
815 | fi |
| 644 | done |
816 | 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 |
817 | if [[ "${support_python_major_version}" == "1" ]]; then |
| 681 | for restricted_ABI in ${RESTRICT_PYTHON_ABIS}; do |
818 | 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}" |
819 | die "Active version of CPython 2 is not supported by ${CATEGORY}/${PF}" |
| 684 | fi |
820 | fi |
| 685 | done |
|
|
| 686 | else |
821 | else |
| 687 | python2_version="" |
822 | python2_version="" |
| 688 | fi |
823 | fi |
| 689 | fi |
824 | fi |
| 690 | |
825 | |
| … | |
… | |
| 693 | die "'${EPREFIX}/usr/bin/python3' is not valid symlink" |
828 | die "'${EPREFIX}/usr/bin/python3' is not valid symlink" |
| 694 | fi |
829 | fi |
| 695 | |
830 | |
| 696 | python3_version="$("${EPREFIX}/usr/bin/python3" -c 'from sys import version_info; print(".".join(str(x) for x in version_info[:2]))')" |
831 | python3_version="$("${EPREFIX}/usr/bin/python3" -c 'from sys import version_info; print(".".join(str(x) for x in version_info[:2]))')" |
| 697 | |
832 | |
|
|
833 | support_python_major_version="0" |
| 698 | for PYTHON_ABI in "${_CPYTHON3_SUPPORTED_ABIS[@]}"; do |
834 | for PYTHON_ABI in "${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]}"; do |
|
|
835 | if ! _python_check_python_abi_matching --patterns-list "${PYTHON_ABI}" "${RESTRICT_PYTHON_ABIS}"; then |
| 699 | support_python_major_version="1" |
836 | support_python_major_version="1" |
| 700 | for restricted_ABI in ${RESTRICT_PYTHON_ABIS}; do |
837 | break |
| 701 | if [[ "${PYTHON_ABI}" == ${restricted_ABI} ]]; then |
|
|
| 702 | support_python_major_version="0" |
|
|
| 703 | fi |
838 | fi |
| 704 | done |
|
|
| 705 | [[ "${support_python_major_version}" == "1" ]] && break |
|
|
| 706 | done |
839 | done |
| 707 | if [[ "${support_python_major_version}" == "1" ]]; then |
840 | if [[ "${support_python_major_version}" == "1" ]]; then |
| 708 | for restricted_ABI in ${RESTRICT_PYTHON_ABIS}; do |
841 | 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}" |
842 | die "Active version of CPython 3 is not supported by ${CATEGORY}/${PF}" |
| 711 | fi |
843 | fi |
| 712 | done |
|
|
| 713 | else |
844 | else |
| 714 | python3_version="" |
845 | python3_version="" |
| 715 | fi |
846 | fi |
|
|
847 | fi |
|
|
848 | |
|
|
849 | if [[ -z "${python2_version}" && -z "${python3_version}" ]]; then |
|
|
850 | eerror "${CATEGORY}/${PF} requires at least one of the following packages:" |
|
|
851 | for PYTHON_ABI in "${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]}" "${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]}"; do |
|
|
852 | if ! _python_check_python_abi_matching --patterns-list "${PYTHON_ABI}" "${RESTRICT_PYTHON_ABIS}"; then |
|
|
853 | eerror " dev-lang/python:${PYTHON_ABI}" |
|
|
854 | fi |
|
|
855 | done |
|
|
856 | die "No supported version of CPython installed" |
| 716 | fi |
857 | fi |
| 717 | |
858 | |
| 718 | if [[ -n "${python2_version}" && "${python_version}" == "2."* && "${python_version}" != "${python2_version}" ]]; then |
859 | if [[ -n "${python2_version}" && "${python_version}" == "2."* && "${python_version}" != "${python2_version}" ]]; then |
| 719 | eerror "Python wrapper is configured incorrectly or '${EPREFIX}/usr/bin/python2' symlink" |
860 | eerror "Python wrapper is configured incorrectly or '${EPREFIX}/usr/bin/python2' symlink" |
| 720 | eerror "is set incorrectly. Use \`eselect python\` to fix configuration." |
861 | eerror "is set incorrectly. Use \`eselect python\` to fix configuration." |
| … | |
… | |
| 742 | eval "_PYTHON_SAVED_${variable}=\"\${!variable}\"" |
883 | eval "_PYTHON_SAVED_${variable}=\"\${!variable}\"" |
| 743 | for prefix in PYTHON_USER_ PYTHON_; do |
884 | for prefix in PYTHON_USER_ PYTHON_; do |
| 744 | if [[ "$(declare -p ${prefix}${variable} 2> /dev/null)" == "declare -a ${prefix}${variable}="* ]]; then |
885 | if [[ "$(declare -p ${prefix}${variable} 2> /dev/null)" == "declare -a ${prefix}${variable}="* ]]; then |
| 745 | eval "array=(\"\${${prefix}${variable}[@]}\")" |
886 | eval "array=(\"\${${prefix}${variable}[@]}\")" |
| 746 | for element in "${array[@]}"; do |
887 | for element in "${array[@]}"; do |
| 747 | if [[ "${element}" =~ ^([[:alnum:]]|\.|-|\*|\[|\])+\ (\+|-)\ .+ ]]; then |
888 | if [[ "${element}" =~ ^${_PYTHON_ABI_PATTERN_REGEX}\ (\+|-)\ .+ ]]; then |
| 748 | pattern="${element%% *}" |
889 | pattern="${element%% *}" |
| 749 | element="${element#* }" |
890 | element="${element#* }" |
| 750 | operator="${element%% *}" |
891 | operator="${element%% *}" |
| 751 | flags="${element#* }" |
892 | flags="${element#* }" |
| 752 | if [[ "${PYTHON_ABI}" == ${pattern} ]]; then |
893 | if _python_check_python_abi_matching "${PYTHON_ABI}" "${pattern}"; then |
| 753 | if [[ "${operator}" == "+" ]]; then |
894 | if [[ "${operator}" == "+" ]]; then |
| 754 | eval "export ${variable}+=\"\${variable:+ }${flags}\"" |
895 | eval "export ${variable}+=\"\${variable:+ }${flags}\"" |
| 755 | elif [[ "${operator}" == "-" ]]; then |
896 | elif [[ "${operator}" == "-" ]]; then |
| 756 | flags="${flags// /$'\n'}" |
897 | flags="${flags// /$'\n'}" |
| 757 | old_value="${!variable// /$'\n'}" |
898 | 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] |
932 | # @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: |
933 | # @DESCRIPTION: |
| 793 | # Execute specified function for each value of PYTHON_ABIS, optionally passing additional |
934 | # Execute specified function for each value of PYTHON_ABIS, optionally passing additional |
| 794 | # arguments. The specified function can use PYTHON_ABI and BUILDDIR variables. |
935 | # arguments. The specified function can use PYTHON_ABI and BUILDDIR variables. |
| 795 | python_execute_function() { |
936 | python_execute_function() { |
| 796 | _python_check_python_pkg_setup_execution |
|
|
| 797 | |
|
|
| 798 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
937 | 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" |
938 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
| 800 | fi |
939 | fi |
| 801 | |
940 | |
|
|
941 | _python_check_python_pkg_setup_execution |
| 802 | _python_set_color_variables |
942 | _python_set_color_variables |
| 803 | |
943 | |
| 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= |
944 | 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 | |
945 | |
| 806 | while (($#)); do |
946 | while (($#)); do |
| 807 | case "$1" in |
947 | case "$1" in |
| 808 | --action-message) |
948 | --action-message) |
| 809 | action_message_template="$2" |
949 | action_message_template="$2" |
| … | |
… | |
| 879 | python_default_function() { |
1019 | python_default_function() { |
| 880 | emake "$@" |
1020 | emake "$@" |
| 881 | } |
1021 | } |
| 882 | elif [[ "${EBUILD_PHASE}" == "test" ]]; then |
1022 | elif [[ "${EBUILD_PHASE}" == "test" ]]; then |
| 883 | python_default_function() { |
1023 | python_default_function() { |
|
|
1024 | # Stolen from portage's _eapi0_src_test() |
|
|
1025 | local emake_cmd="${MAKE:-make} ${MAKEOPTS} ${EXTRA_EMAKE}" |
| 884 | if emake -j1 -n check &> /dev/null; then |
1026 | if ${emake_cmd} -j1 -n check &> /dev/null; then |
| 885 | emake -j1 check "$@" |
1027 | ${emake_cmd} -j1 check "$@" |
| 886 | elif emake -j1 -n test &> /dev/null; then |
1028 | elif ${emake_cmd} -j1 -n test &> /dev/null; then |
| 887 | emake -j1 test "$@" |
1029 | ${emake_cmd} -j1 test "$@" |
| 888 | fi |
1030 | fi |
| 889 | } |
1031 | } |
| 890 | elif [[ "${EBUILD_PHASE}" == "install" ]]; then |
1032 | elif [[ "${EBUILD_PHASE}" == "install" ]]; then |
| 891 | python_default_function() { |
1033 | python_default_function() { |
| 892 | emake DESTDIR="${D}" install "$@" |
1034 | emake DESTDIR="${D}" install "$@" |
| … | |
… | |
| 921 | iterated_PYTHON_ABIS="$(PYTHON -f --ABI)" |
1063 | iterated_PYTHON_ABIS="$(PYTHON -f --ABI)" |
| 922 | else |
1064 | else |
| 923 | iterated_PYTHON_ABIS="${PYTHON_ABIS}" |
1065 | iterated_PYTHON_ABIS="${PYTHON_ABIS}" |
| 924 | fi |
1066 | fi |
| 925 | for PYTHON_ABI in ${iterated_PYTHON_ABIS}; do |
1067 | for PYTHON_ABI in ${iterated_PYTHON_ABIS}; do |
|
|
1068 | if [[ "${EBUILD_PHASE}" == "test" ]] && _python_check_python_abi_matching --patterns-list "${PYTHON_ABI}" "${PYTHON_TESTS_RESTRICTED_ABIS}"; then |
|
|
1069 | if [[ "${quiet}" == "0" ]]; then |
|
|
1070 | echo " ${_GREEN}*${_NORMAL} ${_BLUE}Testing of ${CATEGORY}/${PF} with $(python_get_implementation_and_version) skipped${_NORMAL}" |
|
|
1071 | fi |
|
|
1072 | continue |
|
|
1073 | fi |
|
|
1074 | |
| 926 | _python_prepare_flags |
1075 | _python_prepare_flags |
| 927 | |
1076 | |
| 928 | if [[ "${quiet}" == "0" ]]; then |
1077 | if [[ "${quiet}" == "0" ]]; then |
| 929 | if [[ -n "${action_message_template}" ]]; then |
1078 | if [[ -n "${action_message_template}" ]]; then |
| 930 | action_message="$(eval echo -n "${action_message_template}")" |
1079 | eval "action_message=\"${action_message_template}\"" |
| 931 | else |
1080 | else |
| 932 | action_message="${action} of ${CATEGORY}/${PF} with $(python_get_implementation) $(python_get_version)..." |
1081 | action_message="${action} of ${CATEGORY}/${PF} with $(python_get_implementation_and_version)..." |
| 933 | fi |
1082 | fi |
| 934 | echo " ${_GREEN}*${_NORMAL} ${_BLUE}${action_message}${_NORMAL}" |
1083 | echo " ${_GREEN}*${_NORMAL} ${_BLUE}${action_message}${_NORMAL}" |
| 935 | fi |
1084 | fi |
| 936 | |
1085 | |
| 937 | if [[ "${separate_build_dirs}" == "1" ]]; then |
1086 | if [[ "${separate_build_dirs}" == "1" ]]; then |
| … | |
… | |
| 959 | |
1108 | |
| 960 | _python_restore_flags |
1109 | _python_restore_flags |
| 961 | |
1110 | |
| 962 | if [[ "${return_code}" -ne 0 ]]; then |
1111 | if [[ "${return_code}" -ne 0 ]]; then |
| 963 | if [[ -n "${failure_message_template}" ]]; then |
1112 | if [[ -n "${failure_message_template}" ]]; then |
| 964 | failure_message="$(eval echo -n "${failure_message_template}")" |
1113 | eval "failure_message=\"${failure_message_template}\"" |
| 965 | else |
1114 | else |
| 966 | failure_message="${action} failed with $(python_get_implementation) $(python_get_version) in ${function}() function" |
1115 | failure_message="${action} failed with $(python_get_implementation_and_version) in ${function}() function" |
| 967 | fi |
1116 | fi |
| 968 | |
1117 | |
| 969 | if [[ "${nonfatal}" == "1" ]]; then |
1118 | if [[ "${nonfatal}" == "1" ]]; then |
| 970 | if [[ "${quiet}" == "0" ]]; then |
1119 | if [[ "${quiet}" == "0" ]]; then |
| 971 | ewarn "${_RED}${failure_message}${_NORMAL}" |
1120 | ewarn "${failure_message}" |
| 972 | fi |
1121 | fi |
| 973 | elif [[ "${final_ABI}" == "0" ]] && has "${PYTHON_ABI}" ${FAILURE_TOLERANT_PYTHON_ABIS}; then |
1122 | elif [[ "${final_ABI}" == "0" ]] && has "${PYTHON_ABI}" ${FAILURE_TOLERANT_PYTHON_ABIS}; then |
| 974 | if [[ "${EBUILD_PHASE}" != "test" ]] || ! has test-fail-continue ${FEATURES}; then |
1123 | if [[ "${EBUILD_PHASE}" != "test" ]] || ! has test-fail-continue ${FEATURES}; then |
| 975 | local enabled_PYTHON_ABIS= other_PYTHON_ABI |
1124 | local enabled_PYTHON_ABIS= other_PYTHON_ABI |
| 976 | for other_PYTHON_ABI in ${PYTHON_ABIS}; do |
1125 | for other_PYTHON_ABI in ${PYTHON_ABIS}; do |
| 977 | [[ "${other_PYTHON_ABI}" != "${PYTHON_ABI}" ]] && enabled_PYTHON_ABIS+="${enabled_PYTHON_ABIS:+ }${other_PYTHON_ABI}" |
1126 | [[ "${other_PYTHON_ABI}" != "${PYTHON_ABI}" ]] && enabled_PYTHON_ABIS+="${enabled_PYTHON_ABIS:+ }${other_PYTHON_ABI}" |
| 978 | done |
1127 | done |
| 979 | export PYTHON_ABIS="${enabled_PYTHON_ABIS}" |
1128 | export PYTHON_ABIS="${enabled_PYTHON_ABIS}" |
| 980 | fi |
1129 | fi |
| 981 | if [[ "${quiet}" == "0" ]]; then |
1130 | if [[ "${quiet}" == "0" ]]; then |
| 982 | ewarn "${_RED}${failure_message}${_NORMAL}" |
1131 | ewarn "${failure_message}" |
| 983 | fi |
1132 | fi |
| 984 | if [[ -z "${PYTHON_ABIS}" ]]; then |
1133 | if [[ -z "${PYTHON_ABIS}" ]]; then |
| 985 | die "${function}() function failed with all enabled Python ABIs" |
1134 | die "${function}() function failed with all enabled Python ABIs" |
| 986 | fi |
1135 | fi |
| 987 | else |
1136 | else |
| … | |
… | |
| 1024 | # @FUNCTION: python_copy_sources |
1173 | # @FUNCTION: python_copy_sources |
| 1025 | # @USAGE: <directory="${S}"> [directory] |
1174 | # @USAGE: <directory="${S}"> [directory] |
| 1026 | # @DESCRIPTION: |
1175 | # @DESCRIPTION: |
| 1027 | # Copy unpacked sources of current package to separate build directory for each Python ABI. |
1176 | # Copy unpacked sources of current package to separate build directory for each Python ABI. |
| 1028 | python_copy_sources() { |
1177 | python_copy_sources() { |
| 1029 | _python_check_python_pkg_setup_execution |
|
|
| 1030 | |
|
|
| 1031 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
1178 | 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" |
1179 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
| 1033 | fi |
1180 | fi |
|
|
1181 | |
|
|
1182 | _python_check_python_pkg_setup_execution |
| 1034 | |
1183 | |
| 1035 | local dir dirs=() PYTHON_ABI |
1184 | local dir dirs=() PYTHON_ABI |
| 1036 | |
1185 | |
| 1037 | if [[ "$#" -eq 0 ]]; then |
1186 | if [[ "$#" -eq 0 ]]; then |
| 1038 | if [[ "${WORKDIR}" == "${S}" ]]; then |
1187 | if [[ "${WORKDIR}" == "${S}" ]]; then |
| … | |
… | |
| 1055 | # @USAGE: [-E|--respect-EPYTHON] [-f|--force] [-q|--quiet] [--] <file> [files] |
1204 | # @USAGE: [-E|--respect-EPYTHON] [-f|--force] [-q|--quiet] [--] <file> [files] |
| 1056 | # @DESCRIPTION: |
1205 | # @DESCRIPTION: |
| 1057 | # Generate wrapper scripts. Existing files are overwritten only with --force option. |
1206 | # Generate wrapper scripts. Existing files are overwritten only with --force option. |
| 1058 | # If --respect-EPYTHON option is specified, then generated wrapper scripts will |
1207 | # If --respect-EPYTHON option is specified, then generated wrapper scripts will |
| 1059 | # respect EPYTHON variable at run time. |
1208 | # respect EPYTHON variable at run time. |
|
|
1209 | # |
|
|
1210 | # This function can be used only in src_install() phase. |
| 1060 | python_generate_wrapper_scripts() { |
1211 | python_generate_wrapper_scripts() { |
| 1061 | _python_check_python_pkg_setup_execution |
1212 | if [[ "${EBUILD_PHASE}" != "install" ]]; then |
|
|
1213 | die "${FUNCNAME}() can be used only in src_install() phase" |
|
|
1214 | fi |
| 1062 | |
1215 | |
| 1063 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
1216 | 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" |
1217 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
| 1065 | fi |
1218 | fi |
| 1066 | |
1219 | |
|
|
1220 | _python_check_python_pkg_setup_execution |
| 1067 | _python_initialize_prefix_variables |
1221 | _python_initialize_prefix_variables |
| 1068 | |
1222 | |
| 1069 | local eselect_python_option file force="0" quiet="0" PYTHON_ABI python2_enabled="0" python3_enabled="0" respect_EPYTHON="0" |
1223 | local eselect_python_option file force="0" quiet="0" PYTHON_ABI PYTHON_ABIS_list python2_enabled="0" python3_enabled="0" respect_EPYTHON="0" |
| 1070 | |
1224 | |
| 1071 | while (($#)); do |
1225 | while (($#)); do |
| 1072 | case "$1" in |
1226 | case "$1" in |
| 1073 | -E|--respect-EPYTHON) |
1227 | -E|--respect-EPYTHON) |
| 1074 | respect_EPYTHON="1" |
1228 | respect_EPYTHON="1" |
| … | |
… | |
| 1096 | if [[ "$#" -eq 0 ]]; then |
1250 | if [[ "$#" -eq 0 ]]; then |
| 1097 | die "${FUNCNAME}(): Missing arguments" |
1251 | die "${FUNCNAME}(): Missing arguments" |
| 1098 | fi |
1252 | fi |
| 1099 | |
1253 | |
| 1100 | _python_calculate_PYTHON_ABIS |
1254 | _python_calculate_PYTHON_ABIS |
| 1101 | for PYTHON_ABI in "${_CPYTHON2_SUPPORTED_ABIS[@]}"; do |
1255 | for PYTHON_ABI in "${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]}"; do |
| 1102 | if has "${PYTHON_ABI}" ${PYTHON_ABIS}; then |
1256 | if has "${PYTHON_ABI}" ${PYTHON_ABIS}; then |
| 1103 | python2_enabled="1" |
1257 | python2_enabled="1" |
| 1104 | fi |
1258 | fi |
| 1105 | done |
1259 | done |
| 1106 | for PYTHON_ABI in "${_CPYTHON3_SUPPORTED_ABIS[@]}"; do |
1260 | for PYTHON_ABI in "${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]}"; do |
| 1107 | if has "${PYTHON_ABI}" ${PYTHON_ABIS}; then |
1261 | if has "${PYTHON_ABI}" ${PYTHON_ABIS}; then |
| 1108 | python3_enabled="1" |
1262 | python3_enabled="1" |
| 1109 | fi |
1263 | fi |
| 1110 | done |
1264 | done |
| 1111 | |
1265 | |
| … | |
… | |
| 1117 | eselect_python_option="--python3" |
1271 | eselect_python_option="--python3" |
| 1118 | else |
1272 | else |
| 1119 | die "${FUNCNAME}(): Unsupported environment" |
1273 | die "${FUNCNAME}(): Unsupported environment" |
| 1120 | fi |
1274 | fi |
| 1121 | |
1275 | |
|
|
1276 | PYTHON_ABIS_list="$("$(PYTHON -f)" -c "print(', '.join('\"%s\"' % x for x in reversed('${PYTHON_ABIS}'.split())))")" |
|
|
1277 | |
| 1122 | for file in "$@"; do |
1278 | for file in "$@"; do |
| 1123 | if [[ -f "${file}" && "${force}" == "0" ]]; then |
1279 | if [[ -f "${file}" && "${force}" == "0" ]]; then |
| 1124 | die "${FUNCNAME}(): '$1' already exists" |
1280 | die "${FUNCNAME}(): '${file}' already exists" |
| 1125 | fi |
1281 | fi |
| 1126 | |
1282 | |
| 1127 | if [[ "${quiet}" == "0" ]]; then |
1283 | if [[ "${quiet}" == "0" ]]; then |
| 1128 | einfo "Generating '${file#${ED%/}}' wrapper script" |
1284 | einfo "Generating '${file#${ED%/}}' wrapper script" |
| 1129 | fi |
1285 | fi |
| … | |
… | |
| 1135 | import os |
1291 | import os |
| 1136 | import re |
1292 | import re |
| 1137 | import subprocess |
1293 | import subprocess |
| 1138 | import sys |
1294 | import sys |
| 1139 | |
1295 | |
|
|
1296 | cpython_ABI_re = re.compile(r"^(\d+\.\d+)$") |
|
|
1297 | jython_ABI_re = re.compile(r"^(\d+\.\d+)-jython$") |
|
|
1298 | pypy_ABI_re = re.compile(r"^\d+\.\d+-pypy-(\d+\.\d+)$") |
| 1140 | EPYTHON_re = re.compile(r"^python(\d+\.\d+)$") |
1299 | cpython_interpreter_re = re.compile(r"^python(\d+\.\d+)$") |
|
|
1300 | jython_interpreter_re = re.compile(r"^jython(\d+\.\d+)$") |
|
|
1301 | 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)") |
1302 | cpython_shebang_re = re.compile(r"^#![ \t]*(?:${EPREFIX}/usr/bin/python|(?:${EPREFIX})?/usr/bin/env[ \t]+(?:${EPREFIX}/usr/bin/)?python)") |
|
|
1303 | 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$") |
1304 | python_verification_output_re = re.compile("^GENTOO_PYTHON_TARGET_SCRIPT_PATH supported\n$") |
|
|
1305 | |
|
|
1306 | pypy_versions_mapping = { |
|
|
1307 | "1.5": "2.7" |
|
|
1308 | } |
|
|
1309 | |
|
|
1310 | def get_PYTHON_ABI(python_interpreter): |
|
|
1311 | cpython_matched = cpython_interpreter_re.match(python_interpreter) |
|
|
1312 | jython_matched = jython_interpreter_re.match(python_interpreter) |
|
|
1313 | pypy_matched = pypy_interpreter_re.match(python_interpreter) |
|
|
1314 | if cpython_matched is not None: |
|
|
1315 | PYTHON_ABI = cpython_matched.group(1) |
|
|
1316 | elif jython_matched is not None: |
|
|
1317 | PYTHON_ABI = jython_matched.group(1) + "-jython" |
|
|
1318 | elif pypy_matched is not None: |
|
|
1319 | PYTHON_ABI = pypy_versions_mapping[pypy_matched.group(1)] + "-pypy-" + pypy_matched.group(1) |
|
|
1320 | else: |
|
|
1321 | PYTHON_ABI = None |
|
|
1322 | return PYTHON_ABI |
|
|
1323 | |
|
|
1324 | def get_python_interpreter(PYTHON_ABI): |
|
|
1325 | cpython_matched = cpython_ABI_re.match(PYTHON_ABI) |
|
|
1326 | jython_matched = jython_ABI_re.match(PYTHON_ABI) |
|
|
1327 | pypy_matched = pypy_ABI_re.match(PYTHON_ABI) |
|
|
1328 | if cpython_matched is not None: |
|
|
1329 | python_interpreter = "python" + cpython_matched.group(1) |
|
|
1330 | elif jython_matched is not None: |
|
|
1331 | python_interpreter = "jython" + jython_matched.group(1) |
|
|
1332 | elif pypy_matched is not None: |
|
|
1333 | python_interpreter = "pypy-c" + pypy_matched.group(1) |
|
|
1334 | else: |
|
|
1335 | python_interpreter = None |
|
|
1336 | return python_interpreter |
| 1143 | |
1337 | |
| 1144 | EOF |
1338 | EOF |
| 1145 | if [[ "$?" != "0" ]]; then |
1339 | if [[ "$?" != "0" ]]; then |
| 1146 | die "${FUNCNAME}(): Generation of '$1' failed" |
1340 | die "${FUNCNAME}(): Generation of '$1' failed" |
| 1147 | fi |
1341 | fi |
| 1148 | if [[ "${respect_EPYTHON}" == "1" ]]; then |
1342 | if [[ "${respect_EPYTHON}" == "1" ]]; then |
| 1149 | cat << EOF >> "${file}" |
1343 | cat << EOF >> "${file}" |
| 1150 | EPYTHON = os.environ.get("EPYTHON") |
1344 | python_interpreter = os.environ.get("EPYTHON") |
| 1151 | if EPYTHON: |
1345 | if python_interpreter: |
| 1152 | EPYTHON_matched = EPYTHON_re.match(EPYTHON) |
1346 | PYTHON_ABI = get_PYTHON_ABI(python_interpreter) |
| 1153 | if EPYTHON_matched: |
1347 | 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) |
1348 | sys.stderr.write("%s: EPYTHON variable has unrecognized value '%s'\n" % (sys.argv[0], python_interpreter)) |
| 1157 | sys.exit(1) |
1349 | sys.exit(1) |
| 1158 | else: |
1350 | else: |
| 1159 | try: |
1351 | try: |
|
|
1352 | environment = os.environ.copy() |
|
|
1353 | 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) |
1354 | 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: |
1355 | if eselect_process.wait() != 0: |
| 1162 | raise ValueError |
1356 | raise ValueError |
| 1163 | except (OSError, ValueError): |
1357 | except (OSError, ValueError): |
| 1164 | sys.stderr.write("Execution of 'eselect python show${eselect_python_option:+ }${eselect_python_option}' failed\n") |
1358 | sys.stderr.write("%s: Execution of 'eselect python show${eselect_python_option:+ }${eselect_python_option}' failed\n" % sys.argv[0]) |
| 1165 | sys.exit(1) |
1359 | sys.exit(1) |
| 1166 | |
1360 | |
| 1167 | EPYTHON = eselect_process.stdout.read() |
1361 | python_interpreter = eselect_process.stdout.read() |
| 1168 | if not isinstance(EPYTHON, str): |
1362 | if not isinstance(python_interpreter, str): |
| 1169 | # Python 3 |
1363 | # Python 3 |
| 1170 | EPYTHON = EPYTHON.decode() |
1364 | python_interpreter = python_interpreter.decode() |
| 1171 | EPYTHON = EPYTHON.rstrip("\n") |
1365 | python_interpreter = python_interpreter.rstrip("\n") |
| 1172 | |
1366 | |
| 1173 | EPYTHON_matched = EPYTHON_re.match(EPYTHON) |
1367 | PYTHON_ABI = get_PYTHON_ABI(python_interpreter) |
| 1174 | if EPYTHON_matched: |
1368 | 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) |
1369 | 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) |
1370 | 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 | |
1371 | |
| 1193 | EPYTHON = eselect_process.stdout.read() |
1372 | wrapper_script_path = os.path.realpath(sys.argv[0]) |
| 1194 | if not isinstance(EPYTHON, str): |
1373 | target_executable_path = "%s-%s" % (wrapper_script_path, PYTHON_ABI) |
| 1195 | # Python 3 |
1374 | if not os.path.exists(target_executable_path): |
| 1196 | EPYTHON = EPYTHON.decode() |
1375 | 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) |
1376 | sys.exit(1) |
| 1205 | EOF |
1377 | EOF |
| 1206 | if [[ "$?" != "0" ]]; then |
1378 | if [[ "$?" != "0" ]]; then |
| 1207 | die "${FUNCNAME}(): Generation of '$1' failed" |
1379 | die "${FUNCNAME}(): Generation of '$1' failed" |
| 1208 | fi |
1380 | fi |
|
|
1381 | else |
|
|
1382 | cat << EOF >> "${file}" |
|
|
1383 | try: |
|
|
1384 | environment = os.environ.copy() |
|
|
1385 | environment["ROOT"] = "/" |
|
|
1386 | 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) |
|
|
1387 | if eselect_process.wait() != 0: |
|
|
1388 | raise ValueError |
|
|
1389 | except (OSError, ValueError): |
|
|
1390 | sys.stderr.write("%s: Execution of 'eselect python show${eselect_python_option:+ }${eselect_python_option}' failed\n" % sys.argv[0]) |
|
|
1391 | sys.exit(1) |
|
|
1392 | |
|
|
1393 | python_interpreter = eselect_process.stdout.read() |
|
|
1394 | if not isinstance(python_interpreter, str): |
|
|
1395 | # Python 3 |
|
|
1396 | python_interpreter = python_interpreter.decode() |
|
|
1397 | python_interpreter = python_interpreter.rstrip("\n") |
|
|
1398 | |
|
|
1399 | PYTHON_ABI = get_PYTHON_ABI(python_interpreter) |
|
|
1400 | if PYTHON_ABI is None: |
|
|
1401 | sys.stderr.write("%s: 'eselect python show${eselect_python_option:+ }${eselect_python_option}' printed unrecognized value '%s'\n" % (sys.argv[0], python_interpreter)) |
|
|
1402 | sys.exit(1) |
|
|
1403 | |
|
|
1404 | wrapper_script_path = os.path.realpath(sys.argv[0]) |
|
|
1405 | for PYTHON_ABI in [PYTHON_ABI, ${PYTHON_ABIS_list}]: |
|
|
1406 | target_executable_path = "%s-%s" % (wrapper_script_path, PYTHON_ABI) |
|
|
1407 | if os.path.exists(target_executable_path): |
|
|
1408 | break |
|
|
1409 | else: |
|
|
1410 | sys.stderr.write("%s: No target script exists for '%s'\n" % (sys.argv[0], wrapper_script_path)) |
|
|
1411 | sys.exit(1) |
|
|
1412 | |
|
|
1413 | python_interpreter = get_python_interpreter(PYTHON_ABI) |
|
|
1414 | if python_interpreter is None: |
|
|
1415 | sys.stderr.write("%s: Unrecognized Python ABI '%s'\n" % (sys.argv[0], PYTHON_ABI)) |
|
|
1416 | sys.exit(1) |
|
|
1417 | EOF |
|
|
1418 | if [[ "$?" != "0" ]]; then |
|
|
1419 | die "${FUNCNAME}(): Generation of '$1' failed" |
|
|
1420 | fi |
| 1209 | fi |
1421 | fi |
| 1210 | cat << EOF >> "${file}" |
1422 | 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 | |
1423 | |
| 1221 | target_executable = open(target_executable_path, "rb") |
1424 | target_executable = open(target_executable_path, "rb") |
| 1222 | target_executable_first_line = target_executable.readline() |
1425 | target_executable_first_line = target_executable.readline() |
|
|
1426 | target_executable.close() |
| 1223 | if not isinstance(target_executable_first_line, str): |
1427 | if not isinstance(target_executable_first_line, str): |
| 1224 | # Python 3 |
1428 | # Python 3 |
| 1225 | target_executable_first_line = target_executable_first_line.decode("utf_8", "replace") |
1429 | target_executable_first_line = target_executable_first_line.decode("utf_8", "replace") |
| 1226 | |
1430 | |
|
|
1431 | options = [] |
|
|
1432 | python_shebang_options_matched = python_shebang_options_re.match(target_executable_first_line) |
|
|
1433 | if python_shebang_options_matched is not None: |
|
|
1434 | options = [python_shebang_options_matched.group(1)] |
|
|
1435 | |
| 1227 | python_shebang_matched = python_shebang_re.match(target_executable_first_line) |
1436 | cpython_shebang_matched = cpython_shebang_re.match(target_executable_first_line) |
| 1228 | target_executable.close() |
|
|
| 1229 | |
1437 | |
| 1230 | if python_shebang_matched: |
1438 | if cpython_shebang_matched is not None: |
| 1231 | try: |
1439 | try: |
| 1232 | python_interpreter_path = "${EPREFIX}/usr/bin/%s" % EPYTHON |
1440 | python_interpreter_path = "${EPREFIX}/usr/bin/%s" % python_interpreter |
| 1233 | os.environ["GENTOO_PYTHON_TARGET_SCRIPT_PATH_VERIFICATION"] = "1" |
1441 | os.environ["GENTOO_PYTHON_TARGET_SCRIPT_PATH_VERIFICATION"] = "1" |
| 1234 | python_verification_process = subprocess.Popen([python_interpreter_path, "-c", "pass"], stdout=subprocess.PIPE) |
1442 | python_verification_process = subprocess.Popen([python_interpreter_path, "-c", "pass"], stdout=subprocess.PIPE) |
| 1235 | del os.environ["GENTOO_PYTHON_TARGET_SCRIPT_PATH_VERIFICATION"] |
1443 | del os.environ["GENTOO_PYTHON_TARGET_SCRIPT_PATH_VERIFICATION"] |
| 1236 | if python_verification_process.wait() != 0: |
1444 | if python_verification_process.wait() != 0: |
| 1237 | raise ValueError |
1445 | raise ValueError |
| … | |
… | |
| 1242 | python_verification_output = python_verification_output.decode() |
1450 | python_verification_output = python_verification_output.decode() |
| 1243 | |
1451 | |
| 1244 | if not python_verification_output_re.match(python_verification_output): |
1452 | if not python_verification_output_re.match(python_verification_output): |
| 1245 | raise ValueError |
1453 | raise ValueError |
| 1246 | |
1454 | |
|
|
1455 | if cpython_interpreter_re.match(python_interpreter) is not None: |
|
|
1456 | os.environ["GENTOO_PYTHON_PROCESS_NAME"] = os.path.basename(sys.argv[0]) |
|
|
1457 | os.environ["GENTOO_PYTHON_WRAPPER_SCRIPT_PATH"] = sys.argv[0] |
|
|
1458 | os.environ["GENTOO_PYTHON_TARGET_SCRIPT_PATH"] = target_executable_path |
|
|
1459 | |
|
|
1460 | if hasattr(os, "execv"): |
| 1247 | os.execv(python_interpreter_path, [python_interpreter_path] + sys.argv) |
1461 | os.execv(python_interpreter_path, [python_interpreter_path] + options + sys.argv) |
|
|
1462 | else: |
|
|
1463 | sys.exit(subprocess.Popen([python_interpreter_path] + options + sys.argv).wait()) |
|
|
1464 | except (KeyboardInterrupt, SystemExit): |
|
|
1465 | raise |
| 1248 | except: |
1466 | except: |
| 1249 | pass |
1467 | pass |
| 1250 | if "GENTOO_PYTHON_TARGET_SCRIPT_PATH_VERIFICATION" in os.environ: |
1468 | 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"] |
1469 | if variable in os.environ: |
|
|
1470 | del os.environ[variable] |
| 1252 | |
1471 | |
|
|
1472 | if hasattr(os, "execv"): |
| 1253 | os.execv(target_executable_path, sys.argv) |
1473 | os.execv(target_executable_path, sys.argv) |
|
|
1474 | else: |
|
|
1475 | sys.exit(subprocess.Popen([target_executable_path] + sys.argv[1:]).wait()) |
| 1254 | EOF |
1476 | EOF |
| 1255 | if [[ "$?" != "0" ]]; then |
1477 | if [[ "$?" != "0" ]]; then |
| 1256 | die "${FUNCNAME}(): Generation of '$1' failed" |
1478 | die "${FUNCNAME}(): Generation of '$1' failed" |
| 1257 | fi |
1479 | fi |
| 1258 | fperms +x "${file#${ED%/}}" || die "fperms '${file}' failed" |
1480 | fperms +x "${file#${ED%/}}" || die "fperms '${file}' failed" |
| 1259 | done |
1481 | done |
| 1260 | } |
1482 | } |
| 1261 | |
1483 | |
|
|
1484 | # @ECLASS-VARIABLE: PYTHON_VERSIONED_SCRIPTS |
|
|
1485 | # @DESCRIPTION: |
|
|
1486 | # Array of regular expressions of paths to versioned Python scripts. |
|
|
1487 | # Python scripts in /usr/bin and /usr/sbin are versioned by default. |
|
|
1488 | |
|
|
1489 | # @ECLASS-VARIABLE: PYTHON_VERSIONED_EXECUTABLES |
|
|
1490 | # @DESCRIPTION: |
|
|
1491 | # Array of regular expressions of paths to versioned executables (including Python scripts). |
|
|
1492 | |
|
|
1493 | # @ECLASS-VARIABLE: PYTHON_NONVERSIONED_EXECUTABLES |
|
|
1494 | # @DESCRIPTION: |
|
|
1495 | # Array of regular expressions of paths to nonversioned executables (including Python scripts). |
|
|
1496 | |
|
|
1497 | # @FUNCTION: python_merge_intermediate_installation_images |
|
|
1498 | # @USAGE: [-q|--quiet] [--] <intermediate_installation_images_directory> |
|
|
1499 | # @DESCRIPTION: |
|
|
1500 | # Merge intermediate installation images into installation image. |
|
|
1501 | # |
|
|
1502 | # This function can be used only in src_install() phase. |
|
|
1503 | python_merge_intermediate_installation_images() { |
|
|
1504 | if [[ "${EBUILD_PHASE}" != "install" ]]; then |
|
|
1505 | die "${FUNCNAME}() can be used only in src_install() phase" |
|
|
1506 | fi |
|
|
1507 | |
|
|
1508 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
1509 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
|
|
1510 | fi |
|
|
1511 | |
|
|
1512 | _python_check_python_pkg_setup_execution |
|
|
1513 | _python_initialize_prefix_variables |
|
|
1514 | |
|
|
1515 | local absolute_file b file files=() intermediate_installation_images_directory PYTHON_ABI quiet="0" regex shebang version_executable wrapper_scripts=() wrapper_scripts_set=() |
|
|
1516 | |
|
|
1517 | while (($#)); do |
|
|
1518 | case "$1" in |
|
|
1519 | -q|--quiet) |
|
|
1520 | quiet="1" |
|
|
1521 | ;; |
|
|
1522 | --) |
|
|
1523 | shift |
|
|
1524 | break |
|
|
1525 | ;; |
|
|
1526 | -*) |
|
|
1527 | die "${FUNCNAME}(): Unrecognized option '$1'" |
|
|
1528 | ;; |
|
|
1529 | *) |
|
|
1530 | break |
|
|
1531 | ;; |
|
|
1532 | esac |
|
|
1533 | shift |
|
|
1534 | done |
|
|
1535 | |
|
|
1536 | if [[ "$#" -ne 1 ]]; then |
|
|
1537 | die "${FUNCNAME}() requires 1 argument" |
|
|
1538 | fi |
|
|
1539 | |
|
|
1540 | intermediate_installation_images_directory="$1" |
|
|
1541 | |
|
|
1542 | if [[ ! -d "${intermediate_installation_images_directory}" ]]; then |
|
|
1543 | die "${FUNCNAME}(): Intermediate installation images directory '${intermediate_installation_images_directory}' does not exist" |
|
|
1544 | fi |
|
|
1545 | |
|
|
1546 | _python_calculate_PYTHON_ABIS |
|
|
1547 | if [[ "$(PYTHON -f --ABI)" == 3.* ]]; then |
|
|
1548 | b="b" |
|
|
1549 | fi |
|
|
1550 | |
|
|
1551 | while read -d $'\0' -r file; do |
|
|
1552 | files+=("${file}") |
|
|
1553 | done < <("$(PYTHON -f)" -c \ |
|
|
1554 | "import os |
|
|
1555 | import sys |
|
|
1556 | |
|
|
1557 | if hasattr(sys.stdout, 'buffer'): |
|
|
1558 | # Python 3 |
|
|
1559 | stdout = sys.stdout.buffer |
|
|
1560 | else: |
|
|
1561 | # Python 2 |
|
|
1562 | stdout = sys.stdout |
|
|
1563 | |
|
|
1564 | files_set = set() |
|
|
1565 | |
|
|
1566 | os.chdir(${b}'${intermediate_installation_images_directory}') |
|
|
1567 | |
|
|
1568 | for PYTHON_ABI in ${b}'${PYTHON_ABIS}'.split(): |
|
|
1569 | for root, dirs, files in os.walk(PYTHON_ABI + ${b}'${EPREFIX}'): |
|
|
1570 | root = root[len(PYTHON_ABI + ${b}'${EPREFIX}')+1:] |
|
|
1571 | files_set.update(root + ${b}'/' + file for file in files) |
|
|
1572 | |
|
|
1573 | for file in sorted(files_set): |
|
|
1574 | stdout.write(file) |
|
|
1575 | stdout.write(${b}'\x00')" || die "${FUNCNAME}(): Failure of extraction of files in intermediate installation images") |
|
|
1576 | |
|
|
1577 | for PYTHON_ABI in ${PYTHON_ABIS}; do |
|
|
1578 | if [[ ! -d "${intermediate_installation_images_directory}/${PYTHON_ABI}" ]]; then |
|
|
1579 | die "${FUNCNAME}(): Intermediate installation image for Python ABI '${PYTHON_ABI}' does not exist" |
|
|
1580 | fi |
|
|
1581 | |
|
|
1582 | pushd "${intermediate_installation_images_directory}/${PYTHON_ABI}${EPREFIX}" > /dev/null || die "pushd failed" |
|
|
1583 | |
|
|
1584 | for file in "${files[@]}"; do |
|
|
1585 | version_executable="0" |
|
|
1586 | for regex in "/usr/bin/.*" "/usr/sbin/.*" "${PYTHON_VERSIONED_SCRIPTS[@]}"; do |
|
|
1587 | if [[ "/${file}" =~ ^${regex}$ ]]; then |
|
|
1588 | version_executable="1" |
|
|
1589 | break |
|
|
1590 | fi |
|
|
1591 | done |
|
|
1592 | for regex in "${PYTHON_VERSIONED_EXECUTABLES[@]}"; do |
|
|
1593 | if [[ "/${file}" =~ ^${regex}$ ]]; then |
|
|
1594 | version_executable="2" |
|
|
1595 | break |
|
|
1596 | fi |
|
|
1597 | done |
|
|
1598 | if [[ "${version_executable}" != "0" ]]; then |
|
|
1599 | for regex in "${PYTHON_NONVERSIONED_EXECUTABLES[@]}"; do |
|
|
1600 | if [[ "/${file}" =~ ^${regex}$ ]]; then |
|
|
1601 | version_executable="0" |
|
|
1602 | break |
|
|
1603 | fi |
|
|
1604 | done |
|
|
1605 | fi |
|
|
1606 | |
|
|
1607 | [[ "${version_executable}" == "0" ]] && continue |
|
|
1608 | |
|
|
1609 | if [[ -L "${file}" ]]; then |
|
|
1610 | absolute_file="$(readlink "${file}")" |
|
|
1611 | if [[ "${absolute_file}" == /* ]]; then |
|
|
1612 | absolute_file="${intermediate_installation_images_directory}/${PYTHON_ABI}${EPREFIX}/${absolute_file##/}" |
|
|
1613 | else |
|
|
1614 | if [[ "${file}" == */* ]]; then |
|
|
1615 | absolute_file="${intermediate_installation_images_directory}/${PYTHON_ABI}${EPREFIX}/${file%/*}/${absolute_file}" |
|
|
1616 | else |
|
|
1617 | absolute_file="${intermediate_installation_images_directory}/${PYTHON_ABI}${EPREFIX}/${absolute_file}" |
|
|
1618 | fi |
|
|
1619 | fi |
|
|
1620 | else |
|
|
1621 | absolute_file="${intermediate_installation_images_directory}/${PYTHON_ABI}${EPREFIX}/${file}" |
|
|
1622 | fi |
|
|
1623 | |
|
|
1624 | [[ ! -x "${absolute_file}" ]] && continue |
|
|
1625 | |
|
|
1626 | shebang="$(head -n1 "${absolute_file}")" || die "Extraction of shebang from '${absolute_file}' failed" |
|
|
1627 | |
|
|
1628 | if [[ "${version_executable}" == "2" ]]; then |
|
|
1629 | wrapper_scripts+=("${ED}${file}") |
|
|
1630 | elif [[ "${version_executable}" == "1" ]]; then |
|
|
1631 | if [[ "${shebang}" =~ ${_PYTHON_SHEBANG_BASE_PART_REGEX}([[:digit:]]+(\.[[:digit:]]+)?)?($|[[:space:]]+) ]]; then |
|
|
1632 | wrapper_scripts+=("${ED}${file}") |
|
|
1633 | else |
|
|
1634 | version_executable="0" |
|
|
1635 | fi |
|
|
1636 | fi |
|
|
1637 | |
|
|
1638 | [[ "${version_executable}" == "0" ]] && continue |
|
|
1639 | |
|
|
1640 | if [[ -e "${file}-${PYTHON_ABI}" ]]; then |
|
|
1641 | die "${FUNCNAME}(): '${EPREFIX}/${file}-${PYTHON_ABI}' already exists" |
|
|
1642 | fi |
|
|
1643 | |
|
|
1644 | mv "${file}" "${file}-${PYTHON_ABI}" || die "Renaming of '${file}' failed" |
|
|
1645 | |
|
|
1646 | if [[ "${shebang}" =~ ${_PYTHON_SHEBANG_BASE_PART_REGEX}[[:digit:]]*($|[[:space:]]+) ]]; then |
|
|
1647 | if [[ -L "${file}-${PYTHON_ABI}" ]]; then |
|
|
1648 | python_convert_shebangs $([[ "${quiet}" == "1" ]] && echo --quiet) "${PYTHON_ABI}" "${absolute_file}" |
|
|
1649 | else |
|
|
1650 | python_convert_shebangs $([[ "${quiet}" == "1" ]] && echo --quiet) "${PYTHON_ABI}" "${file}-${PYTHON_ABI}" |
|
|
1651 | fi |
|
|
1652 | fi |
|
|
1653 | done |
|
|
1654 | |
|
|
1655 | popd > /dev/null || die "popd failed" |
|
|
1656 | |
|
|
1657 | # This is per bug #390691, without the duplication refactor, and with |
|
|
1658 | # the 3-way structure per comment #6. This enable users with old |
|
|
1659 | # coreutils to upgrade a lot easier (you need to upgrade python+portage |
|
|
1660 | # before coreutils can be upgraded). |
|
|
1661 | if ROOT="/" has_version '>=sys-apps/coreutils-6.9.90'; then |
|
|
1662 | cp -fr --preserve=all --no-preserve=context "${intermediate_installation_images_directory}/${PYTHON_ABI}/"* "${D}" || die "Merging of intermediate installation image for Python ABI '${PYTHON_ABI} into installation image failed" |
|
|
1663 | elif ROOT="/" has_version sys-apps/coreutils; then |
|
|
1664 | cp -fr --preserve=all "${intermediate_installation_images_directory}/${PYTHON_ABI}/"* "${D}" || die "Merging of intermediate installation image for Python ABI '${PYTHON_ABI} into installation image failed" |
|
|
1665 | else |
|
|
1666 | cp -fpr "${intermediate_installation_images_directory}/${PYTHON_ABI}/"* "${D}" || die "Merging of intermediate installation image for Python ABI '${PYTHON_ABI} into installation image failed" |
|
|
1667 | fi |
|
|
1668 | done |
|
|
1669 | |
|
|
1670 | rm -fr "${intermediate_installation_images_directory}" |
|
|
1671 | |
|
|
1672 | if [[ "${#wrapper_scripts[@]}" -ge 1 ]]; then |
|
|
1673 | rm -f "${T}/python_wrapper_scripts" |
|
|
1674 | |
|
|
1675 | for file in "${wrapper_scripts[@]}"; do |
|
|
1676 | echo -n "${file}" >> "${T}/python_wrapper_scripts" |
|
|
1677 | echo -en "\x00" >> "${T}/python_wrapper_scripts" |
|
|
1678 | done |
|
|
1679 | |
|
|
1680 | while read -d $'\0' -r file; do |
|
|
1681 | wrapper_scripts_set+=("${file}") |
|
|
1682 | done < <("$(PYTHON -f)" -c \ |
|
|
1683 | "import sys |
|
|
1684 | |
|
|
1685 | if hasattr(sys.stdout, 'buffer'): |
|
|
1686 | # Python 3 |
|
|
1687 | stdout = sys.stdout.buffer |
|
|
1688 | else: |
|
|
1689 | # Python 2 |
|
|
1690 | stdout = sys.stdout |
|
|
1691 | |
|
|
1692 | python_wrapper_scripts_file = open('${T}/python_wrapper_scripts', 'rb') |
|
|
1693 | files = set(python_wrapper_scripts_file.read().rstrip(${b}'\x00').split(${b}'\x00')) |
|
|
1694 | python_wrapper_scripts_file.close() |
|
|
1695 | |
|
|
1696 | for file in sorted(files): |
|
|
1697 | stdout.write(file) |
|
|
1698 | stdout.write(${b}'\x00')" || die "${FUNCNAME}(): Failure of extraction of set of wrapper scripts") |
|
|
1699 | |
|
|
1700 | python_generate_wrapper_scripts $([[ "${quiet}" == "1" ]] && echo --quiet) "${wrapper_scripts_set[@]}" |
|
|
1701 | fi |
|
|
1702 | } |
|
|
1703 | |
| 1262 | # ================================================================================================ |
1704 | # ================================================================================================ |
| 1263 | # ========= FUNCTIONS FOR PACKAGES NOT SUPPORTING INSTALLATION FOR MULTIPLE PYTHON ABIS ========== |
1705 | # ========= FUNCTIONS FOR PACKAGES NOT SUPPORTING INSTALLATION FOR MULTIPLE PYTHON ABIS ========== |
| 1264 | # ================================================================================================ |
1706 | # ================================================================================================ |
| 1265 | |
1707 | |
| 1266 | unset EPYTHON PYTHON_ABI |
1708 | unset EPYTHON PYTHON_ABI |
| 1267 | |
1709 | |
| 1268 | # @FUNCTION: python_set_active_version |
1710 | # @FUNCTION: python_set_active_version |
| 1269 | # @USAGE: <CPython_ABI|2|3> |
1711 | # @USAGE: <Python_ABI|2|3> |
| 1270 | # @DESCRIPTION: |
1712 | # @DESCRIPTION: |
| 1271 | # Set specified version of CPython as active version of Python. |
1713 | # Set locally active version of Python. |
|
|
1714 | # If Python_ABI argument is specified, then version of Python corresponding to Python_ABI is used. |
|
|
1715 | # If 2 argument is specified, then active version of CPython 2 is used. |
|
|
1716 | # If 3 argument is specified, then active version of CPython 3 is used. |
| 1272 | # |
1717 | # |
| 1273 | # This function can be used only in pkg_setup() phase. |
1718 | # This function can be used only in pkg_setup() phase. |
| 1274 | python_set_active_version() { |
1719 | python_set_active_version() { |
| 1275 | # Check if phase is pkg_setup(). |
1720 | if [[ "${EBUILD_PHASE}" != "setup" ]]; then |
| 1276 | [[ "${EBUILD_PHASE}" != "setup" ]] && die "${FUNCNAME}() can be used only in pkg_setup() phase" |
1721 | die "${FUNCNAME}() can be used only in pkg_setup() phase" |
|
|
1722 | fi |
| 1277 | |
1723 | |
| 1278 | if _python_package_supporting_installation_for_multiple_python_abis; then |
1724 | 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" |
1725 | die "${FUNCNAME}() cannot be used in ebuilds of packages supporting installation for multiple Python ABIs" |
| 1280 | fi |
1726 | fi |
| 1281 | |
1727 | |
| … | |
… | |
| 1284 | fi |
1730 | fi |
| 1285 | |
1731 | |
| 1286 | _python_initial_sanity_checks |
1732 | _python_initial_sanity_checks |
| 1287 | |
1733 | |
| 1288 | if [[ -z "${PYTHON_ABI}" ]]; then |
1734 | if [[ -z "${PYTHON_ABI}" ]]; then |
| 1289 | if [[ "$1" =~ ^[[:digit:]]+\.[[:digit:]]+$ ]]; then |
1735 | if [[ -n "$(_python_get_implementation --ignore-invalid "$1")" ]]; then |
| 1290 | if ! _python_implementation && ! has_version "dev-lang/python:$1"; then |
1736 | # PYTHON_ABI variable is intended to be used only in ebuilds/eclasses, |
| 1291 | die "${FUNCNAME}(): 'dev-lang/python:$1' is not installed" |
1737 | # so it does not need to be exported to subprocesses. |
|
|
1738 | PYTHON_ABI="$1" |
|
|
1739 | if ! _python_implementation && ! has_version "$(python_get_implementational_package)"; then |
|
|
1740 | die "${FUNCNAME}(): '$(python_get_implementational_package)' is not installed" |
| 1292 | fi |
1741 | fi |
| 1293 | export EPYTHON="$(PYTHON "$1")" |
1742 | export EPYTHON="$(PYTHON "$1")" |
| 1294 | elif [[ "$1" == "2" ]]; then |
1743 | elif [[ "$1" == "2" ]]; then |
| 1295 | if ! _python_implementation && ! has_version "=dev-lang/python-2*"; then |
1744 | if ! _python_implementation && ! has_version "=dev-lang/python-2*"; then |
| 1296 | die "${FUNCNAME}(): '=dev-lang/python-2*' is not installed" |
1745 | die "${FUNCNAME}(): '=dev-lang/python-2*' is not installed" |
| 1297 | fi |
1746 | fi |
| 1298 | export EPYTHON="$(PYTHON -2)" |
1747 | export EPYTHON="$(PYTHON -2)" |
|
|
1748 | PYTHON_ABI="${EPYTHON#python}" |
|
|
1749 | PYTHON_ABI="${PYTHON_ABI%%-*}" |
| 1299 | elif [[ "$1" == "3" ]]; then |
1750 | elif [[ "$1" == "3" ]]; then |
| 1300 | if ! _python_implementation && ! has_version "=dev-lang/python-3*"; then |
1751 | if ! _python_implementation && ! has_version "=dev-lang/python-3*"; then |
| 1301 | die "${FUNCNAME}(): '=dev-lang/python-3*' is not installed" |
1752 | die "${FUNCNAME}(): '=dev-lang/python-3*' is not installed" |
| 1302 | fi |
1753 | fi |
| 1303 | export EPYTHON="$(PYTHON -3)" |
1754 | export EPYTHON="$(PYTHON -3)" |
|
|
1755 | PYTHON_ABI="${EPYTHON#python}" |
|
|
1756 | PYTHON_ABI="${PYTHON_ABI%%-*}" |
| 1304 | else |
1757 | else |
| 1305 | die "${FUNCNAME}(): Unrecognized argument '$1'" |
1758 | die "${FUNCNAME}(): Unrecognized argument '$1'" |
| 1306 | fi |
1759 | 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 |
1760 | fi |
| 1313 | |
1761 | |
| 1314 | _python_final_sanity_checks |
1762 | _python_final_sanity_checks |
| 1315 | |
1763 | |
| 1316 | # python-updater checks PYTHON_REQUESTED_ACTIVE_VERSION variable. |
1764 | # python-updater checks PYTHON_REQUESTED_ACTIVE_VERSION variable. |
| 1317 | PYTHON_REQUESTED_ACTIVE_VERSION="$1" |
1765 | PYTHON_REQUESTED_ACTIVE_VERSION="$1" |
| 1318 | } |
1766 | } |
| 1319 | |
1767 | |
| 1320 | # @FUNCTION: python_need_rebuild |
1768 | # @FUNCTION: python_need_rebuild |
|
|
1769 | # @DESCRIPTION: |
| 1321 | # @DESCRIPTION: Mark current package for rebuilding by python-updater after |
1770 | # Mark current package for rebuilding by python-updater after |
| 1322 | # switching of active version of Python. |
1771 | # switching of active version of Python. |
| 1323 | python_need_rebuild() { |
1772 | python_need_rebuild() { |
| 1324 | _python_check_python_pkg_setup_execution |
|
|
| 1325 | |
|
|
| 1326 | if _python_package_supporting_installation_for_multiple_python_abis; then |
1773 | 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" |
1774 | die "${FUNCNAME}() cannot be used in ebuilds of packages supporting installation for multiple Python ABIs" |
| 1328 | fi |
1775 | fi |
|
|
1776 | |
|
|
1777 | _python_check_python_pkg_setup_execution |
| 1329 | |
1778 | |
| 1330 | if [[ "$#" -ne 0 ]]; then |
1779 | if [[ "$#" -ne 0 ]]; then |
| 1331 | die "${FUNCNAME}() does not accept arguments" |
1780 | die "${FUNCNAME}() does not accept arguments" |
| 1332 | fi |
1781 | fi |
| 1333 | |
1782 | |
| … | |
… | |
| 1336 | |
1785 | |
| 1337 | # ================================================================================================ |
1786 | # ================================================================================================ |
| 1338 | # ======================================= GETTER FUNCTIONS ======================================= |
1787 | # ======================================= GETTER FUNCTIONS ======================================= |
| 1339 | # ================================================================================================ |
1788 | # ================================================================================================ |
| 1340 | |
1789 | |
| 1341 | _PYTHON_ABI_EXTRACTION_COMMAND='import platform |
1790 | _PYTHON_ABI_EXTRACTION_COMMAND=\ |
|
|
1791 | 'import platform |
| 1342 | import sys |
1792 | import sys |
| 1343 | sys.stdout.write(".".join(str(x) for x in sys.version_info[:2])) |
1793 | sys.stdout.write(".".join(str(x) for x in sys.version_info[:2])) |
| 1344 | if platform.system()[:4] == "Java": |
1794 | if platform.system()[:4] == "Java": |
| 1345 | sys.stdout.write("-jython")' |
1795 | sys.stdout.write("-jython") |
|
|
1796 | elif hasattr(platform, "python_implementation") and platform.python_implementation() == "PyPy": |
|
|
1797 | sys.stdout.write("-pypy-" + ".".join(str(x) for x in sys.pypy_version_info[:2]))' |
| 1346 | |
1798 | |
| 1347 | _python_get_implementation() { |
1799 | _python_get_implementation() { |
|
|
1800 | local ignore_invalid="0" |
|
|
1801 | |
|
|
1802 | while (($#)); do |
|
|
1803 | case "$1" in |
|
|
1804 | --ignore-invalid) |
|
|
1805 | ignore_invalid="1" |
|
|
1806 | ;; |
|
|
1807 | --) |
|
|
1808 | shift |
|
|
1809 | break |
|
|
1810 | ;; |
|
|
1811 | -*) |
|
|
1812 | die "${FUNCNAME}(): Unrecognized option '$1'" |
|
|
1813 | ;; |
|
|
1814 | *) |
|
|
1815 | break |
|
|
1816 | ;; |
|
|
1817 | esac |
|
|
1818 | shift |
|
|
1819 | done |
|
|
1820 | |
| 1348 | if [[ "$#" -ne 1 ]]; then |
1821 | if [[ "$#" -ne 1 ]]; then |
| 1349 | die "${FUNCNAME}() requires 1 argument" |
1822 | die "${FUNCNAME}() requires 1 argument" |
| 1350 | fi |
1823 | fi |
| 1351 | |
1824 | |
| 1352 | if [[ "$1" =~ ^[[:digit:]]+\.[[:digit:]]+$ ]]; then |
1825 | if [[ "$1" =~ ^[[:digit:]]+\.[[:digit:]]+$ ]]; then |
| 1353 | echo "CPython" |
1826 | echo "CPython" |
| 1354 | elif [[ "$1" =~ ^[[:digit:]]+\.[[:digit:]]+-jython$ ]]; then |
1827 | elif [[ "$1" =~ ^[[:digit:]]+\.[[:digit:]]+-jython$ ]]; then |
| 1355 | echo "Jython" |
1828 | echo "Jython" |
|
|
1829 | elif [[ "$1" =~ ^[[:digit:]]+\.[[:digit:]]+-pypy-[[:digit:]]+\.[[:digit:]]+$ ]]; then |
|
|
1830 | echo "PyPy" |
| 1356 | else |
1831 | else |
|
|
1832 | if [[ "${ignore_invalid}" == "0" ]]; then |
| 1357 | die "${FUNCNAME}(): Unrecognized Python ABI '$1'" |
1833 | die "${FUNCNAME}(): Unrecognized Python ABI '$1'" |
|
|
1834 | fi |
| 1358 | fi |
1835 | fi |
| 1359 | } |
1836 | } |
| 1360 | |
1837 | |
| 1361 | # @FUNCTION: PYTHON |
1838 | # @FUNCTION: PYTHON |
| 1362 | # @USAGE: [-2] [-3] [--ABI] [-a|--absolute-path] [-f|--final-ABI] [--] <Python_ABI="${PYTHON_ABI}"> |
1839 | # @USAGE: [-2] [-3] [--ABI] [-a|--absolute-path] [-f|--final-ABI] [--] <Python_ABI="${PYTHON_ABI}"> |
| 1363 | # @DESCRIPTION: |
1840 | # @DESCRIPTION: |
| 1364 | # Print filename of Python interpreter for specified Python ABI. If Python_ABI argument |
1841 | # 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. |
1842 | # 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. |
1843 | # 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. |
1844 | # 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. |
1845 | # 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. |
1846 | # -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 |
1847 | # If --ABI option is specified, then only specified Python ABI is printed instead of |
| 1371 | # filename of Python interpreter. |
1848 | # filename of Python interpreter. |
| 1372 | # If --absolute-path option is specified, then absolute path to Python interpreter is printed. |
1849 | # 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" |
1898 | die "${FUNCNAME}(): '--final-ABI' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
| 1422 | fi |
1899 | fi |
| 1423 | _python_calculate_PYTHON_ABIS |
1900 | _python_calculate_PYTHON_ABIS |
| 1424 | PYTHON_ABI="${PYTHON_ABIS##* }" |
1901 | PYTHON_ABI="${PYTHON_ABIS##* }" |
| 1425 | elif [[ "${python2}" == "1" ]]; then |
1902 | elif [[ "${python2}" == "1" ]]; then |
| 1426 | PYTHON_ABI="$(eselect python show --python2 --ABI)" |
1903 | PYTHON_ABI="$(ROOT="/" eselect python show --python2 --ABI)" |
| 1427 | if [[ -z "${PYTHON_ABI}" ]]; then |
1904 | if [[ -z "${PYTHON_ABI}" ]]; then |
| 1428 | die "${FUNCNAME}(): Active version of Python 2 not set" |
1905 | die "${FUNCNAME}(): Active version of CPython 2 not set" |
| 1429 | elif [[ "${PYTHON_ABI}" != "2."* ]]; then |
1906 | elif [[ "${PYTHON_ABI}" != "2."* ]]; then |
| 1430 | die "${FUNCNAME}(): Internal error in \`eselect python show --python2\`" |
1907 | die "${FUNCNAME}(): Internal error in \`eselect python show --python2\`" |
| 1431 | fi |
1908 | fi |
| 1432 | elif [[ "${python3}" == "1" ]]; then |
1909 | elif [[ "${python3}" == "1" ]]; then |
| 1433 | PYTHON_ABI="$(eselect python show --python3 --ABI)" |
1910 | PYTHON_ABI="$(ROOT="/" eselect python show --python3 --ABI)" |
| 1434 | if [[ -z "${PYTHON_ABI}" ]]; then |
1911 | if [[ -z "${PYTHON_ABI}" ]]; then |
| 1435 | die "${FUNCNAME}(): Active version of Python 3 not set" |
1912 | die "${FUNCNAME}(): Active version of CPython 3 not set" |
| 1436 | elif [[ "${PYTHON_ABI}" != "3."* ]]; then |
1913 | elif [[ "${PYTHON_ABI}" != "3."* ]]; then |
| 1437 | die "${FUNCNAME}(): Internal error in \`eselect python show --python3\`" |
1914 | die "${FUNCNAME}(): Internal error in \`eselect python show --python3\`" |
| 1438 | fi |
1915 | fi |
| 1439 | elif _python_package_supporting_installation_for_multiple_python_abis; then |
1916 | elif _python_package_supporting_installation_for_multiple_python_abis; then |
| 1440 | if ! _python_abi-specific_local_scope; then |
1917 | if ! _python_abi-specific_local_scope; then |
| … | |
… | |
| 1466 | return |
1943 | return |
| 1467 | else |
1944 | else |
| 1468 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
1945 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
| 1469 | python_interpreter="python${PYTHON_ABI}" |
1946 | python_interpreter="python${PYTHON_ABI}" |
| 1470 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
1947 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
| 1471 | python_interpreter="jython-${PYTHON_ABI%-jython}" |
1948 | python_interpreter="jython${PYTHON_ABI%-jython}" |
|
|
1949 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "PyPy" ]]; then |
|
|
1950 | python_interpreter="pypy-c${PYTHON_ABI#*-pypy-}" |
| 1472 | fi |
1951 | fi |
| 1473 | |
1952 | |
| 1474 | if [[ "${absolute_path_output}" == "1" ]]; then |
1953 | if [[ "${absolute_path_output}" == "1" ]]; then |
| 1475 | echo -n "${EPREFIX}/usr/bin/${python_interpreter}" |
1954 | echo -n "${EPREFIX}/usr/bin/${python_interpreter}" |
| 1476 | else |
1955 | else |
| … | |
… | |
| 1564 | else |
2043 | else |
| 1565 | PYTHON_ABI="${PYTHON_ABI:-$(PYTHON --ABI)}" |
2044 | PYTHON_ABI="${PYTHON_ABI:-$(PYTHON --ABI)}" |
| 1566 | fi |
2045 | fi |
| 1567 | fi |
2046 | fi |
| 1568 | |
2047 | |
|
|
2048 | if [[ "${EAPI:-0}" == "0" ]]; then |
| 1569 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
2049 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
| 1570 | echo "dev-lang/python:${PYTHON_ABI}" |
2050 | echo "=dev-lang/python-${PYTHON_ABI}*" |
| 1571 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
2051 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
|
|
2052 | echo "=dev-java/jython-${PYTHON_ABI%-jython}*" |
|
|
2053 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "PyPy" ]]; then |
|
|
2054 | echo "=dev-python/pypy-${PYTHON_ABI#*-pypy-}*" |
|
|
2055 | fi |
|
|
2056 | else |
|
|
2057 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
|
|
2058 | echo "dev-lang/python:${PYTHON_ABI}" |
|
|
2059 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
| 1572 | echo "dev-java/jython:${PYTHON_ABI%-jython}" |
2060 | echo "dev-java/jython:${PYTHON_ABI%-jython}" |
|
|
2061 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "PyPy" ]]; then |
|
|
2062 | echo "dev-python/pypy:${PYTHON_ABI#*-pypy-}" |
|
|
2063 | fi |
| 1573 | fi |
2064 | fi |
| 1574 | } |
2065 | } |
| 1575 | |
2066 | |
| 1576 | # @FUNCTION: python_get_includedir |
2067 | # @FUNCTION: python_get_includedir |
| 1577 | # @USAGE: [-b|--base-path] [-f|--final-ABI] |
2068 | # @USAGE: [-b|--base-path] [-f|--final-ABI] |
| … | |
… | |
| 1623 | |
2114 | |
| 1624 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
2115 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
| 1625 | echo "${prefix}usr/include/python${PYTHON_ABI}" |
2116 | echo "${prefix}usr/include/python${PYTHON_ABI}" |
| 1626 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
2117 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
| 1627 | echo "${prefix}usr/share/jython-${PYTHON_ABI%-jython}/Include" |
2118 | echo "${prefix}usr/share/jython-${PYTHON_ABI%-jython}/Include" |
|
|
2119 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "PyPy" ]]; then |
|
|
2120 | echo "${prefix}usr/$(get_libdir)/pypy${PYTHON_ABI#*-pypy-}/include" |
| 1628 | fi |
2121 | fi |
| 1629 | } |
2122 | } |
| 1630 | |
2123 | |
| 1631 | # @FUNCTION: python_get_libdir |
2124 | # @FUNCTION: python_get_libdir |
| 1632 | # @USAGE: [-b|--base-path] [-f|--final-ABI] |
2125 | # @USAGE: [-b|--base-path] [-f|--final-ABI] |
| 1633 | # @DESCRIPTION: |
2126 | # @DESCRIPTION: |
| 1634 | # Print path to Python library directory. |
2127 | # Print path to Python standard library directory. |
| 1635 | # If --base-path option is specified, then path not prefixed with "/" is printed. |
2128 | # 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. |
2129 | # If --final-ABI option is specified, then final ABI from the list of enabled ABIs is used. |
| 1637 | python_get_libdir() { |
2130 | python_get_libdir() { |
| 1638 | _python_check_python_pkg_setup_execution |
2131 | _python_check_python_pkg_setup_execution |
| 1639 | |
2132 | |
| … | |
… | |
| 1678 | |
2171 | |
| 1679 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
2172 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
| 1680 | echo "${prefix}usr/$(get_libdir)/python${PYTHON_ABI}" |
2173 | echo "${prefix}usr/$(get_libdir)/python${PYTHON_ABI}" |
| 1681 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
2174 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
| 1682 | echo "${prefix}usr/share/jython-${PYTHON_ABI%-jython}/Lib" |
2175 | echo "${prefix}usr/share/jython-${PYTHON_ABI%-jython}/Lib" |
|
|
2176 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "PyPy" ]]; then |
|
|
2177 | die "${FUNCNAME}(): PyPy has multiple standard library directories" |
| 1683 | fi |
2178 | fi |
| 1684 | } |
2179 | } |
| 1685 | |
2180 | |
| 1686 | # @FUNCTION: python_get_sitedir |
2181 | # @FUNCTION: python_get_sitedir |
| 1687 | # @USAGE: [-b|--base-path] [-f|--final-ABI] |
2182 | # @USAGE: [-b|--base-path] [-f|--final-ABI] |
| … | |
… | |
| 1690 | # If --base-path option is specified, then path not prefixed with "/" is printed. |
2185 | # 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. |
2186 | # If --final-ABI option is specified, then final ABI from the list of enabled ABIs is used. |
| 1692 | python_get_sitedir() { |
2187 | python_get_sitedir() { |
| 1693 | _python_check_python_pkg_setup_execution |
2188 | _python_check_python_pkg_setup_execution |
| 1694 | |
2189 | |
| 1695 | local final_ABI="0" options=() |
2190 | local base_path="0" final_ABI="0" prefix PYTHON_ABI="${PYTHON_ABI}" |
| 1696 | |
2191 | |
| 1697 | while (($#)); do |
2192 | while (($#)); do |
| 1698 | case "$1" in |
2193 | case "$1" in |
| 1699 | -b|--base-path) |
2194 | -b|--base-path) |
| 1700 | options+=("$1") |
2195 | base_path="1" |
| 1701 | ;; |
2196 | ;; |
| 1702 | -f|--final-ABI) |
2197 | -f|--final-ABI) |
| 1703 | final_ABI="1" |
2198 | final_ABI="1" |
| 1704 | options+=("$1") |
|
|
| 1705 | ;; |
2199 | ;; |
| 1706 | -*) |
2200 | -*) |
| 1707 | die "${FUNCNAME}(): Unrecognized option '$1'" |
2201 | die "${FUNCNAME}(): Unrecognized option '$1'" |
| 1708 | ;; |
2202 | ;; |
| 1709 | *) |
2203 | *) |
| 1710 | die "${FUNCNAME}(): Invalid usage" |
2204 | die "${FUNCNAME}(): Invalid usage" |
| 1711 | ;; |
2205 | ;; |
| 1712 | esac |
2206 | esac |
| 1713 | shift |
2207 | shift |
| 1714 | done |
2208 | done |
|
|
2209 | |
|
|
2210 | if [[ "${base_path}" == "0" ]]; then |
|
|
2211 | prefix="/" |
|
|
2212 | fi |
| 1715 | |
2213 | |
| 1716 | if [[ "${final_ABI}" == "1" ]]; then |
2214 | if [[ "${final_ABI}" == "1" ]]; then |
| 1717 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
2215 | 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" |
2216 | die "${FUNCNAME}(): '--final-ABI' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
| 1719 | fi |
2217 | fi |
|
|
2218 | PYTHON_ABI="$(PYTHON -f --ABI)" |
| 1720 | else |
2219 | else |
| 1721 | if _python_package_supporting_installation_for_multiple_python_abis && ! _python_abi-specific_local_scope; then |
2220 | if _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
2221 | if ! _python_abi-specific_local_scope; then |
| 1722 | die "${FUNCNAME}() should be used in ABI-specific local scope" |
2222 | die "${FUNCNAME}() should be used in ABI-specific local scope" |
| 1723 | fi |
2223 | fi |
|
|
2224 | else |
|
|
2225 | PYTHON_ABI="${PYTHON_ABI:-$(PYTHON --ABI)}" |
| 1724 | fi |
2226 | fi |
|
|
2227 | fi |
| 1725 | |
2228 | |
| 1726 | echo "$(python_get_libdir "${options[@]}")/site-packages" |
2229 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
|
|
2230 | echo "${prefix}usr/$(get_libdir)/python${PYTHON_ABI}/site-packages" |
|
|
2231 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
|
|
2232 | echo "${prefix}usr/share/jython-${PYTHON_ABI%-jython}/Lib/site-packages" |
|
|
2233 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "PyPy" ]]; then |
|
|
2234 | echo "${prefix}usr/$(get_libdir)/pypy${PYTHON_ABI#*-pypy-}/site-packages" |
|
|
2235 | fi |
| 1727 | } |
2236 | } |
| 1728 | |
2237 | |
| 1729 | # @FUNCTION: python_get_library |
2238 | # @FUNCTION: python_get_library |
| 1730 | # @USAGE: [-b|--base-path] [-f|--final-ABI] [-l|--linker-option] |
2239 | # @USAGE: [-b|--base-path] [-f|--final-ABI] [-l|--linker-option] |
| 1731 | # @DESCRIPTION: |
2240 | # @DESCRIPTION: |
| … | |
… | |
| 1788 | else |
2297 | else |
| 1789 | echo "${prefix}usr/$(get_libdir)/libpython${PYTHON_ABI}$(get_libname)" |
2298 | echo "${prefix}usr/$(get_libdir)/libpython${PYTHON_ABI}$(get_libname)" |
| 1790 | fi |
2299 | fi |
| 1791 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
2300 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
| 1792 | die "${FUNCNAME}(): Jython does not have shared library" |
2301 | die "${FUNCNAME}(): Jython does not have shared library" |
|
|
2302 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "PyPy" ]]; then |
|
|
2303 | die "${FUNCNAME}(): PyPy does not have shared library" |
| 1793 | fi |
2304 | fi |
| 1794 | } |
2305 | } |
| 1795 | |
2306 | |
| 1796 | # @FUNCTION: python_get_version |
2307 | # @FUNCTION: python_get_version |
| 1797 | # @USAGE: [-f|--final-ABI] [--full] [--major] [--minor] [--micro] |
2308 | # @USAGE: [-f|--final-ABI] [-l|--language] [--full] [--major] [--minor] [--micro] |
| 1798 | # @DESCRIPTION: |
2309 | # @DESCRIPTION: |
| 1799 | # Print Python version. |
2310 | # Print version of Python implementation. |
| 1800 | # --full, --major, --minor and --micro options cannot be specified simultaneously. |
2311 | # --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. |
2312 | # If --full, --major, --minor and --micro options are not specified, then "${major_version}.${minor_version}" is printed. |
|
|
2313 | # If --language option is specified, then version of Python language is printed. |
|
|
2314 | # --language and --full options cannot be specified simultaneously. |
|
|
2315 | # --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. |
2316 | # If --final-ABI option is specified, then final ABI from the list of enabled ABIs is used. |
| 1803 | python_get_version() { |
2317 | python_get_version() { |
| 1804 | _python_check_python_pkg_setup_execution |
2318 | _python_check_python_pkg_setup_execution |
| 1805 | |
2319 | |
| 1806 | local final_ABI="0" full="0" major="0" minor="0" micro="0" python_command |
2320 | local final_ABI="0" language="0" language_version full="0" major="0" minor="0" micro="0" PYTHON_ABI="${PYTHON_ABI}" python_command |
| 1807 | |
2321 | |
| 1808 | while (($#)); do |
2322 | while (($#)); do |
| 1809 | case "$1" in |
2323 | case "$1" in |
| 1810 | -f|--final-ABI) |
2324 | -f|--final-ABI) |
| 1811 | final_ABI="1" |
2325 | final_ABI="1" |
| 1812 | ;; |
2326 | ;; |
|
|
2327 | -l|--language) |
|
|
2328 | language="1" |
|
|
2329 | ;; |
| 1813 | --full) |
2330 | --full) |
| 1814 | full="1" |
2331 | full="1" |
| 1815 | ;; |
2332 | ;; |
| 1816 | --major) |
2333 | --major) |
| 1817 | major="1" |
2334 | major="1" |
| … | |
… | |
| 1829 | die "${FUNCNAME}(): Invalid usage" |
2346 | die "${FUNCNAME}(): Invalid usage" |
| 1830 | ;; |
2347 | ;; |
| 1831 | esac |
2348 | esac |
| 1832 | shift |
2349 | shift |
| 1833 | done |
2350 | done |
| 1834 | |
|
|
| 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 | |
2351 | |
| 1859 | if [[ "${final_ABI}" == "1" ]]; then |
2352 | if [[ "${final_ABI}" == "1" ]]; then |
| 1860 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
2353 | 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" |
2354 | die "${FUNCNAME}(): '--final-ABI' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
| 1862 | fi |
2355 | fi |
| 1863 | "$(PYTHON -f)" -c "${python_command}" |
|
|
| 1864 | else |
2356 | else |
| 1865 | if _python_package_supporting_installation_for_multiple_python_abis && ! _python_abi-specific_local_scope; then |
2357 | 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" |
2358 | die "${FUNCNAME}() should be used in ABI-specific local scope" |
| 1867 | fi |
2359 | fi |
|
|
2360 | fi |
|
|
2361 | |
|
|
2362 | if [[ "$((${full} + ${major} + ${minor} + ${micro}))" -gt 1 ]]; then |
|
|
2363 | die "${FUNCNAME}(): '--full', '--major', '--minor' or '--micro' options cannot be specified simultaneously" |
|
|
2364 | fi |
|
|
2365 | |
|
|
2366 | if [[ "${language}" == "1" ]]; then |
|
|
2367 | if [[ "${final_ABI}" == "1" ]]; then |
|
|
2368 | PYTHON_ABI="$(PYTHON -f --ABI)" |
|
|
2369 | elif [[ -z "${PYTHON_ABI}" ]]; then |
|
|
2370 | PYTHON_ABI="$(PYTHON --ABI)" |
|
|
2371 | fi |
|
|
2372 | language_version="${PYTHON_ABI%%-*}" |
|
|
2373 | if [[ "${full}" == "1" ]]; then |
|
|
2374 | die "${FUNCNAME}(): '--language' and '--full' options cannot be specified simultaneously" |
|
|
2375 | elif [[ "${major}" == "1" ]]; then |
|
|
2376 | echo "${language_version%.*}" |
|
|
2377 | elif [[ "${minor}" == "1" ]]; then |
|
|
2378 | echo "${language_version#*.}" |
|
|
2379 | elif [[ "${micro}" == "1" ]]; then |
|
|
2380 | die "${FUNCNAME}(): '--language' and '--micro' options cannot be specified simultaneously" |
|
|
2381 | else |
|
|
2382 | echo "${language_version}" |
|
|
2383 | fi |
|
|
2384 | else |
|
|
2385 | if [[ "${full}" == "1" ]]; then |
|
|
2386 | python_command="import sys; print('.'.join(str(x) for x in getattr(sys, 'pypy_version_info', sys.version_info)[:3]))" |
|
|
2387 | elif [[ "${major}" == "1" ]]; then |
|
|
2388 | python_command="import sys; print(getattr(sys, 'pypy_version_info', sys.version_info)[0])" |
|
|
2389 | elif [[ "${minor}" == "1" ]]; then |
|
|
2390 | python_command="import sys; print(getattr(sys, 'pypy_version_info', sys.version_info)[1])" |
|
|
2391 | elif [[ "${micro}" == "1" ]]; then |
|
|
2392 | python_command="import sys; print(getattr(sys, 'pypy_version_info', sys.version_info)[2])" |
|
|
2393 | else |
|
|
2394 | if [[ -n "${PYTHON_ABI}" && "${final_ABI}" == "0" ]]; then |
|
|
2395 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
|
|
2396 | echo "${PYTHON_ABI}" |
|
|
2397 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
|
|
2398 | echo "${PYTHON_ABI%-jython}" |
|
|
2399 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "PyPy" ]]; then |
|
|
2400 | echo "${PYTHON_ABI#*-pypy-}" |
|
|
2401 | fi |
|
|
2402 | return |
|
|
2403 | fi |
|
|
2404 | python_command="from sys import version_info; print('.'.join(str(x) for x in version_info[:2]))" |
|
|
2405 | fi |
|
|
2406 | |
|
|
2407 | if [[ "${final_ABI}" == "1" ]]; then |
|
|
2408 | "$(PYTHON -f)" -c "${python_command}" |
|
|
2409 | else |
| 1868 | "$(PYTHON ${PYTHON_ABI})" -c "${python_command}" |
2410 | "$(PYTHON ${PYTHON_ABI})" -c "${python_command}" |
|
|
2411 | fi |
|
|
2412 | fi |
|
|
2413 | } |
|
|
2414 | |
|
|
2415 | # @FUNCTION: python_get_implementation_and_version |
|
|
2416 | # @USAGE: [-f|--final-ABI] |
|
|
2417 | # @DESCRIPTION: |
|
|
2418 | # Print name and version of Python implementation. |
|
|
2419 | # If version of Python implementation is not bound to version of Python language, then |
|
|
2420 | # version of Python language is additionally printed. |
|
|
2421 | # If --final-ABI option is specified, then final ABI from the list of enabled ABIs is used. |
|
|
2422 | python_get_implementation_and_version() { |
|
|
2423 | _python_check_python_pkg_setup_execution |
|
|
2424 | |
|
|
2425 | local final_ABI="0" PYTHON_ABI="${PYTHON_ABI}" |
|
|
2426 | |
|
|
2427 | while (($#)); do |
|
|
2428 | case "$1" in |
|
|
2429 | -f|--final-ABI) |
|
|
2430 | final_ABI="1" |
|
|
2431 | ;; |
|
|
2432 | -*) |
|
|
2433 | die "${FUNCNAME}(): Unrecognized option '$1'" |
|
|
2434 | ;; |
|
|
2435 | *) |
|
|
2436 | die "${FUNCNAME}(): Invalid usage" |
|
|
2437 | ;; |
|
|
2438 | esac |
|
|
2439 | shift |
|
|
2440 | done |
|
|
2441 | |
|
|
2442 | if [[ "${final_ABI}" == "1" ]]; then |
|
|
2443 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
2444 | die "${FUNCNAME}(): '--final-ABI' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
|
|
2445 | fi |
|
|
2446 | PYTHON_ABI="$(PYTHON -f --ABI)" |
|
|
2447 | else |
|
|
2448 | if _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
2449 | if ! _python_abi-specific_local_scope; then |
|
|
2450 | die "${FUNCNAME}() should be used in ABI-specific local scope" |
|
|
2451 | fi |
|
|
2452 | else |
|
|
2453 | PYTHON_ABI="${PYTHON_ABI:-$(PYTHON --ABI)}" |
|
|
2454 | fi |
|
|
2455 | fi |
|
|
2456 | |
|
|
2457 | if [[ "${PYTHON_ABI}" =~ ^[[:digit:]]+\.[[:digit:]]+-[[:alnum:]]+-[[:digit:]]+\.[[:digit:]]+$ ]]; then |
|
|
2458 | echo "$(_python_get_implementation "${PYTHON_ABI}") ${PYTHON_ABI##*-} (Python ${PYTHON_ABI%%-*})" |
|
|
2459 | else |
|
|
2460 | echo "$(_python_get_implementation "${PYTHON_ABI}") ${PYTHON_ABI%%-*}" |
| 1869 | fi |
2461 | fi |
| 1870 | } |
2462 | } |
| 1871 | |
2463 | |
| 1872 | # ================================================================================================ |
2464 | # ================================================================================================ |
| 1873 | # ================================ FUNCTIONS FOR RUNNING OF TESTS ================================ |
2465 | # ================================ FUNCTIONS FOR RUNNING OF TESTS ================================ |
| … | |
… | |
| 1882 | _python_test_hook() { |
2474 | _python_test_hook() { |
| 1883 | if [[ "$#" -ne 1 ]]; then |
2475 | if [[ "$#" -ne 1 ]]; then |
| 1884 | die "${FUNCNAME}() requires 1 argument" |
2476 | die "${FUNCNAME}() requires 1 argument" |
| 1885 | fi |
2477 | fi |
| 1886 | |
2478 | |
| 1887 | if _python_package_supporting_installation_for_multiple_python_abis && [[ "$(type -t "${FUNCNAME[3]}_$1_hook")" == "function" ]]; then |
2479 | if _python_package_supporting_installation_for_multiple_python_abis && [[ "$(type -t "${_PYTHON_TEST_FUNCTION}_$1_hook")" == "function" ]]; then |
| 1888 | "${FUNCNAME[3]}_$1_hook" |
2480 | "${_PYTHON_TEST_FUNCTION}_$1_hook" |
| 1889 | fi |
2481 | fi |
| 1890 | } |
2482 | } |
| 1891 | |
2483 | |
| 1892 | # @FUNCTION: python_execute_nosetests |
2484 | # @FUNCTION: python_execute_nosetests |
| 1893 | # @USAGE: [-P|--PYTHONPATH PYTHONPATH] [-s|--separate-build-dirs] [--] [arguments] |
2485 | # @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. |
2489 | # python_execute_nosetests_pre_hook() and python_execute_nosetests_post_hook(), if they are defined. |
| 1898 | python_execute_nosetests() { |
2490 | python_execute_nosetests() { |
| 1899 | _python_check_python_pkg_setup_execution |
2491 | _python_check_python_pkg_setup_execution |
| 1900 | _python_set_color_variables |
2492 | _python_set_color_variables |
| 1901 | |
2493 | |
| 1902 | local PYTHONPATH_template= separate_build_dirs= |
2494 | local PYTHONPATH_template separate_build_dirs |
| 1903 | |
2495 | |
| 1904 | while (($#)); do |
2496 | while (($#)); do |
| 1905 | case "$1" in |
2497 | case "$1" in |
| 1906 | -P|--PYTHONPATH) |
2498 | -P|--PYTHONPATH) |
| 1907 | PYTHONPATH_template="$2" |
2499 | PYTHONPATH_template="$2" |
| … | |
… | |
| 1925 | done |
2517 | done |
| 1926 | |
2518 | |
| 1927 | python_test_function() { |
2519 | python_test_function() { |
| 1928 | local evaluated_PYTHONPATH |
2520 | local evaluated_PYTHONPATH |
| 1929 | |
2521 | |
| 1930 | evaluated_PYTHONPATH="$(eval echo -n "${PYTHONPATH_template}")" |
2522 | eval "evaluated_PYTHONPATH=\"${PYTHONPATH_template}\"" |
| 1931 | |
2523 | |
| 1932 | _python_test_hook pre |
2524 | _PYTHON_TEST_FUNCTION="python_execute_nosetests" _python_test_hook pre |
| 1933 | |
2525 | |
| 1934 | if [[ -n "${evaluated_PYTHONPATH}" ]]; then |
2526 | if [[ -n "${evaluated_PYTHONPATH}" ]]; then |
| 1935 | echo ${_BOLD}PYTHONPATH="${evaluated_PYTHONPATH}" nosetests --verbosity="${PYTHON_TEST_VERBOSITY}" "$@"${_NORMAL} |
2527 | echo ${_BOLD}PYTHONPATH="${evaluated_PYTHONPATH}" nosetests --verbosity="${PYTHON_TEST_VERBOSITY}" "$@"${_NORMAL} |
| 1936 | PYTHONPATH="${evaluated_PYTHONPATH}" nosetests --verbosity="${PYTHON_TEST_VERBOSITY}" "$@" || return "$?" |
2528 | PYTHONPATH="${evaluated_PYTHONPATH}" nosetests --verbosity="${PYTHON_TEST_VERBOSITY}" "$@" || return "$?" |
| 1937 | else |
2529 | else |
| 1938 | echo ${_BOLD}nosetests --verbosity="${PYTHON_TEST_VERBOSITY}" "$@"${_NORMAL} |
2530 | echo ${_BOLD}nosetests --verbosity="${PYTHON_TEST_VERBOSITY}" "$@"${_NORMAL} |
| 1939 | nosetests --verbosity="${PYTHON_TEST_VERBOSITY}" "$@" || return "$?" |
2531 | nosetests --verbosity="${PYTHON_TEST_VERBOSITY}" "$@" || return "$?" |
| 1940 | fi |
2532 | fi |
| 1941 | |
2533 | |
| 1942 | _python_test_hook post |
2534 | _PYTHON_TEST_FUNCTION="python_execute_nosetests" _python_test_hook post |
| 1943 | } |
2535 | } |
| 1944 | if _python_package_supporting_installation_for_multiple_python_abis; then |
2536 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| 1945 | python_execute_function ${separate_build_dirs:+-s} python_test_function "$@" |
2537 | python_execute_function ${separate_build_dirs:+-s} python_test_function "$@" |
| 1946 | else |
2538 | else |
| 1947 | if [[ -n "${separate_build_dirs}" ]]; then |
2539 | if [[ -n "${separate_build_dirs}" ]]; then |
| … | |
… | |
| 1961 | # python_execute_py.test_pre_hook() and python_execute_py.test_post_hook(), if they are defined. |
2553 | # python_execute_py.test_pre_hook() and python_execute_py.test_post_hook(), if they are defined. |
| 1962 | python_execute_py.test() { |
2554 | python_execute_py.test() { |
| 1963 | _python_check_python_pkg_setup_execution |
2555 | _python_check_python_pkg_setup_execution |
| 1964 | _python_set_color_variables |
2556 | _python_set_color_variables |
| 1965 | |
2557 | |
| 1966 | local PYTHONPATH_template= separate_build_dirs= |
2558 | local PYTHONPATH_template separate_build_dirs |
| 1967 | |
2559 | |
| 1968 | while (($#)); do |
2560 | while (($#)); do |
| 1969 | case "$1" in |
2561 | case "$1" in |
| 1970 | -P|--PYTHONPATH) |
2562 | -P|--PYTHONPATH) |
| 1971 | PYTHONPATH_template="$2" |
2563 | PYTHONPATH_template="$2" |
| … | |
… | |
| 1989 | done |
2581 | done |
| 1990 | |
2582 | |
| 1991 | python_test_function() { |
2583 | python_test_function() { |
| 1992 | local evaluated_PYTHONPATH |
2584 | local evaluated_PYTHONPATH |
| 1993 | |
2585 | |
| 1994 | evaluated_PYTHONPATH="$(eval echo -n "${PYTHONPATH_template}")" |
2586 | eval "evaluated_PYTHONPATH=\"${PYTHONPATH_template}\"" |
| 1995 | |
2587 | |
| 1996 | _python_test_hook pre |
2588 | _PYTHON_TEST_FUNCTION="python_execute_py.test" _python_test_hook pre |
| 1997 | |
2589 | |
| 1998 | if [[ -n "${evaluated_PYTHONPATH}" ]]; then |
2590 | if [[ -n "${evaluated_PYTHONPATH}" ]]; then |
| 1999 | echo ${_BOLD}PYTHONPATH="${evaluated_PYTHONPATH}" py.test $([[ "${PYTHON_TEST_VERBOSITY}" -ge 2 ]] && echo -v) "$@"${_NORMAL} |
2591 | 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 "$?" |
2592 | PYTHONPATH="${evaluated_PYTHONPATH}" py.test $([[ "${PYTHON_TEST_VERBOSITY}" -ge 2 ]] && echo -v) "$@" || return "$?" |
| 2001 | else |
2593 | else |
| 2002 | echo ${_BOLD}py.test $([[ "${PYTHON_TEST_VERBOSITY}" -gt 1 ]] && echo -v) "$@"${_NORMAL} |
2594 | echo ${_BOLD}py.test $([[ "${PYTHON_TEST_VERBOSITY}" -gt 1 ]] && echo -v) "$@"${_NORMAL} |
| 2003 | py.test $([[ "${PYTHON_TEST_VERBOSITY}" -gt 1 ]] && echo -v) "$@" || return "$?" |
2595 | py.test $([[ "${PYTHON_TEST_VERBOSITY}" -gt 1 ]] && echo -v) "$@" || return "$?" |
| 2004 | fi |
2596 | fi |
| 2005 | |
2597 | |
| 2006 | _python_test_hook post |
2598 | _PYTHON_TEST_FUNCTION="python_execute_py.test" _python_test_hook post |
| 2007 | } |
2599 | } |
| 2008 | if _python_package_supporting_installation_for_multiple_python_abis; then |
2600 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| 2009 | python_execute_function ${separate_build_dirs:+-s} python_test_function "$@" |
2601 | python_execute_function ${separate_build_dirs:+-s} python_test_function "$@" |
| 2010 | else |
2602 | else |
| 2011 | if [[ -n "${separate_build_dirs}" ]]; then |
2603 | if [[ -n "${separate_build_dirs}" ]]; then |
| … | |
… | |
| 2025 | # calls python_execute_trial_pre_hook() and python_execute_trial_post_hook(), if they are defined. |
2617 | # calls python_execute_trial_pre_hook() and python_execute_trial_post_hook(), if they are defined. |
| 2026 | python_execute_trial() { |
2618 | python_execute_trial() { |
| 2027 | _python_check_python_pkg_setup_execution |
2619 | _python_check_python_pkg_setup_execution |
| 2028 | _python_set_color_variables |
2620 | _python_set_color_variables |
| 2029 | |
2621 | |
| 2030 | local PYTHONPATH_template= separate_build_dirs= |
2622 | local PYTHONPATH_template separate_build_dirs |
| 2031 | |
2623 | |
| 2032 | while (($#)); do |
2624 | while (($#)); do |
| 2033 | case "$1" in |
2625 | case "$1" in |
| 2034 | -P|--PYTHONPATH) |
2626 | -P|--PYTHONPATH) |
| 2035 | PYTHONPATH_template="$2" |
2627 | PYTHONPATH_template="$2" |
| … | |
… | |
| 2053 | done |
2645 | done |
| 2054 | |
2646 | |
| 2055 | python_test_function() { |
2647 | python_test_function() { |
| 2056 | local evaluated_PYTHONPATH |
2648 | local evaluated_PYTHONPATH |
| 2057 | |
2649 | |
| 2058 | evaluated_PYTHONPATH="$(eval echo -n "${PYTHONPATH_template}")" |
2650 | eval "evaluated_PYTHONPATH=\"${PYTHONPATH_template}\"" |
| 2059 | |
2651 | |
| 2060 | _python_test_hook pre |
2652 | _PYTHON_TEST_FUNCTION="python_execute_trial" _python_test_hook pre |
| 2061 | |
2653 | |
| 2062 | if [[ -n "${evaluated_PYTHONPATH}" ]]; then |
2654 | if [[ -n "${evaluated_PYTHONPATH}" ]]; then |
| 2063 | echo ${_BOLD}PYTHONPATH="${evaluated_PYTHONPATH}" trial $([[ "${PYTHON_TEST_VERBOSITY}" -ge 4 ]] && echo --spew) "$@"${_NORMAL} |
2655 | 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 "$?" |
2656 | PYTHONPATH="${evaluated_PYTHONPATH}" trial $([[ "${PYTHON_TEST_VERBOSITY}" -ge 4 ]] && echo --spew) "$@" || return "$?" |
| 2065 | else |
2657 | else |
| 2066 | echo ${_BOLD}trial $([[ "${PYTHON_TEST_VERBOSITY}" -ge 4 ]] && echo --spew) "$@"${_NORMAL} |
2658 | echo ${_BOLD}trial $([[ "${PYTHON_TEST_VERBOSITY}" -ge 4 ]] && echo --spew) "$@"${_NORMAL} |
| 2067 | trial $([[ "${PYTHON_TEST_VERBOSITY}" -ge 4 ]] && echo --spew) "$@" || return "$?" |
2659 | trial $([[ "${PYTHON_TEST_VERBOSITY}" -ge 4 ]] && echo --spew) "$@" || return "$?" |
| 2068 | fi |
2660 | fi |
| 2069 | |
2661 | |
| 2070 | _python_test_hook post |
2662 | _PYTHON_TEST_FUNCTION="python_execute_trial" _python_test_hook post |
| 2071 | } |
2663 | } |
| 2072 | if _python_package_supporting_installation_for_multiple_python_abis; then |
2664 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| 2073 | python_execute_function ${separate_build_dirs:+-s} python_test_function "$@" |
2665 | python_execute_function ${separate_build_dirs:+-s} python_test_function "$@" |
| 2074 | else |
2666 | else |
| 2075 | if [[ -n "${separate_build_dirs}" ]]; then |
2667 | if [[ -n "${separate_build_dirs}" ]]; then |
| … | |
… | |
| 2116 | |
2708 | |
| 2117 | _python_clean_compiled_modules() { |
2709 | _python_clean_compiled_modules() { |
| 2118 | _python_initialize_prefix_variables |
2710 | _python_initialize_prefix_variables |
| 2119 | _python_set_color_variables |
2711 | _python_set_color_variables |
| 2120 | |
2712 | |
| 2121 | [[ "${FUNCNAME[1]}" =~ ^(python_mod_optimize|python_mod_compile|python_mod_cleanup)$ ]] || die "${FUNCNAME}(): Invalid usage" |
2713 | [[ "${FUNCNAME[1]}" =~ ^(python_mod_optimize|python_mod_cleanup)$ ]] || die "${FUNCNAME}(): Invalid usage" |
| 2122 | |
2714 | |
| 2123 | local base_module_name compiled_file compiled_files=() dir path py_file root |
2715 | local base_module_name compiled_file compiled_files=() dir path py_file root |
| 2124 | |
2716 | |
| 2125 | # Strip trailing slash from EROOT. |
2717 | # Strip trailing slash from EROOT. |
| 2126 | root="${EROOT%/}" |
2718 | root="${EROOT%/}" |
| … | |
… | |
| 2175 | if [[ "${dir}" == "__pycache__" ]]; then |
2767 | if [[ "${dir}" == "__pycache__" ]]; then |
| 2176 | base_module_name="${compiled_file##*/}" |
2768 | base_module_name="${compiled_file##*/}" |
| 2177 | base_module_name="${base_module_name%\$py.class}" |
2769 | base_module_name="${base_module_name%\$py.class}" |
| 2178 | py_file="${compiled_file%__pycache__/*}${base_module_name}.py" |
2770 | py_file="${compiled_file%__pycache__/*}${base_module_name}.py" |
| 2179 | else |
2771 | else |
| 2180 | py_file="${compiled_file%\$py.class}" |
2772 | py_file="${compiled_file%\$py.class}.py" |
| 2181 | fi |
2773 | fi |
| 2182 | if [[ "${EBUILD_PHASE}" == "postinst" ]]; then |
2774 | if [[ "${EBUILD_PHASE}" == "postinst" ]]; then |
| 2183 | [[ -f "${py_file}" && "${compiled_file}" -nt "${py_file}" ]] && continue |
2775 | [[ -f "${py_file}" && "${compiled_file}" -nt "${py_file}" ]] && continue |
| 2184 | else |
2776 | else |
| 2185 | [[ -f "${py_file}" ]] && continue |
2777 | [[ -f "${py_file}" ]] && continue |
| … | |
… | |
| 2203 | done |
2795 | done |
| 2204 | done |
2796 | done |
| 2205 | } |
2797 | } |
| 2206 | |
2798 | |
| 2207 | # @FUNCTION: python_mod_optimize |
2799 | # @FUNCTION: python_mod_optimize |
| 2208 | # @USAGE: [options] [directory|file] |
2800 | # @USAGE: [--allow-evaluated-non-sitedir-paths] [-d directory] [-f] [-l] [-q] [-x regular_expression] [--] <file|directory> [files|directories] |
| 2209 | # @DESCRIPTION: |
2801 | # @DESCRIPTION: |
| 2210 | # If no arguments supplied, it will recompile not recursively all modules |
2802 | # 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. |
2803 | # -d, -f, -l, -q and -x options passed to this function are passed to compileall.py. |
| 2217 | # |
2804 | # |
| 2218 | # This function can be used only in pkg_postinst() phase. |
2805 | # This function can be used only in pkg_postinst() phase. |
| 2219 | python_mod_optimize() { |
2806 | python_mod_optimize() { |
|
|
2807 | if [[ "${EBUILD_PHASE}" != "postinst" ]]; then |
|
|
2808 | die "${FUNCNAME}() can be used only in pkg_postinst() phase" |
|
|
2809 | fi |
|
|
2810 | |
| 2220 | _python_check_python_pkg_setup_execution |
2811 | _python_check_python_pkg_setup_execution |
| 2221 | _python_initialize_prefix_variables |
2812 | _python_initialize_prefix_variables |
| 2222 | |
2813 | |
| 2223 | # Check if phase is pkg_postinst(). |
2814 | 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. |
2815 | # 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=() |
2816 | 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 | |
2817 | |
| 2230 | if _python_package_supporting_installation_for_multiple_python_abis; then |
2818 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| 2231 | if has "${EAPI:-0}" 0 1 2 3 && [[ -z "${PYTHON_ABIS}" ]]; then |
2819 | if has "${EAPI:-0}" 0 1 2 3 && [[ -z "${PYTHON_ABIS}" ]]; then |
| 2232 | die "${FUNCNAME}(): python_pkg_setup() or python_execute_function() not called" |
2820 | die "${FUNCNAME}(): python_pkg_setup() or python_execute_function() not called" |
| 2233 | fi |
2821 | fi |
| … | |
… | |
| 2243 | # Strip trailing slash from EROOT. |
2831 | # Strip trailing slash from EROOT. |
| 2244 | root="${EROOT%/}" |
2832 | root="${EROOT%/}" |
| 2245 | |
2833 | |
| 2246 | while (($#)); do |
2834 | while (($#)); do |
| 2247 | case "$1" in |
2835 | case "$1" in |
|
|
2836 | --allow-evaluated-non-sitedir-paths) |
|
|
2837 | allow_evaluated_non_sitedir_paths="1" |
|
|
2838 | ;; |
| 2248 | -l|-f|-q) |
2839 | -l|-f|-q) |
| 2249 | options+=("$1") |
2840 | options+=("$1") |
| 2250 | ;; |
2841 | ;; |
| 2251 | -d|-x) |
2842 | -d|-x) |
| 2252 | options+=("$1" "$2") |
2843 | options+=("$1" "$2") |
| … | |
… | |
| 2264 | ;; |
2855 | ;; |
| 2265 | esac |
2856 | esac |
| 2266 | shift |
2857 | shift |
| 2267 | done |
2858 | done |
| 2268 | |
2859 | |
|
|
2860 | if [[ "${allow_evaluated_non_sitedir_paths}" == "1" ]] && ! _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
2861 | die "${FUNCNAME}(): '--allow-evaluated-non-sitedir-paths' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
|
|
2862 | fi |
|
|
2863 | |
| 2269 | if [[ "$#" -eq 0 ]]; then |
2864 | if [[ "$#" -eq 0 ]]; then |
| 2270 | _python_set_color_variables |
2865 | 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 |
2866 | fi |
| 2284 | |
2867 | |
| 2285 | while (($#)); do |
2868 | while (($#)); do |
| 2286 | if [[ "$1" =~ ^($|(\.|\.\.|/)($|/)) ]]; then |
2869 | if [[ "$1" =~ ^($|(\.|\.\.|/)($|/)) ]]; then |
| 2287 | die "${FUNCNAME}(): Invalid argument '$1'" |
2870 | die "${FUNCNAME}(): Invalid argument '$1'" |
| 2288 | elif ! _python_implementation && [[ "$1" =~ ^/usr/lib(32|64)?/python[[:digit:]]+\.[[:digit:]]+ ]]; then |
2871 | 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" |
2872 | die "${FUNCNAME}(): Paths of directories / files in site-packages directories must be relative to site-packages directories" |
| 2290 | elif [[ "$1" =~ ^/ ]]; then |
2873 | elif [[ "$1" =~ ^/ ]]; then |
| 2291 | if _python_package_supporting_installation_for_multiple_python_abis; then |
2874 | if _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
2875 | 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" |
2876 | die "${FUNCNAME}(): Absolute paths cannot be used in ebuilds of packages supporting installation for multiple Python ABIs" |
| 2293 | fi |
2877 | fi |
| 2294 | if [[ -d "${root}$1" ]]; then |
2878 | if [[ "$1" != *\$* ]]; then |
| 2295 | other_dirs+=("${root}$1") |
2879 | die "${FUNCNAME}(): '$1' has invalid syntax" |
| 2296 | elif [[ -f "${root}$1" ]]; then |
2880 | fi |
| 2297 | other_files+=("${root}$1") |
2881 | if [[ "$1" == *.py ]]; then |
| 2298 | elif [[ -e "${root}$1" ]]; then |
2882 | evaluated_files+=("$1") |
| 2299 | eerror "${FUNCNAME}(): '${root}$1' is not a regular file or a directory" |
2883 | else |
|
|
2884 | evaluated_dirs+=("$1") |
|
|
2885 | fi |
| 2300 | else |
2886 | else |
|
|
2887 | if [[ -d "${root}$1" ]]; then |
|
|
2888 | other_dirs+=("${root}$1") |
|
|
2889 | elif [[ -f "${root}$1" ]]; then |
|
|
2890 | other_files+=("${root}$1") |
|
|
2891 | elif [[ -e "${root}$1" ]]; then |
|
|
2892 | eerror "${FUNCNAME}(): '${root}$1' is not a regular file or a directory" |
|
|
2893 | else |
| 2301 | eerror "${FUNCNAME}(): '${root}$1' does not exist" |
2894 | eerror "${FUNCNAME}(): '${root}$1' does not exist" |
|
|
2895 | fi |
| 2302 | fi |
2896 | fi |
| 2303 | else |
2897 | else |
| 2304 | for PYTHON_ABI in ${iterated_PYTHON_ABIS}; do |
2898 | for PYTHON_ABI in ${iterated_PYTHON_ABIS}; do |
| 2305 | if [[ -d "${root}$(python_get_sitedir)/$1" ]]; then |
2899 | if [[ -d "${root}$(python_get_sitedir)/$1" ]]; then |
| 2306 | site_packages_dirs+=("$1") |
2900 | site_packages_dirs+=("$1") |
| … | |
… | |
| 2320 | |
2914 | |
| 2321 | # Set additional options. |
2915 | # Set additional options. |
| 2322 | options+=("-q") |
2916 | options+=("-q") |
| 2323 | |
2917 | |
| 2324 | for PYTHON_ABI in ${iterated_PYTHON_ABIS}; do |
2918 | for PYTHON_ABI in ${iterated_PYTHON_ABIS}; do |
| 2325 | if ((${#site_packages_dirs[@]})) || ((${#site_packages_files[@]})); then |
2919 | if ((${#site_packages_dirs[@]})) || ((${#site_packages_files[@]})) || ((${#evaluated_dirs[@]})) || ((${#evaluated_files[@]})); then |
| 2326 | return_code="0" |
2920 | return_code="0" |
|
|
2921 | stderr="" |
| 2327 | ebegin "Compilation and optimization of Python modules for $(python_get_implementation) $(python_get_version)" |
2922 | ebegin "Compilation and optimization of Python modules for $(python_get_implementation_and_version)" |
| 2328 | if ((${#site_packages_dirs[@]})); then |
2923 | if ((${#site_packages_dirs[@]})) || ((${#evaluated_dirs[@]})); then |
| 2329 | for dir in "${site_packages_dirs[@]}"; do |
2924 | for dir in "${site_packages_dirs[@]}"; do |
| 2330 | site_packages_absolute_dirs+=("${root}$(python_get_sitedir)/${dir}") |
2925 | dirs+=("${root}$(python_get_sitedir)/${dir}") |
| 2331 | done |
2926 | done |
| 2332 | "$(PYTHON)" "${root}$(python_get_libdir)/compileall.py" "${options[@]}" "${site_packages_absolute_dirs[@]}" || return_code="1" |
2927 | for dir in "${evaluated_dirs[@]}"; do |
|
|
2928 | eval "dirs+=(\"\${root}${dir}\")" |
|
|
2929 | done |
|
|
2930 | stderr+="${stderr:+$'\n'}$("$(PYTHON)" -m compileall "${options[@]}" "${dirs[@]}" 2>&1)" || return_code="1" |
| 2333 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" != "Jython" ]]; then |
2931 | 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" |
2932 | "$(PYTHON)" -O -m compileall "${options[@]}" "${dirs[@]}" &> /dev/null || return_code="1" |
| 2335 | fi |
2933 | fi |
| 2336 | _python_clean_compiled_modules "${site_packages_absolute_dirs[@]}" |
2934 | _python_clean_compiled_modules "${dirs[@]}" |
| 2337 | fi |
2935 | fi |
| 2338 | if ((${#site_packages_files[@]})); then |
2936 | if ((${#site_packages_files[@]})) || ((${#evaluated_files[@]})); then |
| 2339 | for file in "${site_packages_files[@]}"; do |
2937 | for file in "${site_packages_files[@]}"; do |
| 2340 | site_packages_absolute_files+=("${root}$(python_get_sitedir)/${file}") |
2938 | files+=("${root}$(python_get_sitedir)/${file}") |
| 2341 | done |
2939 | done |
| 2342 | "$(PYTHON)" "${root}$(python_get_libdir)/py_compile.py" "${site_packages_absolute_files[@]}" || return_code="1" |
2940 | for file in "${evaluated_files[@]}"; do |
|
|
2941 | eval "files+=(\"\${root}${file}\")" |
|
|
2942 | done |
|
|
2943 | stderr+="${stderr:+$'\n'}$("$(PYTHON)" -m py_compile "${files[@]}" 2>&1)" || return_code="1" |
| 2343 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" != "Jython" ]]; then |
2944 | 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" |
2945 | "$(PYTHON)" -O -m py_compile "${files[@]}" &> /dev/null || return_code="1" |
| 2345 | fi |
2946 | fi |
| 2346 | _python_clean_compiled_modules "${site_packages_absolute_files[@]}" |
2947 | _python_clean_compiled_modules "${files[@]}" |
| 2347 | fi |
2948 | fi |
| 2348 | eend "${return_code}" |
2949 | eend "${return_code}" |
|
|
2950 | if [[ -n "${stderr}" ]]; then |
|
|
2951 | eerror "Syntax errors / warnings in Python modules for $(python_get_implementation_and_version):" &> /dev/null |
|
|
2952 | while read stderr_line; do |
|
|
2953 | eerror " ${stderr_line}" |
|
|
2954 | done <<< "${stderr}" |
| 2349 | fi |
2955 | fi |
| 2350 | unset site_packages_absolute_dirs site_packages_absolute_files |
2956 | fi |
|
|
2957 | unset dirs files |
| 2351 | done |
2958 | done |
| 2352 | |
2959 | |
| 2353 | if _python_package_supporting_installation_for_multiple_python_abis; then |
2960 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| 2354 | # Restore previous value of PYTHON_ABI. |
2961 | # Restore previous value of PYTHON_ABI. |
| 2355 | if [[ -n "${previous_PYTHON_ABI}" ]]; then |
2962 | if [[ -n "${previous_PYTHON_ABI}" ]]; then |
| … | |
… | |
| 2359 | fi |
2966 | fi |
| 2360 | fi |
2967 | fi |
| 2361 | |
2968 | |
| 2362 | if ((${#other_dirs[@]})) || ((${#other_files[@]})); then |
2969 | if ((${#other_dirs[@]})) || ((${#other_files[@]})); then |
| 2363 | return_code="0" |
2970 | return_code="0" |
|
|
2971 | stderr="" |
| 2364 | ebegin "Compilation and optimization of Python modules placed outside of site-packages directories for $(python_get_implementation) $(python_get_version)" |
2972 | ebegin "Compilation and optimization of Python modules placed outside of site-packages directories for $(python_get_implementation_and_version)" |
| 2365 | if ((${#other_dirs[@]})); then |
2973 | if ((${#other_dirs[@]})); then |
| 2366 | "$(PYTHON ${PYTHON_ABI})" "${root}$(python_get_libdir)/compileall.py" "${options[@]}" "${other_dirs[@]}" || return_code="1" |
2974 | 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 |
2975 | 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" |
2976 | "$(PYTHON ${PYTHON_ABI})" -O -m compileall "${options[@]}" "${other_dirs[@]}" &> /dev/null || return_code="1" |
| 2369 | fi |
2977 | fi |
| 2370 | _python_clean_compiled_modules "${other_dirs[@]}" |
2978 | _python_clean_compiled_modules "${other_dirs[@]}" |
| 2371 | fi |
2979 | fi |
| 2372 | if ((${#other_files[@]})); then |
2980 | if ((${#other_files[@]})); then |
| 2373 | "$(PYTHON ${PYTHON_ABI})" "${root}$(python_get_libdir)/py_compile.py" "${other_files[@]}" || return_code="1" |
2981 | 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 |
2982 | 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" |
2983 | "$(PYTHON ${PYTHON_ABI})" -O -m py_compile "${other_files[@]}" &> /dev/null || return_code="1" |
| 2376 | fi |
2984 | fi |
| 2377 | _python_clean_compiled_modules "${other_dirs[@]}" |
2985 | _python_clean_compiled_modules "${other_files[@]}" |
| 2378 | fi |
2986 | fi |
| 2379 | eend "${return_code}" |
2987 | eend "${return_code}" |
|
|
2988 | if [[ -n "${stderr}" ]]; then |
|
|
2989 | eerror "Syntax errors / warnings in Python modules placed outside of site-packages directories for $(python_get_implementation_and_version):" &> /dev/null |
|
|
2990 | while read stderr_line; do |
|
|
2991 | eerror " ${stderr_line}" |
|
|
2992 | done <<< "${stderr}" |
|
|
2993 | fi |
| 2380 | fi |
2994 | fi |
| 2381 | else |
2995 | else |
| 2382 | # Deprecated part of python_mod_optimize() |
2996 | # Deprecated part of python_mod_optimize() |
|
|
2997 | ewarn |
|
|
2998 | ewarn "Deprecation Warning: Usage of ${FUNCNAME}() in packages not supporting installation" |
|
|
2999 | ewarn "for multiple Python ABIs in EAPI <=2 is deprecated and will be disallowed on 2011-08-01." |
|
|
3000 | ewarn "Use EAPI >=3 and call ${FUNCNAME}() with paths having appropriate syntax." |
|
|
3001 | ewarn "The ebuild needs to be fixed. Please report a bug, if it has not been already reported." |
|
|
3002 | ewarn |
| 2383 | |
3003 | |
| 2384 | local myroot mydirs=() myfiles=() myopts=() return_code="0" |
3004 | local myroot mydirs=() myfiles=() myopts=() return_code="0" |
| 2385 | |
3005 | |
| 2386 | # strip trailing slash |
3006 | # strip trailing slash |
| 2387 | myroot="${EROOT%/}" |
3007 | myroot="${EROOT%/}" |
| … | |
… | |
| 2409 | esac |
3029 | esac |
| 2410 | shift |
3030 | shift |
| 2411 | done |
3031 | done |
| 2412 | |
3032 | |
| 2413 | if [[ "$#" -eq 0 ]]; then |
3033 | if [[ "$#" -eq 0 ]]; then |
| 2414 | _python_set_color_variables |
3034 | 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 |
3035 | fi |
| 2428 | |
3036 | |
| 2429 | while (($#)); do |
3037 | while (($#)); do |
| 2430 | if [[ "$1" =~ ^($|(\.|\.\.|/)($|/)) ]]; then |
3038 | if [[ "$1" =~ ^($|(\.|\.\.|/)($|/)) ]]; then |
| 2431 | die "${FUNCNAME}(): Invalid argument '$1'" |
3039 | die "${FUNCNAME}(): Invalid argument '$1'" |
| 2432 | elif [[ -d "${myroot}/${1#/}" ]]; then |
3040 | elif [[ -d "${myroot}/${1#/}" ]]; then |
| 2433 | mydirs+=("${myroot}/${1#/}") |
3041 | mydirs+=("${myroot}/${1#/}") |
| 2434 | elif [[ -f "${myroot}/${1#/}" ]]; then |
3042 | elif [[ -f "${myroot}/${1#/}" ]]; then |
| 2435 | # Files are passed to python_mod_compile which is EROOT-aware |
3043 | myfiles+=("${myroot}/${1#/}") |
| 2436 | myfiles+=("$1") |
|
|
| 2437 | elif [[ -e "${myroot}/${1#/}" ]]; then |
3044 | elif [[ -e "${myroot}/${1#/}" ]]; then |
| 2438 | eerror "${FUNCNAME}(): ${myroot}/${1#/} is not a regular file or directory" |
3045 | eerror "${FUNCNAME}(): ${myroot}/${1#/} is not a regular file or directory" |
| 2439 | else |
3046 | else |
| 2440 | eerror "${FUNCNAME}(): ${myroot}/${1#/} does not exist" |
3047 | eerror "${FUNCNAME}(): ${myroot}/${1#/} does not exist" |
| 2441 | fi |
3048 | fi |
| … | |
… | |
| 2453 | "$(PYTHON ${PYTHON_ABI})" -O "${myroot}$(python_get_libdir)/compileall.py" "${myopts[@]}" "${mydirs[@]}" &> /dev/null || return_code="1" |
3060 | "$(PYTHON ${PYTHON_ABI})" -O "${myroot}$(python_get_libdir)/compileall.py" "${myopts[@]}" "${mydirs[@]}" &> /dev/null || return_code="1" |
| 2454 | _python_clean_compiled_modules "${mydirs[@]}" |
3061 | _python_clean_compiled_modules "${mydirs[@]}" |
| 2455 | fi |
3062 | fi |
| 2456 | |
3063 | |
| 2457 | if ((${#myfiles[@]})); then |
3064 | if ((${#myfiles[@]})); then |
|
|
3065 | "$(PYTHON ${PYTHON_ABI})" "${myroot}$(python_get_libdir)/py_compile.py" "${myfiles[@]}" || return_code="1" |
|
|
3066 | "$(PYTHON ${PYTHON_ABI})" -O "${myroot}$(python_get_libdir)/py_compile.py" "${myfiles[@]}" &> /dev/null || return_code="1" |
| 2458 | python_mod_compile "${myfiles[@]}" |
3067 | _python_clean_compiled_modules "${myfiles[@]}" |
| 2459 | fi |
3068 | fi |
| 2460 | |
3069 | |
| 2461 | eend "${return_code}" |
3070 | eend "${return_code}" |
| 2462 | fi |
3071 | fi |
| 2463 | } |
3072 | } |
| 2464 | |
3073 | |
| 2465 | # @FUNCTION: python_mod_cleanup |
3074 | # @FUNCTION: python_mod_cleanup |
| 2466 | # @USAGE: [directory|file] |
3075 | # @USAGE: [--allow-evaluated-non-sitedir-paths] [--] <file|directory> [files|directories] |
| 2467 | # @DESCRIPTION: |
3076 | # @DESCRIPTION: |
| 2468 | # Run with optional arguments, where arguments are Python modules. If none given, |
3077 | # 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 | # |
3078 | # |
| 2475 | # This function can be used only in pkg_postrm() phase. |
3079 | # This function can be used only in pkg_postrm() phase. |
| 2476 | python_mod_cleanup() { |
3080 | python_mod_cleanup() { |
|
|
3081 | if [[ "${EBUILD_PHASE}" != "postrm" ]]; then |
|
|
3082 | die "${FUNCNAME}() can be used only in pkg_postrm() phase" |
|
|
3083 | fi |
|
|
3084 | |
| 2477 | _python_check_python_pkg_setup_execution |
3085 | _python_check_python_pkg_setup_execution |
| 2478 | _python_initialize_prefix_variables |
3086 | _python_initialize_prefix_variables |
| 2479 | |
3087 | |
| 2480 | local dir iterated_PYTHON_ABIS PYTHON_ABI="${PYTHON_ABI}" root search_paths=() sitedir |
3088 | 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 | |
3089 | |
| 2485 | if _python_package_supporting_installation_for_multiple_python_abis; then |
3090 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| 2486 | if has "${EAPI:-0}" 0 1 2 3 && [[ -z "${PYTHON_ABIS}" ]]; then |
3091 | if has "${EAPI:-0}" 0 1 2 3 && [[ -z "${PYTHON_ABIS}" ]]; then |
| 2487 | die "${FUNCNAME}(): python_pkg_setup() or python_execute_function() not called" |
3092 | die "${FUNCNAME}(): python_pkg_setup() or python_execute_function() not called" |
| 2488 | fi |
3093 | fi |
| … | |
… | |
| 2496 | fi |
3101 | fi |
| 2497 | |
3102 | |
| 2498 | # Strip trailing slash from EROOT. |
3103 | # Strip trailing slash from EROOT. |
| 2499 | root="${EROOT%/}" |
3104 | root="${EROOT%/}" |
| 2500 | |
3105 | |
|
|
3106 | while (($#)); do |
|
|
3107 | case "$1" in |
|
|
3108 | --allow-evaluated-non-sitedir-paths) |
|
|
3109 | allow_evaluated_non_sitedir_paths="1" |
|
|
3110 | ;; |
|
|
3111 | --) |
|
|
3112 | shift |
|
|
3113 | break |
|
|
3114 | ;; |
|
|
3115 | -*) |
|
|
3116 | die "${FUNCNAME}(): Unrecognized option '$1'" |
|
|
3117 | ;; |
|
|
3118 | *) |
|
|
3119 | break |
|
|
3120 | ;; |
|
|
3121 | esac |
|
|
3122 | shift |
|
|
3123 | done |
|
|
3124 | |
|
|
3125 | if [[ "${allow_evaluated_non_sitedir_paths}" == "1" ]] && ! _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
3126 | die "${FUNCNAME}(): '--allow-evaluated-non-sitedir-paths' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
|
|
3127 | fi |
|
|
3128 | |
| 2501 | if [[ "$#" -gt 0 ]]; then |
3129 | if [[ "$#" -eq 0 ]]; then |
| 2502 | if ! has "${EAPI:-0}" 0 1 2 || _python_package_supporting_installation_for_multiple_python_abis; then |
3130 | die "${FUNCNAME}(): Missing files or directories" |
|
|
3131 | fi |
|
|
3132 | |
|
|
3133 | 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 |
3134 | while (($#)); do |
| 2504 | if [[ "$1" =~ ^($|(\.|\.\.|/)($|/)) ]]; then |
3135 | if [[ "$1" =~ ^($|(\.|\.\.|/)($|/)) ]]; then |
| 2505 | die "${FUNCNAME}(): Invalid argument '$1'" |
3136 | die "${FUNCNAME}(): Invalid argument '$1'" |
| 2506 | elif ! _python_implementation && [[ "$1" =~ ^/usr/lib(32|64)?/python[[:digit:]]+\.[[:digit:]]+ ]]; then |
3137 | 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" |
3138 | die "${FUNCNAME}(): Paths of directories / files in site-packages directories must be relative to site-packages directories" |
| 2508 | elif [[ "$1" =~ ^/ ]]; then |
3139 | elif [[ "$1" =~ ^/ ]]; then |
| 2509 | if _python_package_supporting_installation_for_multiple_python_abis; then |
3140 | if _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
3141 | 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" |
3142 | die "${FUNCNAME}(): Absolute paths cannot be used in ebuilds of packages supporting installation for multiple Python ABIs" |
| 2511 | fi |
3143 | fi |
|
|
3144 | if [[ "$1" != *\$* ]]; then |
|
|
3145 | die "${FUNCNAME}(): '$1' has invalid syntax" |
|
|
3146 | fi |
|
|
3147 | for PYTHON_ABI in ${iterated_PYTHON_ABIS}; do |
|
|
3148 | eval "search_paths+=(\"\${root}$1\")" |
|
|
3149 | done |
|
|
3150 | else |
| 2512 | search_paths+=("${root}$1") |
3151 | search_paths+=("${root}$1") |
|
|
3152 | fi |
| 2513 | else |
3153 | else |
| 2514 | for PYTHON_ABI in ${iterated_PYTHON_ABIS}; do |
3154 | for PYTHON_ABI in ${iterated_PYTHON_ABIS}; do |
| 2515 | search_paths+=("${root}$(python_get_sitedir)/$1") |
3155 | 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 |
3156 | done |
| 2548 | fi |
3157 | fi |
|
|
3158 | shift |
| 2549 | done |
3159 | done |
| 2550 | for sitedir in "${root}"/usr/share/jython-*/Lib/site-packages; do |
3160 | else |
| 2551 | if [[ -d "${sitedir}" ]]; then |
3161 | # Deprecated part of python_mod_cleanup() |
|
|
3162 | ewarn |
|
|
3163 | ewarn "Deprecation Warning: Usage of ${FUNCNAME}() in packages not supporting installation" |
|
|
3164 | ewarn "for multiple Python ABIs in EAPI <=2 is deprecated and will be disallowed on 2011-08-01." |
|
|
3165 | ewarn "Use EAPI >=3 and call ${FUNCNAME}() with paths having appropriate syntax." |
|
|
3166 | ewarn "The ebuild needs to be fixed. Please report a bug, if it has not been already reported." |
|
|
3167 | ewarn |
|
|
3168 | |
| 2552 | search_paths+=("${sitedir}") |
3169 | search_paths=("${@#/}") |
| 2553 | fi |
3170 | search_paths=("${search_paths[@]/#/${root}/}") |
| 2554 | done |
|
|
| 2555 | fi |
3171 | fi |
| 2556 | |
3172 | |
| 2557 | _python_clean_compiled_modules "${search_paths[@]}" |
3173 | _python_clean_compiled_modules "${search_paths[@]}" |
| 2558 | } |
3174 | } |
| 2559 | |
3175 | |
| 2560 | # ================================================================================================ |
3176 | # ================================================================================================ |
| 2561 | # ===================================== DEPRECATED FUNCTIONS ===================================== |
3177 | # ===================================== DEPRECATED FUNCTIONS ===================================== |
| 2562 | # ================================================================================================ |
3178 | # ================================================================================================ |
| 2563 | |
3179 | |
| 2564 | # Scheduled for deletion on 2011-01-01. |
3180 | fi # _PYTHON_ECLASS_INHERITED |
| 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 | } |
|
|