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