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