| 1 | # Copyright 1999-2010 Gentoo Foundation |
1 | # Copyright 1999-2011 Gentoo Foundation |
| 2 | # Distributed under the terms of the GNU General Public License v2 |
2 | # Distributed under the terms of the GNU General Public License v2 |
| 3 | # $Header: /var/cvsroot/gentoo-x86/eclass/python.eclass,v 1.99 2010/05/25 19:49:54 arfrever Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/python.eclass,v 1.129 2011/08/19 10:18:59 lxnay 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 |
| … | |
… | |
| 13 | |
13 | |
| 14 | if ! has "${EAPI:-0}" 0 1 2 3; then |
14 | if ! has "${EAPI:-0}" 0 1 2 3; then |
| 15 | die "API of python.eclass in EAPI=\"${EAPI}\" not established" |
15 | die "API of python.eclass in EAPI=\"${EAPI}\" not established" |
| 16 | fi |
16 | fi |
| 17 | |
17 | |
| 18 | _CPYTHON2_SUPPORTED_ABIS=(2.4 2.5 2.6 2.7) |
18 | _CPYTHON2_GLOBALLY_SUPPORTED_ABIS=(2.4 2.5 2.6 2.7) |
| 19 | _CPYTHON3_SUPPORTED_ABIS=(3.0 3.1 3.2) |
19 | _CPYTHON3_GLOBALLY_SUPPORTED_ABIS=(3.1 3.2 3.3) |
| 20 | _JYTHON_SUPPORTED_ABIS=(2.5-jython) |
20 | _JYTHON_GLOBALLY_SUPPORTED_ABIS=(2.5-jython) |
|
|
21 | _PYPY_GLOBALLY_SUPPORTED_ABIS=(2.7-pypy-1.5) |
|
|
22 | _PYTHON_GLOBALLY_SUPPORTED_ABIS=(${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]} ${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]} ${_JYTHON_GLOBALLY_SUPPORTED_ABIS[@]} ${_PYPY_GLOBALLY_SUPPORTED_ABIS[@]}) |
|
|
23 | |
|
|
24 | # ================================================================================================ |
|
|
25 | # ===================================== HANDLING OF METADATA ===================================== |
|
|
26 | # ================================================================================================ |
|
|
27 | |
|
|
28 | _PYTHON_ABI_PATTERN_REGEX="([[:alnum:]]|\.|-|\*|\[|\])+" |
|
|
29 | |
|
|
30 | _python_check_python_abi_matching() { |
|
|
31 | local pattern patterns patterns_list="0" PYTHON_ABI |
|
|
32 | |
|
|
33 | while (($#)); do |
|
|
34 | case "$1" in |
|
|
35 | --patterns-list) |
|
|
36 | patterns_list="1" |
|
|
37 | ;; |
|
|
38 | --) |
|
|
39 | shift |
|
|
40 | break |
|
|
41 | ;; |
|
|
42 | -*) |
|
|
43 | die "${FUNCNAME}(): Unrecognized option '$1'" |
|
|
44 | ;; |
|
|
45 | *) |
|
|
46 | break |
|
|
47 | ;; |
|
|
48 | esac |
|
|
49 | shift |
|
|
50 | done |
|
|
51 | |
|
|
52 | if [[ "$#" -ne 2 ]]; then |
|
|
53 | die "${FUNCNAME}() requires 2 arguments" |
|
|
54 | fi |
|
|
55 | |
|
|
56 | PYTHON_ABI="$1" |
|
|
57 | |
|
|
58 | if [[ "${patterns_list}" == "0" ]]; then |
|
|
59 | pattern="$2" |
|
|
60 | |
|
|
61 | if [[ "${pattern}" == *"-cpython" ]]; then |
|
|
62 | [[ "${PYTHON_ABI}" =~ ^[[:digit:]]+\.[[:digit:]]+$ && "${PYTHON_ABI}" == ${pattern%-cpython} ]] |
|
|
63 | elif [[ "${pattern}" == *"-jython" ]]; then |
|
|
64 | [[ "${PYTHON_ABI}" == ${pattern} ]] |
|
|
65 | elif [[ "${pattern}" == *"-pypy-"* ]]; then |
|
|
66 | [[ "${PYTHON_ABI}" == ${pattern} ]] |
|
|
67 | else |
|
|
68 | if [[ "${PYTHON_ABI}" =~ ^[[:digit:]]+\.[[:digit:]]+$ ]]; then |
|
|
69 | [[ "${PYTHON_ABI}" == ${pattern} ]] |
|
|
70 | elif [[ "${PYTHON_ABI}" =~ ^[[:digit:]]+\.[[:digit:]]+-jython$ ]]; then |
|
|
71 | [[ "${PYTHON_ABI%-jython}" == ${pattern} ]] |
|
|
72 | elif [[ "${PYTHON_ABI}" =~ ^[[:digit:]]+\.[[:digit:]]+-pypy-[[:digit:]]+\.[[:digit:]]+$ ]]; then |
|
|
73 | [[ "${PYTHON_ABI%-pypy-*}" == ${pattern} ]] |
|
|
74 | else |
|
|
75 | die "${FUNCNAME}(): Unrecognized Python ABI '${PYTHON_ABI}'" |
|
|
76 | fi |
|
|
77 | fi |
|
|
78 | else |
|
|
79 | patterns="${2// /$'\n'}" |
|
|
80 | |
|
|
81 | while read pattern; do |
|
|
82 | if _python_check_python_abi_matching "${PYTHON_ABI}" "${pattern}"; then |
|
|
83 | return 0 |
|
|
84 | fi |
|
|
85 | done <<< "${patterns}" |
|
|
86 | |
|
|
87 | return 1 |
|
|
88 | fi |
|
|
89 | } |
|
|
90 | |
|
|
91 | _python_package_supporting_installation_for_multiple_python_abis() { |
|
|
92 | if has "${EAPI:-0}" 0 1 2 3 4; then |
|
|
93 | if [[ -n "${SUPPORT_PYTHON_ABIS}" ]]; then |
|
|
94 | return 0 |
|
|
95 | else |
|
|
96 | return 1 |
|
|
97 | fi |
|
|
98 | else |
|
|
99 | die "${FUNCNAME}(): Support for EAPI=\"${EAPI}\" not implemented" |
|
|
100 | fi |
|
|
101 | } |
| 21 | |
102 | |
| 22 | # @ECLASS-VARIABLE: PYTHON_DEPEND |
103 | # @ECLASS-VARIABLE: PYTHON_DEPEND |
| 23 | # @DESCRIPTION: |
104 | # @DESCRIPTION: |
| 24 | # Specification of dependency on dev-lang/python. |
105 | # Specification of dependency on dev-lang/python. |
| 25 | # Syntax: |
106 | # Syntax: |
| … | |
… | |
| 27 | # version_components_group: <major_version[:[minimal_version][:maximal_version]]> |
108 | # version_components_group: <major_version[:[minimal_version][:maximal_version]]> |
| 28 | # major_version: <2|3|*> |
109 | # major_version: <2|3|*> |
| 29 | # minimal_version: <minimal_major_version.minimal_minor_version> |
110 | # minimal_version: <minimal_major_version.minimal_minor_version> |
| 30 | # maximal_version: <maximal_major_version.maximal_minor_version> |
111 | # maximal_version: <maximal_major_version.maximal_minor_version> |
| 31 | |
112 | |
| 32 | _parse_PYTHON_DEPEND() { |
113 | _python_parse_PYTHON_DEPEND() { |
| 33 | local major_version maximal_version minimal_version python_all="0" python_maximal_version python_minimal_version python_versions=() python2="0" python2_maximal_version python2_minimal_version python3="0" python3_maximal_version python3_minimal_version USE_flag= version_components_group version_components_group_regex version_components_groups |
114 | local major_version maximal_version minimal_version python_all="0" python_maximal_version python_minimal_version python_versions=() python2="0" python2_maximal_version python2_minimal_version python3="0" python3_maximal_version python3_minimal_version USE_flag= version_components_group version_components_group_regex version_components_groups |
| 34 | |
115 | |
| 35 | version_components_group_regex="(2|3|\*)(:([[:digit:]]+\.[[:digit:]]+)?(:([[:digit:]]+\.[[:digit:]]+)?)?)?" |
116 | version_components_group_regex="(2|3|\*)(:([[:digit:]]+\.[[:digit:]]+)?(:([[:digit:]]+\.[[:digit:]]+)?)?)?" |
| 36 | version_components_groups="${PYTHON_DEPEND}" |
117 | version_components_groups="${PYTHON_DEPEND}" |
| 37 | |
118 | |
| … | |
… | |
| 60 | fi |
141 | fi |
| 61 | fi |
142 | fi |
| 62 | |
143 | |
| 63 | if [[ "${major_version}" == "2" ]]; then |
144 | if [[ "${major_version}" == "2" ]]; then |
| 64 | python2="1" |
145 | python2="1" |
| 65 | python_versions=("${_CPYTHON2_SUPPORTED_ABIS[@]}") |
146 | python_versions=("${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]}") |
| 66 | python2_minimal_version="${minimal_version}" |
147 | python2_minimal_version="${minimal_version}" |
| 67 | python2_maximal_version="${maximal_version}" |
148 | python2_maximal_version="${maximal_version}" |
| 68 | elif [[ "${major_version}" == "3" ]]; then |
149 | elif [[ "${major_version}" == "3" ]]; then |
| 69 | python3="1" |
150 | python3="1" |
| 70 | python_versions=("${_CPYTHON3_SUPPORTED_ABIS[@]}") |
151 | python_versions=("${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]}") |
| 71 | python3_minimal_version="${minimal_version}" |
152 | python3_minimal_version="${minimal_version}" |
| 72 | python3_maximal_version="${maximal_version}" |
153 | python3_maximal_version="${maximal_version}" |
| 73 | else |
154 | else |
| 74 | python_all="1" |
155 | python_all="1" |
| 75 | python_versions=("${_CPYTHON2_SUPPORTED_ABIS[@]}" "${_CPYTHON3_SUPPORTED_ABIS[@]}") |
156 | python_versions=("${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]}" "${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]}") |
| 76 | python_minimal_version="${minimal_version}" |
157 | python_minimal_version="${minimal_version}" |
| 77 | python_maximal_version="${maximal_version}" |
158 | python_maximal_version="${maximal_version}" |
| 78 | fi |
159 | fi |
| 79 | |
160 | |
| 80 | if [[ -n "${minimal_version}" ]] && ! has "${minimal_version}" "${python_versions[@]}"; then |
161 | if [[ -n "${minimal_version}" ]] && ! has "${minimal_version}" "${python_versions[@]}"; then |
| … | |
… | |
| 108 | |
189 | |
| 109 | if [[ "${python_all}" == "1" ]]; then |
190 | if [[ "${python_all}" == "1" ]]; then |
| 110 | if [[ -z "${python_minimal_version}" && -z "${python_maximal_version}" ]]; then |
191 | if [[ -z "${python_minimal_version}" && -z "${python_maximal_version}" ]]; then |
| 111 | _PYTHON_ATOMS+=("dev-lang/python") |
192 | _PYTHON_ATOMS+=("dev-lang/python") |
| 112 | else |
193 | else |
| 113 | python_versions=("${_CPYTHON2_SUPPORTED_ABIS[@]}" "${_CPYTHON3_SUPPORTED_ABIS[@]}") |
194 | python_versions=("${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]}" "${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]}") |
| 114 | python_minimal_version="${python_minimal_version:-${python_versions[0]}}" |
195 | python_minimal_version="${python_minimal_version:-${python_versions[0]}}" |
| 115 | python_maximal_version="${python_maximal_version:-${python_versions[${#python_versions[@]}-1]}}" |
196 | python_maximal_version="${python_maximal_version:-${python_versions[${#python_versions[@]}-1]}}" |
| 116 | _append_accepted_versions_range |
197 | _append_accepted_versions_range |
| 117 | fi |
198 | fi |
| 118 | else |
199 | else |
| 119 | if [[ "${python3}" == "1" ]]; then |
200 | if [[ "${python3}" == "1" ]]; then |
| 120 | if [[ -z "${python3_minimal_version}" && -z "${python3_maximal_version}" ]]; then |
201 | if [[ -z "${python3_minimal_version}" && -z "${python3_maximal_version}" ]]; then |
| 121 | _PYTHON_ATOMS+=("=dev-lang/python-3*") |
202 | _PYTHON_ATOMS+=("=dev-lang/python-3*") |
| 122 | else |
203 | else |
| 123 | python_versions=("${_CPYTHON3_SUPPORTED_ABIS[@]}") |
204 | python_versions=("${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]}") |
| 124 | python_minimal_version="${python3_minimal_version:-${python_versions[0]}}" |
205 | python_minimal_version="${python3_minimal_version:-${python_versions[0]}}" |
| 125 | python_maximal_version="${python3_maximal_version:-${python_versions[${#python_versions[@]}-1]}}" |
206 | python_maximal_version="${python3_maximal_version:-${python_versions[${#python_versions[@]}-1]}}" |
| 126 | _append_accepted_versions_range |
207 | _append_accepted_versions_range |
| 127 | fi |
208 | fi |
| 128 | fi |
209 | fi |
| 129 | if [[ "${python2}" == "1" ]]; then |
210 | if [[ "${python2}" == "1" ]]; then |
| 130 | if [[ -z "${python2_minimal_version}" && -z "${python2_maximal_version}" ]]; then |
211 | if [[ -z "${python2_minimal_version}" && -z "${python2_maximal_version}" ]]; then |
| 131 | _PYTHON_ATOMS+=("=dev-lang/python-2*") |
212 | _PYTHON_ATOMS+=("=dev-lang/python-2*") |
| 132 | else |
213 | else |
| 133 | python_versions=("${_CPYTHON2_SUPPORTED_ABIS[@]}") |
214 | python_versions=("${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]}") |
| 134 | python_minimal_version="${python2_minimal_version:-${python_versions[0]}}" |
215 | python_minimal_version="${python2_minimal_version:-${python_versions[0]}}" |
| 135 | python_maximal_version="${python2_maximal_version:-${python_versions[${#python_versions[@]}-1]}}" |
216 | python_maximal_version="${python2_maximal_version:-${python_versions[${#python_versions[@]}-1]}}" |
| 136 | _append_accepted_versions_range |
217 | _append_accepted_versions_range |
| 137 | fi |
218 | fi |
| 138 | fi |
219 | fi |
| … | |
… | |
| 153 | } |
234 | } |
| 154 | |
235 | |
| 155 | DEPEND=">=app-admin/eselect-python-20091230" |
236 | DEPEND=">=app-admin/eselect-python-20091230" |
| 156 | RDEPEND="${DEPEND}" |
237 | RDEPEND="${DEPEND}" |
| 157 | |
238 | |
| 158 | if [[ -n "${PYTHON_DEPEND}" && -n "${NEED_PYTHON}" ]]; then |
|
|
| 159 | die "PYTHON_DEPEND and NEED_PYTHON cannot be set simultaneously" |
|
|
| 160 | elif [[ -n "${PYTHON_DEPEND}" ]]; then |
239 | if [[ -n "${PYTHON_DEPEND}" ]]; then |
| 161 | _parse_PYTHON_DEPEND |
240 | _python_parse_PYTHON_DEPEND |
| 162 | elif [[ -n "${NEED_PYTHON}" ]]; then |
|
|
| 163 | if ! has "${EAPI:-0}" 0 1 2; then |
|
|
| 164 | eerror "Use PYTHON_DEPEND instead of NEED_PYTHON." |
|
|
| 165 | die "NEED_PYTHON cannot be used in this EAPI" |
|
|
| 166 | fi |
|
|
| 167 | _PYTHON_ATOMS=(">=dev-lang/python-${NEED_PYTHON}") |
|
|
| 168 | DEPEND+="${DEPEND:+ }${_PYTHON_ATOMS[@]}" |
|
|
| 169 | RDEPEND+="${RDEPEND:+ }${_PYTHON_ATOMS[@]}" |
|
|
| 170 | else |
241 | else |
| 171 | _PYTHON_ATOMS=("dev-lang/python") |
242 | _PYTHON_ATOMS=("dev-lang/python") |
|
|
243 | fi |
|
|
244 | unset -f _python_parse_PYTHON_DEPEND |
|
|
245 | |
|
|
246 | if [[ -n "${NEED_PYTHON}" ]]; then |
|
|
247 | eerror "Use PYTHON_DEPEND variable instead of NEED_PYTHON variable." |
|
|
248 | die "NEED_PYTHON variable is banned" |
| 172 | fi |
249 | fi |
| 173 | |
250 | |
| 174 | # @ECLASS-VARIABLE: PYTHON_USE_WITH |
251 | # @ECLASS-VARIABLE: PYTHON_USE_WITH |
| 175 | # @DESCRIPTION: |
252 | # @DESCRIPTION: |
| 176 | # Set this to a space separated list of USE flags the Python slot in use must be built with. |
253 | # Set this to a space separated list of USE flags the Python slot in use must be built with. |
| … | |
… | |
| 220 | _python_implementation() { |
297 | _python_implementation() { |
| 221 | if [[ "${CATEGORY}/${PN}" == "dev-lang/python" ]]; then |
298 | if [[ "${CATEGORY}/${PN}" == "dev-lang/python" ]]; then |
| 222 | return 0 |
299 | return 0 |
| 223 | elif [[ "${CATEGORY}/${PN}" == "dev-java/jython" ]]; then |
300 | elif [[ "${CATEGORY}/${PN}" == "dev-java/jython" ]]; then |
| 224 | return 0 |
301 | return 0 |
|
|
302 | elif [[ "${CATEGORY}/${PN}" == "dev-python/pypy" ]]; then |
|
|
303 | return 0 |
| 225 | else |
304 | else |
| 226 | return 1 |
305 | return 1 |
| 227 | fi |
306 | fi |
| 228 | } |
307 | } |
| 229 | |
308 | |
| 230 | _python_package_supporting_installation_for_multiple_python_abis() { |
309 | _python_abi-specific_local_scope() { |
| 231 | if [[ "${EBUILD_PHASE}" == "depend" ]]; then |
310 | [[ " ${FUNCNAME[@]:2} " =~ " "(_python_final_sanity_checks|python_execute_function|python_mod_optimize|python_mod_cleanup)" " ]] |
| 232 | die "${FUNCNAME}() cannot be used in global scope" |
|
|
| 233 | fi |
|
|
| 234 | |
|
|
| 235 | if has "${EAPI:-0}" 0 1 2 3 4; then |
|
|
| 236 | if [[ -n "${SUPPORT_PYTHON_ABIS}" ]]; then |
|
|
| 237 | return 0 |
|
|
| 238 | else |
|
|
| 239 | return 1 |
|
|
| 240 | fi |
|
|
| 241 | else |
|
|
| 242 | die "${FUNCNAME}(): Support for EAPI=\"${EAPI}\" not implemented" |
|
|
| 243 | fi |
|
|
| 244 | } |
311 | } |
| 245 | |
312 | |
| 246 | _python_initialize_prefix_variables() { |
313 | _python_initialize_prefix_variables() { |
| 247 | if has "${EAPI:-0}" 0 1 2; then |
314 | if has "${EAPI:-0}" 0 1 2; then |
| 248 | if [[ -n "${ROOT}" && -z "${EROOT}" ]]; then |
315 | if [[ -n "${ROOT}" && -z "${EROOT}" ]]; then |
| … | |
… | |
| 252 | ED="${D%/}${EPREFIX}/" |
319 | ED="${D%/}${EPREFIX}/" |
| 253 | fi |
320 | fi |
| 254 | fi |
321 | fi |
| 255 | } |
322 | } |
| 256 | |
323 | |
| 257 | unset PYTHON_SANITY_CHECKS |
324 | unset PYTHON_SANITY_CHECKS_EXECUTED PYTHON_SKIP_SANITY_CHECKS |
| 258 | |
325 | |
| 259 | _python_initial_sanity_checks() { |
326 | _python_initial_sanity_checks() { |
| 260 | if [[ "$(declare -p PYTHON_SANITY_CHECKS 2> /dev/null)" != "declare -- PYTHON_SANITY_CHECKS="* ]]; then |
327 | if [[ "$(declare -p PYTHON_SANITY_CHECKS_EXECUTED 2> /dev/null)" != "declare -- PYTHON_SANITY_CHECKS_EXECUTED="* || " ${FUNCNAME[@]:1} " =~ " "(python_set_active_version|python_pkg_setup)" " && -z "${PYTHON_SKIP_SANITY_CHECKS}" ]]; then |
| 261 | # Ensure that /usr/bin/python and /usr/bin/python-config are valid. |
328 | # Ensure that /usr/bin/python and /usr/bin/python-config are valid. |
| 262 | if [[ "$(readlink "${EPREFIX}/usr/bin/python")" != "python-wrapper" ]]; then |
329 | if [[ "$(readlink "${EPREFIX}/usr/bin/python")" != "python-wrapper" ]]; then |
| 263 | eerror "'${EPREFIX}/usr/bin/python' is not valid symlink." |
330 | eerror "'${EPREFIX}/usr/bin/python' is not valid symlink." |
| 264 | eerror "Use \`eselect python set \${python_interpreter}\` to fix this problem." |
331 | eerror "Use \`eselect python set \${python_interpreter}\` to fix this problem." |
| 265 | die "'${EPREFIX}/usr/bin/python' is not valid symlink" |
332 | die "'${EPREFIX}/usr/bin/python' is not valid symlink" |
| … | |
… | |
| 271 | fi |
338 | fi |
| 272 | fi |
339 | fi |
| 273 | } |
340 | } |
| 274 | |
341 | |
| 275 | _python_final_sanity_checks() { |
342 | _python_final_sanity_checks() { |
| 276 | if ! _python_implementation && [[ "$(declare -p PYTHON_SANITY_CHECKS 2> /dev/null)" != "declare -- PYTHON_SANITY_CHECKS="* ]]; then |
343 | if ! _python_implementation && [[ "$(declare -p PYTHON_SANITY_CHECKS_EXECUTED 2> /dev/null)" != "declare -- PYTHON_SANITY_CHECKS_EXECUTED="* || " ${FUNCNAME[@]:1} " =~ " "(python_set_active_version|python_pkg_setup)" " && -z "${PYTHON_SKIP_SANITY_CHECKS}" ]]; then |
| 277 | local PYTHON_ABI="${PYTHON_ABI}" |
344 | local PYTHON_ABI="${PYTHON_ABI}" |
| 278 | for PYTHON_ABI in ${PYTHON_ABIS-${PYTHON_ABI}}; do |
345 | for PYTHON_ABI in ${PYTHON_ABIS-${PYTHON_ABI}}; do |
| 279 | # Ensure that appropriate version of Python is installed. |
346 | # Ensure that appropriate version of Python is installed. |
| 280 | if ! has_version "$(python_get_implementational_package)"; then |
347 | if ! has_version "$(python_get_implementational_package)"; then |
| 281 | die "$(python_get_implementational_package) is not installed" |
348 | die "$(python_get_implementational_package) is not installed" |
| … | |
… | |
| 291 | eerror "Locally active version of Python: '$(EPYTHON="$(PYTHON)" python -c "${_PYTHON_ABI_EXTRACTION_COMMAND}")'" |
358 | eerror "Locally active version of Python: '$(EPYTHON="$(PYTHON)" python -c "${_PYTHON_ABI_EXTRACTION_COMMAND}")'" |
| 292 | die "'python' does not respect EPYTHON variable" |
359 | die "'python' does not respect EPYTHON variable" |
| 293 | fi |
360 | fi |
| 294 | done |
361 | done |
| 295 | fi |
362 | fi |
| 296 | PYTHON_SANITY_CHECKS="1" |
363 | PYTHON_SANITY_CHECKS_EXECUTED="1" |
| 297 | } |
364 | } |
|
|
365 | |
|
|
366 | # @ECLASS-VARIABLE: PYTHON_COLORS |
|
|
367 | # @DESCRIPTION: |
|
|
368 | # User-configurable colored output. |
|
|
369 | PYTHON_COLORS="${PYTHON_COLORS:-0}" |
| 298 | |
370 | |
| 299 | _python_set_color_variables() { |
371 | _python_set_color_variables() { |
| 300 | if [[ "${NOCOLOR:-false}" =~ ^(false|no)$ ]]; then |
372 | if [[ "${PYTHON_COLORS}" != "0" && "${NOCOLOR:-false}" =~ ^(false|no)$ ]]; then |
| 301 | _BOLD=$'\e[1m' |
373 | _BOLD=$'\e[1m' |
| 302 | _RED=$'\e[1;31m' |
374 | _RED=$'\e[1;31m' |
| 303 | _GREEN=$'\e[1;32m' |
375 | _GREEN=$'\e[1;32m' |
| 304 | _BLUE=$'\e[1;34m' |
376 | _BLUE=$'\e[1;34m' |
| 305 | _CYAN=$'\e[1;36m' |
377 | _CYAN=$'\e[1;36m' |
| … | |
… | |
| 314 | fi |
386 | fi |
| 315 | } |
387 | } |
| 316 | |
388 | |
| 317 | unset PYTHON_PKG_SETUP_EXECUTED |
389 | unset PYTHON_PKG_SETUP_EXECUTED |
| 318 | |
390 | |
|
|
391 | _python_check_python_pkg_setup_execution() { |
|
|
392 | [[ " ${FUNCNAME[@]:1} " =~ " "(python_set_active_version|python_pkg_setup)" " ]] && return |
|
|
393 | |
|
|
394 | if ! has "${EAPI:-0}" 0 1 2 3 && [[ -z "${PYTHON_PKG_SETUP_EXECUTED}" ]]; then |
|
|
395 | die "python_pkg_setup() not called" |
|
|
396 | fi |
|
|
397 | } |
|
|
398 | |
| 319 | # @FUNCTION: python_pkg_setup |
399 | # @FUNCTION: python_pkg_setup |
| 320 | # @DESCRIPTION: |
400 | # @DESCRIPTION: |
| 321 | # Perform sanity checks and initialize environment. |
401 | # Perform sanity checks and initialize environment. |
| 322 | # |
402 | # |
| 323 | # This function is exported in EAPI 2 and 3 when PYTHON_USE_WITH or PYTHON_USE_WITH_OR variable |
403 | # This function is exported in EAPI 2 and 3 when PYTHON_USE_WITH or PYTHON_USE_WITH_OR variable |
| 324 | # is set and always in EAPI >=4. Calling of this function is mandatory in EAPI >=4. |
404 | # is set and always in EAPI >=4. Calling of this function is mandatory in EAPI >=4. |
| 325 | # |
|
|
| 326 | # This function can be used only in pkg_setup() phase. |
|
|
| 327 | python_pkg_setup() { |
405 | python_pkg_setup() { |
| 328 | # Check if phase is pkg_setup(). |
406 | if [[ "${EBUILD_PHASE}" != "setup" ]]; then |
| 329 | [[ "${EBUILD_PHASE}" != "setup" ]] && die "${FUNCNAME}() can be used only in pkg_setup() phase" |
407 | die "${FUNCNAME}() can be used only in pkg_setup() phase" |
|
|
408 | fi |
|
|
409 | |
|
|
410 | if [[ "$#" -ne 0 ]]; then |
|
|
411 | die "${FUNCNAME}() does not accept arguments" |
|
|
412 | fi |
|
|
413 | |
|
|
414 | export JYTHON_SYSTEM_CACHEDIR="1" |
|
|
415 | addwrite "${EPREFIX}/var/cache/jython" |
| 330 | |
416 | |
| 331 | if _python_package_supporting_installation_for_multiple_python_abis; then |
417 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| 332 | _python_calculate_PYTHON_ABIS |
418 | _python_calculate_PYTHON_ABIS |
| 333 | export EPYTHON="$(PYTHON -f)" |
419 | export EPYTHON="$(PYTHON -f)" |
| 334 | else |
420 | else |
| 335 | PYTHON_ABI="${PYTHON_ABI:-$(PYTHON --ABI)}" |
421 | PYTHON_ABI="${PYTHON_ABI:-$(PYTHON --ABI)}" |
| 336 | fi |
422 | fi |
| 337 | |
423 | |
| 338 | if ! has "${EAPI:-0}" 0 1 && [[ -n "${PYTHON_USE_WITH}" || -n "${PYTHON_USE_WITH_OR}" ]]; then |
424 | if has "${EAPI:-0}" 0 1 && [[ -n "${PYTHON_USE_WITH}" || -n "${PYTHON_USE_WITH_OR}" ]]; then |
| 339 | if [[ "${PYTHON_USE_WITH_OPT}" ]]; then |
425 | if [[ "${PYTHON_USE_WITH_OPT}" ]]; then |
| 340 | if [[ "${PYTHON_USE_WITH_OPT}" == !* ]]; then |
426 | if [[ "${PYTHON_USE_WITH_OPT}" == !* ]]; then |
| 341 | use ${PYTHON_USE_WITH_OPT#!} && return |
427 | use ${PYTHON_USE_WITH_OPT#!} && return |
| 342 | else |
428 | else |
| 343 | use !${PYTHON_USE_WITH_OPT} && return |
429 | use !${PYTHON_USE_WITH_OPT} && return |
| … | |
… | |
| 366 | die "Please rebuild ${python_atom} with at least one of the following USE flags enabled: ${PYTHON_USE_WITH_OR}" |
452 | die "Please rebuild ${python_atom} with at least one of the following USE flags enabled: ${PYTHON_USE_WITH_OR}" |
| 367 | fi |
453 | fi |
| 368 | } |
454 | } |
| 369 | |
455 | |
| 370 | if _python_package_supporting_installation_for_multiple_python_abis; then |
456 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| 371 | python_execute_function -q python_pkg_setup_check_USE_flags |
457 | PYTHON_SKIP_SANITY_CHECKS="1" python_execute_function -q python_pkg_setup_check_USE_flags |
| 372 | else |
458 | else |
| 373 | python_pkg_setup_check_USE_flags |
459 | python_pkg_setup_check_USE_flags |
| 374 | fi |
460 | fi |
| 375 | |
461 | |
| 376 | unset -f python_pkg_setup_check_USE_flags |
462 | unset -f python_pkg_setup_check_USE_flags |
| 377 | fi |
463 | fi |
| 378 | |
464 | |
| 379 | PYTHON_PKG_SETUP_EXECUTED="1" |
465 | PYTHON_PKG_SETUP_EXECUTED="1" |
| 380 | } |
466 | } |
| 381 | |
467 | |
| 382 | if ! has "${EAPI:-0}" 0 1 2 3 || has "${EAPI:-0}" 2 3 && [[ -n "${PYTHON_USE_WITH}" || -n "${PYTHON_USE_WITH_OR}" ]]; then |
468 | if ! has "${EAPI:-0}" 0 1 2 3 || { has "${EAPI:-0}" 2 3 && [[ -n "${PYTHON_USE_WITH}" || -n "${PYTHON_USE_WITH_OR}" ]]; }; then |
| 383 | EXPORT_FUNCTIONS pkg_setup |
469 | EXPORT_FUNCTIONS pkg_setup |
| 384 | fi |
470 | fi |
| 385 | |
471 | |
|
|
472 | _PYTHON_SHEBANG_BASE_PART_REGEX='^#![[:space:]]*([^[:space:]]*/usr/bin/env[[:space:]]+)?([^[:space:]]*/)?(jython|pypy-c|python)' |
|
|
473 | |
| 386 | # @FUNCTION: python_convert_shebangs |
474 | # @FUNCTION: python_convert_shebangs |
| 387 | # @USAGE: [-q|--quiet] [-r|--recursive] [-x|--only-executables] [--] <Python_version> <file|directory> [files|directories] |
475 | # @USAGE: [-q|--quiet] [-r|--recursive] [-x|--only-executables] [--] <Python_ABI|Python_version> <file|directory> [files|directories] |
| 388 | # @DESCRIPTION: |
476 | # @DESCRIPTION: |
| 389 | # Convert shebangs in specified files. Directories can be specified only with --recursive option. |
477 | # Convert shebangs in specified files. Directories can be specified only with --recursive option. |
| 390 | python_convert_shebangs() { |
478 | python_convert_shebangs() { |
|
|
479 | _python_check_python_pkg_setup_execution |
|
|
480 | |
| 391 | local argument file files=() only_executables="0" python_version quiet="0" recursive="0" |
481 | local argument file files=() only_executables="0" python_interpreter quiet="0" recursive="0" |
| 392 | |
482 | |
| 393 | while (($#)); do |
483 | while (($#)); do |
| 394 | case "$1" in |
484 | case "$1" in |
| 395 | -r|--recursive) |
485 | -r|--recursive) |
| 396 | recursive="1" |
486 | recursive="1" |
| … | |
… | |
| 419 | die "${FUNCNAME}(): Missing Python version and files or directories" |
509 | die "${FUNCNAME}(): Missing Python version and files or directories" |
| 420 | elif [[ "$#" -eq 1 ]]; then |
510 | elif [[ "$#" -eq 1 ]]; then |
| 421 | die "${FUNCNAME}(): Missing files or directories" |
511 | die "${FUNCNAME}(): Missing files or directories" |
| 422 | fi |
512 | fi |
| 423 | |
513 | |
| 424 | python_version="$1" |
514 | if [[ -n "$(_python_get_implementation --ignore-invalid "$1")" ]]; then |
|
|
515 | python_interpreter="$(PYTHON "$1")" |
|
|
516 | else |
|
|
517 | python_interpreter="python$1" |
|
|
518 | fi |
| 425 | shift |
519 | shift |
| 426 | |
520 | |
| 427 | for argument in "$@"; do |
521 | for argument in "$@"; do |
| 428 | if [[ ! -e "${argument}" ]]; then |
522 | if [[ ! -e "${argument}" ]]; then |
| 429 | die "${FUNCNAME}(): '${argument}' does not exist" |
523 | die "${FUNCNAME}(): '${argument}' does not exist" |
| … | |
… | |
| 444 | |
538 | |
| 445 | for file in "${files[@]}"; do |
539 | for file in "${files[@]}"; do |
| 446 | file="${file#./}" |
540 | file="${file#./}" |
| 447 | [[ "${only_executables}" == "1" && ! -x "${file}" ]] && continue |
541 | [[ "${only_executables}" == "1" && ! -x "${file}" ]] && continue |
| 448 | |
542 | |
| 449 | if [[ "$(head -n1 "${file}")" =~ ^'#!'.*python ]]; then |
543 | if [[ "$(head -n1 "${file}")" =~ ${_PYTHON_SHEBANG_BASE_PART_REGEX} ]]; then |
| 450 | [[ "$(sed -ne "2p" "${file}")" =~ ^"# Gentoo '".*"' wrapper script generated by python_generate_wrapper_scripts()"$ ]] && continue |
544 | [[ "$(sed -ne "2p" "${file}")" =~ ^"# Gentoo '".*"' wrapper script generated by python_generate_wrapper_scripts()"$ ]] && continue |
| 451 | |
545 | |
| 452 | if [[ "${quiet}" == "0" ]]; then |
546 | if [[ "${quiet}" == "0" ]]; then |
| 453 | einfo "Converting shebang in '${file}'" |
547 | einfo "Converting shebang in '${file}'" |
| 454 | fi |
548 | fi |
| 455 | |
549 | |
| 456 | sed -e "1s/python\([[:digit:]]\+\(\.[[:digit:]]\+\)\?\)\?/python${python_version}/" -i "${file}" || die "Conversion of shebang in '${file}' failed" |
550 | sed -e "1s:^#![[:space:]]*\([^[:space:]]*/usr/bin/env[[:space:]]\)\?[[:space:]]*\([^[:space:]]*/\)\?\(jython\|pypy-c\|python\)\([[:digit:]]\+\(\.[[:digit:]]\+\)\?\)\?\(\$\|[[:space:]].*\):#!\1\2${python_interpreter}\6:" -i "${file}" || die "Conversion of shebang in '${file}' failed" |
| 457 | |
|
|
| 458 | # Delete potential whitespace after "#!". |
|
|
| 459 | sed -e '1s/\(^#!\)[[:space:]]*/\1/' -i "${file}" || die "sed '${file}' failed" |
|
|
| 460 | fi |
551 | fi |
| 461 | done |
552 | done |
| 462 | } |
553 | } |
| 463 | |
554 | |
| 464 | # @FUNCTION: python_clean_installation_image |
555 | # @FUNCTION: python_clean_installation_image |
| 465 | # @USAGE: [-q|--quiet] |
556 | # @USAGE: [-q|--quiet] |
| 466 | # @DESCRIPTION: |
557 | # @DESCRIPTION: |
| 467 | # Delete needless files in installation image. |
558 | # Delete needless files in installation image. |
|
|
559 | # |
|
|
560 | # This function can be used only in src_install() phase. |
| 468 | python_clean_installation_image() { |
561 | python_clean_installation_image() { |
|
|
562 | if [[ "${EBUILD_PHASE}" != "install" ]]; then |
|
|
563 | die "${FUNCNAME}() can be used only in src_install() phase" |
|
|
564 | fi |
|
|
565 | |
|
|
566 | _python_check_python_pkg_setup_execution |
| 469 | _python_initialize_prefix_variables |
567 | _python_initialize_prefix_variables |
| 470 | |
568 | |
| 471 | local file files=() quiet="0" |
569 | local file files=() quiet="0" |
| 472 | |
|
|
| 473 | # Check if phase is src_install(). |
|
|
| 474 | [[ "${EBUILD_PHASE}" != "install" ]] && die "${FUNCNAME}() can be used only in src_install() phase" |
|
|
| 475 | |
570 | |
| 476 | while (($#)); do |
571 | while (($#)); do |
| 477 | case "$1" in |
572 | case "$1" in |
| 478 | -q|--quiet) |
573 | -q|--quiet) |
| 479 | quiet="1" |
574 | quiet="1" |
| … | |
… | |
| 530 | # @ECLASS-VARIABLE: SUPPORT_PYTHON_ABIS |
625 | # @ECLASS-VARIABLE: SUPPORT_PYTHON_ABIS |
| 531 | # @DESCRIPTION: |
626 | # @DESCRIPTION: |
| 532 | # Set this in EAPI <= 4 to indicate that current package supports installation for |
627 | # Set this in EAPI <= 4 to indicate that current package supports installation for |
| 533 | # multiple Python ABIs. |
628 | # multiple Python ABIs. |
| 534 | |
629 | |
|
|
630 | # @ECLASS-VARIABLE: PYTHON_TESTS_RESTRICTED_ABIS |
|
|
631 | # @DESCRIPTION: |
|
|
632 | # Space-separated list of Python ABI patterns. Testing in Python ABIs matching any Python ABI |
|
|
633 | # patterns specified in this list is skipped. |
|
|
634 | |
| 535 | # @ECLASS-VARIABLE: PYTHON_EXPORT_PHASE_FUNCTIONS |
635 | # @ECLASS-VARIABLE: PYTHON_EXPORT_PHASE_FUNCTIONS |
| 536 | # @DESCRIPTION: |
636 | # @DESCRIPTION: |
| 537 | # Set this to export phase functions for the following ebuild phases: |
637 | # Set this to export phase functions for the following ebuild phases: |
| 538 | # src_prepare, src_configure, src_compile, src_test, src_install. |
638 | # src_prepare(), src_configure(), src_compile(), src_test(), src_install(). |
| 539 | if ! has "${EAPI:-0}" 0 1; then |
639 | if ! has "${EAPI:-0}" 0 1; then |
| 540 | python_src_prepare() { |
640 | python_src_prepare() { |
|
|
641 | if [[ "${EBUILD_PHASE}" != "prepare" ]]; then |
|
|
642 | die "${FUNCNAME}() can be used only in src_prepare() phase" |
|
|
643 | fi |
|
|
644 | |
| 541 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
645 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
| 542 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
646 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
| 543 | fi |
647 | fi |
| 544 | |
648 | |
|
|
649 | _python_check_python_pkg_setup_execution |
|
|
650 | |
|
|
651 | if [[ "$#" -ne 0 ]]; then |
|
|
652 | die "${FUNCNAME}() does not accept arguments" |
|
|
653 | fi |
|
|
654 | |
| 545 | python_copy_sources |
655 | python_copy_sources |
| 546 | } |
656 | } |
| 547 | |
657 | |
| 548 | for python_default_function in src_configure src_compile src_test src_install; do |
658 | for python_default_function in src_configure src_compile src_test; do |
| 549 | eval "python_${python_default_function}() { |
659 | eval "python_${python_default_function}() { |
|
|
660 | if [[ \"\${EBUILD_PHASE}\" != \"${python_default_function#src_}\" ]]; then |
|
|
661 | die \"\${FUNCNAME}() can be used only in ${python_default_function}() phase\" |
|
|
662 | fi |
|
|
663 | |
| 550 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
664 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
| 551 | die \"\${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs\" |
665 | die \"\${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs\" |
| 552 | fi |
666 | fi |
| 553 | |
667 | |
|
|
668 | _python_check_python_pkg_setup_execution |
|
|
669 | |
| 554 | python_execute_function -d -s -- \"\$@\" |
670 | python_execute_function -d -s -- \"\$@\" |
| 555 | }" |
671 | }" |
| 556 | done |
672 | done |
| 557 | unset python_default_function |
673 | unset python_default_function |
| 558 | |
674 | |
|
|
675 | python_src_install() { |
|
|
676 | if [[ "${EBUILD_PHASE}" != "install" ]]; then |
|
|
677 | die "${FUNCNAME}() can be used only in src_install() phase" |
|
|
678 | fi |
|
|
679 | |
|
|
680 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
681 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
|
|
682 | fi |
|
|
683 | |
|
|
684 | _python_check_python_pkg_setup_execution |
|
|
685 | |
|
|
686 | if has "${EAPI:-0}" 0 1 2 3; then |
|
|
687 | python_execute_function -d -s -- "$@" |
|
|
688 | else |
|
|
689 | python_installation() { |
|
|
690 | emake DESTDIR="${T}/images/${PYTHON_ABI}" install "$@" |
|
|
691 | } |
|
|
692 | python_execute_function -s python_installation "$@" |
|
|
693 | unset python_installation |
|
|
694 | |
|
|
695 | python_merge_intermediate_installation_images "${T}/images" |
|
|
696 | fi |
|
|
697 | } |
|
|
698 | |
| 559 | if [[ -n "${PYTHON_EXPORT_PHASE_FUNCTIONS}" ]]; then |
699 | if [[ -n "${PYTHON_EXPORT_PHASE_FUNCTIONS}" ]]; then |
| 560 | EXPORT_FUNCTIONS src_prepare src_configure src_compile src_test src_install |
700 | EXPORT_FUNCTIONS src_prepare src_configure src_compile src_test src_install |
| 561 | fi |
701 | fi |
| 562 | fi |
702 | fi |
| 563 | |
703 | |
|
|
704 | if has "${EAPI:-0}" 0 1 2 3 4; then |
| 564 | unset PYTHON_ABIS |
705 | unset PYTHON_ABIS |
|
|
706 | fi |
| 565 | |
707 | |
| 566 | _python_calculate_PYTHON_ABIS() { |
708 | _python_calculate_PYTHON_ABIS() { |
| 567 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
709 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
| 568 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
710 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
| 569 | fi |
711 | fi |
| 570 | |
712 | |
| 571 | _python_initial_sanity_checks |
713 | _python_initial_sanity_checks |
| 572 | |
714 | |
| 573 | # USE_${ABI_TYPE^^} and RESTRICT_${ABI_TYPE^^}_ABIS variables hopefully will be included in EAPI >= 5. |
|
|
| 574 | if [[ "$(declare -p PYTHON_ABIS 2> /dev/null)" != "declare -x PYTHON_ABIS="* ]] && has "${EAPI:-0}" 0 1 2 3 4; then |
715 | if [[ "$(declare -p PYTHON_ABIS 2> /dev/null)" != "declare -x PYTHON_ABIS="* ]] && has "${EAPI:-0}" 0 1 2 3 4; then |
| 575 | local PYTHON_ABI restricted_ABI support_ABI supported_PYTHON_ABIS= |
716 | local PYTHON_ABI |
| 576 | PYTHON_ABI_SUPPORTED_VALUES="${_CPYTHON2_SUPPORTED_ABIS[@]} ${_CPYTHON3_SUPPORTED_ABIS[@]} ${_JYTHON_SUPPORTED_ABIS[@]}" |
|
|
| 577 | |
717 | |
| 578 | if [[ "$(declare -p USE_PYTHON 2> /dev/null)" == "declare -x USE_PYTHON="* ]]; then |
718 | if [[ "$(declare -p USE_PYTHON 2> /dev/null)" == "declare -x USE_PYTHON="* ]]; then |
| 579 | local cpython_enabled="0" |
719 | local cpython_enabled="0" |
| 580 | |
720 | |
| 581 | if [[ -z "${USE_PYTHON}" ]]; then |
721 | if [[ -z "${USE_PYTHON}" ]]; then |
| 582 | die "USE_PYTHON variable is empty" |
722 | die "USE_PYTHON variable is empty" |
| 583 | fi |
723 | fi |
| 584 | |
724 | |
| 585 | for PYTHON_ABI in ${USE_PYTHON}; do |
725 | for PYTHON_ABI in ${USE_PYTHON}; do |
| 586 | if ! has "${PYTHON_ABI}" ${PYTHON_ABI_SUPPORTED_VALUES}; then |
726 | if ! has "${PYTHON_ABI}" "${_PYTHON_GLOBALLY_SUPPORTED_ABIS[@]}"; then |
| 587 | die "USE_PYTHON variable contains invalid value '${PYTHON_ABI}'" |
727 | die "USE_PYTHON variable contains invalid value '${PYTHON_ABI}'" |
| 588 | fi |
728 | fi |
| 589 | |
729 | |
| 590 | if has "${PYTHON_ABI}" "${_CPYTHON2_SUPPORTED_ABIS[@]}" "${_CPYTHON3_SUPPORTED_ABIS[@]}"; then |
730 | if has "${PYTHON_ABI}" "${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]}" "${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]}"; then |
| 591 | cpython_enabled="1" |
731 | cpython_enabled="1" |
| 592 | fi |
732 | fi |
| 593 | |
733 | |
| 594 | support_ABI="1" |
734 | if ! _python_check_python_abi_matching --patterns-list "${PYTHON_ABI}" "${RESTRICT_PYTHON_ABIS}"; then |
| 595 | for restricted_ABI in ${RESTRICT_PYTHON_ABIS}; do |
735 | export PYTHON_ABIS+="${PYTHON_ABIS:+ }${PYTHON_ABI}" |
| 596 | if [[ "${PYTHON_ABI}" == ${restricted_ABI} ]]; then |
736 | fi |
| 597 | support_ABI="0" |
737 | done |
|
|
738 | |
|
|
739 | if [[ -z "${PYTHON_ABIS//[${IFS}]/}" ]]; then |
|
|
740 | die "USE_PYTHON variable does not enable any Python ABI supported by ${CATEGORY}/${PF}" |
|
|
741 | fi |
|
|
742 | |
|
|
743 | if [[ "${cpython_enabled}" == "0" ]]; then |
|
|
744 | die "USE_PYTHON variable does not enable any CPython ABI" |
|
|
745 | fi |
|
|
746 | else |
|
|
747 | local python_version python2_version python3_version support_python_major_version |
|
|
748 | |
|
|
749 | if ! has_version "dev-lang/python"; then |
|
|
750 | die "${FUNCNAME}(): 'dev-lang/python' is not installed" |
|
|
751 | fi |
|
|
752 | |
|
|
753 | python_version="$("${EPREFIX}/usr/bin/python" -c 'from sys import version_info; print(".".join(str(x) for x in version_info[:2]))')" |
|
|
754 | |
|
|
755 | if has_version "=dev-lang/python-2*"; then |
|
|
756 | if [[ "$(readlink "${EPREFIX}/usr/bin/python2")" != "python2."* ]]; then |
|
|
757 | die "'${EPREFIX}/usr/bin/python2' is not valid symlink" |
|
|
758 | fi |
|
|
759 | |
|
|
760 | python2_version="$("${EPREFIX}/usr/bin/python2" -c 'from sys import version_info; print(".".join(str(x) for x in version_info[:2]))')" |
|
|
761 | |
|
|
762 | support_python_major_version="0" |
|
|
763 | for PYTHON_ABI in "${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]}"; do |
|
|
764 | if ! _python_check_python_abi_matching --patterns-list "${PYTHON_ABI}" "${RESTRICT_PYTHON_ABIS}"; then |
|
|
765 | support_python_major_version="1" |
| 598 | break |
766 | break |
| 599 | fi |
767 | fi |
| 600 | done |
768 | done |
| 601 | [[ "${support_ABI}" == "1" ]] && export PYTHON_ABIS+="${PYTHON_ABIS:+ }${PYTHON_ABI}" |
|
|
| 602 | done |
|
|
| 603 | |
|
|
| 604 | if [[ -z "${PYTHON_ABIS//[${IFS}]/}" ]]; then |
|
|
| 605 | die "USE_PYTHON variable does not enable any Python ABI supported by ${CATEGORY}/${PF}" |
|
|
| 606 | fi |
|
|
| 607 | |
|
|
| 608 | if [[ "${cpython_enabled}" == "0" ]]; then |
|
|
| 609 | die "USE_PYTHON variable does not enable any CPython ABI" |
|
|
| 610 | fi |
|
|
| 611 | else |
|
|
| 612 | local python_version python2_version= python3_version= support_python_major_version |
|
|
| 613 | |
|
|
| 614 | if ! has_version "dev-lang/python"; then |
|
|
| 615 | die "${FUNCNAME}(): 'dev-lang/python' is not installed" |
|
|
| 616 | fi |
|
|
| 617 | |
|
|
| 618 | python_version="$("${EPREFIX}/usr/bin/python" -c 'from sys import version_info; print(".".join(str(x) for x in version_info[:2]))')" |
|
|
| 619 | |
|
|
| 620 | if has_version "=dev-lang/python-2*"; then |
|
|
| 621 | if [[ "$(readlink "${EPREFIX}/usr/bin/python2")" != "python2."* ]]; then |
|
|
| 622 | die "'${EPREFIX}/usr/bin/python2' is not valid symlink" |
|
|
| 623 | fi |
|
|
| 624 | |
|
|
| 625 | python2_version="$("${EPREFIX}/usr/bin/python2" -c 'from sys import version_info; print(".".join(str(x) for x in version_info[:2]))')" |
|
|
| 626 | |
|
|
| 627 | for PYTHON_ABI in "${_CPYTHON2_SUPPORTED_ABIS[@]}"; do |
|
|
| 628 | support_python_major_version="1" |
|
|
| 629 | for restricted_ABI in ${RESTRICT_PYTHON_ABIS}; do |
|
|
| 630 | if [[ "${PYTHON_ABI}" == ${restricted_ABI} ]]; then |
|
|
| 631 | support_python_major_version="0" |
|
|
| 632 | fi |
|
|
| 633 | done |
|
|
| 634 | [[ "${support_python_major_version}" == "1" ]] && break |
|
|
| 635 | done |
|
|
| 636 | if [[ "${support_python_major_version}" == "1" ]]; then |
769 | if [[ "${support_python_major_version}" == "1" ]]; then |
| 637 | for restricted_ABI in ${RESTRICT_PYTHON_ABIS}; do |
770 | if _python_check_python_abi_matching --patterns-list "${python2_version}" "${RESTRICT_PYTHON_ABIS}"; then |
| 638 | if [[ "${python2_version}" == ${restricted_ABI} ]]; then |
|
|
| 639 | die "Active version of Python 2 is not supported by ${CATEGORY}/${PF}" |
771 | die "Active version of CPython 2 is not supported by ${CATEGORY}/${PF}" |
| 640 | fi |
772 | fi |
| 641 | done |
|
|
| 642 | else |
773 | else |
| 643 | python2_version="" |
774 | python2_version="" |
| 644 | fi |
775 | fi |
| 645 | fi |
776 | fi |
| 646 | |
777 | |
| … | |
… | |
| 649 | die "'${EPREFIX}/usr/bin/python3' is not valid symlink" |
780 | die "'${EPREFIX}/usr/bin/python3' is not valid symlink" |
| 650 | fi |
781 | fi |
| 651 | |
782 | |
| 652 | python3_version="$("${EPREFIX}/usr/bin/python3" -c 'from sys import version_info; print(".".join(str(x) for x in version_info[:2]))')" |
783 | python3_version="$("${EPREFIX}/usr/bin/python3" -c 'from sys import version_info; print(".".join(str(x) for x in version_info[:2]))')" |
| 653 | |
784 | |
|
|
785 | support_python_major_version="0" |
| 654 | for PYTHON_ABI in "${_CPYTHON3_SUPPORTED_ABIS[@]}"; do |
786 | for PYTHON_ABI in "${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]}"; do |
|
|
787 | if ! _python_check_python_abi_matching --patterns-list "${PYTHON_ABI}" "${RESTRICT_PYTHON_ABIS}"; then |
| 655 | support_python_major_version="1" |
788 | support_python_major_version="1" |
| 656 | for restricted_ABI in ${RESTRICT_PYTHON_ABIS}; do |
789 | break |
| 657 | if [[ "${PYTHON_ABI}" == ${restricted_ABI} ]]; then |
|
|
| 658 | support_python_major_version="0" |
|
|
| 659 | fi |
790 | fi |
| 660 | done |
|
|
| 661 | [[ "${support_python_major_version}" == "1" ]] && break |
|
|
| 662 | done |
791 | done |
| 663 | if [[ "${support_python_major_version}" == "1" ]]; then |
792 | if [[ "${support_python_major_version}" == "1" ]]; then |
| 664 | for restricted_ABI in ${RESTRICT_PYTHON_ABIS}; do |
793 | if _python_check_python_abi_matching --patterns-list "${python3_version}" "${RESTRICT_PYTHON_ABIS}"; then |
| 665 | if [[ "${python3_version}" == ${restricted_ABI} ]]; then |
|
|
| 666 | die "Active version of Python 3 is not supported by ${CATEGORY}/${PF}" |
794 | die "Active version of CPython 3 is not supported by ${CATEGORY}/${PF}" |
| 667 | fi |
795 | fi |
| 668 | done |
|
|
| 669 | else |
796 | else |
| 670 | python3_version="" |
797 | python3_version="" |
| 671 | fi |
798 | fi |
| 672 | fi |
799 | fi |
| 673 | |
800 | |
| … | |
… | |
| 687 | export PYTHON_ABIS="${PYTHON_ABIS% }" |
814 | export PYTHON_ABIS="${PYTHON_ABIS% }" |
| 688 | fi |
815 | fi |
| 689 | fi |
816 | fi |
| 690 | |
817 | |
| 691 | _python_final_sanity_checks |
818 | _python_final_sanity_checks |
|
|
819 | } |
|
|
820 | |
|
|
821 | _python_prepare_flags() { |
|
|
822 | local array=() deleted_flag element flags new_value old_flag old_value operator pattern prefix variable |
|
|
823 | |
|
|
824 | for variable in CPPFLAGS CFLAGS CXXFLAGS LDFLAGS; do |
|
|
825 | eval "_PYTHON_SAVED_${variable}=\"\${!variable}\"" |
|
|
826 | for prefix in PYTHON_USER_ PYTHON_; do |
|
|
827 | if [[ "$(declare -p ${prefix}${variable} 2> /dev/null)" == "declare -a ${prefix}${variable}="* ]]; then |
|
|
828 | eval "array=(\"\${${prefix}${variable}[@]}\")" |
|
|
829 | for element in "${array[@]}"; do |
|
|
830 | if [[ "${element}" =~ ^${_PYTHON_ABI_PATTERN_REGEX}\ (\+|-)\ .+ ]]; then |
|
|
831 | pattern="${element%% *}" |
|
|
832 | element="${element#* }" |
|
|
833 | operator="${element%% *}" |
|
|
834 | flags="${element#* }" |
|
|
835 | if _python_check_python_abi_matching "${PYTHON_ABI}" "${pattern}"; then |
|
|
836 | if [[ "${operator}" == "+" ]]; then |
|
|
837 | eval "export ${variable}+=\"\${variable:+ }${flags}\"" |
|
|
838 | elif [[ "${operator}" == "-" ]]; then |
|
|
839 | flags="${flags// /$'\n'}" |
|
|
840 | old_value="${!variable// /$'\n'}" |
|
|
841 | new_value="" |
|
|
842 | while read old_flag; do |
|
|
843 | while read deleted_flag; do |
|
|
844 | if [[ "${old_flag}" == ${deleted_flag} ]]; then |
|
|
845 | continue 2 |
|
|
846 | fi |
|
|
847 | done <<< "${flags}" |
|
|
848 | new_value+="${new_value:+ }${old_flag}" |
|
|
849 | done <<< "${old_value}" |
|
|
850 | eval "export ${variable}=\"\${new_value}\"" |
|
|
851 | fi |
|
|
852 | fi |
|
|
853 | else |
|
|
854 | die "Element '${element}' of ${prefix}${variable} array has invalid syntax" |
|
|
855 | fi |
|
|
856 | done |
|
|
857 | elif [[ -n "$(declare -p ${prefix}${variable} 2> /dev/null)" ]]; then |
|
|
858 | die "${prefix}${variable} should be indexed array" |
|
|
859 | fi |
|
|
860 | done |
|
|
861 | done |
|
|
862 | } |
|
|
863 | |
|
|
864 | _python_restore_flags() { |
|
|
865 | local variable |
|
|
866 | |
|
|
867 | for variable in CPPFLAGS CFLAGS CXXFLAGS LDFLAGS; do |
|
|
868 | eval "${variable}=\"\${_PYTHON_SAVED_${variable}}\"" |
|
|
869 | unset _PYTHON_SAVED_${variable} |
|
|
870 | done |
| 692 | } |
871 | } |
| 693 | |
872 | |
| 694 | # @FUNCTION: python_execute_function |
873 | # @FUNCTION: python_execute_function |
| 695 | # @USAGE: [--action-message message] [-d|--default-function] [--failure-message message] [-f|--final-ABI] [--nonfatal] [-q|--quiet] [-s|--separate-build-dirs] [--source-dir source_directory] [--] <function> [arguments] |
874 | # @USAGE: [--action-message message] [-d|--default-function] [--failure-message message] [-f|--final-ABI] [--nonfatal] [-q|--quiet] [-s|--separate-build-dirs] [--source-dir source_directory] [--] <function> [arguments] |
| 696 | # @DESCRIPTION: |
875 | # @DESCRIPTION: |
| … | |
… | |
| 699 | python_execute_function() { |
878 | python_execute_function() { |
| 700 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
879 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
| 701 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
880 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
| 702 | fi |
881 | fi |
| 703 | |
882 | |
|
|
883 | _python_check_python_pkg_setup_execution |
| 704 | _python_set_color_variables |
884 | _python_set_color_variables |
| 705 | |
885 | |
| 706 | local action action_message action_message_template= default_function="0" failure_message failure_message_template= final_ABI="0" function i iterated_PYTHON_ABIS nonfatal="0" previous_directory previous_directory_stack previous_directory_stack_length PYTHON_ABI quiet="0" separate_build_dirs="0" source_dir= |
886 | local action action_message action_message_template default_function="0" failure_message failure_message_template final_ABI="0" function iterated_PYTHON_ABIS nonfatal="0" previous_directory previous_directory_stack previous_directory_stack_length PYTHON_ABI quiet="0" return_code separate_build_dirs="0" source_dir |
| 707 | |
887 | |
| 708 | while (($#)); do |
888 | while (($#)); do |
| 709 | case "$1" in |
889 | case "$1" in |
| 710 | --action-message) |
890 | --action-message) |
| 711 | action_message_template="$2" |
891 | action_message_template="$2" |
| … | |
… | |
| 798 | fi |
978 | fi |
| 799 | function="python_default_function" |
979 | function="python_default_function" |
| 800 | fi |
980 | fi |
| 801 | |
981 | |
| 802 | # Ensure that python_execute_function() cannot be directly or indirectly called by python_execute_function(). |
982 | # Ensure that python_execute_function() cannot be directly or indirectly called by python_execute_function(). |
| 803 | for ((i = 1; i < "${#FUNCNAME[@]}"; i++)); do |
983 | if _python_abi-specific_local_scope; then |
| 804 | if [[ "${FUNCNAME[${i}]}" == "${FUNCNAME}" ]]; then |
|
|
| 805 | die "${FUNCNAME}(): Invalid call stack" |
984 | die "${FUNCNAME}(): Invalid call stack" |
| 806 | fi |
985 | fi |
| 807 | done |
|
|
| 808 | |
986 | |
| 809 | if [[ "${quiet}" == "0" ]]; then |
987 | if [[ "${quiet}" == "0" ]]; then |
| 810 | [[ "${EBUILD_PHASE}" == "setup" ]] && action="Setting up" |
988 | [[ "${EBUILD_PHASE}" == "setup" ]] && action="Setting up" |
| 811 | [[ "${EBUILD_PHASE}" == "unpack" ]] && action="Unpacking" |
989 | [[ "${EBUILD_PHASE}" == "unpack" ]] && action="Unpacking" |
| 812 | [[ "${EBUILD_PHASE}" == "prepare" ]] && action="Preparation" |
990 | [[ "${EBUILD_PHASE}" == "prepare" ]] && action="Preparation" |
| … | |
… | |
| 825 | iterated_PYTHON_ABIS="$(PYTHON -f --ABI)" |
1003 | iterated_PYTHON_ABIS="$(PYTHON -f --ABI)" |
| 826 | else |
1004 | else |
| 827 | iterated_PYTHON_ABIS="${PYTHON_ABIS}" |
1005 | iterated_PYTHON_ABIS="${PYTHON_ABIS}" |
| 828 | fi |
1006 | fi |
| 829 | for PYTHON_ABI in ${iterated_PYTHON_ABIS}; do |
1007 | for PYTHON_ABI in ${iterated_PYTHON_ABIS}; do |
|
|
1008 | if [[ "${EBUILD_PHASE}" == "test" ]] && _python_check_python_abi_matching --patterns-list "${PYTHON_ABI}" "${PYTHON_TESTS_RESTRICTED_ABIS}"; then |
|
|
1009 | if [[ "${quiet}" == "0" ]]; then |
|
|
1010 | echo " ${_GREEN}*${_NORMAL} ${_BLUE}Testing of ${CATEGORY}/${PF} with $(python_get_implementation_and_version) skipped${_NORMAL}" |
|
|
1011 | fi |
|
|
1012 | continue |
|
|
1013 | fi |
|
|
1014 | |
|
|
1015 | _python_prepare_flags |
|
|
1016 | |
| 830 | if [[ "${quiet}" == "0" ]]; then |
1017 | if [[ "${quiet}" == "0" ]]; then |
| 831 | if [[ -n "${action_message_template}" ]]; then |
1018 | if [[ -n "${action_message_template}" ]]; then |
| 832 | action_message="$(eval echo -n "${action_message_template}")" |
1019 | eval "action_message=\"${action_message_template}\"" |
| 833 | else |
1020 | else |
| 834 | action_message="${action} of ${CATEGORY}/${PF} with $(python_get_implementation) $(python_get_version)..." |
1021 | action_message="${action} of ${CATEGORY}/${PF} with $(python_get_implementation_and_version)..." |
| 835 | fi |
1022 | fi |
| 836 | echo " ${_GREEN}*${_NORMAL} ${_BLUE}${action_message}${_NORMAL}" |
1023 | echo " ${_GREEN}*${_NORMAL} ${_BLUE}${action_message}${_NORMAL}" |
| 837 | fi |
1024 | fi |
| 838 | |
1025 | |
| 839 | if [[ "${separate_build_dirs}" == "1" ]]; then |
1026 | if [[ "${separate_build_dirs}" == "1" ]]; then |
| … | |
… | |
| 855 | EPYTHON="$(PYTHON)" nonfatal "${function}" "$@" |
1042 | EPYTHON="$(PYTHON)" nonfatal "${function}" "$@" |
| 856 | else |
1043 | else |
| 857 | EPYTHON="$(PYTHON)" "${function}" "$@" |
1044 | EPYTHON="$(PYTHON)" "${function}" "$@" |
| 858 | fi |
1045 | fi |
| 859 | |
1046 | |
| 860 | if [[ "$?" != "0" ]]; then |
1047 | return_code="$?" |
|
|
1048 | |
|
|
1049 | _python_restore_flags |
|
|
1050 | |
|
|
1051 | if [[ "${return_code}" -ne 0 ]]; then |
| 861 | if [[ -n "${failure_message_template}" ]]; then |
1052 | if [[ -n "${failure_message_template}" ]]; then |
| 862 | failure_message="$(eval echo -n "${failure_message_template}")" |
1053 | eval "failure_message=\"${failure_message_template}\"" |
| 863 | else |
1054 | else |
| 864 | failure_message="${action} failed with $(python_get_implementation) $(python_get_version) in ${function}() function" |
1055 | failure_message="${action} failed with $(python_get_implementation_and_version) in ${function}() function" |
| 865 | fi |
1056 | fi |
| 866 | |
1057 | |
| 867 | if [[ "${nonfatal}" == "1" ]]; then |
1058 | if [[ "${nonfatal}" == "1" ]]; then |
| 868 | if [[ "${quiet}" == "0" ]]; then |
1059 | if [[ "${quiet}" == "0" ]]; then |
| 869 | ewarn "${_RED}${failure_message}${_NORMAL}" |
1060 | ewarn "${failure_message}" |
| 870 | fi |
1061 | fi |
| 871 | elif [[ "${final_ABI}" == "0" ]] && has "${PYTHON_ABI}" ${FAILURE_TOLERANT_PYTHON_ABIS}; then |
1062 | elif [[ "${final_ABI}" == "0" ]] && has "${PYTHON_ABI}" ${FAILURE_TOLERANT_PYTHON_ABIS}; then |
| 872 | if [[ "${EBUILD_PHASE}" != "test" ]] || ! has test-fail-continue ${FEATURES}; then |
1063 | if [[ "${EBUILD_PHASE}" != "test" ]] || ! has test-fail-continue ${FEATURES}; then |
| 873 | local enabled_PYTHON_ABIS= other_PYTHON_ABI |
1064 | local enabled_PYTHON_ABIS= other_PYTHON_ABI |
| 874 | for other_PYTHON_ABI in ${PYTHON_ABIS}; do |
1065 | for other_PYTHON_ABI in ${PYTHON_ABIS}; do |
| 875 | [[ "${other_PYTHON_ABI}" != "${PYTHON_ABI}" ]] && enabled_PYTHON_ABIS+="${enabled_PYTHON_ABIS:+ }${other_PYTHON_ABI}" |
1066 | [[ "${other_PYTHON_ABI}" != "${PYTHON_ABI}" ]] && enabled_PYTHON_ABIS+="${enabled_PYTHON_ABIS:+ }${other_PYTHON_ABI}" |
| 876 | done |
1067 | done |
| 877 | export PYTHON_ABIS="${enabled_PYTHON_ABIS}" |
1068 | export PYTHON_ABIS="${enabled_PYTHON_ABIS}" |
| 878 | fi |
1069 | fi |
| 879 | if [[ "${quiet}" == "0" ]]; then |
1070 | if [[ "${quiet}" == "0" ]]; then |
| 880 | ewarn "${_RED}${failure_message}${_NORMAL}" |
1071 | ewarn "${failure_message}" |
| 881 | fi |
1072 | fi |
| 882 | if [[ -z "${PYTHON_ABIS}" ]]; then |
1073 | if [[ -z "${PYTHON_ABIS}" ]]; then |
| 883 | die "${function}() function failed with all enabled Python ABIs" |
1074 | die "${function}() function failed with all enabled Python ABIs" |
| 884 | fi |
1075 | fi |
| 885 | else |
1076 | else |
| … | |
… | |
| 926 | python_copy_sources() { |
1117 | python_copy_sources() { |
| 927 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
1118 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
| 928 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
1119 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
| 929 | fi |
1120 | fi |
| 930 | |
1121 | |
|
|
1122 | _python_check_python_pkg_setup_execution |
|
|
1123 | |
| 931 | local dir dirs=() PYTHON_ABI |
1124 | local dir dirs=() PYTHON_ABI |
| 932 | |
1125 | |
| 933 | if [[ "$#" -eq 0 ]]; then |
1126 | if [[ "$#" -eq 0 ]]; then |
| 934 | if [[ "${WORKDIR}" == "${S}" ]]; then |
1127 | if [[ "${WORKDIR}" == "${S}" ]]; then |
| 935 | die "${FUNCNAME}() cannot be used with current value of S variable" |
1128 | die "${FUNCNAME}() cannot be used with current value of S variable" |
| … | |
… | |
| 951 | # @USAGE: [-E|--respect-EPYTHON] [-f|--force] [-q|--quiet] [--] <file> [files] |
1144 | # @USAGE: [-E|--respect-EPYTHON] [-f|--force] [-q|--quiet] [--] <file> [files] |
| 952 | # @DESCRIPTION: |
1145 | # @DESCRIPTION: |
| 953 | # Generate wrapper scripts. Existing files are overwritten only with --force option. |
1146 | # Generate wrapper scripts. Existing files are overwritten only with --force option. |
| 954 | # If --respect-EPYTHON option is specified, then generated wrapper scripts will |
1147 | # If --respect-EPYTHON option is specified, then generated wrapper scripts will |
| 955 | # respect EPYTHON variable at run time. |
1148 | # respect EPYTHON variable at run time. |
|
|
1149 | # |
|
|
1150 | # This function can be used only in src_install() phase. |
| 956 | python_generate_wrapper_scripts() { |
1151 | python_generate_wrapper_scripts() { |
|
|
1152 | if [[ "${EBUILD_PHASE}" != "install" ]]; then |
|
|
1153 | die "${FUNCNAME}() can be used only in src_install() phase" |
|
|
1154 | fi |
|
|
1155 | |
| 957 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
1156 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
| 958 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
1157 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
| 959 | fi |
1158 | fi |
| 960 | |
1159 | |
|
|
1160 | _python_check_python_pkg_setup_execution |
| 961 | _python_initialize_prefix_variables |
1161 | _python_initialize_prefix_variables |
| 962 | |
1162 | |
| 963 | local eselect_python_option file force="0" quiet="0" PYTHON_ABI python2_enabled="0" python3_enabled="0" respect_EPYTHON="0" |
1163 | local eselect_python_option file force="0" quiet="0" PYTHON_ABI PYTHON_ABIS_list python2_enabled="0" python3_enabled="0" respect_EPYTHON="0" |
| 964 | |
1164 | |
| 965 | while (($#)); do |
1165 | while (($#)); do |
| 966 | case "$1" in |
1166 | case "$1" in |
| 967 | -E|--respect-EPYTHON) |
1167 | -E|--respect-EPYTHON) |
| 968 | respect_EPYTHON="1" |
1168 | respect_EPYTHON="1" |
| … | |
… | |
| 990 | if [[ "$#" -eq 0 ]]; then |
1190 | if [[ "$#" -eq 0 ]]; then |
| 991 | die "${FUNCNAME}(): Missing arguments" |
1191 | die "${FUNCNAME}(): Missing arguments" |
| 992 | fi |
1192 | fi |
| 993 | |
1193 | |
| 994 | _python_calculate_PYTHON_ABIS |
1194 | _python_calculate_PYTHON_ABIS |
| 995 | for PYTHON_ABI in "${_CPYTHON2_SUPPORTED_ABIS[@]}"; do |
1195 | for PYTHON_ABI in "${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]}"; do |
| 996 | if has "${PYTHON_ABI}" ${PYTHON_ABIS}; then |
1196 | if has "${PYTHON_ABI}" ${PYTHON_ABIS}; then |
| 997 | python2_enabled="1" |
1197 | python2_enabled="1" |
| 998 | fi |
1198 | fi |
| 999 | done |
1199 | done |
| 1000 | for PYTHON_ABI in "${_CPYTHON3_SUPPORTED_ABIS[@]}"; do |
1200 | for PYTHON_ABI in "${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]}"; do |
| 1001 | if has "${PYTHON_ABI}" ${PYTHON_ABIS}; then |
1201 | if has "${PYTHON_ABI}" ${PYTHON_ABIS}; then |
| 1002 | python3_enabled="1" |
1202 | python3_enabled="1" |
| 1003 | fi |
1203 | fi |
| 1004 | done |
1204 | done |
| 1005 | |
1205 | |
| … | |
… | |
| 1011 | eselect_python_option="--python3" |
1211 | eselect_python_option="--python3" |
| 1012 | else |
1212 | else |
| 1013 | die "${FUNCNAME}(): Unsupported environment" |
1213 | die "${FUNCNAME}(): Unsupported environment" |
| 1014 | fi |
1214 | fi |
| 1015 | |
1215 | |
|
|
1216 | PYTHON_ABIS_list="$("$(PYTHON -f)" -c "print(', '.join('\"%s\"' % x for x in reversed('${PYTHON_ABIS}'.split())))")" |
|
|
1217 | |
| 1016 | for file in "$@"; do |
1218 | for file in "$@"; do |
| 1017 | if [[ -f "${file}" && "${force}" == "0" ]]; then |
1219 | if [[ -f "${file}" && "${force}" == "0" ]]; then |
| 1018 | die "${FUNCNAME}(): '$1' already exists" |
1220 | die "${FUNCNAME}(): '${file}' already exists" |
| 1019 | fi |
1221 | fi |
| 1020 | |
1222 | |
| 1021 | if [[ "${quiet}" == "0" ]]; then |
1223 | if [[ "${quiet}" == "0" ]]; then |
| 1022 | einfo "Generating '${file#${ED%/}}' wrapper script" |
1224 | einfo "Generating '${file#${ED%/}}' wrapper script" |
| 1023 | fi |
1225 | fi |
| … | |
… | |
| 1029 | import os |
1231 | import os |
| 1030 | import re |
1232 | import re |
| 1031 | import subprocess |
1233 | import subprocess |
| 1032 | import sys |
1234 | import sys |
| 1033 | |
1235 | |
| 1034 | EPYTHON_re = re.compile(r"^python(\d+\.\d+)$") |
1236 | cpython_re = re.compile(r"^python(\d+\.\d+)$") |
|
|
1237 | jython_re = re.compile(r"^jython(\d+\.\d+)$") |
|
|
1238 | pypy_re = re.compile(r"^pypy-c(\d+\.\d+)$") |
| 1035 | python_shebang_re = re.compile(r"^#! *(${EPREFIX}/usr/bin/python|(${EPREFIX})?/usr/bin/env +(${EPREFIX}/usr/bin/)?python)") |
1239 | python_shebang_re = re.compile(r"^#! *(${EPREFIX}/usr/bin/python|(${EPREFIX})?/usr/bin/env +(${EPREFIX}/usr/bin/)?python)") |
| 1036 | python_verification_output_re = re.compile("^GENTOO_PYTHON_TARGET_SCRIPT_PATH supported\n$") |
1240 | python_verification_output_re = re.compile("^GENTOO_PYTHON_TARGET_SCRIPT_PATH supported\n$") |
|
|
1241 | |
|
|
1242 | pypy_versions_mapping = { |
|
|
1243 | "1.5": "2.7" |
|
|
1244 | } |
|
|
1245 | |
|
|
1246 | def get_PYTHON_ABI(EPYTHON): |
|
|
1247 | cpython_matched = cpython_re.match(EPYTHON) |
|
|
1248 | jython_matched = jython_re.match(EPYTHON) |
|
|
1249 | pypy_matched = pypy_re.match(EPYTHON) |
|
|
1250 | if cpython_matched is not None: |
|
|
1251 | PYTHON_ABI = cpython_matched.group(1) |
|
|
1252 | elif jython_matched is not None: |
|
|
1253 | PYTHON_ABI = jython_matched.group(1) + "-jython" |
|
|
1254 | elif pypy_matched is not None: |
|
|
1255 | PYTHON_ABI = pypy_versions_mapping[pypy_matched.group(1)] + "-pypy-" + pypy_matched.group(1) |
|
|
1256 | else: |
|
|
1257 | PYTHON_ABI = None |
|
|
1258 | return PYTHON_ABI |
| 1037 | |
1259 | |
| 1038 | EOF |
1260 | EOF |
| 1039 | if [[ "$?" != "0" ]]; then |
1261 | if [[ "$?" != "0" ]]; then |
| 1040 | die "${FUNCNAME}(): Generation of '$1' failed" |
1262 | die "${FUNCNAME}(): Generation of '$1' failed" |
| 1041 | fi |
1263 | fi |
| 1042 | if [[ "${respect_EPYTHON}" == "1" ]]; then |
1264 | if [[ "${respect_EPYTHON}" == "1" ]]; then |
| 1043 | cat << EOF >> "${file}" |
1265 | cat << EOF >> "${file}" |
| 1044 | EPYTHON = os.environ.get("EPYTHON") |
1266 | EPYTHON = os.environ.get("EPYTHON") |
| 1045 | if EPYTHON: |
1267 | if EPYTHON: |
| 1046 | EPYTHON_matched = EPYTHON_re.match(EPYTHON) |
1268 | PYTHON_ABI = get_PYTHON_ABI(EPYTHON) |
| 1047 | if EPYTHON_matched: |
1269 | if PYTHON_ABI is None: |
| 1048 | PYTHON_ABI = EPYTHON_matched.group(1) |
|
|
| 1049 | else: |
|
|
| 1050 | sys.stderr.write("EPYTHON variable has unrecognized value '%s'\n" % EPYTHON) |
1270 | sys.stderr.write("%s: EPYTHON variable has unrecognized value '%s'\n" % (sys.argv[0], EPYTHON)) |
| 1051 | sys.exit(1) |
1271 | sys.exit(1) |
| 1052 | else: |
1272 | else: |
| 1053 | try: |
1273 | try: |
|
|
1274 | environment = os.environ.copy() |
|
|
1275 | environment["ROOT"] = "/" |
| 1054 | eselect_process = subprocess.Popen(["${EPREFIX}/usr/bin/eselect", "python", "show"${eselect_python_option:+, $(echo "\"")}${eselect_python_option}${eselect_python_option:+$(echo "\"")}], stdout=subprocess.PIPE) |
1276 | 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) |
| 1055 | if eselect_process.wait() != 0: |
1277 | if eselect_process.wait() != 0: |
| 1056 | raise ValueError |
1278 | raise ValueError |
| 1057 | except (OSError, ValueError): |
1279 | except (OSError, ValueError): |
| 1058 | sys.stderr.write("Execution of 'eselect python show${eselect_python_option:+ }${eselect_python_option}' failed\n") |
1280 | sys.stderr.write("%s: Execution of 'eselect python show${eselect_python_option:+ }${eselect_python_option}' failed\n" % sys.argv[0]) |
| 1059 | sys.exit(1) |
1281 | sys.exit(1) |
| 1060 | |
1282 | |
| 1061 | EPYTHON = eselect_process.stdout.read() |
1283 | EPYTHON = eselect_process.stdout.read() |
| 1062 | if not isinstance(EPYTHON, str): |
1284 | if not isinstance(EPYTHON, str): |
| 1063 | # Python 3 |
1285 | # Python 3 |
| 1064 | EPYTHON = EPYTHON.decode() |
1286 | EPYTHON = EPYTHON.decode() |
| 1065 | EPYTHON = EPYTHON.rstrip("\n") |
1287 | EPYTHON = EPYTHON.rstrip("\n") |
| 1066 | |
1288 | |
| 1067 | EPYTHON_matched = EPYTHON_re.match(EPYTHON) |
1289 | PYTHON_ABI = get_PYTHON_ABI(EPYTHON) |
| 1068 | if EPYTHON_matched: |
1290 | if PYTHON_ABI is None: |
| 1069 | PYTHON_ABI = EPYTHON_matched.group(1) |
|
|
| 1070 | else: |
|
|
| 1071 | sys.stderr.write("'eselect python show${eselect_python_option:+ }${eselect_python_option}' printed unrecognized value '%s'\n" % EPYTHON) |
1291 | sys.stderr.write("%s: 'eselect python show${eselect_python_option:+ }${eselect_python_option}' printed unrecognized value '%s'\n" % (sys.argv[0], EPYTHON)) |
| 1072 | sys.exit(1) |
1292 | sys.exit(1) |
|
|
1293 | |
|
|
1294 | wrapper_script_path = os.path.realpath(sys.argv[0]) |
|
|
1295 | target_executable_path = "%s-%s" % (wrapper_script_path, PYTHON_ABI) |
|
|
1296 | if not os.path.exists(target_executable_path): |
|
|
1297 | sys.stderr.write("%s: '%s' does not exist\n" % (sys.argv[0], target_executable_path)) |
|
|
1298 | sys.exit(1) |
| 1073 | EOF |
1299 | EOF |
| 1074 | if [[ "$?" != "0" ]]; then |
1300 | if [[ "$?" != "0" ]]; then |
| 1075 | die "${FUNCNAME}(): Generation of '$1' failed" |
1301 | die "${FUNCNAME}(): Generation of '$1' failed" |
| 1076 | fi |
1302 | fi |
| 1077 | else |
1303 | else |
| 1078 | cat << EOF >> "${file}" |
1304 | cat << EOF >> "${file}" |
| 1079 | try: |
1305 | try: |
|
|
1306 | environment = os.environ.copy() |
|
|
1307 | environment["ROOT"] = "/" |
| 1080 | eselect_process = subprocess.Popen(["${EPREFIX}/usr/bin/eselect", "python", "show"${eselect_python_option:+, $(echo "\"")}${eselect_python_option}${eselect_python_option:+$(echo "\"")}], stdout=subprocess.PIPE) |
1308 | 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) |
| 1081 | if eselect_process.wait() != 0: |
1309 | if eselect_process.wait() != 0: |
| 1082 | raise ValueError |
1310 | raise ValueError |
| 1083 | except (OSError, ValueError): |
1311 | except (OSError, ValueError): |
| 1084 | sys.stderr.write("Execution of 'eselect python show${eselect_python_option:+ }${eselect_python_option}' failed\n") |
1312 | sys.stderr.write("%s: Execution of 'eselect python show${eselect_python_option:+ }${eselect_python_option}' failed\n" % sys.argv[0]) |
| 1085 | sys.exit(1) |
1313 | sys.exit(1) |
| 1086 | |
1314 | |
| 1087 | EPYTHON = eselect_process.stdout.read() |
1315 | EPYTHON = eselect_process.stdout.read() |
| 1088 | if not isinstance(EPYTHON, str): |
1316 | if not isinstance(EPYTHON, str): |
| 1089 | # Python 3 |
1317 | # Python 3 |
| 1090 | EPYTHON = EPYTHON.decode() |
1318 | EPYTHON = EPYTHON.decode() |
| 1091 | EPYTHON = EPYTHON.rstrip("\n") |
1319 | EPYTHON = EPYTHON.rstrip("\n") |
| 1092 | |
1320 | |
| 1093 | EPYTHON_matched = EPYTHON_re.match(EPYTHON) |
1321 | PYTHON_ABI = get_PYTHON_ABI(EPYTHON) |
| 1094 | if EPYTHON_matched: |
1322 | if PYTHON_ABI is None: |
| 1095 | PYTHON_ABI = EPYTHON_matched.group(1) |
1323 | sys.stderr.write("%s: 'eselect python show${eselect_python_option:+ }${eselect_python_option}' printed unrecognized value '%s'\n" % (sys.argv[0], EPYTHON)) |
|
|
1324 | sys.exit(1) |
|
|
1325 | |
|
|
1326 | wrapper_script_path = os.path.realpath(sys.argv[0]) |
|
|
1327 | for PYTHON_ABI in [PYTHON_ABI, ${PYTHON_ABIS_list}]: |
|
|
1328 | target_executable_path = "%s-%s" % (wrapper_script_path, PYTHON_ABI) |
|
|
1329 | if os.path.exists(target_executable_path): |
|
|
1330 | break |
| 1096 | else: |
1331 | else: |
| 1097 | sys.stderr.write("'eselect python show${eselect_python_option:+ }${eselect_python_option}' printed unrecognized value '%s'\n" % EPYTHON) |
1332 | sys.stderr.write("%s: No target script exists for '%s'\n" % (sys.argv[0], wrapper_script_path)) |
| 1098 | sys.exit(1) |
1333 | sys.exit(1) |
| 1099 | EOF |
1334 | EOF |
| 1100 | if [[ "$?" != "0" ]]; then |
1335 | if [[ "$?" != "0" ]]; then |
| 1101 | die "${FUNCNAME}(): Generation of '$1' failed" |
1336 | die "${FUNCNAME}(): Generation of '$1' failed" |
| 1102 | fi |
1337 | fi |
| 1103 | fi |
1338 | fi |
| 1104 | cat << EOF >> "${file}" |
1339 | cat << EOF >> "${file}" |
| 1105 | |
|
|
| 1106 | wrapper_script_path = os.path.realpath(sys.argv[0]) |
|
|
| 1107 | target_executable_path = "%s-%s" % (wrapper_script_path, PYTHON_ABI) |
|
|
| 1108 | os.environ["GENTOO_PYTHON_PROCESS_NAME"] = os.path.basename(sys.argv[0]) |
|
|
| 1109 | os.environ["GENTOO_PYTHON_WRAPPER_SCRIPT_PATH"] = sys.argv[0] |
|
|
| 1110 | os.environ["GENTOO_PYTHON_TARGET_SCRIPT_PATH"] = target_executable_path |
|
|
| 1111 | if not os.path.exists(target_executable_path): |
|
|
| 1112 | sys.stderr.write("'%s' does not exist\n" % target_executable_path) |
|
|
| 1113 | sys.exit(1) |
|
|
| 1114 | |
1340 | |
| 1115 | target_executable = open(target_executable_path, "rb") |
1341 | target_executable = open(target_executable_path, "rb") |
| 1116 | target_executable_first_line = target_executable.readline() |
1342 | target_executable_first_line = target_executable.readline() |
| 1117 | if not isinstance(target_executable_first_line, str): |
1343 | if not isinstance(target_executable_first_line, str): |
| 1118 | # Python 3 |
1344 | # Python 3 |
| 1119 | target_executable_first_line = target_executable_first_line.decode("utf_8", "replace") |
1345 | target_executable_first_line = target_executable_first_line.decode("utf_8", "replace") |
| 1120 | |
1346 | |
| 1121 | python_shebang_matched = python_shebang_re.match(target_executable_first_line) |
1347 | python_shebang_matched = python_shebang_re.match(target_executable_first_line) |
| 1122 | target_executable.close() |
1348 | target_executable.close() |
| 1123 | |
1349 | |
| 1124 | if python_shebang_matched: |
1350 | if python_shebang_matched is not None: |
| 1125 | try: |
1351 | try: |
| 1126 | python_interpreter_path = "${EPREFIX}/usr/bin/%s" % EPYTHON |
1352 | python_interpreter_path = "${EPREFIX}/usr/bin/%s" % EPYTHON |
| 1127 | os.environ["GENTOO_PYTHON_TARGET_SCRIPT_PATH_VERIFICATION"] = "1" |
1353 | os.environ["GENTOO_PYTHON_TARGET_SCRIPT_PATH_VERIFICATION"] = "1" |
| 1128 | python_verification_process = subprocess.Popen([python_interpreter_path, "-c", "pass"], stdout=subprocess.PIPE) |
1354 | python_verification_process = subprocess.Popen([python_interpreter_path, "-c", "pass"], stdout=subprocess.PIPE) |
| 1129 | del os.environ["GENTOO_PYTHON_TARGET_SCRIPT_PATH_VERIFICATION"] |
1355 | del os.environ["GENTOO_PYTHON_TARGET_SCRIPT_PATH_VERIFICATION"] |
| … | |
… | |
| 1136 | python_verification_output = python_verification_output.decode() |
1362 | python_verification_output = python_verification_output.decode() |
| 1137 | |
1363 | |
| 1138 | if not python_verification_output_re.match(python_verification_output): |
1364 | if not python_verification_output_re.match(python_verification_output): |
| 1139 | raise ValueError |
1365 | raise ValueError |
| 1140 | |
1366 | |
|
|
1367 | if cpython_re.match(EPYTHON) is not None: |
|
|
1368 | os.environ["GENTOO_PYTHON_PROCESS_NAME"] = os.path.basename(sys.argv[0]) |
|
|
1369 | os.environ["GENTOO_PYTHON_WRAPPER_SCRIPT_PATH"] = sys.argv[0] |
|
|
1370 | os.environ["GENTOO_PYTHON_TARGET_SCRIPT_PATH"] = target_executable_path |
|
|
1371 | |
|
|
1372 | if hasattr(os, "execv"): |
| 1141 | os.execv(python_interpreter_path, [python_interpreter_path] + sys.argv) |
1373 | os.execv(python_interpreter_path, [python_interpreter_path] + sys.argv) |
|
|
1374 | else: |
|
|
1375 | sys.exit(subprocess.Popen([python_interpreter_path] + sys.argv).wait()) |
|
|
1376 | except (KeyboardInterrupt, SystemExit): |
|
|
1377 | raise |
| 1142 | except: |
1378 | except: |
| 1143 | pass |
1379 | pass |
| 1144 | if "GENTOO_PYTHON_TARGET_SCRIPT_PATH_VERIFICATION" in os.environ: |
1380 | for variable in ("GENTOO_PYTHON_PROCESS_NAME", "GENTOO_PYTHON_WRAPPER_SCRIPT_PATH", "GENTOO_PYTHON_TARGET_SCRIPT_PATH", "GENTOO_PYTHON_TARGET_SCRIPT_PATH_VERIFICATION"): |
| 1145 | del os.environ["GENTOO_PYTHON_TARGET_SCRIPT_PATH_VERIFICATION"] |
1381 | if variable in os.environ: |
|
|
1382 | del os.environ[variable] |
| 1146 | |
1383 | |
|
|
1384 | if hasattr(os, "execv"): |
| 1147 | os.execv(target_executable_path, sys.argv) |
1385 | os.execv(target_executable_path, sys.argv) |
|
|
1386 | else: |
|
|
1387 | sys.exit(subprocess.Popen([target_executable_path] + sys.argv[1:]).wait()) |
| 1148 | EOF |
1388 | EOF |
| 1149 | if [[ "$?" != "0" ]]; then |
1389 | if [[ "$?" != "0" ]]; then |
| 1150 | die "${FUNCNAME}(): Generation of '$1' failed" |
1390 | die "${FUNCNAME}(): Generation of '$1' failed" |
| 1151 | fi |
1391 | fi |
| 1152 | fperms +x "${file#${ED%/}}" || die "fperms '${file}' failed" |
1392 | fperms +x "${file#${ED%/}}" || die "fperms '${file}' failed" |
| 1153 | done |
1393 | done |
| 1154 | } |
1394 | } |
| 1155 | |
1395 | |
|
|
1396 | # @ECLASS-VARIABLE: PYTHON_VERSIONED_SCRIPTS |
|
|
1397 | # @DESCRIPTION: |
|
|
1398 | # Array of regular expressions of paths to versioned Python scripts. |
|
|
1399 | # Python scripts in /usr/bin and /usr/sbin are versioned by default. |
|
|
1400 | |
|
|
1401 | # @ECLASS-VARIABLE: PYTHON_VERSIONED_EXECUTABLES |
|
|
1402 | # @DESCRIPTION: |
|
|
1403 | # Array of regular expressions of paths to versioned executables (including Python scripts). |
|
|
1404 | |
|
|
1405 | # @ECLASS-VARIABLE: PYTHON_NONVERSIONED_EXECUTABLES |
|
|
1406 | # @DESCRIPTION: |
|
|
1407 | # Array of regular expressions of paths to nonversioned executables (including Python scripts). |
|
|
1408 | |
|
|
1409 | # @FUNCTION: python_merge_intermediate_installation_images |
|
|
1410 | # @USAGE: [-q|--quiet] [--] <intermediate_installation_images_directory> |
|
|
1411 | # @DESCRIPTION: |
|
|
1412 | # Merge intermediate installation images into installation image. |
|
|
1413 | # |
|
|
1414 | # This function can be used only in src_install() phase. |
|
|
1415 | python_merge_intermediate_installation_images() { |
|
|
1416 | if [[ "${EBUILD_PHASE}" != "install" ]]; then |
|
|
1417 | die "${FUNCNAME}() can be used only in src_install() phase" |
|
|
1418 | fi |
|
|
1419 | |
|
|
1420 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
1421 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
|
|
1422 | fi |
|
|
1423 | |
|
|
1424 | _python_check_python_pkg_setup_execution |
|
|
1425 | _python_initialize_prefix_variables |
|
|
1426 | |
|
|
1427 | local absolute_file b file files=() intermediate_installation_images_directory PYTHON_ABI quiet="0" regex shebang version_executable wrapper_scripts=() wrapper_scripts_set=() |
|
|
1428 | |
|
|
1429 | while (($#)); do |
|
|
1430 | case "$1" in |
|
|
1431 | -q|--quiet) |
|
|
1432 | quiet="1" |
|
|
1433 | ;; |
|
|
1434 | --) |
|
|
1435 | shift |
|
|
1436 | break |
|
|
1437 | ;; |
|
|
1438 | -*) |
|
|
1439 | die "${FUNCNAME}(): Unrecognized option '$1'" |
|
|
1440 | ;; |
|
|
1441 | *) |
|
|
1442 | break |
|
|
1443 | ;; |
|
|
1444 | esac |
|
|
1445 | shift |
|
|
1446 | done |
|
|
1447 | |
|
|
1448 | if [[ "$#" -ne 1 ]]; then |
|
|
1449 | die "${FUNCNAME}() requires 1 argument" |
|
|
1450 | fi |
|
|
1451 | |
|
|
1452 | intermediate_installation_images_directory="$1" |
|
|
1453 | |
|
|
1454 | if [[ ! -d "${intermediate_installation_images_directory}" ]]; then |
|
|
1455 | die "${FUNCNAME}(): Intermediate installation images directory '${intermediate_installation_images_directory}' does not exist" |
|
|
1456 | fi |
|
|
1457 | |
|
|
1458 | _python_calculate_PYTHON_ABIS |
|
|
1459 | if [[ "$(PYTHON -f --ABI)" == 3.* ]]; then |
|
|
1460 | b="b" |
|
|
1461 | fi |
|
|
1462 | |
|
|
1463 | while read -d $'\0' -r file; do |
|
|
1464 | files+=("${file}") |
|
|
1465 | done < <("$(PYTHON -f)" -c \ |
|
|
1466 | "import os |
|
|
1467 | import sys |
|
|
1468 | |
|
|
1469 | if hasattr(sys.stdout, 'buffer'): |
|
|
1470 | # Python 3 |
|
|
1471 | stdout = sys.stdout.buffer |
|
|
1472 | else: |
|
|
1473 | # Python 2 |
|
|
1474 | stdout = sys.stdout |
|
|
1475 | |
|
|
1476 | files_set = set() |
|
|
1477 | |
|
|
1478 | os.chdir(${b}'${intermediate_installation_images_directory}') |
|
|
1479 | |
|
|
1480 | for PYTHON_ABI in ${b}'${PYTHON_ABIS}'.split(): |
|
|
1481 | for root, dirs, files in os.walk(PYTHON_ABI + ${b}'${EPREFIX}'): |
|
|
1482 | root = root[len(PYTHON_ABI + ${b}'${EPREFIX}')+1:] |
|
|
1483 | files_set.update(root + ${b}'/' + file for file in files) |
|
|
1484 | |
|
|
1485 | for file in sorted(files_set): |
|
|
1486 | stdout.write(file) |
|
|
1487 | stdout.write(${b}'\x00')" || die "${FUNCNAME}(): Failure of extraction of files in intermediate installation images") |
|
|
1488 | |
|
|
1489 | for PYTHON_ABI in ${PYTHON_ABIS}; do |
|
|
1490 | if [[ ! -d "${intermediate_installation_images_directory}/${PYTHON_ABI}" ]]; then |
|
|
1491 | die "${FUNCNAME}(): Intermediate installation image for Python ABI '${PYTHON_ABI}' does not exist" |
|
|
1492 | fi |
|
|
1493 | |
|
|
1494 | pushd "${intermediate_installation_images_directory}/${PYTHON_ABI}${EPREFIX}" > /dev/null || die "pushd failed" |
|
|
1495 | |
|
|
1496 | for file in "${files[@]}"; do |
|
|
1497 | version_executable="0" |
|
|
1498 | for regex in "/usr/bin/.*" "/usr/sbin/.*" "${PYTHON_VERSIONED_SCRIPTS[@]}"; do |
|
|
1499 | if [[ "/${file}" =~ ^${regex}$ ]]; then |
|
|
1500 | version_executable="1" |
|
|
1501 | break |
|
|
1502 | fi |
|
|
1503 | done |
|
|
1504 | for regex in "${PYTHON_VERSIONED_EXECUTABLES[@]}"; do |
|
|
1505 | if [[ "/${file}" =~ ^${regex}$ ]]; then |
|
|
1506 | version_executable="2" |
|
|
1507 | break |
|
|
1508 | fi |
|
|
1509 | done |
|
|
1510 | if [[ "${version_executable}" != "0" ]]; then |
|
|
1511 | for regex in "${PYTHON_NONVERSIONED_EXECUTABLES[@]}"; do |
|
|
1512 | if [[ "/${file}" =~ ^${regex}$ ]]; then |
|
|
1513 | version_executable="0" |
|
|
1514 | break |
|
|
1515 | fi |
|
|
1516 | done |
|
|
1517 | fi |
|
|
1518 | |
|
|
1519 | [[ "${version_executable}" == "0" ]] && continue |
|
|
1520 | |
|
|
1521 | if [[ -L "${file}" ]]; then |
|
|
1522 | absolute_file="$(readlink "${file}")" |
|
|
1523 | if [[ "${absolute_file}" == /* ]]; then |
|
|
1524 | absolute_file="${intermediate_installation_images_directory}/${PYTHON_ABI}${EPREFIX}/${absolute_file##/}" |
|
|
1525 | else |
|
|
1526 | if [[ "${file}" == */* ]]; then |
|
|
1527 | absolute_file="${intermediate_installation_images_directory}/${PYTHON_ABI}${EPREFIX}/${file%/*}/${absolute_file}" |
|
|
1528 | else |
|
|
1529 | absolute_file="${intermediate_installation_images_directory}/${PYTHON_ABI}${EPREFIX}/${absolute_file}" |
|
|
1530 | fi |
|
|
1531 | fi |
|
|
1532 | else |
|
|
1533 | absolute_file="${intermediate_installation_images_directory}/${PYTHON_ABI}${EPREFIX}/${file}" |
|
|
1534 | fi |
|
|
1535 | |
|
|
1536 | [[ ! -x "${absolute_file}" ]] && continue |
|
|
1537 | |
|
|
1538 | shebang="$(head -n1 "${absolute_file}")" || die "Extraction of shebang from '${absolute_file}' failed" |
|
|
1539 | |
|
|
1540 | if [[ "${version_executable}" == "2" ]]; then |
|
|
1541 | wrapper_scripts+=("${ED}${file}") |
|
|
1542 | elif [[ "${version_executable}" == "1" ]]; then |
|
|
1543 | if [[ "${shebang}" =~ ${_PYTHON_SHEBANG_BASE_PART_REGEX}([[:digit:]]+(\.[[:digit:]]+)?)?($|[[:space:]]+) ]]; then |
|
|
1544 | wrapper_scripts+=("${ED}${file}") |
|
|
1545 | else |
|
|
1546 | version_executable="0" |
|
|
1547 | fi |
|
|
1548 | fi |
|
|
1549 | |
|
|
1550 | [[ "${version_executable}" == "0" ]] && continue |
|
|
1551 | |
|
|
1552 | if [[ -e "${file}-${PYTHON_ABI}" ]]; then |
|
|
1553 | die "${FUNCNAME}(): '${EPREFIX}/${file}-${PYTHON_ABI}' already exists" |
|
|
1554 | fi |
|
|
1555 | |
|
|
1556 | mv "${file}" "${file}-${PYTHON_ABI}" || die "Renaming of '${file}' failed" |
|
|
1557 | |
|
|
1558 | if [[ "${shebang}" =~ ${_PYTHON_SHEBANG_BASE_PART_REGEX}[[:digit:]]*($|[[:space:]]+) ]]; then |
|
|
1559 | if [[ -L "${file}-${PYTHON_ABI}" ]]; then |
|
|
1560 | python_convert_shebangs $([[ "${quiet}" == "1" ]] && echo --quiet) "${PYTHON_ABI}" "${absolute_file}" |
|
|
1561 | else |
|
|
1562 | python_convert_shebangs $([[ "${quiet}" == "1" ]] && echo --quiet) "${PYTHON_ABI}" "${file}-${PYTHON_ABI}" |
|
|
1563 | fi |
|
|
1564 | fi |
|
|
1565 | done |
|
|
1566 | |
|
|
1567 | popd > /dev/null || die "popd failed" |
|
|
1568 | |
|
|
1569 | if ROOT="/" has_version sys-apps/coreutils; then |
|
|
1570 | 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" |
|
|
1571 | else |
|
|
1572 | cp -fpr "${intermediate_installation_images_directory}/${PYTHON_ABI}/"* "${D}" || die "Merging of intermediate installation image for Python ABI '${PYTHON_ABI} into installation image failed" |
|
|
1573 | fi |
|
|
1574 | done |
|
|
1575 | |
|
|
1576 | rm -fr "${intermediate_installation_images_directory}" |
|
|
1577 | |
|
|
1578 | if [[ "${#wrapper_scripts[@]}" -ge 1 ]]; then |
|
|
1579 | rm -f "${T}/python_wrapper_scripts" |
|
|
1580 | |
|
|
1581 | for file in "${wrapper_scripts[@]}"; do |
|
|
1582 | echo -n "${file}" >> "${T}/python_wrapper_scripts" |
|
|
1583 | echo -en "\x00" >> "${T}/python_wrapper_scripts" |
|
|
1584 | done |
|
|
1585 | |
|
|
1586 | while read -d $'\0' -r file; do |
|
|
1587 | wrapper_scripts_set+=("${file}") |
|
|
1588 | done < <("$(PYTHON -f)" -c \ |
|
|
1589 | "import sys |
|
|
1590 | |
|
|
1591 | if hasattr(sys.stdout, 'buffer'): |
|
|
1592 | # Python 3 |
|
|
1593 | stdout = sys.stdout.buffer |
|
|
1594 | else: |
|
|
1595 | # Python 2 |
|
|
1596 | stdout = sys.stdout |
|
|
1597 | |
|
|
1598 | files = set(open('${T}/python_wrapper_scripts', 'rb').read().rstrip(${b}'\x00').split(${b}'\x00')) |
|
|
1599 | |
|
|
1600 | for file in sorted(files): |
|
|
1601 | stdout.write(file) |
|
|
1602 | stdout.write(${b}'\x00')" || die "${FUNCNAME}(): Failure of extraction of set of wrapper scripts") |
|
|
1603 | |
|
|
1604 | python_generate_wrapper_scripts $([[ "${quiet}" == "1" ]] && echo --quiet) "${wrapper_scripts_set[@]}" |
|
|
1605 | fi |
|
|
1606 | } |
|
|
1607 | |
| 1156 | # ================================================================================================ |
1608 | # ================================================================================================ |
| 1157 | # ========= FUNCTIONS FOR PACKAGES NOT SUPPORTING INSTALLATION FOR MULTIPLE PYTHON ABIS ========== |
1609 | # ========= FUNCTIONS FOR PACKAGES NOT SUPPORTING INSTALLATION FOR MULTIPLE PYTHON ABIS ========== |
| 1158 | # ================================================================================================ |
1610 | # ================================================================================================ |
| 1159 | |
1611 | |
|
|
1612 | unset EPYTHON PYTHON_ABI |
|
|
1613 | |
| 1160 | # @FUNCTION: python_set_active_version |
1614 | # @FUNCTION: python_set_active_version |
| 1161 | # @USAGE: <CPython_ABI|2|3> |
1615 | # @USAGE: <Python_ABI|2|3> |
| 1162 | # @DESCRIPTION: |
1616 | # @DESCRIPTION: |
| 1163 | # Set specified version of CPython as active version of Python. |
1617 | # Set locally active version of Python. |
|
|
1618 | # If Python_ABI argument is specified, then version of Python corresponding to Python_ABI is used. |
|
|
1619 | # If 2 argument is specified, then active version of CPython 2 is used. |
|
|
1620 | # If 3 argument is specified, then active version of CPython 3 is used. |
|
|
1621 | # |
|
|
1622 | # This function can be used only in pkg_setup() phase. |
| 1164 | python_set_active_version() { |
1623 | python_set_active_version() { |
|
|
1624 | if [[ "${EBUILD_PHASE}" != "setup" ]]; then |
|
|
1625 | die "${FUNCNAME}() can be used only in pkg_setup() phase" |
|
|
1626 | fi |
|
|
1627 | |
| 1165 | if _python_package_supporting_installation_for_multiple_python_abis; then |
1628 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| 1166 | die "${FUNCNAME}() cannot be used in ebuilds of packages supporting installation for multiple Python ABIs" |
1629 | die "${FUNCNAME}() cannot be used in ebuilds of packages supporting installation for multiple Python ABIs" |
| 1167 | fi |
1630 | fi |
| 1168 | |
1631 | |
| 1169 | if [[ "$#" -ne 1 ]]; then |
1632 | if [[ "$#" -ne 1 ]]; then |
| 1170 | die "${FUNCNAME}() requires 1 argument" |
1633 | die "${FUNCNAME}() requires 1 argument" |
| 1171 | fi |
1634 | fi |
| 1172 | |
1635 | |
| 1173 | _python_initial_sanity_checks |
1636 | _python_initial_sanity_checks |
| 1174 | |
1637 | |
| 1175 | if [[ "$1" =~ ^[[:digit:]]+\.[[:digit:]]+$ ]]; then |
1638 | if [[ -z "${PYTHON_ABI}" ]]; then |
| 1176 | if ! _python_implementation && ! has_version "dev-lang/python:$1"; then |
1639 | if [[ -n "$(_python_get_implementation --ignore-invalid "$1")" ]]; then |
| 1177 | die "${FUNCNAME}(): 'dev-lang/python:$1' is not installed" |
1640 | # PYTHON_ABI variable is intended to be used only in ebuilds/eclasses, |
|
|
1641 | # so it does not need to be exported to subprocesses. |
|
|
1642 | PYTHON_ABI="$1" |
|
|
1643 | if ! _python_implementation && ! has_version "$(python_get_implementational_package)"; then |
|
|
1644 | die "${FUNCNAME}(): '$(python_get_implementational_package)' is not installed" |
| 1178 | fi |
1645 | fi |
| 1179 | export EPYTHON="$(PYTHON "$1")" |
1646 | export EPYTHON="$(PYTHON "$1")" |
| 1180 | elif [[ "$1" == "2" ]]; then |
1647 | elif [[ "$1" == "2" ]]; then |
| 1181 | if ! _python_implementation && ! has_version "=dev-lang/python-2*"; then |
1648 | if ! _python_implementation && ! has_version "=dev-lang/python-2*"; then |
| 1182 | die "${FUNCNAME}(): '=dev-lang/python-2*' is not installed" |
1649 | die "${FUNCNAME}(): '=dev-lang/python-2*' is not installed" |
| 1183 | fi |
1650 | fi |
| 1184 | export EPYTHON="$(PYTHON -2)" |
1651 | export EPYTHON="$(PYTHON -2)" |
|
|
1652 | PYTHON_ABI="${EPYTHON#python}" |
|
|
1653 | PYTHON_ABI="${PYTHON_ABI%%-*}" |
| 1185 | elif [[ "$1" == "3" ]]; then |
1654 | elif [[ "$1" == "3" ]]; then |
| 1186 | if ! _python_implementation && ! has_version "=dev-lang/python-3*"; then |
1655 | if ! _python_implementation && ! has_version "=dev-lang/python-3*"; then |
| 1187 | die "${FUNCNAME}(): '=dev-lang/python-3*' is not installed" |
1656 | die "${FUNCNAME}(): '=dev-lang/python-3*' is not installed" |
| 1188 | fi |
1657 | fi |
| 1189 | export EPYTHON="$(PYTHON -3)" |
1658 | export EPYTHON="$(PYTHON -3)" |
|
|
1659 | PYTHON_ABI="${EPYTHON#python}" |
|
|
1660 | PYTHON_ABI="${PYTHON_ABI%%-*}" |
| 1190 | else |
1661 | else |
| 1191 | die "${FUNCNAME}(): Unrecognized argument '$1'" |
1662 | die "${FUNCNAME}(): Unrecognized argument '$1'" |
| 1192 | fi |
1663 | fi |
| 1193 | |
1664 | fi |
| 1194 | # PYTHON_ABI variable is intended to be used only in ebuilds/eclasses, |
|
|
| 1195 | # so it does not need to be exported to subprocesses. |
|
|
| 1196 | PYTHON_ABI="${EPYTHON#python}" |
|
|
| 1197 | PYTHON_ABI="${PYTHON_ABI%%-*}" |
|
|
| 1198 | |
1665 | |
| 1199 | _python_final_sanity_checks |
1666 | _python_final_sanity_checks |
| 1200 | |
1667 | |
| 1201 | # python-updater checks PYTHON_REQUESTED_ACTIVE_VERSION variable. |
1668 | # python-updater checks PYTHON_REQUESTED_ACTIVE_VERSION variable. |
| 1202 | PYTHON_REQUESTED_ACTIVE_VERSION="$1" |
1669 | PYTHON_REQUESTED_ACTIVE_VERSION="$1" |
| … | |
… | |
| 1208 | python_need_rebuild() { |
1675 | python_need_rebuild() { |
| 1209 | if _python_package_supporting_installation_for_multiple_python_abis; then |
1676 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| 1210 | die "${FUNCNAME}() cannot be used in ebuilds of packages supporting installation for multiple Python ABIs" |
1677 | die "${FUNCNAME}() cannot be used in ebuilds of packages supporting installation for multiple Python ABIs" |
| 1211 | fi |
1678 | fi |
| 1212 | |
1679 | |
|
|
1680 | _python_check_python_pkg_setup_execution |
|
|
1681 | |
|
|
1682 | if [[ "$#" -ne 0 ]]; then |
|
|
1683 | die "${FUNCNAME}() does not accept arguments" |
|
|
1684 | fi |
|
|
1685 | |
| 1213 | export PYTHON_NEED_REBUILD="$(PYTHON --ABI)" |
1686 | export PYTHON_NEED_REBUILD="$(PYTHON --ABI)" |
| 1214 | } |
1687 | } |
| 1215 | |
1688 | |
| 1216 | # ================================================================================================ |
1689 | # ================================================================================================ |
| 1217 | # ======================================= GETTER FUNCTIONS ======================================= |
1690 | # ======================================= GETTER FUNCTIONS ======================================= |
| 1218 | # ================================================================================================ |
1691 | # ================================================================================================ |
| 1219 | |
1692 | |
| 1220 | _PYTHON_ABI_EXTRACTION_COMMAND='import platform |
1693 | _PYTHON_ABI_EXTRACTION_COMMAND=\ |
|
|
1694 | 'import platform |
| 1221 | import sys |
1695 | import sys |
| 1222 | sys.stdout.write(".".join(str(x) for x in sys.version_info[:2])) |
1696 | sys.stdout.write(".".join(str(x) for x in sys.version_info[:2])) |
| 1223 | if platform.system()[:4] == "Java": |
1697 | if platform.system()[:4] == "Java": |
| 1224 | sys.stdout.write("-jython")' |
1698 | sys.stdout.write("-jython") |
|
|
1699 | elif hasattr(platform, "python_implementation") and platform.python_implementation() == "PyPy": |
|
|
1700 | sys.stdout.write("-pypy-" + ".".join(str(x) for x in sys.pypy_version_info[:2]))' |
| 1225 | |
1701 | |
| 1226 | _python_get_implementation() { |
1702 | _python_get_implementation() { |
|
|
1703 | local ignore_invalid="0" |
|
|
1704 | |
|
|
1705 | while (($#)); do |
|
|
1706 | case "$1" in |
|
|
1707 | --ignore-invalid) |
|
|
1708 | ignore_invalid="1" |
|
|
1709 | ;; |
|
|
1710 | --) |
|
|
1711 | shift |
|
|
1712 | break |
|
|
1713 | ;; |
|
|
1714 | -*) |
|
|
1715 | die "${FUNCNAME}(): Unrecognized option '$1'" |
|
|
1716 | ;; |
|
|
1717 | *) |
|
|
1718 | break |
|
|
1719 | ;; |
|
|
1720 | esac |
|
|
1721 | shift |
|
|
1722 | done |
|
|
1723 | |
| 1227 | if [[ "$#" -ne 1 ]]; then |
1724 | if [[ "$#" -ne 1 ]]; then |
| 1228 | die "${FUNCNAME}() requires 1 argument" |
1725 | die "${FUNCNAME}() requires 1 argument" |
| 1229 | fi |
1726 | fi |
| 1230 | |
1727 | |
| 1231 | if [[ "$1" =~ ^[[:digit:]]+\.[[:digit:]]+$ ]]; then |
1728 | if [[ "$1" =~ ^[[:digit:]]+\.[[:digit:]]+$ ]]; then |
| 1232 | echo "CPython" |
1729 | echo "CPython" |
| 1233 | elif [[ "$1" =~ ^[[:digit:]]+\.[[:digit:]]+-jython$ ]]; then |
1730 | elif [[ "$1" =~ ^[[:digit:]]+\.[[:digit:]]+-jython$ ]]; then |
| 1234 | echo "Jython" |
1731 | echo "Jython" |
|
|
1732 | elif [[ "$1" =~ ^[[:digit:]]+\.[[:digit:]]+-pypy-[[:digit:]]+\.[[:digit:]]+$ ]]; then |
|
|
1733 | echo "PyPy" |
| 1235 | else |
1734 | else |
|
|
1735 | if [[ "${ignore_invalid}" == "0" ]]; then |
| 1236 | die "${FUNCNAME}(): Unrecognized Python ABI '$1'" |
1736 | die "${FUNCNAME}(): Unrecognized Python ABI '$1'" |
|
|
1737 | fi |
| 1237 | fi |
1738 | fi |
| 1238 | } |
1739 | } |
| 1239 | |
1740 | |
| 1240 | # @FUNCTION: PYTHON |
1741 | # @FUNCTION: PYTHON |
| 1241 | # @USAGE: [-2] [-3] [--ABI] [-a|--absolute-path] [-f|--final-ABI] [--] <Python_ABI="${PYTHON_ABI}"> |
1742 | # @USAGE: [-2] [-3] [--ABI] [-a|--absolute-path] [-f|--final-ABI] [--] <Python_ABI="${PYTHON_ABI}"> |
| 1242 | # @DESCRIPTION: |
1743 | # @DESCRIPTION: |
| 1243 | # Print filename of Python interpreter for specified Python ABI. If Python_ABI argument |
1744 | # Print filename of Python interpreter for specified Python ABI. If Python_ABI argument |
| 1244 | # is ommitted, then PYTHON_ABI environment variable must be set and is used. |
1745 | # is ommitted, then PYTHON_ABI environment variable must be set and is used. |
| 1245 | # If -2 option is specified, then active version of Python 2 is used. |
1746 | # If -2 option is specified, then active version of CPython 2 is used. |
| 1246 | # If -3 option is specified, then active version of Python 3 is used. |
1747 | # If -3 option is specified, then active version of CPython 3 is used. |
| 1247 | # If --final-ABI option is specified, then final ABI from the list of enabled ABIs is used. |
1748 | # If --final-ABI option is specified, then final ABI from the list of enabled ABIs is used. |
| 1248 | # -2, -3 and --final-ABI options and Python_ABI argument cannot be specified simultaneously. |
1749 | # -2, -3 and --final-ABI options and Python_ABI argument cannot be specified simultaneously. |
| 1249 | # If --ABI option is specified, then only specified Python ABI is printed instead of |
1750 | # If --ABI option is specified, then only specified Python ABI is printed instead of |
| 1250 | # filename of Python interpreter. |
1751 | # filename of Python interpreter. |
| 1251 | # If --absolute-path option is specified, then absolute path to Python interpreter is printed. |
1752 | # If --absolute-path option is specified, then absolute path to Python interpreter is printed. |
| 1252 | # --ABI and --absolute-path options cannot be specified simultaneously. |
1753 | # --ABI and --absolute-path options cannot be specified simultaneously. |
| 1253 | PYTHON() { |
1754 | PYTHON() { |
|
|
1755 | _python_check_python_pkg_setup_execution |
|
|
1756 | |
| 1254 | local ABI_output="0" absolute_path_output="0" final_ABI="0" PYTHON_ABI="${PYTHON_ABI}" python_interpreter python2="0" python3="0" |
1757 | local ABI_output="0" absolute_path_output="0" final_ABI="0" PYTHON_ABI="${PYTHON_ABI}" python_interpreter python2="0" python3="0" |
| 1255 | |
1758 | |
| 1256 | while (($#)); do |
1759 | while (($#)); do |
| 1257 | case "$1" in |
1760 | case "$1" in |
| 1258 | -2) |
1761 | -2) |
| … | |
… | |
| 1283 | esac |
1786 | esac |
| 1284 | shift |
1787 | shift |
| 1285 | done |
1788 | done |
| 1286 | |
1789 | |
| 1287 | if [[ "${ABI_output}" == "1" && "${absolute_path_output}" == "1" ]]; then |
1790 | if [[ "${ABI_output}" == "1" && "${absolute_path_output}" == "1" ]]; then |
| 1288 | die "${FUNCNAME}(): '--ABI and '--absolute-path' options cannot be specified simultaneously" |
1791 | die "${FUNCNAME}(): '--ABI' and '--absolute-path' options cannot be specified simultaneously" |
| 1289 | fi |
1792 | fi |
| 1290 | |
1793 | |
| 1291 | if [[ "$((${python2} + ${python3} + ${final_ABI}))" -gt 1 ]]; then |
1794 | if [[ "$((${python2} + ${python3} + ${final_ABI}))" -gt 1 ]]; then |
| 1292 | die "${FUNCNAME}(): '-2', '-3' or '--final-ABI' options cannot be specified simultaneously" |
1795 | die "${FUNCNAME}(): '-2', '-3' or '--final-ABI' options cannot be specified simultaneously" |
| 1293 | fi |
1796 | fi |
| … | |
… | |
| 1298 | die "${FUNCNAME}(): '--final-ABI' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
1801 | die "${FUNCNAME}(): '--final-ABI' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
| 1299 | fi |
1802 | fi |
| 1300 | _python_calculate_PYTHON_ABIS |
1803 | _python_calculate_PYTHON_ABIS |
| 1301 | PYTHON_ABI="${PYTHON_ABIS##* }" |
1804 | PYTHON_ABI="${PYTHON_ABIS##* }" |
| 1302 | elif [[ "${python2}" == "1" ]]; then |
1805 | elif [[ "${python2}" == "1" ]]; then |
| 1303 | PYTHON_ABI="$(eselect python show --python2 --ABI)" |
1806 | PYTHON_ABI="$(ROOT="/" eselect python show --python2 --ABI)" |
| 1304 | if [[ -z "${PYTHON_ABI}" ]]; then |
1807 | if [[ -z "${PYTHON_ABI}" ]]; then |
| 1305 | die "${FUNCNAME}(): Active version of Python 2 not set" |
1808 | die "${FUNCNAME}(): Active version of CPython 2 not set" |
| 1306 | elif [[ "${PYTHON_ABI}" != "2."* ]]; then |
1809 | elif [[ "${PYTHON_ABI}" != "2."* ]]; then |
| 1307 | die "${FUNCNAME}(): Internal error in \`eselect python show --python2\`" |
1810 | die "${FUNCNAME}(): Internal error in \`eselect python show --python2\`" |
| 1308 | fi |
1811 | fi |
| 1309 | elif [[ "${python3}" == "1" ]]; then |
1812 | elif [[ "${python3}" == "1" ]]; then |
| 1310 | PYTHON_ABI="$(eselect python show --python3 --ABI)" |
1813 | PYTHON_ABI="$(ROOT="/" eselect python show --python3 --ABI)" |
| 1311 | if [[ -z "${PYTHON_ABI}" ]]; then |
1814 | if [[ -z "${PYTHON_ABI}" ]]; then |
| 1312 | die "${FUNCNAME}(): Active version of Python 3 not set" |
1815 | die "${FUNCNAME}(): Active version of CPython 3 not set" |
| 1313 | elif [[ "${PYTHON_ABI}" != "3."* ]]; then |
1816 | elif [[ "${PYTHON_ABI}" != "3."* ]]; then |
| 1314 | die "${FUNCNAME}(): Internal error in \`eselect python show --python3\`" |
1817 | die "${FUNCNAME}(): Internal error in \`eselect python show --python3\`" |
| 1315 | fi |
1818 | fi |
| 1316 | elif ! _python_package_supporting_installation_for_multiple_python_abis; then |
1819 | elif _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
1820 | if ! _python_abi-specific_local_scope; then |
|
|
1821 | die "${FUNCNAME}() should be used in ABI-specific local scope" |
|
|
1822 | fi |
|
|
1823 | else |
| 1317 | PYTHON_ABI="$("${EPREFIX}/usr/bin/python" -c "${_PYTHON_ABI_EXTRACTION_COMMAND}")" |
1824 | PYTHON_ABI="$("${EPREFIX}/usr/bin/python" -c "${_PYTHON_ABI_EXTRACTION_COMMAND}")" |
| 1318 | if [[ -z "${PYTHON_ABI}" ]]; then |
1825 | if [[ -z "${PYTHON_ABI}" ]]; then |
| 1319 | die "${FUNCNAME}(): Failure of extraction of locally active version of Python" |
1826 | die "${FUNCNAME}(): Failure of extraction of locally active version of Python" |
| 1320 | fi |
1827 | fi |
| 1321 | elif [[ -z "${PYTHON_ABI}" ]]; then |
|
|
| 1322 | die "${FUNCNAME}(): Invalid usage: ${FUNCNAME}() should be used in ABI-specific local scope" |
|
|
| 1323 | fi |
1828 | fi |
| 1324 | elif [[ "$#" -eq 1 ]]; then |
1829 | elif [[ "$#" -eq 1 ]]; then |
| 1325 | if [[ "${final_ABI}" == "1" ]]; then |
1830 | if [[ "${final_ABI}" == "1" ]]; then |
| 1326 | die "${FUNCNAME}(): '--final-ABI' option and Python ABI cannot be specified simultaneously" |
1831 | die "${FUNCNAME}(): '--final-ABI' option and Python ABI cannot be specified simultaneously" |
| 1327 | fi |
1832 | fi |
| … | |
… | |
| 1341 | return |
1846 | return |
| 1342 | else |
1847 | else |
| 1343 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
1848 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
| 1344 | python_interpreter="python${PYTHON_ABI}" |
1849 | python_interpreter="python${PYTHON_ABI}" |
| 1345 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
1850 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
| 1346 | python_interpreter="jython-${PYTHON_ABI%-jython}" |
1851 | python_interpreter="jython${PYTHON_ABI%-jython}" |
|
|
1852 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "PyPy" ]]; then |
|
|
1853 | python_interpreter="pypy-c${PYTHON_ABI#*-pypy-}" |
| 1347 | fi |
1854 | fi |
| 1348 | |
1855 | |
| 1349 | if [[ "${absolute_path_output}" == "1" ]]; then |
1856 | if [[ "${absolute_path_output}" == "1" ]]; then |
| 1350 | echo -n "${EPREFIX}/usr/bin/${python_interpreter}" |
1857 | echo -n "${EPREFIX}/usr/bin/${python_interpreter}" |
| 1351 | else |
1858 | else |
| … | |
… | |
| 1362 | # @USAGE: [-f|--final-ABI] |
1869 | # @USAGE: [-f|--final-ABI] |
| 1363 | # @DESCRIPTION: |
1870 | # @DESCRIPTION: |
| 1364 | # Print name of Python implementation. |
1871 | # Print name of Python implementation. |
| 1365 | # If --final-ABI option is specified, then final ABI from the list of enabled ABIs is used. |
1872 | # If --final-ABI option is specified, then final ABI from the list of enabled ABIs is used. |
| 1366 | python_get_implementation() { |
1873 | python_get_implementation() { |
|
|
1874 | _python_check_python_pkg_setup_execution |
|
|
1875 | |
| 1367 | local final_ABI="0" PYTHON_ABI="${PYTHON_ABI}" |
1876 | local final_ABI="0" PYTHON_ABI="${PYTHON_ABI}" |
| 1368 | |
1877 | |
| 1369 | while (($#)); do |
1878 | while (($#)); do |
| 1370 | case "$1" in |
1879 | case "$1" in |
| 1371 | -f|--final-ABI) |
1880 | -f|--final-ABI) |
| … | |
… | |
| 1384 | if [[ "${final_ABI}" == "1" ]]; then |
1893 | if [[ "${final_ABI}" == "1" ]]; then |
| 1385 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
1894 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
| 1386 | die "${FUNCNAME}(): '--final-ABI' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
1895 | die "${FUNCNAME}(): '--final-ABI' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
| 1387 | fi |
1896 | fi |
| 1388 | PYTHON_ABI="$(PYTHON -f --ABI)" |
1897 | PYTHON_ABI="$(PYTHON -f --ABI)" |
| 1389 | elif [[ -z "${PYTHON_ABI}" ]]; then |
1898 | else |
|
|
1899 | if _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
1900 | if ! _python_abi-specific_local_scope; then |
|
|
1901 | die "${FUNCNAME}() should be used in ABI-specific local scope" |
|
|
1902 | fi |
|
|
1903 | else |
| 1390 | PYTHON_ABI="$(PYTHON --ABI)" |
1904 | PYTHON_ABI="${PYTHON_ABI:-$(PYTHON --ABI)}" |
|
|
1905 | fi |
| 1391 | fi |
1906 | fi |
| 1392 | |
1907 | |
| 1393 | echo "$(_python_get_implementation "${PYTHON_ABI}")" |
1908 | echo "$(_python_get_implementation "${PYTHON_ABI}")" |
| 1394 | } |
1909 | } |
| 1395 | |
1910 | |
| … | |
… | |
| 1397 | # @USAGE: [-f|--final-ABI] |
1912 | # @USAGE: [-f|--final-ABI] |
| 1398 | # @DESCRIPTION: |
1913 | # @DESCRIPTION: |
| 1399 | # Print category, name and slot of package providing Python implementation. |
1914 | # Print category, name and slot of package providing Python implementation. |
| 1400 | # If --final-ABI option is specified, then final ABI from the list of enabled ABIs is used. |
1915 | # If --final-ABI option is specified, then final ABI from the list of enabled ABIs is used. |
| 1401 | python_get_implementational_package() { |
1916 | python_get_implementational_package() { |
|
|
1917 | _python_check_python_pkg_setup_execution |
|
|
1918 | |
| 1402 | local final_ABI="0" PYTHON_ABI="${PYTHON_ABI}" |
1919 | local final_ABI="0" PYTHON_ABI="${PYTHON_ABI}" |
| 1403 | |
1920 | |
| 1404 | while (($#)); do |
1921 | while (($#)); do |
| 1405 | case "$1" in |
1922 | case "$1" in |
| 1406 | -f|--final-ABI) |
1923 | -f|--final-ABI) |
| … | |
… | |
| 1419 | if [[ "${final_ABI}" == "1" ]]; then |
1936 | if [[ "${final_ABI}" == "1" ]]; then |
| 1420 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
1937 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
| 1421 | die "${FUNCNAME}(): '--final-ABI' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
1938 | die "${FUNCNAME}(): '--final-ABI' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
| 1422 | fi |
1939 | fi |
| 1423 | PYTHON_ABI="$(PYTHON -f --ABI)" |
1940 | PYTHON_ABI="$(PYTHON -f --ABI)" |
| 1424 | elif [[ -z "${PYTHON_ABI}" ]]; then |
1941 | else |
|
|
1942 | if _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
1943 | if ! _python_abi-specific_local_scope; then |
|
|
1944 | die "${FUNCNAME}() should be used in ABI-specific local scope" |
|
|
1945 | fi |
|
|
1946 | else |
| 1425 | PYTHON_ABI="$(PYTHON --ABI)" |
1947 | PYTHON_ABI="${PYTHON_ABI:-$(PYTHON --ABI)}" |
| 1426 | fi |
1948 | fi |
|
|
1949 | fi |
| 1427 | |
1950 | |
|
|
1951 | if [[ "${EAPI:-0}" == "0" ]]; then |
| 1428 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
1952 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
| 1429 | echo "dev-lang/python:${PYTHON_ABI}" |
1953 | echo "=dev-lang/python-${PYTHON_ABI}*" |
| 1430 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
1954 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
|
|
1955 | echo "=dev-java/jython-${PYTHON_ABI%-jython}*" |
|
|
1956 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "PyPy" ]]; then |
|
|
1957 | echo "=dev-python/pypy-${PYTHON_ABI#*-pypy-}*" |
|
|
1958 | fi |
|
|
1959 | else |
|
|
1960 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
|
|
1961 | echo "dev-lang/python:${PYTHON_ABI}" |
|
|
1962 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
| 1431 | echo "dev-java/jython:${PYTHON_ABI%-jython}" |
1963 | echo "dev-java/jython:${PYTHON_ABI%-jython}" |
|
|
1964 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "PyPy" ]]; then |
|
|
1965 | echo "dev-python/pypy:${PYTHON_ABI#*-pypy-}" |
|
|
1966 | fi |
| 1432 | fi |
1967 | fi |
| 1433 | } |
1968 | } |
| 1434 | |
1969 | |
| 1435 | # @FUNCTION: python_get_includedir |
1970 | # @FUNCTION: python_get_includedir |
| 1436 | # @USAGE: [-f|--final-ABI] |
1971 | # @USAGE: [-b|--base-path] [-f|--final-ABI] |
| 1437 | # @DESCRIPTION: |
1972 | # @DESCRIPTION: |
| 1438 | # Print path to Python include directory. |
1973 | # Print path to Python include directory. |
|
|
1974 | # If --base-path option is specified, then path not prefixed with "/" is printed. |
| 1439 | # If --final-ABI option is specified, then final ABI from the list of enabled ABIs is used. |
1975 | # If --final-ABI option is specified, then final ABI from the list of enabled ABIs is used. |
| 1440 | python_get_includedir() { |
1976 | python_get_includedir() { |
|
|
1977 | _python_check_python_pkg_setup_execution |
|
|
1978 | |
| 1441 | local final_ABI="0" PYTHON_ABI="${PYTHON_ABI}" |
1979 | local base_path="0" final_ABI="0" prefix PYTHON_ABI="${PYTHON_ABI}" |
|
|
1980 | |
|
|
1981 | while (($#)); do |
|
|
1982 | case "$1" in |
|
|
1983 | -b|--base-path) |
|
|
1984 | base_path="1" |
|
|
1985 | ;; |
|
|
1986 | -f|--final-ABI) |
|
|
1987 | final_ABI="1" |
|
|
1988 | ;; |
|
|
1989 | -*) |
|
|
1990 | die "${FUNCNAME}(): Unrecognized option '$1'" |
|
|
1991 | ;; |
|
|
1992 | *) |
|
|
1993 | die "${FUNCNAME}(): Invalid usage" |
|
|
1994 | ;; |
|
|
1995 | esac |
|
|
1996 | shift |
|
|
1997 | done |
|
|
1998 | |
|
|
1999 | if [[ "${base_path}" == "0" ]]; then |
|
|
2000 | prefix="/" |
|
|
2001 | fi |
|
|
2002 | |
|
|
2003 | if [[ "${final_ABI}" == "1" ]]; then |
|
|
2004 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
2005 | die "${FUNCNAME}(): '--final-ABI' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
|
|
2006 | fi |
|
|
2007 | PYTHON_ABI="$(PYTHON -f --ABI)" |
|
|
2008 | else |
|
|
2009 | if _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
2010 | if ! _python_abi-specific_local_scope; then |
|
|
2011 | die "${FUNCNAME}() should be used in ABI-specific local scope" |
|
|
2012 | fi |
|
|
2013 | else |
|
|
2014 | PYTHON_ABI="${PYTHON_ABI:-$(PYTHON --ABI)}" |
|
|
2015 | fi |
|
|
2016 | fi |
|
|
2017 | |
|
|
2018 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
|
|
2019 | echo "${prefix}usr/include/python${PYTHON_ABI}" |
|
|
2020 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
|
|
2021 | echo "${prefix}usr/share/jython-${PYTHON_ABI%-jython}/Include" |
|
|
2022 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "PyPy" ]]; then |
|
|
2023 | echo "${prefix}usr/$(get_libdir)/pypy${PYTHON_ABI#*-pypy-}/include" |
|
|
2024 | fi |
|
|
2025 | } |
|
|
2026 | |
|
|
2027 | # @FUNCTION: python_get_libdir |
|
|
2028 | # @USAGE: [-b|--base-path] [-f|--final-ABI] |
|
|
2029 | # @DESCRIPTION: |
|
|
2030 | # Print path to Python standard library directory. |
|
|
2031 | # If --base-path option is specified, then path not prefixed with "/" is printed. |
|
|
2032 | # If --final-ABI option is specified, then final ABI from the list of enabled ABIs is used. |
|
|
2033 | python_get_libdir() { |
|
|
2034 | _python_check_python_pkg_setup_execution |
|
|
2035 | |
|
|
2036 | local base_path="0" final_ABI="0" prefix PYTHON_ABI="${PYTHON_ABI}" |
|
|
2037 | |
|
|
2038 | while (($#)); do |
|
|
2039 | case "$1" in |
|
|
2040 | -b|--base-path) |
|
|
2041 | base_path="1" |
|
|
2042 | ;; |
|
|
2043 | -f|--final-ABI) |
|
|
2044 | final_ABI="1" |
|
|
2045 | ;; |
|
|
2046 | -*) |
|
|
2047 | die "${FUNCNAME}(): Unrecognized option '$1'" |
|
|
2048 | ;; |
|
|
2049 | *) |
|
|
2050 | die "${FUNCNAME}(): Invalid usage" |
|
|
2051 | ;; |
|
|
2052 | esac |
|
|
2053 | shift |
|
|
2054 | done |
|
|
2055 | |
|
|
2056 | if [[ "${base_path}" == "0" ]]; then |
|
|
2057 | prefix="/" |
|
|
2058 | fi |
|
|
2059 | |
|
|
2060 | if [[ "${final_ABI}" == "1" ]]; then |
|
|
2061 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
2062 | die "${FUNCNAME}(): '--final-ABI' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
|
|
2063 | fi |
|
|
2064 | PYTHON_ABI="$(PYTHON -f --ABI)" |
|
|
2065 | else |
|
|
2066 | if _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
2067 | if ! _python_abi-specific_local_scope; then |
|
|
2068 | die "${FUNCNAME}() should be used in ABI-specific local scope" |
|
|
2069 | fi |
|
|
2070 | else |
|
|
2071 | PYTHON_ABI="${PYTHON_ABI:-$(PYTHON --ABI)}" |
|
|
2072 | fi |
|
|
2073 | fi |
|
|
2074 | |
|
|
2075 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
|
|
2076 | echo "${prefix}usr/$(get_libdir)/python${PYTHON_ABI}" |
|
|
2077 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
|
|
2078 | echo "${prefix}usr/share/jython-${PYTHON_ABI%-jython}/Lib" |
|
|
2079 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "PyPy" ]]; then |
|
|
2080 | die "${FUNCNAME}(): PyPy has multiple standard library directories" |
|
|
2081 | fi |
|
|
2082 | } |
|
|
2083 | |
|
|
2084 | # @FUNCTION: python_get_sitedir |
|
|
2085 | # @USAGE: [-b|--base-path] [-f|--final-ABI] |
|
|
2086 | # @DESCRIPTION: |
|
|
2087 | # Print path to Python site-packages directory. |
|
|
2088 | # If --base-path option is specified, then path not prefixed with "/" is printed. |
|
|
2089 | # If --final-ABI option is specified, then final ABI from the list of enabled ABIs is used. |
|
|
2090 | python_get_sitedir() { |
|
|
2091 | _python_check_python_pkg_setup_execution |
|
|
2092 | |
|
|
2093 | local base_path="0" final_ABI="0" prefix PYTHON_ABI="${PYTHON_ABI}" |
|
|
2094 | |
|
|
2095 | while (($#)); do |
|
|
2096 | case "$1" in |
|
|
2097 | -b|--base-path) |
|
|
2098 | base_path="1" |
|
|
2099 | ;; |
|
|
2100 | -f|--final-ABI) |
|
|
2101 | final_ABI="1" |
|
|
2102 | ;; |
|
|
2103 | -*) |
|
|
2104 | die "${FUNCNAME}(): Unrecognized option '$1'" |
|
|
2105 | ;; |
|
|
2106 | *) |
|
|
2107 | die "${FUNCNAME}(): Invalid usage" |
|
|
2108 | ;; |
|
|
2109 | esac |
|
|
2110 | shift |
|
|
2111 | done |
|
|
2112 | |
|
|
2113 | if [[ "${base_path}" == "0" ]]; then |
|
|
2114 | prefix="/" |
|
|
2115 | fi |
|
|
2116 | |
|
|
2117 | if [[ "${final_ABI}" == "1" ]]; then |
|
|
2118 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
2119 | die "${FUNCNAME}(): '--final-ABI' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
|
|
2120 | fi |
|
|
2121 | PYTHON_ABI="$(PYTHON -f --ABI)" |
|
|
2122 | else |
|
|
2123 | if _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
2124 | if ! _python_abi-specific_local_scope; then |
|
|
2125 | die "${FUNCNAME}() should be used in ABI-specific local scope" |
|
|
2126 | fi |
|
|
2127 | else |
|
|
2128 | PYTHON_ABI="${PYTHON_ABI:-$(PYTHON --ABI)}" |
|
|
2129 | fi |
|
|
2130 | fi |
|
|
2131 | |
|
|
2132 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
|
|
2133 | echo "${prefix}usr/$(get_libdir)/python${PYTHON_ABI}/site-packages" |
|
|
2134 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
|
|
2135 | echo "${prefix}usr/share/jython-${PYTHON_ABI%-jython}/Lib/site-packages" |
|
|
2136 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "PyPy" ]]; then |
|
|
2137 | echo "${prefix}usr/$(get_libdir)/pypy${PYTHON_ABI#*-pypy-}/site-packages" |
|
|
2138 | fi |
|
|
2139 | } |
|
|
2140 | |
|
|
2141 | # @FUNCTION: python_get_library |
|
|
2142 | # @USAGE: [-b|--base-path] [-f|--final-ABI] [-l|--linker-option] |
|
|
2143 | # @DESCRIPTION: |
|
|
2144 | # Print path to Python library. |
|
|
2145 | # If --base-path option is specified, then path not prefixed with "/" is printed. |
|
|
2146 | # If --linker-option is specified, then "-l${library}" linker option is printed. |
|
|
2147 | # If --final-ABI option is specified, then final ABI from the list of enabled ABIs is used. |
|
|
2148 | python_get_library() { |
|
|
2149 | _python_check_python_pkg_setup_execution |
|
|
2150 | |
|
|
2151 | local base_path="0" final_ABI="0" linker_option="0" prefix PYTHON_ABI="${PYTHON_ABI}" |
|
|
2152 | |
|
|
2153 | while (($#)); do |
|
|
2154 | case "$1" in |
|
|
2155 | -b|--base-path) |
|
|
2156 | base_path="1" |
|
|
2157 | ;; |
|
|
2158 | -f|--final-ABI) |
|
|
2159 | final_ABI="1" |
|
|
2160 | ;; |
|
|
2161 | -l|--linker-option) |
|
|
2162 | linker_option="1" |
|
|
2163 | ;; |
|
|
2164 | -*) |
|
|
2165 | die "${FUNCNAME}(): Unrecognized option '$1'" |
|
|
2166 | ;; |
|
|
2167 | *) |
|
|
2168 | die "${FUNCNAME}(): Invalid usage" |
|
|
2169 | ;; |
|
|
2170 | esac |
|
|
2171 | shift |
|
|
2172 | done |
|
|
2173 | |
|
|
2174 | if [[ "${base_path}" == "0" ]]; then |
|
|
2175 | prefix="/" |
|
|
2176 | fi |
|
|
2177 | |
|
|
2178 | if [[ "${base_path}" == "1" && "${linker_option}" == "1" ]]; then |
|
|
2179 | die "${FUNCNAME}(): '--base-path' and '--linker-option' options cannot be specified simultaneously" |
|
|
2180 | fi |
|
|
2181 | |
|
|
2182 | if [[ "${final_ABI}" == "1" ]]; then |
|
|
2183 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
2184 | die "${FUNCNAME}(): '--final-ABI' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
|
|
2185 | fi |
|
|
2186 | PYTHON_ABI="$(PYTHON -f --ABI)" |
|
|
2187 | else |
|
|
2188 | if _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
2189 | if ! _python_abi-specific_local_scope; then |
|
|
2190 | die "${FUNCNAME}() should be used in ABI-specific local scope" |
|
|
2191 | fi |
|
|
2192 | else |
|
|
2193 | PYTHON_ABI="${PYTHON_ABI:-$(PYTHON --ABI)}" |
|
|
2194 | fi |
|
|
2195 | fi |
|
|
2196 | |
|
|
2197 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
|
|
2198 | if [[ "${linker_option}" == "1" ]]; then |
|
|
2199 | echo "-lpython${PYTHON_ABI}" |
|
|
2200 | else |
|
|
2201 | echo "${prefix}usr/$(get_libdir)/libpython${PYTHON_ABI}$(get_libname)" |
|
|
2202 | fi |
|
|
2203 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
|
|
2204 | die "${FUNCNAME}(): Jython does not have shared library" |
|
|
2205 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "PyPy" ]]; then |
|
|
2206 | die "${FUNCNAME}(): PyPy does not have shared library" |
|
|
2207 | fi |
|
|
2208 | } |
|
|
2209 | |
|
|
2210 | # @FUNCTION: python_get_version |
|
|
2211 | # @USAGE: [-f|--final-ABI] [-l|--language] [--full] [--major] [--minor] [--micro] |
|
|
2212 | # @DESCRIPTION: |
|
|
2213 | # Print version of Python implementation. |
|
|
2214 | # --full, --major, --minor and --micro options cannot be specified simultaneously. |
|
|
2215 | # If --full, --major, --minor and --micro options are not specified, then "${major_version}.${minor_version}" is printed. |
|
|
2216 | # If --language option is specified, then version of Python language is printed. |
|
|
2217 | # --language and --full options cannot be specified simultaneously. |
|
|
2218 | # --language and --micro options cannot be specified simultaneously. |
|
|
2219 | # If --final-ABI option is specified, then final ABI from the list of enabled ABIs is used. |
|
|
2220 | python_get_version() { |
|
|
2221 | _python_check_python_pkg_setup_execution |
|
|
2222 | |
|
|
2223 | local final_ABI="0" language="0" language_version full="0" major="0" minor="0" micro="0" PYTHON_ABI="${PYTHON_ABI}" python_command |
| 1442 | |
2224 | |
| 1443 | while (($#)); do |
2225 | while (($#)); do |
| 1444 | case "$1" in |
2226 | case "$1" in |
| 1445 | -f|--final-ABI) |
2227 | -f|--final-ABI) |
| 1446 | final_ABI="1" |
2228 | final_ABI="1" |
| 1447 | ;; |
2229 | ;; |
|
|
2230 | -l|--language) |
|
|
2231 | language="1" |
|
|
2232 | ;; |
|
|
2233 | --full) |
|
|
2234 | full="1" |
|
|
2235 | ;; |
|
|
2236 | --major) |
|
|
2237 | major="1" |
|
|
2238 | ;; |
|
|
2239 | --minor) |
|
|
2240 | minor="1" |
|
|
2241 | ;; |
|
|
2242 | --micro) |
|
|
2243 | micro="1" |
|
|
2244 | ;; |
| 1448 | -*) |
2245 | -*) |
| 1449 | die "${FUNCNAME}(): Unrecognized option '$1'" |
2246 | die "${FUNCNAME}(): Unrecognized option '$1'" |
| 1450 | ;; |
2247 | ;; |
| 1451 | *) |
2248 | *) |
| 1452 | die "${FUNCNAME}(): Invalid usage" |
2249 | die "${FUNCNAME}(): Invalid usage" |
| … | |
… | |
| 1457 | |
2254 | |
| 1458 | if [[ "${final_ABI}" == "1" ]]; then |
2255 | if [[ "${final_ABI}" == "1" ]]; then |
| 1459 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
2256 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
| 1460 | die "${FUNCNAME}(): '--final-ABI' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
2257 | die "${FUNCNAME}(): '--final-ABI' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
| 1461 | fi |
2258 | fi |
|
|
2259 | else |
|
|
2260 | if _python_package_supporting_installation_for_multiple_python_abis && ! _python_abi-specific_local_scope; then |
|
|
2261 | die "${FUNCNAME}() should be used in ABI-specific local scope" |
|
|
2262 | fi |
|
|
2263 | fi |
|
|
2264 | |
|
|
2265 | if [[ "$((${full} + ${major} + ${minor} + ${micro}))" -gt 1 ]]; then |
|
|
2266 | die "${FUNCNAME}(): '--full', '--major', '--minor' or '--micro' options cannot be specified simultaneously" |
|
|
2267 | fi |
|
|
2268 | |
|
|
2269 | if [[ "${language}" == "1" ]]; then |
|
|
2270 | if [[ "${final_ABI}" == "1" ]]; then |
| 1462 | PYTHON_ABI="$(PYTHON -f --ABI)" |
2271 | PYTHON_ABI="$(PYTHON -f --ABI)" |
| 1463 | elif [[ -z "${PYTHON_ABI}" ]]; then |
2272 | elif [[ -z "${PYTHON_ABI}" ]]; then |
| 1464 | PYTHON_ABI="$(PYTHON --ABI)" |
2273 | PYTHON_ABI="$(PYTHON --ABI)" |
| 1465 | fi |
2274 | fi |
| 1466 | |
2275 | language_version="${PYTHON_ABI%%-*}" |
|
|
2276 | if [[ "${full}" == "1" ]]; then |
|
|
2277 | die "${FUNCNAME}(): '--language' and '--full' options cannot be specified simultaneously" |
|
|
2278 | elif [[ "${major}" == "1" ]]; then |
|
|
2279 | echo "${language_version%.*}" |
|
|
2280 | elif [[ "${minor}" == "1" ]]; then |
|
|
2281 | echo "${language_version#*.}" |
|
|
2282 | elif [[ "${micro}" == "1" ]]; then |
|
|
2283 | die "${FUNCNAME}(): '--language' and '--micro' options cannot be specified simultaneously" |
|
|
2284 | else |
|
|
2285 | echo "${language_version}" |
|
|
2286 | fi |
|
|
2287 | else |
|
|
2288 | if [[ "${full}" == "1" ]]; then |
|
|
2289 | python_command="import sys; print('.'.join(str(x) for x in getattr(sys, 'pypy_version_info', sys.version_info)[:3]))" |
|
|
2290 | elif [[ "${major}" == "1" ]]; then |
|
|
2291 | python_command="import sys; print(getattr(sys, 'pypy_version_info', sys.version_info)[0])" |
|
|
2292 | elif [[ "${minor}" == "1" ]]; then |
|
|
2293 | python_command="import sys; print(getattr(sys, 'pypy_version_info', sys.version_info)[1])" |
|
|
2294 | elif [[ "${micro}" == "1" ]]; then |
|
|
2295 | python_command="import sys; print(getattr(sys, 'pypy_version_info', sys.version_info)[2])" |
|
|
2296 | else |
|
|
2297 | if [[ -n "${PYTHON_ABI}" && "${final_ABI}" == "0" ]]; then |
| 1467 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
2298 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
| 1468 | echo "/usr/include/python${PYTHON_ABI}" |
2299 | echo "${PYTHON_ABI}" |
| 1469 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
2300 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
| 1470 | echo "/usr/share/jython-${PYTHON_ABI%-jython}/Include" |
2301 | echo "${PYTHON_ABI%-jython}" |
|
|
2302 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "PyPy" ]]; then |
|
|
2303 | echo "${PYTHON_ABI#*-pypy-}" |
|
|
2304 | fi |
|
|
2305 | return |
|
|
2306 | fi |
|
|
2307 | python_command="from sys import version_info; print('.'.join(str(x) for x in version_info[:2]))" |
| 1471 | fi |
2308 | fi |
| 1472 | } |
|
|
| 1473 | |
2309 | |
| 1474 | # @FUNCTION: python_get_libdir |
2310 | if [[ "${final_ABI}" == "1" ]]; then |
|
|
2311 | "$(PYTHON -f)" -c "${python_command}" |
|
|
2312 | else |
|
|
2313 | "$(PYTHON ${PYTHON_ABI})" -c "${python_command}" |
|
|
2314 | fi |
|
|
2315 | fi |
|
|
2316 | } |
|
|
2317 | |
|
|
2318 | # @FUNCTION: python_get_implementation_and_version |
| 1475 | # @USAGE: [-f|--final-ABI] |
2319 | # @USAGE: [-f|--final-ABI] |
| 1476 | # @DESCRIPTION: |
2320 | # @DESCRIPTION: |
| 1477 | # Print path to Python library directory. |
2321 | # Print name and version of Python implementation. |
|
|
2322 | # If version of Python implementation is not bound to version of Python language, then |
|
|
2323 | # version of Python language is additionally printed. |
| 1478 | # If --final-ABI option is specified, then final ABI from the list of enabled ABIs is used. |
2324 | # If --final-ABI option is specified, then final ABI from the list of enabled ABIs is used. |
| 1479 | python_get_libdir() { |
2325 | python_get_implementation_and_version() { |
|
|
2326 | _python_check_python_pkg_setup_execution |
|
|
2327 | |
| 1480 | local final_ABI="0" PYTHON_ABI="${PYTHON_ABI}" |
2328 | local final_ABI="0" PYTHON_ABI="${PYTHON_ABI}" |
| 1481 | |
2329 | |
| 1482 | while (($#)); do |
2330 | while (($#)); do |
| 1483 | case "$1" in |
2331 | case "$1" in |
| 1484 | -f|--final-ABI) |
2332 | -f|--final-ABI) |
| … | |
… | |
| 1497 | if [[ "${final_ABI}" == "1" ]]; then |
2345 | if [[ "${final_ABI}" == "1" ]]; then |
| 1498 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
2346 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
| 1499 | die "${FUNCNAME}(): '--final-ABI' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
2347 | die "${FUNCNAME}(): '--final-ABI' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
| 1500 | fi |
2348 | fi |
| 1501 | PYTHON_ABI="$(PYTHON -f --ABI)" |
2349 | PYTHON_ABI="$(PYTHON -f --ABI)" |
| 1502 | elif [[ -z "${PYTHON_ABI}" ]]; then |
2350 | else |
| 1503 | PYTHON_ABI="$(PYTHON --ABI)" |
|
|
| 1504 | fi |
|
|
| 1505 | |
|
|
| 1506 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
|
|
| 1507 | echo "/usr/$(get_libdir)/python${PYTHON_ABI}" |
|
|
| 1508 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
|
|
| 1509 | echo "/usr/share/jython-${PYTHON_ABI%-jython}/Lib" |
|
|
| 1510 | fi |
|
|
| 1511 | } |
|
|
| 1512 | |
|
|
| 1513 | # @FUNCTION: python_get_sitedir |
|
|
| 1514 | # @USAGE: [-f|--final-ABI] |
|
|
| 1515 | # @DESCRIPTION: |
|
|
| 1516 | # Print path to Python site-packages directory. |
|
|
| 1517 | # If --final-ABI option is specified, then final ABI from the list of enabled ABIs is used. |
|
|
| 1518 | python_get_sitedir() { |
|
|
| 1519 | local options=() |
|
|
| 1520 | |
|
|
| 1521 | while (($#)); do |
|
|
| 1522 | case "$1" in |
|
|
| 1523 | -f|--final-ABI) |
|
|
| 1524 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
| 1525 | die "${FUNCNAME}(): '--final-ABI' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
|
|
| 1526 | fi |
|
|
| 1527 | options+=("$1") |
|
|
| 1528 | ;; |
|
|
| 1529 | -*) |
|
|
| 1530 | die "${FUNCNAME}(): Unrecognized option '$1'" |
|
|
| 1531 | ;; |
|
|
| 1532 | *) |
|
|
| 1533 | die "${FUNCNAME}(): Invalid usage" |
|
|
| 1534 | ;; |
|
|
| 1535 | esac |
|
|
| 1536 | shift |
|
|
| 1537 | done |
|
|
| 1538 | |
|
|
| 1539 | echo "$(python_get_libdir "${options[@]}")/site-packages" |
|
|
| 1540 | } |
|
|
| 1541 | |
|
|
| 1542 | # @FUNCTION: python_get_library |
|
|
| 1543 | # @USAGE: [-f|--final-ABI] [-l|--linker-option] |
|
|
| 1544 | # @DESCRIPTION: |
|
|
| 1545 | # Print path to Python library. |
|
|
| 1546 | # If --linker-option is specified, then "-l${library}" linker option is printed. |
|
|
| 1547 | # If --final-ABI option is specified, then final ABI from the list of enabled ABIs is used. |
|
|
| 1548 | python_get_library() { |
|
|
| 1549 | local final_ABI="0" linker_option="0" PYTHON_ABI="${PYTHON_ABI}" |
|
|
| 1550 | |
|
|
| 1551 | while (($#)); do |
|
|
| 1552 | case "$1" in |
|
|
| 1553 | -f|--final-ABI) |
|
|
| 1554 | final_ABI="1" |
|
|
| 1555 | ;; |
|
|
| 1556 | -l|--linker-option) |
|
|
| 1557 | linker_option="1" |
|
|
| 1558 | ;; |
|
|
| 1559 | -*) |
|
|
| 1560 | die "${FUNCNAME}(): Unrecognized option '$1'" |
|
|
| 1561 | ;; |
|
|
| 1562 | *) |
|
|
| 1563 | die "${FUNCNAME}(): Invalid usage" |
|
|
| 1564 | ;; |
|
|
| 1565 | esac |
|
|
| 1566 | shift |
|
|
| 1567 | done |
|
|
| 1568 | |
|
|
| 1569 | if [[ "${final_ABI}" == "1" ]]; then |
|
|
| 1570 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
2351 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| 1571 | die "${FUNCNAME}(): '--final-ABI' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
2352 | if ! _python_abi-specific_local_scope; then |
|
|
2353 | die "${FUNCNAME}() should be used in ABI-specific local scope" |
| 1572 | fi |
2354 | fi |
| 1573 | PYTHON_ABI="$(PYTHON -f --ABI)" |
|
|
| 1574 | elif [[ -z "${PYTHON_ABI}" ]]; then |
|
|
| 1575 | PYTHON_ABI="$(PYTHON --ABI)" |
|
|
| 1576 | fi |
|
|
| 1577 | |
|
|
| 1578 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
|
|
| 1579 | if [[ "${linker_option}" == "1" ]]; then |
|
|
| 1580 | echo "-lpython${PYTHON_ABI}" |
|
|
| 1581 | else |
|
|
| 1582 | echo "/usr/$(get_libdir)/libpython${PYTHON_ABI}$(get_libname)" |
|
|
| 1583 | fi |
|
|
| 1584 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
|
|
| 1585 | die "${FUNCNAME}(): Jython does not have shared library" |
|
|
| 1586 | fi |
|
|
| 1587 | } |
|
|
| 1588 | |
|
|
| 1589 | # @FUNCTION: python_get_version |
|
|
| 1590 | # @USAGE: [-f|--final-ABI] [--full] [--major] [--minor] [--micro] |
|
|
| 1591 | # @DESCRIPTION: |
|
|
| 1592 | # Print Python version. |
|
|
| 1593 | # --full, --major, --minor and --micro options cannot be specified simultaneously. |
|
|
| 1594 | # If --full, --major, --minor and --micro options are not specified, then "${major_version}.${minor_version}" is printed. |
|
|
| 1595 | # If --final-ABI option is specified, then final ABI from the list of enabled ABIs is used. |
|
|
| 1596 | python_get_version() { |
|
|
| 1597 | local final_ABI="0" full="0" major="0" minor="0" micro="0" python_command |
|
|
| 1598 | |
|
|
| 1599 | while (($#)); do |
|
|
| 1600 | case "$1" in |
|
|
| 1601 | -f|--final-ABI) |
|
|
| 1602 | final_ABI="1" |
|
|
| 1603 | ;; |
|
|
| 1604 | --full) |
|
|
| 1605 | full="1" |
|
|
| 1606 | ;; |
|
|
| 1607 | --major) |
|
|
| 1608 | major="1" |
|
|
| 1609 | ;; |
|
|
| 1610 | --minor) |
|
|
| 1611 | minor="1" |
|
|
| 1612 | ;; |
|
|
| 1613 | --micro) |
|
|
| 1614 | micro="1" |
|
|
| 1615 | ;; |
|
|
| 1616 | -*) |
|
|
| 1617 | die "${FUNCNAME}(): Unrecognized option '$1'" |
|
|
| 1618 | ;; |
|
|
| 1619 | *) |
|
|
| 1620 | die "${FUNCNAME}(): Invalid usage" |
|
|
| 1621 | ;; |
|
|
| 1622 | esac |
|
|
| 1623 | shift |
|
|
| 1624 | done |
|
|
| 1625 | |
|
|
| 1626 | if [[ "$((${full} + ${major} + ${minor} + ${micro}))" -gt 1 ]]; then |
|
|
| 1627 | die "${FUNCNAME}(): '--full', '--major', '--minor' or '--micro' options cannot be specified simultaneously" |
|
|
| 1628 | fi |
|
|
| 1629 | |
|
|
| 1630 | if [[ "${full}" == "1" ]]; then |
|
|
| 1631 | python_command="from sys import version_info; print('.'.join(str(x) for x in version_info[:3]))" |
|
|
| 1632 | elif [[ "${major}" == "1" ]]; then |
|
|
| 1633 | python_command="from sys import version_info; print(version_info[0])" |
|
|
| 1634 | elif [[ "${minor}" == "1" ]]; then |
|
|
| 1635 | python_command="from sys import version_info; print(version_info[1])" |
|
|
| 1636 | elif [[ "${micro}" == "1" ]]; then |
|
|
| 1637 | python_command="from sys import version_info; print(version_info[2])" |
|
|
| 1638 | else |
2355 | else |
| 1639 | if [[ -n "${PYTHON_ABI}" && "${final_ABI}" == "0" ]]; then |
2356 | PYTHON_ABI="${PYTHON_ABI:-$(PYTHON --ABI)}" |
| 1640 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
|
|
| 1641 | echo "${PYTHON_ABI}" |
|
|
| 1642 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
|
|
| 1643 | echo "${PYTHON_ABI%-jython}" |
|
|
| 1644 | fi |
2357 | fi |
| 1645 | return |
|
|
| 1646 | fi |
2358 | fi |
| 1647 | python_command="from sys import version_info; print('.'.join(str(x) for x in version_info[:2]))" |
|
|
| 1648 | fi |
|
|
| 1649 | |
2359 | |
| 1650 | if [[ "${final_ABI}" == "1" ]]; then |
2360 | if [[ "${PYTHON_ABI}" =~ ^[[:digit:]]+\.[[:digit:]]+-[[:alnum:]]+-[[:digit:]]+\.[[:digit:]]+$ ]]; then |
| 1651 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
2361 | echo "$(_python_get_implementation "${PYTHON_ABI}") ${PYTHON_ABI##*-} (Python ${PYTHON_ABI%%-*})" |
| 1652 | die "${FUNCNAME}(): '--final-ABI' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
|
|
| 1653 | fi |
|
|
| 1654 | "$(PYTHON -f)" -c "${python_command}" |
|
|
| 1655 | else |
2362 | else |
| 1656 | "$(PYTHON ${PYTHON_ABI})" -c "${python_command}" |
2363 | echo "$(_python_get_implementation "${PYTHON_ABI}") ${PYTHON_ABI%%-*}" |
| 1657 | fi |
2364 | fi |
| 1658 | } |
2365 | } |
| 1659 | |
2366 | |
| 1660 | # ================================================================================================ |
2367 | # ================================================================================================ |
| 1661 | # ================================ FUNCTIONS FOR RUNNING OF TESTS ================================ |
2368 | # ================================ FUNCTIONS FOR RUNNING OF TESTS ================================ |
| … | |
… | |
| 1682 | # @DESCRIPTION: |
2389 | # @DESCRIPTION: |
| 1683 | # Execute nosetests for all enabled Python ABIs. |
2390 | # Execute nosetests for all enabled Python ABIs. |
| 1684 | # In ebuilds of packages supporting installation for multiple Python ABIs, this function calls |
2391 | # In ebuilds of packages supporting installation for multiple Python ABIs, this function calls |
| 1685 | # python_execute_nosetests_pre_hook() and python_execute_nosetests_post_hook(), if they are defined. |
2392 | # python_execute_nosetests_pre_hook() and python_execute_nosetests_post_hook(), if they are defined. |
| 1686 | python_execute_nosetests() { |
2393 | python_execute_nosetests() { |
|
|
2394 | _python_check_python_pkg_setup_execution |
| 1687 | _python_set_color_variables |
2395 | _python_set_color_variables |
| 1688 | |
2396 | |
| 1689 | local PYTHONPATH_template= separate_build_dirs= |
2397 | local PYTHONPATH_template separate_build_dirs |
| 1690 | |
2398 | |
| 1691 | while (($#)); do |
2399 | while (($#)); do |
| 1692 | case "$1" in |
2400 | case "$1" in |
| 1693 | -P|--PYTHONPATH) |
2401 | -P|--PYTHONPATH) |
| 1694 | PYTHONPATH_template="$2" |
2402 | PYTHONPATH_template="$2" |
| … | |
… | |
| 1710 | esac |
2418 | esac |
| 1711 | shift |
2419 | shift |
| 1712 | done |
2420 | done |
| 1713 | |
2421 | |
| 1714 | python_test_function() { |
2422 | python_test_function() { |
| 1715 | local evaluated_PYTHONPATH= |
2423 | local evaluated_PYTHONPATH |
| 1716 | |
2424 | |
| 1717 | if [[ -n "${PYTHONPATH_template}" ]]; then |
|
|
| 1718 | evaluated_PYTHONPATH="$(eval echo -n "${PYTHONPATH_template}")" |
2425 | eval "evaluated_PYTHONPATH=\"${PYTHONPATH_template}\"" |
| 1719 | if [[ ! -e "${evaluated_PYTHONPATH}" ]]; then |
|
|
| 1720 | unset evaluated_PYTHONPATH |
|
|
| 1721 | fi |
|
|
| 1722 | fi |
|
|
| 1723 | |
2426 | |
| 1724 | _python_test_hook pre |
2427 | _python_test_hook pre |
| 1725 | |
2428 | |
| 1726 | if [[ -n "${evaluated_PYTHONPATH}" ]]; then |
2429 | if [[ -n "${evaluated_PYTHONPATH}" ]]; then |
| 1727 | echo ${_BOLD}PYTHONPATH="${evaluated_PYTHONPATH}" nosetests --verbosity="${PYTHON_TEST_VERBOSITY}" "$@"${_NORMAL} |
2430 | echo ${_BOLD}PYTHONPATH="${evaluated_PYTHONPATH}" nosetests --verbosity="${PYTHON_TEST_VERBOSITY}" "$@"${_NORMAL} |
| … | |
… | |
| 1750 | # @DESCRIPTION: |
2453 | # @DESCRIPTION: |
| 1751 | # Execute py.test for all enabled Python ABIs. |
2454 | # Execute py.test for all enabled Python ABIs. |
| 1752 | # In ebuilds of packages supporting installation for multiple Python ABIs, this function calls |
2455 | # In ebuilds of packages supporting installation for multiple Python ABIs, this function calls |
| 1753 | # python_execute_py.test_pre_hook() and python_execute_py.test_post_hook(), if they are defined. |
2456 | # python_execute_py.test_pre_hook() and python_execute_py.test_post_hook(), if they are defined. |
| 1754 | python_execute_py.test() { |
2457 | python_execute_py.test() { |
|
|
2458 | _python_check_python_pkg_setup_execution |
| 1755 | _python_set_color_variables |
2459 | _python_set_color_variables |
| 1756 | |
2460 | |
| 1757 | local PYTHONPATH_template= separate_build_dirs= |
2461 | local PYTHONPATH_template separate_build_dirs |
| 1758 | |
2462 | |
| 1759 | while (($#)); do |
2463 | while (($#)); do |
| 1760 | case "$1" in |
2464 | case "$1" in |
| 1761 | -P|--PYTHONPATH) |
2465 | -P|--PYTHONPATH) |
| 1762 | PYTHONPATH_template="$2" |
2466 | PYTHONPATH_template="$2" |
| … | |
… | |
| 1778 | esac |
2482 | esac |
| 1779 | shift |
2483 | shift |
| 1780 | done |
2484 | done |
| 1781 | |
2485 | |
| 1782 | python_test_function() { |
2486 | python_test_function() { |
| 1783 | local evaluated_PYTHONPATH= |
2487 | local evaluated_PYTHONPATH |
| 1784 | |
2488 | |
| 1785 | if [[ -n "${PYTHONPATH_template}" ]]; then |
|
|
| 1786 | evaluated_PYTHONPATH="$(eval echo -n "${PYTHONPATH_template}")" |
2489 | eval "evaluated_PYTHONPATH=\"${PYTHONPATH_template}\"" |
| 1787 | if [[ ! -e "${evaluated_PYTHONPATH}" ]]; then |
|
|
| 1788 | unset evaluated_PYTHONPATH |
|
|
| 1789 | fi |
|
|
| 1790 | fi |
|
|
| 1791 | |
2490 | |
| 1792 | _python_test_hook pre |
2491 | _python_test_hook pre |
| 1793 | |
2492 | |
| 1794 | if [[ -n "${evaluated_PYTHONPATH}" ]]; then |
2493 | if [[ -n "${evaluated_PYTHONPATH}" ]]; then |
| 1795 | echo ${_BOLD}PYTHONPATH="${evaluated_PYTHONPATH}" py.test $([[ "${PYTHON_TEST_VERBOSITY}" -ge 2 ]] && echo -v) "$@"${_NORMAL} |
2494 | echo ${_BOLD}PYTHONPATH="${evaluated_PYTHONPATH}" py.test $([[ "${PYTHON_TEST_VERBOSITY}" -ge 2 ]] && echo -v) "$@"${_NORMAL} |
| … | |
… | |
| 1818 | # @DESCRIPTION: |
2517 | # @DESCRIPTION: |
| 1819 | # Execute trial for all enabled Python ABIs. |
2518 | # Execute trial for all enabled Python ABIs. |
| 1820 | # In ebuilds of packages supporting installation for multiple Python ABIs, this function |
2519 | # In ebuilds of packages supporting installation for multiple Python ABIs, this function |
| 1821 | # calls python_execute_trial_pre_hook() and python_execute_trial_post_hook(), if they are defined. |
2520 | # calls python_execute_trial_pre_hook() and python_execute_trial_post_hook(), if they are defined. |
| 1822 | python_execute_trial() { |
2521 | python_execute_trial() { |
|
|
2522 | _python_check_python_pkg_setup_execution |
| 1823 | _python_set_color_variables |
2523 | _python_set_color_variables |
| 1824 | |
2524 | |
| 1825 | local PYTHONPATH_template= separate_build_dirs= |
2525 | local PYTHONPATH_template separate_build_dirs |
| 1826 | |
2526 | |
| 1827 | while (($#)); do |
2527 | while (($#)); do |
| 1828 | case "$1" in |
2528 | case "$1" in |
| 1829 | -P|--PYTHONPATH) |
2529 | -P|--PYTHONPATH) |
| 1830 | PYTHONPATH_template="$2" |
2530 | PYTHONPATH_template="$2" |
| … | |
… | |
| 1846 | esac |
2546 | esac |
| 1847 | shift |
2547 | shift |
| 1848 | done |
2548 | done |
| 1849 | |
2549 | |
| 1850 | python_test_function() { |
2550 | python_test_function() { |
| 1851 | local evaluated_PYTHONPATH= |
2551 | local evaluated_PYTHONPATH |
| 1852 | |
2552 | |
| 1853 | if [[ -n "${PYTHONPATH_template}" ]]; then |
|
|
| 1854 | evaluated_PYTHONPATH="$(eval echo -n "${PYTHONPATH_template}")" |
2553 | eval "evaluated_PYTHONPATH=\"${PYTHONPATH_template}\"" |
| 1855 | if [[ ! -e "${evaluated_PYTHONPATH}" ]]; then |
|
|
| 1856 | unset evaluated_PYTHONPATH |
|
|
| 1857 | fi |
|
|
| 1858 | fi |
|
|
| 1859 | |
2554 | |
| 1860 | _python_test_hook pre |
2555 | _python_test_hook pre |
| 1861 | |
2556 | |
| 1862 | if [[ -n "${evaluated_PYTHONPATH}" ]]; then |
2557 | if [[ -n "${evaluated_PYTHONPATH}" ]]; then |
| 1863 | echo ${_BOLD}PYTHONPATH="${evaluated_PYTHONPATH}" trial $([[ "${PYTHON_TEST_VERBOSITY}" -ge 4 ]] && echo --spew) "$@"${_NORMAL} |
2558 | echo ${_BOLD}PYTHONPATH="${evaluated_PYTHONPATH}" trial $([[ "${PYTHON_TEST_VERBOSITY}" -ge 4 ]] && echo --spew) "$@"${_NORMAL} |
| … | |
… | |
| 1888 | # @FUNCTION: python_enable_pyc |
2583 | # @FUNCTION: python_enable_pyc |
| 1889 | # @DESCRIPTION: |
2584 | # @DESCRIPTION: |
| 1890 | # Tell Python to automatically recompile modules to .pyc/.pyo if the |
2585 | # Tell Python to automatically recompile modules to .pyc/.pyo if the |
| 1891 | # timestamps/version stamps have changed. |
2586 | # timestamps/version stamps have changed. |
| 1892 | python_enable_pyc() { |
2587 | python_enable_pyc() { |
|
|
2588 | _python_check_python_pkg_setup_execution |
|
|
2589 | |
|
|
2590 | if [[ "$#" -ne 0 ]]; then |
|
|
2591 | die "${FUNCNAME}() does not accept arguments" |
|
|
2592 | fi |
|
|
2593 | |
| 1893 | unset PYTHONDONTWRITEBYTECODE |
2594 | unset PYTHONDONTWRITEBYTECODE |
| 1894 | } |
2595 | } |
| 1895 | |
2596 | |
| 1896 | # @FUNCTION: python_disable_pyc |
2597 | # @FUNCTION: python_disable_pyc |
| 1897 | # @DESCRIPTION: |
2598 | # @DESCRIPTION: |
| 1898 | # Tell Python not to automatically recompile modules to .pyc/.pyo |
2599 | # Tell Python not to automatically recompile modules to .pyc/.pyo |
| 1899 | # even if the timestamps/version stamps do not match. This is done |
2600 | # even if the timestamps/version stamps do not match. This is done |
| 1900 | # to protect sandbox. |
2601 | # to protect sandbox. |
| 1901 | python_disable_pyc() { |
2602 | python_disable_pyc() { |
|
|
2603 | _python_check_python_pkg_setup_execution |
|
|
2604 | |
|
|
2605 | if [[ "$#" -ne 0 ]]; then |
|
|
2606 | die "${FUNCNAME}() does not accept arguments" |
|
|
2607 | fi |
|
|
2608 | |
| 1902 | export PYTHONDONTWRITEBYTECODE="1" |
2609 | export PYTHONDONTWRITEBYTECODE="1" |
| 1903 | } |
2610 | } |
| 1904 | |
2611 | |
| 1905 | _python_clean_compiled_modules() { |
2612 | _python_clean_compiled_modules() { |
| 1906 | _python_initialize_prefix_variables |
2613 | _python_initialize_prefix_variables |
| 1907 | _python_set_color_variables |
2614 | _python_set_color_variables |
| 1908 | |
2615 | |
| 1909 | [[ "${FUNCNAME[1]}" =~ ^(python_mod_optimize|python_mod_compile|python_mod_cleanup)$ ]] || die "${FUNCNAME}(): Invalid usage" |
2616 | [[ "${FUNCNAME[1]}" =~ ^(python_mod_optimize|python_mod_cleanup)$ ]] || die "${FUNCNAME}(): Invalid usage" |
| 1910 | |
2617 | |
| 1911 | local base_module_name compiled_file compiled_files=() dir path py_file root |
2618 | local base_module_name compiled_file compiled_files=() dir path py_file root |
| 1912 | |
2619 | |
| 1913 | # Strip trailing slash from EROOT. |
2620 | # Strip trailing slash from EROOT. |
| 1914 | root="${EROOT%/}" |
2621 | root="${EROOT%/}" |
| … | |
… | |
| 1921 | done < <(find "${path}" "(" -name "*.py[co]" -o -name "*\$py.class" ")" -print0) |
2628 | done < <(find "${path}" "(" -name "*.py[co]" -o -name "*\$py.class" ")" -print0) |
| 1922 | |
2629 | |
| 1923 | if [[ "${EBUILD_PHASE}" == "postrm" ]]; then |
2630 | if [[ "${EBUILD_PHASE}" == "postrm" ]]; then |
| 1924 | # Delete empty child directories. |
2631 | # Delete empty child directories. |
| 1925 | find "${path}" -type d | sort -r | while read -r dir; do |
2632 | find "${path}" -type d | sort -r | while read -r dir; do |
| 1926 | rmdir "${dir}" 2> /dev/null && echo "${_CYAN}<<< ${dir}${_NORMAL}" |
2633 | if rmdir "${dir}" 2> /dev/null; then |
|
|
2634 | echo "${_CYAN}<<< ${dir}${_NORMAL}" |
|
|
2635 | fi |
| 1927 | done |
2636 | done |
| 1928 | fi |
2637 | fi |
| 1929 | elif [[ "${path}" == *.py ]]; then |
2638 | elif [[ "${path}" == *.py ]]; then |
| 1930 | base_module_name="${path##*/}" |
2639 | base_module_name="${path##*/}" |
| 1931 | base_module_name="${base_module_name%.py}" |
2640 | base_module_name="${base_module_name%.py}" |
| … | |
… | |
| 1961 | if [[ "${dir}" == "__pycache__" ]]; then |
2670 | if [[ "${dir}" == "__pycache__" ]]; then |
| 1962 | base_module_name="${compiled_file##*/}" |
2671 | base_module_name="${compiled_file##*/}" |
| 1963 | base_module_name="${base_module_name%\$py.class}" |
2672 | base_module_name="${base_module_name%\$py.class}" |
| 1964 | py_file="${compiled_file%__pycache__/*}${base_module_name}.py" |
2673 | py_file="${compiled_file%__pycache__/*}${base_module_name}.py" |
| 1965 | else |
2674 | else |
| 1966 | py_file="${compiled_file%\$py.class}" |
2675 | py_file="${compiled_file%\$py.class}.py" |
| 1967 | fi |
2676 | fi |
| 1968 | if [[ "${EBUILD_PHASE}" == "postinst" ]]; then |
2677 | if [[ "${EBUILD_PHASE}" == "postinst" ]]; then |
| 1969 | [[ -f "${py_file}" && "${compiled_file}" -nt "${py_file}" ]] && continue |
2678 | [[ -f "${py_file}" && "${compiled_file}" -nt "${py_file}" ]] && continue |
| 1970 | else |
2679 | else |
| 1971 | [[ -f "${py_file}" ]] && continue |
2680 | [[ -f "${py_file}" ]] && continue |
| … | |
… | |
| 1977 | fi |
2686 | fi |
| 1978 | |
2687 | |
| 1979 | # Delete empty parent directories. |
2688 | # Delete empty parent directories. |
| 1980 | dir="${compiled_file%/*}" |
2689 | dir="${compiled_file%/*}" |
| 1981 | while [[ "${dir}" != "${root}" ]]; do |
2690 | while [[ "${dir}" != "${root}" ]]; do |
| 1982 | if rmdir "${compiled_file%/*}" 2> /dev/null; then |
2691 | if rmdir "${dir}" 2> /dev/null; then |
| 1983 | echo "${_CYAN}<<< ${compiled_file%/*}${_NORMAL}" |
2692 | echo "${_CYAN}<<< ${dir}${_NORMAL}" |
| 1984 | else |
2693 | else |
| 1985 | break |
2694 | break |
| 1986 | fi |
2695 | fi |
| 1987 | dir="${dir%/*}" |
2696 | dir="${dir%/*}" |
| 1988 | done |
2697 | done |
| 1989 | done |
2698 | done |
| 1990 | done |
2699 | done |
| 1991 | } |
2700 | } |
| 1992 | |
2701 | |
| 1993 | # @FUNCTION: python_mod_optimize |
2702 | # @FUNCTION: python_mod_optimize |
| 1994 | # @USAGE: [options] [directory|file] |
2703 | # @USAGE: [--allow-evaluated-non-sitedir-paths] [-d directory] [-f] [-l] [-q] [-x regular_expression] [--] <file|directory> [files|directories] |
| 1995 | # @DESCRIPTION: |
2704 | # @DESCRIPTION: |
| 1996 | # If no arguments supplied, it will recompile not recursively all modules |
2705 | # Byte-compile specified Python modules. |
| 1997 | # under sys.path (eg. /usr/lib/python2.6, /usr/lib/python2.6/site-packages). |
|
|
| 1998 | # |
|
|
| 1999 | # If supplied with arguments, it will recompile all modules recursively |
|
|
| 2000 | # in the supplied directory. |
|
|
| 2001 | # |
|
|
| 2002 | # Options passed to this function are passed to compileall.py. |
2706 | # -d, -f, -l, -q and -x options passed to this function are passed to compileall.py. |
| 2003 | # |
2707 | # |
| 2004 | # This function can be used only in pkg_postinst() phase. |
2708 | # This function can be used only in pkg_postinst() phase. |
| 2005 | python_mod_optimize() { |
2709 | python_mod_optimize() { |
|
|
2710 | if [[ "${EBUILD_PHASE}" != "postinst" ]]; then |
|
|
2711 | die "${FUNCNAME}() can be used only in pkg_postinst() phase" |
|
|
2712 | fi |
|
|
2713 | |
|
|
2714 | _python_check_python_pkg_setup_execution |
| 2006 | _python_initialize_prefix_variables |
2715 | _python_initialize_prefix_variables |
| 2007 | |
2716 | |
| 2008 | # Check if phase is pkg_postinst(). |
2717 | if ! has "${EAPI:-0}" 0 1 2 || _python_package_supporting_installation_for_multiple_python_abis || _python_implementation || [[ "${CATEGORY}/${PN}" == "sys-apps/portage" ]]; then |
| 2009 | [[ "${EBUILD_PHASE}" != "postinst" ]] && die "${FUNCNAME}() can be used only in pkg_postinst() phase" |
|
|
| 2010 | |
|
|
| 2011 | if ! has "${EAPI:-0}" 0 1 2 || _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
| 2012 | # PYTHON_ABI variable cannot be local in packages not supporting installation for multiple Python ABIs. |
2718 | # PYTHON_ABI variable cannot be local in packages not supporting installation for multiple Python ABIs. |
| 2013 | local dir file iterated_PYTHON_ABIS options=() other_dirs=() other_files=() previous_PYTHON_ABI="${PYTHON_ABI}" return_code root site_packages_absolute_dirs=() site_packages_dirs=() site_packages_absolute_files=() site_packages_files=() |
2719 | 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 |
| 2014 | |
2720 | |
| 2015 | if _python_package_supporting_installation_for_multiple_python_abis; then |
2721 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| 2016 | if [[ -z "${PYTHON_ABIS}" ]]; then |
2722 | if has "${EAPI:-0}" 0 1 2 3 && [[ -z "${PYTHON_ABIS}" ]]; then |
| 2017 | die "${FUNCNAME}(): Environment not initialized" |
2723 | die "${FUNCNAME}(): python_pkg_setup() or python_execute_function() not called" |
| 2018 | fi |
2724 | fi |
| 2019 | iterated_PYTHON_ABIS="${PYTHON_ABIS}" |
2725 | iterated_PYTHON_ABIS="${PYTHON_ABIS}" |
| 2020 | else |
2726 | else |
|
|
2727 | if has "${EAPI:-0}" 0 1 2 3; then |
| 2021 | iterated_PYTHON_ABIS="${PYTHON_ABI:=$(PYTHON --ABI)}" |
2728 | iterated_PYTHON_ABIS="${PYTHON_ABI:=$(PYTHON --ABI)}" |
|
|
2729 | else |
|
|
2730 | iterated_PYTHON_ABIS="${PYTHON_ABI}" |
|
|
2731 | fi |
| 2022 | fi |
2732 | fi |
| 2023 | |
2733 | |
| 2024 | # Strip trailing slash from EROOT. |
2734 | # Strip trailing slash from EROOT. |
| 2025 | root="${EROOT%/}" |
2735 | root="${EROOT%/}" |
| 2026 | |
2736 | |
| 2027 | while (($#)); do |
2737 | while (($#)); do |
| 2028 | case "$1" in |
2738 | case "$1" in |
|
|
2739 | --allow-evaluated-non-sitedir-paths) |
|
|
2740 | allow_evaluated_non_sitedir_paths="1" |
|
|
2741 | ;; |
| 2029 | -l|-f|-q) |
2742 | -l|-f|-q) |
| 2030 | options+=("$1") |
2743 | options+=("$1") |
| 2031 | ;; |
2744 | ;; |
| 2032 | -d|-x) |
2745 | -d|-x) |
| 2033 | options+=("$1" "$2") |
2746 | options+=("$1" "$2") |
| 2034 | shift |
2747 | shift |
| 2035 | ;; |
2748 | ;; |
|
|
2749 | --) |
|
|
2750 | shift |
|
|
2751 | break |
|
|
2752 | ;; |
| 2036 | -*) |
2753 | -*) |
| 2037 | ewarn "${FUNCNAME}(): Ignoring option '$1'" |
2754 | die "${FUNCNAME}(): Unrecognized option '$1'" |
| 2038 | ;; |
2755 | ;; |
| 2039 | *) |
2756 | *) |
| 2040 | break |
2757 | break |
| 2041 | ;; |
2758 | ;; |
| 2042 | esac |
2759 | esac |
| 2043 | shift |
2760 | shift |
| 2044 | done |
2761 | done |
| 2045 | |
2762 | |
|
|
2763 | if [[ "${allow_evaluated_non_sitedir_paths}" == "1" ]] && ! _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
2764 | die "${FUNCNAME}(): '--allow-evaluated-non-sitedir-paths' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
|
|
2765 | fi |
|
|
2766 | |
| 2046 | if [[ "$#" -eq 0 ]]; then |
2767 | if [[ "$#" -eq 0 ]]; then |
| 2047 | _python_set_color_variables |
2768 | die "${FUNCNAME}(): Missing files or directories" |
| 2048 | |
|
|
| 2049 | echo |
|
|
| 2050 | echo " ${_RED}*${_NORMAL} ${_RED}Deprecation Warning: Not passing of paths to ${FUNCNAME}() is deprecated and will be${_NORMAL}" |
|
|
| 2051 | echo " ${_RED}*${_NORMAL} ${_RED}disallowed on 2010-09-01. Call ${FUNCNAME}() with paths to Python modules.${_NORMAL}" |
|
|
| 2052 | echo " ${_RED}*${_NORMAL} ${_RED}The ebuild needs to be fixed. Please report a bug, if it has not been already reported.${_NORMAL}" |
|
|
| 2053 | echo |
|
|
| 2054 | |
|
|
| 2055 | einfo &> /dev/null |
|
|
| 2056 | einfo "Deprecation Warning: Not passing of paths to ${FUNCNAME}() is deprecated and will be" &> /dev/null |
|
|
| 2057 | einfo "disallowed on 2010-09-01. Call ${FUNCNAME}() with paths to Python modules." &> /dev/null |
|
|
| 2058 | einfo "The ebuild needs to be fixed. Please report a bug, if it has not been already reported." &> /dev/null |
|
|
| 2059 | einfo &> /dev/null |
|
|
| 2060 | fi |
2769 | fi |
| 2061 | |
2770 | |
| 2062 | while (($#)); do |
2771 | while (($#)); do |
|
|
2772 | if [[ "$1" =~ ^($|(\.|\.\.|/)($|/)) ]]; then |
|
|
2773 | die "${FUNCNAME}(): Invalid argument '$1'" |
| 2063 | if ! _python_implementation && [[ "$1" =~ ^/usr/lib(32|64)?/python[[:digit:]]+\.[[:digit:]]+ ]]; then |
2774 | elif ! _python_implementation && [[ "$1" =~ ^/usr/lib(32|64)?/python[[:digit:]]+\.[[:digit:]]+ ]]; then |
| 2064 | die "${FUNCNAME}(): Paths of directories / files in site-packages directories must be relative to site-packages directories" |
2775 | die "${FUNCNAME}(): Paths of directories / files in site-packages directories must be relative to site-packages directories" |
| 2065 | elif [[ "$1" =~ ^/ ]]; then |
2776 | elif [[ "$1" =~ ^/ ]]; then |
| 2066 | if _python_package_supporting_installation_for_multiple_python_abis; then |
2777 | if _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
2778 | if [[ "${allow_evaluated_non_sitedir_paths}" != "1" ]]; then |
| 2067 | die "${FUNCNAME}(): Absolute paths cannot be used in ebuilds of packages supporting installation for multiple Python ABIs" |
2779 | die "${FUNCNAME}(): Absolute paths cannot be used in ebuilds of packages supporting installation for multiple Python ABIs" |
| 2068 | fi |
2780 | fi |
| 2069 | if [[ -d "${root}$1" ]]; then |
2781 | if [[ "$1" != *\$* ]]; then |
| 2070 | other_dirs+=("${root}$1") |
2782 | die "${FUNCNAME}(): '$1' has invalid syntax" |
| 2071 | elif [[ -f "${root}$1" ]]; then |
2783 | fi |
| 2072 | other_files+=("${root}$1") |
2784 | if [[ "$1" == *.py ]]; then |
| 2073 | elif [[ -e "${root}$1" ]]; then |
2785 | evaluated_files+=("$1") |
| 2074 | eerror "'${root}$1' is not a file or a directory!" |
2786 | else |
|
|
2787 | evaluated_dirs+=("$1") |
|
|
2788 | fi |
| 2075 | else |
2789 | else |
|
|
2790 | if [[ -d "${root}$1" ]]; then |
|
|
2791 | other_dirs+=("${root}$1") |
|
|
2792 | elif [[ -f "${root}$1" ]]; then |
|
|
2793 | other_files+=("${root}$1") |
|
|
2794 | elif [[ -e "${root}$1" ]]; then |
|
|
2795 | eerror "${FUNCNAME}(): '${root}$1' is not a regular file or a directory" |
|
|
2796 | else |
| 2076 | eerror "'${root}$1' does not exist!" |
2797 | eerror "${FUNCNAME}(): '${root}$1' does not exist" |
|
|
2798 | fi |
| 2077 | fi |
2799 | fi |
| 2078 | else |
2800 | else |
| 2079 | for PYTHON_ABI in ${iterated_PYTHON_ABIS}; do |
2801 | for PYTHON_ABI in ${iterated_PYTHON_ABIS}; do |
| 2080 | if [[ -d "${root}$(python_get_sitedir)/$1" ]]; then |
2802 | if [[ -d "${root}$(python_get_sitedir)/$1" ]]; then |
| 2081 | site_packages_dirs+=("$1") |
2803 | site_packages_dirs+=("$1") |
| 2082 | break |
2804 | break |
| 2083 | elif [[ -f "${root}$(python_get_sitedir)/$1" ]]; then |
2805 | elif [[ -f "${root}$(python_get_sitedir)/$1" ]]; then |
| 2084 | site_packages_files+=("$1") |
2806 | site_packages_files+=("$1") |
| 2085 | break |
2807 | break |
| 2086 | elif [[ -e "${root}$(python_get_sitedir)/$1" ]]; then |
2808 | elif [[ -e "${root}$(python_get_sitedir)/$1" ]]; then |
| 2087 | eerror "'$1' is not a file or a directory!" |
2809 | eerror "${FUNCNAME}(): '$1' is not a regular file or a directory" |
| 2088 | else |
2810 | else |
| 2089 | eerror "'$1' does not exist!" |
2811 | eerror "${FUNCNAME}(): '$1' does not exist" |
| 2090 | fi |
2812 | fi |
| 2091 | done |
2813 | done |
| 2092 | fi |
2814 | fi |
| 2093 | shift |
2815 | shift |
| 2094 | done |
2816 | done |
| 2095 | |
2817 | |
| 2096 | # Set additional options. |
2818 | # Set additional options. |
| 2097 | options+=("-q") |
2819 | options+=("-q") |
| 2098 | |
2820 | |
| 2099 | for PYTHON_ABI in ${iterated_PYTHON_ABIS}; do |
2821 | for PYTHON_ABI in ${iterated_PYTHON_ABIS}; do |
| 2100 | if ((${#site_packages_dirs[@]})) || ((${#site_packages_files[@]})); then |
2822 | if ((${#site_packages_dirs[@]})) || ((${#site_packages_files[@]})) || ((${#evaluated_dirs[@]})) || ((${#evaluated_files[@]})); then |
| 2101 | return_code="0" |
2823 | return_code="0" |
|
|
2824 | stderr="" |
| 2102 | ebegin "Compilation and optimization of Python modules for $(python_get_implementation) $(python_get_version)" |
2825 | ebegin "Compilation and optimization of Python modules for $(python_get_implementation_and_version)" |
| 2103 | if ((${#site_packages_dirs[@]})); then |
2826 | if ((${#site_packages_dirs[@]})) || ((${#evaluated_dirs[@]})); then |
| 2104 | for dir in "${site_packages_dirs[@]}"; do |
2827 | for dir in "${site_packages_dirs[@]}"; do |
| 2105 | site_packages_absolute_dirs+=("${root}$(python_get_sitedir)/${dir}") |
2828 | dirs+=("${root}$(python_get_sitedir)/${dir}") |
| 2106 | done |
2829 | done |
| 2107 | "$(PYTHON)" "${root}$(python_get_libdir)/compileall.py" "${options[@]}" "${site_packages_absolute_dirs[@]}" || return_code="1" |
2830 | for dir in "${evaluated_dirs[@]}"; do |
|
|
2831 | eval "dirs+=(\"\${root}${dir}\")" |
|
|
2832 | done |
|
|
2833 | stderr+="${stderr:+$'\n'}$("$(PYTHON)" -m compileall "${options[@]}" "${dirs[@]}" 2>&1)" || return_code="1" |
| 2108 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" != "Jython" ]]; then |
2834 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" != "Jython" ]]; then |
| 2109 | "$(PYTHON)" -O "${root}$(python_get_libdir)/compileall.py" "${options[@]}" "${site_packages_absolute_dirs[@]}" &> /dev/null || return_code="1" |
2835 | "$(PYTHON)" -O -m compileall "${options[@]}" "${dirs[@]}" &> /dev/null || return_code="1" |
| 2110 | fi |
2836 | fi |
| 2111 | _python_clean_compiled_modules "${site_packages_absolute_dirs[@]}" |
2837 | _python_clean_compiled_modules "${dirs[@]}" |
| 2112 | fi |
2838 | fi |
| 2113 | if ((${#site_packages_files[@]})); then |
2839 | if ((${#site_packages_files[@]})) || ((${#evaluated_files[@]})); then |
| 2114 | for file in "${site_packages_files[@]}"; do |
2840 | for file in "${site_packages_files[@]}"; do |
| 2115 | site_packages_absolute_files+=("${root}$(python_get_sitedir)/${file}") |
2841 | files+=("${root}$(python_get_sitedir)/${file}") |
| 2116 | done |
2842 | done |
| 2117 | "$(PYTHON)" "${root}$(python_get_libdir)/py_compile.py" "${site_packages_absolute_files[@]}" || return_code="1" |
2843 | for file in "${evaluated_files[@]}"; do |
|
|
2844 | eval "files+=(\"\${root}${file}\")" |
|
|
2845 | done |
|
|
2846 | stderr+="${stderr:+$'\n'}$("$(PYTHON)" -m py_compile "${files[@]}" 2>&1)" || return_code="1" |
| 2118 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" != "Jython" ]]; then |
2847 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" != "Jython" ]]; then |
| 2119 | "$(PYTHON)" -O "${root}$(python_get_libdir)/py_compile.py" "${site_packages_absolute_files[@]}" &> /dev/null || return_code="1" |
2848 | "$(PYTHON)" -O -m py_compile "${files[@]}" &> /dev/null || return_code="1" |
| 2120 | fi |
2849 | fi |
| 2121 | _python_clean_compiled_modules "${site_packages_absolute_files[@]}" |
2850 | _python_clean_compiled_modules "${files[@]}" |
| 2122 | fi |
2851 | fi |
| 2123 | eend "${return_code}" |
2852 | eend "${return_code}" |
|
|
2853 | if [[ -n "${stderr}" ]]; then |
|
|
2854 | eerror "Syntax errors / warnings in Python modules for $(python_get_implementation_and_version):" &> /dev/null |
|
|
2855 | while read stderr_line; do |
|
|
2856 | eerror " ${stderr_line}" |
|
|
2857 | done <<< "${stderr}" |
| 2124 | fi |
2858 | fi |
| 2125 | unset site_packages_absolute_dirs site_packages_absolute_files |
2859 | fi |
|
|
2860 | unset dirs files |
| 2126 | done |
2861 | done |
| 2127 | |
2862 | |
| 2128 | if _python_package_supporting_installation_for_multiple_python_abis; then |
2863 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| 2129 | # Restore previous value of PYTHON_ABI. |
2864 | # Restore previous value of PYTHON_ABI. |
| 2130 | if [[ -n "${previous_PYTHON_ABI}" ]]; then |
2865 | if [[ -n "${previous_PYTHON_ABI}" ]]; then |
| … | |
… | |
| 2134 | fi |
2869 | fi |
| 2135 | fi |
2870 | fi |
| 2136 | |
2871 | |
| 2137 | if ((${#other_dirs[@]})) || ((${#other_files[@]})); then |
2872 | if ((${#other_dirs[@]})) || ((${#other_files[@]})); then |
| 2138 | return_code="0" |
2873 | return_code="0" |
|
|
2874 | stderr="" |
| 2139 | ebegin "Compilation and optimization of Python modules placed outside of site-packages directories for $(python_get_implementation) $(python_get_version)" |
2875 | ebegin "Compilation and optimization of Python modules placed outside of site-packages directories for $(python_get_implementation_and_version)" |
| 2140 | if ((${#other_dirs[@]})); then |
2876 | if ((${#other_dirs[@]})); then |
| 2141 | "$(PYTHON ${PYTHON_ABI})" "${root}$(python_get_libdir)/compileall.py" "${options[@]}" "${other_dirs[@]}" || return_code="1" |
2877 | stderr+="${stderr:+$'\n'}$("$(PYTHON ${PYTHON_ABI})" -m compileall "${options[@]}" "${other_dirs[@]}" 2>&1)" || return_code="1" |
| 2142 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" != "Jython" ]]; then |
2878 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" != "Jython" ]]; then |
| 2143 | "$(PYTHON ${PYTHON_ABI})" -O "${root}$(python_get_libdir)/compileall.py" "${options[@]}" "${other_dirs[@]}" &> /dev/null || return_code="1" |
2879 | "$(PYTHON ${PYTHON_ABI})" -O -m compileall "${options[@]}" "${other_dirs[@]}" &> /dev/null || return_code="1" |
| 2144 | fi |
2880 | fi |
| 2145 | _python_clean_compiled_modules "${other_dirs[@]}" |
2881 | _python_clean_compiled_modules "${other_dirs[@]}" |
| 2146 | fi |
2882 | fi |
| 2147 | if ((${#other_files[@]})); then |
2883 | if ((${#other_files[@]})); then |
| 2148 | "$(PYTHON ${PYTHON_ABI})" "${root}$(python_get_libdir)/py_compile.py" "${other_files[@]}" || return_code="1" |
2884 | stderr+="${stderr:+$'\n'}$("$(PYTHON ${PYTHON_ABI})" -m py_compile "${other_files[@]}" 2>&1)" || return_code="1" |
| 2149 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" != "Jython" ]]; then |
2885 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" != "Jython" ]]; then |
| 2150 | "$(PYTHON ${PYTHON_ABI})" -O "${root}$(python_get_libdir)/py_compile.py" "${other_files[@]}" &> /dev/null || return_code="1" |
2886 | "$(PYTHON ${PYTHON_ABI})" -O -m py_compile "${other_files[@]}" &> /dev/null || return_code="1" |
| 2151 | fi |
2887 | fi |
| 2152 | _python_clean_compiled_modules "${other_dirs[@]}" |
2888 | _python_clean_compiled_modules "${other_files[@]}" |
| 2153 | fi |
2889 | fi |
| 2154 | eend "${return_code}" |
2890 | eend "${return_code}" |
|
|
2891 | if [[ -n "${stderr}" ]]; then |
|
|
2892 | eerror "Syntax errors / warnings in Python modules placed outside of site-packages directories for $(python_get_implementation_and_version):" &> /dev/null |
|
|
2893 | while read stderr_line; do |
|
|
2894 | eerror " ${stderr_line}" |
|
|
2895 | done <<< "${stderr}" |
|
|
2896 | fi |
| 2155 | fi |
2897 | fi |
| 2156 | else |
2898 | else |
| 2157 | # Deprecated part of python_mod_optimize() |
2899 | # Deprecated part of python_mod_optimize() |
|
|
2900 | ewarn |
|
|
2901 | ewarn "Deprecation Warning: Usage of ${FUNCNAME}() in packages not supporting installation" |
|
|
2902 | ewarn "for multiple Python ABIs in EAPI <=2 is deprecated and will be disallowed on 2011-08-01." |
|
|
2903 | ewarn "Use EAPI >=3 and call ${FUNCNAME}() with paths having appropriate syntax." |
|
|
2904 | ewarn "The ebuild needs to be fixed. Please report a bug, if it has not been already reported." |
|
|
2905 | ewarn |
| 2158 | |
2906 | |
| 2159 | local myroot mydirs=() myfiles=() myopts=() return_code="0" |
2907 | local myroot mydirs=() myfiles=() myopts=() return_code="0" |
| 2160 | |
2908 | |
| 2161 | # strip trailing slash |
2909 | # strip trailing slash |
| 2162 | myroot="${EROOT%/}" |
2910 | myroot="${EROOT%/}" |
| … | |
… | |
| 2169 | ;; |
2917 | ;; |
| 2170 | -d|-x) |
2918 | -d|-x) |
| 2171 | myopts+=("$1" "$2") |
2919 | myopts+=("$1" "$2") |
| 2172 | shift |
2920 | shift |
| 2173 | ;; |
2921 | ;; |
|
|
2922 | --) |
|
|
2923 | shift |
|
|
2924 | break |
|
|
2925 | ;; |
| 2174 | -*) |
2926 | -*) |
| 2175 | ewarn "${FUNCNAME}(): Ignoring option '$1'" |
2927 | die "${FUNCNAME}(): Unrecognized option '$1'" |
| 2176 | ;; |
2928 | ;; |
| 2177 | *) |
2929 | *) |
| 2178 | break |
2930 | break |
| 2179 | ;; |
2931 | ;; |
| 2180 | esac |
2932 | esac |
| 2181 | shift |
2933 | shift |
| 2182 | done |
2934 | done |
| 2183 | |
2935 | |
| 2184 | if [[ "$#" -eq 0 ]]; then |
2936 | if [[ "$#" -eq 0 ]]; then |
| 2185 | _python_set_color_variables |
2937 | die "${FUNCNAME}(): Missing files or directories" |
| 2186 | |
|
|
| 2187 | echo |
|
|
| 2188 | echo " ${_RED}*${_NORMAL} ${_RED}Deprecation Warning: Not passing of paths to ${FUNCNAME}() is deprecated and will be${_NORMAL}" |
|
|
| 2189 | echo " ${_RED}*${_NORMAL} ${_RED}disallowed on 2010-09-01. Call ${FUNCNAME}() with paths to Python modules.${_NORMAL}" |
|
|
| 2190 | echo " ${_RED}*${_NORMAL} ${_RED}The ebuild needs to be fixed. Please report a bug, if it has not been already reported.${_NORMAL}" |
|
|
| 2191 | echo |
|
|
| 2192 | |
|
|
| 2193 | einfo &> /dev/null |
|
|
| 2194 | einfo "Deprecation Warning: Not passing of paths to ${FUNCNAME}() is deprecated and will be" &> /dev/null |
|
|
| 2195 | einfo "disallowed on 2010-09-01. Call ${FUNCNAME}() with paths to Python modules." &> /dev/null |
|
|
| 2196 | einfo "The ebuild needs to be fixed. Please report a bug, if it has not been already reported." &> /dev/null |
|
|
| 2197 | einfo &> /dev/null |
|
|
| 2198 | fi |
2938 | fi |
| 2199 | |
2939 | |
| 2200 | while (($#)); do |
2940 | while (($#)); do |
|
|
2941 | if [[ "$1" =~ ^($|(\.|\.\.|/)($|/)) ]]; then |
|
|
2942 | die "${FUNCNAME}(): Invalid argument '$1'" |
| 2201 | if [[ -d "${myroot}/${1#/}" ]]; then |
2943 | elif [[ -d "${myroot}/${1#/}" ]]; then |
| 2202 | mydirs+=("${myroot}/${1#/}") |
2944 | mydirs+=("${myroot}/${1#/}") |
| 2203 | elif [[ -f "${myroot}/${1#/}" ]]; then |
2945 | elif [[ -f "${myroot}/${1#/}" ]]; then |
| 2204 | # Files are passed to python_mod_compile which is EROOT-aware |
2946 | myfiles+=("${myroot}/${1#/}") |
| 2205 | myfiles+=("$1") |
|
|
| 2206 | elif [[ -e "${myroot}/${1#/}" ]]; then |
2947 | elif [[ -e "${myroot}/${1#/}" ]]; then |
| 2207 | eerror "${myroot}/${1#/} is not a file or directory!" |
2948 | eerror "${FUNCNAME}(): ${myroot}/${1#/} is not a regular file or directory" |
| 2208 | else |
2949 | else |
| 2209 | eerror "${myroot}/${1#/} does not exist!" |
2950 | eerror "${FUNCNAME}(): ${myroot}/${1#/} does not exist" |
| 2210 | fi |
2951 | fi |
| 2211 | shift |
2952 | shift |
| 2212 | done |
2953 | done |
| 2213 | |
2954 | |
| 2214 | # set additional opts |
2955 | # set additional opts |
| … | |
… | |
| 2222 | "$(PYTHON ${PYTHON_ABI})" -O "${myroot}$(python_get_libdir)/compileall.py" "${myopts[@]}" "${mydirs[@]}" &> /dev/null || return_code="1" |
2963 | "$(PYTHON ${PYTHON_ABI})" -O "${myroot}$(python_get_libdir)/compileall.py" "${myopts[@]}" "${mydirs[@]}" &> /dev/null || return_code="1" |
| 2223 | _python_clean_compiled_modules "${mydirs[@]}" |
2964 | _python_clean_compiled_modules "${mydirs[@]}" |
| 2224 | fi |
2965 | fi |
| 2225 | |
2966 | |
| 2226 | if ((${#myfiles[@]})); then |
2967 | if ((${#myfiles[@]})); then |
|
|
2968 | "$(PYTHON ${PYTHON_ABI})" "${myroot}$(python_get_libdir)/py_compile.py" "${myfiles[@]}" || return_code="1" |
|
|
2969 | "$(PYTHON ${PYTHON_ABI})" -O "${myroot}$(python_get_libdir)/py_compile.py" "${myfiles[@]}" &> /dev/null || return_code="1" |
| 2227 | python_mod_compile "${myfiles[@]}" |
2970 | _python_clean_compiled_modules "${myfiles[@]}" |
| 2228 | fi |
2971 | fi |
| 2229 | |
2972 | |
| 2230 | eend "${return_code}" |
2973 | eend "${return_code}" |
| 2231 | fi |
2974 | fi |
| 2232 | } |
2975 | } |
| 2233 | |
2976 | |
| 2234 | # @FUNCTION: python_mod_cleanup |
2977 | # @FUNCTION: python_mod_cleanup |
| 2235 | # @USAGE: [directory|file] |
2978 | # @USAGE: [--allow-evaluated-non-sitedir-paths] [--] <file|directory> [files|directories] |
| 2236 | # @DESCRIPTION: |
2979 | # @DESCRIPTION: |
| 2237 | # Run with optional arguments, where arguments are Python modules. If none given, |
2980 | # Delete orphaned byte-compiled Python modules corresponding to specified Python modules. |
| 2238 | # it will look in /usr/lib/python[0-9].[0-9]. |
|
|
| 2239 | # |
|
|
| 2240 | # It will recursively scan all compiled Python modules in the directories and |
|
|
| 2241 | # determine if they are orphaned (i.e. their corresponding .py files are missing.) |
|
|
| 2242 | # If they are, then it will remove their corresponding .pyc and .pyo files. |
|
|
| 2243 | # |
2981 | # |
| 2244 | # This function can be used only in pkg_postrm() phase. |
2982 | # This function can be used only in pkg_postrm() phase. |
| 2245 | python_mod_cleanup() { |
2983 | python_mod_cleanup() { |
|
|
2984 | if [[ "${EBUILD_PHASE}" != "postrm" ]]; then |
|
|
2985 | die "${FUNCNAME}() can be used only in pkg_postrm() phase" |
|
|
2986 | fi |
|
|
2987 | |
|
|
2988 | _python_check_python_pkg_setup_execution |
| 2246 | _python_initialize_prefix_variables |
2989 | _python_initialize_prefix_variables |
| 2247 | |
2990 | |
| 2248 | local dir iterated_PYTHON_ABIS PYTHON_ABI="${PYTHON_ABI}" root search_paths=() sitedir |
2991 | local allow_evaluated_non_sitedir_paths="0" dir iterated_PYTHON_ABIS PYTHON_ABI="${PYTHON_ABI}" root search_paths=() sitedir |
| 2249 | |
|
|
| 2250 | # Check if phase is pkg_postrm(). |
|
|
| 2251 | [[ "${EBUILD_PHASE}" != "postrm" ]] && die "${FUNCNAME}() can be used only in pkg_postrm() phase" |
|
|
| 2252 | |
2992 | |
| 2253 | if _python_package_supporting_installation_for_multiple_python_abis; then |
2993 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| 2254 | if [[ -z "${PYTHON_ABIS}" ]]; then |
2994 | if has "${EAPI:-0}" 0 1 2 3 && [[ -z "${PYTHON_ABIS}" ]]; then |
| 2255 | die "${FUNCNAME}(): Environment not initialized" |
2995 | die "${FUNCNAME}(): python_pkg_setup() or python_execute_function() not called" |
| 2256 | fi |
2996 | fi |
| 2257 | iterated_PYTHON_ABIS="${PYTHON_ABIS}" |
2997 | iterated_PYTHON_ABIS="${PYTHON_ABIS}" |
| 2258 | else |
2998 | else |
|
|
2999 | if has "${EAPI:-0}" 0 1 2 3; then |
| 2259 | iterated_PYTHON_ABIS="${PYTHON_ABI:-$(PYTHON --ABI)}" |
3000 | iterated_PYTHON_ABIS="${PYTHON_ABI:-$(PYTHON --ABI)}" |
|
|
3001 | else |
|
|
3002 | iterated_PYTHON_ABIS="${PYTHON_ABI}" |
|
|
3003 | fi |
| 2260 | fi |
3004 | fi |
| 2261 | |
3005 | |
| 2262 | # Strip trailing slash from EROOT. |
3006 | # Strip trailing slash from EROOT. |
| 2263 | root="${EROOT%/}" |
3007 | root="${EROOT%/}" |
| 2264 | |
3008 | |
|
|
3009 | while (($#)); do |
|
|
3010 | case "$1" in |
|
|
3011 | --allow-evaluated-non-sitedir-paths) |
|
|
3012 | allow_evaluated_non_sitedir_paths="1" |
|
|
3013 | ;; |
|
|
3014 | --) |
|
|
3015 | shift |
|
|
3016 | break |
|
|
3017 | ;; |
|
|
3018 | -*) |
|
|
3019 | die "${FUNCNAME}(): Unrecognized option '$1'" |
|
|
3020 | ;; |
|
|
3021 | *) |
|
|
3022 | break |
|
|
3023 | ;; |
|
|
3024 | esac |
|
|
3025 | shift |
|
|
3026 | done |
|
|
3027 | |
|
|
3028 | if [[ "${allow_evaluated_non_sitedir_paths}" == "1" ]] && ! _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
3029 | die "${FUNCNAME}(): '--allow-evaluated-non-sitedir-paths' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
|
|
3030 | fi |
|
|
3031 | |
| 2265 | if [[ "$#" -gt 0 ]]; then |
3032 | if [[ "$#" -eq 0 ]]; then |
| 2266 | if ! has "${EAPI:-0}" 0 1 2 || _python_package_supporting_installation_for_multiple_python_abis; then |
3033 | die "${FUNCNAME}(): Missing files or directories" |
|
|
3034 | fi |
|
|
3035 | |
|
|
3036 | if ! has "${EAPI:-0}" 0 1 2 || _python_package_supporting_installation_for_multiple_python_abis || _python_implementation || [[ "${CATEGORY}/${PN}" == "sys-apps/portage" ]]; then |
| 2267 | while (($#)); do |
3037 | while (($#)); do |
|
|
3038 | if [[ "$1" =~ ^($|(\.|\.\.|/)($|/)) ]]; then |
|
|
3039 | die "${FUNCNAME}(): Invalid argument '$1'" |
| 2268 | if ! _python_implementation && [[ "$1" =~ ^/usr/lib(32|64)?/python[[:digit:]]+\.[[:digit:]]+ ]]; then |
3040 | elif ! _python_implementation && [[ "$1" =~ ^/usr/lib(32|64)?/python[[:digit:]]+\.[[:digit:]]+ ]]; then |
| 2269 | die "${FUNCNAME}(): Paths of directories / files in site-packages directories must be relative to site-packages directories" |
3041 | die "${FUNCNAME}(): Paths of directories / files in site-packages directories must be relative to site-packages directories" |
| 2270 | elif [[ "$1" =~ ^/ ]]; then |
3042 | elif [[ "$1" =~ ^/ ]]; then |
| 2271 | if _python_package_supporting_installation_for_multiple_python_abis; then |
3043 | if _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
3044 | if [[ "${allow_evaluated_non_sitedir_paths}" != "1" ]]; then |
| 2272 | die "${FUNCNAME}(): Absolute paths cannot be used in ebuilds of packages supporting installation for multiple Python ABIs" |
3045 | die "${FUNCNAME}(): Absolute paths cannot be used in ebuilds of packages supporting installation for multiple Python ABIs" |
| 2273 | fi |
3046 | fi |
|
|
3047 | if [[ "$1" != *\$* ]]; then |
|
|
3048 | die "${FUNCNAME}(): '$1' has invalid syntax" |
|
|
3049 | fi |
|
|
3050 | for PYTHON_ABI in ${iterated_PYTHON_ABIS}; do |
|
|
3051 | eval "search_paths+=(\"\${root}$1\")" |
|
|
3052 | done |
|
|
3053 | else |
| 2274 | search_paths+=("${root}$1") |
3054 | search_paths+=("${root}$1") |
|
|
3055 | fi |
| 2275 | else |
3056 | else |
| 2276 | for PYTHON_ABI in ${iterated_PYTHON_ABIS}; do |
3057 | for PYTHON_ABI in ${iterated_PYTHON_ABIS}; do |
| 2277 | search_paths+=("${root}$(python_get_sitedir)/$1") |
3058 | search_paths+=("${root}$(python_get_sitedir)/$1") |
| 2278 | done |
|
|
| 2279 | fi |
|
|
| 2280 | shift |
|
|
| 2281 | done |
|
|
| 2282 | else |
|
|
| 2283 | # Deprecated part of python_mod_cleanup() |
|
|
| 2284 | |
|
|
| 2285 | search_paths=("${@#/}") |
|
|
| 2286 | search_paths=("${search_paths[@]/#/${root}/}") |
|
|
| 2287 | fi |
|
|
| 2288 | else |
|
|
| 2289 | _python_set_color_variables |
|
|
| 2290 | |
|
|
| 2291 | echo |
|
|
| 2292 | echo " ${_RED}*${_NORMAL} ${_RED}Deprecation Warning: Not passing of paths to ${FUNCNAME}() is deprecated and will be${_NORMAL}" |
|
|
| 2293 | echo " ${_RED}*${_NORMAL} ${_RED}disallowed on 2010-09-01. Call ${FUNCNAME}() with paths to Python modules.${_NORMAL}" |
|
|
| 2294 | echo " ${_RED}*${_NORMAL} ${_RED}The ebuild needs to be fixed. Please report a bug, if it has not been already reported.${_NORMAL}" |
|
|
| 2295 | echo |
|
|
| 2296 | |
|
|
| 2297 | einfo &> /dev/null |
|
|
| 2298 | einfo "Deprecation Warning: Not passing of paths to ${FUNCNAME}() is deprecated and will be" &> /dev/null |
|
|
| 2299 | einfo "disallowed on 2010-09-01. Call ${FUNCNAME}() with paths to Python modules." &> /dev/null |
|
|
| 2300 | einfo "The ebuild needs to be fixed. Please report a bug, if it has not been already reported." &> /dev/null |
|
|
| 2301 | einfo &> /dev/null |
|
|
| 2302 | |
|
|
| 2303 | for dir in "${root}"/usr/lib*; do |
|
|
| 2304 | if [[ -d "${dir}" && ! -L "${dir}" ]]; then |
|
|
| 2305 | for sitedir in "${dir}"/python*/site-packages; do |
|
|
| 2306 | if [[ -d "${sitedir}" ]]; then |
|
|
| 2307 | search_paths+=("${sitedir}") |
|
|
| 2308 | fi |
|
|
| 2309 | done |
3059 | done |
| 2310 | fi |
3060 | fi |
|
|
3061 | shift |
| 2311 | done |
3062 | done |
| 2312 | for sitedir in "${root}"/usr/share/jython-*/Lib/site-packages; do |
3063 | else |
| 2313 | if [[ -d "${sitedir}" ]]; then |
3064 | # Deprecated part of python_mod_cleanup() |
|
|
3065 | ewarn |
|
|
3066 | ewarn "Deprecation Warning: Usage of ${FUNCNAME}() in packages not supporting installation" |
|
|
3067 | ewarn "for multiple Python ABIs in EAPI <=2 is deprecated and will be disallowed on 2011-08-01." |
|
|
3068 | ewarn "Use EAPI >=3 and call ${FUNCNAME}() with paths having appropriate syntax." |
|
|
3069 | ewarn "The ebuild needs to be fixed. Please report a bug, if it has not been already reported." |
|
|
3070 | ewarn |
|
|
3071 | |
| 2314 | search_paths+=("${sitedir}") |
3072 | search_paths=("${@#/}") |
| 2315 | fi |
3073 | search_paths=("${search_paths[@]/#/${root}/}") |
| 2316 | done |
|
|
| 2317 | fi |
3074 | fi |
| 2318 | |
3075 | |
| 2319 | _python_clean_compiled_modules "${search_paths[@]}" |
3076 | _python_clean_compiled_modules "${search_paths[@]}" |
| 2320 | } |
3077 | } |
| 2321 | |
3078 | |
| 2322 | # ================================================================================================ |
3079 | # ================================================================================================ |
| 2323 | # ===================================== DEPRECATED FUNCTIONS ===================================== |
3080 | # ===================================== DEPRECATED FUNCTIONS ===================================== |
| 2324 | # ================================================================================================ |
3081 | # ================================================================================================ |
| 2325 | |
|
|
| 2326 | # @FUNCTION: python_version |
|
|
| 2327 | # @DESCRIPTION: |
|
|
| 2328 | # Run without arguments and it will export the version of python |
|
|
| 2329 | # currently in use as $PYVER; sets PYVER/PYVER_MAJOR/PYVER_MINOR |
|
|
| 2330 | python_version() { |
|
|
| 2331 | if ! has "${EAPI:-0}" 0 1 2 || _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
| 2332 | eerror "Use PYTHON() and/or python_get_*() instead of ${FUNCNAME}()." |
|
|
| 2333 | die "${FUNCNAME}() cannot be used in this EAPI" |
|
|
| 2334 | fi |
|
|
| 2335 | |
|
|
| 2336 | _python_set_color_variables |
|
|
| 2337 | |
|
|
| 2338 | if [[ "${FUNCNAME[1]}" != "distutils_python_version" ]]; then |
|
|
| 2339 | echo |
|
|
| 2340 | echo " ${_RED}*${_NORMAL} ${_RED}Deprecation Warning: ${FUNCNAME}() is deprecated and will be banned on 2010-07-01.${_NORMAL}" |
|
|
| 2341 | echo " ${_RED}*${_NORMAL} ${_RED}Use PYTHON() instead of python variable. Use python_get_*() instead of PYVER* variables.${_NORMAL}" |
|
|
| 2342 | echo " ${_RED}*${_NORMAL} ${_RED}The ebuild needs to be fixed. Please report a bug, if it has not been already reported.${_NORMAL}" |
|
|
| 2343 | echo |
|
|
| 2344 | |
|
|
| 2345 | einfo &> /dev/null |
|
|
| 2346 | einfo "Deprecation Warning: ${FUNCNAME}() is deprecated and will be banned on 2010-07-01." &> /dev/null |
|
|
| 2347 | einfo "Use PYTHON() instead of python variable. Use python_get_*() instead of PYVER* variables." &> /dev/null |
|
|
| 2348 | einfo "The ebuild needs to be fixed. Please report a bug, if it has not been already reported." &> /dev/null |
|
|
| 2349 | einfo &> /dev/null |
|
|
| 2350 | fi |
|
|
| 2351 | |
|
|
| 2352 | [[ -n "${PYVER}" ]] && return 0 |
|
|
| 2353 | local tmpstr |
|
|
| 2354 | python="${python:-${EPREFIX}/usr/bin/python}" |
|
|
| 2355 | tmpstr="$(EPYTHON= ${python} -V 2>&1 )" |
|
|
| 2356 | export PYVER_ALL="${tmpstr#Python }" |
|
|
| 2357 | export PYVER_MAJOR="${PYVER_ALL:0:1}" |
|
|
| 2358 | export PYVER_MINOR="${PYVER_ALL:2:1}" |
|
|
| 2359 | if [[ "${PYVER_ALL:3:1}" == "." ]]; then |
|
|
| 2360 | export PYVER_MICRO="${PYVER_ALL:4}" |
|
|
| 2361 | fi |
|
|
| 2362 | export PYVER="${PYVER_MAJOR}.${PYVER_MINOR}" |
|
|
| 2363 | } |
|
|
| 2364 | |
|
|
| 2365 | # @FUNCTION: python_mod_exists |
|
|
| 2366 | # @USAGE: <module> |
|
|
| 2367 | # @DESCRIPTION: |
|
|
| 2368 | # Run with the module name as an argument. It will check if a |
|
|
| 2369 | # Python module is installed and loadable. It will return |
|
|
| 2370 | # TRUE(0) if the module exists, and FALSE(1) if the module does |
|
|
| 2371 | # not exist. |
|
|
| 2372 | # |
|
|
| 2373 | # Example: |
|
|
| 2374 | # if python_mod_exists gtk; then |
|
|
| 2375 | # echo "gtk support enabled" |
|
|
| 2376 | # fi |
|
|
| 2377 | python_mod_exists() { |
|
|
| 2378 | if ! has "${EAPI:-0}" 0 1 2 || _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
| 2379 | eerror "Use USE dependencies and/or has_version() instead of ${FUNCNAME}()." |
|
|
| 2380 | die "${FUNCNAME}() cannot be used in this EAPI" |
|
|
| 2381 | fi |
|
|
| 2382 | |
|
|
| 2383 | _python_set_color_variables |
|
|
| 2384 | |
|
|
| 2385 | echo |
|
|
| 2386 | echo " ${_RED}*${_NORMAL} ${_RED}Deprecation Warning: ${FUNCNAME}() is deprecated and will be banned on 2010-07-01.${_NORMAL}" |
|
|
| 2387 | echo " ${_RED}*${_NORMAL} ${_RED}Use USE dependencies and/or has_version() instead of ${FUNCNAME}().${_NORMAL}" |
|
|
| 2388 | echo " ${_RED}*${_NORMAL} ${_RED}The ebuild needs to be fixed. Please report a bug, if it has not been already reported.${_NORMAL}" |
|
|
| 2389 | echo |
|
|
| 2390 | |
|
|
| 2391 | eerror &> /dev/null |
|
|
| 2392 | eerror "Deprecation Warning: ${FUNCNAME}() is deprecated and will be banned on 2010-07-01." &> /dev/null |
|
|
| 2393 | eerror "Use USE dependencies and/or has_version() instead of ${FUNCNAME}()." &> /dev/null |
|
|
| 2394 | eerror "The ebuild needs to be fixed. Please report a bug, if it has not been already reported." &> /dev/null |
|
|
| 2395 | eerror &> /dev/null |
|
|
| 2396 | |
|
|
| 2397 | if [[ "$#" -ne 1 ]]; then |
|
|
| 2398 | die "${FUNCNAME}() requires 1 argument" |
|
|
| 2399 | fi |
|
|
| 2400 | "$(PYTHON ${PYTHON_ABI})" -c "import $1" &> /dev/null |
|
|
| 2401 | } |
|
|
| 2402 | |
|
|
| 2403 | # @FUNCTION: python_tkinter_exists |
|
|
| 2404 | # @DESCRIPTION: |
|
|
| 2405 | # Run without arguments, checks if Python was compiled with Tkinter |
|
|
| 2406 | # support. If not, prints an error message and dies. |
|
|
| 2407 | python_tkinter_exists() { |
|
|
| 2408 | if ! has "${EAPI:-0}" 0 1 2 || _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
| 2409 | eerror "Use PYTHON_USE_WITH=\"xml\" and python_pkg_setup() instead of ${FUNCNAME}()." |
|
|
| 2410 | die "${FUNCNAME}() cannot be used in this EAPI" |
|
|
| 2411 | fi |
|
|
| 2412 | |
|
|
| 2413 | _python_set_color_variables |
|
|
| 2414 | |
|
|
| 2415 | if [[ "${FUNCNAME[1]}" != "distutils_python_tkinter" ]]; then |
|
|
| 2416 | echo |
|
|
| 2417 | echo " ${_RED}*${_NORMAL} ${_RED}Deprecation Warning: ${FUNCNAME}() is deprecated and will be banned on 2010-07-01.${_NORMAL}" |
|
|
| 2418 | echo " ${_RED}*${_NORMAL} ${_RED}Use PYTHON_USE_WITH=\"xml\" and python_pkg_setup() instead of ${FUNCNAME}().${_NORMAL}" |
|
|
| 2419 | echo " ${_RED}*${_NORMAL} ${_RED}The ebuild needs to be fixed. Please report a bug, if it has not been already reported.${_NORMAL}" |
|
|
| 2420 | echo |
|
|
| 2421 | |
|
|
| 2422 | eerror &> /dev/null |
|
|
| 2423 | eerror "Deprecation Warning: ${FUNCNAME}() is deprecated and will be banned on 2010-07-01." &> /dev/null |
|
|
| 2424 | eerror "Use PYTHON_USE_WITH=\"xml\" and python_pkg_setup() instead of ${FUNCNAME}()." &> /dev/null |
|
|
| 2425 | eerror "The ebuild needs to be fixed. Please report a bug, if it has not been already reported." &> /dev/null |
|
|
| 2426 | eerror &> /dev/null |
|
|
| 2427 | fi |
|
|
| 2428 | |
|
|
| 2429 | if ! "$(PYTHON ${PYTHON_ABI})" -c "from sys import version_info |
|
|
| 2430 | if version_info[0] == 3: |
|
|
| 2431 | import tkinter |
|
|
| 2432 | else: |
|
|
| 2433 | import Tkinter" &> /dev/null; then |
|
|
| 2434 | eerror "Python needs to be rebuilt with tkinter support enabled." |
|
|
| 2435 | eerror "Add the following line to '${EPREFIX}/etc/portage/package.use' and rebuild Python" |
|
|
| 2436 | eerror "dev-lang/python tk" |
|
|
| 2437 | die "Python installed without support for tkinter" |
|
|
| 2438 | fi |
|
|
| 2439 | } |
|
|
| 2440 | |
|
|
| 2441 | # @FUNCTION: python_mod_compile |
|
|
| 2442 | # @USAGE: <file> [more files ...] |
|
|
| 2443 | # @DESCRIPTION: |
|
|
| 2444 | # Given filenames, it will pre-compile the module's .pyc and .pyo. |
|
|
| 2445 | # This function can be used only in pkg_postinst() phase. |
|
|
| 2446 | # |
|
|
| 2447 | # Example: |
|
|
| 2448 | # python_mod_compile /usr/lib/python2.3/site-packages/pygoogle.py |
|
|
| 2449 | # |
|
|
| 2450 | python_mod_compile() { |
|
|
| 2451 | if ! has "${EAPI:-0}" 0 1 2 || _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
| 2452 | eerror "Use python_mod_optimize() instead of ${FUNCNAME}()." |
|
|
| 2453 | die "${FUNCNAME}() cannot be used in this EAPI" |
|
|
| 2454 | fi |
|
|
| 2455 | |
|
|
| 2456 | _python_initialize_prefix_variables |
|
|
| 2457 | _python_set_color_variables |
|
|
| 2458 | |
|
|
| 2459 | if [[ "${FUNCNAME[1]}" != "python_mod_optimize" ]]; then |
|
|
| 2460 | echo |
|
|
| 2461 | echo " ${_RED}*${_NORMAL} ${_RED}Deprecation Warning: ${FUNCNAME}() is deprecated and will be banned on 2010-09-01.${_NORMAL}" |
|
|
| 2462 | echo " ${_RED}*${_NORMAL} ${_RED}Use python_mod_optimize() instead of ${FUNCNAME}().${_NORMAL}" |
|
|
| 2463 | echo " ${_RED}*${_NORMAL} ${_RED}The ebuild needs to be fixed. Please report a bug, if it has not been already reported.${_NORMAL}" |
|
|
| 2464 | echo |
|
|
| 2465 | |
|
|
| 2466 | einfo &> /dev/null |
|
|
| 2467 | einfo "Deprecation Warning: ${FUNCNAME}() is deprecated and will be banned on 2010-09-01." &> /dev/null |
|
|
| 2468 | einfo "Use python_mod_optimize() instead of ${FUNCNAME}()." &> /dev/null |
|
|
| 2469 | einfo "The ebuild needs to be fixed. Please report a bug, if it has not been already reported." &> /dev/null |
|
|
| 2470 | einfo &> /dev/null |
|
|
| 2471 | fi |
|
|
| 2472 | |
|
|
| 2473 | local f myroot myfiles=() |
|
|
| 2474 | |
|
|
| 2475 | # Check if phase is pkg_postinst() |
|
|
| 2476 | [[ "${EBUILD_PHASE}" != "postinst" ]] && die "${FUNCNAME}() can be used only in pkg_postinst() phase" |
|
|
| 2477 | |
|
|
| 2478 | # strip trailing slash |
|
|
| 2479 | myroot="${EROOT%/}" |
|
|
| 2480 | |
|
|
| 2481 | # respect EROOT |
|
|
| 2482 | for f in "$@"; do |
|
|
| 2483 | [[ -f "${myroot}/${f}" ]] && myfiles+=("${myroot}/${f}") |
|
|
| 2484 | done |
|
|
| 2485 | |
|
|
| 2486 | PYTHON_ABI="$(PYTHON --ABI)" |
|
|
| 2487 | |
|
|
| 2488 | if ((${#myfiles[@]})); then |
|
|
| 2489 | "$(PYTHON ${PYTHON_ABI})" "${myroot}$(python_get_libdir)/py_compile.py" "${myfiles[@]}" |
|
|
| 2490 | "$(PYTHON ${PYTHON_ABI})" -O "${myroot}$(python_get_libdir)/py_compile.py" "${myfiles[@]}" &> /dev/null |
|
|
| 2491 | _python_clean_compiled_modules "${myfiles[@]}" |
|
|
| 2492 | else |
|
|
| 2493 | ewarn "No files to compile!" |
|
|
| 2494 | fi |
|
|
| 2495 | } |
|
|