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