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