| 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.61 2009/09/07 02:34:10 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" |
|
|
| 30 | else |
|
|
| 31 | DEPEND="virtual/python" |
27 | DEPEND="virtual/python" |
|
|
28 | RDEPEND="${DEPEND}" |
| 32 | python="python" |
29 | python="python" |
| 33 | fi |
30 | |
|
|
31 | # @ECLASS-VARIABLE: DISTUTILS_USE_SEPARATE_SOURCE_DIRECTORIES |
|
|
32 | # @DESCRIPTION: |
|
|
33 | # Set this to use separate source directories for each enabled version of Python. |
|
|
34 | |
|
|
35 | # @ECLASS-VARIABLE: DISTUTILS_GLOBAL_OPTIONS |
|
|
36 | # @DESCRIPTION: |
|
|
37 | # Global options passed to setup.py. |
| 34 | |
38 | |
| 35 | # @ECLASS-VARIABLE: DOCS |
39 | # @ECLASS-VARIABLE: DOCS |
| 36 | # @DESCRIPTION: |
40 | # @DESCRIPTION: |
| 37 | # Additional DOCS |
41 | # Additional DOCS |
| 38 | |
42 | |
| 39 | # @FUNCTION: distutils_src_unpack |
43 | # @FUNCTION: distutils_src_unpack |
| 40 | # @DESCRIPTION: |
44 | # @DESCRIPTION: |
| 41 | # The distutils src_unpack function, this function is exported |
45 | # The distutils src_unpack function, this function is exported |
| 42 | distutils_src_unpack() { |
46 | distutils_src_unpack() { |
|
|
47 | if [[ "${EBUILD_PHASE}" != "unpack" ]]; then |
|
|
48 | die "${FUNCNAME}() can be used only in src_unpack() phase" |
|
|
49 | fi |
|
|
50 | |
| 43 | unpack ${A} |
51 | unpack ${A} |
| 44 | cd "${S}" |
52 | cd "${S}" |
| 45 | |
53 | |
| 46 | # remove ez_setup stuff to prevent packages |
54 | has "${EAPI:-0}" 0 1 && distutils_src_prepare |
|
|
55 | } |
|
|
56 | |
|
|
57 | # @FUNCTION: distutils_src_prepare |
|
|
58 | # @DESCRIPTION: |
|
|
59 | # The distutils src_prepare function, this function is exported |
|
|
60 | distutils_src_prepare() { |
|
|
61 | if ! has "${EAPI:-0}" 0 1 && [[ "${EBUILD_PHASE}" != "prepare" ]]; then |
|
|
62 | die "${FUNCNAME}() can be used only in src_prepare() phase" |
|
|
63 | fi |
|
|
64 | |
|
|
65 | # Delete ez_setup files to prevent packages from installing |
| 47 | # from installing setuptools on their own |
66 | # setuptools on their own. |
|
|
67 | local ez_setup_py_existence |
|
|
68 | [[ -f ez_setup.py ]] && ez_setup_py_existence="1" |
| 48 | rm -rf ez_setup* |
69 | rm -fr ez_setup* |
|
|
70 | if [[ "${ez_setup_py_existence}" == "1" ]]; then |
| 49 | echo "def use_setuptools(*args, **kwargs): pass" > ez_setup.py |
71 | echo "def use_setuptools(*args, **kwargs): pass" > ez_setup.py |
|
|
72 | fi |
|
|
73 | |
|
|
74 | if [[ -n "${DISTUTILS_USE_SEPARATE_SOURCE_DIRECTORIES}" ]]; then |
|
|
75 | python_copy_sources |
|
|
76 | fi |
| 50 | } |
77 | } |
| 51 | |
78 | |
| 52 | # @FUNCTION: distutils_src_compile |
79 | # @FUNCTION: distutils_src_compile |
| 53 | # @DESCRIPTION: |
80 | # @DESCRIPTION: |
| 54 | # The distutils src_compile function, this function is exported |
81 | # The distutils src_compile function, this function is exported |
| 55 | distutils_src_compile() { |
82 | distutils_src_compile() { |
| 56 | ${python} setup.py build "$@" || die "compilation failed" |
83 | if [[ "${EBUILD_PHASE}" != "compile" ]]; then |
|
|
84 | die "${FUNCNAME}() can be used only in src_compile() phase" |
|
|
85 | fi |
|
|
86 | |
|
|
87 | if ! has "${EAPI:-0}" 0 1 2 || [[ -n "${SUPPORT_PYTHON_ABIS}" ]]; then |
|
|
88 | if [[ -n "${DISTUTILS_USE_SEPARATE_SOURCE_DIRECTORIES}" ]]; then |
|
|
89 | building() { |
|
|
90 | echo "$(PYTHON)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" build "$@" |
|
|
91 | "$(PYTHON)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" build "$@" |
|
|
92 | } |
|
|
93 | python_execute_function -s building "$@" |
|
|
94 | else |
|
|
95 | building() { |
|
|
96 | echo "$(PYTHON)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" build -b "build-${PYTHON_ABI}" "$@" |
|
|
97 | "$(PYTHON)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" build -b "build-${PYTHON_ABI}" "$@" |
|
|
98 | } |
|
|
99 | python_execute_function building "$@" |
|
|
100 | fi |
|
|
101 | else |
|
|
102 | echo ${python} setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" build "$@" |
|
|
103 | ${python} setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" build "$@" || die "Building failed" |
|
|
104 | fi |
| 57 | } |
105 | } |
| 58 | |
106 | |
| 59 | # @FUNCTION: distutils_src_install |
107 | # @FUNCTION: distutils_src_install |
| 60 | # @DESCRIPTION: |
108 | # @DESCRIPTION: |
| 61 | # The distutils src_install function, this function is exported. |
109 | # The distutils src_install function, this function is exported. |
| 62 | # It also installs the "standard docs" (CHANGELOG, Change*, KNOWN_BUGS, MAINTAINERS, |
110 | # It also installs the "standard docs" (CHANGELOG, Change*, KNOWN_BUGS, MAINTAINERS, |
| 63 | # PKG-INFO, CONTRIBUTORS, TODO, NEWS, MANIFEST*, README*, and AUTHORS) |
111 | # PKG-INFO, CONTRIBUTORS, TODO, NEWS, MANIFEST*, README*, and AUTHORS) |
| 64 | distutils_src_install() { |
112 | distutils_src_install() { |
|
|
113 | if [[ "${EBUILD_PHASE}" != "install" ]]; then |
|
|
114 | die "${FUNCNAME}() can be used only in src_install() phase" |
|
|
115 | fi |
|
|
116 | |
|
|
117 | local pylibdir |
| 65 | |
118 | |
| 66 | # Mark the package to be rebuilt after a python upgrade. |
119 | # Mark the package to be rebuilt after a python upgrade. |
| 67 | python_need_rebuild |
120 | python_need_rebuild |
| 68 | |
121 | |
|
|
122 | if ! has "${EAPI:-0}" 0 1 2 || [[ -n "${SUPPORT_PYTHON_ABIS}" ]]; then |
|
|
123 | if [[ -n "${DISTUTILS_USE_SEPARATE_SOURCE_DIRECTORIES}" ]]; then |
|
|
124 | installation() { |
|
|
125 | # need this for python-2.5 + setuptools in cases where |
|
|
126 | # a package uses distutils but does not install anything |
|
|
127 | # in site-packages. (eg. dev-java/java-config-2.x) |
|
|
128 | # - liquidx (14/08/2006) |
|
|
129 | pylibdir="$("$(PYTHON)" -c 'from distutils.sysconfig import get_python_lib; print(get_python_lib())')" |
|
|
130 | [[ -n "${pylibdir}" ]] && dodir "${pylibdir}" |
|
|
131 | |
|
|
132 | echo "$(PYTHON)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" install --root="${D}" --no-compile "$@" |
|
|
133 | "$(PYTHON)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" install --root="${D}" --no-compile "$@" |
|
|
134 | } |
|
|
135 | python_execute_function -s installation "$@" |
|
|
136 | else |
|
|
137 | installation() { |
|
|
138 | # need this for python-2.5 + setuptools in cases where |
|
|
139 | # a package uses distutils but does not install anything |
|
|
140 | # in site-packages. (eg. dev-java/java-config-2.x) |
|
|
141 | # - liquidx (14/08/2006) |
|
|
142 | pylibdir="$("$(PYTHON)" -c 'from distutils.sysconfig import get_python_lib; print(get_python_lib())')" |
|
|
143 | [[ -n "${pylibdir}" ]] && dodir "${pylibdir}" |
|
|
144 | |
|
|
145 | echo "$(PYTHON)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" build -b "build-${PYTHON_ABI}" install --root="${D}" --no-compile "$@" |
|
|
146 | "$(PYTHON)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" build -b "build-${PYTHON_ABI}" install --root="${D}" --no-compile "$@" |
|
|
147 | } |
|
|
148 | python_execute_function installation "$@" |
|
|
149 | fi |
|
|
150 | else |
| 69 | # need this for python-2.5 + setuptools in cases where |
151 | # need this for python-2.5 + setuptools in cases where |
| 70 | # a package uses distutils but does not install anything |
152 | # a package uses distutils but does not install anything |
| 71 | # in site-packages. (eg. dev-java/java-config-2.x) |
153 | # in site-packages. (eg. dev-java/java-config-2.x) |
| 72 | # - liquidx (14/08/2006) |
154 | # - liquidx (14/08/2006) |
| 73 | pylibdir="$(${python} -c 'from distutils.sysconfig import get_python_lib; print get_python_lib()')" |
155 | pylibdir="$(${python} -c 'from distutils.sysconfig import get_python_lib; print(get_python_lib())')" |
| 74 | [ -n "${pylibdir}" ] && dodir "${pylibdir}" |
156 | [[ -n "${pylibdir}" ]] && dodir "${pylibdir}" |
| 75 | |
157 | |
| 76 | if has_version ">=dev-lang/python-2.3"; then |
158 | echo ${python} setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" install --root="${D}" --no-compile "$@" |
| 77 | ${python} setup.py install --root="${D}" --no-compile "$@" ||\ |
159 | ${python} 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 |
160 | fi |
| 83 | |
161 | |
| 84 | DDOCS="CHANGELOG KNOWN_BUGS MAINTAINERS PKG-INFO CONTRIBUTORS TODO NEWS" |
162 | DDOCS="CHANGELOG KNOWN_BUGS MAINTAINERS PKG-INFO CONTRIBUTORS TODO NEWS" |
| 85 | DDOCS="${DDOCS} Change* MANIFEST* README* AUTHORS" |
163 | DDOCS="${DDOCS} Change* MANIFEST* README* AUTHORS" |
| 86 | |
164 | |
|
|
165 | local doc |
| 87 | for doc in ${DDOCS}; do |
166 | for doc in ${DDOCS}; do |
| 88 | [ -s "$doc" ] && dodoc $doc |
167 | [[ -s "$doc" ]] && dodoc $doc |
| 89 | done |
168 | done |
| 90 | |
169 | |
| 91 | [ -n "${DOCS}" ] && dodoc ${DOCS} |
170 | [[ -n "${DOCS}" ]] && dodoc ${DOCS} |
| 92 | } |
171 | } |
| 93 | |
172 | |
| 94 | # @FUNCTION: distutils_pkg_postrm |
173 | # @FUNCTION: distutils_pkg_postrm |
| 95 | # @DESCRIPTION: |
174 | # @DESCRIPTION: |
| 96 | # Generic pyc/pyo cleanup script. This function is exported. |
175 | # Generic pyc/pyo cleanup script. This function is exported. |
| 97 | distutils_pkg_postrm() { |
176 | distutils_pkg_postrm() { |
| 98 | local moddir pylibdir pymod |
177 | if [[ "${EBUILD_PHASE}" != "postrm" ]]; then |
| 99 | if [[ -z "${PYTHON_MODNAME}" ]]; then |
178 | die "${FUNCNAME}() can be used only in pkg_postrm() phase" |
| 100 | for pylibdir in "${ROOT}"/usr/$(get_libdir)/python*; do |
|
|
| 101 | if [[ -d "${pylibdir}"/site-packages/${PN} ]]; then |
|
|
| 102 | PYTHON_MODNAME=${PN} |
|
|
| 103 | fi |
|
|
| 104 | done |
|
|
| 105 | fi |
|
|
| 106 | |
|
|
| 107 | if has_version ">=dev-lang/python-2.3"; then |
|
|
| 108 | ebegin "Performing Python Module Cleanup .." |
|
|
| 109 | if [[ -n "${PYTHON_MODNAME}" ]]; then |
|
|
| 110 | for pymod in ${PYTHON_MODNAME}; do |
|
|
| 111 | for pylibdir in "${ROOT}"/usr/$(get_libdir)/python*; do |
|
|
| 112 | if [[ -d "${pylibdir}"/site-packages/${pymod} ]]; then |
|
|
| 113 | python_mod_cleanup "${pylibdir#${ROOT}}"/site-packages/${pymod} |
|
|
| 114 | fi |
|
|
| 115 | done |
|
|
| 116 | done |
|
|
| 117 | else |
|
|
| 118 | python_mod_cleanup |
|
|
| 119 | fi |
179 | fi |
| 120 | eend 0 |
|
|
| 121 | fi |
|
|
| 122 | } |
|
|
| 123 | |
180 | |
| 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 |
181 | local pylibdir pymod |
| 130 | if [[ -z "${PYTHON_MODNAME}" ]]; then |
182 | if [[ -z "${PYTHON_MODNAME}" ]]; then |
| 131 | for pylibdir in "${ROOT}"/usr/$(get_libdir)/python*; do |
183 | for pylibdir in "${ROOT}"/usr/$(get_libdir)/python*; do |
| 132 | if [[ -d "${pylibdir}"/site-packages/${PN} ]]; then |
184 | if [[ -d "${pylibdir}/site-packages/${PN}" ]]; then |
| 133 | PYTHON_MODNAME=${PN} |
185 | PYTHON_MODNAME="${PN}" |
| 134 | fi |
186 | fi |
| 135 | done |
187 | done |
| 136 | fi |
188 | fi |
| 137 | |
189 | |
| 138 | if has_version ">=dev-lang/python-2.3"; then |
190 | if [[ -n "${PYTHON_MODNAME}" ]]; then |
|
|
191 | for pymod in ${PYTHON_MODNAME}; do |
|
|
192 | for pylibdir in "${ROOT}"/usr/$(get_libdir)/python*; do |
|
|
193 | if [[ -d "${pylibdir}/site-packages/${pymod}" ]]; then |
|
|
194 | if ! has "${EAPI:-0}" 0 1 2 || [[ -n "${SUPPORT_PYTHON_ABIS}" ]]; then |
|
|
195 | python_mod_cleanup "${pymod}" |
|
|
196 | else |
|
|
197 | python_mod_cleanup "${pylibdir#${ROOT}}/site-packages/${pymod}" |
|
|
198 | fi |
|
|
199 | fi |
|
|
200 | done |
|
|
201 | done |
|
|
202 | else |
|
|
203 | python_mod_cleanup |
|
|
204 | fi |
|
|
205 | } |
|
|
206 | |
|
|
207 | # @FUNCTION: distutils_pkg_postinst |
|
|
208 | # @DESCRIPTION: |
|
|
209 | # This is a generic optimization, you should override it if your package |
|
|
210 | # installs modules in another directory. This function is exported. |
|
|
211 | distutils_pkg_postinst() { |
|
|
212 | if [[ "${EBUILD_PHASE}" != "postinst" ]]; then |
|
|
213 | die "${FUNCNAME}() can be used only in pkg_postinst() phase" |
|
|
214 | fi |
|
|
215 | |
|
|
216 | local pylibdir pymod |
|
|
217 | if [[ -z "${PYTHON_MODNAME}" ]]; then |
|
|
218 | for pylibdir in "${ROOT}"/usr/$(get_libdir)/python*; do |
|
|
219 | if [[ -d "${pylibdir}/site-packages/${PN}" ]]; then |
|
|
220 | PYTHON_MODNAME="${PN}" |
|
|
221 | fi |
|
|
222 | done |
|
|
223 | fi |
|
|
224 | |
|
|
225 | if ! has "${EAPI:-0}" 0 1 2 || [[ -n "${SUPPORT_PYTHON_ABIS}" ]]; then |
|
|
226 | for pymod in ${PYTHON_MODNAME}; do |
|
|
227 | python_mod_optimize "${pymod}" |
|
|
228 | done |
|
|
229 | else |
| 139 | python_version |
230 | python_version |
| 140 | for pymod in ${PYTHON_MODNAME}; do |
231 | for pymod in ${PYTHON_MODNAME}; do |
| 141 | python_mod_optimize \ |
|
|
| 142 | /usr/$(get_libdir)/python${PYVER}/site-packages/${pymod} |
232 | python_mod_optimize "/usr/$(get_libdir)/python${PYVER}/site-packages/${pymod}" |
| 143 | done |
233 | done |
| 144 | fi |
234 | fi |
| 145 | } |
235 | } |
| 146 | |
236 | |
| 147 | # @FUNCTION: distutils_python_version |
237 | # @FUNCTION: distutils_python_version |
| … | |
… | |
| 156 | # @DESCRIPTION: |
246 | # @DESCRIPTION: |
| 157 | # Checks for if tkinter support is compiled into python |
247 | # Checks for if tkinter support is compiled into python |
| 158 | distutils_python_tkinter() { |
248 | distutils_python_tkinter() { |
| 159 | python_tkinter_exists |
249 | python_tkinter_exists |
| 160 | } |
250 | } |
| 161 | |
|
|
| 162 | EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_postinst pkg_postrm |
|
|