| 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/distutils.eclass,v 1.67 2009/11/28 18:39:27 arfrever Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/distutils.eclass,v 1.74 2010/03/04 17:49:03 arfrever Exp $ |
| 4 | |
4 | |
| 5 | # @ECLASS: distutils.eclass |
5 | # @ECLASS: distutils.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # <python@gentoo.org> |
7 | # Gentoo Python Project <python@gentoo.org> |
| 8 | # |
8 | # |
| 9 | # Original author: Jon Nelson <jnelson@gentoo.org> |
9 | # Original author: Jon Nelson <jnelson@gentoo.org> |
| 10 | # @BLURB: This eclass allows easier installation of distutils-based python modules |
10 | # @BLURB: Eclass for packages with build systems using Distutils |
| 11 | # @DESCRIPTION: |
11 | # @DESCRIPTION: |
| 12 | # The distutils eclass is designed to allow easier installation of |
12 | # The distutils eclass defines phase functions for packages with build systems using Distutils. |
| 13 | # distutils-based python modules and their incorporation into |
|
|
| 14 | # the Gentoo Linux system. |
|
|
| 15 | |
13 | |
| 16 | inherit eutils multilib python |
14 | inherit multilib python |
| 17 | |
15 | |
| 18 | case "${EAPI:-0}" in |
16 | case "${EAPI:-0}" in |
| 19 | 0|1) |
17 | 0|1) |
| 20 | EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_postinst pkg_postrm |
18 | EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_postinst pkg_postrm |
| 21 | ;; |
19 | ;; |
| 22 | *) |
20 | *) |
| 23 | EXPORT_FUNCTIONS src_unpack src_prepare src_compile src_install pkg_postinst pkg_postrm |
21 | EXPORT_FUNCTIONS src_prepare src_compile src_install pkg_postinst pkg_postrm |
| 24 | ;; |
22 | ;; |
| 25 | esac |
23 | esac |
| 26 | |
24 | |
| 27 | if [[ -z "${DISTUTILS_DISABLE_PYTHON_DEPENDENCY}" ]]; then |
25 | if [[ -z "$(declare -p PYTHON_DEPEND 2> /dev/null)" ]]; then |
| 28 | DEPEND="virtual/python" |
26 | DEPEND="dev-lang/python" |
| 29 | RDEPEND="${DEPEND}" |
27 | RDEPEND="${DEPEND}" |
| 30 | fi |
28 | fi |
|
|
29 | |
|
|
30 | # 'python' variable is deprecated. Use PYTHON() instead. |
|
|
31 | if has "${EAPI:-0}" 0 1 2 && [[ -z "${SUPPORT_PYTHON_ABIS}" ]]; then |
| 31 | python="python" |
32 | python="python" |
|
|
33 | else |
|
|
34 | python="die" |
|
|
35 | fi |
| 32 | |
36 | |
| 33 | # @ECLASS-VARIABLE: DISTUTILS_USE_SEPARATE_SOURCE_DIRECTORIES |
37 | # @ECLASS-VARIABLE: DISTUTILS_USE_SEPARATE_SOURCE_DIRECTORIES |
| 34 | # @DESCRIPTION: |
38 | # @DESCRIPTION: |
| 35 | # Set this to use separate source directories for each enabled version of Python. |
39 | # Set this to use separate source directories for each enabled version of Python. |
| 36 | |
40 | |
| 37 | # @ECLASS-VARIABLE: DISTUTILS_GLOBAL_OPTIONS |
41 | # @ECLASS-VARIABLE: DISTUTILS_GLOBAL_OPTIONS |
| 38 | # @DESCRIPTION: |
42 | # @DESCRIPTION: |
| 39 | # Global options passed to setup.py. |
43 | # Global options passed to setup.py. |
| 40 | |
44 | |
|
|
45 | # @ECLASS-VARIABLE: DISTUTILS_SRC_TEST |
|
|
46 | # @DESCRIPTION: |
|
|
47 | # Type of test command used by distutils_src_test(). |
|
|
48 | # IUSE and DEPEND are automatically adjusted, unless DISTUTILS_DISABLE_TEST_DEPENDENCY is set. |
|
|
49 | # Valid values: |
|
|
50 | # setup.py |
|
|
51 | # nosetests |
|
|
52 | # py.test |
|
|
53 | # trial [arguments] |
|
|
54 | |
|
|
55 | # @ECLASS-VARIABLE: DISTUTILS_DISABLE_TEST_DEPENDENCY |
|
|
56 | # @DESCRIPTION: |
|
|
57 | # Disable modification of IUSE and DEPEND caused by setting of DISTUTILS_SRC_TEST. |
|
|
58 | |
|
|
59 | if [[ -n "${DISTUTILS_SRC_TEST}" && ! "${DISTUTILS_SRC_TEST}" =~ ^(setup\.py|nosetests|py\.test|trial(\ .*)?)$ ]]; then |
|
|
60 | die "'DISTUTILS_SRC_TEST' variable has unsupported value '${DISTUTILS_SRC_TEST}'" |
|
|
61 | fi |
|
|
62 | |
|
|
63 | if [[ -z "${DISTUTILS_DISABLE_TEST_DEPENDENCY}" ]]; then |
|
|
64 | if [[ "${DISTUTILS_SRC_TEST}" == "nosetests" ]]; then |
|
|
65 | IUSE="test" |
|
|
66 | DEPEND+="${DEPEND:+ }test? ( dev-python/nose )" |
|
|
67 | elif [[ "${DISTUTILS_SRC_TEST}" == "py.test" ]]; then |
|
|
68 | IUSE="test" |
|
|
69 | DEPEND+="${DEPEND:+ }test? ( dev-python/py )" |
|
|
70 | # trial requires an argument, which is usually equal to "${PN}". |
|
|
71 | elif [[ "${DISTUTILS_SRC_TEST}" =~ ^trial(\ .*)?$ ]]; then |
|
|
72 | IUSE="test" |
|
|
73 | DEPEND+="${DEPEND:+ }test? ( dev-python/twisted )" |
|
|
74 | fi |
|
|
75 | fi |
|
|
76 | |
|
|
77 | if [[ -n "${DISTUTILS_SRC_TEST}" ]]; then |
|
|
78 | EXPORT_FUNCTIONS src_test |
|
|
79 | fi |
|
|
80 | |
|
|
81 | # @ECLASS-VARIABLE: DISTUTILS_DISABLE_VERSIONING_OF_PYTHON_SCRIPTS |
|
|
82 | # @DESCRIPTION: |
|
|
83 | # Set this to disable renaming of Python scripts containing versioned shebangs |
|
|
84 | # and generation of wrapper scripts. |
|
|
85 | |
|
|
86 | # @ECLASS-VARIABLE: DISTUTILS_NONVERSIONED_PYTHON_SCRIPTS |
|
|
87 | # @DESCRIPTION: |
|
|
88 | # List of paths to Python scripts, relative to ${ED}, which are excluded from |
|
|
89 | # renaming and generation of wrapper scripts. |
|
|
90 | |
| 41 | # @ECLASS-VARIABLE: DOCS |
91 | # @ECLASS-VARIABLE: DOCS |
| 42 | # @DESCRIPTION: |
92 | # @DESCRIPTION: |
| 43 | # Additional DOCS |
93 | # Additional documentation files installed by distutils_src_install(). |
|
|
94 | |
|
|
95 | _distutils_get_build_dir() { |
|
|
96 | if [[ -n "${SUPPORT_PYTHON_ABIS}" && -z "${DISTUTILS_USE_SEPARATE_SOURCE_DIRECTORIES}" ]]; then |
|
|
97 | echo "build-${PYTHON_ABI}" |
|
|
98 | else |
|
|
99 | echo "build" |
|
|
100 | fi |
|
|
101 | } |
|
|
102 | |
|
|
103 | _distutils_get_PYTHONPATH() { |
|
|
104 | if [[ -n "${SUPPORT_PYTHON_ABIS}" && -z "${DISTUTILS_USE_SEPARATE_SOURCE_DIRECTORIES}" ]]; then |
|
|
105 | ls -d build-${PYTHON_ABI}/lib* 2> /dev/null |
|
|
106 | else |
|
|
107 | ls -d build/lib* 2> /dev/null |
|
|
108 | fi |
|
|
109 | } |
| 44 | |
110 | |
| 45 | _distutils_hook() { |
111 | _distutils_hook() { |
| 46 | if [[ "$#" -ne 1 ]]; then |
112 | if [[ "$#" -ne 1 ]]; then |
| 47 | die "${FUNCNAME}() requires 1 argument" |
113 | die "${FUNCNAME}() requires 1 argument" |
| 48 | fi |
114 | fi |
| … | |
… | |
| 51 | fi |
117 | fi |
| 52 | } |
118 | } |
| 53 | |
119 | |
| 54 | # @FUNCTION: distutils_src_unpack |
120 | # @FUNCTION: distutils_src_unpack |
| 55 | # @DESCRIPTION: |
121 | # @DESCRIPTION: |
| 56 | # The distutils src_unpack function, this function is exported. |
122 | # The distutils src_unpack function. This function is exported. |
| 57 | distutils_src_unpack() { |
123 | distutils_src_unpack() { |
|
|
124 | if ! has "${EAPI:-0}" 0 1; then |
|
|
125 | die "${FUNCNAME}() cannot be used in this EAPI" |
|
|
126 | fi |
|
|
127 | |
| 58 | if [[ "${EBUILD_PHASE}" != "unpack" ]]; then |
128 | if [[ "${EBUILD_PHASE}" != "unpack" ]]; then |
| 59 | die "${FUNCNAME}() can be used only in src_unpack() phase" |
129 | die "${FUNCNAME}() can be used only in src_unpack() phase" |
| 60 | fi |
130 | fi |
| 61 | |
131 | |
| 62 | unpack ${A} |
132 | unpack ${A} |
| 63 | cd "${S}" |
133 | cd "${S}" |
| 64 | |
134 | |
| 65 | has "${EAPI:-0}" 0 1 && distutils_src_prepare |
135 | distutils_src_prepare |
| 66 | } |
136 | } |
| 67 | |
137 | |
| 68 | # @FUNCTION: distutils_src_prepare |
138 | # @FUNCTION: distutils_src_prepare |
| 69 | # @DESCRIPTION: |
139 | # @DESCRIPTION: |
| 70 | # The distutils src_prepare function, this function is exported. |
140 | # The distutils src_prepare function. This function is exported. |
| 71 | distutils_src_prepare() { |
141 | distutils_src_prepare() { |
| 72 | if ! has "${EAPI:-0}" 0 1 && [[ "${EBUILD_PHASE}" != "prepare" ]]; then |
142 | if ! has "${EAPI:-0}" 0 1 && [[ "${EBUILD_PHASE}" != "prepare" ]]; then |
| 73 | die "${FUNCNAME}() can be used only in src_prepare() phase" |
143 | die "${FUNCNAME}() can be used only in src_prepare() phase" |
| 74 | fi |
144 | fi |
| 75 | |
145 | |
| 76 | # Delete ez_setup files to prevent packages from installing |
146 | # Delete ez_setup files to prevent packages from installing Setuptools on their own. |
| 77 | # Setuptools on their own. |
|
|
| 78 | local ez_setup_existence="0" |
147 | local ez_setup_existence="0" |
| 79 | [[ -d ez_setup || -f ez_setup.py ]] && ez_setup_existence="1" |
148 | [[ -d ez_setup || -f ez_setup.py ]] && ez_setup_existence="1" |
| 80 | rm -fr ez_setup* |
149 | rm -fr ez_setup* |
| 81 | if [[ "${ez_setup_existence}" == "1" ]]; then |
150 | if [[ "${ez_setup_existence}" == "1" ]]; then |
| 82 | echo "def use_setuptools(*args, **kwargs): pass" > ez_setup.py |
151 | echo "def use_setuptools(*args, **kwargs): pass" > ez_setup.py |
| 83 | fi |
152 | fi |
| 84 | |
153 | |
| 85 | # Delete distribute_setup files to prevent packages from installing |
154 | # Delete distribute_setup files to prevent packages from installing Distribute on their own. |
| 86 | # Distribute on their own. |
|
|
| 87 | local distribute_setup_existence="0" |
155 | local distribute_setup_existence="0" |
| 88 | [[ -d distribute_setup || -f distribute_setup.py ]] && distribute_setup_existence="1" |
156 | [[ -d distribute_setup || -f distribute_setup.py ]] && distribute_setup_existence="1" |
| 89 | rm -fr distribute_setup* |
157 | rm -fr distribute_setup* |
| 90 | if [[ "${distribute_setup_existence}" == "1" ]]; then |
158 | if [[ "${distribute_setup_existence}" == "1" ]]; then |
| 91 | echo "def use_setuptools(*args, **kwargs): pass" > distribute_setup.py |
159 | echo "def use_setuptools(*args, **kwargs): pass" > distribute_setup.py |
| … | |
… | |
| 96 | fi |
164 | fi |
| 97 | } |
165 | } |
| 98 | |
166 | |
| 99 | # @FUNCTION: distutils_src_compile |
167 | # @FUNCTION: distutils_src_compile |
| 100 | # @DESCRIPTION: |
168 | # @DESCRIPTION: |
| 101 | # The distutils src_compile function, this function is exported. |
169 | # The distutils src_compile function. This function is exported. |
| 102 | # In newer EAPIs this function calls distutils_src_compile_pre_hook() and |
170 | # In ebuilds of packages supporting installation for multiple versions of Python, this function |
| 103 | # distutils_src_compile_post_hook(), if they are defined. |
171 | # calls distutils_src_compile_pre_hook() and distutils_src_compile_post_hook(), if they are defined. |
| 104 | distutils_src_compile() { |
172 | distutils_src_compile() { |
| 105 | if [[ "${EBUILD_PHASE}" != "compile" ]]; then |
173 | if [[ "${EBUILD_PHASE}" != "compile" ]]; then |
| 106 | die "${FUNCNAME}() can be used only in src_compile() phase" |
174 | die "${FUNCNAME}() can be used only in src_compile() phase" |
| 107 | fi |
175 | fi |
| 108 | |
176 | |
|
|
177 | _python_set_color_variables |
|
|
178 | |
| 109 | if ! has "${EAPI:-0}" 0 1 2 || [[ -n "${SUPPORT_PYTHON_ABIS}" ]]; then |
179 | if [[ -n "${SUPPORT_PYTHON_ABIS}" ]]; then |
| 110 | if [[ -n "${DISTUTILS_USE_SEPARATE_SOURCE_DIRECTORIES}" ]]; then |
180 | distutils_building() { |
| 111 | building() { |
181 | _distutils_hook pre |
|
|
182 | |
|
|
183 | echo ${_BOLD}"$(PYTHON)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" build -b "$(_distutils_get_build_dir)" "$@"${_NORMAL} |
|
|
184 | "$(PYTHON)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" build -b "$(_distutils_get_build_dir)" "$@" || return "$?" |
|
|
185 | |
|
|
186 | _distutils_hook post |
|
|
187 | } |
|
|
188 | python_execute_function ${DISTUTILS_USE_SEPARATE_SOURCE_DIRECTORIES:+-s} distutils_building "$@" |
|
|
189 | else |
|
|
190 | echo ${_BOLD}"$(PYTHON)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" build "$@"${_NORMAL} |
|
|
191 | "$(PYTHON)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" build "$@" || die "Building failed" |
|
|
192 | fi |
|
|
193 | } |
|
|
194 | |
|
|
195 | _distutils_src_test_hook() { |
|
|
196 | if [[ "$#" -ne 1 ]]; then |
|
|
197 | die "${FUNCNAME}() requires 1 arguments" |
|
|
198 | fi |
|
|
199 | |
|
|
200 | if [[ -z "${SUPPORT_PYTHON_ABIS}" ]]; then |
|
|
201 | return |
|
|
202 | fi |
|
|
203 | |
|
|
204 | if [[ "$(type -t "distutils_src_test_pre_hook")" == "function" ]]; then |
|
|
205 | eval "python_execute_$1_pre_hook() { |
|
|
206 | distutils_src_test_pre_hook |
|
|
207 | }" |
|
|
208 | fi |
|
|
209 | |
|
|
210 | if [[ "$(type -t "distutils_src_test_post_hook")" == "function" ]]; then |
|
|
211 | eval "python_execute_$1_post_hook() { |
|
|
212 | distutils_src_test_post_hook |
|
|
213 | }" |
|
|
214 | fi |
|
|
215 | } |
|
|
216 | |
|
|
217 | # @FUNCTION: distutils_src_test |
|
|
218 | # @DESCRIPTION: |
|
|
219 | # The distutils src_test function. This function is exported, when DISTUTILS_SRC_TEST variable is set. |
|
|
220 | # In ebuilds of packages supporting installation for multiple versions of Python, this function |
|
|
221 | # calls distutils_src_test_pre_hook() and distutils_src_test_post_hook(), if they are defined. |
|
|
222 | distutils_src_test() { |
|
|
223 | _python_set_color_variables |
|
|
224 | |
|
|
225 | if [[ "${DISTUTILS_SRC_TEST}" == "setup.py" ]]; then |
|
|
226 | if [[ -n "${SUPPORT_PYTHON_ABIS}" ]]; then |
|
|
227 | distutils_testing() { |
| 112 | _distutils_hook pre |
228 | _distutils_hook pre |
| 113 | |
229 | |
| 114 | echo "$(PYTHON)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" build "$@" |
230 | echo ${_BOLD}PYTHONPATH="$(_distutils_get_PYTHONPATH)" "$(PYTHON)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" $([[ -z "${DISTUTILS_USE_SEPARATE_SOURCE_DIRECTORIES}" ]] && echo build -b "$(_distutils_get_build_dir)") test "$@"${_NORMAL} |
| 115 | "$(PYTHON)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" build "$@" || return "$?" |
231 | PYTHONPATH="$(_distutils_get_PYTHONPATH)" "$(PYTHON)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" $([[ -z "${DISTUTILS_USE_SEPARATE_SOURCE_DIRECTORIES}" ]] && echo build -b "$(_distutils_get_build_dir)") test "$@" || return "$?" |
| 116 | |
232 | |
| 117 | _distutils_hook post |
233 | _distutils_hook post |
| 118 | } |
234 | } |
| 119 | python_execute_function -s building "$@" |
235 | python_execute_function ${DISTUTILS_USE_SEPARATE_SOURCE_DIRECTORIES:+-s} distutils_testing "$@" |
| 120 | else |
236 | else |
| 121 | building() { |
237 | echo ${_BOLD}PYTHONPATH="$(_distutils_get_PYTHONPATH)" "$(PYTHON)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" test "$@"${_NORMAL} |
| 122 | _distutils_hook pre |
238 | PYTHONPATH="$(_distutils_get_PYTHONPATH)" "$(PYTHON)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" test "$@" || die "Testing failed" |
| 123 | |
|
|
| 124 | echo "$(PYTHON)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" build -b "build-${PYTHON_ABI}" "$@" |
|
|
| 125 | "$(PYTHON)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" build -b "build-${PYTHON_ABI}" "$@" || return "$?" |
|
|
| 126 | |
|
|
| 127 | _distutils_hook post |
|
|
| 128 | } |
|
|
| 129 | python_execute_function building "$@" |
|
|
| 130 | fi |
239 | fi |
|
|
240 | elif [[ "${DISTUTILS_SRC_TEST}" == "nosetests" ]]; then |
|
|
241 | _distutils_src_test_hook nosetests |
|
|
242 | |
|
|
243 | python_execute_nosetests -P '$(_distutils_get_PYTHONPATH)' ${DISTUTILS_USE_SEPARATE_SOURCE_DIRECTORIES:+-s} -- "$@" |
|
|
244 | elif [[ "${DISTUTILS_SRC_TEST}" == "py.test" ]]; then |
|
|
245 | _distutils_src_test_hook py.test |
|
|
246 | |
|
|
247 | python_execute_py.test -P '$(_distutils_get_PYTHONPATH)' ${DISTUTILS_USE_SEPARATE_SOURCE_DIRECTORIES:+-s} -- "$@" |
|
|
248 | # trial requires an argument, which is usually equal to "${PN}". |
|
|
249 | elif [[ "${DISTUTILS_SRC_TEST}" =~ ^trial(\ .*)?$ ]]; then |
|
|
250 | local trial_arguments |
|
|
251 | if [[ "${DISTUTILS_SRC_TEST}" == "trial "* ]]; then |
|
|
252 | trial_arguments="${DISTUTILS_SRC_TEST#trial }" |
| 131 | else |
253 | else |
| 132 | python_version |
254 | trial_arguments="${PN}" |
| 133 | echo "$(PYTHON "${PYVER}")" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" build "$@" |
255 | fi |
| 134 | "$(PYTHON "${PYVER}")" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" build "$@" || die "Building failed" |
256 | |
|
|
257 | _distutils_src_test_hook trial |
|
|
258 | |
|
|
259 | python_execute_trial -P '$(_distutils_get_PYTHONPATH)' ${DISTUTILS_USE_SEPARATE_SOURCE_DIRECTORIES:+-s} -- ${trial_arguments} "$@" |
|
|
260 | else |
|
|
261 | die "'DISTUTILS_SRC_TEST' variable has unsupported value '${DISTUTILS_SRC_TEST}'" |
| 135 | fi |
262 | fi |
| 136 | } |
263 | } |
| 137 | |
264 | |
| 138 | # @FUNCTION: distutils_src_install |
265 | # @FUNCTION: distutils_src_install |
| 139 | # @DESCRIPTION: |
266 | # @DESCRIPTION: |
| 140 | # The distutils src_install function, this function is exported. |
267 | # The distutils src_install function. This function is exported. |
| 141 | # In newer EAPIs this function calls distutils_src_install_pre_hook() and |
268 | # In ebuilds of packages supporting installation for multiple versions of Python, this function |
| 142 | # distutils_src_install_post_hook(), if they are defined. |
269 | # calls distutils_src_install_pre_hook() and distutils_src_install_post_hook(), if they are defined. |
| 143 | # It also installs the "standard docs" (CHANGELOG, Change*, KNOWN_BUGS, MAINTAINERS, |
270 | # It also installs some standard documentation files (AUTHORS, Change*, CHANGELOG, CONTRIBUTORS, |
| 144 | # PKG-INFO, CONTRIBUTORS, TODO, NEWS, MANIFEST*, README*, and AUTHORS) |
271 | # KNOWN_BUGS, MAINTAINERS, MANIFEST*, NEWS, PKG-INFO, README*, TODO). |
| 145 | distutils_src_install() { |
272 | distutils_src_install() { |
| 146 | if [[ "${EBUILD_PHASE}" != "install" ]]; then |
273 | if [[ "${EBUILD_PHASE}" != "install" ]]; then |
| 147 | die "${FUNCNAME}() can be used only in src_install() phase" |
274 | die "${FUNCNAME}() can be used only in src_install() phase" |
| 148 | fi |
275 | fi |
| 149 | |
276 | |
| 150 | local pylibdir |
277 | _python_initialize_prefix_variables |
|
|
278 | _python_set_color_variables |
| 151 | |
279 | |
| 152 | # Mark the package to be rebuilt after a python upgrade. |
|
|
| 153 | python_need_rebuild |
|
|
| 154 | |
|
|
| 155 | if ! has "${EAPI:-0}" 0 1 2 || [[ -n "${SUPPORT_PYTHON_ABIS}" ]]; then |
280 | if [[ -n "${SUPPORT_PYTHON_ABIS}" ]]; then |
| 156 | if [[ -n "${DISTUTILS_USE_SEPARATE_SOURCE_DIRECTORIES}" ]]; then |
281 | if [[ -z "${DISTUTILS_DISABLE_VERSIONING_OF_PYTHON_SCRIPTS}" && "${BASH_VERSINFO[0]}" -ge 4 ]]; then |
| 157 | installation() { |
282 | declare -A wrapper_scripts=() |
| 158 | _distutils_hook pre |
|
|
| 159 | |
283 | |
| 160 | # need this for python-2.5 + setuptools in cases where |
284 | rename_scripts_with_versioned_shebangs() { |
| 161 | # a package uses distutils but does not install anything |
285 | if [[ -d "${ED}usr/bin" ]]; then |
| 162 | # in site-packages. (eg. dev-java/java-config-2.x) |
286 | cd "${ED}usr/bin" |
| 163 | # - liquidx (14/08/2006) |
|
|
| 164 | pylibdir="$("$(PYTHON)" -c 'from distutils.sysconfig import get_python_lib; print(get_python_lib())')" |
|
|
| 165 | [[ -n "${pylibdir}" ]] && dodir "${pylibdir}" |
|
|
| 166 | |
287 | |
| 167 | echo "$(PYTHON)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" install --root="${D}" --no-compile "$@" |
288 | local nonversioned_file file |
| 168 | "$(PYTHON)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" install --root="${D}" --no-compile "$@" || return "$?" |
289 | for file in *; do |
| 169 | |
290 | if [[ -f "${file}" && ! "${file}" =~ [[:digit:]]+\.[[:digit:]](-jython)?+$ && "$(head -n1 "${file}")" =~ ^'#!'.*(python|jython-)[[:digit:]]+\.[[:digit:]]+ ]]; then |
| 170 | _distutils_hook post |
291 | for nonversioned_file in "${DISTUTILS_NONVERSIONED_PYTHON_SCRIPTS[@]}"; do |
|
|
292 | [[ "${nonversioned_file}" == "/usr/bin/${file}" ]] && continue 2 |
|
|
293 | done |
|
|
294 | mv "${file}" "${file}-${PYTHON_ABI}" || die "Renaming of '${file}' failed" |
|
|
295 | wrapper_scripts+=(["${ED}usr/bin/${file}"]=) |
|
|
296 | fi |
|
|
297 | done |
|
|
298 | fi |
| 171 | } |
299 | } |
| 172 | python_execute_function -s installation "$@" |
|
|
| 173 | else |
|
|
| 174 | installation() { |
|
|
| 175 | _distutils_hook pre |
|
|
| 176 | |
|
|
| 177 | # need this for python-2.5 + setuptools in cases where |
|
|
| 178 | # a package uses distutils but does not install anything |
|
|
| 179 | # in site-packages. (eg. dev-java/java-config-2.x) |
|
|
| 180 | # - liquidx (14/08/2006) |
|
|
| 181 | pylibdir="$("$(PYTHON)" -c 'from distutils.sysconfig import get_python_lib; print(get_python_lib())')" |
|
|
| 182 | [[ -n "${pylibdir}" ]] && dodir "${pylibdir}" |
|
|
| 183 | |
|
|
| 184 | echo "$(PYTHON)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" build -b "build-${PYTHON_ABI}" install --root="${D}" --no-compile "$@" |
|
|
| 185 | "$(PYTHON)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" build -b "build-${PYTHON_ABI}" install --root="${D}" --no-compile "$@" || return "$?" |
|
|
| 186 | |
|
|
| 187 | _distutils_hook post |
|
|
| 188 | } |
|
|
| 189 | python_execute_function installation "$@" |
|
|
| 190 | fi |
300 | fi |
| 191 | else |
|
|
| 192 | # need this for python-2.5 + setuptools in cases where |
|
|
| 193 | # a package uses distutils but does not install anything |
|
|
| 194 | # in site-packages. (eg. dev-java/java-config-2.x) |
|
|
| 195 | # - liquidx (14/08/2006) |
|
|
| 196 | pylibdir="$("$(PYTHON "${PYVER}")" -c 'from distutils.sysconfig import get_python_lib; print(get_python_lib())')" |
|
|
| 197 | [[ -n "${pylibdir}" ]] && dodir "${pylibdir}" |
|
|
| 198 | |
301 | |
|
|
302 | distutils_installation() { |
|
|
303 | _distutils_hook pre |
|
|
304 | |
|
|
305 | echo ${_BOLD}"$(PYTHON)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" $([[ -z "${DISTUTILS_USE_SEPARATE_SOURCE_DIRECTORIES}" ]] && echo build -b "$(_distutils_get_build_dir)") install --root="${D}" --no-compile "$@"${_NORMAL} |
|
|
306 | "$(PYTHON)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" $([[ -z "${DISTUTILS_USE_SEPARATE_SOURCE_DIRECTORIES}" ]] && echo build -b "$(_distutils_get_build_dir)") install --root="${D}" --no-compile "$@" || return "$?" |
|
|
307 | |
|
|
308 | if [[ -z "${DISTUTILS_DISABLE_VERSIONING_OF_PYTHON_SCRIPTS}" && "${BASH_VERSINFO[0]}" -ge 4 ]]; then |
|
|
309 | rename_scripts_with_versioned_shebangs |
|
|
310 | fi |
|
|
311 | |
|
|
312 | _distutils_hook post |
|
|
313 | } |
|
|
314 | python_execute_function ${DISTUTILS_USE_SEPARATE_SOURCE_DIRECTORIES:+-s} distutils_installation "$@" |
|
|
315 | |
|
|
316 | if [[ -z "${DISTUTILS_DISABLE_VERSIONING_OF_PYTHON_SCRIPTS}" && "${#wrapper_scripts[@]}" -ne 0 && "${BASH_VERSINFO[0]}" -ge 4 ]]; then |
|
|
317 | python_generate_wrapper_scripts "${!wrapper_scripts[@]}" |
|
|
318 | fi |
|
|
319 | unset wrapper_scripts |
|
|
320 | else |
|
|
321 | # Mark the package to be rebuilt after a Python upgrade. |
|
|
322 | python_need_rebuild |
|
|
323 | |
| 199 | echo "$(PYTHON "${PYVER}")" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" install --root="${D}" --no-compile "$@" |
324 | echo ${_BOLD}"$(PYTHON)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" install --root="${D}" --no-compile "$@"${_NORMAL} |
| 200 | "$(PYTHON "${PYVER}")" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" install --root="${D}" --no-compile "$@" || die "Installation failed" |
325 | "$(PYTHON)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" install --root="${D}" --no-compile "$@" || die "Installation failed" |
| 201 | fi |
326 | fi |
| 202 | |
327 | |
| 203 | if [[ -e "${D}usr/local" ]]; then |
328 | if [[ -e "${ED}usr/local" ]]; then |
| 204 | die "Illegal installation into /usr/local" |
329 | die "Illegal installation into /usr/local" |
| 205 | fi |
330 | fi |
| 206 | |
331 | |
| 207 | local default_docs |
332 | local default_docs |
| 208 | default_docs="AUTHORS Change* CHANGELOG CONTRIBUTORS KNOWN_BUGS MAINTAINERS MANIFEST* NEWS PKG-INFO README* TODO" |
333 | default_docs="AUTHORS Change* CHANGELOG CONTRIBUTORS KNOWN_BUGS MAINTAINERS MANIFEST* NEWS PKG-INFO README* TODO" |
| … | |
… | |
| 217 | fi |
342 | fi |
| 218 | } |
343 | } |
| 219 | |
344 | |
| 220 | # @FUNCTION: distutils_pkg_postinst |
345 | # @FUNCTION: distutils_pkg_postinst |
| 221 | # @DESCRIPTION: |
346 | # @DESCRIPTION: |
| 222 | # This is a generic optimization, you should override it if your package |
347 | # The distutils pkg_postinst function. This function is exported. |
| 223 | # installs modules in another directory. This function is exported. |
348 | # When PYTHON_MODNAME variable is set, then this function calls python_mod_optimize() with modules |
|
|
349 | # specified in PYTHON_MODNAME variable. Otherwise it calls python_mod_optimize() with module, whose |
|
|
350 | # name is equal to name of current package, if this module exists. |
| 224 | distutils_pkg_postinst() { |
351 | distutils_pkg_postinst() { |
| 225 | if [[ "${EBUILD_PHASE}" != "postinst" ]]; then |
352 | if [[ "${EBUILD_PHASE}" != "postinst" ]]; then |
| 226 | die "${FUNCNAME}() can be used only in pkg_postinst() phase" |
353 | die "${FUNCNAME}() can be used only in pkg_postinst() phase" |
| 227 | fi |
354 | fi |
| 228 | |
355 | |
|
|
356 | _python_initialize_prefix_variables |
|
|
357 | |
| 229 | local pylibdir pymod |
358 | local pylibdir pymod |
| 230 | if [[ -z "${PYTHON_MODNAME}" ]]; then |
359 | if [[ -z "${PYTHON_MODNAME}" ]]; then |
| 231 | for pylibdir in "${ROOT}"/usr/$(get_libdir)/python*; do |
360 | for pylibdir in "${EROOT}"usr/$(get_libdir)/python* "${EROOT}"/usr/share/jython-*/Lib; do |
| 232 | if [[ -d "${pylibdir}/site-packages/${PN}" ]]; then |
361 | if [[ -d "${pylibdir}/site-packages/${PN}" ]]; then |
| 233 | PYTHON_MODNAME="${PN}" |
362 | PYTHON_MODNAME="${PN}" |
| 234 | fi |
363 | fi |
| 235 | done |
364 | done |
| 236 | fi |
365 | fi |
| … | |
… | |
| 244 | fi |
373 | fi |
| 245 | } |
374 | } |
| 246 | |
375 | |
| 247 | # @FUNCTION: distutils_pkg_postrm |
376 | # @FUNCTION: distutils_pkg_postrm |
| 248 | # @DESCRIPTION: |
377 | # @DESCRIPTION: |
| 249 | # Generic pyc/pyo cleanup script. This function is exported. |
378 | # The distutils pkg_postrm function. This function is exported. |
|
|
379 | # When PYTHON_MODNAME variable is set, then this function calls python_mod_cleanup() with modules |
|
|
380 | # specified in PYTHON_MODNAME variable. Otherwise it calls python_mod_cleanup() with module, whose |
|
|
381 | # name is equal to name of current package, if this module exists. |
| 250 | distutils_pkg_postrm() { |
382 | distutils_pkg_postrm() { |
| 251 | if [[ "${EBUILD_PHASE}" != "postrm" ]]; then |
383 | if [[ "${EBUILD_PHASE}" != "postrm" ]]; then |
| 252 | die "${FUNCNAME}() can be used only in pkg_postrm() phase" |
384 | die "${FUNCNAME}() can be used only in pkg_postrm() phase" |
| 253 | fi |
385 | fi |
| 254 | |
386 | |
|
|
387 | _python_initialize_prefix_variables |
|
|
388 | |
| 255 | local pylibdir pymod |
389 | local pylibdir pymod |
| 256 | if [[ -z "${PYTHON_MODNAME}" ]]; then |
390 | if [[ -z "${PYTHON_MODNAME}" ]]; then |
| 257 | for pylibdir in "${ROOT}"/usr/$(get_libdir)/python*; do |
391 | for pylibdir in "${EROOT}"usr/$(get_libdir)/python* "${EROOT}"/usr/share/jython-*/Lib; do |
| 258 | if [[ -d "${pylibdir}/site-packages/${PN}" ]]; then |
392 | if [[ -d "${pylibdir}/site-packages/${PN}" ]]; then |
| 259 | PYTHON_MODNAME="${PN}" |
393 | PYTHON_MODNAME="${PN}" |
| 260 | fi |
394 | fi |
| 261 | done |
395 | done |
| 262 | fi |
396 | fi |
| … | |
… | |
| 264 | if [[ -n "${PYTHON_MODNAME}" ]]; then |
398 | if [[ -n "${PYTHON_MODNAME}" ]]; then |
| 265 | if ! has "${EAPI:-0}" 0 1 2 || [[ -n "${SUPPORT_PYTHON_ABIS}" ]]; then |
399 | if ! has "${EAPI:-0}" 0 1 2 || [[ -n "${SUPPORT_PYTHON_ABIS}" ]]; then |
| 266 | python_mod_cleanup ${PYTHON_MODNAME} |
400 | python_mod_cleanup ${PYTHON_MODNAME} |
| 267 | else |
401 | else |
| 268 | for pymod in ${PYTHON_MODNAME}; do |
402 | for pymod in ${PYTHON_MODNAME}; do |
| 269 | for pylibdir in "${ROOT}"/usr/$(get_libdir)/python*; do |
403 | for pylibdir in "${EROOT}"usr/$(get_libdir)/python*; do |
| 270 | if [[ -d "${pylibdir}/site-packages/${pymod}" ]]; then |
404 | if [[ -d "${pylibdir}/site-packages/${pymod}" ]]; then |
| 271 | python_mod_cleanup "${pylibdir#${ROOT}}/site-packages/${pymod}" |
405 | python_mod_cleanup "${pylibdir#${EROOT%/}}/site-packages/${pymod}" |
| 272 | fi |
406 | fi |
| 273 | done |
407 | done |
| 274 | done |
408 | done |
| 275 | fi |
409 | fi |
| 276 | else |
410 | else |
| … | |
… | |
| 278 | fi |
412 | fi |
| 279 | } |
413 | } |
| 280 | |
414 | |
| 281 | # @FUNCTION: distutils_python_version |
415 | # @FUNCTION: distutils_python_version |
| 282 | # @DESCRIPTION: |
416 | # @DESCRIPTION: |
| 283 | # Calls python_version, so that you can use something like |
417 | # Deprecated wrapper function for deprecated python_version(). |
| 284 | # e.g. insinto ${ROOT}/usr/include/python${PYVER} |
|
|
| 285 | distutils_python_version() { |
418 | distutils_python_version() { |
|
|
419 | if ! has "${EAPI:-0}" 0 1 2 || [[ -n "${SUPPORT_PYTHON_ABIS}" ]]; then |
|
|
420 | eerror "Use PYTHON() and/or python_get_*() instead of ${FUNCNAME}()." |
|
|
421 | die "${FUNCNAME}() cannot be used in this EAPI" |
|
|
422 | fi |
|
|
423 | |
|
|
424 | _python_set_color_variables |
|
|
425 | |
|
|
426 | eerror |
|
|
427 | eerror "${_RED}Deprecation Warning: ${FUNCNAME}() is deprecated and will be banned on 2010-07-01.${_NORMAL}" |
|
|
428 | eerror "${_RED}Use PYTHON() instead of python variable. Use python_get_*() instead of PYVER* variables.${_NORMAL}" |
|
|
429 | eerror |
|
|
430 | |
| 286 | python_version |
431 | python_version |
| 287 | } |
432 | } |
| 288 | |
433 | |
| 289 | # @FUNCTION: distutils_python_tkinter |
434 | # @FUNCTION: distutils_python_tkinter |
| 290 | # @DESCRIPTION: |
435 | # @DESCRIPTION: |
| 291 | # Checks for if tkinter support is compiled into python |
436 | # Deprecated wrapper function for deprecated python_tkinter_exists(). |
| 292 | distutils_python_tkinter() { |
437 | distutils_python_tkinter() { |
|
|
438 | if ! has "${EAPI:-0}" 0 1 2 || [[ -n "${SUPPORT_PYTHON_ABIS}" ]]; then |
|
|
439 | eerror "Use PYTHON_USE_WITH=\"xml\" and python_pkg_setup() instead of ${FUNCNAME}()." |
|
|
440 | die "${FUNCNAME}() cannot be used in this EAPI" |
|
|
441 | fi |
|
|
442 | |
|
|
443 | _python_set_color_variables |
|
|
444 | |
|
|
445 | eerror |
|
|
446 | eerror "${_RED}Deprecation Warning: ${FUNCNAME}() is deprecated and will be banned on 2010-07-01.${_NORMAL}" |
|
|
447 | eerror "${_RED}Use PYTHON_USE_WITH=\"xml\" and python_pkg_setup() instead of ${FUNCNAME}().${_NORMAL}" |
|
|
448 | eerror |
|
|
449 | |
| 293 | python_tkinter_exists |
450 | python_tkinter_exists |
| 294 | } |
451 | } |