| 1 | # Copyright 1999-2008 Gentoo Foundation |
1 | # Copyright 1999-2009 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.54 2008/10/28 21:29:28 hawking Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/distutils.eclass,v 1.67 2009/11/28 18:39:27 arfrever Exp $ |
| 4 | |
4 | |
| 5 | # @ECLASS: distutils.eclass |
5 | # @ECLASS: distutils.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # <python@gentoo.org> |
7 | # <python@gentoo.org> |
| 8 | # |
8 | # |
| … | |
… | |
| 10 | # @BLURB: This eclass allows easier installation of distutils-based python modules |
10 | # @BLURB: This eclass allows easier installation of distutils-based python modules |
| 11 | # @DESCRIPTION: |
11 | # @DESCRIPTION: |
| 12 | # The distutils eclass is designed to allow easier installation of |
12 | # The distutils eclass is designed to allow easier installation of |
| 13 | # distutils-based python modules and their incorporation into |
13 | # distutils-based python modules and their incorporation into |
| 14 | # the Gentoo Linux system. |
14 | # the Gentoo Linux system. |
| 15 | # |
|
|
| 16 | # It inherits python, multilib, and eutils |
|
|
| 17 | |
15 | |
| 18 | inherit python multilib eutils |
16 | inherit eutils multilib python |
| 19 | |
17 | |
| 20 | # @ECLASS-VARIABLE: PYTHON_SLOT_VERSION |
18 | case "${EAPI:-0}" in |
| 21 | # @DESCRIPTION: |
19 | 0|1) |
| 22 | # This helps make it possible to add extensions to python slots. |
20 | EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_postinst pkg_postrm |
| 23 | # Normally only a -py21- ebuild would set PYTHON_SLOT_VERSION. |
21 | ;; |
| 24 | if [ "${PYTHON_SLOT_VERSION}" = "2.1" ] ; then |
22 | *) |
| 25 | DEPEND="=dev-lang/python-2.1*" |
23 | EXPORT_FUNCTIONS src_unpack src_prepare src_compile src_install pkg_postinst pkg_postrm |
| 26 | python="python2.1" |
24 | ;; |
| 27 | elif [ "${PYTHON_SLOT_VERSION}" = "2.3" ] ; then |
25 | esac |
| 28 | DEPEND="=dev-lang/python-2.3*" |
26 | |
| 29 | python="python2.3" |
27 | if [[ -z "${DISTUTILS_DISABLE_PYTHON_DEPENDENCY}" ]]; then |
| 30 | else |
|
|
| 31 | DEPEND="virtual/python" |
28 | DEPEND="virtual/python" |
| 32 | python="python" |
29 | RDEPEND="${DEPEND}" |
| 33 | fi |
30 | fi |
|
|
31 | python="python" |
|
|
32 | |
|
|
33 | # @ECLASS-VARIABLE: DISTUTILS_USE_SEPARATE_SOURCE_DIRECTORIES |
|
|
34 | # @DESCRIPTION: |
|
|
35 | # Set this to use separate source directories for each enabled version of Python. |
|
|
36 | |
|
|
37 | # @ECLASS-VARIABLE: DISTUTILS_GLOBAL_OPTIONS |
|
|
38 | # @DESCRIPTION: |
|
|
39 | # Global options passed to setup.py. |
| 34 | |
40 | |
| 35 | # @ECLASS-VARIABLE: DOCS |
41 | # @ECLASS-VARIABLE: DOCS |
| 36 | # @DESCRIPTION: |
42 | # @DESCRIPTION: |
| 37 | # Additional DOCS |
43 | # Additional DOCS |
| 38 | |
44 | |
|
|
45 | _distutils_hook() { |
|
|
46 | if [[ "$#" -ne 1 ]]; then |
|
|
47 | die "${FUNCNAME}() requires 1 argument" |
|
|
48 | fi |
|
|
49 | if [[ "$(type -t "distutils_src_${EBUILD_PHASE}_$1_hook")" == "function" ]]; then |
|
|
50 | "distutils_src_${EBUILD_PHASE}_$1_hook" |
|
|
51 | fi |
|
|
52 | } |
|
|
53 | |
| 39 | # @FUNCTION: distutils_src_unpack |
54 | # @FUNCTION: distutils_src_unpack |
| 40 | # @DESCRIPTION: |
55 | # @DESCRIPTION: |
| 41 | # The distutils src_unpack function, this function is exported |
56 | # The distutils src_unpack function, this function is exported. |
| 42 | distutils_src_unpack() { |
57 | distutils_src_unpack() { |
|
|
58 | if [[ "${EBUILD_PHASE}" != "unpack" ]]; then |
|
|
59 | die "${FUNCNAME}() can be used only in src_unpack() phase" |
|
|
60 | fi |
|
|
61 | |
| 43 | unpack ${A} |
62 | unpack ${A} |
| 44 | cd "${S}" |
63 | cd "${S}" |
| 45 | |
64 | |
| 46 | # remove ez_setup stuff to prevent packages |
65 | has "${EAPI:-0}" 0 1 && distutils_src_prepare |
| 47 | # from installing setuptools on their own |
66 | } |
|
|
67 | |
|
|
68 | # @FUNCTION: distutils_src_prepare |
|
|
69 | # @DESCRIPTION: |
|
|
70 | # The distutils src_prepare function, this function is exported. |
|
|
71 | distutils_src_prepare() { |
|
|
72 | if ! has "${EAPI:-0}" 0 1 && [[ "${EBUILD_PHASE}" != "prepare" ]]; then |
|
|
73 | die "${FUNCNAME}() can be used only in src_prepare() phase" |
|
|
74 | fi |
|
|
75 | |
|
|
76 | # Delete ez_setup files to prevent packages from installing |
|
|
77 | # Setuptools on their own. |
|
|
78 | local ez_setup_existence="0" |
|
|
79 | [[ -d ez_setup || -f ez_setup.py ]] && ez_setup_existence="1" |
| 48 | rm -rf ez_setup* |
80 | rm -fr ez_setup* |
|
|
81 | if [[ "${ez_setup_existence}" == "1" ]]; then |
| 49 | echo "def use_setuptools(*args, **kwargs): pass" > ez_setup.py |
82 | echo "def use_setuptools(*args, **kwargs): pass" > ez_setup.py |
|
|
83 | fi |
|
|
84 | |
|
|
85 | # Delete distribute_setup files to prevent packages from installing |
|
|
86 | # Distribute on their own. |
|
|
87 | local distribute_setup_existence="0" |
|
|
88 | [[ -d distribute_setup || -f distribute_setup.py ]] && distribute_setup_existence="1" |
|
|
89 | rm -fr distribute_setup* |
|
|
90 | if [[ "${distribute_setup_existence}" == "1" ]]; then |
|
|
91 | echo "def use_setuptools(*args, **kwargs): pass" > distribute_setup.py |
|
|
92 | fi |
|
|
93 | |
|
|
94 | if [[ -n "${DISTUTILS_USE_SEPARATE_SOURCE_DIRECTORIES}" ]]; then |
|
|
95 | python_copy_sources |
|
|
96 | fi |
| 50 | } |
97 | } |
| 51 | |
98 | |
| 52 | # @FUNCTION: distutils_src_compile |
99 | # @FUNCTION: distutils_src_compile |
| 53 | # @DESCRIPTION: |
100 | # @DESCRIPTION: |
| 54 | # The distutils src_compile function, this function is exported |
101 | # The distutils src_compile function, this function is exported. |
|
|
102 | # In newer EAPIs this function calls distutils_src_compile_pre_hook() and |
|
|
103 | # distutils_src_compile_post_hook(), if they are defined. |
| 55 | distutils_src_compile() { |
104 | distutils_src_compile() { |
| 56 | ${python} setup.py build "$@" || die "compilation failed" |
105 | if [[ "${EBUILD_PHASE}" != "compile" ]]; then |
|
|
106 | die "${FUNCNAME}() can be used only in src_compile() phase" |
|
|
107 | fi |
|
|
108 | |
|
|
109 | if ! has "${EAPI:-0}" 0 1 2 || [[ -n "${SUPPORT_PYTHON_ABIS}" ]]; then |
|
|
110 | if [[ -n "${DISTUTILS_USE_SEPARATE_SOURCE_DIRECTORIES}" ]]; then |
|
|
111 | building() { |
|
|
112 | _distutils_hook pre |
|
|
113 | |
|
|
114 | echo "$(PYTHON)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" build "$@" |
|
|
115 | "$(PYTHON)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" build "$@" || return "$?" |
|
|
116 | |
|
|
117 | _distutils_hook post |
|
|
118 | } |
|
|
119 | python_execute_function -s building "$@" |
|
|
120 | else |
|
|
121 | building() { |
|
|
122 | _distutils_hook pre |
|
|
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 |
|
|
131 | else |
|
|
132 | python_version |
|
|
133 | echo "$(PYTHON "${PYVER}")" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" build "$@" |
|
|
134 | "$(PYTHON "${PYVER}")" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" build "$@" || die "Building failed" |
|
|
135 | fi |
| 57 | } |
136 | } |
| 58 | |
137 | |
| 59 | # @FUNCTION: distutils_src_install |
138 | # @FUNCTION: distutils_src_install |
| 60 | # @DESCRIPTION: |
139 | # @DESCRIPTION: |
| 61 | # The distutils src_install function, this function is exported. |
140 | # The distutils src_install function, this function is exported. |
|
|
141 | # In newer EAPIs this function calls distutils_src_install_pre_hook() and |
|
|
142 | # distutils_src_install_post_hook(), if they are defined. |
| 62 | # It also installs the "standard docs" (CHANGELOG, Change*, KNOWN_BUGS, MAINTAINERS, |
143 | # It also installs the "standard docs" (CHANGELOG, Change*, KNOWN_BUGS, MAINTAINERS, |
| 63 | # PKG-INFO, CONTRIBUTORS, TODO, NEWS, MANIFEST*, README*, and AUTHORS) |
144 | # PKG-INFO, CONTRIBUTORS, TODO, NEWS, MANIFEST*, README*, and AUTHORS) |
| 64 | distutils_src_install() { |
145 | distutils_src_install() { |
|
|
146 | if [[ "${EBUILD_PHASE}" != "install" ]]; then |
|
|
147 | die "${FUNCNAME}() can be used only in src_install() phase" |
|
|
148 | fi |
|
|
149 | |
|
|
150 | local pylibdir |
| 65 | |
151 | |
| 66 | # Mark the package to be rebuilt after a python upgrade. |
152 | # Mark the package to be rebuilt after a python upgrade. |
| 67 | python_need_rebuild |
153 | python_need_rebuild |
| 68 | |
154 | |
|
|
155 | if ! has "${EAPI:-0}" 0 1 2 || [[ -n "${SUPPORT_PYTHON_ABIS}" ]]; then |
|
|
156 | if [[ -n "${DISTUTILS_USE_SEPARATE_SOURCE_DIRECTORIES}" ]]; then |
|
|
157 | installation() { |
|
|
158 | _distutils_hook pre |
|
|
159 | |
|
|
160 | # need this for python-2.5 + setuptools in cases where |
|
|
161 | # a package uses distutils but does not install anything |
|
|
162 | # in site-packages. (eg. dev-java/java-config-2.x) |
|
|
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 | |
|
|
167 | echo "$(PYTHON)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" install --root="${D}" --no-compile "$@" |
|
|
168 | "$(PYTHON)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" install --root="${D}" --no-compile "$@" || return "$?" |
|
|
169 | |
|
|
170 | _distutils_hook post |
|
|
171 | } |
|
|
172 | python_execute_function -s installation "$@" |
|
|
173 | else |
|
|
174 | installation() { |
|
|
175 | _distutils_hook pre |
|
|
176 | |
|
|
177 | # need this for python-2.5 + setuptools in cases where |
|
|
178 | # a package uses distutils but does not install anything |
|
|
179 | # in site-packages. (eg. dev-java/java-config-2.x) |
|
|
180 | # - liquidx (14/08/2006) |
|
|
181 | pylibdir="$("$(PYTHON)" -c 'from distutils.sysconfig import get_python_lib; print(get_python_lib())')" |
|
|
182 | [[ -n "${pylibdir}" ]] && dodir "${pylibdir}" |
|
|
183 | |
|
|
184 | echo "$(PYTHON)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" build -b "build-${PYTHON_ABI}" install --root="${D}" --no-compile "$@" |
|
|
185 | "$(PYTHON)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" build -b "build-${PYTHON_ABI}" install --root="${D}" --no-compile "$@" || return "$?" |
|
|
186 | |
|
|
187 | _distutils_hook post |
|
|
188 | } |
|
|
189 | python_execute_function installation "$@" |
|
|
190 | fi |
|
|
191 | else |
| 69 | # need this for python-2.5 + setuptools in cases where |
192 | # need this for python-2.5 + setuptools in cases where |
| 70 | # a package uses distutils but does not install anything |
193 | # a package uses distutils but does not install anything |
| 71 | # in site-packages. (eg. dev-java/java-config-2.x) |
194 | # in site-packages. (eg. dev-java/java-config-2.x) |
| 72 | # - liquidx (14/08/2006) |
195 | # - liquidx (14/08/2006) |
| 73 | pylibdir="$(${python} -c 'from distutils.sysconfig import get_python_lib; print get_python_lib()')" |
196 | pylibdir="$("$(PYTHON "${PYVER}")" -c 'from distutils.sysconfig import get_python_lib; print(get_python_lib())')" |
| 74 | [ -n "${pylibdir}" ] && dodir "${pylibdir}" |
197 | [[ -n "${pylibdir}" ]] && dodir "${pylibdir}" |
| 75 | |
198 | |
| 76 | if has_version ">=dev-lang/python-2.3"; then |
199 | echo "$(PYTHON "${PYVER}")" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" install --root="${D}" --no-compile "$@" |
| 77 | ${python} setup.py install --root="${D}" --no-compile "$@" ||\ |
200 | "$(PYTHON "${PYVER}")" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" install --root="${D}" --no-compile "$@" || die "Installation failed" |
| 78 | die "python setup.py install failed" |
|
|
| 79 | else |
|
|
| 80 | ${python} setup.py install --root="${D}" "$@" ||\ |
|
|
| 81 | die "python setup.py install failed" |
|
|
| 82 | fi |
201 | fi |
| 83 | |
202 | |
| 84 | DDOCS="CHANGELOG KNOWN_BUGS MAINTAINERS PKG-INFO CONTRIBUTORS TODO NEWS" |
203 | if [[ -e "${D}usr/local" ]]; then |
| 85 | DDOCS="${DDOCS} Change* MANIFEST* README* AUTHORS" |
204 | die "Illegal installation into /usr/local" |
|
|
205 | fi |
| 86 | |
206 | |
| 87 | for doc in ${DDOCS}; do |
207 | local default_docs |
|
|
208 | default_docs="AUTHORS Change* CHANGELOG CONTRIBUTORS KNOWN_BUGS MAINTAINERS MANIFEST* NEWS PKG-INFO README* TODO" |
|
|
209 | |
|
|
210 | local doc |
|
|
211 | for doc in ${default_docs}; do |
| 88 | [ -s "$doc" ] && dodoc $doc |
212 | [[ -s "${doc}" ]] && dodoc "${doc}" |
| 89 | done |
213 | done |
| 90 | |
214 | |
| 91 | [ -n "${DOCS}" ] && dodoc ${DOCS} |
215 | if [[ -n "${DOCS}" ]]; then |
|
|
216 | dodoc ${DOCS} || die "dodoc failed" |
|
|
217 | fi |
|
|
218 | } |
|
|
219 | |
|
|
220 | # @FUNCTION: distutils_pkg_postinst |
|
|
221 | # @DESCRIPTION: |
|
|
222 | # This is a generic optimization, you should override it if your package |
|
|
223 | # installs modules in another directory. This function is exported. |
|
|
224 | distutils_pkg_postinst() { |
|
|
225 | if [[ "${EBUILD_PHASE}" != "postinst" ]]; then |
|
|
226 | die "${FUNCNAME}() can be used only in pkg_postinst() phase" |
|
|
227 | fi |
|
|
228 | |
|
|
229 | local pylibdir pymod |
|
|
230 | if [[ -z "${PYTHON_MODNAME}" ]]; then |
|
|
231 | for pylibdir in "${ROOT}"/usr/$(get_libdir)/python*; do |
|
|
232 | if [[ -d "${pylibdir}/site-packages/${PN}" ]]; then |
|
|
233 | PYTHON_MODNAME="${PN}" |
|
|
234 | fi |
|
|
235 | done |
|
|
236 | fi |
|
|
237 | |
|
|
238 | if ! has "${EAPI:-0}" 0 1 2 || [[ -n "${SUPPORT_PYTHON_ABIS}" ]]; then |
|
|
239 | python_mod_optimize ${PYTHON_MODNAME} |
|
|
240 | else |
|
|
241 | for pymod in ${PYTHON_MODNAME}; do |
|
|
242 | python_mod_optimize "$(python_get_sitedir)/${pymod}" |
|
|
243 | done |
|
|
244 | fi |
| 92 | } |
245 | } |
| 93 | |
246 | |
| 94 | # @FUNCTION: distutils_pkg_postrm |
247 | # @FUNCTION: distutils_pkg_postrm |
| 95 | # @DESCRIPTION: |
248 | # @DESCRIPTION: |
| 96 | # Generic pyc/pyo cleanup script. This function is exported. |
249 | # Generic pyc/pyo cleanup script. This function is exported. |
| 97 | distutils_pkg_postrm() { |
250 | distutils_pkg_postrm() { |
|
|
251 | if [[ "${EBUILD_PHASE}" != "postrm" ]]; then |
|
|
252 | die "${FUNCNAME}() can be used only in pkg_postrm() phase" |
|
|
253 | fi |
|
|
254 | |
| 98 | local moddir pylibdir pymod |
255 | local pylibdir pymod |
| 99 | if [[ -z "${PYTHON_MODNAME}" ]]; then |
256 | if [[ -z "${PYTHON_MODNAME}" ]]; then |
| 100 | for pylibdir in "${ROOT}"/usr/$(get_libdir)/python*; do |
257 | for pylibdir in "${ROOT}"/usr/$(get_libdir)/python*; do |
| 101 | if [[ -d "${pylibdir}"/site-packages/${PN} ]]; then |
258 | if [[ -d "${pylibdir}/site-packages/${PN}" ]]; then |
| 102 | PYTHON_MODNAME=${PN} |
259 | PYTHON_MODNAME="${PN}" |
| 103 | fi |
260 | fi |
| 104 | done |
261 | done |
| 105 | fi |
262 | fi |
| 106 | |
263 | |
| 107 | if has_version ">=dev-lang/python-2.3"; then |
|
|
| 108 | ebegin "Performing Python Module Cleanup .." |
|
|
| 109 | if [[ -n "${PYTHON_MODNAME}" ]]; then |
264 | if [[ -n "${PYTHON_MODNAME}" ]]; then |
|
|
265 | if ! has "${EAPI:-0}" 0 1 2 || [[ -n "${SUPPORT_PYTHON_ABIS}" ]]; then |
|
|
266 | python_mod_cleanup ${PYTHON_MODNAME} |
|
|
267 | else |
| 110 | for pymod in ${PYTHON_MODNAME}; do |
268 | for pymod in ${PYTHON_MODNAME}; do |
| 111 | for pylibdir in "${ROOT}"/usr/$(get_libdir)/python*; do |
269 | for pylibdir in "${ROOT}"/usr/$(get_libdir)/python*; do |
| 112 | if [[ -d "${pylibdir}"/site-packages/${pymod} ]]; then |
270 | if [[ -d "${pylibdir}/site-packages/${pymod}" ]]; then |
| 113 | python_mod_cleanup "${pylibdir#${ROOT}}"/site-packages/${pymod} |
271 | python_mod_cleanup "${pylibdir#${ROOT}}/site-packages/${pymod}" |
| 114 | fi |
272 | fi |
| 115 | done |
273 | done |
| 116 | done |
274 | done |
| 117 | else |
|
|
| 118 | python_mod_cleanup |
|
|
| 119 | fi |
275 | fi |
| 120 | eend 0 |
276 | else |
| 121 | fi |
277 | python_mod_cleanup |
| 122 | } |
|
|
| 123 | |
|
|
| 124 | # @FUNCTION: distutils_pkg_postinst |
|
|
| 125 | # @DESCRIPTION: |
|
|
| 126 | # This is a generic optimization, you should override it if your package |
|
|
| 127 | # installs things in another directory. This function is exported |
|
|
| 128 | distutils_pkg_postinst() { |
|
|
| 129 | local pylibdir pymod |
|
|
| 130 | if [[ -z "${PYTHON_MODNAME}" ]]; then |
|
|
| 131 | for pylibdir in "${ROOT}"/usr/$(get_libdir)/python*; do |
|
|
| 132 | if [[ -d "${pylibdir}"/site-packages/${PN} ]]; then |
|
|
| 133 | PYTHON_MODNAME=${PN} |
|
|
| 134 | fi |
|
|
| 135 | done |
|
|
| 136 | fi |
|
|
| 137 | |
|
|
| 138 | if has_version ">=dev-lang/python-2.3"; then |
|
|
| 139 | python_version |
|
|
| 140 | for pymod in ${PYTHON_MODNAME}; do |
|
|
| 141 | python_mod_optimize \ |
|
|
| 142 | /usr/$(get_libdir)/python${PYVER}/site-packages/${pymod} |
|
|
| 143 | done |
|
|
| 144 | fi |
278 | fi |
| 145 | } |
279 | } |
| 146 | |
280 | |
| 147 | # @FUNCTION: distutils_python_version |
281 | # @FUNCTION: distutils_python_version |
| 148 | # @DESCRIPTION: |
282 | # @DESCRIPTION: |
| 149 | # Calls python_version, so that you can use something like |
283 | # Calls python_version, so that you can use something like |
| 150 | # e.g. insinto ${ROOT}/usr/include/python${PYVER} |
284 | # e.g. insinto ${ROOT}/usr/include/python${PYVER} |
| 151 | distutils_python_version() { |
285 | distutils_python_version() { |
| 152 | python_version |
286 | python_version |
| 153 | } |
287 | } |
| 154 | |
288 | |
| 155 | # @FUNCTION: distutils_python_tkinter |
289 | # @FUNCTION: distutils_python_tkinter |
| 156 | # @DESCRIPTION: |
290 | # @DESCRIPTION: |
| 157 | # Checks for if tkinter support is compiled into python |
291 | # Checks for if tkinter support is compiled into python |
| 158 | distutils_python_tkinter() { |
292 | distutils_python_tkinter() { |
| 159 | python_tkinter_exists |
293 | python_tkinter_exists |
| 160 | } |
294 | } |
| 161 | |
|
|
| 162 | EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_postinst pkg_postrm |
|
|