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