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