| 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.72 2010/02/08 09:35:38 pva 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_unpack 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 "${PYTHON_DEPEND}" ]]; then |
| 28 | DEPEND="virtual/python" |
26 | DEPEND="virtual/python" |
| 29 | RDEPEND="${DEPEND}" |
27 | RDEPEND="${DEPEND}" |
| 30 | fi |
28 | fi |
|
|
29 | |
|
|
30 | if has "${EAPI:-0}" 0 1 2; then |
| 31 | python="python" |
31 | python="python" |
|
|
32 | else |
|
|
33 | # Use "$(PYTHON)" or "$(PYTHON -A)" instead of "${python}". |
|
|
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 | |
| 41 | # @ECLASS-VARIABLE: DOCS |
86 | # @ECLASS-VARIABLE: DOCS |
| 42 | # @DESCRIPTION: |
87 | # @DESCRIPTION: |
| 43 | # Additional DOCS |
88 | # Additional documentation files installed by distutils_src_install(). |
|
|
89 | |
|
|
90 | _distutils_get_build_dir() { |
|
|
91 | if [[ -n "${SUPPORT_PYTHON_ABIS}" && -z "${DISTUTILS_USE_SEPARATE_SOURCE_DIRECTORIES}" ]]; then |
|
|
92 | echo "build-${PYTHON_ABI}" |
|
|
93 | else |
|
|
94 | echo "build" |
|
|
95 | fi |
|
|
96 | } |
|
|
97 | |
|
|
98 | _distutils_get_PYTHONPATH() { |
|
|
99 | if [[ -n "${SUPPORT_PYTHON_ABIS}" && -z "${DISTUTILS_USE_SEPARATE_SOURCE_DIRECTORIES}" ]]; then |
|
|
100 | ls -d build-${PYTHON_ABI}/lib* 2> /dev/null |
|
|
101 | else |
|
|
102 | ls -d build/lib* 2> /dev/null |
|
|
103 | fi |
|
|
104 | } |
| 44 | |
105 | |
| 45 | _distutils_hook() { |
106 | _distutils_hook() { |
| 46 | if [[ "$#" -ne 1 ]]; then |
107 | if [[ "$#" -ne 1 ]]; then |
| 47 | die "${FUNCNAME}() requires 1 argument" |
108 | die "${FUNCNAME}() requires 1 argument" |
| 48 | fi |
109 | fi |
| … | |
… | |
| 51 | fi |
112 | fi |
| 52 | } |
113 | } |
| 53 | |
114 | |
| 54 | # @FUNCTION: distutils_src_unpack |
115 | # @FUNCTION: distutils_src_unpack |
| 55 | # @DESCRIPTION: |
116 | # @DESCRIPTION: |
| 56 | # The distutils src_unpack function, this function is exported. |
117 | # The distutils src_unpack function. This function is exported. |
| 57 | distutils_src_unpack() { |
118 | distutils_src_unpack() { |
| 58 | if [[ "${EBUILD_PHASE}" != "unpack" ]]; then |
119 | if [[ "${EBUILD_PHASE}" != "unpack" ]]; then |
| 59 | die "${FUNCNAME}() can be used only in src_unpack() phase" |
120 | die "${FUNCNAME}() can be used only in src_unpack() phase" |
| 60 | fi |
121 | fi |
| 61 | |
122 | |
| … | |
… | |
| 65 | has "${EAPI:-0}" 0 1 && distutils_src_prepare |
126 | has "${EAPI:-0}" 0 1 && distutils_src_prepare |
| 66 | } |
127 | } |
| 67 | |
128 | |
| 68 | # @FUNCTION: distutils_src_prepare |
129 | # @FUNCTION: distutils_src_prepare |
| 69 | # @DESCRIPTION: |
130 | # @DESCRIPTION: |
| 70 | # The distutils src_prepare function, this function is exported. |
131 | # The distutils src_prepare function. This function is exported. |
| 71 | distutils_src_prepare() { |
132 | distutils_src_prepare() { |
| 72 | if ! has "${EAPI:-0}" 0 1 && [[ "${EBUILD_PHASE}" != "prepare" ]]; then |
133 | if ! has "${EAPI:-0}" 0 1 && [[ "${EBUILD_PHASE}" != "prepare" ]]; then |
| 73 | die "${FUNCNAME}() can be used only in src_prepare() phase" |
134 | die "${FUNCNAME}() can be used only in src_prepare() phase" |
| 74 | fi |
135 | fi |
| 75 | |
136 | |
| 76 | # Delete ez_setup files to prevent packages from installing |
137 | # Delete ez_setup files to prevent packages from installing Setuptools on their own. |
| 77 | # Setuptools on their own. |
|
|
| 78 | local ez_setup_existence="0" |
138 | local ez_setup_existence="0" |
| 79 | [[ -d ez_setup || -f ez_setup.py ]] && ez_setup_existence="1" |
139 | [[ -d ez_setup || -f ez_setup.py ]] && ez_setup_existence="1" |
| 80 | rm -fr ez_setup* |
140 | rm -fr ez_setup* |
| 81 | if [[ "${ez_setup_existence}" == "1" ]]; then |
141 | if [[ "${ez_setup_existence}" == "1" ]]; then |
| 82 | echo "def use_setuptools(*args, **kwargs): pass" > ez_setup.py |
142 | echo "def use_setuptools(*args, **kwargs): pass" > ez_setup.py |
| 83 | fi |
143 | fi |
| 84 | |
144 | |
| 85 | # Delete distribute_setup files to prevent packages from installing |
145 | # Delete distribute_setup files to prevent packages from installing Distribute on their own. |
| 86 | # Distribute on their own. |
|
|
| 87 | local distribute_setup_existence="0" |
146 | local distribute_setup_existence="0" |
| 88 | [[ -d distribute_setup || -f distribute_setup.py ]] && distribute_setup_existence="1" |
147 | [[ -d distribute_setup || -f distribute_setup.py ]] && distribute_setup_existence="1" |
| 89 | rm -fr distribute_setup* |
148 | rm -fr distribute_setup* |
| 90 | if [[ "${distribute_setup_existence}" == "1" ]]; then |
149 | if [[ "${distribute_setup_existence}" == "1" ]]; then |
| 91 | echo "def use_setuptools(*args, **kwargs): pass" > distribute_setup.py |
150 | echo "def use_setuptools(*args, **kwargs): pass" > distribute_setup.py |
| … | |
… | |
| 96 | fi |
155 | fi |
| 97 | } |
156 | } |
| 98 | |
157 | |
| 99 | # @FUNCTION: distutils_src_compile |
158 | # @FUNCTION: distutils_src_compile |
| 100 | # @DESCRIPTION: |
159 | # @DESCRIPTION: |
| 101 | # The distutils src_compile function, this function is exported. |
160 | # The distutils src_compile function. This function is exported. |
| 102 | # In newer EAPIs this function calls distutils_src_compile_pre_hook() and |
161 | # In ebuilds of packages supporting installation for multiple versions of Python, this function |
| 103 | # distutils_src_compile_post_hook(), if they are defined. |
162 | # calls distutils_src_compile_pre_hook() and distutils_src_compile_post_hook(), if they are defined. |
| 104 | distutils_src_compile() { |
163 | distutils_src_compile() { |
| 105 | if [[ "${EBUILD_PHASE}" != "compile" ]]; then |
164 | if [[ "${EBUILD_PHASE}" != "compile" ]]; then |
| 106 | die "${FUNCNAME}() can be used only in src_compile() phase" |
165 | die "${FUNCNAME}() can be used only in src_compile() phase" |
| 107 | fi |
166 | fi |
| 108 | |
167 | |
| 109 | if ! has "${EAPI:-0}" 0 1 2 || [[ -n "${SUPPORT_PYTHON_ABIS}" ]]; then |
168 | if [[ -n "${SUPPORT_PYTHON_ABIS}" ]]; then |
| 110 | if [[ -n "${DISTUTILS_USE_SEPARATE_SOURCE_DIRECTORIES}" ]]; then |
169 | distutils_building() { |
| 111 | building() { |
|
|
| 112 | _distutils_hook pre |
170 | _distutils_hook pre |
| 113 | |
171 | |
| 114 | echo "$(PYTHON)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" build "$@" |
172 | echo "$(PYTHON)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" build -b "$(_distutils_get_build_dir)" "$@" |
| 115 | "$(PYTHON)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" build "$@" || return "$?" |
173 | "$(PYTHON)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" build -b "$(_distutils_get_build_dir)" "$@" || return "$?" |
| 116 | |
174 | |
| 117 | _distutils_hook post |
175 | _distutils_hook post |
|
|
176 | } |
|
|
177 | python_execute_function ${DISTUTILS_USE_SEPARATE_SOURCE_DIRECTORIES:+-s} distutils_building "$@" |
|
|
178 | else |
|
|
179 | echo "$(PYTHON -A)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" build "$@" |
|
|
180 | "$(PYTHON -A)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" build "$@" || die "Building failed" |
|
|
181 | fi |
|
|
182 | } |
|
|
183 | |
|
|
184 | # @FUNCTION: distutils_src_test |
|
|
185 | # @DESCRIPTION: |
|
|
186 | # The distutils src_test function. This function is exported, when DISTUTILS_SRC_TEST variable is set. |
|
|
187 | distutils_src_test() { |
|
|
188 | if [[ "${DISTUTILS_SRC_TEST}" == "setup.py" ]]; then |
|
|
189 | if [[ -n "${SUPPORT_PYTHON_ABIS}" ]]; then |
|
|
190 | distutils_testing() { |
|
|
191 | echo PYTHONPATH="$(_distutils_get_PYTHONPATH)" "$(PYTHON)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" $([[ -z "${DISTUTILS_USE_SEPARATE_SOURCE_DIRECTORIES}" ]] && echo build -b "$(_distutils_get_build_dir)") test "$@" |
|
|
192 | PYTHONPATH="$(_distutils_get_PYTHONPATH)" "$(PYTHON)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" $([[ -z "${DISTUTILS_USE_SEPARATE_SOURCE_DIRECTORIES}" ]] && echo build -b "$(_distutils_get_build_dir)") test "$@" |
| 118 | } |
193 | } |
| 119 | python_execute_function -s building "$@" |
194 | python_execute_function ${DISTUTILS_USE_SEPARATE_SOURCE_DIRECTORIES:+-s} distutils_testing "$@" |
| 120 | else |
195 | else |
| 121 | building() { |
196 | echo PYTHONPATH="$(_distutils_get_PYTHONPATH)" "$(PYTHON -A)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" test "$@" || die "Testing failed" |
| 122 | _distutils_hook pre |
197 | PYTHONPATH="$(_distutils_get_PYTHONPATH)" "$(PYTHON -A)" 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 |
198 | fi |
|
|
199 | elif [[ "${DISTUTILS_SRC_TEST}" == "nosetests" ]]; then |
|
|
200 | python_execute_nosetests -P '$(_distutils_get_PYTHONPATH)' ${DISTUTILS_USE_SEPARATE_SOURCE_DIRECTORIES:+-s} -- "$@" |
|
|
201 | elif [[ "${DISTUTILS_SRC_TEST}" == "py.test" ]]; then |
|
|
202 | python_execute_py.test -P '$(_distutils_get_PYTHONPATH)' ${DISTUTILS_USE_SEPARATE_SOURCE_DIRECTORIES:+-s} -- "$@" |
|
|
203 | # trial requires an argument, which is usually equal to "${PN}". |
|
|
204 | elif [[ "${DISTUTILS_SRC_TEST}" =~ ^trial(\ .*)?$ ]]; then |
|
|
205 | local trial_arguments |
|
|
206 | if [[ "${DISTUTILS_SRC_TEST}" == "trial "* ]]; then |
|
|
207 | trial_arguments="${DISTUTILS_SRC_TEST#trial }" |
| 131 | else |
208 | else |
| 132 | python_version |
209 | trial_arguments="${PN}" |
| 133 | echo "$(PYTHON "${PYVER}")" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" build "$@" |
210 | fi |
| 134 | "$(PYTHON "${PYVER}")" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" build "$@" || die "Building failed" |
211 | |
|
|
212 | python_execute_trial -P '$(_distutils_get_PYTHONPATH)' ${DISTUTILS_USE_SEPARATE_SOURCE_DIRECTORIES:+-s} -- ${trial_arguments} "$@" |
|
|
213 | else |
|
|
214 | die "'DISTUTILS_SRC_TEST' variable has unsupported value '${DISTUTILS_SRC_TEST}'" |
| 135 | fi |
215 | fi |
| 136 | } |
216 | } |
| 137 | |
217 | |
| 138 | # @FUNCTION: distutils_src_install |
218 | # @FUNCTION: distutils_src_install |
| 139 | # @DESCRIPTION: |
219 | # @DESCRIPTION: |
| 140 | # The distutils src_install function, this function is exported. |
220 | # The distutils src_install function. This function is exported. |
| 141 | # In newer EAPIs this function calls distutils_src_install_pre_hook() and |
221 | # In ebuilds of packages supporting installation for multiple versions of Python, this function |
| 142 | # distutils_src_install_post_hook(), if they are defined. |
222 | # 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, |
223 | # It also installs some standard documentation files (AUTHORS, Change*, CHANGELOG, CONTRIBUTORS, |
| 144 | # PKG-INFO, CONTRIBUTORS, TODO, NEWS, MANIFEST*, README*, and AUTHORS) |
224 | # KNOWN_BUGS, MAINTAINERS, MANIFEST*, NEWS, PKG-INFO, README*, TODO). |
| 145 | distutils_src_install() { |
225 | distutils_src_install() { |
| 146 | if [[ "${EBUILD_PHASE}" != "install" ]]; then |
226 | if [[ "${EBUILD_PHASE}" != "install" ]]; then |
| 147 | die "${FUNCNAME}() can be used only in src_install() phase" |
227 | die "${FUNCNAME}() can be used only in src_install() phase" |
| 148 | fi |
228 | fi |
| 149 | |
229 | |
| 150 | local pylibdir |
|
|
| 151 | |
|
|
| 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 |
230 | if [[ -n "${SUPPORT_PYTHON_ABIS}" ]]; then |
| 156 | if [[ -n "${DISTUTILS_USE_SEPARATE_SOURCE_DIRECTORIES}" ]]; then |
231 | if [[ -z "${DISTUTILS_DISABLE_VERSIONING_OF_PYTHON_SCRIPTS}" && "${BASH_VERSINFO[0]}" -ge 4 ]]; then |
| 157 | installation() { |
232 | declare -A wrapper_scripts=() |
| 158 | _distutils_hook pre |
|
|
| 159 | |
233 | |
| 160 | # need this for python-2.5 + setuptools in cases where |
234 | rename_scripts_with_versioned_shebangs() { |
| 161 | # a package uses distutils but does not install anything |
235 | if [[ -d "${D}usr/bin" ]]; then |
| 162 | # in site-packages. (eg. dev-java/java-config-2.x) |
236 | cd "${D}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 | |
237 | |
| 167 | echo "$(PYTHON)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" install --root="${D}" --no-compile "$@" |
238 | local file |
| 168 | "$(PYTHON)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" install --root="${D}" --no-compile "$@" || return "$?" |
239 | for file in *; do |
| 169 | |
240 | if [[ -f "${file}" && ! "${file}" =~ [[:digit:]]+\.[[:digit:]]+$ && "$(head -n1 "${file}")" =~ ^'#!'.*python[[:digit:]]+\.[[:digit:]]+ ]]; then |
| 170 | _distutils_hook post |
241 | mv "${file}" "${file}-${PYTHON_ABI}" || die "Renaming of '${file}' failed" |
|
|
242 | wrapper_scripts+=(["${D}usr/bin/${file}"]=) |
|
|
243 | fi |
|
|
244 | done |
|
|
245 | fi |
| 171 | } |
246 | } |
| 172 | python_execute_function -s installation "$@" |
247 | fi |
| 173 | else |
248 | |
| 174 | installation() { |
249 | distutils_installation() { |
| 175 | _distutils_hook pre |
250 | _distutils_hook pre |
| 176 | |
251 | |
| 177 | # need this for python-2.5 + setuptools in cases where |
252 | echo "$(PYTHON)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" $([[ -z "${DISTUTILS_USE_SEPARATE_SOURCE_DIRECTORIES}" ]] && echo build -b "$(_distutils_get_build_dir)") install --root="${D}" --no-compile "$@" |
| 178 | # a package uses distutils but does not install anything |
253 | "$(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 "$?" |
| 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 | |
254 | |
| 184 | echo "$(PYTHON)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" build -b "build-${PYTHON_ABI}" install --root="${D}" --no-compile "$@" |
255 | if [[ -z "${DISTUTILS_DISABLE_VERSIONING_OF_PYTHON_SCRIPTS}" && "${BASH_VERSINFO[0]}" -ge 4 ]]; then |
| 185 | "$(PYTHON)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" build -b "build-${PYTHON_ABI}" install --root="${D}" --no-compile "$@" || return "$?" |
256 | rename_scripts_with_versioned_shebangs |
|
|
257 | fi |
| 186 | |
258 | |
| 187 | _distutils_hook post |
259 | _distutils_hook post |
| 188 | } |
260 | } |
| 189 | python_execute_function installation "$@" |
261 | python_execute_function ${DISTUTILS_USE_SEPARATE_SOURCE_DIRECTORIES:+-s} distutils_installation "$@" |
| 190 | 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 | |
262 | |
|
|
263 | if [[ -z "${DISTUTILS_DISABLE_VERSIONING_OF_PYTHON_SCRIPTS}" && "${#wrapper_scripts[@]}" -ne 0 && "${BASH_VERSINFO[0]}" -ge 4 ]]; then |
|
|
264 | python_generate_wrapper_scripts "${!wrapper_scripts[@]}" |
|
|
265 | fi |
|
|
266 | unset wrapper_scripts |
|
|
267 | else |
|
|
268 | # Mark the package to be rebuilt after a Python upgrade. |
|
|
269 | python_need_rebuild |
|
|
270 | |
| 199 | echo "$(PYTHON "${PYVER}")" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" install --root="${D}" --no-compile "$@" |
271 | echo "$(PYTHON -A)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" install --root="${D}" --no-compile "$@" |
| 200 | "$(PYTHON "${PYVER}")" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" install --root="${D}" --no-compile "$@" || die "Installation failed" |
272 | "$(PYTHON -A)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" install --root="${D}" --no-compile "$@" || die "Installation failed" |
| 201 | fi |
273 | fi |
| 202 | |
274 | |
| 203 | if [[ -e "${D}usr/local" ]]; then |
275 | if [[ -e "${D}usr/local" ]]; then |
| 204 | die "Illegal installation into /usr/local" |
276 | die "Illegal installation into /usr/local" |
| 205 | fi |
277 | fi |
| … | |
… | |
| 217 | fi |
289 | fi |
| 218 | } |
290 | } |
| 219 | |
291 | |
| 220 | # @FUNCTION: distutils_pkg_postinst |
292 | # @FUNCTION: distutils_pkg_postinst |
| 221 | # @DESCRIPTION: |
293 | # @DESCRIPTION: |
| 222 | # This is a generic optimization, you should override it if your package |
294 | # The distutils pkg_postinst function. This function is exported. |
| 223 | # installs modules in another directory. This function is exported. |
295 | # When PYTHON_MODNAME variable is set, then this function calls python_mod_optimize() with modules |
|
|
296 | # specified in PYTHON_MODNAME variable. Otherwise it calls python_mod_optimize() with module, whose |
|
|
297 | # name is equal to name of current package, if this module exists. |
| 224 | distutils_pkg_postinst() { |
298 | distutils_pkg_postinst() { |
| 225 | if [[ "${EBUILD_PHASE}" != "postinst" ]]; then |
299 | if [[ "${EBUILD_PHASE}" != "postinst" ]]; then |
| 226 | die "${FUNCNAME}() can be used only in pkg_postinst() phase" |
300 | die "${FUNCNAME}() can be used only in pkg_postinst() phase" |
| 227 | fi |
301 | fi |
| 228 | |
302 | |
| … | |
… | |
| 244 | fi |
318 | fi |
| 245 | } |
319 | } |
| 246 | |
320 | |
| 247 | # @FUNCTION: distutils_pkg_postrm |
321 | # @FUNCTION: distutils_pkg_postrm |
| 248 | # @DESCRIPTION: |
322 | # @DESCRIPTION: |
| 249 | # Generic pyc/pyo cleanup script. This function is exported. |
323 | # The distutils pkg_postrm function. This function is exported. |
|
|
324 | # When PYTHON_MODNAME variable is set, then this function calls python_mod_cleanup() with modules |
|
|
325 | # specified in PYTHON_MODNAME variable. Otherwise it calls python_mod_cleanup() with module, whose |
|
|
326 | # name is equal to name of current package, if this module exists. |
| 250 | distutils_pkg_postrm() { |
327 | distutils_pkg_postrm() { |
| 251 | if [[ "${EBUILD_PHASE}" != "postrm" ]]; then |
328 | if [[ "${EBUILD_PHASE}" != "postrm" ]]; then |
| 252 | die "${FUNCNAME}() can be used only in pkg_postrm() phase" |
329 | die "${FUNCNAME}() can be used only in pkg_postrm() phase" |
| 253 | fi |
330 | fi |
| 254 | |
331 | |
| … | |
… | |
| 278 | fi |
355 | fi |
| 279 | } |
356 | } |
| 280 | |
357 | |
| 281 | # @FUNCTION: distutils_python_version |
358 | # @FUNCTION: distutils_python_version |
| 282 | # @DESCRIPTION: |
359 | # @DESCRIPTION: |
| 283 | # Calls python_version, so that you can use something like |
360 | # Deprecated wrapper function for deprecated python_version(). |
| 284 | # e.g. insinto ${ROOT}/usr/include/python${PYVER} |
|
|
| 285 | distutils_python_version() { |
361 | distutils_python_version() { |
|
|
362 | if ! has "${EAPI:-0}" 0 1 2; then |
|
|
363 | eerror "Use PYTHON() and/or python_get_*() instead of ${FUNCNAME}()." |
|
|
364 | die "${FUNCNAME}() cannot be used in this EAPI" |
|
|
365 | fi |
|
|
366 | |
| 286 | python_version |
367 | python_version |
| 287 | } |
368 | } |
| 288 | |
369 | |
| 289 | # @FUNCTION: distutils_python_tkinter |
370 | # @FUNCTION: distutils_python_tkinter |
| 290 | # @DESCRIPTION: |
371 | # @DESCRIPTION: |
| 291 | # Checks for if tkinter support is compiled into python |
372 | # Deprecated wrapper function for python_tkinter_exists(). |
| 292 | distutils_python_tkinter() { |
373 | distutils_python_tkinter() { |
|
|
374 | if ! has "${EAPI:-0}" 0 1 2; then |
|
|
375 | eerror "Use python_tkinter_exists() instead of ${FUNCNAME}()." |
|
|
376 | die "${FUNCNAME}() cannot be used in this EAPI" |
|
|
377 | fi |
|
|
378 | |
| 293 | python_tkinter_exists |
379 | python_tkinter_exists |
| 294 | } |
380 | } |