| 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.95 2010/03/20 17:59:40 arfrever Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/python.eclass,v 1.127 2011/07/08 07:49:36 djc 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") |
| 172 | fi |
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" |
|
|
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. |
| 177 | |
254 | |
| … | |
… | |
| 182 | # @ECLASS-VARIABLE: PYTHON_USE_WITH_OPT |
259 | # @ECLASS-VARIABLE: PYTHON_USE_WITH_OPT |
| 183 | # @DESCRIPTION: |
260 | # @DESCRIPTION: |
| 184 | # Set this to a name of a USE flag if you need to make either PYTHON_USE_WITH or |
261 | # Set this to a name of a USE flag if you need to make either PYTHON_USE_WITH or |
| 185 | # PYTHON_USE_WITH_OR atoms conditional under a USE flag. |
262 | # PYTHON_USE_WITH_OR atoms conditional under a USE flag. |
| 186 | |
263 | |
| 187 | # @FUNCTION: python_pkg_setup |
|
|
| 188 | # @DESCRIPTION: |
|
|
| 189 | # Makes sure PYTHON_USE_WITH or PYTHON_USE_WITH_OR listed use flags |
|
|
| 190 | # are respected. Only exported if one of those variables is set. |
|
|
| 191 | if ! has "${EAPI:-0}" 0 1 && [[ -n ${PYTHON_USE_WITH} || -n ${PYTHON_USE_WITH_OR} ]]; then |
264 | if ! has "${EAPI:-0}" 0 1 && [[ -n ${PYTHON_USE_WITH} || -n ${PYTHON_USE_WITH_OR} ]]; then |
| 192 | python_pkg_setup() { |
|
|
| 193 | # Check if phase is pkg_setup(). |
|
|
| 194 | [[ "${EBUILD_PHASE}" != "setup" ]] && die "${FUNCNAME}() can be used only in pkg_setup() phase" |
|
|
| 195 | |
|
|
| 196 | python_pkg_setup_fail() { |
|
|
| 197 | eerror "${1}" |
|
|
| 198 | die "${1}" |
|
|
| 199 | } |
|
|
| 200 | |
|
|
| 201 | if [[ "${PYTHON_USE_WITH_OPT}" ]]; then |
|
|
| 202 | if [[ "${PYTHON_USE_WITH_OPT}" == !* ]]; then |
|
|
| 203 | use ${PYTHON_USE_WITH_OPT#!} && return |
|
|
| 204 | else |
|
|
| 205 | use !${PYTHON_USE_WITH_OPT} && return |
|
|
| 206 | fi |
|
|
| 207 | fi |
|
|
| 208 | |
|
|
| 209 | python_pkg_setup_check_USE_flags() { |
|
|
| 210 | local pyatom use |
|
|
| 211 | pyatom="$(python_get_implementational_package)" |
|
|
| 212 | |
|
|
| 213 | for use in ${PYTHON_USE_WITH}; do |
|
|
| 214 | if ! has_version "${pyatom}[${use}]"; then |
|
|
| 215 | python_pkg_setup_fail "Please rebuild ${pyatom} with the following USE flags enabled: ${PYTHON_USE_WITH}" |
|
|
| 216 | fi |
|
|
| 217 | done |
|
|
| 218 | |
|
|
| 219 | for use in ${PYTHON_USE_WITH_OR}; do |
|
|
| 220 | if has_version "${pyatom}[${use}]"; then |
|
|
| 221 | return |
|
|
| 222 | fi |
|
|
| 223 | done |
|
|
| 224 | |
|
|
| 225 | if [[ ${PYTHON_USE_WITH_OR} ]]; then |
|
|
| 226 | python_pkg_setup_fail "Please rebuild ${pyatom} with at least one of the following USE flags enabled: ${PYTHON_USE_WITH_OR}" |
|
|
| 227 | fi |
|
|
| 228 | } |
|
|
| 229 | |
|
|
| 230 | if _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
| 231 | python_execute_function -q python_pkg_setup_check_USE_flags |
|
|
| 232 | else |
|
|
| 233 | python_pkg_setup_check_USE_flags |
|
|
| 234 | fi |
|
|
| 235 | |
|
|
| 236 | unset -f python_pkg_setup_check_USE_flags python_pkg_setup_fail |
|
|
| 237 | } |
|
|
| 238 | |
|
|
| 239 | EXPORT_FUNCTIONS pkg_setup |
|
|
| 240 | |
|
|
| 241 | _PYTHON_USE_WITH_ATOMS_ARRAY=() |
265 | _PYTHON_USE_WITH_ATOMS_ARRAY=() |
| 242 | if [[ -n "${PYTHON_USE_WITH}" ]]; then |
266 | if [[ -n "${PYTHON_USE_WITH}" ]]; then |
| 243 | for _PYTHON_ATOM in "${_PYTHON_ATOMS[@]}"; do |
267 | for _PYTHON_ATOM in "${_PYTHON_ATOMS[@]}"; do |
| 244 | _PYTHON_USE_WITH_ATOMS_ARRAY+=("${_PYTHON_ATOM}[${PYTHON_USE_WITH/ /,}]") |
268 | _PYTHON_USE_WITH_ATOMS_ARRAY+=("${_PYTHON_ATOM}[${PYTHON_USE_WITH// /,}]") |
| 245 | done |
269 | done |
| 246 | elif [[ -n "${PYTHON_USE_WITH_OR}" ]]; then |
270 | elif [[ -n "${PYTHON_USE_WITH_OR}" ]]; then |
| 247 | for _USE_flag in ${PYTHON_USE_WITH_OR}; do |
271 | for _USE_flag in ${PYTHON_USE_WITH_OR}; do |
| 248 | for _PYTHON_ATOM in "${_PYTHON_ATOMS[@]}"; do |
272 | for _PYTHON_ATOM in "${_PYTHON_ATOMS[@]}"; do |
| 249 | _PYTHON_USE_WITH_ATOMS_ARRAY+=("${_PYTHON_ATOM}[${_USE_flag}]") |
273 | _PYTHON_USE_WITH_ATOMS_ARRAY+=("${_PYTHON_ATOM}[${_USE_flag}]") |
| … | |
… | |
| 265 | fi |
289 | fi |
| 266 | |
290 | |
| 267 | unset _PYTHON_ATOMS |
291 | unset _PYTHON_ATOMS |
| 268 | |
292 | |
| 269 | # ================================================================================================ |
293 | # ================================================================================================ |
|
|
294 | # =================================== MISCELLANEOUS FUNCTIONS ==================================== |
|
|
295 | # ================================================================================================ |
|
|
296 | |
|
|
297 | _python_implementation() { |
|
|
298 | if [[ "${CATEGORY}/${PN}" == "dev-lang/python" ]]; then |
|
|
299 | return 0 |
|
|
300 | elif [[ "${CATEGORY}/${PN}" == "dev-java/jython" ]]; then |
|
|
301 | return 0 |
|
|
302 | elif [[ "${CATEGORY}/${PN}" == "dev-python/pypy" ]]; then |
|
|
303 | return 0 |
|
|
304 | else |
|
|
305 | return 1 |
|
|
306 | fi |
|
|
307 | } |
|
|
308 | |
|
|
309 | _python_abi-specific_local_scope() { |
|
|
310 | [[ " ${FUNCNAME[@]:2} " =~ " "(_python_final_sanity_checks|python_execute_function|python_mod_optimize|python_mod_cleanup)" " ]] |
|
|
311 | } |
|
|
312 | |
|
|
313 | _python_initialize_prefix_variables() { |
|
|
314 | if has "${EAPI:-0}" 0 1 2; then |
|
|
315 | if [[ -n "${ROOT}" && -z "${EROOT}" ]]; then |
|
|
316 | EROOT="${ROOT%/}${EPREFIX}/" |
|
|
317 | fi |
|
|
318 | if [[ -n "${D}" && -z "${ED}" ]]; then |
|
|
319 | ED="${D%/}${EPREFIX}/" |
|
|
320 | fi |
|
|
321 | fi |
|
|
322 | } |
|
|
323 | |
|
|
324 | unset PYTHON_SANITY_CHECKS_EXECUTED PYTHON_SKIP_SANITY_CHECKS |
|
|
325 | |
|
|
326 | _python_initial_sanity_checks() { |
|
|
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 |
|
|
328 | # Ensure that /usr/bin/python and /usr/bin/python-config are valid. |
|
|
329 | if [[ "$(readlink "${EPREFIX}/usr/bin/python")" != "python-wrapper" ]]; then |
|
|
330 | eerror "'${EPREFIX}/usr/bin/python' is not valid symlink." |
|
|
331 | eerror "Use \`eselect python set \${python_interpreter}\` to fix this problem." |
|
|
332 | die "'${EPREFIX}/usr/bin/python' is not valid symlink" |
|
|
333 | fi |
|
|
334 | if [[ "$(<"${EPREFIX}/usr/bin/python-config")" != *"Gentoo python-config wrapper script"* ]]; then |
|
|
335 | eerror "'${EPREFIX}/usr/bin/python-config' is not valid script" |
|
|
336 | eerror "Use \`eselect python set \${python_interpreter}\` to fix this problem." |
|
|
337 | die "'${EPREFIX}/usr/bin/python-config' is not valid script" |
|
|
338 | fi |
|
|
339 | fi |
|
|
340 | } |
|
|
341 | |
|
|
342 | _python_final_sanity_checks() { |
|
|
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 |
|
|
344 | local PYTHON_ABI="${PYTHON_ABI}" |
|
|
345 | for PYTHON_ABI in ${PYTHON_ABIS-${PYTHON_ABI}}; do |
|
|
346 | # Ensure that appropriate version of Python is installed. |
|
|
347 | if ! has_version "$(python_get_implementational_package)"; then |
|
|
348 | die "$(python_get_implementational_package) is not installed" |
|
|
349 | fi |
|
|
350 | |
|
|
351 | # Ensure that EPYTHON variable is respected. |
|
|
352 | if [[ "$(EPYTHON="$(PYTHON)" python -c "${_PYTHON_ABI_EXTRACTION_COMMAND}")" != "${PYTHON_ABI}" ]]; then |
|
|
353 | eerror "Path to 'python': '$(type -p python)'" |
|
|
354 | eerror "ABI: '${ABI}'" |
|
|
355 | eerror "DEFAULT_ABI: '${DEFAULT_ABI}'" |
|
|
356 | eerror "EPYTHON: '$(PYTHON)'" |
|
|
357 | eerror "PYTHON_ABI: '${PYTHON_ABI}'" |
|
|
358 | eerror "Locally active version of Python: '$(EPYTHON="$(PYTHON)" python -c "${_PYTHON_ABI_EXTRACTION_COMMAND}")'" |
|
|
359 | die "'python' does not respect EPYTHON variable" |
|
|
360 | fi |
|
|
361 | done |
|
|
362 | fi |
|
|
363 | PYTHON_SANITY_CHECKS_EXECUTED="1" |
|
|
364 | } |
|
|
365 | |
|
|
366 | # @ECLASS-VARIABLE: PYTHON_COLORS |
|
|
367 | # @DESCRIPTION: |
|
|
368 | # User-configurable colored output. |
|
|
369 | PYTHON_COLORS="${PYTHON_COLORS:-0}" |
|
|
370 | |
|
|
371 | _python_set_color_variables() { |
|
|
372 | if [[ "${PYTHON_COLORS}" != "0" && "${NOCOLOR:-false}" =~ ^(false|no)$ ]]; then |
|
|
373 | _BOLD=$'\e[1m' |
|
|
374 | _RED=$'\e[1;31m' |
|
|
375 | _GREEN=$'\e[1;32m' |
|
|
376 | _BLUE=$'\e[1;34m' |
|
|
377 | _CYAN=$'\e[1;36m' |
|
|
378 | _NORMAL=$'\e[0m' |
|
|
379 | else |
|
|
380 | _BOLD= |
|
|
381 | _RED= |
|
|
382 | _GREEN= |
|
|
383 | _BLUE= |
|
|
384 | _CYAN= |
|
|
385 | _NORMAL= |
|
|
386 | fi |
|
|
387 | } |
|
|
388 | |
|
|
389 | unset PYTHON_PKG_SETUP_EXECUTED |
|
|
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 | |
|
|
399 | # @FUNCTION: python_pkg_setup |
|
|
400 | # @DESCRIPTION: |
|
|
401 | # Perform sanity checks and initialize environment. |
|
|
402 | # |
|
|
403 | # This function is exported in EAPI 2 and 3 when PYTHON_USE_WITH or PYTHON_USE_WITH_OR variable |
|
|
404 | # is set and always in EAPI >=4. Calling of this function is mandatory in EAPI >=4. |
|
|
405 | python_pkg_setup() { |
|
|
406 | if [[ "${EBUILD_PHASE}" != "setup" ]]; then |
|
|
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" |
|
|
416 | |
|
|
417 | if _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
418 | _python_calculate_PYTHON_ABIS |
|
|
419 | export EPYTHON="$(PYTHON -f)" |
|
|
420 | else |
|
|
421 | PYTHON_ABI="${PYTHON_ABI:-$(PYTHON --ABI)}" |
|
|
422 | fi |
|
|
423 | |
|
|
424 | if ! has "${EAPI:-0}" 0 1 && [[ -n "${PYTHON_USE_WITH}" || -n "${PYTHON_USE_WITH_OR}" ]]; then |
|
|
425 | if [[ "${PYTHON_USE_WITH_OPT}" ]]; then |
|
|
426 | if [[ "${PYTHON_USE_WITH_OPT}" == !* ]]; then |
|
|
427 | use ${PYTHON_USE_WITH_OPT#!} && return |
|
|
428 | else |
|
|
429 | use !${PYTHON_USE_WITH_OPT} && return |
|
|
430 | fi |
|
|
431 | fi |
|
|
432 | |
|
|
433 | python_pkg_setup_check_USE_flags() { |
|
|
434 | local python_atom USE_flag |
|
|
435 | python_atom="$(python_get_implementational_package)" |
|
|
436 | |
|
|
437 | for USE_flag in ${PYTHON_USE_WITH}; do |
|
|
438 | if ! has_version "${python_atom}[${USE_flag}]"; then |
|
|
439 | eerror "Please rebuild ${python_atom} with the following USE flags enabled: ${PYTHON_USE_WITH}" |
|
|
440 | die "Please rebuild ${python_atom} with the following USE flags enabled: ${PYTHON_USE_WITH}" |
|
|
441 | fi |
|
|
442 | done |
|
|
443 | |
|
|
444 | for USE_flag in ${PYTHON_USE_WITH_OR}; do |
|
|
445 | if has_version "${python_atom}[${USE_flag}]"; then |
|
|
446 | return |
|
|
447 | fi |
|
|
448 | done |
|
|
449 | |
|
|
450 | if [[ ${PYTHON_USE_WITH_OR} ]]; then |
|
|
451 | eerror "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}" |
|
|
453 | fi |
|
|
454 | } |
|
|
455 | |
|
|
456 | if _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
457 | PYTHON_SKIP_SANITY_CHECKS="1" python_execute_function -q python_pkg_setup_check_USE_flags |
|
|
458 | else |
|
|
459 | python_pkg_setup_check_USE_flags |
|
|
460 | fi |
|
|
461 | |
|
|
462 | unset -f python_pkg_setup_check_USE_flags |
|
|
463 | fi |
|
|
464 | |
|
|
465 | PYTHON_PKG_SETUP_EXECUTED="1" |
|
|
466 | } |
|
|
467 | |
|
|
468 | if ! has "${EAPI:-0}" 0 1 2 3 || { has "${EAPI:-0}" 2 3 && [[ -n "${PYTHON_USE_WITH}" || -n "${PYTHON_USE_WITH_OR}" ]]; }; then |
|
|
469 | EXPORT_FUNCTIONS pkg_setup |
|
|
470 | fi |
|
|
471 | |
|
|
472 | _PYTHON_SHEBANG_BASE_PART_REGEX='^#![[:space:]]*([^[:space:]]*/usr/bin/env[[:space:]]+)?([^[:space:]]*/)?(jython|pypy-c|python)' |
|
|
473 | |
|
|
474 | # @FUNCTION: python_convert_shebangs |
|
|
475 | # @USAGE: [-q|--quiet] [-r|--recursive] [-x|--only-executables] [--] <Python_ABI|Python_version> <file|directory> [files|directories] |
|
|
476 | # @DESCRIPTION: |
|
|
477 | # Convert shebangs in specified files. Directories can be specified only with --recursive option. |
|
|
478 | python_convert_shebangs() { |
|
|
479 | _python_check_python_pkg_setup_execution |
|
|
480 | |
|
|
481 | local argument file files=() only_executables="0" python_interpreter quiet="0" recursive="0" |
|
|
482 | |
|
|
483 | while (($#)); do |
|
|
484 | case "$1" in |
|
|
485 | -r|--recursive) |
|
|
486 | recursive="1" |
|
|
487 | ;; |
|
|
488 | -q|--quiet) |
|
|
489 | quiet="1" |
|
|
490 | ;; |
|
|
491 | -x|--only-executables) |
|
|
492 | only_executables="1" |
|
|
493 | ;; |
|
|
494 | --) |
|
|
495 | shift |
|
|
496 | break |
|
|
497 | ;; |
|
|
498 | -*) |
|
|
499 | die "${FUNCNAME}(): Unrecognized option '$1'" |
|
|
500 | ;; |
|
|
501 | *) |
|
|
502 | break |
|
|
503 | ;; |
|
|
504 | esac |
|
|
505 | shift |
|
|
506 | done |
|
|
507 | |
|
|
508 | if [[ "$#" -eq 0 ]]; then |
|
|
509 | die "${FUNCNAME}(): Missing Python version and files or directories" |
|
|
510 | elif [[ "$#" -eq 1 ]]; then |
|
|
511 | die "${FUNCNAME}(): Missing files or directories" |
|
|
512 | fi |
|
|
513 | |
|
|
514 | if [[ -n "$(_python_get_implementation --ignore-invalid "$1")" ]]; then |
|
|
515 | python_interpreter="$(PYTHON "$1")" |
|
|
516 | else |
|
|
517 | python_interpreter="python$1" |
|
|
518 | fi |
|
|
519 | shift |
|
|
520 | |
|
|
521 | for argument in "$@"; do |
|
|
522 | if [[ ! -e "${argument}" ]]; then |
|
|
523 | die "${FUNCNAME}(): '${argument}' does not exist" |
|
|
524 | elif [[ -f "${argument}" ]]; then |
|
|
525 | files+=("${argument}") |
|
|
526 | elif [[ -d "${argument}" ]]; then |
|
|
527 | if [[ "${recursive}" == "1" ]]; then |
|
|
528 | while read -d $'\0' -r file; do |
|
|
529 | files+=("${file}") |
|
|
530 | done < <(find "${argument}" $([[ "${only_executables}" == "1" ]] && echo -perm /111) -type f -print0) |
|
|
531 | else |
|
|
532 | die "${FUNCNAME}(): '${argument}' is not a regular file" |
|
|
533 | fi |
|
|
534 | else |
|
|
535 | die "${FUNCNAME}(): '${argument}' is not a regular file or a directory" |
|
|
536 | fi |
|
|
537 | done |
|
|
538 | |
|
|
539 | for file in "${files[@]}"; do |
|
|
540 | file="${file#./}" |
|
|
541 | [[ "${only_executables}" == "1" && ! -x "${file}" ]] && continue |
|
|
542 | |
|
|
543 | if [[ "$(head -n1 "${file}")" =~ ${_PYTHON_SHEBANG_BASE_PART_REGEX} ]]; then |
|
|
544 | [[ "$(sed -ne "2p" "${file}")" =~ ^"# Gentoo '".*"' wrapper script generated by python_generate_wrapper_scripts()"$ ]] && continue |
|
|
545 | |
|
|
546 | if [[ "${quiet}" == "0" ]]; then |
|
|
547 | einfo "Converting shebang in '${file}'" |
|
|
548 | fi |
|
|
549 | |
|
|
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" |
|
|
551 | fi |
|
|
552 | done |
|
|
553 | } |
|
|
554 | |
|
|
555 | # @FUNCTION: python_clean_installation_image |
|
|
556 | # @USAGE: [-q|--quiet] |
|
|
557 | # @DESCRIPTION: |
|
|
558 | # Delete needless files in installation image. |
|
|
559 | # |
|
|
560 | # This function can be used only in src_install() phase. |
|
|
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 |
|
|
567 | _python_initialize_prefix_variables |
|
|
568 | |
|
|
569 | local file files=() quiet="0" |
|
|
570 | |
|
|
571 | while (($#)); do |
|
|
572 | case "$1" in |
|
|
573 | -q|--quiet) |
|
|
574 | quiet="1" |
|
|
575 | ;; |
|
|
576 | -*) |
|
|
577 | die "${FUNCNAME}(): Unrecognized option '$1'" |
|
|
578 | ;; |
|
|
579 | *) |
|
|
580 | die "${FUNCNAME}(): Invalid usage" |
|
|
581 | ;; |
|
|
582 | esac |
|
|
583 | shift |
|
|
584 | done |
|
|
585 | |
|
|
586 | while read -d $'\0' -r file; do |
|
|
587 | files+=("${file}") |
|
|
588 | done < <(find "${ED}" "(" -name "*.py[co]" -o -name "*\$py.class" ")" -type f -print0) |
|
|
589 | |
|
|
590 | if [[ "${#files[@]}" -gt 0 ]]; then |
|
|
591 | if [[ "${quiet}" == "0" ]]; then |
|
|
592 | ewarn "Deleting byte-compiled Python modules needlessly generated by build system:" |
|
|
593 | fi |
|
|
594 | for file in "${files[@]}"; do |
|
|
595 | if [[ "${quiet}" == "0" ]]; then |
|
|
596 | ewarn " ${file}" |
|
|
597 | fi |
|
|
598 | rm -f "${file}" |
|
|
599 | |
|
|
600 | # Delete empty __pycache__ directories. |
|
|
601 | if [[ "${file%/*}" == *"/__pycache__" ]]; then |
|
|
602 | rmdir "${file%/*}" 2> /dev/null |
|
|
603 | fi |
|
|
604 | done |
|
|
605 | fi |
|
|
606 | |
|
|
607 | python_clean_sitedirs() { |
|
|
608 | if [[ -d "${ED}$(python_get_sitedir)" ]]; then |
|
|
609 | find "${ED}$(python_get_sitedir)" "(" -name "*.c" -o -name "*.h" -o -name "*.la" ")" -type f -print0 | xargs -0 rm -f |
|
|
610 | fi |
|
|
611 | } |
|
|
612 | if _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
613 | python_execute_function -q python_clean_sitedirs |
|
|
614 | else |
|
|
615 | python_clean_sitedirs |
|
|
616 | fi |
|
|
617 | |
|
|
618 | unset -f python_clean_sitedirs |
|
|
619 | } |
|
|
620 | |
|
|
621 | # ================================================================================================ |
| 270 | # =========== FUNCTIONS FOR PACKAGES SUPPORTING INSTALLATION FOR MULTIPLE PYTHON ABIS ============ |
622 | # =========== FUNCTIONS FOR PACKAGES SUPPORTING INSTALLATION FOR MULTIPLE PYTHON ABIS ============ |
| 271 | # ================================================================================================ |
623 | # ================================================================================================ |
| 272 | |
624 | |
| 273 | # @ECLASS-VARIABLE: SUPPORT_PYTHON_ABIS |
625 | # @ECLASS-VARIABLE: SUPPORT_PYTHON_ABIS |
| 274 | # @DESCRIPTION: |
626 | # @DESCRIPTION: |
| 275 | # 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 |
| 276 | # multiple Python ABIs. |
628 | # multiple Python ABIs. |
| 277 | |
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 | |
| 278 | # @ECLASS-VARIABLE: PYTHON_EXPORT_PHASE_FUNCTIONS |
635 | # @ECLASS-VARIABLE: PYTHON_EXPORT_PHASE_FUNCTIONS |
| 279 | # @DESCRIPTION: |
636 | # @DESCRIPTION: |
| 280 | # Set this to export phase functions for the following ebuild phases: |
637 | # Set this to export phase functions for the following ebuild phases: |
| 281 | # src_prepare, src_configure, src_compile, src_test, src_install. |
638 | # src_prepare(), src_configure(), src_compile(), src_test(), src_install(). |
| 282 | if ! has "${EAPI:-0}" 0 1; then |
639 | if ! has "${EAPI:-0}" 0 1; then |
| 283 | 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 | |
| 284 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
645 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
| 285 | 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" |
| 286 | fi |
647 | fi |
| 287 | |
648 | |
|
|
649 | _python_check_python_pkg_setup_execution |
|
|
650 | |
|
|
651 | if [[ "$#" -ne 0 ]]; then |
|
|
652 | die "${FUNCNAME}() does not accept arguments" |
|
|
653 | fi |
|
|
654 | |
| 288 | python_copy_sources |
655 | python_copy_sources |
| 289 | } |
656 | } |
| 290 | |
657 | |
| 291 | 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 |
| 292 | 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 | |
| 293 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
664 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
| 294 | 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\" |
| 295 | fi |
666 | fi |
| 296 | |
667 | |
|
|
668 | _python_check_python_pkg_setup_execution |
|
|
669 | |
| 297 | python_execute_function -d -s \"\$@\" |
670 | python_execute_function -d -s -- \"\$@\" |
| 298 | }" |
671 | }" |
| 299 | done |
672 | done |
| 300 | unset python_default_function |
673 | unset python_default_function |
|
|
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 | } |
| 301 | |
698 | |
| 302 | if [[ -n "${PYTHON_EXPORT_PHASE_FUNCTIONS}" ]]; then |
699 | if [[ -n "${PYTHON_EXPORT_PHASE_FUNCTIONS}" ]]; then |
| 303 | 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 |
| 304 | fi |
701 | fi |
| 305 | fi |
702 | fi |
| 306 | |
703 | |
|
|
704 | if has "${EAPI:-0}" 0 1 2 3 4; then |
| 307 | unset PYTHON_ABIS |
705 | unset PYTHON_ABIS |
|
|
706 | fi |
| 308 | |
707 | |
| 309 | # @FUNCTION: validate_PYTHON_ABIS |
708 | _python_calculate_PYTHON_ABIS() { |
| 310 | # @DESCRIPTION: |
|
|
| 311 | # Ensure that PYTHON_ABIS variable has valid value. |
|
|
| 312 | # This function usually should not be directly called in ebuilds. |
|
|
| 313 | validate_PYTHON_ABIS() { |
|
|
| 314 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
709 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
| 315 | 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" |
| 316 | fi |
711 | fi |
| 317 | |
712 | |
| 318 | _python_initial_sanity_checks |
713 | _python_initial_sanity_checks |
| 319 | |
714 | |
| 320 | # USE_${ABI_TYPE^^} and RESTRICT_${ABI_TYPE^^}_ABIS variables hopefully will be included in EAPI >= 5. |
|
|
| 321 | 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 |
| 322 | local PYTHON_ABI restricted_ABI support_ABI supported_PYTHON_ABIS= |
716 | local PYTHON_ABI |
| 323 | PYTHON_ABI_SUPPORTED_VALUES="${_CPYTHON2_SUPPORTED_ABIS[@]} ${_CPYTHON3_SUPPORTED_ABIS[@]} ${_JYTHON_SUPPORTED_ABIS[@]}" |
|
|
| 324 | |
717 | |
| 325 | 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 |
| 326 | local cpython_enabled="0" |
719 | local cpython_enabled="0" |
| 327 | |
720 | |
| 328 | if [[ -z "${USE_PYTHON}" ]]; then |
721 | if [[ -z "${USE_PYTHON}" ]]; then |
| 329 | die "USE_PYTHON variable is empty" |
722 | die "USE_PYTHON variable is empty" |
| 330 | fi |
723 | fi |
| 331 | |
724 | |
| 332 | for PYTHON_ABI in ${USE_PYTHON}; do |
725 | for PYTHON_ABI in ${USE_PYTHON}; do |
| 333 | if ! has "${PYTHON_ABI}" ${PYTHON_ABI_SUPPORTED_VALUES}; then |
726 | if ! has "${PYTHON_ABI}" "${_PYTHON_GLOBALLY_SUPPORTED_ABIS[@]}"; then |
| 334 | die "USE_PYTHON variable contains invalid value '${PYTHON_ABI}'" |
727 | die "USE_PYTHON variable contains invalid value '${PYTHON_ABI}'" |
| 335 | fi |
728 | fi |
| 336 | |
729 | |
| 337 | 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 |
| 338 | cpython_enabled="1" |
731 | cpython_enabled="1" |
| 339 | fi |
732 | fi |
| 340 | |
733 | |
| 341 | support_ABI="1" |
734 | if ! _python_check_python_abi_matching --patterns-list "${PYTHON_ABI}" "${RESTRICT_PYTHON_ABIS}"; then |
| 342 | for restricted_ABI in ${RESTRICT_PYTHON_ABIS}; do |
735 | export PYTHON_ABIS+="${PYTHON_ABIS:+ }${PYTHON_ABI}" |
| 343 | if [[ "${PYTHON_ABI}" == ${restricted_ABI} ]]; then |
736 | fi |
| 344 | 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" |
| 345 | break |
766 | break |
| 346 | fi |
767 | fi |
| 347 | done |
768 | done |
| 348 | [[ "${support_ABI}" == "1" ]] && export PYTHON_ABIS+="${PYTHON_ABIS:+ }${PYTHON_ABI}" |
|
|
| 349 | done |
|
|
| 350 | |
|
|
| 351 | if [[ -z "${PYTHON_ABIS//[${IFS}]/}" ]]; then |
|
|
| 352 | die "USE_PYTHON variable does not enable any Python ABI supported by ${CATEGORY}/${PF}" |
|
|
| 353 | fi |
|
|
| 354 | |
|
|
| 355 | if [[ "${cpython_enabled}" == "0" ]]; then |
|
|
| 356 | die "USE_PYTHON variable does not enable any CPython ABI" |
|
|
| 357 | fi |
|
|
| 358 | else |
|
|
| 359 | local python_version python2_version= python3_version= support_python_major_version |
|
|
| 360 | |
|
|
| 361 | python_version="$("${EPREFIX}/usr/bin/python" -c 'from sys import version_info; print(".".join(str(x) for x in version_info[:2]))')" |
|
|
| 362 | |
|
|
| 363 | if has_version "=dev-lang/python-2*"; then |
|
|
| 364 | if [[ "$(readlink "${EPREFIX}/usr/bin/python2")" != "python2."* ]]; then |
|
|
| 365 | die "'${EPREFIX}/usr/bin/python2' is not valid symlink" |
|
|
| 366 | fi |
|
|
| 367 | |
|
|
| 368 | python2_version="$("${EPREFIX}/usr/bin/python2" -c 'from sys import version_info; print(".".join(str(x) for x in version_info[:2]))')" |
|
|
| 369 | |
|
|
| 370 | for PYTHON_ABI in "${_CPYTHON2_SUPPORTED_ABIS[@]}"; do |
|
|
| 371 | support_python_major_version="1" |
|
|
| 372 | for restricted_ABI in ${RESTRICT_PYTHON_ABIS}; do |
|
|
| 373 | if [[ "${PYTHON_ABI}" == ${restricted_ABI} ]]; then |
|
|
| 374 | support_python_major_version="0" |
|
|
| 375 | fi |
|
|
| 376 | done |
|
|
| 377 | [[ "${support_python_major_version}" == "1" ]] && break |
|
|
| 378 | done |
|
|
| 379 | if [[ "${support_python_major_version}" == "1" ]]; then |
769 | if [[ "${support_python_major_version}" == "1" ]]; then |
| 380 | for restricted_ABI in ${RESTRICT_PYTHON_ABIS}; do |
770 | if _python_check_python_abi_matching --patterns-list "${python2_version}" "${RESTRICT_PYTHON_ABIS}"; then |
| 381 | if [[ "${python2_version}" == ${restricted_ABI} ]]; then |
|
|
| 382 | 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}" |
| 383 | fi |
772 | fi |
| 384 | done |
|
|
| 385 | else |
773 | else |
| 386 | python2_version="" |
774 | python2_version="" |
| 387 | fi |
775 | fi |
| 388 | fi |
776 | fi |
| 389 | |
777 | |
| … | |
… | |
| 392 | die "'${EPREFIX}/usr/bin/python3' is not valid symlink" |
780 | die "'${EPREFIX}/usr/bin/python3' is not valid symlink" |
| 393 | fi |
781 | fi |
| 394 | |
782 | |
| 395 | 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]))')" |
| 396 | |
784 | |
|
|
785 | support_python_major_version="0" |
| 397 | 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 |
| 398 | support_python_major_version="1" |
788 | support_python_major_version="1" |
| 399 | for restricted_ABI in ${RESTRICT_PYTHON_ABIS}; do |
789 | break |
| 400 | if [[ "${PYTHON_ABI}" == ${restricted_ABI} ]]; then |
|
|
| 401 | support_python_major_version="0" |
|
|
| 402 | fi |
790 | fi |
| 403 | done |
|
|
| 404 | [[ "${support_python_major_version}" == "1" ]] && break |
|
|
| 405 | done |
791 | done |
| 406 | if [[ "${support_python_major_version}" == "1" ]]; then |
792 | if [[ "${support_python_major_version}" == "1" ]]; then |
| 407 | for restricted_ABI in ${RESTRICT_PYTHON_ABIS}; do |
793 | if _python_check_python_abi_matching --patterns-list "${python3_version}" "${RESTRICT_PYTHON_ABIS}"; then |
| 408 | if [[ "${python3_version}" == ${restricted_ABI} ]]; then |
|
|
| 409 | 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}" |
| 410 | fi |
795 | fi |
| 411 | done |
|
|
| 412 | else |
796 | else |
| 413 | python3_version="" |
797 | python3_version="" |
| 414 | fi |
798 | fi |
| 415 | fi |
799 | fi |
| 416 | |
800 | |
| … | |
… | |
| 430 | export PYTHON_ABIS="${PYTHON_ABIS% }" |
814 | export PYTHON_ABIS="${PYTHON_ABIS% }" |
| 431 | fi |
815 | fi |
| 432 | fi |
816 | fi |
| 433 | |
817 | |
| 434 | _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 |
| 435 | } |
871 | } |
| 436 | |
872 | |
| 437 | # @FUNCTION: python_execute_function |
873 | # @FUNCTION: python_execute_function |
| 438 | # @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] |
| 439 | # @DESCRIPTION: |
875 | # @DESCRIPTION: |
| … | |
… | |
| 442 | python_execute_function() { |
878 | python_execute_function() { |
| 443 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
879 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
| 444 | 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" |
| 445 | fi |
881 | fi |
| 446 | |
882 | |
|
|
883 | _python_check_python_pkg_setup_execution |
| 447 | _python_set_color_variables |
884 | _python_set_color_variables |
| 448 | |
885 | |
| 449 | 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 |
| 450 | |
887 | |
| 451 | while (($#)); do |
888 | while (($#)); do |
| 452 | case "$1" in |
889 | case "$1" in |
| 453 | --action-message) |
890 | --action-message) |
| 454 | action_message_template="$2" |
891 | action_message_template="$2" |
| … | |
… | |
| 541 | fi |
978 | fi |
| 542 | function="python_default_function" |
979 | function="python_default_function" |
| 543 | fi |
980 | fi |
| 544 | |
981 | |
| 545 | # 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(). |
| 546 | for ((i = 1; i < "${#FUNCNAME[@]}"; i++)); do |
983 | if _python_abi-specific_local_scope; then |
| 547 | if [[ "${FUNCNAME[${i}]}" == "${FUNCNAME}" ]]; then |
|
|
| 548 | die "${FUNCNAME}(): Invalid call stack" |
984 | die "${FUNCNAME}(): Invalid call stack" |
| 549 | fi |
985 | fi |
| 550 | done |
|
|
| 551 | |
986 | |
| 552 | if [[ "${quiet}" == "0" ]]; then |
987 | if [[ "${quiet}" == "0" ]]; then |
| 553 | [[ "${EBUILD_PHASE}" == "setup" ]] && action="Setting up" |
988 | [[ "${EBUILD_PHASE}" == "setup" ]] && action="Setting up" |
| 554 | [[ "${EBUILD_PHASE}" == "unpack" ]] && action="Unpacking" |
989 | [[ "${EBUILD_PHASE}" == "unpack" ]] && action="Unpacking" |
| 555 | [[ "${EBUILD_PHASE}" == "prepare" ]] && action="Preparation" |
990 | [[ "${EBUILD_PHASE}" == "prepare" ]] && action="Preparation" |
| … | |
… | |
| 561 | [[ "${EBUILD_PHASE}" == "postinst" ]] && action="Postinstallation" |
996 | [[ "${EBUILD_PHASE}" == "postinst" ]] && action="Postinstallation" |
| 562 | [[ "${EBUILD_PHASE}" == "prerm" ]] && action="Preuninstallation" |
997 | [[ "${EBUILD_PHASE}" == "prerm" ]] && action="Preuninstallation" |
| 563 | [[ "${EBUILD_PHASE}" == "postrm" ]] && action="Postuninstallation" |
998 | [[ "${EBUILD_PHASE}" == "postrm" ]] && action="Postuninstallation" |
| 564 | fi |
999 | fi |
| 565 | |
1000 | |
| 566 | validate_PYTHON_ABIS |
1001 | _python_calculate_PYTHON_ABIS |
| 567 | if [[ "${final_ABI}" == "1" ]]; then |
1002 | if [[ "${final_ABI}" == "1" ]]; then |
| 568 | iterated_PYTHON_ABIS="$(PYTHON -f --ABI)" |
1003 | iterated_PYTHON_ABIS="$(PYTHON -f --ABI)" |
| 569 | else |
1004 | else |
| 570 | iterated_PYTHON_ABIS="${PYTHON_ABIS}" |
1005 | iterated_PYTHON_ABIS="${PYTHON_ABIS}" |
| 571 | fi |
1006 | fi |
| 572 | 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 | |
| 573 | if [[ "${quiet}" == "0" ]]; then |
1017 | if [[ "${quiet}" == "0" ]]; then |
| 574 | if [[ -n "${action_message_template}" ]]; then |
1018 | if [[ -n "${action_message_template}" ]]; then |
| 575 | action_message="$(eval echo -n "${action_message_template}")" |
1019 | eval "action_message=\"${action_message_template}\"" |
| 576 | else |
1020 | else |
| 577 | 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)..." |
| 578 | fi |
1022 | fi |
| 579 | echo " ${_GREEN}*${_NORMAL} ${_BLUE}${action_message}${_NORMAL}" |
1023 | echo " ${_GREEN}*${_NORMAL} ${_BLUE}${action_message}${_NORMAL}" |
| 580 | fi |
1024 | fi |
| 581 | |
1025 | |
| 582 | if [[ "${separate_build_dirs}" == "1" ]]; then |
1026 | if [[ "${separate_build_dirs}" == "1" ]]; then |
| … | |
… | |
| 598 | EPYTHON="$(PYTHON)" nonfatal "${function}" "$@" |
1042 | EPYTHON="$(PYTHON)" nonfatal "${function}" "$@" |
| 599 | else |
1043 | else |
| 600 | EPYTHON="$(PYTHON)" "${function}" "$@" |
1044 | EPYTHON="$(PYTHON)" "${function}" "$@" |
| 601 | fi |
1045 | fi |
| 602 | |
1046 | |
| 603 | if [[ "$?" != "0" ]]; then |
1047 | return_code="$?" |
|
|
1048 | |
|
|
1049 | _python_restore_flags |
|
|
1050 | |
|
|
1051 | if [[ "${return_code}" -ne 0 ]]; then |
| 604 | if [[ -n "${failure_message_template}" ]]; then |
1052 | if [[ -n "${failure_message_template}" ]]; then |
| 605 | failure_message="$(eval echo -n "${failure_message_template}")" |
1053 | eval "failure_message=\"${failure_message_template}\"" |
| 606 | else |
1054 | else |
| 607 | 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" |
| 608 | fi |
1056 | fi |
| 609 | |
1057 | |
| 610 | if [[ "${nonfatal}" == "1" ]]; then |
1058 | if [[ "${nonfatal}" == "1" ]]; then |
| 611 | if [[ "${quiet}" == "0" ]]; then |
1059 | if [[ "${quiet}" == "0" ]]; then |
| 612 | ewarn "${_RED}${failure_message}${_NORMAL}" |
1060 | ewarn "${failure_message}" |
| 613 | fi |
1061 | fi |
| 614 | 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 |
| 615 | if [[ "${EBUILD_PHASE}" != "test" ]] || ! has test-fail-continue ${FEATURES}; then |
1063 | if [[ "${EBUILD_PHASE}" != "test" ]] || ! has test-fail-continue ${FEATURES}; then |
| 616 | local enabled_PYTHON_ABIS= other_PYTHON_ABI |
1064 | local enabled_PYTHON_ABIS= other_PYTHON_ABI |
| 617 | for other_PYTHON_ABI in ${PYTHON_ABIS}; do |
1065 | for other_PYTHON_ABI in ${PYTHON_ABIS}; do |
| 618 | [[ "${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}" |
| 619 | done |
1067 | done |
| 620 | export PYTHON_ABIS="${enabled_PYTHON_ABIS}" |
1068 | export PYTHON_ABIS="${enabled_PYTHON_ABIS}" |
| 621 | fi |
1069 | fi |
| 622 | if [[ "${quiet}" == "0" ]]; then |
1070 | if [[ "${quiet}" == "0" ]]; then |
| 623 | ewarn "${_RED}${failure_message}${_NORMAL}" |
1071 | ewarn "${failure_message}" |
| 624 | fi |
1072 | fi |
| 625 | if [[ -z "${PYTHON_ABIS}" ]]; then |
1073 | if [[ -z "${PYTHON_ABIS}" ]]; then |
| 626 | die "${function}() function failed with all enabled Python ABIs" |
1074 | die "${function}() function failed with all enabled Python ABIs" |
| 627 | fi |
1075 | fi |
| 628 | else |
1076 | else |
| … | |
… | |
| 669 | python_copy_sources() { |
1117 | python_copy_sources() { |
| 670 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
1118 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
| 671 | 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" |
| 672 | fi |
1120 | fi |
| 673 | |
1121 | |
|
|
1122 | _python_check_python_pkg_setup_execution |
|
|
1123 | |
| 674 | local dir dirs=() PYTHON_ABI |
1124 | local dir dirs=() PYTHON_ABI |
| 675 | |
1125 | |
| 676 | if [[ "$#" -eq 0 ]]; then |
1126 | if [[ "$#" -eq 0 ]]; then |
| 677 | if [[ "${WORKDIR}" == "${S}" ]]; then |
1127 | if [[ "${WORKDIR}" == "${S}" ]]; then |
| 678 | die "${FUNCNAME}() cannot be used" |
1128 | die "${FUNCNAME}() cannot be used with current value of S variable" |
| 679 | fi |
1129 | fi |
| 680 | dirs=("${S%/}") |
1130 | dirs=("${S%/}") |
| 681 | else |
1131 | else |
| 682 | dirs=("$@") |
1132 | dirs=("$@") |
| 683 | fi |
1133 | fi |
| 684 | |
1134 | |
| 685 | validate_PYTHON_ABIS |
1135 | _python_calculate_PYTHON_ABIS |
| 686 | for PYTHON_ABI in ${PYTHON_ABIS}; do |
1136 | for PYTHON_ABI in ${PYTHON_ABIS}; do |
| 687 | for dir in "${dirs[@]}"; do |
1137 | for dir in "${dirs[@]}"; do |
| 688 | cp -pr "${dir}" "${dir}-${PYTHON_ABI}" > /dev/null || die "Copying of sources failed" |
1138 | cp -pr "${dir}" "${dir}-${PYTHON_ABI}" > /dev/null || die "Copying of sources failed" |
| 689 | done |
1139 | done |
| 690 | done |
1140 | done |
| … | |
… | |
| 694 | # @USAGE: [-E|--respect-EPYTHON] [-f|--force] [-q|--quiet] [--] <file> [files] |
1144 | # @USAGE: [-E|--respect-EPYTHON] [-f|--force] [-q|--quiet] [--] <file> [files] |
| 695 | # @DESCRIPTION: |
1145 | # @DESCRIPTION: |
| 696 | # Generate wrapper scripts. Existing files are overwritten only with --force option. |
1146 | # Generate wrapper scripts. Existing files are overwritten only with --force option. |
| 697 | # If --respect-EPYTHON option is specified, then generated wrapper scripts will |
1147 | # If --respect-EPYTHON option is specified, then generated wrapper scripts will |
| 698 | # 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. |
| 699 | 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 | |
| 700 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
1156 | 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" |
1157 | die "${FUNCNAME}() cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
| 702 | fi |
1158 | fi |
| 703 | |
1159 | |
|
|
1160 | _python_check_python_pkg_setup_execution |
| 704 | _python_initialize_prefix_variables |
1161 | _python_initialize_prefix_variables |
| 705 | |
1162 | |
| 706 | 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" |
| 707 | |
1164 | |
| 708 | while (($#)); do |
1165 | while (($#)); do |
| 709 | case "$1" in |
1166 | case "$1" in |
| 710 | -E|--respect-EPYTHON) |
1167 | -E|--respect-EPYTHON) |
| 711 | respect_EPYTHON="1" |
1168 | respect_EPYTHON="1" |
| … | |
… | |
| 732 | |
1189 | |
| 733 | if [[ "$#" -eq 0 ]]; then |
1190 | if [[ "$#" -eq 0 ]]; then |
| 734 | die "${FUNCNAME}(): Missing arguments" |
1191 | die "${FUNCNAME}(): Missing arguments" |
| 735 | fi |
1192 | fi |
| 736 | |
1193 | |
| 737 | validate_PYTHON_ABIS |
1194 | _python_calculate_PYTHON_ABIS |
| 738 | for PYTHON_ABI in "${_CPYTHON2_SUPPORTED_ABIS[@]}"; do |
1195 | for PYTHON_ABI in "${_CPYTHON2_GLOBALLY_SUPPORTED_ABIS[@]}"; do |
| 739 | if has "${PYTHON_ABI}" ${PYTHON_ABIS}; then |
1196 | if has "${PYTHON_ABI}" ${PYTHON_ABIS}; then |
| 740 | python2_enabled="1" |
1197 | python2_enabled="1" |
| 741 | fi |
1198 | fi |
| 742 | done |
1199 | done |
| 743 | for PYTHON_ABI in "${_CPYTHON3_SUPPORTED_ABIS[@]}"; do |
1200 | for PYTHON_ABI in "${_CPYTHON3_GLOBALLY_SUPPORTED_ABIS[@]}"; do |
| 744 | if has "${PYTHON_ABI}" ${PYTHON_ABIS}; then |
1201 | if has "${PYTHON_ABI}" ${PYTHON_ABIS}; then |
| 745 | python3_enabled="1" |
1202 | python3_enabled="1" |
| 746 | fi |
1203 | fi |
| 747 | done |
1204 | done |
| 748 | |
1205 | |
| … | |
… | |
| 754 | eselect_python_option="--python3" |
1211 | eselect_python_option="--python3" |
| 755 | else |
1212 | else |
| 756 | die "${FUNCNAME}(): Unsupported environment" |
1213 | die "${FUNCNAME}(): Unsupported environment" |
| 757 | fi |
1214 | fi |
| 758 | |
1215 | |
|
|
1216 | PYTHON_ABIS_list="$("$(PYTHON -f)" -c "print(', '.join('\"%s\"' % x for x in reversed('${PYTHON_ABIS}'.split())))")" |
|
|
1217 | |
| 759 | for file in "$@"; do |
1218 | for file in "$@"; do |
| 760 | if [[ -f "${file}" && "${force}" == "0" ]]; then |
1219 | if [[ -f "${file}" && "${force}" == "0" ]]; then |
| 761 | die "${FUNCNAME}(): '$1' already exists" |
1220 | die "${FUNCNAME}(): '${file}' already exists" |
| 762 | fi |
1221 | fi |
| 763 | |
1222 | |
| 764 | if [[ "${quiet}" == "0" ]]; then |
1223 | if [[ "${quiet}" == "0" ]]; then |
| 765 | einfo "Generating '${file#${ED%/}}' wrapper script" |
1224 | einfo "Generating '${file#${ED%/}}' wrapper script" |
| 766 | fi |
1225 | fi |
| … | |
… | |
| 772 | import os |
1231 | import os |
| 773 | import re |
1232 | import re |
| 774 | import subprocess |
1233 | import subprocess |
| 775 | import sys |
1234 | import sys |
| 776 | |
1235 | |
| 777 | 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+)$") |
| 778 | 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)") |
| 779 | 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 |
| 780 | |
1259 | |
| 781 | EOF |
1260 | EOF |
| 782 | if [[ "$?" != "0" ]]; then |
1261 | if [[ "$?" != "0" ]]; then |
| 783 | die "${FUNCNAME}(): Generation of '$1' failed" |
1262 | die "${FUNCNAME}(): Generation of '$1' failed" |
| 784 | fi |
1263 | fi |
| 785 | if [[ "${respect_EPYTHON}" == "1" ]]; then |
1264 | if [[ "${respect_EPYTHON}" == "1" ]]; then |
| 786 | cat << EOF >> "${file}" |
1265 | cat << EOF >> "${file}" |
| 787 | EPYTHON = os.environ.get("EPYTHON") |
1266 | EPYTHON = os.environ.get("EPYTHON") |
| 788 | if EPYTHON: |
1267 | if EPYTHON: |
| 789 | EPYTHON_matched = EPYTHON_re.match(EPYTHON) |
1268 | PYTHON_ABI = get_PYTHON_ABI(EPYTHON) |
| 790 | if EPYTHON_matched: |
1269 | if PYTHON_ABI is None: |
| 791 | PYTHON_ABI = EPYTHON_matched.group(1) |
|
|
| 792 | else: |
|
|
| 793 | 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)) |
| 794 | sys.exit(1) |
1271 | sys.exit(1) |
| 795 | else: |
1272 | else: |
| 796 | try: |
1273 | try: |
|
|
1274 | environment = os.environ.copy() |
|
|
1275 | environment["ROOT"] = "/" |
| 797 | 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) |
| 798 | if eselect_process.wait() != 0: |
1277 | if eselect_process.wait() != 0: |
| 799 | raise ValueError |
1278 | raise ValueError |
| 800 | except (OSError, ValueError): |
1279 | except (OSError, ValueError): |
| 801 | 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]) |
| 802 | sys.exit(1) |
1281 | sys.exit(1) |
| 803 | |
1282 | |
| 804 | EPYTHON = eselect_process.stdout.read() |
1283 | EPYTHON = eselect_process.stdout.read() |
| 805 | if not isinstance(EPYTHON, str): |
1284 | if not isinstance(EPYTHON, str): |
| 806 | # Python 3 |
1285 | # Python 3 |
| 807 | EPYTHON = EPYTHON.decode() |
1286 | EPYTHON = EPYTHON.decode() |
| 808 | EPYTHON = EPYTHON.rstrip("\n") |
1287 | EPYTHON = EPYTHON.rstrip("\n") |
| 809 | |
1288 | |
| 810 | EPYTHON_matched = EPYTHON_re.match(EPYTHON) |
1289 | PYTHON_ABI = get_PYTHON_ABI(EPYTHON) |
| 811 | if EPYTHON_matched: |
1290 | if PYTHON_ABI is None: |
| 812 | PYTHON_ABI = EPYTHON_matched.group(1) |
|
|
| 813 | else: |
|
|
| 814 | 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)) |
| 815 | 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) |
| 816 | EOF |
1299 | EOF |
| 817 | if [[ "$?" != "0" ]]; then |
1300 | if [[ "$?" != "0" ]]; then |
| 818 | die "${FUNCNAME}(): Generation of '$1' failed" |
1301 | die "${FUNCNAME}(): Generation of '$1' failed" |
| 819 | fi |
1302 | fi |
| 820 | else |
1303 | else |
| 821 | cat << EOF >> "${file}" |
1304 | cat << EOF >> "${file}" |
| 822 | try: |
1305 | try: |
|
|
1306 | environment = os.environ.copy() |
|
|
1307 | environment["ROOT"] = "/" |
| 823 | 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) |
| 824 | if eselect_process.wait() != 0: |
1309 | if eselect_process.wait() != 0: |
| 825 | raise ValueError |
1310 | raise ValueError |
| 826 | except (OSError, ValueError): |
1311 | except (OSError, ValueError): |
| 827 | 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]) |
| 828 | sys.exit(1) |
1313 | sys.exit(1) |
| 829 | |
1314 | |
| 830 | EPYTHON = eselect_process.stdout.read() |
1315 | EPYTHON = eselect_process.stdout.read() |
| 831 | if not isinstance(EPYTHON, str): |
1316 | if not isinstance(EPYTHON, str): |
| 832 | # Python 3 |
1317 | # Python 3 |
| 833 | EPYTHON = EPYTHON.decode() |
1318 | EPYTHON = EPYTHON.decode() |
| 834 | EPYTHON = EPYTHON.rstrip("\n") |
1319 | EPYTHON = EPYTHON.rstrip("\n") |
| 835 | |
1320 | |
| 836 | EPYTHON_matched = EPYTHON_re.match(EPYTHON) |
1321 | PYTHON_ABI = get_PYTHON_ABI(EPYTHON) |
| 837 | if EPYTHON_matched: |
1322 | if PYTHON_ABI is None: |
| 838 | 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 |
| 839 | else: |
1331 | else: |
| 840 | 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)) |
| 841 | sys.exit(1) |
1333 | sys.exit(1) |
| 842 | EOF |
1334 | EOF |
| 843 | if [[ "$?" != "0" ]]; then |
1335 | if [[ "$?" != "0" ]]; then |
| 844 | die "${FUNCNAME}(): Generation of '$1' failed" |
1336 | die "${FUNCNAME}(): Generation of '$1' failed" |
| 845 | fi |
1337 | fi |
| 846 | fi |
1338 | fi |
| 847 | cat << EOF >> "${file}" |
1339 | cat << EOF >> "${file}" |
| 848 | |
|
|
| 849 | wrapper_script_path = os.path.realpath(sys.argv[0]) |
|
|
| 850 | target_executable_path = "%s-%s" % (wrapper_script_path, PYTHON_ABI) |
|
|
| 851 | os.environ["GENTOO_PYTHON_WRAPPER_SCRIPT_PATH"] = sys.argv[0] |
|
|
| 852 | os.environ["GENTOO_PYTHON_TARGET_SCRIPT_PATH"] = target_executable_path |
|
|
| 853 | if not os.path.exists(target_executable_path): |
|
|
| 854 | sys.stderr.write("'%s' does not exist\n" % target_executable_path) |
|
|
| 855 | sys.exit(1) |
|
|
| 856 | |
1340 | |
| 857 | target_executable = open(target_executable_path, "rb") |
1341 | target_executable = open(target_executable_path, "rb") |
| 858 | target_executable_first_line = target_executable.readline() |
1342 | target_executable_first_line = target_executable.readline() |
| 859 | if not isinstance(target_executable_first_line, str): |
1343 | if not isinstance(target_executable_first_line, str): |
| 860 | # Python 3 |
1344 | # Python 3 |
| 861 | 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") |
| 862 | |
1346 | |
| 863 | python_shebang_matched = python_shebang_re.match(target_executable_first_line) |
1347 | python_shebang_matched = python_shebang_re.match(target_executable_first_line) |
| 864 | target_executable.close() |
1348 | target_executable.close() |
| 865 | |
1349 | |
| 866 | if python_shebang_matched: |
1350 | if python_shebang_matched is not None: |
| 867 | try: |
1351 | try: |
| 868 | python_interpreter_path = "${EPREFIX}/usr/bin/%s" % EPYTHON |
1352 | python_interpreter_path = "${EPREFIX}/usr/bin/%s" % EPYTHON |
| 869 | os.environ["GENTOO_PYTHON_TARGET_SCRIPT_PATH_VERIFICATION"] = "1" |
1353 | os.environ["GENTOO_PYTHON_TARGET_SCRIPT_PATH_VERIFICATION"] = "1" |
| 870 | 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) |
| 871 | del os.environ["GENTOO_PYTHON_TARGET_SCRIPT_PATH_VERIFICATION"] |
1355 | del os.environ["GENTOO_PYTHON_TARGET_SCRIPT_PATH_VERIFICATION"] |
| … | |
… | |
| 878 | python_verification_output = python_verification_output.decode() |
1362 | python_verification_output = python_verification_output.decode() |
| 879 | |
1363 | |
| 880 | if not python_verification_output_re.match(python_verification_output): |
1364 | if not python_verification_output_re.match(python_verification_output): |
| 881 | raise ValueError |
1365 | raise ValueError |
| 882 | |
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"): |
| 883 | 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 |
| 884 | except: |
1378 | except: |
| 885 | pass |
1379 | pass |
| 886 | 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"): |
| 887 | del os.environ["GENTOO_PYTHON_TARGET_SCRIPT_PATH_VERIFICATION"] |
1381 | if variable in os.environ: |
|
|
1382 | del os.environ[variable] |
| 888 | |
1383 | |
|
|
1384 | if hasattr(os, "execv"): |
| 889 | 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()) |
| 890 | EOF |
1388 | EOF |
| 891 | if [[ "$?" != "0" ]]; then |
1389 | if [[ "$?" != "0" ]]; then |
| 892 | die "${FUNCNAME}(): Generation of '$1' failed" |
1390 | die "${FUNCNAME}(): Generation of '$1' failed" |
| 893 | fi |
1391 | fi |
| 894 | fperms +x "${file#${ED%/}}" || die "fperms '${file}' failed" |
1392 | fperms +x "${file#${ED%/}}" || die "fperms '${file}' failed" |
| 895 | done |
1393 | done |
| 896 | } |
1394 | } |
| 897 | |
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 | |
| 898 | # ================================================================================================ |
1608 | # ================================================================================================ |
| 899 | # ========= FUNCTIONS FOR PACKAGES NOT SUPPORTING INSTALLATION FOR MULTIPLE PYTHON ABIS ========== |
1609 | # ========= FUNCTIONS FOR PACKAGES NOT SUPPORTING INSTALLATION FOR MULTIPLE PYTHON ABIS ========== |
| 900 | # ================================================================================================ |
1610 | # ================================================================================================ |
| 901 | |
1611 | |
|
|
1612 | unset EPYTHON PYTHON_ABI |
|
|
1613 | |
| 902 | # @FUNCTION: python_set_active_version |
1614 | # @FUNCTION: python_set_active_version |
| 903 | # @USAGE: <CPython_ABI|2|3> |
1615 | # @USAGE: <Python_ABI|2|3> |
| 904 | # @DESCRIPTION: |
1616 | # @DESCRIPTION: |
| 905 | # 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. |
| 906 | 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 | |
| 907 | if _python_package_supporting_installation_for_multiple_python_abis; then |
1628 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| 908 | 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" |
| 909 | fi |
1630 | fi |
| 910 | |
1631 | |
| 911 | if [[ "$#" -ne 1 ]]; then |
1632 | if [[ "$#" -ne 1 ]]; then |
| 912 | die "${FUNCNAME}() requires 1 argument" |
1633 | die "${FUNCNAME}() requires 1 argument" |
| 913 | fi |
1634 | fi |
| 914 | |
1635 | |
| 915 | _python_initial_sanity_checks |
1636 | _python_initial_sanity_checks |
| 916 | |
1637 | |
| 917 | if [[ "$1" =~ ^[[:digit:]]+\.[[:digit:]]+$ ]]; then |
1638 | if [[ -z "${PYTHON_ABI}" ]]; then |
| 918 | if ! _python_implementation && ! has_version "dev-lang/python:$1"; then |
1639 | if [[ -n "$(_python_get_implementation --ignore-invalid "$1")" ]]; then |
| 919 | 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" |
| 920 | fi |
1645 | fi |
| 921 | export EPYTHON="$(PYTHON "$1")" |
1646 | export EPYTHON="$(PYTHON "$1")" |
| 922 | elif [[ "$1" == "2" ]]; then |
1647 | elif [[ "$1" == "2" ]]; then |
| 923 | if ! _python_implementation && ! has_version "=dev-lang/python-2*"; then |
1648 | if ! _python_implementation && ! has_version "=dev-lang/python-2*"; then |
| 924 | die "${FUNCNAME}(): '=dev-lang/python-2*' is not installed" |
1649 | die "${FUNCNAME}(): '=dev-lang/python-2*' is not installed" |
| 925 | fi |
1650 | fi |
| 926 | export EPYTHON="$(PYTHON -2)" |
1651 | export EPYTHON="$(PYTHON -2)" |
|
|
1652 | PYTHON_ABI="${EPYTHON#python}" |
|
|
1653 | PYTHON_ABI="${PYTHON_ABI%%-*}" |
| 927 | elif [[ "$1" == "3" ]]; then |
1654 | elif [[ "$1" == "3" ]]; then |
| 928 | if ! _python_implementation && ! has_version "=dev-lang/python-3*"; then |
1655 | if ! _python_implementation && ! has_version "=dev-lang/python-3*"; then |
| 929 | die "${FUNCNAME}(): '=dev-lang/python-3*' is not installed" |
1656 | die "${FUNCNAME}(): '=dev-lang/python-3*' is not installed" |
| 930 | fi |
1657 | fi |
| 931 | export EPYTHON="$(PYTHON -3)" |
1658 | export EPYTHON="$(PYTHON -3)" |
|
|
1659 | PYTHON_ABI="${EPYTHON#python}" |
|
|
1660 | PYTHON_ABI="${PYTHON_ABI%%-*}" |
| 932 | else |
1661 | else |
| 933 | die "${FUNCNAME}(): Unrecognized argument '$1'" |
1662 | die "${FUNCNAME}(): Unrecognized argument '$1'" |
| 934 | fi |
1663 | fi |
| 935 | |
1664 | fi |
| 936 | # PYTHON_ABI variable is intended to be used only in ebuilds/eclasses, |
|
|
| 937 | # so it does not need to be exported to subprocesses. |
|
|
| 938 | PYTHON_ABI="${EPYTHON#python}" |
|
|
| 939 | PYTHON_ABI="${PYTHON_ABI%%-*}" |
|
|
| 940 | |
1665 | |
| 941 | _python_final_sanity_checks |
1666 | _python_final_sanity_checks |
| 942 | |
1667 | |
| 943 | # python-updater checks PYTHON_REQUESTED_ACTIVE_VERSION variable. |
1668 | # python-updater checks PYTHON_REQUESTED_ACTIVE_VERSION variable. |
| 944 | PYTHON_REQUESTED_ACTIVE_VERSION="$1" |
1669 | PYTHON_REQUESTED_ACTIVE_VERSION="$1" |
| … | |
… | |
| 950 | python_need_rebuild() { |
1675 | python_need_rebuild() { |
| 951 | if _python_package_supporting_installation_for_multiple_python_abis; then |
1676 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| 952 | 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" |
| 953 | fi |
1678 | fi |
| 954 | |
1679 | |
|
|
1680 | _python_check_python_pkg_setup_execution |
|
|
1681 | |
|
|
1682 | if [[ "$#" -ne 0 ]]; then |
|
|
1683 | die "${FUNCNAME}() does not accept arguments" |
|
|
1684 | fi |
|
|
1685 | |
| 955 | export PYTHON_NEED_REBUILD="$(PYTHON --ABI)" |
1686 | export PYTHON_NEED_REBUILD="$(PYTHON --ABI)" |
| 956 | } |
1687 | } |
| 957 | |
1688 | |
| 958 | # ================================================================================================ |
1689 | # ================================================================================================ |
| 959 | # ======================================= GETTER FUNCTIONS ======================================= |
1690 | # ======================================= GETTER FUNCTIONS ======================================= |
| 960 | # ================================================================================================ |
1691 | # ================================================================================================ |
| 961 | |
1692 | |
| 962 | _PYTHON_ABI_EXTRACTION_COMMAND='import platform |
1693 | _PYTHON_ABI_EXTRACTION_COMMAND=\ |
|
|
1694 | 'import platform |
| 963 | import sys |
1695 | import sys |
| 964 | 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])) |
| 965 | if platform.system()[:4] == "Java": |
1697 | if platform.system()[:4] == "Java": |
| 966 | 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]))' |
| 967 | |
1701 | |
| 968 | _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 | |
| 969 | if [[ "$#" -ne 1 ]]; then |
1724 | if [[ "$#" -ne 1 ]]; then |
| 970 | die "${FUNCNAME}() requires 1 argument" |
1725 | die "${FUNCNAME}() requires 1 argument" |
| 971 | fi |
1726 | fi |
| 972 | |
1727 | |
| 973 | if [[ "$1" =~ ^[[:digit:]]+\.[[:digit:]]+$ ]]; then |
1728 | if [[ "$1" =~ ^[[:digit:]]+\.[[:digit:]]+$ ]]; then |
| 974 | echo "CPython" |
1729 | echo "CPython" |
| 975 | elif [[ "$1" =~ ^[[:digit:]]+\.[[:digit:]]+-jython$ ]]; then |
1730 | elif [[ "$1" =~ ^[[:digit:]]+\.[[:digit:]]+-jython$ ]]; then |
| 976 | echo "Jython" |
1731 | echo "Jython" |
|
|
1732 | elif [[ "$1" =~ ^[[:digit:]]+\.[[:digit:]]+-pypy-[[:digit:]]+\.[[:digit:]]+$ ]]; then |
|
|
1733 | echo "PyPy" |
| 977 | else |
1734 | else |
|
|
1735 | if [[ "${ignore_invalid}" == "0" ]]; then |
| 978 | die "${FUNCNAME}(): Unrecognized Python ABI '$1'" |
1736 | die "${FUNCNAME}(): Unrecognized Python ABI '$1'" |
|
|
1737 | fi |
| 979 | fi |
1738 | fi |
| 980 | } |
1739 | } |
| 981 | |
1740 | |
| 982 | # @FUNCTION: PYTHON |
1741 | # @FUNCTION: PYTHON |
| 983 | # @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}"> |
| 984 | # @DESCRIPTION: |
1743 | # @DESCRIPTION: |
| 985 | # 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 |
| 986 | # 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. |
| 987 | # 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. |
| 988 | # 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. |
| 989 | # 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. |
| 990 | # -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. |
| 991 | # 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 |
| 992 | # filename of Python interpreter. |
1751 | # filename of Python interpreter. |
| 993 | # 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. |
| 994 | # --ABI and --absolute-path options cannot be specified simultaneously. |
1753 | # --ABI and --absolute-path options cannot be specified simultaneously. |
| 995 | PYTHON() { |
1754 | PYTHON() { |
|
|
1755 | _python_check_python_pkg_setup_execution |
|
|
1756 | |
| 996 | 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" |
| 997 | |
1758 | |
| 998 | while (($#)); do |
1759 | while (($#)); do |
| 999 | case "$1" in |
1760 | case "$1" in |
| 1000 | -2) |
1761 | -2) |
| … | |
… | |
| 1025 | esac |
1786 | esac |
| 1026 | shift |
1787 | shift |
| 1027 | done |
1788 | done |
| 1028 | |
1789 | |
| 1029 | if [[ "${ABI_output}" == "1" && "${absolute_path_output}" == "1" ]]; then |
1790 | if [[ "${ABI_output}" == "1" && "${absolute_path_output}" == "1" ]]; then |
| 1030 | die "${FUNCNAME}(): '--ABI and '--absolute-path' options cannot be specified simultaneously" |
1791 | die "${FUNCNAME}(): '--ABI' and '--absolute-path' options cannot be specified simultaneously" |
| 1031 | fi |
1792 | fi |
| 1032 | |
1793 | |
| 1033 | if [[ "$((${python2} + ${python3} + ${final_ABI}))" -gt 1 ]]; then |
1794 | if [[ "$((${python2} + ${python3} + ${final_ABI}))" -gt 1 ]]; then |
| 1034 | 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" |
| 1035 | fi |
1796 | fi |
| … | |
… | |
| 1037 | if [[ "$#" -eq 0 ]]; then |
1798 | if [[ "$#" -eq 0 ]]; then |
| 1038 | if [[ "${final_ABI}" == "1" ]]; then |
1799 | if [[ "${final_ABI}" == "1" ]]; then |
| 1039 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
1800 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
| 1040 | 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" |
| 1041 | fi |
1802 | fi |
| 1042 | validate_PYTHON_ABIS |
1803 | _python_calculate_PYTHON_ABIS |
| 1043 | PYTHON_ABI="${PYTHON_ABIS##* }" |
1804 | PYTHON_ABI="${PYTHON_ABIS##* }" |
| 1044 | elif [[ "${python2}" == "1" ]]; then |
1805 | elif [[ "${python2}" == "1" ]]; then |
| 1045 | PYTHON_ABI="$(eselect python show --python2 --ABI)" |
1806 | PYTHON_ABI="$(ROOT="/" eselect python show --python2 --ABI)" |
| 1046 | if [[ -z "${PYTHON_ABI}" ]]; then |
1807 | if [[ -z "${PYTHON_ABI}" ]]; then |
| 1047 | die "${FUNCNAME}(): Active Python 2 interpreter not set" |
1808 | die "${FUNCNAME}(): Active version of CPython 2 not set" |
| 1048 | elif [[ "${PYTHON_ABI}" != "2."* ]]; then |
1809 | elif [[ "${PYTHON_ABI}" != "2."* ]]; then |
| 1049 | die "${FUNCNAME}(): Internal error in \`eselect python show --python2\`" |
1810 | die "${FUNCNAME}(): Internal error in \`eselect python show --python2\`" |
| 1050 | fi |
1811 | fi |
| 1051 | elif [[ "${python3}" == "1" ]]; then |
1812 | elif [[ "${python3}" == "1" ]]; then |
| 1052 | PYTHON_ABI="$(eselect python show --python3 --ABI)" |
1813 | PYTHON_ABI="$(ROOT="/" eselect python show --python3 --ABI)" |
| 1053 | if [[ -z "${PYTHON_ABI}" ]]; then |
1814 | if [[ -z "${PYTHON_ABI}" ]]; then |
| 1054 | die "${FUNCNAME}(): Active Python 3 interpreter not set" |
1815 | die "${FUNCNAME}(): Active version of CPython 3 not set" |
| 1055 | elif [[ "${PYTHON_ABI}" != "3."* ]]; then |
1816 | elif [[ "${PYTHON_ABI}" != "3."* ]]; then |
| 1056 | die "${FUNCNAME}(): Internal error in \`eselect python show --python3\`" |
1817 | die "${FUNCNAME}(): Internal error in \`eselect python show --python3\`" |
| 1057 | fi |
1818 | fi |
| 1058 | 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 |
| 1059 | PYTHON_ABI="$("${EPREFIX}/usr/bin/python" -c "${_PYTHON_ABI_EXTRACTION_COMMAND}")" |
1824 | PYTHON_ABI="$("${EPREFIX}/usr/bin/python" -c "${_PYTHON_ABI_EXTRACTION_COMMAND}")" |
| 1060 | elif [[ -z "${PYTHON_ABI}" ]]; then |
1825 | if [[ -z "${PYTHON_ABI}" ]]; then |
| 1061 | die "${FUNCNAME}(): Invalid usage: ${FUNCNAME}() should be used in ABI-specific local scope" |
1826 | die "${FUNCNAME}(): Failure of extraction of locally active version of Python" |
|
|
1827 | fi |
| 1062 | fi |
1828 | fi |
| 1063 | elif [[ "$#" -eq 1 ]]; then |
1829 | elif [[ "$#" -eq 1 ]]; then |
| 1064 | if [[ "${final_ABI}" == "1" ]]; then |
1830 | if [[ "${final_ABI}" == "1" ]]; then |
| 1065 | 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" |
| 1066 | fi |
1832 | fi |
| … | |
… | |
| 1080 | return |
1846 | return |
| 1081 | else |
1847 | else |
| 1082 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
1848 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
| 1083 | python_interpreter="python${PYTHON_ABI}" |
1849 | python_interpreter="python${PYTHON_ABI}" |
| 1084 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
1850 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
| 1085 | 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-}" |
| 1086 | fi |
1854 | fi |
| 1087 | |
1855 | |
| 1088 | if [[ "${absolute_path_output}" == "1" ]]; then |
1856 | if [[ "${absolute_path_output}" == "1" ]]; then |
| 1089 | echo -n "${EPREFIX}/usr/bin/${python_interpreter}" |
1857 | echo -n "${EPREFIX}/usr/bin/${python_interpreter}" |
| 1090 | else |
1858 | else |
| … | |
… | |
| 1101 | # @USAGE: [-f|--final-ABI] |
1869 | # @USAGE: [-f|--final-ABI] |
| 1102 | # @DESCRIPTION: |
1870 | # @DESCRIPTION: |
| 1103 | # Print name of Python implementation. |
1871 | # Print name of Python implementation. |
| 1104 | # 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. |
| 1105 | python_get_implementation() { |
1873 | python_get_implementation() { |
|
|
1874 | _python_check_python_pkg_setup_execution |
|
|
1875 | |
| 1106 | local final_ABI="0" PYTHON_ABI="${PYTHON_ABI}" |
1876 | local final_ABI="0" PYTHON_ABI="${PYTHON_ABI}" |
| 1107 | |
1877 | |
| 1108 | while (($#)); do |
1878 | while (($#)); do |
| 1109 | case "$1" in |
1879 | case "$1" in |
| 1110 | -f|--final-ABI) |
1880 | -f|--final-ABI) |
| … | |
… | |
| 1123 | if [[ "${final_ABI}" == "1" ]]; then |
1893 | if [[ "${final_ABI}" == "1" ]]; then |
| 1124 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
1894 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
| 1125 | 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" |
| 1126 | fi |
1896 | fi |
| 1127 | PYTHON_ABI="$(PYTHON -f --ABI)" |
1897 | PYTHON_ABI="$(PYTHON -f --ABI)" |
| 1128 | 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 |
| 1129 | PYTHON_ABI="$(PYTHON --ABI)" |
1904 | PYTHON_ABI="${PYTHON_ABI:-$(PYTHON --ABI)}" |
|
|
1905 | fi |
| 1130 | fi |
1906 | fi |
| 1131 | |
1907 | |
| 1132 | echo "$(_python_get_implementation "${PYTHON_ABI}")" |
1908 | echo "$(_python_get_implementation "${PYTHON_ABI}")" |
| 1133 | } |
1909 | } |
| 1134 | |
1910 | |
| … | |
… | |
| 1136 | # @USAGE: [-f|--final-ABI] |
1912 | # @USAGE: [-f|--final-ABI] |
| 1137 | # @DESCRIPTION: |
1913 | # @DESCRIPTION: |
| 1138 | # Print category, name and slot of package providing Python implementation. |
1914 | # Print category, name and slot of package providing Python implementation. |
| 1139 | # 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. |
| 1140 | python_get_implementational_package() { |
1916 | python_get_implementational_package() { |
|
|
1917 | _python_check_python_pkg_setup_execution |
|
|
1918 | |
| 1141 | local final_ABI="0" PYTHON_ABI="${PYTHON_ABI}" |
1919 | local final_ABI="0" PYTHON_ABI="${PYTHON_ABI}" |
| 1142 | |
1920 | |
| 1143 | while (($#)); do |
1921 | while (($#)); do |
| 1144 | case "$1" in |
1922 | case "$1" in |
| 1145 | -f|--final-ABI) |
1923 | -f|--final-ABI) |
| … | |
… | |
| 1158 | if [[ "${final_ABI}" == "1" ]]; then |
1936 | if [[ "${final_ABI}" == "1" ]]; then |
| 1159 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
1937 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
| 1160 | 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" |
| 1161 | fi |
1939 | fi |
| 1162 | PYTHON_ABI="$(PYTHON -f --ABI)" |
1940 | PYTHON_ABI="$(PYTHON -f --ABI)" |
| 1163 | 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 |
| 1164 | PYTHON_ABI="$(PYTHON --ABI)" |
1947 | PYTHON_ABI="${PYTHON_ABI:-$(PYTHON --ABI)}" |
| 1165 | fi |
1948 | fi |
|
|
1949 | fi |
| 1166 | |
1950 | |
|
|
1951 | if [[ "${EAPI:-0}" == "0" ]]; then |
| 1167 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
1952 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
| 1168 | echo "dev-lang/python:${PYTHON_ABI}" |
1953 | echo "=dev-lang/python-${PYTHON_ABI}*" |
| 1169 | 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 |
| 1170 | 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 |
| 1171 | fi |
1967 | fi |
| 1172 | } |
1968 | } |
| 1173 | |
1969 | |
| 1174 | # @FUNCTION: python_get_includedir |
1970 | # @FUNCTION: python_get_includedir |
| 1175 | # @USAGE: [-f|--final-ABI] |
1971 | # @USAGE: [-b|--base-path] [-f|--final-ABI] |
| 1176 | # @DESCRIPTION: |
1972 | # @DESCRIPTION: |
| 1177 | # 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. |
| 1178 | # 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. |
| 1179 | python_get_includedir() { |
1976 | python_get_includedir() { |
|
|
1977 | _python_check_python_pkg_setup_execution |
|
|
1978 | |
| 1180 | 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 |
| 1181 | |
2224 | |
| 1182 | while (($#)); do |
2225 | while (($#)); do |
| 1183 | case "$1" in |
2226 | case "$1" in |
| 1184 | -f|--final-ABI) |
2227 | -f|--final-ABI) |
| 1185 | final_ABI="1" |
2228 | final_ABI="1" |
| 1186 | ;; |
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 | ;; |
| 1187 | -*) |
2245 | -*) |
| 1188 | die "${FUNCNAME}(): Unrecognized option '$1'" |
2246 | die "${FUNCNAME}(): Unrecognized option '$1'" |
| 1189 | ;; |
2247 | ;; |
| 1190 | *) |
2248 | *) |
| 1191 | die "${FUNCNAME}(): Invalid usage" |
2249 | die "${FUNCNAME}(): Invalid usage" |
| … | |
… | |
| 1196 | |
2254 | |
| 1197 | if [[ "${final_ABI}" == "1" ]]; then |
2255 | if [[ "${final_ABI}" == "1" ]]; then |
| 1198 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
2256 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
| 1199 | 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" |
| 1200 | 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 |
| 1201 | PYTHON_ABI="$(PYTHON -f --ABI)" |
2271 | PYTHON_ABI="$(PYTHON -f --ABI)" |
| 1202 | elif [[ -z "${PYTHON_ABI}" ]]; then |
2272 | elif [[ -z "${PYTHON_ABI}" ]]; then |
| 1203 | PYTHON_ABI="$(PYTHON --ABI)" |
2273 | PYTHON_ABI="$(PYTHON --ABI)" |
| 1204 | fi |
2274 | fi |
| 1205 | |
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 |
| 1206 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
2298 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
| 1207 | echo "/usr/include/python${PYTHON_ABI}" |
2299 | echo "${PYTHON_ABI}" |
| 1208 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
2300 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
| 1209 | 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]))" |
| 1210 | fi |
2308 | fi |
| 1211 | } |
|
|
| 1212 | |
2309 | |
| 1213 | # @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 |
| 1214 | # @USAGE: [-f|--final-ABI] |
2319 | # @USAGE: [-f|--final-ABI] |
| 1215 | # @DESCRIPTION: |
2320 | # @DESCRIPTION: |
| 1216 | # 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. |
| 1217 | # 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. |
| 1218 | python_get_libdir() { |
2325 | python_get_implementation_and_version() { |
|
|
2326 | _python_check_python_pkg_setup_execution |
|
|
2327 | |
| 1219 | local final_ABI="0" PYTHON_ABI="${PYTHON_ABI}" |
2328 | local final_ABI="0" PYTHON_ABI="${PYTHON_ABI}" |
| 1220 | |
2329 | |
| 1221 | while (($#)); do |
2330 | while (($#)); do |
| 1222 | case "$1" in |
2331 | case "$1" in |
| 1223 | -f|--final-ABI) |
2332 | -f|--final-ABI) |
| … | |
… | |
| 1236 | if [[ "${final_ABI}" == "1" ]]; then |
2345 | if [[ "${final_ABI}" == "1" ]]; then |
| 1237 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
2346 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
| 1238 | 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" |
| 1239 | fi |
2348 | fi |
| 1240 | PYTHON_ABI="$(PYTHON -f --ABI)" |
2349 | PYTHON_ABI="$(PYTHON -f --ABI)" |
| 1241 | elif [[ -z "${PYTHON_ABI}" ]]; then |
2350 | else |
| 1242 | PYTHON_ABI="$(PYTHON --ABI)" |
|
|
| 1243 | fi |
|
|
| 1244 | |
|
|
| 1245 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
|
|
| 1246 | echo "/usr/$(get_libdir)/python${PYTHON_ABI}" |
|
|
| 1247 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
|
|
| 1248 | echo "/usr/share/jython-${PYTHON_ABI%-jython}/Lib" |
|
|
| 1249 | fi |
|
|
| 1250 | } |
|
|
| 1251 | |
|
|
| 1252 | # @FUNCTION: python_get_sitedir |
|
|
| 1253 | # @USAGE: [-f|--final-ABI] |
|
|
| 1254 | # @DESCRIPTION: |
|
|
| 1255 | # Print path to Python site-packages directory. |
|
|
| 1256 | # If --final-ABI option is specified, then final ABI from the list of enabled ABIs is used. |
|
|
| 1257 | python_get_sitedir() { |
|
|
| 1258 | local options=() |
|
|
| 1259 | |
|
|
| 1260 | while (($#)); do |
|
|
| 1261 | case "$1" in |
|
|
| 1262 | -f|--final-ABI) |
|
|
| 1263 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
| 1264 | die "${FUNCNAME}(): '--final-ABI' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
|
|
| 1265 | fi |
|
|
| 1266 | options+=("$1") |
|
|
| 1267 | ;; |
|
|
| 1268 | -*) |
|
|
| 1269 | die "${FUNCNAME}(): Unrecognized option '$1'" |
|
|
| 1270 | ;; |
|
|
| 1271 | *) |
|
|
| 1272 | die "${FUNCNAME}(): Invalid usage" |
|
|
| 1273 | ;; |
|
|
| 1274 | esac |
|
|
| 1275 | shift |
|
|
| 1276 | done |
|
|
| 1277 | |
|
|
| 1278 | echo "$(python_get_libdir "${options[@]}")/site-packages" |
|
|
| 1279 | } |
|
|
| 1280 | |
|
|
| 1281 | # @FUNCTION: python_get_library |
|
|
| 1282 | # @USAGE: [-f|--final-ABI] [-l|--linker-option] |
|
|
| 1283 | # @DESCRIPTION: |
|
|
| 1284 | # Print path to Python library. |
|
|
| 1285 | # If --linker-option is specified, then "-l${library}" linker option is printed. |
|
|
| 1286 | # If --final-ABI option is specified, then final ABI from the list of enabled ABIs is used. |
|
|
| 1287 | python_get_library() { |
|
|
| 1288 | local final_ABI="0" linker_option="0" PYTHON_ABI="${PYTHON_ABI}" |
|
|
| 1289 | |
|
|
| 1290 | while (($#)); do |
|
|
| 1291 | case "$1" in |
|
|
| 1292 | -f|--final-ABI) |
|
|
| 1293 | final_ABI="1" |
|
|
| 1294 | ;; |
|
|
| 1295 | -l|--linker-option) |
|
|
| 1296 | linker_option="1" |
|
|
| 1297 | ;; |
|
|
| 1298 | -*) |
|
|
| 1299 | die "${FUNCNAME}(): Unrecognized option '$1'" |
|
|
| 1300 | ;; |
|
|
| 1301 | *) |
|
|
| 1302 | die "${FUNCNAME}(): Invalid usage" |
|
|
| 1303 | ;; |
|
|
| 1304 | esac |
|
|
| 1305 | shift |
|
|
| 1306 | done |
|
|
| 1307 | |
|
|
| 1308 | if [[ "${final_ABI}" == "1" ]]; then |
|
|
| 1309 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
2351 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| 1310 | 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" |
| 1311 | fi |
2354 | fi |
| 1312 | PYTHON_ABI="$(PYTHON -f --ABI)" |
|
|
| 1313 | elif [[ -z "${PYTHON_ABI}" ]]; then |
|
|
| 1314 | PYTHON_ABI="$(PYTHON --ABI)" |
|
|
| 1315 | fi |
|
|
| 1316 | |
|
|
| 1317 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
|
|
| 1318 | if [[ "${linker_option}" == "1" ]]; then |
|
|
| 1319 | echo "-lpython${PYTHON_ABI}" |
|
|
| 1320 | else |
|
|
| 1321 | echo "/usr/$(get_libdir)/libpython${PYTHON_ABI}$(get_libname)" |
|
|
| 1322 | fi |
|
|
| 1323 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
|
|
| 1324 | die "${FUNCNAME}(): Jython does not have shared library" |
|
|
| 1325 | fi |
|
|
| 1326 | } |
|
|
| 1327 | |
|
|
| 1328 | # @FUNCTION: python_get_version |
|
|
| 1329 | # @USAGE: [-f|--final-ABI] [--full] [--major] [--minor] [--micro] |
|
|
| 1330 | # @DESCRIPTION: |
|
|
| 1331 | # Print Python version. |
|
|
| 1332 | # --full, --major, --minor and --micro options cannot be specified simultaneously. |
|
|
| 1333 | # If --full, --major, --minor and --micro options are not specified, then "${major_version}.${minor_version}" is printed. |
|
|
| 1334 | # If --final-ABI option is specified, then final ABI from the list of enabled ABIs is used. |
|
|
| 1335 | python_get_version() { |
|
|
| 1336 | local final_ABI="0" full="0" major="0" minor="0" micro="0" python_command |
|
|
| 1337 | |
|
|
| 1338 | while (($#)); do |
|
|
| 1339 | case "$1" in |
|
|
| 1340 | -f|--final-ABI) |
|
|
| 1341 | final_ABI="1" |
|
|
| 1342 | ;; |
|
|
| 1343 | --full) |
|
|
| 1344 | full="1" |
|
|
| 1345 | ;; |
|
|
| 1346 | --major) |
|
|
| 1347 | major="1" |
|
|
| 1348 | ;; |
|
|
| 1349 | --minor) |
|
|
| 1350 | minor="1" |
|
|
| 1351 | ;; |
|
|
| 1352 | --micro) |
|
|
| 1353 | micro="1" |
|
|
| 1354 | ;; |
|
|
| 1355 | -*) |
|
|
| 1356 | die "${FUNCNAME}(): Unrecognized option '$1'" |
|
|
| 1357 | ;; |
|
|
| 1358 | *) |
|
|
| 1359 | die "${FUNCNAME}(): Invalid usage" |
|
|
| 1360 | ;; |
|
|
| 1361 | esac |
|
|
| 1362 | shift |
|
|
| 1363 | done |
|
|
| 1364 | |
|
|
| 1365 | if [[ "$((${full} + ${major} + ${minor} + ${micro}))" -gt 1 ]]; then |
|
|
| 1366 | die "${FUNCNAME}(): '--full', '--major', '--minor' or '--micro' options cannot be specified simultaneously" |
|
|
| 1367 | fi |
|
|
| 1368 | |
|
|
| 1369 | if [[ "${full}" == "1" ]]; then |
|
|
| 1370 | python_command="from sys import version_info; print('.'.join(str(x) for x in version_info[:3]))" |
|
|
| 1371 | elif [[ "${major}" == "1" ]]; then |
|
|
| 1372 | python_command="from sys import version_info; print(version_info[0])" |
|
|
| 1373 | elif [[ "${minor}" == "1" ]]; then |
|
|
| 1374 | python_command="from sys import version_info; print(version_info[1])" |
|
|
| 1375 | elif [[ "${micro}" == "1" ]]; then |
|
|
| 1376 | python_command="from sys import version_info; print(version_info[2])" |
|
|
| 1377 | else |
|
|
| 1378 | if [[ -n "${PYTHON_ABI}" && "${final_ABI}" == "0" ]]; then |
|
|
| 1379 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "CPython" ]]; then |
|
|
| 1380 | echo "${PYTHON_ABI}" |
|
|
| 1381 | elif [[ "$(_python_get_implementation "${PYTHON_ABI}")" == "Jython" ]]; then |
|
|
| 1382 | echo "${PYTHON_ABI%-jython}" |
|
|
| 1383 | fi |
|
|
| 1384 | return |
|
|
| 1385 | fi |
|
|
| 1386 | python_command="from sys import version_info; print('.'.join(str(x) for x in version_info[:2]))" |
|
|
| 1387 | fi |
|
|
| 1388 | |
|
|
| 1389 | if [[ "${final_ABI}" == "1" ]]; then |
|
|
| 1390 | if ! _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
| 1391 | die "${FUNCNAME}(): '--final-ABI' option cannot be used in ebuilds of packages not supporting installation for multiple Python ABIs" |
|
|
| 1392 | fi |
|
|
| 1393 | "$(PYTHON -f)" -c "${python_command}" |
|
|
| 1394 | else |
|
|
| 1395 | "$(PYTHON ${PYTHON_ABI})" -c "${python_command}" |
|
|
| 1396 | fi |
|
|
| 1397 | } |
|
|
| 1398 | |
|
|
| 1399 | # ================================================================================================ |
|
|
| 1400 | # =================================== MISCELLANEOUS FUNCTIONS ==================================== |
|
|
| 1401 | # ================================================================================================ |
|
|
| 1402 | |
|
|
| 1403 | _python_implementation() { |
|
|
| 1404 | if [[ "${CATEGORY}/${PN}" == "dev-lang/python" ]]; then |
|
|
| 1405 | return 0 |
|
|
| 1406 | elif [[ "${CATEGORY}/${PN}" == "dev-java/jython" ]]; then |
|
|
| 1407 | return 0 |
|
|
| 1408 | else |
|
|
| 1409 | return 1 |
|
|
| 1410 | fi |
|
|
| 1411 | } |
|
|
| 1412 | |
|
|
| 1413 | _python_package_supporting_installation_for_multiple_python_abis() { |
|
|
| 1414 | if [[ "${EBUILD_PHASE}" == "depend" ]]; then |
|
|
| 1415 | die "${FUNCNAME}() cannot be used in global scope" |
|
|
| 1416 | fi |
|
|
| 1417 | |
|
|
| 1418 | if has "${EAPI:-0}" 0 1 2 3 4; then |
|
|
| 1419 | if [[ -n "${SUPPORT_PYTHON_ABIS}" ]]; then |
|
|
| 1420 | return 0 |
|
|
| 1421 | else |
|
|
| 1422 | return 1 |
|
|
| 1423 | fi |
|
|
| 1424 | else |
|
|
| 1425 | die "${FUNCNAME}(): Support for EAPI=\"${EAPI}\" not implemented" |
|
|
| 1426 | fi |
|
|
| 1427 | } |
|
|
| 1428 | |
|
|
| 1429 | _python_initialize_prefix_variables() { |
|
|
| 1430 | if has "${EAPI:-0}" 0 1 2; then |
|
|
| 1431 | if [[ -n "${ROOT}" && -z "${EROOT}" ]]; then |
|
|
| 1432 | EROOT="${ROOT%/}${EPREFIX}/" |
|
|
| 1433 | fi |
|
|
| 1434 | if [[ -n "${D}" && -z "${ED}" ]]; then |
|
|
| 1435 | ED="${D%/}${EPREFIX}/" |
|
|
| 1436 | fi |
|
|
| 1437 | fi |
|
|
| 1438 | } |
|
|
| 1439 | |
|
|
| 1440 | unset PYTHON_SANITY_CHECKS |
|
|
| 1441 | |
|
|
| 1442 | _python_initial_sanity_checks() { |
|
|
| 1443 | if [[ "$(declare -p PYTHON_SANITY_CHECKS 2> /dev/null)" != "declare -- PYTHON_SANITY_CHECKS="* ]]; then |
|
|
| 1444 | # Ensure that /usr/bin/python and /usr/bin/python-config are valid. |
|
|
| 1445 | if [[ "$(readlink "${EPREFIX}/usr/bin/python")" != "python-wrapper" ]]; then |
|
|
| 1446 | eerror "'${EPREFIX}/usr/bin/python' is not valid symlink." |
|
|
| 1447 | eerror "Use \`eselect python set \${python_interpreter}\` to fix this problem." |
|
|
| 1448 | die "'${EPREFIX}/usr/bin/python' is not valid symlink" |
|
|
| 1449 | fi |
|
|
| 1450 | if [[ "$(<"${EPREFIX}/usr/bin/python-config")" != *"Gentoo python-config wrapper script"* ]]; then |
|
|
| 1451 | eerror "'${EPREFIX}/usr/bin/python-config' is not valid script" |
|
|
| 1452 | eerror "Use \`eselect python set \${python_interpreter}\` to fix this problem." |
|
|
| 1453 | die "'${EPREFIX}/usr/bin/python-config' is not valid script" |
|
|
| 1454 | fi |
|
|
| 1455 | fi |
|
|
| 1456 | } |
|
|
| 1457 | |
|
|
| 1458 | _python_final_sanity_checks() { |
|
|
| 1459 | if ! _python_implementation && [[ "$(declare -p PYTHON_SANITY_CHECKS 2> /dev/null)" != "declare -- PYTHON_SANITY_CHECKS="* ]]; then |
|
|
| 1460 | local PYTHON_ABI="${PYTHON_ABI}" |
|
|
| 1461 | for PYTHON_ABI in ${PYTHON_ABIS-${PYTHON_ABI}}; do |
|
|
| 1462 | # Ensure that appropriate version of Python is installed. |
|
|
| 1463 | if ! has_version "$(python_get_implementational_package)"; then |
|
|
| 1464 | die "$(python_get_implementational_package) is not installed" |
|
|
| 1465 | fi |
|
|
| 1466 | |
|
|
| 1467 | # Ensure that EPYTHON variable is respected. |
|
|
| 1468 | if [[ "$(EPYTHON="$(PYTHON)" python -c "${_PYTHON_ABI_EXTRACTION_COMMAND}")" != "${PYTHON_ABI}" ]]; then |
|
|
| 1469 | eerror "python: '$(type -p python)'" |
|
|
| 1470 | eerror "ABI: '${ABI}'" |
|
|
| 1471 | eerror "DEFAULT_ABI: '${DEFAULT_ABI}'" |
|
|
| 1472 | eerror "EPYTHON: '$(PYTHON)'" |
|
|
| 1473 | eerror "PYTHON_ABI: '${PYTHON_ABI}'" |
|
|
| 1474 | eerror "Version of enabled Python: '$(EPYTHON="$(PYTHON)" python -c "${_PYTHON_ABI_EXTRACTION_COMMAND}")'" |
|
|
| 1475 | die "'python' does not respect EPYTHON variable" |
|
|
| 1476 | fi |
|
|
| 1477 | done |
|
|
| 1478 | fi |
|
|
| 1479 | PYTHON_SANITY_CHECKS="1" |
|
|
| 1480 | } |
|
|
| 1481 | |
|
|
| 1482 | _python_set_color_variables() { |
|
|
| 1483 | if [[ "${NOCOLOR:-false}" =~ ^(false|no)$ ]]; then |
|
|
| 1484 | _BOLD=$'\e[1m' |
|
|
| 1485 | _RED=$'\e[1;31m' |
|
|
| 1486 | _GREEN=$'\e[1;32m' |
|
|
| 1487 | _BLUE=$'\e[1;34m' |
|
|
| 1488 | _CYAN=$'\e[1;36m' |
|
|
| 1489 | _NORMAL=$'\e[0m' |
|
|
| 1490 | else |
|
|
| 1491 | _BOLD= |
|
|
| 1492 | _RED= |
|
|
| 1493 | _GREEN= |
|
|
| 1494 | _BLUE= |
|
|
| 1495 | _CYAN= |
|
|
| 1496 | _NORMAL= |
|
|
| 1497 | fi |
|
|
| 1498 | } |
|
|
| 1499 | |
|
|
| 1500 | # @FUNCTION: python_convert_shebangs |
|
|
| 1501 | # @USAGE: [-q|--quiet] [-r|--recursive] [-x|--only-executables] [--] <Python_version> <file|directory> [files|directories] |
|
|
| 1502 | # @DESCRIPTION: |
|
|
| 1503 | # Convert shebangs in specified files. Directories can be specified only with --recursive option. |
|
|
| 1504 | python_convert_shebangs() { |
|
|
| 1505 | local argument file files=() only_executables="0" python_version quiet="0" recursive="0" |
|
|
| 1506 | |
|
|
| 1507 | while (($#)); do |
|
|
| 1508 | case "$1" in |
|
|
| 1509 | -r|--recursive) |
|
|
| 1510 | recursive="1" |
|
|
| 1511 | ;; |
|
|
| 1512 | -q|--quiet) |
|
|
| 1513 | quiet="1" |
|
|
| 1514 | ;; |
|
|
| 1515 | -x|--only-executables) |
|
|
| 1516 | only_executables="1" |
|
|
| 1517 | ;; |
|
|
| 1518 | --) |
|
|
| 1519 | shift |
|
|
| 1520 | break |
|
|
| 1521 | ;; |
|
|
| 1522 | -*) |
|
|
| 1523 | die "${FUNCNAME}(): Unrecognized option '$1'" |
|
|
| 1524 | ;; |
|
|
| 1525 | *) |
|
|
| 1526 | break |
|
|
| 1527 | ;; |
|
|
| 1528 | esac |
|
|
| 1529 | shift |
|
|
| 1530 | done |
|
|
| 1531 | |
|
|
| 1532 | if [[ "$#" -eq 0 ]]; then |
|
|
| 1533 | die "${FUNCNAME}(): Missing Python version and files or directories" |
|
|
| 1534 | elif [[ "$#" -eq 1 ]]; then |
|
|
| 1535 | die "${FUNCNAME}(): Missing files or directories" |
|
|
| 1536 | fi |
|
|
| 1537 | |
|
|
| 1538 | python_version="$1" |
|
|
| 1539 | shift |
|
|
| 1540 | |
|
|
| 1541 | for argument in "$@"; do |
|
|
| 1542 | if [[ ! -e "${argument}" ]]; then |
|
|
| 1543 | die "${FUNCNAME}(): '${argument}' does not exist" |
|
|
| 1544 | elif [[ -f "${argument}" ]]; then |
|
|
| 1545 | files+=("${argument}") |
|
|
| 1546 | elif [[ -d "${argument}" ]]; then |
|
|
| 1547 | if [[ "${recursive}" == "1" ]]; then |
|
|
| 1548 | while read -d $'\0' -r file; do |
|
|
| 1549 | files+=("${file}") |
|
|
| 1550 | done < <(find "${argument}" $([[ "${only_executables}" == "1" ]] && echo -perm /111) -type f -print0) |
|
|
| 1551 | else |
2355 | else |
| 1552 | die "${FUNCNAME}(): '${argument}' is not a regular file" |
2356 | PYTHON_ABI="${PYTHON_ABI:-$(PYTHON --ABI)}" |
| 1553 | fi |
2357 | fi |
|
|
2358 | fi |
|
|
2359 | |
|
|
2360 | if [[ "${PYTHON_ABI}" =~ ^[[:digit:]]+\.[[:digit:]]+-[[:alnum:]]+-[[:digit:]]+\.[[:digit:]]+$ ]]; then |
|
|
2361 | echo "$(_python_get_implementation "${PYTHON_ABI}") ${PYTHON_ABI##*-} (Python ${PYTHON_ABI%%-*})" |
| 1554 | else |
2362 | else |
| 1555 | die "${FUNCNAME}(): '${argument}' is not a regular file or a directory" |
2363 | echo "$(_python_get_implementation "${PYTHON_ABI}") ${PYTHON_ABI%%-*}" |
| 1556 | fi |
2364 | fi |
| 1557 | done |
|
|
| 1558 | |
|
|
| 1559 | for file in "${files[@]}"; do |
|
|
| 1560 | file="${file#./}" |
|
|
| 1561 | [[ "${only_executables}" == "1" && ! -x "${file}" ]] && continue |
|
|
| 1562 | |
|
|
| 1563 | if [[ "$(head -n1 "${file}")" =~ ^'#!'.*python ]]; then |
|
|
| 1564 | [[ "$(sed -ne "2p" "${file}")" =~ ^"# Gentoo '".*"' wrapper script generated by python_generate_wrapper_scripts()"$ ]] && continue |
|
|
| 1565 | |
|
|
| 1566 | if [[ "${quiet}" == "0" ]]; then |
|
|
| 1567 | einfo "Converting shebang in '${file}'" |
|
|
| 1568 | fi |
|
|
| 1569 | |
|
|
| 1570 | sed -e "1s/python\([[:digit:]]\+\(\.[[:digit:]]\+\)\?\)\?/python${python_version}/" -i "${file}" || die "Conversion of shebang in '${file}' failed" |
|
|
| 1571 | |
|
|
| 1572 | # Delete potential whitespace after "#!". |
|
|
| 1573 | sed -e '1s/\(^#!\)[[:space:]]*/\1/' -i "${file}" || die "sed '${file}' failed" |
|
|
| 1574 | fi |
|
|
| 1575 | done |
|
|
| 1576 | } |
|
|
| 1577 | |
|
|
| 1578 | # @FUNCTION: python_clean_sitedirs |
|
|
| 1579 | # @DESCRIPTION: |
|
|
| 1580 | # Delete needless files in site-packages directories in ${ED}. |
|
|
| 1581 | python_clean_sitedirs() { |
|
|
| 1582 | _python_initialize_prefix_variables |
|
|
| 1583 | |
|
|
| 1584 | find "${ED}"usr/$(get_libdir)/python*/site-packages "(" -name "*.c" -o -name "*.h" -o -name "*.la" ")" -type f -print0 | xargs -0 rm -f |
|
|
| 1585 | } |
2365 | } |
| 1586 | |
2366 | |
| 1587 | # ================================================================================================ |
2367 | # ================================================================================================ |
| 1588 | # ================================ FUNCTIONS FOR RUNNING OF TESTS ================================ |
2368 | # ================================ FUNCTIONS FOR RUNNING OF TESTS ================================ |
| 1589 | # ================================================================================================ |
2369 | # ================================================================================================ |
| … | |
… | |
| 1609 | # @DESCRIPTION: |
2389 | # @DESCRIPTION: |
| 1610 | # Execute nosetests for all enabled Python ABIs. |
2390 | # Execute nosetests for all enabled Python ABIs. |
| 1611 | # 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 |
| 1612 | # 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. |
| 1613 | python_execute_nosetests() { |
2393 | python_execute_nosetests() { |
|
|
2394 | _python_check_python_pkg_setup_execution |
| 1614 | _python_set_color_variables |
2395 | _python_set_color_variables |
| 1615 | |
2396 | |
| 1616 | local PYTHONPATH_template= separate_build_dirs= |
2397 | local PYTHONPATH_template separate_build_dirs |
| 1617 | |
2398 | |
| 1618 | while (($#)); do |
2399 | while (($#)); do |
| 1619 | case "$1" in |
2400 | case "$1" in |
| 1620 | -P|--PYTHONPATH) |
2401 | -P|--PYTHONPATH) |
| 1621 | PYTHONPATH_template="$2" |
2402 | PYTHONPATH_template="$2" |
| … | |
… | |
| 1637 | esac |
2418 | esac |
| 1638 | shift |
2419 | shift |
| 1639 | done |
2420 | done |
| 1640 | |
2421 | |
| 1641 | python_test_function() { |
2422 | python_test_function() { |
| 1642 | local evaluated_PYTHONPATH= |
2423 | local evaluated_PYTHONPATH |
| 1643 | |
2424 | |
| 1644 | if [[ -n "${PYTHONPATH_template}" ]]; then |
|
|
| 1645 | evaluated_PYTHONPATH="$(eval echo -n "${PYTHONPATH_template}")" |
2425 | eval "evaluated_PYTHONPATH=\"${PYTHONPATH_template}\"" |
| 1646 | if [[ ! -e "${evaluated_PYTHONPATH}" ]]; then |
|
|
| 1647 | unset evaluated_PYTHONPATH |
|
|
| 1648 | fi |
|
|
| 1649 | fi |
|
|
| 1650 | |
2426 | |
| 1651 | _python_test_hook pre |
2427 | _python_test_hook pre |
| 1652 | |
2428 | |
| 1653 | if [[ -n "${evaluated_PYTHONPATH}" ]]; then |
2429 | if [[ -n "${evaluated_PYTHONPATH}" ]]; then |
| 1654 | echo ${_BOLD}PYTHONPATH="${evaluated_PYTHONPATH}" nosetests --verbosity="${PYTHON_TEST_VERBOSITY}" "$@"${_NORMAL} |
2430 | echo ${_BOLD}PYTHONPATH="${evaluated_PYTHONPATH}" nosetests --verbosity="${PYTHON_TEST_VERBOSITY}" "$@"${_NORMAL} |
| … | |
… | |
| 1677 | # @DESCRIPTION: |
2453 | # @DESCRIPTION: |
| 1678 | # Execute py.test for all enabled Python ABIs. |
2454 | # Execute py.test for all enabled Python ABIs. |
| 1679 | # 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 |
| 1680 | # 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. |
| 1681 | python_execute_py.test() { |
2457 | python_execute_py.test() { |
|
|
2458 | _python_check_python_pkg_setup_execution |
| 1682 | _python_set_color_variables |
2459 | _python_set_color_variables |
| 1683 | |
2460 | |
| 1684 | local PYTHONPATH_template= separate_build_dirs= |
2461 | local PYTHONPATH_template separate_build_dirs |
| 1685 | |
2462 | |
| 1686 | while (($#)); do |
2463 | while (($#)); do |
| 1687 | case "$1" in |
2464 | case "$1" in |
| 1688 | -P|--PYTHONPATH) |
2465 | -P|--PYTHONPATH) |
| 1689 | PYTHONPATH_template="$2" |
2466 | PYTHONPATH_template="$2" |
| … | |
… | |
| 1705 | esac |
2482 | esac |
| 1706 | shift |
2483 | shift |
| 1707 | done |
2484 | done |
| 1708 | |
2485 | |
| 1709 | python_test_function() { |
2486 | python_test_function() { |
| 1710 | local evaluated_PYTHONPATH= |
2487 | local evaluated_PYTHONPATH |
| 1711 | |
2488 | |
| 1712 | if [[ -n "${PYTHONPATH_template}" ]]; then |
|
|
| 1713 | evaluated_PYTHONPATH="$(eval echo -n "${PYTHONPATH_template}")" |
2489 | eval "evaluated_PYTHONPATH=\"${PYTHONPATH_template}\"" |
| 1714 | if [[ ! -e "${evaluated_PYTHONPATH}" ]]; then |
|
|
| 1715 | unset evaluated_PYTHONPATH |
|
|
| 1716 | fi |
|
|
| 1717 | fi |
|
|
| 1718 | |
2490 | |
| 1719 | _python_test_hook pre |
2491 | _python_test_hook pre |
| 1720 | |
2492 | |
| 1721 | if [[ -n "${evaluated_PYTHONPATH}" ]]; then |
2493 | if [[ -n "${evaluated_PYTHONPATH}" ]]; then |
| 1722 | 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} |
| … | |
… | |
| 1745 | # @DESCRIPTION: |
2517 | # @DESCRIPTION: |
| 1746 | # Execute trial for all enabled Python ABIs. |
2518 | # Execute trial for all enabled Python ABIs. |
| 1747 | # 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 |
| 1748 | # 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. |
| 1749 | python_execute_trial() { |
2521 | python_execute_trial() { |
|
|
2522 | _python_check_python_pkg_setup_execution |
| 1750 | _python_set_color_variables |
2523 | _python_set_color_variables |
| 1751 | |
2524 | |
| 1752 | local PYTHONPATH_template= separate_build_dirs= |
2525 | local PYTHONPATH_template separate_build_dirs |
| 1753 | |
2526 | |
| 1754 | while (($#)); do |
2527 | while (($#)); do |
| 1755 | case "$1" in |
2528 | case "$1" in |
| 1756 | -P|--PYTHONPATH) |
2529 | -P|--PYTHONPATH) |
| 1757 | PYTHONPATH_template="$2" |
2530 | PYTHONPATH_template="$2" |
| … | |
… | |
| 1773 | esac |
2546 | esac |
| 1774 | shift |
2547 | shift |
| 1775 | done |
2548 | done |
| 1776 | |
2549 | |
| 1777 | python_test_function() { |
2550 | python_test_function() { |
| 1778 | local evaluated_PYTHONPATH= |
2551 | local evaluated_PYTHONPATH |
| 1779 | |
2552 | |
| 1780 | if [[ -n "${PYTHONPATH_template}" ]]; then |
|
|
| 1781 | evaluated_PYTHONPATH="$(eval echo -n "${PYTHONPATH_template}")" |
2553 | eval "evaluated_PYTHONPATH=\"${PYTHONPATH_template}\"" |
| 1782 | if [[ ! -e "${evaluated_PYTHONPATH}" ]]; then |
|
|
| 1783 | unset evaluated_PYTHONPATH |
|
|
| 1784 | fi |
|
|
| 1785 | fi |
|
|
| 1786 | |
2554 | |
| 1787 | _python_test_hook pre |
2555 | _python_test_hook pre |
| 1788 | |
2556 | |
| 1789 | if [[ -n "${evaluated_PYTHONPATH}" ]]; then |
2557 | if [[ -n "${evaluated_PYTHONPATH}" ]]; then |
| 1790 | 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} |
| … | |
… | |
| 1815 | # @FUNCTION: python_enable_pyc |
2583 | # @FUNCTION: python_enable_pyc |
| 1816 | # @DESCRIPTION: |
2584 | # @DESCRIPTION: |
| 1817 | # Tell Python to automatically recompile modules to .pyc/.pyo if the |
2585 | # Tell Python to automatically recompile modules to .pyc/.pyo if the |
| 1818 | # timestamps/version stamps have changed. |
2586 | # timestamps/version stamps have changed. |
| 1819 | 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 | |
| 1820 | unset PYTHONDONTWRITEBYTECODE |
2594 | unset PYTHONDONTWRITEBYTECODE |
| 1821 | } |
2595 | } |
| 1822 | |
2596 | |
| 1823 | # @FUNCTION: python_disable_pyc |
2597 | # @FUNCTION: python_disable_pyc |
| 1824 | # @DESCRIPTION: |
2598 | # @DESCRIPTION: |
| 1825 | # Tell Python not to automatically recompile modules to .pyc/.pyo |
2599 | # Tell Python not to automatically recompile modules to .pyc/.pyo |
| 1826 | # 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 |
| 1827 | # to protect sandbox. |
2601 | # to protect sandbox. |
| 1828 | 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 | |
| 1829 | export PYTHONDONTWRITEBYTECODE="1" |
2609 | export PYTHONDONTWRITEBYTECODE="1" |
| 1830 | } |
2610 | } |
| 1831 | |
2611 | |
|
|
2612 | _python_clean_compiled_modules() { |
|
|
2613 | _python_initialize_prefix_variables |
|
|
2614 | _python_set_color_variables |
|
|
2615 | |
|
|
2616 | [[ "${FUNCNAME[1]}" =~ ^(python_mod_optimize|python_mod_cleanup)$ ]] || die "${FUNCNAME}(): Invalid usage" |
|
|
2617 | |
|
|
2618 | local base_module_name compiled_file compiled_files=() dir path py_file root |
|
|
2619 | |
|
|
2620 | # Strip trailing slash from EROOT. |
|
|
2621 | root="${EROOT%/}" |
|
|
2622 | |
|
|
2623 | for path in "$@"; do |
|
|
2624 | compiled_files=() |
|
|
2625 | if [[ -d "${path}" ]]; then |
|
|
2626 | while read -d $'\0' -r compiled_file; do |
|
|
2627 | compiled_files+=("${compiled_file}") |
|
|
2628 | done < <(find "${path}" "(" -name "*.py[co]" -o -name "*\$py.class" ")" -print0) |
|
|
2629 | |
|
|
2630 | if [[ "${EBUILD_PHASE}" == "postrm" ]]; then |
|
|
2631 | # Delete empty child directories. |
|
|
2632 | find "${path}" -type d | sort -r | while read -r dir; do |
|
|
2633 | if rmdir "${dir}" 2> /dev/null; then |
|
|
2634 | echo "${_CYAN}<<< ${dir}${_NORMAL}" |
|
|
2635 | fi |
|
|
2636 | done |
|
|
2637 | fi |
|
|
2638 | elif [[ "${path}" == *.py ]]; then |
|
|
2639 | base_module_name="${path##*/}" |
|
|
2640 | base_module_name="${base_module_name%.py}" |
|
|
2641 | if [[ -d "${path%/*}/__pycache__" ]]; then |
|
|
2642 | while read -d $'\0' -r compiled_file; do |
|
|
2643 | compiled_files+=("${compiled_file}") |
|
|
2644 | done < <(find "${path%/*}/__pycache__" "(" -name "${base_module_name}.*.py[co]" -o -name "${base_module_name}\$py.class" ")" -print0) |
|
|
2645 | fi |
|
|
2646 | compiled_files+=("${path}c" "${path}o" "${path%.py}\$py.class") |
|
|
2647 | fi |
|
|
2648 | |
|
|
2649 | for compiled_file in "${compiled_files[@]}"; do |
|
|
2650 | [[ ! -f "${compiled_file}" ]] && continue |
|
|
2651 | dir="${compiled_file%/*}" |
|
|
2652 | dir="${dir##*/}" |
|
|
2653 | if [[ "${compiled_file}" == *.py[co] ]]; then |
|
|
2654 | if [[ "${dir}" == "__pycache__" ]]; then |
|
|
2655 | base_module_name="${compiled_file##*/}" |
|
|
2656 | base_module_name="${base_module_name%.*py[co]}" |
|
|
2657 | base_module_name="${base_module_name%.*}" |
|
|
2658 | py_file="${compiled_file%__pycache__/*}${base_module_name}.py" |
|
|
2659 | else |
|
|
2660 | py_file="${compiled_file%[co]}" |
|
|
2661 | fi |
|
|
2662 | if [[ "${EBUILD_PHASE}" == "postinst" ]]; then |
|
|
2663 | [[ -f "${py_file}" && "${compiled_file}" -nt "${py_file}" ]] && continue |
|
|
2664 | else |
|
|
2665 | [[ -f "${py_file}" ]] && continue |
|
|
2666 | fi |
|
|
2667 | echo "${_BLUE}<<< ${compiled_file%[co]}[co]${_NORMAL}" |
|
|
2668 | rm -f "${compiled_file%[co]}"[co] |
|
|
2669 | elif [[ "${compiled_file}" == *\$py.class ]]; then |
|
|
2670 | if [[ "${dir}" == "__pycache__" ]]; then |
|
|
2671 | base_module_name="${compiled_file##*/}" |
|
|
2672 | base_module_name="${base_module_name%\$py.class}" |
|
|
2673 | py_file="${compiled_file%__pycache__/*}${base_module_name}.py" |
|
|
2674 | else |
|
|
2675 | py_file="${compiled_file%\$py.class}.py" |
|
|
2676 | fi |
|
|
2677 | if [[ "${EBUILD_PHASE}" == "postinst" ]]; then |
|
|
2678 | [[ -f "${py_file}" && "${compiled_file}" -nt "${py_file}" ]] && continue |
|
|
2679 | else |
|
|
2680 | [[ -f "${py_file}" ]] && continue |
|
|
2681 | fi |
|
|
2682 | echo "${_BLUE}<<< ${compiled_file}${_NORMAL}" |
|
|
2683 | rm -f "${compiled_file}" |
|
|
2684 | else |
|
|
2685 | die "${FUNCNAME}(): Unrecognized file type: '${compiled_file}'" |
|
|
2686 | fi |
|
|
2687 | |
|
|
2688 | # Delete empty parent directories. |
|
|
2689 | dir="${compiled_file%/*}" |
|
|
2690 | while [[ "${dir}" != "${root}" ]]; do |
|
|
2691 | if rmdir "${dir}" 2> /dev/null; then |
|
|
2692 | echo "${_CYAN}<<< ${dir}${_NORMAL}" |
|
|
2693 | else |
|
|
2694 | break |
|
|
2695 | fi |
|
|
2696 | dir="${dir%/*}" |
|
|
2697 | done |
|
|
2698 | done |
|
|
2699 | done |
|
|
2700 | } |
|
|
2701 | |
| 1832 | # @FUNCTION: python_mod_optimize |
2702 | # @FUNCTION: python_mod_optimize |
| 1833 | # @USAGE: [options] [directory|file] |
2703 | # @USAGE: [--allow-evaluated-non-sitedir-paths] [-d directory] [-f] [-l] [-q] [-x regular_expression] [--] <file|directory> [files|directories] |
| 1834 | # @DESCRIPTION: |
2704 | # @DESCRIPTION: |
| 1835 | # If no arguments supplied, it will recompile not recursively all modules |
2705 | # Byte-compile specified Python modules. |
| 1836 | # under sys.path (eg. /usr/lib/python2.6, /usr/lib/python2.6/site-packages). |
|
|
| 1837 | # |
|
|
| 1838 | # If supplied with arguments, it will recompile all modules recursively |
|
|
| 1839 | # in the supplied directory. |
|
|
| 1840 | # |
|
|
| 1841 | # 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. |
| 1842 | # |
2707 | # |
| 1843 | # This function can be used only in pkg_postinst() phase. |
2708 | # This function can be used only in pkg_postinst() phase. |
| 1844 | 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 |
| 1845 | _python_initialize_prefix_variables |
2715 | _python_initialize_prefix_variables |
| 1846 | |
2716 | |
| 1847 | # 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 |
| 1848 | [[ "${EBUILD_PHASE}" != "postinst" ]] && die "${FUNCNAME}() can be used only in pkg_postinst() phase" |
2718 | # PYTHON_ABI variable cannot be local in packages not supporting installation for multiple Python ABIs. |
|
|
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 |
| 1849 | |
2720 | |
| 1850 | if ! has "${EAPI:-0}" 0 1 2 || _python_package_supporting_installation_for_multiple_python_abis; then |
2721 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| 1851 | local dir file options=() other_dirs=() other_files=() previous_PYTHON_ABI="${PYTHON_ABI}" PYTHON_ABI="${PYTHON_ABI}" return_code root site_packages_absolute_dirs=() site_packages_dirs=() site_packages_absolute_files=() site_packages_files=() |
2722 | if has "${EAPI:-0}" 0 1 2 3 && [[ -z "${PYTHON_ABIS}" ]]; then |
|
|
2723 | die "${FUNCNAME}(): python_pkg_setup() or python_execute_function() not called" |
|
|
2724 | fi |
|
|
2725 | iterated_PYTHON_ABIS="${PYTHON_ABIS}" |
|
|
2726 | else |
|
|
2727 | if has "${EAPI:-0}" 0 1 2 3; then |
|
|
2728 | iterated_PYTHON_ABIS="${PYTHON_ABI:=$(PYTHON --ABI)}" |
|
|
2729 | else |
|
|
2730 | iterated_PYTHON_ABIS="${PYTHON_ABI}" |
|
|
2731 | fi |
|
|
2732 | fi |
| 1852 | |
2733 | |
| 1853 | # Strip trailing slash from ROOT. |
2734 | # Strip trailing slash from EROOT. |
| 1854 | root="${EROOT%/}" |
2735 | root="${EROOT%/}" |
| 1855 | |
2736 | |
| 1856 | # Respect ROOT and options passed to compileall.py. |
|
|
| 1857 | while (($#)); do |
2737 | while (($#)); do |
| 1858 | case "$1" in |
2738 | case "$1" in |
|
|
2739 | --allow-evaluated-non-sitedir-paths) |
|
|
2740 | allow_evaluated_non_sitedir_paths="1" |
|
|
2741 | ;; |
| 1859 | -l|-f|-q) |
2742 | -l|-f|-q) |
| 1860 | options+=("$1") |
2743 | options+=("$1") |
| 1861 | ;; |
2744 | ;; |
| 1862 | -d|-x) |
2745 | -d|-x) |
| 1863 | options+=("$1" "$2") |
2746 | options+=("$1" "$2") |
| 1864 | shift |
2747 | shift |
| 1865 | ;; |
2748 | ;; |
|
|
2749 | --) |
|
|
2750 | shift |
|
|
2751 | break |
|
|
2752 | ;; |
| 1866 | -*) |
2753 | -*) |
| 1867 | ewarn "${FUNCNAME}(): Ignoring option '$1'" |
2754 | die "${FUNCNAME}(): Unrecognized option '$1'" |
| 1868 | ;; |
2755 | ;; |
| 1869 | *) |
2756 | *) |
| 1870 | if ! _python_implementation && [[ "$1" =~ ^"${EPREFIX}"/usr/lib(32|64)?/python[[:digit:]]+\.[[:digit:]]+ ]]; then |
|
|
| 1871 | die "${FUNCNAME}() does not support absolute paths of directories/files in site-packages directories" |
|
|
| 1872 | elif [[ "$1" =~ ^/ ]]; then |
|
|
| 1873 | if [[ -d "${root}/$1" ]]; then |
|
|
| 1874 | other_dirs+=("${root}/$1") |
|
|
| 1875 | elif [[ -f "${root}/$1" ]]; then |
|
|
| 1876 | other_files+=("${root}/$1") |
|
|
| 1877 | elif [[ -e "${root}/$1" ]]; then |
|
|
| 1878 | ewarn "'${root}/$1' is not a file or a directory!" |
|
|
| 1879 | else |
|
|
| 1880 | ewarn "'${root}/$1' does not exist!" |
|
|
| 1881 | fi |
|
|
| 1882 | else |
|
|
| 1883 | for PYTHON_ABI in ${PYTHON_ABIS-${PYTHON_ABI:-$(PYTHON --ABI)}}; do |
|
|
| 1884 | if [[ -d "${root}$(python_get_sitedir)/$1" ]]; then |
|
|
| 1885 | site_packages_dirs+=("$1") |
|
|
| 1886 | break |
2757 | break |
| 1887 | elif [[ -f "${root}$(python_get_sitedir)/$1" ]]; then |
|
|
| 1888 | site_packages_files+=("$1") |
|
|
| 1889 | break |
|
|
| 1890 | elif [[ -e "${root}$(python_get_sitedir)/$1" ]]; then |
|
|
| 1891 | ewarn "'$1' is not a file or a directory!" |
|
|
| 1892 | else |
|
|
| 1893 | ewarn "'$1' does not exist!" |
|
|
| 1894 | fi |
|
|
| 1895 | done |
|
|
| 1896 | fi |
|
|
| 1897 | ;; |
2758 | ;; |
| 1898 | esac |
2759 | esac |
| 1899 | shift |
2760 | shift |
| 1900 | done |
2761 | done |
| 1901 | |
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 | |
|
|
2767 | if [[ "$#" -eq 0 ]]; then |
|
|
2768 | die "${FUNCNAME}(): Missing files or directories" |
|
|
2769 | fi |
|
|
2770 | |
|
|
2771 | while (($#)); do |
|
|
2772 | if [[ "$1" =~ ^($|(\.|\.\.|/)($|/)) ]]; then |
|
|
2773 | die "${FUNCNAME}(): Invalid argument '$1'" |
|
|
2774 | elif ! _python_implementation && [[ "$1" =~ ^/usr/lib(32|64)?/python[[:digit:]]+\.[[:digit:]]+ ]]; then |
|
|
2775 | die "${FUNCNAME}(): Paths of directories / files in site-packages directories must be relative to site-packages directories" |
|
|
2776 | elif [[ "$1" =~ ^/ ]]; then |
|
|
2777 | if _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
2778 | if [[ "${allow_evaluated_non_sitedir_paths}" != "1" ]]; then |
|
|
2779 | die "${FUNCNAME}(): Absolute paths cannot be used in ebuilds of packages supporting installation for multiple Python ABIs" |
|
|
2780 | fi |
|
|
2781 | if [[ "$1" != *\$* ]]; then |
|
|
2782 | die "${FUNCNAME}(): '$1' has invalid syntax" |
|
|
2783 | fi |
|
|
2784 | if [[ "$1" == *.py ]]; then |
|
|
2785 | evaluated_files+=("$1") |
|
|
2786 | else |
|
|
2787 | evaluated_dirs+=("$1") |
|
|
2788 | fi |
|
|
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 |
|
|
2797 | eerror "${FUNCNAME}(): '${root}$1' does not exist" |
|
|
2798 | fi |
|
|
2799 | fi |
|
|
2800 | else |
|
|
2801 | for PYTHON_ABI in ${iterated_PYTHON_ABIS}; do |
|
|
2802 | if [[ -d "${root}$(python_get_sitedir)/$1" ]]; then |
|
|
2803 | site_packages_dirs+=("$1") |
|
|
2804 | break |
|
|
2805 | elif [[ -f "${root}$(python_get_sitedir)/$1" ]]; then |
|
|
2806 | site_packages_files+=("$1") |
|
|
2807 | break |
|
|
2808 | elif [[ -e "${root}$(python_get_sitedir)/$1" ]]; then |
|
|
2809 | eerror "${FUNCNAME}(): '$1' is not a regular file or a directory" |
|
|
2810 | else |
|
|
2811 | eerror "${FUNCNAME}(): '$1' does not exist" |
|
|
2812 | fi |
|
|
2813 | done |
|
|
2814 | fi |
|
|
2815 | shift |
|
|
2816 | done |
|
|
2817 | |
| 1902 | # Set additional options. |
2818 | # Set additional options. |
| 1903 | options+=("-q") |
2819 | options+=("-q") |
| 1904 | |
2820 | |
| 1905 | for PYTHON_ABI in ${PYTHON_ABIS-${PYTHON_ABI:-$(PYTHON --ABI)}}; do |
2821 | for PYTHON_ABI in ${iterated_PYTHON_ABIS}; do |
| 1906 | if ((${#site_packages_dirs[@]})) || ((${#site_packages_files[@]})); then |
2822 | if ((${#site_packages_dirs[@]})) || ((${#site_packages_files[@]})) || ((${#evaluated_dirs[@]})) || ((${#evaluated_files[@]})); then |
| 1907 | return_code="0" |
2823 | return_code="0" |
|
|
2824 | stderr="" |
| 1908 | 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)" |
| 1909 | if ((${#site_packages_dirs[@]})); then |
2826 | if ((${#site_packages_dirs[@]})) || ((${#evaluated_dirs[@]})); then |
| 1910 | for dir in "${site_packages_dirs[@]}"; do |
2827 | for dir in "${site_packages_dirs[@]}"; do |
| 1911 | site_packages_absolute_dirs+=("${root}$(python_get_sitedir)/${dir}") |
2828 | dirs+=("${root}$(python_get_sitedir)/${dir}") |
| 1912 | done |
2829 | done |
| 1913 | "$(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" |
| 1914 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" != "Jython" ]]; then |
2834 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" != "Jython" ]]; then |
| 1915 | "$(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" |
| 1916 | fi |
2836 | fi |
|
|
2837 | _python_clean_compiled_modules "${dirs[@]}" |
| 1917 | fi |
2838 | fi |
| 1918 | if ((${#site_packages_files[@]})); then |
2839 | if ((${#site_packages_files[@]})) || ((${#evaluated_files[@]})); then |
| 1919 | for file in "${site_packages_files[@]}"; do |
2840 | for file in "${site_packages_files[@]}"; do |
| 1920 | site_packages_absolute_files+=("${root}$(python_get_sitedir)/${file}") |
2841 | files+=("${root}$(python_get_sitedir)/${file}") |
| 1921 | done |
2842 | done |
| 1922 | "$(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" |
| 1923 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" != "Jython" ]]; then |
2847 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" != "Jython" ]]; then |
| 1924 | "$(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" |
| 1925 | fi |
2849 | fi |
|
|
2850 | _python_clean_compiled_modules "${files[@]}" |
| 1926 | fi |
2851 | fi |
| 1927 | 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}" |
| 1928 | fi |
2858 | fi |
| 1929 | unset site_packages_absolute_dirs site_packages_absolute_files |
2859 | fi |
|
|
2860 | unset dirs files |
| 1930 | done |
2861 | done |
| 1931 | |
2862 | |
|
|
2863 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| 1932 | # Restore previous value of PYTHON_ABI. |
2864 | # Restore previous value of PYTHON_ABI. |
| 1933 | if [[ -n "${previous_PYTHON_ABI}" ]]; then |
2865 | if [[ -n "${previous_PYTHON_ABI}" ]]; then |
| 1934 | PYTHON_ABI="${previous_PYTHON_ABI}" |
2866 | PYTHON_ABI="${previous_PYTHON_ABI}" |
| 1935 | else |
2867 | else |
| 1936 | unset PYTHON_ABI |
2868 | unset PYTHON_ABI |
|
|
2869 | fi |
| 1937 | fi |
2870 | fi |
| 1938 | |
2871 | |
| 1939 | if ((${#other_dirs[@]})) || ((${#other_files[@]})); then |
2872 | if ((${#other_dirs[@]})) || ((${#other_files[@]})); then |
| 1940 | return_code="0" |
2873 | return_code="0" |
|
|
2874 | stderr="" |
| 1941 | 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)" |
| 1942 | if ((${#other_dirs[@]})); then |
2876 | if ((${#other_dirs[@]})); then |
| 1943 | "$(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" |
| 1944 | if [[ "$(_python_get_implementation "${PYTHON_ABI-$(PYTHON --ABI)}")" != "Jython" ]]; then |
2878 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" != "Jython" ]]; then |
| 1945 | "$(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" |
| 1946 | fi |
2880 | fi |
|
|
2881 | _python_clean_compiled_modules "${other_dirs[@]}" |
| 1947 | fi |
2882 | fi |
| 1948 | if ((${#other_files[@]})); then |
2883 | if ((${#other_files[@]})); then |
| 1949 | "$(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" |
| 1950 | if [[ "$(_python_get_implementation "${PYTHON_ABI-$(PYTHON --ABI)}")" != "Jython" ]]; then |
2885 | if [[ "$(_python_get_implementation "${PYTHON_ABI}")" != "Jython" ]]; then |
| 1951 | "$(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" |
| 1952 | fi |
2887 | fi |
|
|
2888 | _python_clean_compiled_modules "${other_files[@]}" |
| 1953 | fi |
2889 | fi |
| 1954 | 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}" |
| 1955 | fi |
2896 | fi |
|
|
2897 | fi |
| 1956 | else |
2898 | else |
|
|
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 |
|
|
2906 | |
| 1957 | local myroot mydirs=() myfiles=() myopts=() return_code="0" |
2907 | local myroot mydirs=() myfiles=() myopts=() return_code="0" |
| 1958 | |
2908 | |
| 1959 | # strip trailing slash |
2909 | # strip trailing slash |
| 1960 | myroot="${EROOT%/}" |
2910 | myroot="${EROOT%/}" |
| 1961 | |
2911 | |
| 1962 | # respect ROOT and options passed to compileall.py |
2912 | # respect EROOT and options passed to compileall.py |
| 1963 | while (($#)); do |
2913 | while (($#)); do |
| 1964 | case "$1" in |
2914 | case "$1" in |
| 1965 | -l|-f|-q) |
2915 | -l|-f|-q) |
| 1966 | myopts+=("$1") |
2916 | myopts+=("$1") |
| 1967 | ;; |
2917 | ;; |
| 1968 | -d|-x) |
2918 | -d|-x) |
| 1969 | myopts+=("$1" "$2") |
2919 | myopts+=("$1" "$2") |
| 1970 | shift |
2920 | shift |
| 1971 | ;; |
2921 | ;; |
|
|
2922 | --) |
|
|
2923 | shift |
|
|
2924 | break |
|
|
2925 | ;; |
| 1972 | -*) |
2926 | -*) |
| 1973 | ewarn "${FUNCNAME}(): Ignoring option '$1'" |
2927 | die "${FUNCNAME}(): Unrecognized option '$1'" |
| 1974 | ;; |
2928 | ;; |
| 1975 | *) |
2929 | *) |
| 1976 | if [[ -d "${myroot}"/$1 ]]; then |
2930 | break |
| 1977 | mydirs+=("${myroot}/$1") |
|
|
| 1978 | elif [[ -f "${myroot}"/$1 ]]; then |
|
|
| 1979 | # Files are passed to python_mod_compile which is ROOT-aware |
|
|
| 1980 | myfiles+=("$1") |
|
|
| 1981 | elif [[ -e "${myroot}/$1" ]]; then |
|
|
| 1982 | ewarn "${myroot}/$1 is not a file or directory!" |
|
|
| 1983 | else |
|
|
| 1984 | ewarn "${myroot}/$1 does not exist!" |
|
|
| 1985 | fi |
|
|
| 1986 | ;; |
2931 | ;; |
| 1987 | esac |
2932 | esac |
| 1988 | shift |
2933 | shift |
| 1989 | done |
2934 | done |
| 1990 | |
2935 | |
|
|
2936 | if [[ "$#" -eq 0 ]]; then |
|
|
2937 | die "${FUNCNAME}(): Missing files or directories" |
|
|
2938 | fi |
|
|
2939 | |
|
|
2940 | while (($#)); do |
|
|
2941 | if [[ "$1" =~ ^($|(\.|\.\.|/)($|/)) ]]; then |
|
|
2942 | die "${FUNCNAME}(): Invalid argument '$1'" |
|
|
2943 | elif [[ -d "${myroot}/${1#/}" ]]; then |
|
|
2944 | mydirs+=("${myroot}/${1#/}") |
|
|
2945 | elif [[ -f "${myroot}/${1#/}" ]]; then |
|
|
2946 | myfiles+=("${myroot}/${1#/}") |
|
|
2947 | elif [[ -e "${myroot}/${1#/}" ]]; then |
|
|
2948 | eerror "${FUNCNAME}(): ${myroot}/${1#/} is not a regular file or directory" |
|
|
2949 | else |
|
|
2950 | eerror "${FUNCNAME}(): ${myroot}/${1#/} does not exist" |
|
|
2951 | fi |
|
|
2952 | shift |
|
|
2953 | done |
|
|
2954 | |
| 1991 | # set additional opts |
2955 | # set additional opts |
| 1992 | myopts+=(-q) |
2956 | myopts+=(-q) |
|
|
2957 | |
|
|
2958 | PYTHON_ABI="${PYTHON_ABI:-$(PYTHON --ABI)}" |
| 1993 | |
2959 | |
| 1994 | ebegin "Compilation and optimization of Python modules for $(python_get_implementation) $(python_get_version)" |
2960 | ebegin "Compilation and optimization of Python modules for $(python_get_implementation) $(python_get_version)" |
| 1995 | if ((${#mydirs[@]})); then |
2961 | if ((${#mydirs[@]})); then |
| 1996 | "$(PYTHON ${PYTHON_ABI})" "${myroot}$(python_get_libdir)/compileall.py" "${myopts[@]}" "${mydirs[@]}" || return_code="1" |
2962 | "$(PYTHON ${PYTHON_ABI})" "${myroot}$(python_get_libdir)/compileall.py" "${myopts[@]}" "${mydirs[@]}" || return_code="1" |
| 1997 | "$(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" |
|
|
2964 | _python_clean_compiled_modules "${mydirs[@]}" |
| 1998 | fi |
2965 | fi |
| 1999 | |
2966 | |
| 2000 | 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" |
| 2001 | python_mod_compile "${myfiles[@]}" |
2970 | _python_clean_compiled_modules "${myfiles[@]}" |
| 2002 | fi |
2971 | fi |
| 2003 | |
2972 | |
| 2004 | eend "${return_code}" |
2973 | eend "${return_code}" |
| 2005 | fi |
2974 | fi |
| 2006 | } |
2975 | } |
| 2007 | |
2976 | |
| 2008 | # @FUNCTION: python_mod_cleanup |
2977 | # @FUNCTION: python_mod_cleanup |
| 2009 | # @USAGE: [directory|file] |
2978 | # @USAGE: [--allow-evaluated-non-sitedir-paths] [--] <file|directory> [files|directories] |
| 2010 | # @DESCRIPTION: |
2979 | # @DESCRIPTION: |
| 2011 | # Run with optional arguments, where arguments are Python modules. If none given, |
2980 | # Delete orphaned byte-compiled Python modules corresponding to specified Python modules. |
| 2012 | # it will look in /usr/lib/python[0-9].[0-9]. |
|
|
| 2013 | # |
|
|
| 2014 | # It will recursively scan all compiled Python modules in the directories and |
|
|
| 2015 | # determine if they are orphaned (i.e. their corresponding .py files are missing.) |
|
|
| 2016 | # If they are, then it will remove their corresponding .pyc and .pyo files. |
|
|
| 2017 | # |
2981 | # |
| 2018 | # This function can be used only in pkg_postrm() phase. |
2982 | # This function can be used only in pkg_postrm() phase. |
| 2019 | 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 |
| 2020 | _python_initialize_prefix_variables |
2989 | _python_initialize_prefix_variables |
| 2021 | _python_set_color_variables |
|
|
| 2022 | |
2990 | |
| 2023 | local path py_file PYTHON_ABI="${PYTHON_ABI}" SEARCH_PATH=() root |
2991 | local allow_evaluated_non_sitedir_paths="0" dir iterated_PYTHON_ABIS PYTHON_ABI="${PYTHON_ABI}" root search_paths=() sitedir |
| 2024 | |
2992 | |
| 2025 | # Check if phase is pkg_postrm(). |
2993 | if _python_package_supporting_installation_for_multiple_python_abis; then |
| 2026 | [[ "${EBUILD_PHASE}" != "postrm" ]] && die "${FUNCNAME}() can be used only in pkg_postrm() phase" |
2994 | if has "${EAPI:-0}" 0 1 2 3 && [[ -z "${PYTHON_ABIS}" ]]; then |
|
|
2995 | die "${FUNCNAME}(): python_pkg_setup() or python_execute_function() not called" |
|
|
2996 | fi |
|
|
2997 | iterated_PYTHON_ABIS="${PYTHON_ABIS}" |
|
|
2998 | else |
|
|
2999 | if has "${EAPI:-0}" 0 1 2 3; then |
|
|
3000 | iterated_PYTHON_ABIS="${PYTHON_ABI:-$(PYTHON --ABI)}" |
|
|
3001 | else |
|
|
3002 | iterated_PYTHON_ABIS="${PYTHON_ABI}" |
|
|
3003 | fi |
|
|
3004 | fi |
| 2027 | |
3005 | |
| 2028 | # Strip trailing slash from ROOT. |
3006 | # Strip trailing slash from EROOT. |
| 2029 | root="${EROOT%/}" |
3007 | root="${EROOT%/}" |
| 2030 | |
3008 | |
| 2031 | if (($#)); then |
3009 | while (($#)); do |
| 2032 | if ! has "${EAPI:-0}" 0 1 2 || _python_package_supporting_installation_for_multiple_python_abis; then |
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 | |
|
|
3032 | if [[ "$#" -eq 0 ]]; 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 |
| 2033 | while (($#)); do |
3037 | while (($#)); do |
|
|
3038 | if [[ "$1" =~ ^($|(\.|\.\.|/)($|/)) ]]; then |
|
|
3039 | die "${FUNCNAME}(): Invalid argument '$1'" |
| 2034 | if ! _python_implementation && [[ "$1" =~ ^"${EPREFIX}"/usr/lib(32|64)?/python[[:digit:]]+\.[[:digit:]]+ ]]; then |
3040 | elif ! _python_implementation && [[ "$1" =~ ^/usr/lib(32|64)?/python[[:digit:]]+\.[[:digit:]]+ ]]; then |
| 2035 | die "${FUNCNAME}() does not support absolute paths of directories/files in site-packages directories" |
3041 | die "${FUNCNAME}(): Paths of directories / files in site-packages directories must be relative to site-packages directories" |
| 2036 | elif [[ "$1" =~ ^/ ]]; then |
3042 | elif [[ "$1" =~ ^/ ]]; then |
| 2037 | SEARCH_PATH+=("${root}/${1#/}") |
3043 | if _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
3044 | if [[ "${allow_evaluated_non_sitedir_paths}" != "1" ]]; then |
|
|
3045 | die "${FUNCNAME}(): Absolute paths cannot be used in ebuilds of packages supporting installation for multiple Python ABIs" |
|
|
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 |
| 2038 | else |
3053 | else |
| 2039 | for PYTHON_ABI in ${PYTHON_ABIS-${PYTHON_ABI:-$(PYTHON --ABI)}}; do |
3054 | search_paths+=("${root}$1") |
| 2040 | SEARCH_PATH+=("${root}$(python_get_sitedir)/$1") |
|
|
| 2041 | done |
|
|
| 2042 | fi |
|
|
| 2043 | shift |
|
|
| 2044 | done |
|
|
| 2045 | else |
|
|
| 2046 | SEARCH_PATH=("${@#/}") |
|
|
| 2047 | SEARCH_PATH=("${SEARCH_PATH[@]/#/${root}/}") |
|
|
| 2048 | fi |
|
|
| 2049 | else |
|
|
| 2050 | local dir sitedir |
|
|
| 2051 | for dir in "${root}"/usr/lib*; do |
|
|
| 2052 | if [[ -d "${dir}" && ! -L "${dir}" ]]; then |
|
|
| 2053 | for sitedir in "${dir}"/python*/site-packages; do |
|
|
| 2054 | if [[ -d "${sitedir}" ]]; then |
|
|
| 2055 | SEARCH_PATH+=("${sitedir}") |
|
|
| 2056 | fi |
3055 | fi |
|
|
3056 | else |
|
|
3057 | for PYTHON_ABI in ${iterated_PYTHON_ABIS}; do |
|
|
3058 | search_paths+=("${root}$(python_get_sitedir)/$1") |
| 2057 | done |
3059 | done |
| 2058 | fi |
3060 | fi |
|
|
3061 | shift |
| 2059 | done |
3062 | done |
| 2060 | for sitedir in "${root}"/usr/share/jython-*/Lib/site-packages; do |
3063 | else |
| 2061 | if [[ -d "${sitedir}" ]]; then |
3064 | # Deprecated part of python_mod_cleanup() |
| 2062 | SEARCH_PATH+=("${sitedir}") |
3065 | ewarn |
| 2063 | fi |
3066 | ewarn "Deprecation Warning: Usage of ${FUNCNAME}() in packages not supporting installation" |
| 2064 | done |
3067 | ewarn "for multiple Python ABIs in EAPI <=2 is deprecated and will be disallowed on 2011-08-01." |
| 2065 | fi |
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 |
| 2066 | |
3071 | |
| 2067 | for path in "${SEARCH_PATH[@]}"; do |
3072 | search_paths=("${@#/}") |
| 2068 | if [[ -d "${path}" ]]; then |
3073 | search_paths=("${search_paths[@]/#/${root}/}") |
| 2069 | find "${path}" "(" -name "*.py[co]" -o -name "*\$py.class" ")" -print0 | while read -rd ''; do |
|
|
| 2070 | if [[ "${REPLY}" == *[co] ]]; then |
|
|
| 2071 | py_file="${REPLY%[co]}" |
|
|
| 2072 | [[ -f "${py_file}" || (! -f "${py_file}c" && ! -f "${py_file}o") ]] && continue |
|
|
| 2073 | echo "${_BLUE}<<< ${py_file}[co]${_NORMAL}" |
|
|
| 2074 | rm -f "${py_file}"[co] |
|
|
| 2075 | elif [[ "${REPLY}" == *\$py.class ]]; then |
|
|
| 2076 | py_file="${REPLY%\$py.class}.py" |
|
|
| 2077 | [[ -f "${py_file}" || ! -f "${py_file%.py}\$py.class" ]] && continue |
|
|
| 2078 | echo "${_BLUE}<<< ${py_file%.py}\$py.class${_NORMAL}" |
|
|
| 2079 | rm -f "${py_file%.py}\$py.class" |
|
|
| 2080 | fi |
|
|
| 2081 | done |
|
|
| 2082 | |
|
|
| 2083 | # Attempt to delete directories, which may be empty. |
|
|
| 2084 | find "${path}" -type d | sort -r | while read -r dir; do |
|
|
| 2085 | rmdir "${dir}" 2>/dev/null && echo "${_CYAN}<<< ${dir}${_NORMAL}" |
|
|
| 2086 | done |
|
|
| 2087 | elif [[ "${path}" == *.py && ! -f "${path}" ]]; then |
|
|
| 2088 | if [[ (-f "${path}c" || -f "${path}o") ]]; then |
|
|
| 2089 | echo "${_BLUE}<<< ${path}[co]${_NORMAL}" |
|
|
| 2090 | rm -f "${path}"[co] |
|
|
| 2091 | fi |
|
|
| 2092 | if [[ -f "${path%.py}\$py.class" ]]; then |
|
|
| 2093 | echo "${_BLUE}<<< ${path%.py}\$py.class${_NORMAL}" |
|
|
| 2094 | rm -f "${path%.py}\$py.class" |
|
|
| 2095 | fi |
|
|
| 2096 | fi |
3074 | fi |
| 2097 | done |
3075 | |
|
|
3076 | _python_clean_compiled_modules "${search_paths[@]}" |
| 2098 | } |
3077 | } |
| 2099 | |
3078 | |
| 2100 | # ================================================================================================ |
3079 | # ================================================================================================ |
| 2101 | # ===================================== DEPRECATED FUNCTIONS ===================================== |
3080 | # ===================================== DEPRECATED FUNCTIONS ===================================== |
| 2102 | # ================================================================================================ |
3081 | # ================================================================================================ |
| 2103 | |
|
|
| 2104 | # @FUNCTION: python_version |
|
|
| 2105 | # @DESCRIPTION: |
|
|
| 2106 | # Run without arguments and it will export the version of python |
|
|
| 2107 | # currently in use as $PYVER; sets PYVER/PYVER_MAJOR/PYVER_MINOR |
|
|
| 2108 | python_version() { |
|
|
| 2109 | if ! has "${EAPI:-0}" 0 1 2 || _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
| 2110 | eerror "Use PYTHON() and/or python_get_*() instead of ${FUNCNAME}()." |
|
|
| 2111 | die "${FUNCNAME}() cannot be used in this EAPI" |
|
|
| 2112 | fi |
|
|
| 2113 | |
|
|
| 2114 | _python_set_color_variables |
|
|
| 2115 | |
|
|
| 2116 | if [[ "${FUNCNAME[1]}" != "distutils_python_version" ]]; then |
|
|
| 2117 | echo |
|
|
| 2118 | echo " ${_RED}*${_NORMAL} ${_RED}Deprecation Warning: ${FUNCNAME}() is deprecated and will be banned on 2010-07-01.${_NORMAL}" |
|
|
| 2119 | echo " ${_RED}*${_NORMAL} ${_RED}Use PYTHON() instead of python variable. Use python_get_*() instead of PYVER* variables.${_NORMAL}" |
|
|
| 2120 | echo " ${_RED}*${_NORMAL} ${_RED}The ebuild needs to be fixed. Please report a bug, if it has not been already reported.${_NORMAL}" |
|
|
| 2121 | echo |
|
|
| 2122 | |
|
|
| 2123 | einfo &> /dev/null |
|
|
| 2124 | einfo "Deprecation Warning: ${FUNCNAME}() is deprecated and will be banned on 2010-07-01." &> /dev/null |
|
|
| 2125 | einfo "Use PYTHON() instead of python variable. Use python_get_*() instead of PYVER* variables." &> /dev/null |
|
|
| 2126 | einfo "The ebuild needs to be fixed. Please report a bug, if it has not been already reported." &> /dev/null |
|
|
| 2127 | einfo &> /dev/null |
|
|
| 2128 | fi |
|
|
| 2129 | |
|
|
| 2130 | [[ -n "${PYVER}" ]] && return 0 |
|
|
| 2131 | local tmpstr |
|
|
| 2132 | python="${python:-${EPREFIX}/usr/bin/python}" |
|
|
| 2133 | tmpstr="$(EPYTHON= ${python} -V 2>&1 )" |
|
|
| 2134 | export PYVER_ALL="${tmpstr#Python }" |
|
|
| 2135 | export PYVER_MAJOR="${PYVER_ALL:0:1}" |
|
|
| 2136 | export PYVER_MINOR="${PYVER_ALL:2:1}" |
|
|
| 2137 | if [[ "${PYVER_ALL:3:1}" == "." ]]; then |
|
|
| 2138 | export PYVER_MICRO="${PYVER_ALL:4}" |
|
|
| 2139 | fi |
|
|
| 2140 | export PYVER="${PYVER_MAJOR}.${PYVER_MINOR}" |
|
|
| 2141 | } |
|
|
| 2142 | |
|
|
| 2143 | # @FUNCTION: python_mod_exists |
|
|
| 2144 | # @USAGE: <module> |
|
|
| 2145 | # @DESCRIPTION: |
|
|
| 2146 | # Run with the module name as an argument. It will check if a |
|
|
| 2147 | # Python module is installed and loadable. It will return |
|
|
| 2148 | # TRUE(0) if the module exists, and FALSE(1) if the module does |
|
|
| 2149 | # not exist. |
|
|
| 2150 | # |
|
|
| 2151 | # Example: |
|
|
| 2152 | # if python_mod_exists gtk; then |
|
|
| 2153 | # echo "gtk support enabled" |
|
|
| 2154 | # fi |
|
|
| 2155 | python_mod_exists() { |
|
|
| 2156 | if ! has "${EAPI:-0}" 0 1 2 || _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
| 2157 | eerror "Use USE dependencies and/or has_version() instead of ${FUNCNAME}()." |
|
|
| 2158 | die "${FUNCNAME}() cannot be used in this EAPI" |
|
|
| 2159 | fi |
|
|
| 2160 | |
|
|
| 2161 | echo |
|
|
| 2162 | echo " ${_RED}*${_NORMAL} ${_RED}Deprecation Warning: ${FUNCNAME}() is deprecated and will be banned on 2010-07-01.${_NORMAL}" |
|
|
| 2163 | echo " ${_RED}*${_NORMAL} ${_RED}Use USE dependencies and/or has_version() instead of ${FUNCNAME}().${_NORMAL}" |
|
|
| 2164 | echo " ${_RED}*${_NORMAL} ${_RED}The ebuild needs to be fixed. Please report a bug, if it has not been already reported.${_NORMAL}" |
|
|
| 2165 | echo |
|
|
| 2166 | |
|
|
| 2167 | einfo &> /dev/null |
|
|
| 2168 | einfo "Deprecation Warning: ${FUNCNAME}() is deprecated and will be banned on 2010-07-01." &> /dev/null |
|
|
| 2169 | einfo "Use USE dependencies and/or has_version() instead of ${FUNCNAME}()." &> /dev/null |
|
|
| 2170 | einfo "The ebuild needs to be fixed. Please report a bug, if it has not been already reported." &> /dev/null |
|
|
| 2171 | einfo &> /dev/null |
|
|
| 2172 | |
|
|
| 2173 | if [[ "$#" -ne 1 ]]; then |
|
|
| 2174 | die "${FUNCNAME}() requires 1 argument" |
|
|
| 2175 | fi |
|
|
| 2176 | "$(PYTHON ${PYTHON_ABI})" -c "import $1" &> /dev/null |
|
|
| 2177 | } |
|
|
| 2178 | |
|
|
| 2179 | # @FUNCTION: python_tkinter_exists |
|
|
| 2180 | # @DESCRIPTION: |
|
|
| 2181 | # Run without arguments, checks if Python was compiled with Tkinter |
|
|
| 2182 | # support. If not, prints an error message and dies. |
|
|
| 2183 | python_tkinter_exists() { |
|
|
| 2184 | if ! has "${EAPI:-0}" 0 1 2 || _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
| 2185 | eerror "Use PYTHON_USE_WITH=\"xml\" and python_pkg_setup() instead of ${FUNCNAME}()." |
|
|
| 2186 | die "${FUNCNAME}() cannot be used in this EAPI" |
|
|
| 2187 | fi |
|
|
| 2188 | |
|
|
| 2189 | if [[ "${FUNCNAME[1]}" != "distutils_python_tkinter" ]]; then |
|
|
| 2190 | echo |
|
|
| 2191 | echo " ${_RED}*${_NORMAL} ${_RED}Deprecation Warning: ${FUNCNAME}() is deprecated and will be banned on 2010-07-01.${_NORMAL}" |
|
|
| 2192 | echo " ${_RED}*${_NORMAL} ${_RED}Use PYTHON_USE_WITH=\"xml\" and python_pkg_setup() instead of ${FUNCNAME}().${_NORMAL}" |
|
|
| 2193 | echo " ${_RED}*${_NORMAL} ${_RED}The ebuild needs to be fixed. Please report a bug, if it has not been already reported.${_NORMAL}" |
|
|
| 2194 | echo |
|
|
| 2195 | |
|
|
| 2196 | einfo &> /dev/null |
|
|
| 2197 | einfo "Deprecation Warning: ${FUNCNAME}() is deprecated and will be banned on 2010-07-01." &> /dev/null |
|
|
| 2198 | einfo "Use PYTHON_USE_WITH=\"xml\" and python_pkg_setup() instead of ${FUNCNAME}()." &> /dev/null |
|
|
| 2199 | einfo "The ebuild needs to be fixed. Please report a bug, if it has not been already reported." &> /dev/null |
|
|
| 2200 | einfo &> /dev/null |
|
|
| 2201 | fi |
|
|
| 2202 | |
|
|
| 2203 | if ! "$(PYTHON ${PYTHON_ABI})" -c "from sys import version_info |
|
|
| 2204 | if version_info[0] == 3: |
|
|
| 2205 | import tkinter |
|
|
| 2206 | else: |
|
|
| 2207 | import Tkinter" &> /dev/null; then |
|
|
| 2208 | eerror "Python needs to be rebuilt with tkinter support enabled." |
|
|
| 2209 | eerror "Add the following line to '${EPREFIX}/etc/portage/package.use' and rebuild Python" |
|
|
| 2210 | eerror "dev-lang/python tk" |
|
|
| 2211 | die "Python installed without support for tkinter" |
|
|
| 2212 | fi |
|
|
| 2213 | } |
|
|
| 2214 | |
|
|
| 2215 | # @FUNCTION: python_mod_compile |
|
|
| 2216 | # @USAGE: <file> [more files ...] |
|
|
| 2217 | # @DESCRIPTION: |
|
|
| 2218 | # Given filenames, it will pre-compile the module's .pyc and .pyo. |
|
|
| 2219 | # This function can be used only in pkg_postinst() phase. |
|
|
| 2220 | # |
|
|
| 2221 | # Example: |
|
|
| 2222 | # python_mod_compile /usr/lib/python2.3/site-packages/pygoogle.py |
|
|
| 2223 | # |
|
|
| 2224 | python_mod_compile() { |
|
|
| 2225 | if ! has "${EAPI:-0}" 0 1 2 || _python_package_supporting_installation_for_multiple_python_abis; then |
|
|
| 2226 | eerror "Use python_mod_optimize() instead of ${FUNCNAME}()." |
|
|
| 2227 | die "${FUNCNAME}() cannot be used in this EAPI" |
|
|
| 2228 | fi |
|
|
| 2229 | |
|
|
| 2230 | _python_initialize_prefix_variables |
|
|
| 2231 | |
|
|
| 2232 | local f myroot myfiles=() |
|
|
| 2233 | |
|
|
| 2234 | # Check if phase is pkg_postinst() |
|
|
| 2235 | [[ "${EBUILD_PHASE}" != "postinst" ]] && die "${FUNCNAME}() can be used only in pkg_postinst() phase" |
|
|
| 2236 | |
|
|
| 2237 | # strip trailing slash |
|
|
| 2238 | myroot="${EROOT%/}" |
|
|
| 2239 | |
|
|
| 2240 | # respect ROOT |
|
|
| 2241 | for f in "$@"; do |
|
|
| 2242 | [[ -f "${myroot}/${f}" ]] && myfiles+=("${myroot}/${f}") |
|
|
| 2243 | done |
|
|
| 2244 | |
|
|
| 2245 | if ((${#myfiles[@]})); then |
|
|
| 2246 | "$(PYTHON ${PYTHON_ABI})" "${myroot}$(python_get_libdir)/py_compile.py" "${myfiles[@]}" |
|
|
| 2247 | "$(PYTHON ${PYTHON_ABI})" -O "${myroot}$(python_get_libdir)/py_compile.py" "${myfiles[@]}" &> /dev/null |
|
|
| 2248 | else |
|
|
| 2249 | ewarn "No files to compile!" |
|
|
| 2250 | fi |
|
|
| 2251 | } |
|
|