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