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