| 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.104 2010/10/25 11:54:19 arfrever Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/python.eclass,v 1.152 2012/03/07 04:13:27 floppym Exp $ |
| 4 | |
4 | |
| 5 | # @ECLASS: python.eclass |
5 | # @ECLASS: python.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # Gentoo Python Project <python@gentoo.org> |
7 | # Gentoo Python Project <python@gentoo.org> |
| 8 | # @BLURB: Eclass for Python packages |
8 | # @BLURB: Eclass for Python packages |
| 9 | # @DESCRIPTION: |
9 | # @DESCRIPTION: |
| 10 | # The python eclass contains miscellaneous, useful functions for Python packages. |
10 | # The python eclass contains miscellaneous, useful functions for Python packages. |
| 11 | |
11 | |
|
|
12 | # Must call inherit before EXPORT_FUNCTIONS to avoid QA warning. |
|
|
13 | if [[ -z "${_PYTHON_ECLASS_INHERITED}" ]]; then |
| 12 | inherit multilib |
14 | inherit multilib |
|
|
15 | fi |
| 13 | |
16 | |
|
|
17 | # Export pkg_setup every time to avoid issues with eclass inheritance order. |
|
|
18 | if ! has "${EAPI:-0}" 0 1 2 3 || { has "${EAPI:-0}" 2 3 && [[ -n "${PYTHON_USE_WITH}" || -n "${PYTHON_USE_WITH_OR}" ]]; }; then |
|
|
19 | EXPORT_FUNCTIONS pkg_setup |
|
|
20 | fi |
|
|
21 | |
|
|
22 | # Avoid processing this eclass more than once. |
|
|
23 | if [[ -z "${_PYTHON_ECLASS_INHERITED}" ]]; then |
|
|
24 | _PYTHON_ECLASS_INHERITED="1" |
|
|
25 | |
| 14 | if ! has "${EAPI:-0}" 0 1 2 3; then |
26 | if ! has "${EAPI:-0}" 0 1 2 3 4; then |
| 15 | die "API of python.eclass in EAPI=\"${EAPI}\" not established" |
27 | die "API of python.eclass in EAPI=\"${EAPI}\" not established" |
| 16 | fi |
28 | fi |
| 17 | |
29 | |
| 18 | _CPYTHON2_SUPPORTED_ABIS=(2.4 2.5 2.6 2.7) |
30 | _CPYTHON2_GLOBALLY_SUPPORTED_ABIS=(2.4 2.5 2.6 2.7) |
| 19 | _CPYTHON3_SUPPORTED_ABIS=(3.0 3.1 3.2) |
31 | _CPYTHON3_GLOBALLY_SUPPORTED_ABIS=(3.1 3.2) |
| 20 | _JYTHON_SUPPORTED_ABIS=(2.5-jython) |
32 | _JYTHON_GLOBALLY_SUPPORTED_ABIS=(2.5-jython) |
| 21 | _PYTHON_SUPPORTED_ABIS=(${_CPYTHON2_SUPPORTED_ABIS[@]} ${_CPYTHON3_SUPPORTED_ABIS[@]} ${_JYTHON_SUPPORTED_ABIS[@]}) |
33 | _PYPY_GLOBALLY_SUPPORTED_ABIS=(2.7-pypy-1.7 2.7-pypy-1.8) |
|
|
34 | _PYTHON_GLOBALLY_SUPPORTED_ABIS=(${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]} ${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]} ${_JYTHON_GLOBALLY_SUPPORTED_ABIS[@]} ${_PYPY_GLOBALLY_SUPPORTED_ABIS[@]}) |
| 22 | |
35 | |
| 23 | # ================================================================================================ |
36 | # ================================================================================================ |
| 24 | # ===================================== HANDLING OF METADATA ===================================== |
37 | # ===================================== HANDLING OF METADATA ===================================== |
| 25 | # ================================================================================================ |
38 | # ================================================================================================ |
| 26 | |
39 | |
| 27 | _python_set_IUSE() { |
40 | _PYTHON_ABI_PATTERN_REGEX="([[:alnum:]]|\.|-|\*|\[|\])+" |
| 28 | local PYTHON_ABI restricted_ABI restricted_ABIs support_ABI |
|
|
| 29 | |
41 | |
| 30 | _PYTHON_ABIS_USE_FLAGS="" |
42 | _python_check_python_abi_matching() { |
| 31 | restricted_ABIs="${RESTRICT_PYTHON_ABIS// /$'\n'}" |
43 | local pattern patterns patterns_list="0" PYTHON_ABI |
| 32 | |
44 | |
| 33 | for PYTHON_ABI in "${_PYTHON_SUPPORTED_ABIS[@]}"; do |
45 | while (($#)); do |
| 34 | support_ABI="1" |
46 | case "$1" in |
| 35 | while read restricted_ABI; do |
47 | --patterns-list) |
| 36 | if [[ "${PYTHON_ABI}" == ${restricted_ABI} ]]; then |
48 | patterns_list="1" |
| 37 | support_ABI="0" |
49 | ;; |
|
|
50 | --) |
|
|
51 | shift |
| 38 | break |
52 | break |
|
|
53 | ;; |
|
|
54 | -*) |
|
|
55 | die "${FUNCNAME}(): Unrecognized option '$1'" |
|
|
56 | ;; |
|
|
57 | *) |
|
|
58 | break |
|
|
59 | ;; |
|
|
60 | esac |
|
|
61 | shift |
|
|
62 | done |
|
|
63 | |
|
|
64 | if [[ "$#" -ne 2 ]]; then |
|
|
65 | die "${FUNCNAME}() requires 2 arguments" |
|
|
66 | fi |
|
|
67 | |
|
|
68 | PYTHON_ABI="$1" |
|
|
69 | |
|
|
70 | if [[ "${patterns_list}" == "0" ]]; then |
|
|
71 | pattern="$2" |
|
|
72 | |
|
|
73 | if [[ "${pattern}" == *"-cpython" ]]; then |
|
|
74 | [[ "${PYTHON_ABI}" =~ ^[[:digit:]]+\.[[:digit:]]+$ && "${PYTHON_ABI}" == ${pattern%-cpython} ]] |
|
|
75 | elif [[ "${pattern}" == *"-jython" ]]; then |
|
|
76 | [[ "${PYTHON_ABI}" == ${pattern} ]] |
|
|
77 | elif [[ "${pattern}" == *"-pypy-"* ]]; then |
|
|
78 | [[ "${PYTHON_ABI}" == ${pattern} ]] |
|
|
79 | else |
|
|
80 | if [[ "${PYTHON_ABI}" =~ ^[[:digit:]]+\.[[:digit:]]+$ ]]; then |
|
|
81 | [[ "${PYTHON_ABI}" == ${pattern} ]] |
|
|
82 | elif [[ "${PYTHON_ABI}" =~ ^[[:digit:]]+\.[[:digit:]]+-jython$ ]]; then |
|
|
83 | [[ "${PYTHON_ABI%-jython}" == ${pattern} ]] |
|
|
84 | elif [[ "${PYTHON_ABI}" =~ ^[[:digit:]]+\.[[:digit:]]+-pypy-[[:digit:]]+\.[[:digit:]]+$ ]]; then |
|
|
85 | [[ "${PYTHON_ABI%-pypy-*}" == ${pattern} ]] |
|
|
86 | else |
|
|
87 | die "${FUNCNAME}(): Unrecognized Python ABI '${PYTHON_ABI}'" |
|
|
88 | fi |
| 39 | fi |
89 | fi |
| 40 | done <<< "${restricted_ABIs}" |
90 | else |
| 41 | [[ "${support_ABI}" == "1" ]] && _PYTHON_ABIS_USE_FLAGS+="${_PYTHON_ABIS_USE_FLAGS:+ }python_abis_${PYTHON_ABI}" |
91 | patterns="${2// /$'\n'}" |
| 42 | done |
|
|
| 43 | |
92 | |
| 44 | IUSE="${_PYTHON_ABIS_USE_FLAGS}" |
93 | while read pattern; do |
| 45 | } |
94 | if _python_check_python_abi_matching "${PYTHON_ABI}" "${pattern}"; then |
|
|
95 | return 0 |
|
|
96 | fi |
|
|
97 | done <<< "${patterns}" |
| 46 | |
98 | |
| 47 | if ! has "${EAPI:-0}" 0 1 2 3 && [[ -n "${SUPPORT_PYTHON_ABIS}" ]]; then |
99 | return 1 |
| 48 | _python_set_IUSE |
|
|
| 49 | fi |
100 | fi |
| 50 | unset -f _python_set_IUSE |
101 | } |
|
|
102 | |
|
|
103 | _python_package_supporting_installation_for_multiple_python_abis() { |
|
|
104 | if has "${EAPI:-0}" 0 1 2 3 4; then |
|
|
105 | if [[ -n "${SUPPORT_PYTHON_ABIS}" ]]; then |
|
|
106 | return 0 |
|
|
107 | else |
|
|
108 | return 1 |
|
|
109 | fi |
|
|
110 | else |
|
|
111 | die "${FUNCNAME}(): Support for EAPI=\"${EAPI}\" not implemented" |
|
|
112 | fi |
|
|
113 | } |
| 51 | |
114 | |
| 52 | # @ECLASS-VARIABLE: PYTHON_DEPEND |
115 | # @ECLASS-VARIABLE: PYTHON_DEPEND |
| 53 | # @DESCRIPTION: |
116 | # @DESCRIPTION: |
| 54 | # Specification of dependency on dev-lang/python. |
117 | # Specification of dependency on dev-lang/python. |
| 55 | # Syntax: |
118 | # Syntax: |
| … | |
… | |
| 90 | fi |
153 | fi |
| 91 | fi |
154 | fi |
| 92 | |
155 | |
| 93 | if [[ "${major_version}" == "2" ]]; then |
156 | if [[ "${major_version}" == "2" ]]; then |
| 94 | python2="1" |
157 | python2="1" |
| 95 | python_versions=("${_CPYTHON2_SUPPORTED_ABIS[@]}") |
158 | python_versions=("${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]}") |
| 96 | python2_minimal_version="${minimal_version}" |
159 | python2_minimal_version="${minimal_version}" |
| 97 | python2_maximal_version="${maximal_version}" |
160 | python2_maximal_version="${maximal_version}" |
| 98 | elif [[ "${major_version}" == "3" ]]; then |
161 | elif [[ "${major_version}" == "3" ]]; then |
| 99 | python3="1" |
162 | python3="1" |
| 100 | python_versions=("${_CPYTHON3_SUPPORTED_ABIS[@]}") |
163 | python_versions=("${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]}") |
| 101 | python3_minimal_version="${minimal_version}" |
164 | python3_minimal_version="${minimal_version}" |
| 102 | python3_maximal_version="${maximal_version}" |
165 | python3_maximal_version="${maximal_version}" |
| 103 | else |
166 | else |
| 104 | python_all="1" |
167 | python_all="1" |
| 105 | python_versions=("${_CPYTHON2_SUPPORTED_ABIS[@]}" "${_CPYTHON3_SUPPORTED_ABIS[@]}") |
168 | python_versions=("${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]}" "${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]}") |
| 106 | python_minimal_version="${minimal_version}" |
169 | python_minimal_version="${minimal_version}" |
| 107 | python_maximal_version="${maximal_version}" |
170 | python_maximal_version="${maximal_version}" |
| 108 | fi |
171 | fi |
| 109 | |
172 | |
| 110 | if [[ -n "${minimal_version}" ]] && ! has "${minimal_version}" "${python_versions[@]}"; then |
173 | if [[ -n "${minimal_version}" ]] && ! has "${minimal_version}" "${python_versions[@]}"; then |
| … | |
… | |
| 138 | |
201 | |
| 139 | if [[ "${python_all}" == "1" ]]; then |
202 | if [[ "${python_all}" == "1" ]]; then |
| 140 | if [[ -z "${python_minimal_version}" && -z "${python_maximal_version}" ]]; then |
203 | if [[ -z "${python_minimal_version}" && -z "${python_maximal_version}" ]]; then |
| 141 | _PYTHON_ATOMS+=("dev-lang/python") |
204 | _PYTHON_ATOMS+=("dev-lang/python") |
| 142 | else |
205 | else |
| 143 | python_versions=("${_CPYTHON2_SUPPORTED_ABIS[@]}" "${_CPYTHON3_SUPPORTED_ABIS[@]}") |
206 | python_versions=("${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]}" "${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]}") |
| 144 | python_minimal_version="${python_minimal_version:-${python_versions[0]}}" |
207 | python_minimal_version="${python_minimal_version:-${python_versions[0]}}" |
| 145 | python_maximal_version="${python_maximal_version:-${python_versions[${#python_versions[@]}-1]}}" |
208 | python_maximal_version="${python_maximal_version:-${python_versions[${#python_versions[@]}-1]}}" |
| 146 | _append_accepted_versions_range |
209 | _append_accepted_versions_range |
| 147 | fi |
210 | fi |
| 148 | else |
211 | else |
| 149 | if [[ "${python3}" == "1" ]]; then |
212 | if [[ "${python3}" == "1" ]]; then |
| 150 | if [[ -z "${python3_minimal_version}" && -z "${python3_maximal_version}" ]]; then |
213 | if [[ -z "${python3_minimal_version}" && -z "${python3_maximal_version}" ]]; then |
| 151 | _PYTHON_ATOMS+=("=dev-lang/python-3*") |
214 | _PYTHON_ATOMS+=("=dev-lang/python-3*") |
| 152 | else |
215 | else |
| 153 | python_versions=("${_CPYTHON3_SUPPORTED_ABIS[@]}") |
216 | python_versions=("${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]}") |
| 154 | python_minimal_version="${python3_minimal_version:-${python_versions[0]}}" |
217 | python_minimal_version="${python3_minimal_version:-${python_versions[0]}}" |
| 155 | python_maximal_version="${python3_maximal_version:-${python_versions[${#python_versions[@]}-1]}}" |
218 | python_maximal_version="${python3_maximal_version:-${python_versions[${#python_versions[@]}-1]}}" |
| 156 | _append_accepted_versions_range |
219 | _append_accepted_versions_range |
| 157 | fi |
220 | fi |
| 158 | fi |
221 | fi |
| 159 | if [[ "${python2}" == "1" ]]; then |
222 | if [[ "${python2}" == "1" ]]; then |
| 160 | if [[ -z "${python2_minimal_version}" && -z "${python2_maximal_version}" ]]; then |
223 | if [[ -z "${python2_minimal_version}" && -z "${python2_maximal_version}" ]]; then |
| 161 | _PYTHON_ATOMS+=("=dev-lang/python-2*") |
224 | _PYTHON_ATOMS+=("=dev-lang/python-2*") |
| 162 | else |
225 | else |
| 163 | python_versions=("${_CPYTHON2_SUPPORTED_ABIS[@]}") |
226 | python_versions=("${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]}") |
| 164 | python_minimal_version="${python2_minimal_version:-${python_versions[0]}}" |
227 | python_minimal_version="${python2_minimal_version:-${python_versions[0]}}" |
| 165 | python_maximal_version="${python2_maximal_version:-${python_versions[${#python_versions[@]}-1]}}" |
228 | python_maximal_version="${python2_maximal_version:-${python_versions[${#python_versions[@]}-1]}}" |
| 166 | _append_accepted_versions_range |
229 | _append_accepted_versions_range |
| 167 | fi |
230 | fi |
| 168 | fi |
231 | fi |
| … | |
… | |
| 237 | unset _PYTHON_ATOM _PYTHON_USE_WITH_ATOMS _PYTHON_USE_WITH_ATOMS_ARRAY |
300 | unset _PYTHON_ATOM _PYTHON_USE_WITH_ATOMS _PYTHON_USE_WITH_ATOMS_ARRAY |
| 238 | fi |
301 | fi |
| 239 | |
302 | |
| 240 | unset _PYTHON_ATOMS |
303 | unset _PYTHON_ATOMS |
| 241 | |
304 | |
| 242 | # @FUNCTION: python_abi_depend |
|
|
| 243 | # @USAGE: [-e|--exclude-ABIs Python_ABIs] [-i|--include-ABIs Python_ABIs] [--] <dependency_atom> [dependency_atoms] |
|
|
| 244 | # @DESCRIPTION: |
|
|
| 245 | # Print dependency atoms with USE dependencies for Python ABIs added. |
|
|
| 246 | # If --exclude-ABIs option is specified, then Python ABIs matching its argument are not used. |
|
|
| 247 | # If --include-ABIs option is specified, then only Python ABIs matching its argument are used. |
|
|
| 248 | # --exclude-ABIs and --include-ABIs options cannot be specified simultaneously. |
|
|
| 249 | python_abi_depend() { |
|
|
| 250 | local atom atom_index atoms=() exclude_ABIs="0" excluded_ABI excluded_ABIs include_ABIs="0" included_ABI included_ABIs support_ABI USE_dependencies USE_flag USE_flag_index USE_flags=() |
|
|
| 251 | |
|
|
| 252 | if has "${EAPI:-0}" 0 1 2 3; then |
|
|
| 253 | die "${FUNCNAME}() cannot be used in this EAPI" |
|
|
| 254 | fi |
|
|
| 255 | |
|
|
| 256 | if [[ -z "${SUPPORT_PYTHON_ABIS}" ]]; then |
|
|
| 257 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
|
|
| 258 | fi |
|
|
| 259 | |
|
|
| 260 | while (($#)); do |
|
|
| 261 | case "$1" in |
|
|
| 262 | -e|--exclude-ABIs) |
|
|
| 263 | exclude_ABIs="1" |
|
|
| 264 | excluded_ABIs="${2// /$'\n'}" |
|
|
| 265 | shift |
|
|
| 266 | ;; |
|
|
| 267 | -i|--include-ABIs) |
|
|
| 268 | include_ABIs="1" |
|
|
| 269 | included_ABIs="${2// /$'\n'}" |
|
|
| 270 | shift |
|
|
| 271 | ;; |
|
|
| 272 | --) |
|
|
| 273 | shift |
|
|
| 274 | break |
|
|
| 275 | ;; |
|
|
| 276 | -*) |
|
|
| 277 | die "${FUNCNAME}(): Unrecognized option '$1'" |
|
|
| 278 | ;; |
|
|
| 279 | *) |
|
|
| 280 | break |
|
|
| 281 | ;; |
|
|
| 282 | esac |
|
|
| 283 | shift |
|
|
| 284 | done |
|
|
| 285 | |
|
|
| 286 | if [[ "${exclude_ABIs}" == "1" && "${include_ABIs}" == "1" ]]; then |
|
|
| 287 | die "${FUNCNAME}(): '--exclude-ABIs' and '--include-ABIs' options cannot be specified simultaneously" |
|
|
| 288 | fi |
|
|
| 289 | |
|
|
| 290 | if [[ "$#" -eq 0 ]]; then |
|
|
| 291 | die "${FUNCNAME}(): Missing dependency atoms" |
|
|
| 292 | fi |
|
|
| 293 | |
|
|
| 294 | atoms=("$@") |
|
|
| 295 | |
|
|
| 296 | if [[ "${exclude_ABIs}" == "0" && "${include_ABIs}" == "0" ]]; then |
|
|
| 297 | USE_dependencies="$(printf ",%s?" ${_PYTHON_ABIS_USE_FLAGS})" |
|
|
| 298 | USE_dependencies="${USE_dependencies#,}" |
|
|
| 299 | |
|
|
| 300 | for atom_index in "${!atoms[@]}"; do |
|
|
| 301 | atom="${atoms[${atom_index}]}" |
|
|
| 302 | |
|
|
| 303 | if [[ "${atom}" == *"["*"]" ]]; then |
|
|
| 304 | echo -n "${atom%]}," |
|
|
| 305 | else |
|
|
| 306 | echo -n "${atom}[" |
|
|
| 307 | fi |
|
|
| 308 | echo -n "${USE_dependencies}]" |
|
|
| 309 | |
|
|
| 310 | if [[ "${atom_index}" -ne $((${#atoms[@]} - 1)) ]]; then |
|
|
| 311 | echo -n " " |
|
|
| 312 | fi |
|
|
| 313 | done |
|
|
| 314 | else |
|
|
| 315 | if [[ "${exclude_ABIs}" == "1" ]]; then |
|
|
| 316 | for USE_flag in ${_PYTHON_ABIS_USE_FLAGS}; do |
|
|
| 317 | while read excluded_ABI; do |
|
|
| 318 | support_ABI="1" |
|
|
| 319 | if [[ "${USE_flag}" == python_abis_${excluded_ABI} ]]; then |
|
|
| 320 | support_ABI="0" |
|
|
| 321 | break |
|
|
| 322 | fi |
|
|
| 323 | done <<< "${excluded_ABIs}" |
|
|
| 324 | [[ "${support_ABI}" == "1" ]] && USE_flags+=("${USE_flag}") |
|
|
| 325 | done |
|
|
| 326 | elif [[ "${include_ABIs}" == "1" ]]; then |
|
|
| 327 | for USE_flag in ${_PYTHON_ABIS_USE_FLAGS}; do |
|
|
| 328 | while read included_ABI; do |
|
|
| 329 | support_ABI="0" |
|
|
| 330 | if [[ "${USE_flag}" == python_abis_${included_ABI} ]]; then |
|
|
| 331 | support_ABI="1" |
|
|
| 332 | break |
|
|
| 333 | fi |
|
|
| 334 | done <<< "${included_ABIs}" |
|
|
| 335 | [[ "${support_ABI}" == "1" ]] && USE_flags+=("${USE_flag}") |
|
|
| 336 | done |
|
|
| 337 | else |
|
|
| 338 | die "${FUNCNAME}(): Internal error" |
|
|
| 339 | fi |
|
|
| 340 | |
|
|
| 341 | for USE_flag_index in "${!USE_flags[@]}"; do |
|
|
| 342 | USE_flag="${USE_flags[${USE_flag_index}]}" |
|
|
| 343 | USE_dependencies="${USE_flag}" |
|
|
| 344 | |
|
|
| 345 | echo -n "${USE_flag}? ( " |
|
|
| 346 | |
|
|
| 347 | for atom_index in "${!atoms[@]}"; do |
|
|
| 348 | atom="${atoms[${atom_index}]}" |
|
|
| 349 | |
|
|
| 350 | if [[ "${atom}" == *"["*"]" ]]; then |
|
|
| 351 | echo -n "${atom%]}," |
|
|
| 352 | else |
|
|
| 353 | echo -n "${atom}[" |
|
|
| 354 | fi |
|
|
| 355 | echo -n "${USE_dependencies}]" |
|
|
| 356 | |
|
|
| 357 | if [[ "${atom_index}" -ne $((${#atoms[@]} - 1)) ]]; then |
|
|
| 358 | echo -n " " |
|
|
| 359 | fi |
|
|
| 360 | done |
|
|
| 361 | |
|
|
| 362 | echo -n " )" |
|
|
| 363 | |
|
|
| 364 | if [[ "${USE_flag_index}" -ne $((${#USE_flags[@]} - 1)) ]]; then |
|
|
| 365 | echo -n " " |
|
|
| 366 | fi |
|
|
| 367 | done |
|
|
| 368 | fi |
|
|
| 369 | } |
|
|
| 370 | |
|
|
| 371 | # ================================================================================================ |
305 | # ================================================================================================ |
| 372 | # =================================== MISCELLANEOUS FUNCTIONS ==================================== |
306 | # =================================== MISCELLANEOUS FUNCTIONS ==================================== |
| 373 | # ================================================================================================ |
307 | # ================================================================================================ |
| 374 | |
308 | |
| 375 | _python_implementation() { |
309 | _python_implementation() { |
| 376 | if [[ "${CATEGORY}/${PN}" == "dev-lang/python" ]]; then |
310 | if [[ "${CATEGORY}/${PN}" == "dev-lang/python" ]]; then |
| 377 | return 0 |
311 | return 0 |
| 378 | elif [[ "${CATEGORY}/${PN}" == "dev-java/jython" ]]; then |
312 | elif [[ "${CATEGORY}/${PN}" == "dev-java/jython" ]]; then |
| 379 | return 0 |
313 | return 0 |
|
|
314 | elif [[ "${CATEGORY}/${PN}" == "dev-python/pypy" ]]; then |
|
|
315 | return 0 |
| 380 | else |
316 | else |
| 381 | return 1 |
317 | return 1 |
| 382 | fi |
|
|
| 383 | } |
|
|
| 384 | |
|
|
| 385 | _python_package_supporting_installation_for_multiple_python_abis() { |
|
|
| 386 | if [[ "${EBUILD_PHASE}" == "depend" ]]; then |
|
|
| 387 | die "${FUNCNAME}() cannot be used in global scope" |
|
|
| 388 | fi |
|
|
| 389 | |
|
|
| 390 | if has "${EAPI:-0}" 0 1 2 3 4; then |
|
|
| 391 | if [[ -n "${SUPPORT_PYTHON_ABIS}" ]]; then |
|
|
| 392 | return 0 |
|
|
| 393 | else |
|
|
| 394 | return 1 |
|
|
| 395 | fi |
|
|
| 396 | else |
|
|
| 397 | die "${FUNCNAME}(): Support for EAPI=\"${EAPI}\" not implemented" |
|
|
| 398 | fi |
318 | fi |
| 399 | } |
319 | } |
| 400 | |
320 | |
| 401 | _python_abi-specific_local_scope() { |
321 | _python_abi-specific_local_scope() { |
| 402 | [[ " ${FUNCNAME[@]:2} " =~ " "(_python_final_sanity_checks|python_execute_function|python_mod_optimize|python_mod_cleanup)" " ]] |
322 | [[ " ${FUNCNAME[@]:2} " =~ " "(_python_final_sanity_checks|python_execute_function|python_mod_optimize|python_mod_cleanup)" " ]] |
| … | |
… | |
| 476 | _CYAN= |
396 | _CYAN= |
| 477 | _NORMAL= |
397 | _NORMAL= |
| 478 | fi |
398 | fi |
| 479 | } |
399 | } |
| 480 | |
400 | |
| 481 | unset PYTHON_PKG_SETUP_EXECUTED |
|
|
| 482 | |
|
|
| 483 | _python_check_python_pkg_setup_execution() { |
401 | _python_check_python_pkg_setup_execution() { |
| 484 | [[ " ${FUNCNAME[@]:1} " =~ " "(python_set_active_version|python_pkg_setup)" " ]] && return |
402 | [[ " ${FUNCNAME[@]:1} " =~ " "(python_set_active_version|python_pkg_setup)" " ]] && return |
| 485 | |
403 | |
| 486 | if ! has "${EAPI:-0}" 0 1 2 3 && [[ -z "${PYTHON_PKG_SETUP_EXECUTED}" ]]; then |
404 | if ! has "${EAPI:-0}" 0 1 2 3 && [[ -z "${PYTHON_PKG_SETUP_EXECUTED}" ]]; then |
| 487 | die "python_pkg_setup() not called" |
405 | die "python_pkg_setup() not called" |
| … | |
… | |
| 492 | # @DESCRIPTION: |
410 | # @DESCRIPTION: |
| 493 | # Perform sanity checks and initialize environment. |
411 | # Perform sanity checks and initialize environment. |
| 494 | # |
412 | # |
| 495 | # This function is exported in EAPI 2 and 3 when PYTHON_USE_WITH or PYTHON_USE_WITH_OR variable |
413 | # This function is exported in EAPI 2 and 3 when PYTHON_USE_WITH or PYTHON_USE_WITH_OR variable |
| 496 | # is set and always in EAPI >=4. Calling of this function is mandatory in EAPI >=4. |
414 | # is set and always in EAPI >=4. Calling of this function is mandatory in EAPI >=4. |
| 497 | # |
|
|
| 498 | # This function can be used only in pkg_setup() phase. |
|
|
| 499 | python_pkg_setup() { |
415 | python_pkg_setup() { |
| 500 | # Check if phase is pkg_setup(). |
416 | if [[ "${EBUILD_PHASE}" != "setup" ]]; then |
| 501 | [[ "${EBUILD_PHASE}" != "setup" ]] && die "${FUNCNAME}() can be used only in pkg_setup() phase" |
417 | die "${FUNCNAME}() can be used only in pkg_setup() phase" |
|
|
418 | fi |
| 502 | |
419 | |
| 503 | if [[ "$#" -ne 0 ]]; then |
420 | if [[ "$#" -ne 0 ]]; then |
| 504 | die "${FUNCNAME}() does not accept arguments" |
421 | die "${FUNCNAME}() does not accept arguments" |
| 505 | fi |
422 | fi |
|
|
423 | |
|
|
424 | export JYTHON_SYSTEM_CACHEDIR="1" |
|
|
425 | addwrite "${EPREFIX}/var/cache/jython" |
| 506 | |
426 | |
| 507 | if _python_package_supporting_installation_for_multiple_python_abis; then |
427 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| 508 | _python_calculate_PYTHON_ABIS |
428 | _python_calculate_PYTHON_ABIS |
| 509 | export EPYTHON="$(PYTHON -f)" |
429 | export EPYTHON="$(PYTHON -f)" |
| 510 | else |
430 | else |
| … | |
… | |
| 553 | fi |
473 | fi |
| 554 | |
474 | |
| 555 | PYTHON_PKG_SETUP_EXECUTED="1" |
475 | PYTHON_PKG_SETUP_EXECUTED="1" |
| 556 | } |
476 | } |
| 557 | |
477 | |
| 558 | if ! has "${EAPI:-0}" 0 1 2 3 || { has "${EAPI:-0}" 2 3 && [[ -n "${PYTHON_USE_WITH}" || -n "${PYTHON_USE_WITH_OR}" ]]; }; then |
478 | _PYTHON_SHEBANG_BASE_PART_REGEX='^#![[:space:]]*([^[:space:]]*/usr/bin/env[[:space:]]+)?([^[:space:]]*/)?(jython|pypy-c|python)' |
| 559 | EXPORT_FUNCTIONS pkg_setup |
|
|
| 560 | fi |
|
|
| 561 | |
479 | |
| 562 | # @FUNCTION: python_convert_shebangs |
480 | # @FUNCTION: python_convert_shebangs |
| 563 | # @USAGE: [-q|--quiet] [-r|--recursive] [-x|--only-executables] [--] <Python_version> <file|directory> [files|directories] |
481 | # @USAGE: [-q|--quiet] [-r|--recursive] [-x|--only-executables] [--] <Python_ABI|Python_version> <file|directory> [files|directories] |
| 564 | # @DESCRIPTION: |
482 | # @DESCRIPTION: |
| 565 | # Convert shebangs in specified files. Directories can be specified only with --recursive option. |
483 | # Convert shebangs in specified files. Directories can be specified only with --recursive option. |
| 566 | python_convert_shebangs() { |
484 | python_convert_shebangs() { |
| 567 | _python_check_python_pkg_setup_execution |
485 | _python_check_python_pkg_setup_execution |
| 568 | |
486 | |
| 569 | local argument file files=() only_executables="0" python_version quiet="0" recursive="0" |
487 | local argument file files=() only_executables="0" python_interpreter quiet="0" recursive="0" shebangs_converted="0" |
| 570 | |
488 | |
| 571 | while (($#)); do |
489 | while (($#)); do |
| 572 | case "$1" in |
490 | case "$1" in |
| 573 | -r|--recursive) |
491 | -r|--recursive) |
| 574 | recursive="1" |
492 | recursive="1" |
| … | |
… | |
| 597 | die "${FUNCNAME}(): Missing Python version and files or directories" |
515 | die "${FUNCNAME}(): Missing Python version and files or directories" |
| 598 | elif [[ "$#" -eq 1 ]]; then |
516 | elif [[ "$#" -eq 1 ]]; then |
| 599 | die "${FUNCNAME}(): Missing files or directories" |
517 | die "${FUNCNAME}(): Missing files or directories" |
| 600 | fi |
518 | fi |
| 601 | |
519 | |
| 602 | python_version="$1" |
520 | if [[ -n "$(_python_get_implementation --ignore-invalid "$1")" ]]; then |
|
|
521 | python_interpreter="$(PYTHON "$1")" |
|
|
522 | else |
|
|
523 | python_interpreter="python$1" |
|
|
524 | fi |
| 603 | shift |
525 | shift |
| 604 | |
526 | |
| 605 | for argument in "$@"; do |
527 | for argument in "$@"; do |
| 606 | if [[ ! -e "${argument}" ]]; then |
528 | if [[ ! -e "${argument}" ]]; then |
| 607 | die "${FUNCNAME}(): '${argument}' does not exist" |
529 | die "${FUNCNAME}(): '${argument}' does not exist" |
| … | |
… | |
| 622 | |
544 | |
| 623 | for file in "${files[@]}"; do |
545 | for file in "${files[@]}"; do |
| 624 | file="${file#./}" |
546 | file="${file#./}" |
| 625 | [[ "${only_executables}" == "1" && ! -x "${file}" ]] && continue |
547 | [[ "${only_executables}" == "1" && ! -x "${file}" ]] && continue |
| 626 | |
548 | |
| 627 | if [[ "$(head -n1 "${file}")" =~ ^'#!'.*python ]]; then |
549 | if [[ "$(head -n1 "${file}")" =~ ${_PYTHON_SHEBANG_BASE_PART_REGEX} ]]; then |
| 628 | [[ "$(sed -ne "2p" "${file}")" =~ ^"# Gentoo '".*"' wrapper script generated by python_generate_wrapper_scripts()"$ ]] && continue |
550 | [[ "$(sed -ne "2p" "${file}")" =~ ^"# Gentoo '".*"' wrapper script generated by python_generate_wrapper_scripts()"$ ]] && continue |
|
|
551 | |
|
|
552 | shebangs_converted="1" |
| 629 | |
553 | |
| 630 | if [[ "${quiet}" == "0" ]]; then |
554 | if [[ "${quiet}" == "0" ]]; then |
| 631 | einfo "Converting shebang in '${file}'" |
555 | einfo "Converting shebang in '${file}'" |
| 632 | fi |
556 | fi |
| 633 | |
557 | |
| 634 | sed -e "1s/python\([[:digit:]]\+\(\.[[:digit:]]\+\)\?\)\?/python${python_version}/" -i "${file}" || die "Conversion of shebang in '${file}' failed" |
558 | sed -e "1s:^#![[:space:]]*\([^[:space:]]*/usr/bin/env[[:space:]]\)\?[[:space:]]*\([^[:space:]]*/\)\?\(jython\|pypy-c\|python\)\([[:digit:]]\+\(\.[[:digit:]]\+\)\?\)\?\(\$\|[[:space:]].*\):#!\1\2${python_interpreter}\6:" -i "${file}" || die "Conversion of shebang in '${file}' failed" |
|
|
559 | fi |
|
|
560 | done |
| 635 | |
561 | |
| 636 | # Delete potential whitespace after "#!". |
562 | if [[ "${shebangs_converted}" == "0" ]]; then |
| 637 | sed -e '1s/\(^#!\)[[:space:]]*/\1/' -i "${file}" || die "sed '${file}' failed" |
563 | ewarn "${FUNCNAME}(): Python scripts not found" |
| 638 | fi |
564 | fi |
| 639 | done |
|
|
| 640 | } |
565 | } |
| 641 | |
566 | |
| 642 | # @FUNCTION: python_clean_installation_image |
567 | # @FUNCTION: python_clean_py-compile_files |
| 643 | # @USAGE: [-q|--quiet] |
568 | # @USAGE: [-q|--quiet] |
| 644 | # @DESCRIPTION: |
569 | # @DESCRIPTION: |
| 645 | # Delete needless files in installation image. |
570 | # Clean py-compile files to disable byte-compilation. |
| 646 | python_clean_installation_image() { |
571 | python_clean_py-compile_files() { |
| 647 | _python_check_python_pkg_setup_execution |
572 | _python_check_python_pkg_setup_execution |
| 648 | _python_initialize_prefix_variables |
|
|
| 649 | |
573 | |
| 650 | local file files=() quiet="0" |
574 | local file files=() quiet="0" |
| 651 | |
|
|
| 652 | # Check if phase is src_install(). |
|
|
| 653 | [[ "${EBUILD_PHASE}" != "install" ]] && die "${FUNCNAME}() can be used only in src_install() phase" |
|
|
| 654 | |
575 | |
| 655 | while (($#)); do |
576 | while (($#)); do |
| 656 | case "$1" in |
577 | case "$1" in |
| 657 | -q|--quiet) |
578 | -q|--quiet) |
| 658 | quiet="1" |
579 | quiet="1" |
| … | |
… | |
| 666 | esac |
587 | esac |
| 667 | shift |
588 | shift |
| 668 | done |
589 | done |
| 669 | |
590 | |
| 670 | while read -d $'\0' -r file; do |
591 | while read -d $'\0' -r file; do |
|
|
592 | files+=("${file#./}") |
|
|
593 | done < <(find -name py-compile -type f -print0) |
|
|
594 | |
|
|
595 | for file in "${files[@]}"; do |
|
|
596 | if [[ "${quiet}" == "0" ]]; then |
|
|
597 | einfo "Cleaning '${file}' file" |
|
|
598 | fi |
|
|
599 | echo "#!/bin/sh" > "${file}" |
|
|
600 | done |
|
|
601 | } |
|
|
602 | |
|
|
603 | # @FUNCTION: python_clean_installation_image |
|
|
604 | # @USAGE: [-q|--quiet] |
|
|
605 | # @DESCRIPTION: |
|
|
606 | # Delete needless files in installation image. |
|
|
607 | # |
|
|
608 | # This function can be used only in src_install() phase. |
|
|
609 | python_clean_installation_image() { |
|
|
610 | if [[ "${EBUILD_PHASE}" != "install" ]]; then |
|
|
611 | die "${FUNCNAME}() can be used only in src_install() phase" |
|
|
612 | fi |
|
|
613 | |
|
|
614 | _python_check_python_pkg_setup_execution |
|
|
615 | _python_initialize_prefix_variables |
|
|
616 | |
|
|
617 | local file files=() quiet="0" |
|
|
618 | |
|
|
619 | while (($#)); do |
|
|
620 | case "$1" in |
|
|
621 | -q|--quiet) |
|
|
622 | quiet="1" |
|
|
623 | ;; |
|
|
624 | -*) |
|
|
625 | die "${FUNCNAME}(): Unrecognized option '$1'" |
|
|
626 | ;; |
|
|
627 | *) |
|
|
628 | die "${FUNCNAME}(): Invalid usage" |
|
|
629 | ;; |
|
|
630 | esac |
|
|
631 | shift |
|
|
632 | done |
|
|
633 | |
|
|
634 | while read -d $'\0' -r file; do |
| 671 | files+=("${file}") |
635 | files+=("${file}") |
| 672 | done < <(find "${ED}" "(" -name "*.py[co]" -o -name "*\$py.class" ")" -type f -print0) |
636 | done < <(find "${ED}" "(" -name "*.py[co]" -o -name "*\$py.class" ")" -type f -print0) |
| 673 | |
637 | |
| 674 | if [[ "${#files[@]}" -gt 0 ]]; then |
638 | if [[ "${#files[@]}" -gt 0 ]]; then |
| 675 | if [[ "${quiet}" == "0" ]]; then |
639 | if [[ "${quiet}" == "0" ]]; then |
| … | |
… | |
| 709 | # @ECLASS-VARIABLE: SUPPORT_PYTHON_ABIS |
673 | # @ECLASS-VARIABLE: SUPPORT_PYTHON_ABIS |
| 710 | # @DESCRIPTION: |
674 | # @DESCRIPTION: |
| 711 | # Set this in EAPI <= 4 to indicate that current package supports installation for |
675 | # Set this in EAPI <= 4 to indicate that current package supports installation for |
| 712 | # multiple Python ABIs. |
676 | # multiple Python ABIs. |
| 713 | |
677 | |
|
|
678 | # @ECLASS-VARIABLE: PYTHON_TESTS_RESTRICTED_ABIS |
|
|
679 | # @DESCRIPTION: |
|
|
680 | # Space-separated list of Python ABI patterns. Testing in Python ABIs matching any Python ABI |
|
|
681 | # patterns specified in this list is skipped. |
|
|
682 | |
| 714 | # @ECLASS-VARIABLE: PYTHON_EXPORT_PHASE_FUNCTIONS |
683 | # @ECLASS-VARIABLE: PYTHON_EXPORT_PHASE_FUNCTIONS |
| 715 | # @DESCRIPTION: |
684 | # @DESCRIPTION: |
| 716 | # Set this to export phase functions for the following ebuild phases: |
685 | # Set this to export phase functions for the following ebuild phases: |
| 717 | # src_prepare, src_configure, src_compile, src_test, src_install. |
686 | # src_prepare(), src_configure(), src_compile(), src_test(), src_install(). |
| 718 | if ! has "${EAPI:-0}" 0 1; then |
687 | if ! has "${EAPI:-0}" 0 1; then |
| 719 | python_src_prepare() { |
688 | python_src_prepare() { |
| 720 | _python_check_python_pkg_setup_execution |
689 | if [[ "${EBUILD_PHASE}" != "prepare" ]]; then |
|
|
690 | die "${FUNCNAME}() can be used only in src_prepare() phase" |
|
|
691 | fi |
| 721 | |
692 | |
| 722 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
693 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
| 723 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
694 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
| 724 | fi |
695 | fi |
| 725 | |
696 | |
|
|
697 | _python_check_python_pkg_setup_execution |
|
|
698 | |
| 726 | if [[ "$#" -ne 0 ]]; then |
699 | if [[ "$#" -ne 0 ]]; then |
| 727 | die "${FUNCNAME}() does not accept arguments" |
700 | die "${FUNCNAME}() does not accept arguments" |
| 728 | fi |
701 | fi |
| 729 | |
702 | |
| 730 | python_copy_sources |
703 | python_copy_sources |
| 731 | } |
704 | } |
| 732 | |
705 | |
| 733 | for python_default_function in src_configure src_compile src_test src_install; do |
706 | for python_default_function in src_configure src_compile src_test; do |
| 734 | eval "python_${python_default_function}() { |
707 | eval "python_${python_default_function}() { |
| 735 | _python_check_python_pkg_setup_execution |
708 | if [[ \"\${EBUILD_PHASE}\" != \"${python_default_function#src_}\" ]]; then |
|
|
709 | die \"\${FUNCNAME}() can be used only in ${python_default_function}() phase\" |
|
|
710 | fi |
| 736 | |
711 | |
| 737 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
712 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
| 738 | die \"\${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs\" |
713 | die \"\${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs\" |
| 739 | fi |
714 | fi |
| 740 | |
715 | |
|
|
716 | _python_check_python_pkg_setup_execution |
|
|
717 | |
| 741 | python_execute_function -d -s -- \"\$@\" |
718 | python_execute_function -d -s -- \"\$@\" |
| 742 | }" |
719 | }" |
| 743 | done |
720 | done |
| 744 | unset python_default_function |
721 | unset python_default_function |
| 745 | |
722 | |
|
|
723 | python_src_install() { |
|
|
724 | if [[ "${EBUILD_PHASE}" != "install" ]]; then |
|
|
725 | die "${FUNCNAME}() can be used only in src_install() phase" |
|
|
726 | fi |
|
|
727 | |
|
|
728 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
729 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
|
|
730 | fi |
|
|
731 | |
|
|
732 | _python_check_python_pkg_setup_execution |
|
|
733 | |
|
|
734 | if has "${EAPI:-0}" 0 1 2 3; then |
|
|
735 | python_execute_function -d -s -- "$@" |
|
|
736 | else |
|
|
737 | python_installation() { |
|
|
738 | emake DESTDIR="${T}/images/${PYTHON_ABI}" install "$@" |
|
|
739 | } |
|
|
740 | python_execute_function -s python_installation "$@" |
|
|
741 | unset python_installation |
|
|
742 | |
|
|
743 | python_merge_intermediate_installation_images "${T}/images" |
|
|
744 | fi |
|
|
745 | } |
|
|
746 | |
| 746 | if [[ -n "${PYTHON_EXPORT_PHASE_FUNCTIONS}" ]]; then |
747 | if [[ -n "${PYTHON_EXPORT_PHASE_FUNCTIONS}" ]]; then |
| 747 | EXPORT_FUNCTIONS src_prepare src_configure src_compile src_test src_install |
748 | EXPORT_FUNCTIONS src_prepare src_configure src_compile src_test src_install |
| 748 | fi |
749 | fi |
| 749 | fi |
750 | fi |
| 750 | |
751 | |
| 751 | if has "${EAPI:-0}" 0 1 2 3; then |
752 | if has "${EAPI:-0}" 0 1 2 3 4; then |
| 752 | unset PYTHON_ABIS |
753 | unset PYTHON_ABIS |
| 753 | fi |
754 | fi |
| 754 | |
755 | |
| 755 | _python_calculate_PYTHON_ABIS() { |
756 | _python_calculate_PYTHON_ABIS() { |
| 756 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
757 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
| 757 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
758 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
| 758 | fi |
759 | fi |
| 759 | |
760 | |
| 760 | _python_initial_sanity_checks |
761 | _python_initial_sanity_checks |
| 761 | |
762 | |
| 762 | if [[ "$(declare -p PYTHON_ABIS 2> /dev/null)" != "declare -x PYTHON_ABIS="* ]] && has "${EAPI:-0}" 0 1 2 3; then |
763 | if [[ "$(declare -p PYTHON_ABIS 2> /dev/null)" != "declare -x PYTHON_ABIS="* ]] && has "${EAPI:-0}" 0 1 2 3 4; then |
| 763 | local PYTHON_ABI restricted_ABI restricted_ABIs support_ABI supported_PYTHON_ABIS |
764 | local PYTHON_ABI |
| 764 | |
|
|
| 765 | restricted_ABIs="${RESTRICT_PYTHON_ABIS// /$'\n'}" |
|
|
| 766 | |
765 | |
| 767 | if [[ "$(declare -p USE_PYTHON 2> /dev/null)" == "declare -x USE_PYTHON="* ]]; then |
766 | if [[ "$(declare -p USE_PYTHON 2> /dev/null)" == "declare -x USE_PYTHON="* ]]; then |
| 768 | local cpython_enabled="0" |
767 | local cpython_enabled="0" |
| 769 | |
768 | |
| 770 | if [[ -z "${USE_PYTHON}" ]]; then |
769 | if [[ -z "${USE_PYTHON}" ]]; then |
| 771 | die "USE_PYTHON variable is empty" |
770 | die "USE_PYTHON variable is empty" |
| 772 | fi |
771 | fi |
| 773 | |
772 | |
| 774 | for PYTHON_ABI in ${USE_PYTHON}; do |
773 | for PYTHON_ABI in ${USE_PYTHON}; do |
| 775 | if ! has "${PYTHON_ABI}" ${_PYTHON_SUPPORTED_ABIS[@]}; then |
774 | if ! has "${PYTHON_ABI}" "${_PYTHON_GLOBALLY_SUPPORTED_ABIS[@]}"; then |
| 776 | die "USE_PYTHON variable contains invalid value '${PYTHON_ABI}'" |
775 | die "USE_PYTHON variable contains invalid value '${PYTHON_ABI}'" |
| 777 | fi |
776 | fi |
| 778 | |
777 | |
| 779 | if has "${PYTHON_ABI}" "${_CPYTHON2_SUPPORTED_ABIS[@]}" "${_CPYTHON3_SUPPORTED_ABIS[@]}"; then |
778 | if has "${PYTHON_ABI}" "${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]}" "${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]}"; then |
| 780 | cpython_enabled="1" |
779 | cpython_enabled="1" |
| 781 | fi |
780 | fi |
| 782 | |
781 | |
| 783 | support_ABI="1" |
782 | if ! _python_check_python_abi_matching --patterns-list "${PYTHON_ABI}" "${RESTRICT_PYTHON_ABIS}"; then |
| 784 | while read restricted_ABI; do |
783 | export PYTHON_ABIS+="${PYTHON_ABIS:+ }${PYTHON_ABI}" |
| 785 | if [[ "${PYTHON_ABI}" == ${restricted_ABI} ]]; then |
|
|
| 786 | support_ABI="0" |
|
|
| 787 | break |
|
|
| 788 | fi |
784 | fi |
| 789 | done <<< "${restricted_ABIs}" |
|
|
| 790 | [[ "${support_ABI}" == "1" ]] && export PYTHON_ABIS+="${PYTHON_ABIS:+ }${PYTHON_ABI}" |
|
|
| 791 | done |
785 | done |
| 792 | |
786 | |
| 793 | if [[ -z "${PYTHON_ABIS//[${IFS}]/}" ]]; then |
787 | if [[ -z "${PYTHON_ABIS//[${IFS}]/}" ]]; then |
| 794 | die "USE_PYTHON variable does not enable any Python ABI supported by ${CATEGORY}/${PF}" |
788 | die "USE_PYTHON variable does not enable any Python ABI supported by ${CATEGORY}/${PF}" |
| 795 | fi |
789 | fi |
| 796 | |
790 | |
| 797 | if [[ "${cpython_enabled}" == "0" ]]; then |
791 | if [[ "${cpython_enabled}" == "0" ]]; then |
| 798 | die "USE_PYTHON variable does not enable any CPython ABI" |
792 | die "USE_PYTHON variable does not enable any CPython ABI" |
| 799 | fi |
793 | fi |
| 800 | else |
794 | else |
| 801 | local python_version python2_version= python3_version= support_python_major_version |
795 | local python_version python2_version python3_version support_python_major_version |
| 802 | |
796 | |
| 803 | if ! has_version "dev-lang/python"; then |
797 | if ! has_version "dev-lang/python"; then |
| 804 | die "${FUNCNAME}(): 'dev-lang/python' is not installed" |
798 | die "${FUNCNAME}(): 'dev-lang/python' is not installed" |
| 805 | fi |
799 | fi |
| 806 | |
800 | |
| … | |
… | |
| 811 | die "'${EPREFIX}/usr/bin/python2' is not valid symlink" |
805 | die "'${EPREFIX}/usr/bin/python2' is not valid symlink" |
| 812 | fi |
806 | fi |
| 813 | |
807 | |
| 814 | python2_version="$("${EPREFIX}/usr/bin/python2" -c 'from sys import version_info; print(".".join(str(x) for x in version_info[:2]))')" |
808 | python2_version="$("${EPREFIX}/usr/bin/python2" -c 'from sys import version_info; print(".".join(str(x) for x in version_info[:2]))')" |
| 815 | |
809 | |
|
|
810 | support_python_major_version="0" |
| 816 | for PYTHON_ABI in "${_CPYTHON2_SUPPORTED_ABIS[@]}"; do |
811 | for PYTHON_ABI in "${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]}"; do |
|
|
812 | if ! _python_check_python_abi_matching --patterns-list "${PYTHON_ABI}" "${RESTRICT_PYTHON_ABIS}"; then |
| 817 | support_python_major_version="1" |
813 | support_python_major_version="1" |
| 818 | while read restricted_ABI; do |
814 | break |
| 819 | if [[ "${PYTHON_ABI}" == ${restricted_ABI} ]]; then |
|
|
| 820 | support_python_major_version="0" |
|
|
| 821 | fi |
815 | fi |
| 822 | done <<< "${restricted_ABIs}" |
|
|
| 823 | [[ "${support_python_major_version}" == "1" ]] && break |
|
|
| 824 | done |
816 | done |
| 825 | if [[ "${support_python_major_version}" == "1" ]]; then |
817 | if [[ "${support_python_major_version}" == "1" ]]; then |
| 826 | while read restricted_ABI; do |
818 | if _python_check_python_abi_matching --patterns-list "${python2_version}" "${RESTRICT_PYTHON_ABIS}"; then |
| 827 | if [[ "${python2_version}" == ${restricted_ABI} ]]; then |
|
|
| 828 | die "Active version of Python 2 is not supported by ${CATEGORY}/${PF}" |
819 | die "Active version of CPython 2 is not supported by ${CATEGORY}/${PF}" |
| 829 | fi |
820 | fi |
| 830 | done <<< "${restricted_ABIs}" |
|
|
| 831 | else |
821 | else |
| 832 | python2_version="" |
822 | python2_version="" |
| 833 | fi |
823 | fi |
| 834 | fi |
824 | fi |
| 835 | |
825 | |
| … | |
… | |
| 838 | die "'${EPREFIX}/usr/bin/python3' is not valid symlink" |
828 | die "'${EPREFIX}/usr/bin/python3' is not valid symlink" |
| 839 | fi |
829 | fi |
| 840 | |
830 | |
| 841 | python3_version="$("${EPREFIX}/usr/bin/python3" -c 'from sys import version_info; print(".".join(str(x) for x in version_info[:2]))')" |
831 | python3_version="$("${EPREFIX}/usr/bin/python3" -c 'from sys import version_info; print(".".join(str(x) for x in version_info[:2]))')" |
| 842 | |
832 | |
|
|
833 | support_python_major_version="0" |
| 843 | for PYTHON_ABI in "${_CPYTHON3_SUPPORTED_ABIS[@]}"; do |
834 | for PYTHON_ABI in "${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]}"; do |
|
|
835 | if ! _python_check_python_abi_matching --patterns-list "${PYTHON_ABI}" "${RESTRICT_PYTHON_ABIS}"; then |
| 844 | support_python_major_version="1" |
836 | support_python_major_version="1" |
| 845 | while read restricted_ABI; do |
837 | break |
| 846 | if [[ "${PYTHON_ABI}" == ${restricted_ABI} ]]; then |
|
|
| 847 | support_python_major_version="0" |
|
|
| 848 | fi |
838 | fi |
| 849 | done <<< "${restricted_ABIs}" |
|
|
| 850 | [[ "${support_python_major_version}" == "1" ]] && break |
|
|
| 851 | done |
839 | done |
| 852 | if [[ "${support_python_major_version}" == "1" ]]; then |
840 | if [[ "${support_python_major_version}" == "1" ]]; then |
| 853 | while read restricted_ABI; do |
841 | if _python_check_python_abi_matching --patterns-list "${python3_version}" "${RESTRICT_PYTHON_ABIS}"; then |
| 854 | if [[ "${python3_version}" == ${restricted_ABI} ]]; then |
|
|
| 855 | die "Active version of Python 3 is not supported by ${CATEGORY}/${PF}" |
842 | die "Active version of CPython 3 is not supported by ${CATEGORY}/${PF}" |
| 856 | fi |
843 | fi |
| 857 | done <<< "${restricted_ABIs}" |
|
|
| 858 | else |
844 | else |
| 859 | python3_version="" |
845 | python3_version="" |
| 860 | fi |
846 | fi |
|
|
847 | fi |
|
|
848 | |
|
|
849 | if [[ -z "${python2_version}" && -z "${python3_version}" ]]; then |
|
|
850 | eerror "${CATEGORY}/${PF} requires at least one of the following packages:" |
|
|
851 | for PYTHON_ABI in "${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]}" "${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]}"; do |
|
|
852 | if ! _python_check_python_abi_matching --patterns-list "${PYTHON_ABI}" "${RESTRICT_PYTHON_ABIS}"; then |
|
|
853 | eerror " dev-lang/python:${PYTHON_ABI}" |
|
|
854 | fi |
|
|
855 | done |
|
|
856 | die "No supported version of CPython installed" |
| 861 | fi |
857 | fi |
| 862 | |
858 | |
| 863 | if [[ -n "${python2_version}" && "${python_version}" == "2."* && "${python_version}" != "${python2_version}" ]]; then |
859 | if [[ -n "${python2_version}" && "${python_version}" == "2."* && "${python_version}" != "${python2_version}" ]]; then |
| 864 | eerror "Python wrapper is configured incorrectly or '${EPREFIX}/usr/bin/python2' symlink" |
860 | eerror "Python wrapper is configured incorrectly or '${EPREFIX}/usr/bin/python2' symlink" |
| 865 | eerror "is set incorrectly. Use \`eselect python\` to fix configuration." |
861 | eerror "is set incorrectly. Use \`eselect python\` to fix configuration." |
| … | |
… | |
| 887 | eval "_PYTHON_SAVED_${variable}=\"\${!variable}\"" |
883 | eval "_PYTHON_SAVED_${variable}=\"\${!variable}\"" |
| 888 | for prefix in PYTHON_USER_ PYTHON_; do |
884 | for prefix in PYTHON_USER_ PYTHON_; do |
| 889 | if [[ "$(declare -p ${prefix}${variable} 2> /dev/null)" == "declare -a ${prefix}${variable}="* ]]; then |
885 | if [[ "$(declare -p ${prefix}${variable} 2> /dev/null)" == "declare -a ${prefix}${variable}="* ]]; then |
| 890 | eval "array=(\"\${${prefix}${variable}[@]}\")" |
886 | eval "array=(\"\${${prefix}${variable}[@]}\")" |
| 891 | for element in "${array[@]}"; do |
887 | for element in "${array[@]}"; do |
| 892 | if [[ "${element}" =~ ^([[:alnum:]]|\.|-|\*|\[|\])+\ (\+|-)\ .+ ]]; then |
888 | if [[ "${element}" =~ ^${_PYTHON_ABI_PATTERN_REGEX}\ (\+|-)\ .+ ]]; then |
| 893 | pattern="${element%% *}" |
889 | pattern="${element%% *}" |
| 894 | element="${element#* }" |
890 | element="${element#* }" |
| 895 | operator="${element%% *}" |
891 | operator="${element%% *}" |
| 896 | flags="${element#* }" |
892 | flags="${element#* }" |
| 897 | if [[ "${PYTHON_ABI}" == ${pattern} ]]; then |
893 | if _python_check_python_abi_matching "${PYTHON_ABI}" "${pattern}"; then |
| 898 | if [[ "${operator}" == "+" ]]; then |
894 | if [[ "${operator}" == "+" ]]; then |
| 899 | eval "export ${variable}+=\"\${variable:+ }${flags}\"" |
895 | eval "export ${variable}+=\"\${variable:+ }${flags}\"" |
| 900 | elif [[ "${operator}" == "-" ]]; then |
896 | elif [[ "${operator}" == "-" ]]; then |
| 901 | flags="${flags// /$'\n'}" |
897 | flags="${flags// /$'\n'}" |
| 902 | old_value="${!variable// /$'\n'}" |
898 | old_value="${!variable// /$'\n'}" |
| … | |
… | |
| 936 | # @USAGE: [--action-message message] [-d|--default-function] [--failure-message message] [-f|--final-ABI] [--nonfatal] [-q|--quiet] [-s|--separate-build-dirs] [--source-dir source_directory] [--] <function> [arguments] |
932 | # @USAGE: [--action-message message] [-d|--default-function] [--failure-message message] [-f|--final-ABI] [--nonfatal] [-q|--quiet] [-s|--separate-build-dirs] [--source-dir source_directory] [--] <function> [arguments] |
| 937 | # @DESCRIPTION: |
933 | # @DESCRIPTION: |
| 938 | # Execute specified function for each value of PYTHON_ABIS, optionally passing additional |
934 | # Execute specified function for each value of PYTHON_ABIS, optionally passing additional |
| 939 | # arguments. The specified function can use PYTHON_ABI and BUILDDIR variables. |
935 | # arguments. The specified function can use PYTHON_ABI and BUILDDIR variables. |
| 940 | python_execute_function() { |
936 | python_execute_function() { |
| 941 | _python_check_python_pkg_setup_execution |
|
|
| 942 | |
|
|
| 943 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
937 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
| 944 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
938 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
| 945 | fi |
939 | fi |
| 946 | |
940 | |
|
|
941 | _python_check_python_pkg_setup_execution |
| 947 | _python_set_color_variables |
942 | _python_set_color_variables |
| 948 | |
943 | |
| 949 | local action action_message action_message_template= default_function="0" failure_message failure_message_template= final_ABI="0" function iterated_PYTHON_ABIS nonfatal="0" previous_directory previous_directory_stack previous_directory_stack_length PYTHON_ABI quiet="0" return_code separate_build_dirs="0" source_dir= |
944 | local action action_message action_message_template default_function="0" failure_message failure_message_template final_ABI="0" function iterated_PYTHON_ABIS nonfatal="0" previous_directory previous_directory_stack previous_directory_stack_length PYTHON_ABI quiet="0" return_code separate_build_dirs="0" source_dir |
| 950 | |
945 | |
| 951 | while (($#)); do |
946 | while (($#)); do |
| 952 | case "$1" in |
947 | case "$1" in |
| 953 | --action-message) |
948 | --action-message) |
| 954 | action_message_template="$2" |
949 | action_message_template="$2" |
| … | |
… | |
| 1024 | python_default_function() { |
1019 | python_default_function() { |
| 1025 | emake "$@" |
1020 | emake "$@" |
| 1026 | } |
1021 | } |
| 1027 | elif [[ "${EBUILD_PHASE}" == "test" ]]; then |
1022 | elif [[ "${EBUILD_PHASE}" == "test" ]]; then |
| 1028 | python_default_function() { |
1023 | python_default_function() { |
|
|
1024 | # Stolen from portage's _eapi0_src_test() |
|
|
1025 | local emake_cmd="${MAKE:-make} ${MAKEOPTS} ${EXTRA_EMAKE}" |
| 1029 | if emake -j1 -n check &> /dev/null; then |
1026 | if ${emake_cmd} -j1 -n check &> /dev/null; then |
| 1030 | emake -j1 check "$@" |
1027 | ${emake_cmd} -j1 check "$@" |
| 1031 | elif emake -j1 -n test &> /dev/null; then |
1028 | elif ${emake_cmd} -j1 -n test &> /dev/null; then |
| 1032 | emake -j1 test "$@" |
1029 | ${emake_cmd} -j1 test "$@" |
| 1033 | fi |
1030 | fi |
| 1034 | } |
1031 | } |
| 1035 | elif [[ "${EBUILD_PHASE}" == "install" ]]; then |
1032 | elif [[ "${EBUILD_PHASE}" == "install" ]]; then |
| 1036 | python_default_function() { |
1033 | python_default_function() { |
| 1037 | emake DESTDIR="${D}" install "$@" |
1034 | emake DESTDIR="${D}" install "$@" |
| … | |
… | |
| 1066 | iterated_PYTHON_ABIS="$(PYTHON -f --ABI)" |
1063 | iterated_PYTHON_ABIS="$(PYTHON -f --ABI)" |
| 1067 | else |
1064 | else |
| 1068 | iterated_PYTHON_ABIS="${PYTHON_ABIS}" |
1065 | iterated_PYTHON_ABIS="${PYTHON_ABIS}" |
| 1069 | fi |
1066 | fi |
| 1070 | for PYTHON_ABI in ${iterated_PYTHON_ABIS}; do |
1067 | for PYTHON_ABI in ${iterated_PYTHON_ABIS}; do |
|
|
1068 | if [[ "${EBUILD_PHASE}" == "test" ]] && _python_check_python_abi_matching --patterns-list "${PYTHON_ABI}" "${PYTHON_TESTS_RESTRICTED_ABIS}"; then |
|
|
1069 | if [[ "${quiet}" == "0" ]]; then |
|
|
1070 | echo " ${_GREEN}*${_NORMAL} ${_BLUE}Testing of ${CATEGORY}/${PF} with $(python_get_implementation_and_version) skipped${_NORMAL}" |
|
|
1071 | fi |
|
|
1072 | continue |
|
|
1073 | fi |
|
|
1074 | |
| 1071 | _python_prepare_flags |
1075 | _python_prepare_flags |
| 1072 | |
1076 | |
| 1073 | if [[ "${quiet}" == "0" ]]; then |
1077 | if [[ "${quiet}" == "0" ]]; then |
| 1074 | if [[ -n "${action_message_template}" ]]; then |
1078 | if [[ -n "${action_message_template}" ]]; then |
| 1075 | eval "action_message=\"${action_message_template}\"" |
1079 | eval "action_message=\"${action_message_template}\"" |
| 1076 | else |
1080 | else |
| 1077 | action_message="${action} of ${CATEGORY}/${PF} with $(python_get_implementation) $(python_get_version)..." |
1081 | action_message="${action} of ${CATEGORY}/${PF} with $(python_get_implementation_and_version)..." |
| 1078 | fi |
1082 | fi |
| 1079 | echo " ${_GREEN}*${_NORMAL} ${_BLUE}${action_message}${_NORMAL}" |
1083 | echo " ${_GREEN}*${_NORMAL} ${_BLUE}${action_message}${_NORMAL}" |
| 1080 | fi |
1084 | fi |
| 1081 | |
1085 | |
| 1082 | if [[ "${separate_build_dirs}" == "1" ]]; then |
1086 | if [[ "${separate_build_dirs}" == "1" ]]; then |
| … | |
… | |
| 1106 | |
1110 | |
| 1107 | if [[ "${return_code}" -ne 0 ]]; then |
1111 | if [[ "${return_code}" -ne 0 ]]; then |
| 1108 | if [[ -n "${failure_message_template}" ]]; then |
1112 | if [[ -n "${failure_message_template}" ]]; then |
| 1109 | eval "failure_message=\"${failure_message_template}\"" |
1113 | eval "failure_message=\"${failure_message_template}\"" |
| 1110 | else |
1114 | else |
| 1111 | failure_message="${action} failed with $(python_get_implementation) $(python_get_version) in ${function}() function" |
1115 | failure_message="${action} failed with $(python_get_implementation_and_version) in ${function}() function" |
| 1112 | fi |
1116 | fi |
| 1113 | |
1117 | |
| 1114 | if [[ "${nonfatal}" == "1" ]]; then |
1118 | if [[ "${nonfatal}" == "1" ]]; then |
| 1115 | if [[ "${quiet}" == "0" ]]; then |
1119 | if [[ "${quiet}" == "0" ]]; then |
| 1116 | ewarn "${failure_message}" |
1120 | ewarn "${failure_message}" |
| … | |
… | |
| 1169 | # @FUNCTION: python_copy_sources |
1173 | # @FUNCTION: python_copy_sources |
| 1170 | # @USAGE: <directory="${S}"> [directory] |
1174 | # @USAGE: <directory="${S}"> [directory] |
| 1171 | # @DESCRIPTION: |
1175 | # @DESCRIPTION: |
| 1172 | # Copy unpacked sources of current package to separate build directory for each Python ABI. |
1176 | # Copy unpacked sources of current package to separate build directory for each Python ABI. |
| 1173 | python_copy_sources() { |
1177 | python_copy_sources() { |
| 1174 | _python_check_python_pkg_setup_execution |
|
|
| 1175 | |
|
|
| 1176 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
1178 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
| 1177 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
1179 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
| 1178 | fi |
1180 | fi |
|
|
1181 | |
|
|
1182 | _python_check_python_pkg_setup_execution |
| 1179 | |
1183 | |
| 1180 | local dir dirs=() PYTHON_ABI |
1184 | local dir dirs=() PYTHON_ABI |
| 1181 | |
1185 | |
| 1182 | if [[ "$#" -eq 0 ]]; then |
1186 | if [[ "$#" -eq 0 ]]; then |
| 1183 | if [[ "${WORKDIR}" == "${S}" ]]; then |
1187 | if [[ "${WORKDIR}" == "${S}" ]]; then |
| … | |
… | |
| 1200 | # @USAGE: [-E|--respect-EPYTHON] [-f|--force] [-q|--quiet] [--] <file> [files] |
1204 | # @USAGE: [-E|--respect-EPYTHON] [-f|--force] [-q|--quiet] [--] <file> [files] |
| 1201 | # @DESCRIPTION: |
1205 | # @DESCRIPTION: |
| 1202 | # Generate wrapper scripts. Existing files are overwritten only with --force option. |
1206 | # Generate wrapper scripts. Existing files are overwritten only with --force option. |
| 1203 | # If --respect-EPYTHON option is specified, then generated wrapper scripts will |
1207 | # If --respect-EPYTHON option is specified, then generated wrapper scripts will |
| 1204 | # respect EPYTHON variable at run time. |
1208 | # respect EPYTHON variable at run time. |
|
|
1209 | # |
|
|
1210 | # This function can be used only in src_install() phase. |
| 1205 | python_generate_wrapper_scripts() { |
1211 | python_generate_wrapper_scripts() { |
| 1206 | _python_check_python_pkg_setup_execution |
1212 | if [[ "${EBUILD_PHASE}" != "install" ]]; then |
|
|
1213 | die "${FUNCNAME}() can be used only in src_install() phase" |
|
|
1214 | fi |
| 1207 | |
1215 | |
| 1208 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
1216 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
| 1209 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
1217 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
| 1210 | fi |
1218 | fi |
| 1211 | |
1219 | |
|
|
1220 | _python_check_python_pkg_setup_execution |
| 1212 | _python_initialize_prefix_variables |
1221 | _python_initialize_prefix_variables |
| 1213 | |
1222 | |
| 1214 | local eselect_python_option file force="0" quiet="0" PYTHON_ABI python2_enabled="0" python3_enabled="0" respect_EPYTHON="0" |
1223 | local eselect_python_option file force="0" quiet="0" PYTHON_ABI PYTHON_ABIS_list python2_enabled="0" python3_enabled="0" respect_EPYTHON="0" |
| 1215 | |
1224 | |
| 1216 | while (($#)); do |
1225 | while (($#)); do |
| 1217 | case "$1" in |
1226 | case "$1" in |
| 1218 | -E|--respect-EPYTHON) |
1227 | -E|--respect-EPYTHON) |
| 1219 | respect_EPYTHON="1" |
1228 | respect_EPYTHON="1" |
| … | |
… | |
| 1241 | if [[ "$#" -eq 0 ]]; then |
1250 | if [[ "$#" -eq 0 ]]; then |
| 1242 | die "${FUNCNAME}(): Missing arguments" |
1251 | die "${FUNCNAME}(): Missing arguments" |
| 1243 | fi |
1252 | fi |
| 1244 | |
1253 | |
| 1245 | _python_calculate_PYTHON_ABIS |
1254 | _python_calculate_PYTHON_ABIS |
| 1246 | for PYTHON_ABI in "${_CPYTHON2_SUPPORTED_ABIS[@]}"; do |
1255 | for PYTHON_ABI in "${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]}"; do |
| 1247 | if has "${PYTHON_ABI}" ${PYTHON_ABIS}; then |
1256 | if has "${PYTHON_ABI}" ${PYTHON_ABIS}; then |
| 1248 | python2_enabled="1" |
1257 | python2_enabled="1" |
| 1249 | fi |
1258 | fi |
| 1250 | done |
1259 | done |
| 1251 | for PYTHON_ABI in "${_CPYTHON3_SUPPORTED_ABIS[@]}"; do |
1260 | for PYTHON_ABI in "${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]}"; do |
| 1252 | if has "${PYTHON_ABI}" ${PYTHON_ABIS}; then |
1261 | if has "${PYTHON_ABI}" ${PYTHON_ABIS}; then |
| 1253 | python3_enabled="1" |
1262 | python3_enabled="1" |
| 1254 | fi |
1263 | fi |
| 1255 | done |
1264 | done |
| 1256 | |
1265 | |
| … | |
… | |
| 1262 | eselect_python_option="--python3" |
1271 | eselect_python_option="--python3" |
| 1263 | else |
1272 | else |
| 1264 | die "${FUNCNAME}(): Unsupported environment" |
1273 | die "${FUNCNAME}(): Unsupported environment" |
| 1265 | fi |
1274 | fi |
| 1266 | |
1275 | |
|
|
1276 | PYTHON_ABIS_list="$("$(PYTHON -f)" -c "print(', '.join('\"%s\"' % x for x in reversed('${PYTHON_ABIS}'.split())))")" |
|
|
1277 | |
| 1267 | for file in "$@"; do |
1278 | for file in "$@"; do |
| 1268 | if [[ -f "${file}" && "${force}" == "0" ]]; then |
1279 | if [[ -f "${file}" && "${force}" == "0" ]]; then |
| 1269 | die "${FUNCNAME}(): '$1' already exists" |
1280 | die "${FUNCNAME}(): '${file}' already exists" |
| 1270 | fi |
1281 | fi |
| 1271 | |
1282 | |
| 1272 | if [[ "${quiet}" == "0" ]]; then |
1283 | if [[ "${quiet}" == "0" ]]; then |
| 1273 | einfo "Generating '${file#${ED%/}}' wrapper script" |
1284 | einfo "Generating '${file#${ED%/}}' wrapper script" |
| 1274 | fi |
1285 | fi |
| … | |
… | |
| 1280 | import os |
1291 | import os |
| 1281 | import re |
1292 | import re |
| 1282 | import subprocess |
1293 | import subprocess |
| 1283 | import sys |
1294 | import sys |
| 1284 | |
1295 | |
|
|
1296 | cpython_ABI_re = re.compile(r"^(\d+\.\d+)$") |
|
|
1297 | jython_ABI_re = re.compile(r"^(\d+\.\d+)-jython$") |
|
|
1298 | pypy_ABI_re = re.compile(r"^\d+\.\d+-pypy-(\d+\.\d+)$") |
| 1285 | EPYTHON_re = re.compile(r"^python(\d+\.\d+)$") |
1299 | cpython_interpreter_re = re.compile(r"^python(\d+\.\d+)$") |
|
|
1300 | jython_interpreter_re = re.compile(r"^jython(\d+\.\d+)$") |
|
|
1301 | pypy_interpreter_re = re.compile(r"^pypy-c(\d+\.\d+)$") |
| 1286 | python_shebang_re = re.compile(r"^#! *(${EPREFIX}/usr/bin/python|(${EPREFIX})?/usr/bin/env +(${EPREFIX}/usr/bin/)?python)") |
1302 | cpython_shebang_re = re.compile(r"^#![ \t]*(?:${EPREFIX}/usr/bin/python|(?:${EPREFIX})?/usr/bin/env[ \t]+(?:${EPREFIX}/usr/bin/)?python)") |
|
|
1303 | python_shebang_options_re = re.compile(r"^#![ \t]*${EPREFIX}/usr/bin/(?:jython|pypy-c|python)(?:\d+(?:\.\d+)?)?[ \t]+(-\S)") |
| 1287 | python_verification_output_re = re.compile("^GENTOO_PYTHON_TARGET_SCRIPT_PATH supported\n$") |
1304 | python_verification_output_re = re.compile("^GENTOO_PYTHON_TARGET_SCRIPT_PATH supported\n$") |
|
|
1305 | |
|
|
1306 | pypy_versions_mapping = { |
|
|
1307 | "1.5": "2.7" |
|
|
1308 | } |
|
|
1309 | |
|
|
1310 | def get_PYTHON_ABI(python_interpreter): |
|
|
1311 | cpython_matched = cpython_interpreter_re.match(python_interpreter) |
|
|
1312 | jython_matched = jython_interpreter_re.match(python_interpreter) |
|
|
1313 | pypy_matched = pypy_interpreter_re.match(python_interpreter) |
|
|
1314 | if cpython_matched is not None: |
|
|
1315 | PYTHON_ABI = cpython_matched.group(1) |
|
|
1316 | elif jython_matched is not None: |
|
|
1317 | PYTHON_ABI = jython_matched.group(1) + "-jython" |
|
|
1318 | elif pypy_matched is not None: |
|
|
1319 | PYTHON_ABI = pypy_versions_mapping[pypy_matched.group(1)] + "-pypy-" + pypy_matched.group(1) |
|
|
1320 | else: |
|
|
1321 | PYTHON_ABI = None |
|
|
1322 | return PYTHON_ABI |
|
|
1323 | |
|
|
1324 | def get_python_interpreter(PYTHON_ABI): |
|
|
1325 | cpython_matched = cpython_ABI_re.match(PYTHON_ABI) |
|
|
1326 | jython_matched = jython_ABI_re.match(PYTHON_ABI) |
|
|
1327 | pypy_matched = pypy_ABI_re.match(PYTHON_ABI) |
|
|
1328 | if cpython_matched is not None: |
|
|
1329 | python_interpreter = "python" + cpython_matched.group(1) |
|
|
1330 | elif jython_matched is not None: |
|
|
1331 | python_interpreter = "jython" + jython_matched.group(1) |
|
|
1332 | elif pypy_matched is not None: |
|
|
1333 | python_interpreter = "pypy-c" + pypy_matched.group(1) |
|
|
1334 | else: |
|
|
1335 | python_interpreter = None |
|
|
1336 | return python_interpreter |
| 1288 | |
1337 | |
| 1289 | EOF |
1338 | EOF |
| 1290 | if [[ "$?" != "0" ]]; then |
1339 | if [[ "$?" != "0" ]]; then |
| 1291 | die "${FUNCNAME}(): Generation of '$1' failed" |
1340 | die "${FUNCNAME}(): Generation of '$1' failed" |
| 1292 | fi |
1341 | fi |
| 1293 | if [[ "${respect_EPYTHON}" == "1" ]]; then |
1342 | if [[ "${respect_EPYTHON}" == "1" ]]; then |
| 1294 | cat << EOF >> "${file}" |
1343 | cat << EOF >> "${file}" |
| 1295 | EPYTHON = os.environ.get("EPYTHON") |
1344 | python_interpreter = os.environ.get("EPYTHON") |
| 1296 | if EPYTHON: |
1345 | if python_interpreter: |
| 1297 | EPYTHON_matched = EPYTHON_re.match(EPYTHON) |
1346 | PYTHON_ABI = get_PYTHON_ABI(python_interpreter) |
| 1298 | if EPYTHON_matched: |
1347 | if PYTHON_ABI is None: |
| 1299 | PYTHON_ABI = EPYTHON_matched.group(1) |
|
|
| 1300 | else: |
|
|
| 1301 | sys.stderr.write("EPYTHON variable has unrecognized value '%s'\n" % EPYTHON) |
1348 | sys.stderr.write("%s: EPYTHON variable has unrecognized value '%s'\n" % (sys.argv[0], python_interpreter)) |
| 1302 | sys.exit(1) |
1349 | sys.exit(1) |
| 1303 | else: |
1350 | else: |
| 1304 | try: |
1351 | try: |
|
|
1352 | environment = os.environ.copy() |
|
|
1353 | environment["ROOT"] = "/" |
| 1305 | eselect_process = subprocess.Popen(["${EPREFIX}/usr/bin/eselect", "python", "show"${eselect_python_option:+, $(echo "\"")}${eselect_python_option}${eselect_python_option:+$(echo "\"")}], stdout=subprocess.PIPE) |
1354 | eselect_process = subprocess.Popen(["${EPREFIX}/usr/bin/eselect", "python", "show"${eselect_python_option:+, $(echo "\"")}${eselect_python_option}${eselect_python_option:+$(echo "\"")}], env=environment, stdout=subprocess.PIPE) |
| 1306 | if eselect_process.wait() != 0: |
1355 | if eselect_process.wait() != 0: |
| 1307 | raise ValueError |
1356 | raise ValueError |
| 1308 | except (OSError, ValueError): |
1357 | except (OSError, ValueError): |
| 1309 | sys.stderr.write("Execution of 'eselect python show${eselect_python_option:+ }${eselect_python_option}' failed\n") |
1358 | sys.stderr.write("%s: Execution of 'eselect python show${eselect_python_option:+ }${eselect_python_option}' failed\n" % sys.argv[0]) |
| 1310 | sys.exit(1) |
1359 | sys.exit(1) |
| 1311 | |
1360 | |
| 1312 | EPYTHON = eselect_process.stdout.read() |
1361 | python_interpreter = eselect_process.stdout.read() |
| 1313 | if not isinstance(EPYTHON, str): |
1362 | if not isinstance(python_interpreter, str): |
| 1314 | # Python 3 |
1363 | # Python 3 |
| 1315 | EPYTHON = EPYTHON.decode() |
1364 | python_interpreter = python_interpreter.decode() |
| 1316 | EPYTHON = EPYTHON.rstrip("\n") |
1365 | python_interpreter = python_interpreter.rstrip("\n") |
| 1317 | |
1366 | |
| 1318 | EPYTHON_matched = EPYTHON_re.match(EPYTHON) |
1367 | PYTHON_ABI = get_PYTHON_ABI(python_interpreter) |
| 1319 | if EPYTHON_matched: |
1368 | if PYTHON_ABI is None: |
| 1320 | PYTHON_ABI = EPYTHON_matched.group(1) |
|
|
| 1321 | else: |
|
|
| 1322 | sys.stderr.write("'eselect python show${eselect_python_option:+ }${eselect_python_option}' printed unrecognized value '%s'\n" % EPYTHON) |
1369 | sys.stderr.write("%s: 'eselect python show${eselect_python_option:+ }${eselect_python_option}' printed unrecognized value '%s'\n" % (sys.argv[0], python_interpreter)) |
| 1323 | sys.exit(1) |
1370 | sys.exit(1) |
| 1324 | EOF |
|
|
| 1325 | if [[ "$?" != "0" ]]; then |
|
|
| 1326 | die "${FUNCNAME}(): Generation of '$1' failed" |
|
|
| 1327 | fi |
|
|
| 1328 | else |
|
|
| 1329 | cat << EOF >> "${file}" |
|
|
| 1330 | try: |
|
|
| 1331 | eselect_process = subprocess.Popen(["${EPREFIX}/usr/bin/eselect", "python", "show"${eselect_python_option:+, $(echo "\"")}${eselect_python_option}${eselect_python_option:+$(echo "\"")}], stdout=subprocess.PIPE) |
|
|
| 1332 | if eselect_process.wait() != 0: |
|
|
| 1333 | raise ValueError |
|
|
| 1334 | except (OSError, ValueError): |
|
|
| 1335 | sys.stderr.write("Execution of 'eselect python show${eselect_python_option:+ }${eselect_python_option}' failed\n") |
|
|
| 1336 | sys.exit(1) |
|
|
| 1337 | |
1371 | |
| 1338 | EPYTHON = eselect_process.stdout.read() |
1372 | wrapper_script_path = os.path.realpath(sys.argv[0]) |
| 1339 | if not isinstance(EPYTHON, str): |
1373 | target_executable_path = "%s-%s" % (wrapper_script_path, PYTHON_ABI) |
| 1340 | # Python 3 |
1374 | if not os.path.exists(target_executable_path): |
| 1341 | EPYTHON = EPYTHON.decode() |
1375 | sys.stderr.write("%s: '%s' does not exist\n" % (sys.argv[0], target_executable_path)) |
| 1342 | EPYTHON = EPYTHON.rstrip("\n") |
|
|
| 1343 | |
|
|
| 1344 | EPYTHON_matched = EPYTHON_re.match(EPYTHON) |
|
|
| 1345 | if EPYTHON_matched: |
|
|
| 1346 | PYTHON_ABI = EPYTHON_matched.group(1) |
|
|
| 1347 | else: |
|
|
| 1348 | sys.stderr.write("'eselect python show${eselect_python_option:+ }${eselect_python_option}' printed unrecognized value '%s'\n" % EPYTHON) |
|
|
| 1349 | sys.exit(1) |
1376 | sys.exit(1) |
| 1350 | EOF |
1377 | EOF |
| 1351 | if [[ "$?" != "0" ]]; then |
1378 | if [[ "$?" != "0" ]]; then |
| 1352 | die "${FUNCNAME}(): Generation of '$1' failed" |
1379 | die "${FUNCNAME}(): Generation of '$1' failed" |
| 1353 | fi |
1380 | fi |
|
|
1381 | else |
|
|
1382 | cat << EOF >> "${file}" |
|
|
1383 | try: |
|
|
1384 | environment = os.environ.copy() |
|
|
1385 | environment["ROOT"] = "/" |
|
|
1386 | eselect_process = subprocess.Popen(["${EPREFIX}/usr/bin/eselect", "python", "show"${eselect_python_option:+, $(echo "\"")}${eselect_python_option}${eselect_python_option:+$(echo "\"")}], env=environment, stdout=subprocess.PIPE) |
|
|
1387 | if eselect_process.wait() != 0: |
|
|
1388 | raise ValueError |
|
|
1389 | except (OSError, ValueError): |
|
|
1390 | sys.stderr.write("%s: Execution of 'eselect python show${eselect_python_option:+ }${eselect_python_option}' failed\n" % sys.argv[0]) |
|
|
1391 | sys.exit(1) |
|
|
1392 | |
|
|
1393 | python_interpreter = eselect_process.stdout.read() |
|
|
1394 | if not isinstance(python_interpreter, str): |
|
|
1395 | # Python 3 |
|
|
1396 | python_interpreter = python_interpreter.decode() |
|
|
1397 | python_interpreter = python_interpreter.rstrip("\n") |
|
|
1398 | |
|
|
1399 | PYTHON_ABI = get_PYTHON_ABI(python_interpreter) |
|
|
1400 | if PYTHON_ABI is None: |
|
|
1401 | sys.stderr.write("%s: 'eselect python show${eselect_python_option:+ }${eselect_python_option}' printed unrecognized value '%s'\n" % (sys.argv[0], python_interpreter)) |
|
|
1402 | sys.exit(1) |
|
|
1403 | |
|
|
1404 | wrapper_script_path = os.path.realpath(sys.argv[0]) |
|
|
1405 | for PYTHON_ABI in [PYTHON_ABI, ${PYTHON_ABIS_list}]: |
|
|
1406 | target_executable_path = "%s-%s" % (wrapper_script_path, PYTHON_ABI) |
|
|
1407 | if os.path.exists(target_executable_path): |
|
|
1408 | break |
|
|
1409 | else: |
|
|
1410 | sys.stderr.write("%s: No target script exists for '%s'\n" % (sys.argv[0], wrapper_script_path)) |
|
|
1411 | sys.exit(1) |
|
|
1412 | |
|
|
1413 | python_interpreter = get_python_interpreter(PYTHON_ABI) |
|
|
1414 | if python_interpreter is None: |
|
|
1415 | sys.stderr.write("%s: Unrecognized Python ABI '%s'\n" % (sys.argv[0], PYTHON_ABI)) |
|
|
1416 | sys.exit(1) |
|
|
1417 | EOF |
|
|
1418 | if [[ "$?" != "0" ]]; then |
|
|
1419 | die "${FUNCNAME}(): Generation of '$1' failed" |
|
|
1420 | fi |
| 1354 | fi |
1421 | fi |
| 1355 | cat << EOF >> "${file}" |
1422 | cat << EOF >> "${file}" |
| 1356 | |
|
|
| 1357 | wrapper_script_path = os.path.realpath(sys.argv[0]) |
|
|
| 1358 | target_executable_path = "%s-%s" % (wrapper_script_path, PYTHON_ABI) |
|
|
| 1359 | os.environ["GENTOO_PYTHON_PROCESS_NAME"] = os.path.basename(sys.argv[0]) |
|
|
| 1360 | os.environ["GENTOO_PYTHON_WRAPPER_SCRIPT_PATH"] = sys.argv[0] |
|
|
| 1361 | os.environ["GENTOO_PYTHON_TARGET_SCRIPT_PATH"] = target_executable_path |
|
|
| 1362 | if not os.path.exists(target_executable_path): |
|
|
| 1363 | sys.stderr.write("'%s' does not exist\n" % target_executable_path) |
|
|
| 1364 | sys.exit(1) |
|
|
| 1365 | |
1423 | |
| 1366 | target_executable = open(target_executable_path, "rb") |
1424 | target_executable = open(target_executable_path, "rb") |
| 1367 | target_executable_first_line = target_executable.readline() |
1425 | target_executable_first_line = target_executable.readline() |
|
|
1426 | target_executable.close() |
| 1368 | if not isinstance(target_executable_first_line, str): |
1427 | if not isinstance(target_executable_first_line, str): |
| 1369 | # Python 3 |
1428 | # Python 3 |
| 1370 | target_executable_first_line = target_executable_first_line.decode("utf_8", "replace") |
1429 | target_executable_first_line = target_executable_first_line.decode("utf_8", "replace") |
| 1371 | |
1430 | |
|
|
1431 | options = [] |
|
|
1432 | python_shebang_options_matched = python_shebang_options_re.match(target_executable_first_line) |
|
|
1433 | if python_shebang_options_matched is not None: |
|
|
1434 | options = [python_shebang_options_matched.group(1)] |
|
|
1435 | |
| 1372 | python_shebang_matched = python_shebang_re.match(target_executable_first_line) |
1436 | cpython_shebang_matched = cpython_shebang_re.match(target_executable_first_line) |
| 1373 | target_executable.close() |
|
|
| 1374 | |
1437 | |
| 1375 | if python_shebang_matched: |
1438 | if cpython_shebang_matched is not None: |
| 1376 | try: |
1439 | try: |
| 1377 | python_interpreter_path = "${EPREFIX}/usr/bin/%s" % EPYTHON |
1440 | python_interpreter_path = "${EPREFIX}/usr/bin/%s" % python_interpreter |
| 1378 | os.environ["GENTOO_PYTHON_TARGET_SCRIPT_PATH_VERIFICATION"] = "1" |
1441 | os.environ["GENTOO_PYTHON_TARGET_SCRIPT_PATH_VERIFICATION"] = "1" |
| 1379 | python_verification_process = subprocess.Popen([python_interpreter_path, "-c", "pass"], stdout=subprocess.PIPE) |
1442 | python_verification_process = subprocess.Popen([python_interpreter_path, "-c", "pass"], stdout=subprocess.PIPE) |
| 1380 | del os.environ["GENTOO_PYTHON_TARGET_SCRIPT_PATH_VERIFICATION"] |
1443 | del os.environ["GENTOO_PYTHON_TARGET_SCRIPT_PATH_VERIFICATION"] |
| 1381 | if python_verification_process.wait() != 0: |
1444 | if python_verification_process.wait() != 0: |
| 1382 | raise ValueError |
1445 | raise ValueError |
| … | |
… | |
| 1387 | python_verification_output = python_verification_output.decode() |
1450 | python_verification_output = python_verification_output.decode() |
| 1388 | |
1451 | |
| 1389 | if not python_verification_output_re.match(python_verification_output): |
1452 | if not python_verification_output_re.match(python_verification_output): |
| 1390 | raise ValueError |
1453 | raise ValueError |
| 1391 | |
1454 | |
|
|
1455 | if cpython_interpreter_re.match(python_interpreter) is not None: |
|
|
1456 | os.environ["GENTOO_PYTHON_PROCESS_NAME"] = os.path.basename(sys.argv[0]) |
|
|
1457 | os.environ["GENTOO_PYTHON_WRAPPER_SCRIPT_PATH"] = sys.argv[0] |
|
|
1458 | os.environ["GENTOO_PYTHON_TARGET_SCRIPT_PATH"] = target_executable_path |
|
|
1459 | |
|
|
1460 | if hasattr(os, "execv"): |
| 1392 | os.execv(python_interpreter_path, [python_interpreter_path] + sys.argv) |
1461 | os.execv(python_interpreter_path, [python_interpreter_path] + options + sys.argv) |
|
|
1462 | else: |
|
|
1463 | sys.exit(subprocess.Popen([python_interpreter_path] + options + sys.argv).wait()) |
|
|
1464 | except (KeyboardInterrupt, SystemExit): |
|
|
1465 | raise |
| 1393 | except: |
1466 | except: |
| 1394 | pass |
1467 | pass |
| 1395 | if "GENTOO_PYTHON_TARGET_SCRIPT_PATH_VERIFICATION" in os.environ: |
1468 | for variable in ("GENTOO_PYTHON_PROCESS_NAME", "GENTOO_PYTHON_WRAPPER_SCRIPT_PATH", "GENTOO_PYTHON_TARGET_SCRIPT_PATH", "GENTOO_PYTHON_TARGET_SCRIPT_PATH_VERIFICATION"): |
| 1396 | del os.environ["GENTOO_PYTHON_TARGET_SCRIPT_PATH_VERIFICATION"] |
1469 | if variable in os.environ: |
|
|
1470 | del os.environ[variable] |
| 1397 | |
1471 | |
|
|
1472 | if hasattr(os, "execv"): |
| 1398 | os.execv(target_executable_path, sys.argv) |
1473 | os.execv(target_executable_path, sys.argv) |
|
|
1474 | else: |
|
|
1475 | sys.exit(subprocess.Popen([target_executable_path] + sys.argv[1:]).wait()) |
| 1399 | EOF |
1476 | EOF |
| 1400 | if [[ "$?" != "0" ]]; then |
1477 | if [[ "$?" != "0" ]]; then |
| 1401 | die "${FUNCNAME}(): Generation of '$1' failed" |
1478 | die "${FUNCNAME}(): Generation of '$1' failed" |
| 1402 | fi |
1479 | fi |
| 1403 | fperms +x "${file#${ED%/}}" || die "fperms '${file}' failed" |
1480 | fperms +x "${file#${ED%/}}" || die "fperms '${file}' failed" |
| 1404 | done |
1481 | done |
| 1405 | } |
1482 | } |
| 1406 | |
1483 | |
|
|
1484 | # @ECLASS-VARIABLE: PYTHON_VERSIONED_SCRIPTS |
|
|
1485 | # @DESCRIPTION: |
|
|
1486 | # Array of regular expressions of paths to versioned Python scripts. |
|
|
1487 | # Python scripts in /usr/bin and /usr/sbin are versioned by default. |
|
|
1488 | |
|
|
1489 | # @ECLASS-VARIABLE: PYTHON_VERSIONED_EXECUTABLES |
|
|
1490 | # @DESCRIPTION: |
|
|
1491 | # Array of regular expressions of paths to versioned executables (including Python scripts). |
|
|
1492 | |
|
|
1493 | # @ECLASS-VARIABLE: PYTHON_NONVERSIONED_EXECUTABLES |
|
|
1494 | # @DESCRIPTION: |
|
|
1495 | # Array of regular expressions of paths to nonversioned executables (including Python scripts). |
|
|
1496 | |
|
|
1497 | # @FUNCTION: python_merge_intermediate_installation_images |
|
|
1498 | # @USAGE: [-q|--quiet] [--] <intermediate_installation_images_directory> |
|
|
1499 | # @DESCRIPTION: |
|
|
1500 | # Merge intermediate installation images into installation image. |
|
|
1501 | # |
|
|
1502 | # This function can be used only in src_install() phase. |
|
|
1503 | python_merge_intermediate_installation_images() { |
|
|
1504 | if [[ "${EBUILD_PHASE}" != "install" ]]; then |
|
|
1505 | die "${FUNCNAME}() can be used only in src_install() phase" |
|
|
1506 | fi |
|
|
1507 | |
|
|
1508 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
1509 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
|
|
1510 | fi |
|
|
1511 | |
|
|
1512 | _python_check_python_pkg_setup_execution |
|
|
1513 | _python_initialize_prefix_variables |
|
|
1514 | |
|
|
1515 | local absolute_file b file files=() intermediate_installation_images_directory PYTHON_ABI quiet="0" regex shebang version_executable wrapper_scripts=() wrapper_scripts_set=() |
|
|
1516 | |
|
|
1517 | while (($#)); do |
|
|
1518 | case "$1" in |
|
|
1519 | -q|--quiet) |
|
|
1520 | quiet="1" |
|
|
1521 | ;; |
|
|
1522 | --) |
|
|
1523 | shift |
|
|
1524 | break |
|
|
1525 | ;; |
|
|
1526 | -*) |
|
|
1527 | die "${FUNCNAME}(): Unrecognized option '$1'" |
|
|
1528 | ;; |
|
|
1529 | *) |
|
|
1530 | break |
|
|
1531 | ;; |
|
|
1532 | esac |
|
|
1533 | shift |
|
|
1534 | done |
|
|
1535 | |
|
|
1536 | if [[ "$#" -ne 1 ]]; then |
|
|
1537 | die "${FUNCNAME}() requires 1 argument" |
|
|
1538 | fi |
|
|
1539 | |
|
|
1540 | intermediate_installation_images_directory="$1" |
|
|
1541 | |
|
|
1542 | if [[ ! -d "${intermediate_installation_images_directory}" ]]; then |
|
|
1543 | die "${FUNCNAME}(): Intermediate installation images directory '${intermediate_installation_images_directory}' does not exist" |
|
|
1544 | fi |
|
|
1545 | |
|
|
1546 | _python_calculate_PYTHON_ABIS |
|
|
1547 | if [[ "$(PYTHON -f --ABI)" == 3.* ]]; then |
|
|
1548 | b="b" |
|
|
1549 | fi |
|
|
1550 | |
|
|
1551 | while read -d $'\0' -r file; do |
|
|
1552 | files+=("${file}") |
|
|
1553 | done < <("$(PYTHON -f)" -c \ |
|
|
1554 | "import os |
|
|
1555 | import sys |
|
|
1556 | |
|
|
1557 | if hasattr(sys.stdout, 'buffer'): |
|
|
1558 | # Python 3 |
|
|
1559 | stdout = sys.stdout.buffer |
|
|
1560 | else: |
|
|
1561 | # Python 2 |
|
|
1562 | stdout = sys.stdout |
|
|
1563 | |
|
|
1564 | files_set = set() |
|
|
1565 | |
|
|
1566 | os.chdir(${b}'${intermediate_installation_images_directory}') |
|
|
1567 | |
|
|
1568 | for PYTHON_ABI in ${b}'${PYTHON_ABIS}'.split(): |
|
|
1569 | for root, dirs, files in os.walk(PYTHON_ABI + ${b}'${EPREFIX}'): |
|
|
1570 | root = root[len(PYTHON_ABI + ${b}'${EPREFIX}')+1:] |
|
|
1571 | files_set.update(root + ${b}'/' + file for file in files) |
|
|
1572 | |
|
|
1573 | for file in sorted(files_set): |
|
|
1574 | stdout.write(file) |
|
|
1575 | stdout.write(${b}'\x00')" || die "${FUNCNAME}(): Failure of extraction of files in intermediate installation images") |
|
|
1576 | |
|
|
1577 | for PYTHON_ABI in ${PYTHON_ABIS}; do |
|
|
1578 | if [[ ! -d "${intermediate_installation_images_directory}/${PYTHON_ABI}" ]]; then |
|
|
1579 | die "${FUNCNAME}(): Intermediate installation image for Python ABI '${PYTHON_ABI}' does not exist" |
|
|
1580 | fi |
|
|
1581 | |
|
|
1582 | pushd "${intermediate_installation_images_directory}/${PYTHON_ABI}${EPREFIX}" > /dev/null || die "pushd failed" |
|
|
1583 | |
|
|
1584 | for file in "${files[@]}"; do |
|
|
1585 | version_executable="0" |
|
|
1586 | for regex in "/usr/bin/.*" "/usr/sbin/.*" "${PYTHON_VERSIONED_SCRIPTS[@]}"; do |
|
|
1587 | if [[ "/${file}" =~ ^${regex}$ ]]; then |
|
|
1588 | version_executable="1" |
|
|
1589 | break |
|
|
1590 | fi |
|
|
1591 | done |
|
|
1592 | for regex in "${PYTHON_VERSIONED_EXECUTABLES[@]}"; do |
|
|
1593 | if [[ "/${file}" =~ ^${regex}$ ]]; then |
|
|
1594 | version_executable="2" |
|
|
1595 | break |
|
|
1596 | fi |
|
|
1597 | done |
|
|
1598 | if [[ "${version_executable}" != "0" ]]; then |
|
|
1599 | for regex in "${PYTHON_NONVERSIONED_EXECUTABLES[@]}"; do |
|
|
1600 | if [[ "/${file}" =~ ^${regex}$ ]]; then |
|
|
1601 | version_executable="0" |
|
|
1602 | break |
|
|
1603 | fi |
|
|
1604 | done |
|
|
1605 | fi |
|
|
1606 | |
|
|
1607 | [[ "${version_executable}" == "0" ]] && continue |
|
|
1608 | |
|
|
1609 | if [[ -L "${file}" ]]; then |
|
|
1610 | absolute_file="$(readlink "${file}")" |
|
|
1611 | if [[ "${absolute_file}" == /* ]]; then |
|
|
1612 | absolute_file="${intermediate_installation_images_directory}/${PYTHON_ABI}${EPREFIX}/${absolute_file##/}" |
|
|
1613 | else |
|
|
1614 | if [[ "${file}" == */* ]]; then |
|
|
1615 | absolute_file="${intermediate_installation_images_directory}/${PYTHON_ABI}${EPREFIX}/${file%/*}/${absolute_file}" |
|
|
1616 | else |
|
|
1617 | absolute_file="${intermediate_installation_images_directory}/${PYTHON_ABI}${EPREFIX}/${absolute_file}" |
|
|
1618 | fi |
|
|
1619 | fi |
|
|
1620 | else |
|
|
1621 | absolute_file="${intermediate_installation_images_directory}/${PYTHON_ABI}${EPREFIX}/${file}" |
|
|
1622 | fi |
|
|
1623 | |
|
|
1624 | [[ ! -x "${absolute_file}" ]] && continue |
|
|
1625 | |
|
|
1626 | shebang="$(head -n1 "${absolute_file}")" || die "Extraction of shebang from '${absolute_file}' failed" |
|
|
1627 | |
|
|
1628 | if [[ "${version_executable}" == "2" ]]; then |
|
|
1629 | wrapper_scripts+=("${ED}${file}") |
|
|
1630 | elif [[ "${version_executable}" == "1" ]]; then |
|
|
1631 | if [[ "${shebang}" =~ ${_PYTHON_SHEBANG_BASE_PART_REGEX}([[:digit:]]+(\.[[:digit:]]+)?)?($|[[:space:]]+) ]]; then |
|
|
1632 | wrapper_scripts+=("${ED}${file}") |
|
|
1633 | else |
|
|
1634 | version_executable="0" |
|
|
1635 | fi |
|
|
1636 | fi |
|
|
1637 | |
|
|
1638 | [[ "${version_executable}" == "0" ]] && continue |
|
|
1639 | |
|
|
1640 | if [[ -e "${file}-${PYTHON_ABI}" ]]; then |
|
|
1641 | die "${FUNCNAME}(): '${EPREFIX}/${file}-${PYTHON_ABI}' already exists" |
|
|
1642 | fi |
|
|
1643 | |
|
|
1644 | mv "${file}" "${file}-${PYTHON_ABI}" || die "Renaming of '${file}' failed" |
|
|
1645 | |
|
|
1646 | if [[ "${shebang}" =~ ${_PYTHON_SHEBANG_BASE_PART_REGEX}[[:digit:]]*($|[[:space:]]+) ]]; then |
|
|
1647 | if [[ -L "${file}-${PYTHON_ABI}" ]]; then |
|
|
1648 | python_convert_shebangs $([[ "${quiet}" == "1" ]] && echo --quiet) "${PYTHON_ABI}" "${absolute_file}" |
|
|
1649 | else |
|
|
1650 | python_convert_shebangs $([[ "${quiet}" == "1" ]] && echo --quiet) "${PYTHON_ABI}" "${file}-${PYTHON_ABI}" |
|
|
1651 | fi |
|
|
1652 | fi |
|
|
1653 | done |
|
|
1654 | |
|
|
1655 | popd > /dev/null || die "popd failed" |
|
|
1656 | |
|
|
1657 | # This is per bug #390691, without the duplication refactor, and with |
|
|
1658 | # the 3-way structure per comment #6. This enable users with old |
|
|
1659 | # coreutils to upgrade a lot easier (you need to upgrade python+portage |
|
|
1660 | # before coreutils can be upgraded). |
|
|
1661 | if ROOT="/" has_version '>=sys-apps/coreutils-6.9.90'; then |
|
|
1662 | cp -fr --preserve=all --no-preserve=context "${intermediate_installation_images_directory}/${PYTHON_ABI}/"* "${D}" || die "Merging of intermediate installation image for Python ABI '${PYTHON_ABI} into installation image failed" |
|
|
1663 | elif ROOT="/" has_version sys-apps/coreutils; then |
|
|
1664 | cp -fr --preserve=all "${intermediate_installation_images_directory}/${PYTHON_ABI}/"* "${D}" || die "Merging of intermediate installation image for Python ABI '${PYTHON_ABI} into installation image failed" |
|
|
1665 | else |
|
|
1666 | cp -fpr "${intermediate_installation_images_directory}/${PYTHON_ABI}/"* "${D}" || die "Merging of intermediate installation image for Python ABI '${PYTHON_ABI} into installation image failed" |
|
|
1667 | fi |
|
|
1668 | done |
|
|
1669 | |
|
|
1670 | rm -fr "${intermediate_installation_images_directory}" |
|
|
1671 | |
|
|
1672 | if [[ "${#wrapper_scripts[@]}" -ge 1 ]]; then |
|
|
1673 | rm -f "${T}/python_wrapper_scripts" |
|
|
1674 | |
|
|
1675 | for file in "${wrapper_scripts[@]}"; do |
|
|
1676 | echo -n "${file}" >> "${T}/python_wrapper_scripts" |
|
|
1677 | echo -en "\x00" >> "${T}/python_wrapper_scripts" |
|
|
1678 | done |
|
|
1679 | |
|
|
1680 | while read -d $'\0' -r file; do |
|
|
1681 | wrapper_scripts_set+=("${file}") |
|
|
1682 | done < <("$(PYTHON -f)" -c \ |
|
|
1683 | "import sys |
|
|
1684 | |
|
|
1685 | if hasattr(sys.stdout, 'buffer'): |
|
|
1686 | # Python 3 |
|
|
1687 | stdout = sys.stdout.buffer |
|
|
1688 | else: |
|
|
1689 | # Python 2 |
|
|
1690 | stdout = sys.stdout |
|
|
1691 | |
|
|
1692 | python_wrapper_scripts_file = open('${T}/python_wrapper_scripts', 'rb') |
|
|
1693 | files = set(python_wrapper_scripts_file.read().rstrip(${b}'\x00').split(${b}'\x00')) |
|
|
1694 | python_wrapper_scripts_file.close() |
|
|
1695 | |
|
|
1696 | for file in sorted(files): |
|
|
1697 | stdout.write(file) |
|
|
1698 | stdout.write(${b}'\x00')" || die "${FUNCNAME}(): Failure of extraction of set of wrapper scripts") |
|
|
1699 | |
|
|
1700 | python_generate_wrapper_scripts $([[ "${quiet}" == "1" ]] && echo --quiet) "${wrapper_scripts_set[@]}" |
|
|
1701 | fi |
|
|
1702 | } |
|
|
1703 | |
| 1407 | # ================================================================================================ |
1704 | # ================================================================================================ |
| 1408 | # ========= FUNCTIONS FOR PACKAGES NOT SUPPORTING INSTALLATION FOR MULTIPLE PYTHON ABIS ========== |
1705 | # ========= FUNCTIONS FOR PACKAGES NOT SUPPORTING INSTALLATION FOR MULTIPLE PYTHON ABIS ========== |
| 1409 | # ================================================================================================ |
1706 | # ================================================================================================ |
| 1410 | |
1707 | |
| 1411 | unset EPYTHON PYTHON_ABI |
1708 | unset EPYTHON PYTHON_ABI |
| 1412 | |
1709 | |
| 1413 | # @FUNCTION: python_set_active_version |
1710 | # @FUNCTION: python_set_active_version |
| 1414 | # @USAGE: <CPython_ABI|2|3> |
1711 | # @USAGE: <Python_ABI|2|3> |
| 1415 | # @DESCRIPTION: |
1712 | # @DESCRIPTION: |
| 1416 | # Set specified version of CPython as active version of Python. |
1713 | # Set locally active version of Python. |
|
|
1714 | # If Python_ABI argument is specified, then version of Python corresponding to Python_ABI is used. |
|
|
1715 | # If 2 argument is specified, then active version of CPython 2 is used. |
|
|
1716 | # If 3 argument is specified, then active version of CPython 3 is used. |
| 1417 | # |
1717 | # |
| 1418 | # This function can be used only in pkg_setup() phase. |
1718 | # This function can be used only in pkg_setup() phase. |
| 1419 | python_set_active_version() { |
1719 | python_set_active_version() { |
| 1420 | # Check if phase is pkg_setup(). |
1720 | if [[ "${EBUILD_PHASE}" != "setup" ]]; then |
| 1421 | [[ "${EBUILD_PHASE}" != "setup" ]] && die "${FUNCNAME}() can be used only in pkg_setup() phase" |
1721 | die "${FUNCNAME}() can be used only in pkg_setup() phase" |
|
|
1722 | fi |
| 1422 | |
1723 | |
| 1423 | if _python_package_supporting_installation_for_multiple_python_abis; then |
1724 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| 1424 | die "${FUNCNAME}() cannot be used in ebuilds of packages supporting installation for multiple Python ABIs" |
1725 | die "${FUNCNAME}() cannot be used in ebuilds of packages supporting installation for multiple Python ABIs" |
| 1425 | fi |
1726 | fi |
| 1426 | |
1727 | |
| … | |
… | |
| 1429 | fi |
1730 | fi |
| 1430 | |
1731 | |
| 1431 | _python_initial_sanity_checks |
1732 | _python_initial_sanity_checks |
| 1432 | |
1733 | |
| 1433 | if [[ -z "${PYTHON_ABI}" ]]; then |
1734 | if [[ -z "${PYTHON_ABI}" ]]; then |
| 1434 | if [[ "$1" =~ ^[[:digit:]]+\.[[:digit:]]+$ ]]; then |
1735 | if [[ -n "$(_python_get_implementation --ignore-invalid "$1")" ]]; then |
| 1435 | if ! _python_implementation && ! has_version "dev-lang/python:$1"; then |
1736 | # PYTHON_ABI variable is intended to be used only in ebuilds/eclasses, |
| 1436 | die "${FUNCNAME}(): 'dev-lang/python:$1' is not installed" |
1737 | # so it does not need to be exported to subprocesses. |
|
|
1738 | PYTHON_ABI="$1" |
|
|
1739 | if ! _python_implementation && ! has_version "$(python_get_implementational_package)"; then |
|
|
1740 | die "${FUNCNAME}(): '$(python_get_implementational_package)' is not installed" |
| 1437 | fi |
1741 | fi |
| 1438 | export EPYTHON="$(PYTHON "$1")" |
1742 | export EPYTHON="$(PYTHON "$1")" |
| 1439 | elif [[ "$1" == "2" ]]; then |
1743 | elif [[ "$1" == "2" ]]; then |
| 1440 | if ! _python_implementation && ! has_version "=dev-lang/python-2*"; then |
1744 | if ! _python_implementation && ! has_version "=dev-lang/python-2*"; then |
| 1441 | die "${FUNCNAME}(): '=dev-lang/python-2*' is not installed" |
1745 | die "${FUNCNAME}(): '=dev-lang/python-2*' is not installed" |
| 1442 | fi |
1746 | fi |
| 1443 | export EPYTHON="$(PYTHON -2)" |
1747 | export EPYTHON="$(PYTHON -2)" |
|
|
1748 | PYTHON_ABI="${EPYTHON#python}" |
|
|
1749 | PYTHON_ABI="${PYTHON_ABI%%-*}" |
| 1444 | elif [[ "$1" == "3" ]]; then |
1750 | elif [[ "$1" == "3" ]]; then |
| 1445 | if ! _python_implementation && ! has_version "=dev-lang/python-3*"; then |
1751 | if ! _python_implementation && ! has_version "=dev-lang/python-3*"; then |
| 1446 | die "${FUNCNAME}(): '=dev-lang/python-3*' is not installed" |
1752 | die "${FUNCNAME}(): '=dev-lang/python-3*' is not installed" |
| 1447 | fi |
1753 | fi |
| 1448 | export EPYTHON="$(PYTHON -3)" |
1754 | export EPYTHON="$(PYTHON -3)" |
|
|
1755 | PYTHON_ABI="${EPYTHON#python}" |
|
|
1756 | PYTHON_ABI="${PYTHON_ABI%%-*}" |
| 1449 | else |
1757 | else |
| 1450 | die "${FUNCNAME}(): Unrecognized argument '$1'" |
1758 | die "${FUNCNAME}(): Unrecognized argument '$1'" |
| 1451 | fi |
1759 | fi |
| 1452 | |
|
|
| 1453 | # PYTHON_ABI variable is intended to be used only in ebuilds/eclasses, |
|
|
| 1454 | # so it does not need to be exported to subprocesses. |
|
|
| 1455 | PYTHON_ABI="${EPYTHON#python}" |
|
|
| 1456 | PYTHON_ABI="${PYTHON_ABI%%-*}" |
|
|
| 1457 | fi |
1760 | fi |
| 1458 | |
1761 | |
| 1459 | _python_final_sanity_checks |
1762 | _python_final_sanity_checks |
| 1460 | |
1763 | |
| 1461 | # python-updater checks PYTHON_REQUESTED_ACTIVE_VERSION variable. |
1764 | # python-updater checks PYTHON_REQUESTED_ACTIVE_VERSION variable. |
| 1462 | PYTHON_REQUESTED_ACTIVE_VERSION="$1" |
1765 | PYTHON_REQUESTED_ACTIVE_VERSION="$1" |
| 1463 | } |
1766 | } |
| 1464 | |
1767 | |
| 1465 | # @FUNCTION: python_need_rebuild |
1768 | # @FUNCTION: python_need_rebuild |
|
|
1769 | # @DESCRIPTION: |
| 1466 | # @DESCRIPTION: Mark current package for rebuilding by python-updater after |
1770 | # Mark current package for rebuilding by python-updater after |
| 1467 | # switching of active version of Python. |
1771 | # switching of active version of Python. |
| 1468 | python_need_rebuild() { |
1772 | python_need_rebuild() { |
| 1469 | _python_check_python_pkg_setup_execution |
|
|
| 1470 | |
|
|
| 1471 | if _python_package_supporting_installation_for_multiple_python_abis; then |
1773 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| 1472 | die "${FUNCNAME}() cannot be used in ebuilds of packages supporting installation for multiple Python ABIs" |
1774 | die "${FUNCNAME}() cannot be used in ebuilds of packages supporting installation for multiple Python ABIs" |
| 1473 | fi |
1775 | fi |
|
|
1776 | |
|
|
1777 | _python_check_python_pkg_setup_execution |
| 1474 | |
1778 | |
| 1475 | if [[ "$#" -ne 0 ]]; then |
1779 | if [[ "$#" -ne 0 ]]; then |
| 1476 | die "${FUNCNAME}() does not accept arguments" |
1780 | die "${FUNCNAME}() does not accept arguments" |
| 1477 | fi |
1781 | fi |
| 1478 | |
1782 | |
| … | |
… | |
| 1481 | |
1785 | |
| 1482 | # ================================================================================================ |
1786 | # ================================================================================================ |
| 1483 | # ======================================= GETTER FUNCTIONS ======================================= |
1787 | # ======================================= GETTER FUNCTIONS ======================================= |
| 1484 | # ================================================================================================ |
1788 | # ================================================================================================ |
| 1485 | |
1789 | |
| 1486 | _PYTHON_ABI_EXTRACTION_COMMAND='import platform |
1790 | _PYTHON_ABI_EXTRACTION_COMMAND=\ |
|
|
1791 | 'import platform |
| 1487 | import sys |
1792 | import sys |
| 1488 | sys.stdout.write(".".join(str(x) for x in sys.version_info[:2])) |
1793 | sys.stdout.write(".".join(str(x) for x in sys.version_info[:2])) |
| 1489 | if platform.system()[:4] == "Java": |
1794 | if platform.system()[:4] == "Java": |
| 1490 | sys.stdout.write("-jython")' |
1795 | sys.stdout.write("-jython") |
|
|
1796 | elif hasattr(platform, "python_implementation") and platform.python_implementation() == "PyPy": |
|
|
1797 | sys.stdout.write("-pypy-" + ".".join(str(x) for x in sys.pypy_version_info[:2]))' |
| 1491 | |
1798 | |
| 1492 | _python_get_implementation() { |
1799 | _python_get_implementation() { |
|
|
1800 | local ignore_invalid="0" |
|
|
1801 | |
|
|
1802 | while (($#)); do |
|
|
1803 | case "$1" in |
|
|
1804 | --ignore-invalid) |
|
|
1805 | ignore_invalid="1" |
|
|
1806 | ;; |
|
|
1807 | --) |
|
|
1808 | shift |
|
|
1809 | break |
|
|
1810 | ;; |
|
|
1811 | -*) |
|
|
1812 | die "${FUNCNAME}(): Unrecognized option '$1'" |
|
|
1813 | ;; |
|
|
1814 | *) |
|
|
1815 | break |
|
|
1816 | ;; |
|
|
1817 | esac |
|
|
1818 | shift |
|
|
1819 | done |
|
|
1820 | |
| 1493 | if [[ "$#" -ne 1 ]]; then |
1821 | if [[ "$#" -ne 1 ]]; then |
| 1494 | die "${FUNCNAME}() requires 1 argument" |
1822 | die "${FUNCNAME}() requires 1 argument" |
| 1495 | fi |
1823 | fi |
| 1496 | |
1824 | |
| 1497 | if [[ "$1" =~ ^[[:digit:]]+\.[[:digit:]]+$ ]]; then |
1825 | if [[ "$1" =~ ^[[:digit:]]+\.[[:digit:]]+$ ]]; then |
| 1498 | echo "CPython" |
1826 | echo "CPython" |
| 1499 | elif [[ "$1" =~ ^[[:digit:]]+\.[[:digit:]]+-jython$ ]]; then |
1827 | elif [[ "$1" =~ ^[[:digit:]]+\.[[:digit:]]+-jython$ ]]; then |
| 1500 | echo "Jython" |
1828 | echo "Jython" |
|
|
1829 | elif [[ "$1" =~ ^[[:digit:]]+\.[[:digit:]]+-pypy-[[:digit:]]+\.[[:digit:]]+$ ]]; then |
|
|
1830 | echo "PyPy" |
| 1501 | else |
1831 | else |
|
|
1832 | if [[ "${ignore_invalid}" == "0" ]]; then |
| 1502 | die "${FUNCNAME}(): Unrecognized Python ABI '$1'" |
1833 | die "${FUNCNAME}(): Unrecognized Python ABI '$1'" |
|
|
1834 | fi |
| 1503 | fi |
1835 | fi |
| 1504 | } |
1836 | } |
| 1505 | |
1837 | |
| 1506 | # @FUNCTION: PYTHON |
1838 | # @FUNCTION: PYTHON |
| 1507 | # @USAGE: [-2] [-3] [--ABI] [-a|--absolute-path] [-f|--final-ABI] [--] <Python_ABI="${PYTHON_ABI}"> |
1839 | # @USAGE: [-2] [-3] [--ABI] [-a|--absolute-path] [-f|--final-ABI] [--] <Python_ABI="${PYTHON_ABI}"> |
| 1508 | # @DESCRIPTION: |
1840 | # @DESCRIPTION: |
| 1509 | # Print filename of Python interpreter for specified Python ABI. If Python_ABI argument |
1841 | # Print filename of Python interpreter for specified Python ABI. If Python_ABI argument |
| 1510 | # is ommitted, then PYTHON_ABI environment variable must be set and is used. |
1842 | # is ommitted, then PYTHON_ABI environment variable must be set and is used. |
| 1511 | # If -2 option is specified, then active version of Python 2 is used. |
1843 | # If -2 option is specified, then active version of CPython 2 is used. |
| 1512 | # If -3 option is specified, then active version of Python 3 is used. |
1844 | # If -3 option is specified, then active version of CPython 3 is used. |
| 1513 | # If --final-ABI option is specified, then final ABI from the list of enabled ABIs is used. |
1845 | # If --final-ABI option is specified, then final ABI from the list of enabled ABIs is used. |
| 1514 | # -2, -3 and --final-ABI options and Python_ABI argument cannot be specified simultaneously. |
1846 | # -2, -3 and --final-ABI options and Python_ABI argument cannot be specified simultaneously. |
| 1515 | # If --ABI option is specified, then only specified Python ABI is printed instead of |
1847 | # If --ABI option is specified, then only specified Python ABI is printed instead of |
| 1516 | # filename of Python interpreter. |
1848 | # filename of Python interpreter. |
| 1517 | # If --absolute-path option is specified, then absolute path to Python interpreter is printed. |
1849 | # If --absolute-path option is specified, then absolute path to Python interpreter is printed. |
| … | |
… | |
| 1566 | die "${FUNCNAME}(): '--final-ABI' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
1898 | die "${FUNCNAME}(): '--final-ABI' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
| 1567 | fi |
1899 | fi |
| 1568 | _python_calculate_PYTHON_ABIS |
1900 | _python_calculate_PYTHON_ABIS |
| 1569 | PYTHON_ABI="${PYTHON_ABIS##* }" |
1901 | PYTHON_ABI="${PYTHON_ABIS##* }" |
| 1570 | elif [[ "${python2}" == "1" ]]; then |
1902 | elif [[ "${python2}" == "1" ]]; then |
| 1571 | PYTHON_ABI="$(eselect python show --python2 --ABI)" |
1903 | PYTHON_ABI="$(ROOT="/" eselect python show --python2 --ABI)" |
| 1572 | if [[ -z "${PYTHON_ABI}" ]]; then |
1904 | if [[ -z "${PYTHON_ABI}" ]]; then |
| 1573 | die "${FUNCNAME}(): Active version of Python 2 not set" |
1905 | die "${FUNCNAME}(): Active version of CPython 2 not set" |
| 1574 | elif [[ "${PYTHON_ABI}" != "2."* ]]; then |
1906 | elif [[ "${PYTHON_ABI}" != "2."* ]]; then |
| 1575 | die "${FUNCNAME}(): Internal error in \`eselect python show --python2\`" |
1907 | die "${FUNCNAME}(): Internal error in \`eselect python show --python2\`" |
| 1576 | fi |
1908 | fi |
| 1577 | elif [[ "${python3}" == "1" ]]; then |
1909 | elif [[ "${python3}" == "1" ]]; then |
| 1578 | PYTHON_ABI="$(eselect python show --python3 --ABI)" |
1910 | PYTHON_ABI="$(ROOT="/" eselect python show --python3 --ABI)" |
| 1579 | if [[ -z "${PYTHON_ABI}" ]]; then |
1911 | if [[ -z "${PYTHON_ABI}" ]]; then |
| 1580 | die "${FUNCNAME}(): Active version of Python 3 not set" |
1912 | die "${FUNCNAME}(): Active version of CPython 3 not set" |
| 1581 | elif [[ "${PYTHON_ABI}" != "3."* ]]; then |
1913 | elif [[ "${PYTHON_ABI}" != "3."* ]]; then |
| 1582 | die "${FUNCNAME}(): Internal error in \`eselect python show --python3\`" |
1914 | die "${FUNCNAME}(): Internal error in \`eselect python show --python3\`" |
| 1583 | fi |
1915 | fi |
| 1584 | elif _python_package_supporting_installation_for_multiple_python_abis; then |
1916 | elif _python_package_supporting_installation_for_multiple_python_abis; then |
| 1585 | if ! _python_abi-specific_local_scope; then |
1917 | if ! _python_abi-specific_local_scope; then |
| … | |
… | |
| 1611 | return |
1943 | return |
| 1612 | else |
1944 | else |
| 1613 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
1945 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
| 1614 | python_interpreter="python${PYTHON_ABI}" |
1946 | python_interpreter="python${PYTHON_ABI}" |
| 1615 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
1947 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
| 1616 | python_interpreter="jython-${PYTHON_ABI%-jython}" |
1948 | python_interpreter="jython${PYTHON_ABI%-jython}" |
|
|
1949 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "PyPy" ]]; then |
|
|
1950 | python_interpreter="pypy-c${PYTHON_ABI#*-pypy-}" |
| 1617 | fi |
1951 | fi |
| 1618 | |
1952 | |
| 1619 | if [[ "${absolute_path_output}" == "1" ]]; then |
1953 | if [[ "${absolute_path_output}" == "1" ]]; then |
| 1620 | echo -n "${EPREFIX}/usr/bin/${python_interpreter}" |
1954 | echo -n "${EPREFIX}/usr/bin/${python_interpreter}" |
| 1621 | else |
1955 | else |
| … | |
… | |
| 1714 | if [[ "${EAPI:-0}" == "0" ]]; then |
2048 | if [[ "${EAPI:-0}" == "0" ]]; then |
| 1715 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
2049 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
| 1716 | echo "=dev-lang/python-${PYTHON_ABI}*" |
2050 | echo "=dev-lang/python-${PYTHON_ABI}*" |
| 1717 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
2051 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
| 1718 | echo "=dev-java/jython-${PYTHON_ABI%-jython}*" |
2052 | echo "=dev-java/jython-${PYTHON_ABI%-jython}*" |
|
|
2053 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "PyPy" ]]; then |
|
|
2054 | echo "=dev-python/pypy-${PYTHON_ABI#*-pypy-}*" |
| 1719 | fi |
2055 | fi |
| 1720 | else |
2056 | else |
| 1721 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
2057 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
| 1722 | echo "dev-lang/python:${PYTHON_ABI}" |
2058 | echo "dev-lang/python:${PYTHON_ABI}" |
| 1723 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
2059 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
| 1724 | echo "dev-java/jython:${PYTHON_ABI%-jython}" |
2060 | echo "dev-java/jython:${PYTHON_ABI%-jython}" |
|
|
2061 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "PyPy" ]]; then |
|
|
2062 | echo "dev-python/pypy:${PYTHON_ABI#*-pypy-}" |
| 1725 | fi |
2063 | fi |
| 1726 | fi |
2064 | fi |
| 1727 | } |
2065 | } |
| 1728 | |
2066 | |
| 1729 | # @FUNCTION: python_get_includedir |
2067 | # @FUNCTION: python_get_includedir |
| … | |
… | |
| 1776 | |
2114 | |
| 1777 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
2115 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
| 1778 | echo "${prefix}usr/include/python${PYTHON_ABI}" |
2116 | echo "${prefix}usr/include/python${PYTHON_ABI}" |
| 1779 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
2117 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
| 1780 | echo "${prefix}usr/share/jython-${PYTHON_ABI%-jython}/Include" |
2118 | echo "${prefix}usr/share/jython-${PYTHON_ABI%-jython}/Include" |
|
|
2119 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "PyPy" ]]; then |
|
|
2120 | echo "${prefix}usr/$(get_libdir)/pypy${PYTHON_ABI#*-pypy-}/include" |
| 1781 | fi |
2121 | fi |
| 1782 | } |
2122 | } |
| 1783 | |
2123 | |
| 1784 | # @FUNCTION: python_get_libdir |
2124 | # @FUNCTION: python_get_libdir |
| 1785 | # @USAGE: [-b|--base-path] [-f|--final-ABI] |
2125 | # @USAGE: [-b|--base-path] [-f|--final-ABI] |
| 1786 | # @DESCRIPTION: |
2126 | # @DESCRIPTION: |
| 1787 | # Print path to Python library directory. |
2127 | # Print path to Python standard library directory. |
| 1788 | # If --base-path option is specified, then path not prefixed with "/" is printed. |
2128 | # If --base-path option is specified, then path not prefixed with "/" is printed. |
| 1789 | # If --final-ABI option is specified, then final ABI from the list of enabled ABIs is used. |
2129 | # If --final-ABI option is specified, then final ABI from the list of enabled ABIs is used. |
| 1790 | python_get_libdir() { |
2130 | python_get_libdir() { |
| 1791 | _python_check_python_pkg_setup_execution |
2131 | _python_check_python_pkg_setup_execution |
| 1792 | |
2132 | |
| … | |
… | |
| 1831 | |
2171 | |
| 1832 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
2172 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
| 1833 | echo "${prefix}usr/$(get_libdir)/python${PYTHON_ABI}" |
2173 | echo "${prefix}usr/$(get_libdir)/python${PYTHON_ABI}" |
| 1834 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
2174 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
| 1835 | echo "${prefix}usr/share/jython-${PYTHON_ABI%-jython}/Lib" |
2175 | echo "${prefix}usr/share/jython-${PYTHON_ABI%-jython}/Lib" |
|
|
2176 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "PyPy" ]]; then |
|
|
2177 | die "${FUNCNAME}(): PyPy has multiple standard library directories" |
| 1836 | fi |
2178 | fi |
| 1837 | } |
2179 | } |
| 1838 | |
2180 | |
| 1839 | # @FUNCTION: python_get_sitedir |
2181 | # @FUNCTION: python_get_sitedir |
| 1840 | # @USAGE: [-b|--base-path] [-f|--final-ABI] |
2182 | # @USAGE: [-b|--base-path] [-f|--final-ABI] |
| … | |
… | |
| 1843 | # If --base-path option is specified, then path not prefixed with "/" is printed. |
2185 | # If --base-path option is specified, then path not prefixed with "/" is printed. |
| 1844 | # If --final-ABI option is specified, then final ABI from the list of enabled ABIs is used. |
2186 | # If --final-ABI option is specified, then final ABI from the list of enabled ABIs is used. |
| 1845 | python_get_sitedir() { |
2187 | python_get_sitedir() { |
| 1846 | _python_check_python_pkg_setup_execution |
2188 | _python_check_python_pkg_setup_execution |
| 1847 | |
2189 | |
| 1848 | local final_ABI="0" options=() |
2190 | local base_path="0" final_ABI="0" prefix PYTHON_ABI="${PYTHON_ABI}" |
| 1849 | |
2191 | |
| 1850 | while (($#)); do |
2192 | while (($#)); do |
| 1851 | case "$1" in |
2193 | case "$1" in |
| 1852 | -b|--base-path) |
2194 | -b|--base-path) |
| 1853 | options+=("$1") |
2195 | base_path="1" |
| 1854 | ;; |
2196 | ;; |
| 1855 | -f|--final-ABI) |
2197 | -f|--final-ABI) |
| 1856 | final_ABI="1" |
2198 | final_ABI="1" |
| 1857 | options+=("$1") |
|
|
| 1858 | ;; |
2199 | ;; |
| 1859 | -*) |
2200 | -*) |
| 1860 | die "${FUNCNAME}(): Unrecognized option '$1'" |
2201 | die "${FUNCNAME}(): Unrecognized option '$1'" |
| 1861 | ;; |
2202 | ;; |
| 1862 | *) |
2203 | *) |
| 1863 | die "${FUNCNAME}(): Invalid usage" |
2204 | die "${FUNCNAME}(): Invalid usage" |
| 1864 | ;; |
2205 | ;; |
| 1865 | esac |
2206 | esac |
| 1866 | shift |
2207 | shift |
| 1867 | done |
2208 | done |
|
|
2209 | |
|
|
2210 | if [[ "${base_path}" == "0" ]]; then |
|
|
2211 | prefix="/" |
|
|
2212 | fi |
| 1868 | |
2213 | |
| 1869 | if [[ "${final_ABI}" == "1" ]]; then |
2214 | if [[ "${final_ABI}" == "1" ]]; then |
| 1870 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
2215 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
| 1871 | die "${FUNCNAME}(): '--final-ABI' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
2216 | die "${FUNCNAME}(): '--final-ABI' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
| 1872 | fi |
2217 | fi |
|
|
2218 | PYTHON_ABI="$(PYTHON -f --ABI)" |
| 1873 | else |
2219 | else |
| 1874 | if _python_package_supporting_installation_for_multiple_python_abis && ! _python_abi-specific_local_scope; then |
2220 | if _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
2221 | if ! _python_abi-specific_local_scope; then |
| 1875 | die "${FUNCNAME}() should be used in ABI-specific local scope" |
2222 | die "${FUNCNAME}() should be used in ABI-specific local scope" |
| 1876 | fi |
2223 | fi |
|
|
2224 | else |
|
|
2225 | PYTHON_ABI="${PYTHON_ABI:-$(PYTHON --ABI)}" |
| 1877 | fi |
2226 | fi |
|
|
2227 | fi |
| 1878 | |
2228 | |
| 1879 | echo "$(python_get_libdir "${options[@]}")/site-packages" |
2229 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
|
|
2230 | echo "${prefix}usr/$(get_libdir)/python${PYTHON_ABI}/site-packages" |
|
|
2231 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
|
|
2232 | echo "${prefix}usr/share/jython-${PYTHON_ABI%-jython}/Lib/site-packages" |
|
|
2233 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "PyPy" ]]; then |
|
|
2234 | echo "${prefix}usr/$(get_libdir)/pypy${PYTHON_ABI#*-pypy-}/site-packages" |
|
|
2235 | fi |
| 1880 | } |
2236 | } |
| 1881 | |
2237 | |
| 1882 | # @FUNCTION: python_get_library |
2238 | # @FUNCTION: python_get_library |
| 1883 | # @USAGE: [-b|--base-path] [-f|--final-ABI] [-l|--linker-option] |
2239 | # @USAGE: [-b|--base-path] [-f|--final-ABI] [-l|--linker-option] |
| 1884 | # @DESCRIPTION: |
2240 | # @DESCRIPTION: |
| … | |
… | |
| 1941 | else |
2297 | else |
| 1942 | echo "${prefix}usr/$(get_libdir)/libpython${PYTHON_ABI}$(get_libname)" |
2298 | echo "${prefix}usr/$(get_libdir)/libpython${PYTHON_ABI}$(get_libname)" |
| 1943 | fi |
2299 | fi |
| 1944 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
2300 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
| 1945 | die "${FUNCNAME}(): Jython does not have shared library" |
2301 | die "${FUNCNAME}(): Jython does not have shared library" |
|
|
2302 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "PyPy" ]]; then |
|
|
2303 | die "${FUNCNAME}(): PyPy does not have shared library" |
| 1946 | fi |
2304 | fi |
| 1947 | } |
2305 | } |
| 1948 | |
2306 | |
| 1949 | # @FUNCTION: python_get_version |
2307 | # @FUNCTION: python_get_version |
| 1950 | # @USAGE: [-f|--final-ABI] [--full] [--major] [--minor] [--micro] |
2308 | # @USAGE: [-f|--final-ABI] [-l|--language] [--full] [--major] [--minor] [--micro] |
| 1951 | # @DESCRIPTION: |
2309 | # @DESCRIPTION: |
| 1952 | # Print Python version. |
2310 | # Print version of Python implementation. |
| 1953 | # --full, --major, --minor and --micro options cannot be specified simultaneously. |
2311 | # --full, --major, --minor and --micro options cannot be specified simultaneously. |
| 1954 | # If --full, --major, --minor and --micro options are not specified, then "${major_version}.${minor_version}" is printed. |
2312 | # If --full, --major, --minor and --micro options are not specified, then "${major_version}.${minor_version}" is printed. |
|
|
2313 | # If --language option is specified, then version of Python language is printed. |
|
|
2314 | # --language and --full options cannot be specified simultaneously. |
|
|
2315 | # --language and --micro options cannot be specified simultaneously. |
| 1955 | # If --final-ABI option is specified, then final ABI from the list of enabled ABIs is used. |
2316 | # If --final-ABI option is specified, then final ABI from the list of enabled ABIs is used. |
| 1956 | python_get_version() { |
2317 | python_get_version() { |
| 1957 | _python_check_python_pkg_setup_execution |
2318 | _python_check_python_pkg_setup_execution |
| 1958 | |
2319 | |
| 1959 | local final_ABI="0" full="0" major="0" minor="0" micro="0" python_command |
2320 | local final_ABI="0" language="0" language_version full="0" major="0" minor="0" micro="0" PYTHON_ABI="${PYTHON_ABI}" python_command |
| 1960 | |
2321 | |
| 1961 | while (($#)); do |
2322 | while (($#)); do |
| 1962 | case "$1" in |
2323 | case "$1" in |
| 1963 | -f|--final-ABI) |
2324 | -f|--final-ABI) |
| 1964 | final_ABI="1" |
2325 | final_ABI="1" |
| 1965 | ;; |
2326 | ;; |
|
|
2327 | -l|--language) |
|
|
2328 | language="1" |
|
|
2329 | ;; |
| 1966 | --full) |
2330 | --full) |
| 1967 | full="1" |
2331 | full="1" |
| 1968 | ;; |
2332 | ;; |
| 1969 | --major) |
2333 | --major) |
| 1970 | major="1" |
2334 | major="1" |
| … | |
… | |
| 1982 | die "${FUNCNAME}(): Invalid usage" |
2346 | die "${FUNCNAME}(): Invalid usage" |
| 1983 | ;; |
2347 | ;; |
| 1984 | esac |
2348 | esac |
| 1985 | shift |
2349 | shift |
| 1986 | done |
2350 | done |
| 1987 | |
|
|
| 1988 | if [[ "$((${full} + ${major} + ${minor} + ${micro}))" -gt 1 ]]; then |
|
|
| 1989 | die "${FUNCNAME}(): '--full', '--major', '--minor' or '--micro' options cannot be specified simultaneously" |
|
|
| 1990 | fi |
|
|
| 1991 | |
|
|
| 1992 | if [[ "${full}" == "1" ]]; then |
|
|
| 1993 | python_command="from sys import version_info; print('.'.join(str(x) for x in version_info[:3]))" |
|
|
| 1994 | elif [[ "${major}" == "1" ]]; then |
|
|
| 1995 | python_command="from sys import version_info; print(version_info[0])" |
|
|
| 1996 | elif [[ "${minor}" == "1" ]]; then |
|
|
| 1997 | python_command="from sys import version_info; print(version_info[1])" |
|
|
| 1998 | elif [[ "${micro}" == "1" ]]; then |
|
|
| 1999 | python_command="from sys import version_info; print(version_info[2])" |
|
|
| 2000 | else |
|
|
| 2001 | if [[ -n "${PYTHON_ABI}" && "${final_ABI}" == "0" ]]; then |
|
|
| 2002 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
|
|
| 2003 | echo "${PYTHON_ABI}" |
|
|
| 2004 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
|
|
| 2005 | echo "${PYTHON_ABI%-jython}" |
|
|
| 2006 | fi |
|
|
| 2007 | return |
|
|
| 2008 | fi |
|
|
| 2009 | python_command="from sys import version_info; print('.'.join(str(x) for x in version_info[:2]))" |
|
|
| 2010 | fi |
|
|
| 2011 | |
2351 | |
| 2012 | if [[ "${final_ABI}" == "1" ]]; then |
2352 | if [[ "${final_ABI}" == "1" ]]; then |
| 2013 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
2353 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
| 2014 | die "${FUNCNAME}(): '--final-ABI' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
2354 | die "${FUNCNAME}(): '--final-ABI' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
| 2015 | fi |
2355 | fi |
| 2016 | "$(PYTHON -f)" -c "${python_command}" |
|
|
| 2017 | else |
2356 | else |
| 2018 | if _python_package_supporting_installation_for_multiple_python_abis && ! _python_abi-specific_local_scope; then |
2357 | if _python_package_supporting_installation_for_multiple_python_abis && ! _python_abi-specific_local_scope; then |
| 2019 | die "${FUNCNAME}() should be used in ABI-specific local scope" |
2358 | die "${FUNCNAME}() should be used in ABI-specific local scope" |
| 2020 | fi |
2359 | fi |
|
|
2360 | fi |
|
|
2361 | |
|
|
2362 | if [[ "$((${full} + ${major} + ${minor} + ${micro}))" -gt 1 ]]; then |
|
|
2363 | die "${FUNCNAME}(): '--full', '--major', '--minor' or '--micro' options cannot be specified simultaneously" |
|
|
2364 | fi |
|
|
2365 | |
|
|
2366 | if [[ "${language}" == "1" ]]; then |
|
|
2367 | if [[ "${final_ABI}" == "1" ]]; then |
|
|
2368 | PYTHON_ABI="$(PYTHON -f --ABI)" |
|
|
2369 | elif [[ -z "${PYTHON_ABI}" ]]; then |
|
|
2370 | PYTHON_ABI="$(PYTHON --ABI)" |
|
|
2371 | fi |
|
|
2372 | language_version="${PYTHON_ABI%%-*}" |
|
|
2373 | if [[ "${full}" == "1" ]]; then |
|
|
2374 | die "${FUNCNAME}(): '--language' and '--full' options cannot be specified simultaneously" |
|
|
2375 | elif [[ "${major}" == "1" ]]; then |
|
|
2376 | echo "${language_version%.*}" |
|
|
2377 | elif [[ "${minor}" == "1" ]]; then |
|
|
2378 | echo "${language_version#*.}" |
|
|
2379 | elif [[ "${micro}" == "1" ]]; then |
|
|
2380 | die "${FUNCNAME}(): '--language' and '--micro' options cannot be specified simultaneously" |
|
|
2381 | else |
|
|
2382 | echo "${language_version}" |
|
|
2383 | fi |
|
|
2384 | else |
|
|
2385 | if [[ "${full}" == "1" ]]; then |
|
|
2386 | python_command="import sys; print('.'.join(str(x) for x in getattr(sys, 'pypy_version_info', sys.version_info)[:3]))" |
|
|
2387 | elif [[ "${major}" == "1" ]]; then |
|
|
2388 | python_command="import sys; print(getattr(sys, 'pypy_version_info', sys.version_info)[0])" |
|
|
2389 | elif [[ "${minor}" == "1" ]]; then |
|
|
2390 | python_command="import sys; print(getattr(sys, 'pypy_version_info', sys.version_info)[1])" |
|
|
2391 | elif [[ "${micro}" == "1" ]]; then |
|
|
2392 | python_command="import sys; print(getattr(sys, 'pypy_version_info', sys.version_info)[2])" |
|
|
2393 | else |
|
|
2394 | if [[ -n "${PYTHON_ABI}" && "${final_ABI}" == "0" ]]; then |
|
|
2395 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
|
|
2396 | echo "${PYTHON_ABI}" |
|
|
2397 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
|
|
2398 | echo "${PYTHON_ABI%-jython}" |
|
|
2399 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "PyPy" ]]; then |
|
|
2400 | echo "${PYTHON_ABI#*-pypy-}" |
|
|
2401 | fi |
|
|
2402 | return |
|
|
2403 | fi |
|
|
2404 | python_command="from sys import version_info; print('.'.join(str(x) for x in version_info[:2]))" |
|
|
2405 | fi |
|
|
2406 | |
|
|
2407 | if [[ "${final_ABI}" == "1" ]]; then |
|
|
2408 | "$(PYTHON -f)" -c "${python_command}" |
|
|
2409 | else |
| 2021 | "$(PYTHON ${PYTHON_ABI})" -c "${python_command}" |
2410 | "$(PYTHON ${PYTHON_ABI})" -c "${python_command}" |
|
|
2411 | fi |
|
|
2412 | fi |
|
|
2413 | } |
|
|
2414 | |
|
|
2415 | # @FUNCTION: python_get_implementation_and_version |
|
|
2416 | # @USAGE: [-f|--final-ABI] |
|
|
2417 | # @DESCRIPTION: |
|
|
2418 | # Print name and version of Python implementation. |
|
|
2419 | # If version of Python implementation is not bound to version of Python language, then |
|
|
2420 | # version of Python language is additionally printed. |
|
|
2421 | # If --final-ABI option is specified, then final ABI from the list of enabled ABIs is used. |
|
|
2422 | python_get_implementation_and_version() { |
|
|
2423 | _python_check_python_pkg_setup_execution |
|
|
2424 | |
|
|
2425 | local final_ABI="0" PYTHON_ABI="${PYTHON_ABI}" |
|
|
2426 | |
|
|
2427 | while (($#)); do |
|
|
2428 | case "$1" in |
|
|
2429 | -f|--final-ABI) |
|
|
2430 | final_ABI="1" |
|
|
2431 | ;; |
|
|
2432 | -*) |
|
|
2433 | die "${FUNCNAME}(): Unrecognized option '$1'" |
|
|
2434 | ;; |
|
|
2435 | *) |
|
|
2436 | die "${FUNCNAME}(): Invalid usage" |
|
|
2437 | ;; |
|
|
2438 | esac |
|
|
2439 | shift |
|
|
2440 | done |
|
|
2441 | |
|
|
2442 | if [[ "${final_ABI}" == "1" ]]; then |
|
|
2443 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
2444 | die "${FUNCNAME}(): '--final-ABI' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
|
|
2445 | fi |
|
|
2446 | PYTHON_ABI="$(PYTHON -f --ABI)" |
|
|
2447 | else |
|
|
2448 | if _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
2449 | if ! _python_abi-specific_local_scope; then |
|
|
2450 | die "${FUNCNAME}() should be used in ABI-specific local scope" |
|
|
2451 | fi |
|
|
2452 | else |
|
|
2453 | PYTHON_ABI="${PYTHON_ABI:-$(PYTHON --ABI)}" |
|
|
2454 | fi |
|
|
2455 | fi |
|
|
2456 | |
|
|
2457 | if [[ "${PYTHON_ABI}" =~ ^[[:digit:]]+\.[[:digit:]]+-[[:alnum:]]+-[[:digit:]]+\.[[:digit:]]+$ ]]; then |
|
|
2458 | echo "$(_python_get_implementation "${PYTHON_ABI}") ${PYTHON_ABI##*-} (Python ${PYTHON_ABI%%-*})" |
|
|
2459 | else |
|
|
2460 | echo "$(_python_get_implementation "${PYTHON_ABI}") ${PYTHON_ABI%%-*}" |
| 2022 | fi |
2461 | fi |
| 2023 | } |
2462 | } |
| 2024 | |
2463 | |
| 2025 | # ================================================================================================ |
2464 | # ================================================================================================ |
| 2026 | # ================================ FUNCTIONS FOR RUNNING OF TESTS ================================ |
2465 | # ================================ FUNCTIONS FOR RUNNING OF TESTS ================================ |
| … | |
… | |
| 2035 | _python_test_hook() { |
2474 | _python_test_hook() { |
| 2036 | if [[ "$#" -ne 1 ]]; then |
2475 | if [[ "$#" -ne 1 ]]; then |
| 2037 | die "${FUNCNAME}() requires 1 argument" |
2476 | die "${FUNCNAME}() requires 1 argument" |
| 2038 | fi |
2477 | fi |
| 2039 | |
2478 | |
| 2040 | if _python_package_supporting_installation_for_multiple_python_abis && [[ "$(type -t "${FUNCNAME[3]}_$1_hook")" == "function" ]]; then |
2479 | if _python_package_supporting_installation_for_multiple_python_abis && [[ "$(type -t "${_PYTHON_TEST_FUNCTION}_$1_hook")" == "function" ]]; then |
| 2041 | "${FUNCNAME[3]}_$1_hook" |
2480 | "${_PYTHON_TEST_FUNCTION}_$1_hook" |
| 2042 | fi |
2481 | fi |
| 2043 | } |
2482 | } |
| 2044 | |
2483 | |
| 2045 | # @FUNCTION: python_execute_nosetests |
2484 | # @FUNCTION: python_execute_nosetests |
| 2046 | # @USAGE: [-P|--PYTHONPATH PYTHONPATH] [-s|--separate-build-dirs] [--] [arguments] |
2485 | # @USAGE: [-P|--PYTHONPATH PYTHONPATH] [-s|--separate-build-dirs] [--] [arguments] |
| … | |
… | |
| 2050 | # python_execute_nosetests_pre_hook() and python_execute_nosetests_post_hook(), if they are defined. |
2489 | # python_execute_nosetests_pre_hook() and python_execute_nosetests_post_hook(), if they are defined. |
| 2051 | python_execute_nosetests() { |
2490 | python_execute_nosetests() { |
| 2052 | _python_check_python_pkg_setup_execution |
2491 | _python_check_python_pkg_setup_execution |
| 2053 | _python_set_color_variables |
2492 | _python_set_color_variables |
| 2054 | |
2493 | |
| 2055 | local PYTHONPATH_template= separate_build_dirs= |
2494 | local PYTHONPATH_template separate_build_dirs |
| 2056 | |
2495 | |
| 2057 | while (($#)); do |
2496 | while (($#)); do |
| 2058 | case "$1" in |
2497 | case "$1" in |
| 2059 | -P|--PYTHONPATH) |
2498 | -P|--PYTHONPATH) |
| 2060 | PYTHONPATH_template="$2" |
2499 | PYTHONPATH_template="$2" |
| … | |
… | |
| 2080 | python_test_function() { |
2519 | python_test_function() { |
| 2081 | local evaluated_PYTHONPATH |
2520 | local evaluated_PYTHONPATH |
| 2082 | |
2521 | |
| 2083 | eval "evaluated_PYTHONPATH=\"${PYTHONPATH_template}\"" |
2522 | eval "evaluated_PYTHONPATH=\"${PYTHONPATH_template}\"" |
| 2084 | |
2523 | |
| 2085 | _python_test_hook pre |
2524 | _PYTHON_TEST_FUNCTION="python_execute_nosetests" _python_test_hook pre |
| 2086 | |
2525 | |
| 2087 | if [[ -n "${evaluated_PYTHONPATH}" ]]; then |
2526 | if [[ -n "${evaluated_PYTHONPATH}" ]]; then |
| 2088 | echo ${_BOLD}PYTHONPATH="${evaluated_PYTHONPATH}" nosetests --verbosity="${PYTHON_TEST_VERBOSITY}" "$@"${_NORMAL} |
2527 | echo ${_BOLD}PYTHONPATH="${evaluated_PYTHONPATH}" nosetests --verbosity="${PYTHON_TEST_VERBOSITY}" "$@"${_NORMAL} |
| 2089 | PYTHONPATH="${evaluated_PYTHONPATH}" nosetests --verbosity="${PYTHON_TEST_VERBOSITY}" "$@" || return "$?" |
2528 | PYTHONPATH="${evaluated_PYTHONPATH}" nosetests --verbosity="${PYTHON_TEST_VERBOSITY}" "$@" || return "$?" |
| 2090 | else |
2529 | else |
| 2091 | echo ${_BOLD}nosetests --verbosity="${PYTHON_TEST_VERBOSITY}" "$@"${_NORMAL} |
2530 | echo ${_BOLD}nosetests --verbosity="${PYTHON_TEST_VERBOSITY}" "$@"${_NORMAL} |
| 2092 | nosetests --verbosity="${PYTHON_TEST_VERBOSITY}" "$@" || return "$?" |
2531 | nosetests --verbosity="${PYTHON_TEST_VERBOSITY}" "$@" || return "$?" |
| 2093 | fi |
2532 | fi |
| 2094 | |
2533 | |
| 2095 | _python_test_hook post |
2534 | _PYTHON_TEST_FUNCTION="python_execute_nosetests" _python_test_hook post |
| 2096 | } |
2535 | } |
| 2097 | if _python_package_supporting_installation_for_multiple_python_abis; then |
2536 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| 2098 | python_execute_function ${separate_build_dirs:+-s} python_test_function "$@" |
2537 | python_execute_function ${separate_build_dirs:+-s} python_test_function "$@" |
| 2099 | else |
2538 | else |
| 2100 | if [[ -n "${separate_build_dirs}" ]]; then |
2539 | if [[ -n "${separate_build_dirs}" ]]; then |
| … | |
… | |
| 2114 | # python_execute_py.test_pre_hook() and python_execute_py.test_post_hook(), if they are defined. |
2553 | # python_execute_py.test_pre_hook() and python_execute_py.test_post_hook(), if they are defined. |
| 2115 | python_execute_py.test() { |
2554 | python_execute_py.test() { |
| 2116 | _python_check_python_pkg_setup_execution |
2555 | _python_check_python_pkg_setup_execution |
| 2117 | _python_set_color_variables |
2556 | _python_set_color_variables |
| 2118 | |
2557 | |
| 2119 | local PYTHONPATH_template= separate_build_dirs= |
2558 | local PYTHONPATH_template separate_build_dirs |
| 2120 | |
2559 | |
| 2121 | while (($#)); do |
2560 | while (($#)); do |
| 2122 | case "$1" in |
2561 | case "$1" in |
| 2123 | -P|--PYTHONPATH) |
2562 | -P|--PYTHONPATH) |
| 2124 | PYTHONPATH_template="$2" |
2563 | PYTHONPATH_template="$2" |
| … | |
… | |
| 2144 | python_test_function() { |
2583 | python_test_function() { |
| 2145 | local evaluated_PYTHONPATH |
2584 | local evaluated_PYTHONPATH |
| 2146 | |
2585 | |
| 2147 | eval "evaluated_PYTHONPATH=\"${PYTHONPATH_template}\"" |
2586 | eval "evaluated_PYTHONPATH=\"${PYTHONPATH_template}\"" |
| 2148 | |
2587 | |
| 2149 | _python_test_hook pre |
2588 | _PYTHON_TEST_FUNCTION="python_execute_py.test" _python_test_hook pre |
| 2150 | |
2589 | |
| 2151 | if [[ -n "${evaluated_PYTHONPATH}" ]]; then |
2590 | if [[ -n "${evaluated_PYTHONPATH}" ]]; then |
| 2152 | echo ${_BOLD}PYTHONPATH="${evaluated_PYTHONPATH}" py.test $([[ "${PYTHON_TEST_VERBOSITY}" -ge 2 ]] && echo -v) "$@"${_NORMAL} |
2591 | echo ${_BOLD}PYTHONPATH="${evaluated_PYTHONPATH}" py.test $([[ "${PYTHON_TEST_VERBOSITY}" -ge 2 ]] && echo -v) "$@"${_NORMAL} |
| 2153 | PYTHONPATH="${evaluated_PYTHONPATH}" py.test $([[ "${PYTHON_TEST_VERBOSITY}" -ge 2 ]] && echo -v) "$@" || return "$?" |
2592 | PYTHONPATH="${evaluated_PYTHONPATH}" py.test $([[ "${PYTHON_TEST_VERBOSITY}" -ge 2 ]] && echo -v) "$@" || return "$?" |
| 2154 | else |
2593 | else |
| 2155 | echo ${_BOLD}py.test $([[ "${PYTHON_TEST_VERBOSITY}" -gt 1 ]] && echo -v) "$@"${_NORMAL} |
2594 | echo ${_BOLD}py.test $([[ "${PYTHON_TEST_VERBOSITY}" -gt 1 ]] && echo -v) "$@"${_NORMAL} |
| 2156 | py.test $([[ "${PYTHON_TEST_VERBOSITY}" -gt 1 ]] && echo -v) "$@" || return "$?" |
2595 | py.test $([[ "${PYTHON_TEST_VERBOSITY}" -gt 1 ]] && echo -v) "$@" || return "$?" |
| 2157 | fi |
2596 | fi |
| 2158 | |
2597 | |
| 2159 | _python_test_hook post |
2598 | _PYTHON_TEST_FUNCTION="python_execute_py.test" _python_test_hook post |
| 2160 | } |
2599 | } |
| 2161 | if _python_package_supporting_installation_for_multiple_python_abis; then |
2600 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| 2162 | python_execute_function ${separate_build_dirs:+-s} python_test_function "$@" |
2601 | python_execute_function ${separate_build_dirs:+-s} python_test_function "$@" |
| 2163 | else |
2602 | else |
| 2164 | if [[ -n "${separate_build_dirs}" ]]; then |
2603 | if [[ -n "${separate_build_dirs}" ]]; then |
| … | |
… | |
| 2178 | # calls python_execute_trial_pre_hook() and python_execute_trial_post_hook(), if they are defined. |
2617 | # calls python_execute_trial_pre_hook() and python_execute_trial_post_hook(), if they are defined. |
| 2179 | python_execute_trial() { |
2618 | python_execute_trial() { |
| 2180 | _python_check_python_pkg_setup_execution |
2619 | _python_check_python_pkg_setup_execution |
| 2181 | _python_set_color_variables |
2620 | _python_set_color_variables |
| 2182 | |
2621 | |
| 2183 | local PYTHONPATH_template= separate_build_dirs= |
2622 | local PYTHONPATH_template separate_build_dirs |
| 2184 | |
2623 | |
| 2185 | while (($#)); do |
2624 | while (($#)); do |
| 2186 | case "$1" in |
2625 | case "$1" in |
| 2187 | -P|--PYTHONPATH) |
2626 | -P|--PYTHONPATH) |
| 2188 | PYTHONPATH_template="$2" |
2627 | PYTHONPATH_template="$2" |
| … | |
… | |
| 2208 | python_test_function() { |
2647 | python_test_function() { |
| 2209 | local evaluated_PYTHONPATH |
2648 | local evaluated_PYTHONPATH |
| 2210 | |
2649 | |
| 2211 | eval "evaluated_PYTHONPATH=\"${PYTHONPATH_template}\"" |
2650 | eval "evaluated_PYTHONPATH=\"${PYTHONPATH_template}\"" |
| 2212 | |
2651 | |
| 2213 | _python_test_hook pre |
2652 | _PYTHON_TEST_FUNCTION="python_execute_trial" _python_test_hook pre |
| 2214 | |
2653 | |
| 2215 | if [[ -n "${evaluated_PYTHONPATH}" ]]; then |
2654 | if [[ -n "${evaluated_PYTHONPATH}" ]]; then |
| 2216 | echo ${_BOLD}PYTHONPATH="${evaluated_PYTHONPATH}" trial $([[ "${PYTHON_TEST_VERBOSITY}" -ge 4 ]] && echo --spew) "$@"${_NORMAL} |
2655 | echo ${_BOLD}PYTHONPATH="${evaluated_PYTHONPATH}" trial $([[ "${PYTHON_TEST_VERBOSITY}" -ge 4 ]] && echo --spew) "$@"${_NORMAL} |
| 2217 | PYTHONPATH="${evaluated_PYTHONPATH}" trial $([[ "${PYTHON_TEST_VERBOSITY}" -ge 4 ]] && echo --spew) "$@" || return "$?" |
2656 | PYTHONPATH="${evaluated_PYTHONPATH}" trial $([[ "${PYTHON_TEST_VERBOSITY}" -ge 4 ]] && echo --spew) "$@" || return "$?" |
| 2218 | else |
2657 | else |
| 2219 | echo ${_BOLD}trial $([[ "${PYTHON_TEST_VERBOSITY}" -ge 4 ]] && echo --spew) "$@"${_NORMAL} |
2658 | echo ${_BOLD}trial $([[ "${PYTHON_TEST_VERBOSITY}" -ge 4 ]] && echo --spew) "$@"${_NORMAL} |
| 2220 | trial $([[ "${PYTHON_TEST_VERBOSITY}" -ge 4 ]] && echo --spew) "$@" || return "$?" |
2659 | trial $([[ "${PYTHON_TEST_VERBOSITY}" -ge 4 ]] && echo --spew) "$@" || return "$?" |
| 2221 | fi |
2660 | fi |
| 2222 | |
2661 | |
| 2223 | _python_test_hook post |
2662 | _PYTHON_TEST_FUNCTION="python_execute_trial" _python_test_hook post |
| 2224 | } |
2663 | } |
| 2225 | if _python_package_supporting_installation_for_multiple_python_abis; then |
2664 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| 2226 | python_execute_function ${separate_build_dirs:+-s} python_test_function "$@" |
2665 | python_execute_function ${separate_build_dirs:+-s} python_test_function "$@" |
| 2227 | else |
2666 | else |
| 2228 | if [[ -n "${separate_build_dirs}" ]]; then |
2667 | if [[ -n "${separate_build_dirs}" ]]; then |
| … | |
… | |
| 2328 | if [[ "${dir}" == "__pycache__" ]]; then |
2767 | if [[ "${dir}" == "__pycache__" ]]; then |
| 2329 | base_module_name="${compiled_file##*/}" |
2768 | base_module_name="${compiled_file##*/}" |
| 2330 | base_module_name="${base_module_name%\$py.class}" |
2769 | base_module_name="${base_module_name%\$py.class}" |
| 2331 | py_file="${compiled_file%__pycache__/*}${base_module_name}.py" |
2770 | py_file="${compiled_file%__pycache__/*}${base_module_name}.py" |
| 2332 | else |
2771 | else |
| 2333 | py_file="${compiled_file%\$py.class}" |
2772 | py_file="${compiled_file%\$py.class}.py" |
| 2334 | fi |
2773 | fi |
| 2335 | if [[ "${EBUILD_PHASE}" == "postinst" ]]; then |
2774 | if [[ "${EBUILD_PHASE}" == "postinst" ]]; then |
| 2336 | [[ -f "${py_file}" && "${compiled_file}" -nt "${py_file}" ]] && continue |
2775 | [[ -f "${py_file}" && "${compiled_file}" -nt "${py_file}" ]] && continue |
| 2337 | else |
2776 | else |
| 2338 | [[ -f "${py_file}" ]] && continue |
2777 | [[ -f "${py_file}" ]] && continue |
| … | |
… | |
| 2363 | # Byte-compile specified Python modules. |
2802 | # Byte-compile specified Python modules. |
| 2364 | # -d, -f, -l, -q and -x options passed to this function are passed to compileall.py. |
2803 | # -d, -f, -l, -q and -x options passed to this function are passed to compileall.py. |
| 2365 | # |
2804 | # |
| 2366 | # This function can be used only in pkg_postinst() phase. |
2805 | # This function can be used only in pkg_postinst() phase. |
| 2367 | python_mod_optimize() { |
2806 | python_mod_optimize() { |
|
|
2807 | if [[ "${EBUILD_PHASE}" != "postinst" ]]; then |
|
|
2808 | die "${FUNCNAME}() can be used only in pkg_postinst() phase" |
|
|
2809 | fi |
|
|
2810 | |
| 2368 | _python_check_python_pkg_setup_execution |
2811 | _python_check_python_pkg_setup_execution |
| 2369 | _python_initialize_prefix_variables |
2812 | _python_initialize_prefix_variables |
| 2370 | |
2813 | |
| 2371 | # Check if phase is pkg_postinst(). |
|
|
| 2372 | [[ "${EBUILD_PHASE}" != "postinst" ]] && die "${FUNCNAME}() can be used only in pkg_postinst() phase" |
|
|
| 2373 | |
|
|
| 2374 | if ! has "${EAPI:-0}" 0 1 2 || _python_package_supporting_installation_for_multiple_python_abis || _python_implementation || [[ "${CATEGORY}/${PN}" == "sys-apps/portage" ]]; then |
2814 | if ! has "${EAPI:-0}" 0 1 2 || _python_package_supporting_installation_for_multiple_python_abis || _python_implementation || [[ "${CATEGORY}/${PN}" == "sys-apps/portage" ]]; then |
| 2375 | # PYTHON_ABI variable cannot be local in packages not supporting installation for multiple Python ABIs. |
2815 | # PYTHON_ABI variable cannot be local in packages not supporting installation for multiple Python ABIs. |
| 2376 | 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=() |
2816 | local allow_evaluated_non_sitedir_paths="0" dir dirs=() evaluated_dirs=() evaluated_files=() file files=() iterated_PYTHON_ABIS options=() other_dirs=() other_files=() previous_PYTHON_ABI="${PYTHON_ABI}" return_code root site_packages_dirs=() site_packages_files=() stderr stderr_line |
| 2377 | |
2817 | |
| 2378 | if _python_package_supporting_installation_for_multiple_python_abis; then |
2818 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| 2379 | if has "${EAPI:-0}" 0 1 2 3 && [[ -z "${PYTHON_ABIS}" ]]; then |
2819 | if has "${EAPI:-0}" 0 1 2 3 && [[ -z "${PYTHON_ABIS}" ]]; then |
| 2380 | die "${FUNCNAME}(): python_pkg_setup() or python_execute_function() not called" |
2820 | die "${FUNCNAME}(): python_pkg_setup() or python_execute_function() not called" |
| 2381 | fi |
2821 | fi |
| … | |
… | |
| 2476 | options+=("-q") |
2916 | options+=("-q") |
| 2477 | |
2917 | |
| 2478 | for PYTHON_ABI in ${iterated_PYTHON_ABIS}; do |
2918 | for PYTHON_ABI in ${iterated_PYTHON_ABIS}; do |
| 2479 | if ((${#site_packages_dirs[@]})) || ((${#site_packages_files[@]})) || ((${#evaluated_dirs[@]})) || ((${#evaluated_files[@]})); then |
2919 | if ((${#site_packages_dirs[@]})) || ((${#site_packages_files[@]})) || ((${#evaluated_dirs[@]})) || ((${#evaluated_files[@]})); then |
| 2480 | return_code="0" |
2920 | return_code="0" |
|
|
2921 | stderr="" |
| 2481 | ebegin "Compilation and optimization of Python modules for $(python_get_implementation) $(python_get_version)" |
2922 | ebegin "Compilation and optimization of Python modules for $(python_get_implementation_and_version)" |
| 2482 | if ((${#site_packages_dirs[@]})) || ((${#evaluated_dirs[@]})); then |
2923 | if ((${#site_packages_dirs[@]})) || ((${#evaluated_dirs[@]})); then |
| 2483 | for dir in "${site_packages_dirs[@]}"; do |
2924 | for dir in "${site_packages_dirs[@]}"; do |
| 2484 | dirs+=("${root}$(python_get_sitedir)/${dir}") |
2925 | dirs+=("${root}$(python_get_sitedir)/${dir}") |
| 2485 | done |
2926 | done |
| 2486 | for dir in "${evaluated_dirs[@]}"; do |
2927 | for dir in "${evaluated_dirs[@]}"; do |
| 2487 | eval "dirs+=(\"\${root}${dir}\")" |
2928 | eval "dirs+=(\"\${root}${dir}\")" |
| 2488 | done |
2929 | done |
| 2489 | "$(PYTHON)" "${root}$(python_get_libdir)/compileall.py" "${options[@]}" "${dirs[@]}" || return_code="1" |
2930 | stderr+="${stderr:+$'\n'}$("$(PYTHON)" -m compileall "${options[@]}" "${dirs[@]}" 2>&1)" || return_code="1" |
| 2490 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" != "Jython" ]]; then |
2931 | if ! has "$(_python_get_implementation "${PYTHON_ABI}")" Jython PyPy; then |
| 2491 | "$(PYTHON)" -O "${root}$(python_get_libdir)/compileall.py" "${options[@]}" "${dirs[@]}" &> /dev/null || return_code="1" |
2932 | "$(PYTHON)" -O -m compileall "${options[@]}" "${dirs[@]}" &> /dev/null || return_code="1" |
| 2492 | fi |
2933 | fi |
| 2493 | _python_clean_compiled_modules "${dirs[@]}" |
2934 | _python_clean_compiled_modules "${dirs[@]}" |
| 2494 | fi |
2935 | fi |
| 2495 | if ((${#site_packages_files[@]})) || ((${#evaluated_files[@]})); then |
2936 | if ((${#site_packages_files[@]})) || ((${#evaluated_files[@]})); then |
| 2496 | for file in "${site_packages_files[@]}"; do |
2937 | for file in "${site_packages_files[@]}"; do |
| 2497 | files+=("${root}$(python_get_sitedir)/${file}") |
2938 | files+=("${root}$(python_get_sitedir)/${file}") |
| 2498 | done |
2939 | done |
| 2499 | for file in "${evaluated_files[@]}"; do |
2940 | for file in "${evaluated_files[@]}"; do |
| 2500 | eval "files+=(\"\${root}${file}\")" |
2941 | eval "files+=(\"\${root}${file}\")" |
| 2501 | done |
2942 | done |
| 2502 | "$(PYTHON)" "${root}$(python_get_libdir)/py_compile.py" "${files[@]}" || return_code="1" |
2943 | stderr+="${stderr:+$'\n'}$("$(PYTHON)" -m py_compile "${files[@]}" 2>&1)" || return_code="1" |
| 2503 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" != "Jython" ]]; then |
2944 | if ! has "$(_python_get_implementation "${PYTHON_ABI}")" Jython PyPy; then |
| 2504 | "$(PYTHON)" -O "${root}$(python_get_libdir)/py_compile.py" "${files[@]}" &> /dev/null || return_code="1" |
2945 | "$(PYTHON)" -O -m py_compile "${files[@]}" &> /dev/null || return_code="1" |
| 2505 | fi |
2946 | fi |
| 2506 | _python_clean_compiled_modules "${files[@]}" |
2947 | _python_clean_compiled_modules "${files[@]}" |
| 2507 | fi |
2948 | fi |
| 2508 | eend "${return_code}" |
2949 | eend "${return_code}" |
|
|
2950 | if [[ -n "${stderr}" ]]; then |
|
|
2951 | eerror "Syntax errors / warnings in Python modules for $(python_get_implementation_and_version):" &> /dev/null |
|
|
2952 | while read stderr_line; do |
|
|
2953 | eerror " ${stderr_line}" |
|
|
2954 | done <<< "${stderr}" |
|
|
2955 | fi |
| 2509 | fi |
2956 | fi |
| 2510 | unset dirs files |
2957 | unset dirs files |
| 2511 | done |
2958 | done |
| 2512 | |
2959 | |
| 2513 | if _python_package_supporting_installation_for_multiple_python_abis; then |
2960 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| … | |
… | |
| 2519 | fi |
2966 | fi |
| 2520 | fi |
2967 | fi |
| 2521 | |
2968 | |
| 2522 | if ((${#other_dirs[@]})) || ((${#other_files[@]})); then |
2969 | if ((${#other_dirs[@]})) || ((${#other_files[@]})); then |
| 2523 | return_code="0" |
2970 | return_code="0" |
|
|
2971 | stderr="" |
| 2524 | ebegin "Compilation and optimization of Python modules placed outside of site-packages directories for $(python_get_implementation) $(python_get_version)" |
2972 | ebegin "Compilation and optimization of Python modules placed outside of site-packages directories for $(python_get_implementation_and_version)" |
| 2525 | if ((${#other_dirs[@]})); then |
2973 | if ((${#other_dirs[@]})); then |
| 2526 | "$(PYTHON ${PYTHON_ABI})" "${root}$(python_get_libdir)/compileall.py" "${options[@]}" "${other_dirs[@]}" || return_code="1" |
2974 | stderr+="${stderr:+$'\n'}$("$(PYTHON ${PYTHON_ABI})" -m compileall "${options[@]}" "${other_dirs[@]}" 2>&1)" || return_code="1" |
| 2527 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" != "Jython" ]]; then |
2975 | if ! has "$(_python_get_implementation "${PYTHON_ABI}")" Jython PyPy; then |
| 2528 | "$(PYTHON ${PYTHON_ABI})" -O "${root}$(python_get_libdir)/compileall.py" "${options[@]}" "${other_dirs[@]}" &> /dev/null || return_code="1" |
2976 | "$(PYTHON ${PYTHON_ABI})" -O -m compileall "${options[@]}" "${other_dirs[@]}" &> /dev/null || return_code="1" |
| 2529 | fi |
2977 | fi |
| 2530 | _python_clean_compiled_modules "${other_dirs[@]}" |
2978 | _python_clean_compiled_modules "${other_dirs[@]}" |
| 2531 | fi |
2979 | fi |
| 2532 | if ((${#other_files[@]})); then |
2980 | if ((${#other_files[@]})); then |
| 2533 | "$(PYTHON ${PYTHON_ABI})" "${root}$(python_get_libdir)/py_compile.py" "${other_files[@]}" || return_code="1" |
2981 | stderr+="${stderr:+$'\n'}$("$(PYTHON ${PYTHON_ABI})" -m py_compile "${other_files[@]}" 2>&1)" || return_code="1" |
| 2534 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" != "Jython" ]]; then |
2982 | if ! has "$(_python_get_implementation "${PYTHON_ABI}")" Jython PyPy; then |
| 2535 | "$(PYTHON ${PYTHON_ABI})" -O "${root}$(python_get_libdir)/py_compile.py" "${other_files[@]}" &> /dev/null || return_code="1" |
2983 | "$(PYTHON ${PYTHON_ABI})" -O -m py_compile "${other_files[@]}" &> /dev/null || return_code="1" |
| 2536 | fi |
2984 | fi |
| 2537 | _python_clean_compiled_modules "${other_files[@]}" |
2985 | _python_clean_compiled_modules "${other_files[@]}" |
| 2538 | fi |
2986 | fi |
| 2539 | eend "${return_code}" |
2987 | eend "${return_code}" |
|
|
2988 | if [[ -n "${stderr}" ]]; then |
|
|
2989 | eerror "Syntax errors / warnings in Python modules placed outside of site-packages directories for $(python_get_implementation_and_version):" &> /dev/null |
|
|
2990 | while read stderr_line; do |
|
|
2991 | eerror " ${stderr_line}" |
|
|
2992 | done <<< "${stderr}" |
|
|
2993 | fi |
| 2540 | fi |
2994 | fi |
| 2541 | else |
2995 | else |
| 2542 | # Deprecated part of python_mod_optimize() |
2996 | # Deprecated part of python_mod_optimize() |
| 2543 | # ewarn |
2997 | ewarn |
| 2544 | # ewarn "Deprecation Warning: Usage of ${FUNCNAME}() in packages not supporting installation" |
2998 | ewarn "Deprecation Warning: Usage of ${FUNCNAME}() in packages not supporting installation" |
| 2545 | # ewarn "for multiple Python ABIs in EAPI <=2 is deprecated and will be disallowed on 2011-06-01." |
2999 | ewarn "for multiple Python ABIs in EAPI <=2 is deprecated and will be disallowed on 2011-08-01." |
| 2546 | # ewarn "Use EAPI >=3 and call ${FUNCNAME}() with paths having appropriate syntax." |
3000 | ewarn "Use EAPI >=3 and call ${FUNCNAME}() with paths having appropriate syntax." |
| 2547 | # ewarn "The ebuild needs to be fixed. Please report a bug, if it has not been already reported." |
3001 | ewarn "The ebuild needs to be fixed. Please report a bug, if it has not been already reported." |
| 2548 | # ewarn |
3002 | ewarn |
| 2549 | |
3003 | |
| 2550 | local myroot mydirs=() myfiles=() myopts=() return_code="0" |
3004 | local myroot mydirs=() myfiles=() myopts=() return_code="0" |
| 2551 | |
3005 | |
| 2552 | # strip trailing slash |
3006 | # strip trailing slash |
| 2553 | myroot="${EROOT%/}" |
3007 | myroot="${EROOT%/}" |
| … | |
… | |
| 2622 | # @DESCRIPTION: |
3076 | # @DESCRIPTION: |
| 2623 | # Delete orphaned byte-compiled Python modules corresponding to specified Python modules. |
3077 | # Delete orphaned byte-compiled Python modules corresponding to specified Python modules. |
| 2624 | # |
3078 | # |
| 2625 | # This function can be used only in pkg_postrm() phase. |
3079 | # This function can be used only in pkg_postrm() phase. |
| 2626 | python_mod_cleanup() { |
3080 | python_mod_cleanup() { |
|
|
3081 | if [[ "${EBUILD_PHASE}" != "postrm" ]]; then |
|
|
3082 | die "${FUNCNAME}() can be used only in pkg_postrm() phase" |
|
|
3083 | fi |
|
|
3084 | |
| 2627 | _python_check_python_pkg_setup_execution |
3085 | _python_check_python_pkg_setup_execution |
| 2628 | _python_initialize_prefix_variables |
3086 | _python_initialize_prefix_variables |
| 2629 | |
3087 | |
| 2630 | local allow_evaluated_non_sitedir_paths="0" dir iterated_PYTHON_ABIS PYTHON_ABI="${PYTHON_ABI}" root search_paths=() sitedir |
3088 | local allow_evaluated_non_sitedir_paths="0" dir iterated_PYTHON_ABIS PYTHON_ABI="${PYTHON_ABI}" root search_paths=() sitedir |
| 2631 | |
|
|
| 2632 | # Check if phase is pkg_postrm(). |
|
|
| 2633 | [[ "${EBUILD_PHASE}" != "postrm" ]] && die "${FUNCNAME}() can be used only in pkg_postrm() phase" |
|
|
| 2634 | |
3089 | |
| 2635 | if _python_package_supporting_installation_for_multiple_python_abis; then |
3090 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| 2636 | if has "${EAPI:-0}" 0 1 2 3 && [[ -z "${PYTHON_ABIS}" ]]; then |
3091 | if has "${EAPI:-0}" 0 1 2 3 && [[ -z "${PYTHON_ABIS}" ]]; then |
| 2637 | die "${FUNCNAME}(): python_pkg_setup() or python_execute_function() not called" |
3092 | die "${FUNCNAME}(): python_pkg_setup() or python_execute_function() not called" |
| 2638 | fi |
3093 | fi |
| … | |
… | |
| 2702 | fi |
3157 | fi |
| 2703 | shift |
3158 | shift |
| 2704 | done |
3159 | done |
| 2705 | else |
3160 | else |
| 2706 | # Deprecated part of python_mod_cleanup() |
3161 | # Deprecated part of python_mod_cleanup() |
| 2707 | # ewarn |
3162 | ewarn |
| 2708 | # ewarn "Deprecation Warning: Usage of ${FUNCNAME}() in packages not supporting installation" |
3163 | ewarn "Deprecation Warning: Usage of ${FUNCNAME}() in packages not supporting installation" |
| 2709 | # ewarn "for multiple Python ABIs in EAPI <=2 is deprecated and will be disallowed on 2011-06-01." |
3164 | ewarn "for multiple Python ABIs in EAPI <=2 is deprecated and will be disallowed on 2011-08-01." |
| 2710 | # ewarn "Use EAPI >=3 and call ${FUNCNAME}() with paths having appropriate syntax." |
3165 | ewarn "Use EAPI >=3 and call ${FUNCNAME}() with paths having appropriate syntax." |
| 2711 | # ewarn "The ebuild needs to be fixed. Please report a bug, if it has not been already reported." |
3166 | ewarn "The ebuild needs to be fixed. Please report a bug, if it has not been already reported." |
| 2712 | # ewarn |
3167 | ewarn |
| 2713 | |
3168 | |
| 2714 | search_paths=("${@#/}") |
3169 | search_paths=("${@#/}") |
| 2715 | search_paths=("${search_paths[@]/#/${root}/}") |
3170 | search_paths=("${search_paths[@]/#/${root}/}") |
| 2716 | fi |
3171 | fi |
| 2717 | |
3172 | |
| … | |
… | |
| 2720 | |
3175 | |
| 2721 | # ================================================================================================ |
3176 | # ================================================================================================ |
| 2722 | # ===================================== DEPRECATED FUNCTIONS ===================================== |
3177 | # ===================================== DEPRECATED FUNCTIONS ===================================== |
| 2723 | # ================================================================================================ |
3178 | # ================================================================================================ |
| 2724 | |
3179 | |
| 2725 | # Scheduled for deletion on 2011-01-01. |
3180 | fi # _PYTHON_ECLASS_INHERITED |
| 2726 | python_version() { |
|
|
| 2727 | eerror "Use PYTHON() instead of python variable. Use python_get_*() instead of PYVER* variables." |
|
|
| 2728 | die "${FUNCNAME}() is banned" |
|
|
| 2729 | } |
|
|
| 2730 | |
|
|
| 2731 | # Scheduled for deletion on 2011-01-01. |
|
|
| 2732 | python_mod_exists() { |
|
|
| 2733 | eerror "Use USE dependencies and/or has_version() instead of ${FUNCNAME}()." |
|
|
| 2734 | die "${FUNCNAME}() is banned" |
|
|
| 2735 | } |
|
|
| 2736 | |
|
|
| 2737 | # Scheduled for deletion on 2011-01-01. |
|
|
| 2738 | python_tkinter_exists() { |
|
|
| 2739 | eerror "Use PYTHON_USE_WITH=\"xml\" and python_pkg_setup() instead of ${FUNCNAME}()." |
|
|
| 2740 | die "${FUNCNAME}() is banned" |
|
|
| 2741 | } |
|
|
| 2742 | |
|
|
| 2743 | # Scheduled for deletion on 2011-04-01. |
|
|
| 2744 | python_mod_compile() { |
|
|
| 2745 | eerror "Use python_mod_optimize() instead of ${FUNCNAME}()." |
|
|
| 2746 | die "${FUNCNAME}() is banned" |
|
|
| 2747 | } |
|
|