1 | # Copyright 1999-2008 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.47 2008/05/29 15:24:51 hawking 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 | # Alastair Tse <liquidx@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 | # |
|
|
16 | # It inherits python, multilib, and eutils |
|
|
17 | |
13 | |
18 | inherit python multilib eutils |
14 | inherit multilib python |
19 | |
15 | |
20 | # @ECLASS-VARIABLE: PYTHON_SLOT_VERSION |
16 | case "${EAPI:-0}" in |
21 | # @DESCRIPTION: |
17 | 0|1) |
22 | # This helps make it possible to add extensions to python slots. |
18 | EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_postinst pkg_postrm |
23 | # Normally only a -py21- ebuild would set PYTHON_SLOT_VERSION. |
19 | ;; |
24 | if [ "${PYTHON_SLOT_VERSION}" = "2.1" ] ; then |
20 | *) |
25 | DEPEND="=dev-lang/python-2.1*" |
21 | EXPORT_FUNCTIONS src_unpack src_prepare src_compile src_install pkg_postinst pkg_postrm |
|
|
22 | ;; |
|
|
23 | esac |
|
|
24 | |
|
|
25 | if [[ -z "${PYTHON_DEPEND}" ]]; then |
|
|
26 | DEPEND="virtual/python" |
|
|
27 | RDEPEND="${DEPEND}" |
|
|
28 | fi |
|
|
29 | |
|
|
30 | if has "${EAPI:-0}" 0 1 2; then |
26 | python="python2.1" |
31 | python="python" |
27 | elif [ "${PYTHON_SLOT_VERSION}" = "2.3" ] ; then |
|
|
28 | DEPEND="=dev-lang/python-2.3*" |
|
|
29 | python="python2.3" |
|
|
30 | else |
32 | else |
31 | DEPEND="virtual/python" |
33 | # Use "$(PYTHON)" or "$(PYTHON -A)" instead of "${python}". |
32 | python="python" |
34 | python="die" |
|
|
35 | fi |
|
|
36 | |
|
|
37 | # @ECLASS-VARIABLE: DISTUTILS_USE_SEPARATE_SOURCE_DIRECTORIES |
|
|
38 | # @DESCRIPTION: |
|
|
39 | # Set this to use separate source directories for each enabled version of Python. |
|
|
40 | |
|
|
41 | # @ECLASS-VARIABLE: DISTUTILS_GLOBAL_OPTIONS |
|
|
42 | # @DESCRIPTION: |
|
|
43 | # Global options passed to setup.py. |
|
|
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 )" |
33 | fi |
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. |
34 | |
85 | |
35 | # @ECLASS-VARIABLE: DOCS |
86 | # @ECLASS-VARIABLE: DOCS |
36 | # @DESCRIPTION: |
87 | # @DESCRIPTION: |
37 | # 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 | } |
|
|
105 | |
|
|
106 | _distutils_hook() { |
|
|
107 | if [[ "$#" -ne 1 ]]; then |
|
|
108 | die "${FUNCNAME}() requires 1 argument" |
|
|
109 | fi |
|
|
110 | if [[ "$(type -t "distutils_src_${EBUILD_PHASE}_$1_hook")" == "function" ]]; then |
|
|
111 | "distutils_src_${EBUILD_PHASE}_$1_hook" |
|
|
112 | fi |
|
|
113 | } |
38 | |
114 | |
39 | # @FUNCTION: distutils_src_unpack |
115 | # @FUNCTION: distutils_src_unpack |
40 | # @DESCRIPTION: |
116 | # @DESCRIPTION: |
41 | # The distutils src_unpack function, this function is exported |
117 | # The distutils src_unpack function. This function is exported. |
42 | distutils_src_unpack() { |
118 | distutils_src_unpack() { |
|
|
119 | if [[ "${EBUILD_PHASE}" != "unpack" ]]; then |
|
|
120 | die "${FUNCNAME}() can be used only in src_unpack() phase" |
|
|
121 | fi |
|
|
122 | |
43 | unpack ${A} |
123 | unpack ${A} |
44 | cd "${S}" |
124 | cd "${S}" |
45 | |
125 | |
46 | # remove ez_setup stuff to prevent packages |
126 | has "${EAPI:-0}" 0 1 && distutils_src_prepare |
47 | # from installing setuptools on their own |
127 | } |
|
|
128 | |
|
|
129 | # @FUNCTION: distutils_src_prepare |
|
|
130 | # @DESCRIPTION: |
|
|
131 | # The distutils src_prepare function. This function is exported. |
|
|
132 | distutils_src_prepare() { |
|
|
133 | if ! has "${EAPI:-0}" 0 1 && [[ "${EBUILD_PHASE}" != "prepare" ]]; then |
|
|
134 | die "${FUNCNAME}() can be used only in src_prepare() phase" |
|
|
135 | fi |
|
|
136 | |
|
|
137 | # Delete ez_setup files to prevent packages from installing Setuptools on their own. |
|
|
138 | local ez_setup_existence="0" |
|
|
139 | [[ -d ez_setup || -f ez_setup.py ]] && ez_setup_existence="1" |
48 | rm -rf ez_setup* |
140 | rm -fr ez_setup* |
|
|
141 | if [[ "${ez_setup_existence}" == "1" ]]; then |
49 | echo "def use_setuptools(*args, **kwargs): pass" > ez_setup.py |
142 | echo "def use_setuptools(*args, **kwargs): pass" > ez_setup.py |
|
|
143 | fi |
|
|
144 | |
|
|
145 | # Delete distribute_setup files to prevent packages from installing Distribute on their own. |
|
|
146 | local distribute_setup_existence="0" |
|
|
147 | [[ -d distribute_setup || -f distribute_setup.py ]] && distribute_setup_existence="1" |
|
|
148 | rm -fr distribute_setup* |
|
|
149 | if [[ "${distribute_setup_existence}" == "1" ]]; then |
|
|
150 | echo "def use_setuptools(*args, **kwargs): pass" > distribute_setup.py |
|
|
151 | fi |
|
|
152 | |
|
|
153 | if [[ -n "${DISTUTILS_USE_SEPARATE_SOURCE_DIRECTORIES}" ]]; then |
|
|
154 | python_copy_sources |
|
|
155 | fi |
50 | } |
156 | } |
51 | |
157 | |
52 | # @FUNCTION: distutils_src_compile |
158 | # @FUNCTION: distutils_src_compile |
53 | # @DESCRIPTION: |
159 | # @DESCRIPTION: |
54 | # The distutils src_compile function, this function is exported |
160 | # The distutils src_compile function. This function is exported. |
|
|
161 | # In ebuilds of packages supporting installation for multiple versions of Python, this function |
|
|
162 | # calls distutils_src_compile_pre_hook() and distutils_src_compile_post_hook(), if they are defined. |
55 | distutils_src_compile() { |
163 | distutils_src_compile() { |
56 | ${python} setup.py build "$@" || die "compilation failed" |
164 | if [[ "${EBUILD_PHASE}" != "compile" ]]; then |
|
|
165 | die "${FUNCNAME}() can be used only in src_compile() phase" |
|
|
166 | fi |
|
|
167 | |
|
|
168 | if [[ -n "${SUPPORT_PYTHON_ABIS}" ]]; then |
|
|
169 | distutils_building() { |
|
|
170 | _distutils_hook pre |
|
|
171 | |
|
|
172 | echo "$(PYTHON)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" build -b "$(_distutils_get_build_dir)" "$@" |
|
|
173 | "$(PYTHON)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" build -b "$(_distutils_get_build_dir)" "$@" || return "$?" |
|
|
174 | |
|
|
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 "$@" |
|
|
193 | } |
|
|
194 | python_execute_function ${DISTUTILS_USE_SEPARATE_SOURCE_DIRECTORIES:+-s} distutils_testing "$@" |
|
|
195 | else |
|
|
196 | echo PYTHONPATH="$(_distutils_get_PYTHONPATH)" "$(PYTHON -A)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" test "$@" || die "Testing failed" |
|
|
197 | PYTHONPATH="$(_distutils_get_PYTHONPATH)" "$(PYTHON -A)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" test "$@" || die "Testing failed" |
|
|
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 }" |
|
|
208 | else |
|
|
209 | trial_arguments="${PN}" |
|
|
210 | fi |
|
|
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}'" |
|
|
215 | fi |
57 | } |
216 | } |
58 | |
217 | |
59 | # @FUNCTION: distutils_src_install |
218 | # @FUNCTION: distutils_src_install |
60 | # @DESCRIPTION: |
219 | # @DESCRIPTION: |
61 | # The distutils src_install function, this function is exported. |
220 | # The distutils src_install function. This function is exported. |
62 | # It also installs the "standard docs" (CHANGELOG, Change*, KNOWN_BUGS, MAINTAINERS, |
221 | # In ebuilds of packages supporting installation for multiple versions of Python, this function |
63 | # PKG-INFO, CONTRIBUTORS, TODO, NEWS, MANIFEST*, README*, and AUTHORS) |
222 | # calls distutils_src_install_pre_hook() and distutils_src_install_post_hook(), if they are defined. |
|
|
223 | # It also installs some standard documentation files (AUTHORS, Change*, CHANGELOG, CONTRIBUTORS, |
|
|
224 | # KNOWN_BUGS, MAINTAINERS, MANIFEST*, NEWS, PKG-INFO, README*, TODO). |
64 | distutils_src_install() { |
225 | distutils_src_install() { |
|
|
226 | if [[ "${EBUILD_PHASE}" != "install" ]]; then |
|
|
227 | die "${FUNCNAME}() can be used only in src_install() phase" |
|
|
228 | fi |
65 | |
229 | |
66 | # need this for python-2.5 + setuptools in cases where |
230 | if [[ -n "${SUPPORT_PYTHON_ABIS}" ]]; then |
67 | # a package uses distutils but does not install anything |
231 | if [[ -z "${DISTUTILS_DISABLE_VERSIONING_OF_PYTHON_SCRIPTS}" && "${BASH_VERSINFO[0]}" -ge 4 ]]; then |
68 | # in site-packages. (eg. dev-java/java-config-2.x) |
232 | declare -A wrapper_scripts=() |
69 | # - liquidx (14/08/2006) |
|
|
70 | pylibdir="$(${python} -c 'from distutils.sysconfig import get_python_lib; print get_python_lib()')" |
|
|
71 | [ -n "${pylibdir}" ] && dodir "${pylibdir}" |
|
|
72 | |
233 | |
73 | if has_version ">=dev-lang/python-2.3"; then |
234 | rename_scripts_with_versioned_shebangs() { |
74 | ${python} setup.py install --root=${D} --no-compile "$@" || die |
235 | if [[ -d "${D}usr/bin" ]]; then |
75 | else |
236 | cd "${D}usr/bin" |
76 | ${python} setup.py install --root=${D} "$@" || die |
237 | |
|
|
238 | local file |
|
|
239 | for file in *; do |
|
|
240 | if [[ -f "${file}" && ! "${file}" =~ [[:digit:]]+\.[[:digit:]]+$ && "$(head -n1 "${file}")" =~ ^'#!'.*python[[:digit:]]+\.[[:digit:]]+ ]]; then |
|
|
241 | mv "${file}" "${file}-${PYTHON_ABI}" || die "Renaming of '${file}' failed" |
|
|
242 | wrapper_scripts+=(["${D}usr/bin/${file}"]=) |
|
|
243 | fi |
|
|
244 | done |
|
|
245 | fi |
|
|
246 | } |
77 | fi |
247 | fi |
78 | |
248 | |
79 | DDOCS="CHANGELOG KNOWN_BUGS MAINTAINERS PKG-INFO CONTRIBUTORS TODO NEWS" |
249 | distutils_installation() { |
80 | DDOCS="${DDOCS} Change* MANIFEST* README* AUTHORS" |
250 | _distutils_hook pre |
81 | |
251 | |
82 | for doc in ${DDOCS}; do |
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 "$@" |
|
|
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 "$?" |
|
|
254 | |
|
|
255 | if [[ -z "${DISTUTILS_DISABLE_VERSIONING_OF_PYTHON_SCRIPTS}" && "${BASH_VERSINFO[0]}" -ge 4 ]]; then |
|
|
256 | rename_scripts_with_versioned_shebangs |
|
|
257 | fi |
|
|
258 | |
|
|
259 | _distutils_hook post |
|
|
260 | } |
|
|
261 | python_execute_function ${DISTUTILS_USE_SEPARATE_SOURCE_DIRECTORIES:+-s} distutils_installation "$@" |
|
|
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 | |
|
|
271 | echo "$(PYTHON -A)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" install --root="${D}" --no-compile "$@" |
|
|
272 | "$(PYTHON -A)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" install --root="${D}" --no-compile "$@" || die "Installation failed" |
|
|
273 | fi |
|
|
274 | |
|
|
275 | if [[ -e "${D}usr/local" ]]; then |
|
|
276 | die "Illegal installation into /usr/local" |
|
|
277 | fi |
|
|
278 | |
|
|
279 | local default_docs |
|
|
280 | default_docs="AUTHORS Change* CHANGELOG CONTRIBUTORS KNOWN_BUGS MAINTAINERS MANIFEST* NEWS PKG-INFO README* TODO" |
|
|
281 | |
|
|
282 | local doc |
|
|
283 | for doc in ${default_docs}; do |
83 | [ -s "$doc" ] && dodoc $doc |
284 | [[ -s "${doc}" ]] && dodoc "${doc}" |
84 | done |
285 | done |
85 | |
286 | |
86 | [ -n "${DOCS}" ] && dodoc ${DOCS} |
287 | if [[ -n "${DOCS}" ]]; then |
|
|
288 | dodoc ${DOCS} || die "dodoc failed" |
|
|
289 | fi |
|
|
290 | } |
|
|
291 | |
|
|
292 | # @FUNCTION: distutils_pkg_postinst |
|
|
293 | # @DESCRIPTION: |
|
|
294 | # The distutils pkg_postinst function. 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. |
|
|
298 | distutils_pkg_postinst() { |
|
|
299 | if [[ "${EBUILD_PHASE}" != "postinst" ]]; then |
|
|
300 | die "${FUNCNAME}() can be used only in pkg_postinst() phase" |
|
|
301 | fi |
|
|
302 | |
|
|
303 | local pylibdir pymod |
|
|
304 | if [[ -z "${PYTHON_MODNAME}" ]]; then |
|
|
305 | for pylibdir in "${ROOT}"/usr/$(get_libdir)/python*; do |
|
|
306 | if [[ -d "${pylibdir}/site-packages/${PN}" ]]; then |
|
|
307 | PYTHON_MODNAME="${PN}" |
|
|
308 | fi |
|
|
309 | done |
|
|
310 | fi |
|
|
311 | |
|
|
312 | if ! has "${EAPI:-0}" 0 1 2 || [[ -n "${SUPPORT_PYTHON_ABIS}" ]]; then |
|
|
313 | python_mod_optimize ${PYTHON_MODNAME} |
|
|
314 | else |
|
|
315 | for pymod in ${PYTHON_MODNAME}; do |
|
|
316 | python_mod_optimize "$(python_get_sitedir)/${pymod}" |
|
|
317 | done |
|
|
318 | fi |
87 | } |
319 | } |
88 | |
320 | |
89 | # @FUNCTION: distutils_pkg_postrm |
321 | # @FUNCTION: distutils_pkg_postrm |
90 | # @DESCRIPTION: |
322 | # @DESCRIPTION: |
91 | # 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. |
92 | distutils_pkg_postrm() { |
327 | distutils_pkg_postrm() { |
93 | PYTHON_MODNAME=${PYTHON_MODNAME:-${PN}} |
328 | if [[ "${EBUILD_PHASE}" != "postrm" ]]; then |
|
|
329 | die "${FUNCNAME}() can be used only in pkg_postrm() phase" |
|
|
330 | fi |
94 | |
331 | |
95 | if has_version ">=dev-lang/python-2.3"; then |
332 | local pylibdir pymod |
96 | ebegin "Performing Python Module Cleanup .." |
333 | if [[ -z "${PYTHON_MODNAME}" ]]; then |
|
|
334 | for pylibdir in "${ROOT}"/usr/$(get_libdir)/python*; do |
|
|
335 | if [[ -d "${pylibdir}/site-packages/${PN}" ]]; then |
|
|
336 | PYTHON_MODNAME="${PN}" |
|
|
337 | fi |
|
|
338 | done |
|
|
339 | fi |
|
|
340 | |
97 | if [ -n "${PYTHON_MODNAME}" ]; then |
341 | if [[ -n "${PYTHON_MODNAME}" ]]; then |
|
|
342 | if ! has "${EAPI:-0}" 0 1 2 || [[ -n "${SUPPORT_PYTHON_ABIS}" ]]; then |
|
|
343 | python_mod_cleanup ${PYTHON_MODNAME} |
|
|
344 | else |
98 | for pymod in ${PYTHON_MODNAME}; do |
345 | for pymod in ${PYTHON_MODNAME}; do |
99 | for moddir in "`ls -d --color=none -1 ${ROOT}usr/$(get_libdir)/python*/site-packages/${pymod} 2> /dev/null`"; do |
346 | for pylibdir in "${ROOT}"/usr/$(get_libdir)/python*; do |
100 | python_mod_cleanup ${moddir} |
347 | if [[ -d "${pylibdir}/site-packages/${pymod}" ]]; then |
|
|
348 | python_mod_cleanup "${pylibdir#${ROOT}}/site-packages/${pymod}" |
|
|
349 | fi |
101 | done |
350 | done |
102 | done |
351 | done |
|
|
352 | fi |
103 | else |
353 | else |
104 | python_mod_cleanup |
354 | python_mod_cleanup |
105 | fi |
|
|
106 | eend 0 |
|
|
107 | fi |
|
|
108 | } |
|
|
109 | |
|
|
110 | # @FUNCTION: distutils_pkg_postinst |
|
|
111 | # @DESCRIPTION: |
|
|
112 | # This is a generic optimization, you should override it if your package |
|
|
113 | # installs things in another directory. This function is exported |
|
|
114 | distutils_pkg_postinst() { |
|
|
115 | PYTHON_MODNAME=${PYTHON_MODNAME:-${PN}} |
|
|
116 | |
|
|
117 | if has_version ">=dev-lang/python-2.3"; then |
|
|
118 | python_version |
|
|
119 | for pymod in ${PYTHON_MODNAME}; do |
|
|
120 | python_mod_optimize \ |
|
|
121 | /usr/$(get_libdir)/python${PYVER}/site-packages/${pymod} |
|
|
122 | done |
|
|
123 | fi |
355 | fi |
124 | } |
356 | } |
125 | |
357 | |
126 | # @FUNCTION: distutils_python_version |
358 | # @FUNCTION: distutils_python_version |
127 | # @DESCRIPTION: |
359 | # @DESCRIPTION: |
128 | # Calls python_version, so that you can use something like |
360 | # Deprecated wrapper function for deprecated python_version(). |
129 | # e.g. insinto ${ROOT}/usr/include/python${PYVER} |
|
|
130 | 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 | |
131 | python_version |
367 | python_version |
132 | } |
368 | } |
133 | |
369 | |
134 | # @FUNCTION: distutils_python_tkinter |
370 | # @FUNCTION: distutils_python_tkinter |
135 | # @DESCRIPTION: |
371 | # @DESCRIPTION: |
136 | # Checks for if tkinter support is compiled into python |
372 | # Deprecated wrapper function for python_tkinter_exists(). |
137 | 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 | |
138 | python_tkinter_exists |
379 | python_tkinter_exists |
139 | } |
380 | } |
140 | |
|
|
141 | EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_postinst pkg_postrm |
|
|