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