| 1 | # Copyright 1999-2004 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.45 2008/01/23 22:19:04 hawking Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/distutils.eclass,v 1.57 2009/08/02 00:30:29 arfrever Exp $ |
|
|
4 | |
|
|
5 | # @ECLASS: distutils.eclass |
|
|
6 | # @MAINTAINER: |
|
|
7 | # <python@gentoo.org> |
| 4 | # |
8 | # |
| 5 | # Author: Jon Nelson <jnelson@gentoo.org> |
9 | # Original author: Jon Nelson <jnelson@gentoo.org> |
| 6 | # Current Maintainer: Alastair Tse <liquidx@gentoo.org> |
10 | # @BLURB: This eclass allows easier installation of distutils-based python modules |
| 7 | # |
11 | # @DESCRIPTION: |
| 8 | # The distutils eclass is designed to allow easier installation of |
12 | # The distutils eclass is designed to allow easier installation of |
| 9 | # distutils-based python modules and their incorporation into |
13 | # distutils-based python modules and their incorporation into |
| 10 | # the Gentoo Linux system. |
14 | # the Gentoo Linux system. |
| 11 | # |
15 | # |
| 12 | # - Features: |
16 | # It inherits python, multilib, and eutils |
| 13 | # distutils_src_compile() - does python setup.py build |
|
|
| 14 | # distutils_src_install() - does python setup.py install and install docs |
|
|
| 15 | # distutils_python_version() - sets PYVER/PYVER_MAJOR/PYVER_MINOR |
|
|
| 16 | # distutils_python_tkinter() - checks for tkinter support in python |
|
|
| 17 | # |
|
|
| 18 | # - Variables: |
|
|
| 19 | # PYTHON_SLOT_VERSION - for Zope support |
|
|
| 20 | # DOCS - additional DOCS |
|
|
| 21 | |
17 | |
| 22 | inherit python multilib eutils |
18 | inherit python multilib eutils |
| 23 | |
19 | |
|
|
20 | case "${EAPI:-0}" in |
|
|
21 | 0|1) |
|
|
22 | EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_postinst pkg_postrm |
|
|
23 | ;; |
|
|
24 | *) |
|
|
25 | EXPORT_FUNCTIONS src_unpack src_prepare src_compile src_install pkg_postinst pkg_postrm |
|
|
26 | ;; |
|
|
27 | esac |
|
|
28 | |
|
|
29 | # @ECLASS-VARIABLE: PYTHON_SLOT_VERSION |
|
|
30 | # @DESCRIPTION: |
| 24 | # This helps make it possible to add extensions to python slots. |
31 | # This helps make it possible to add extensions to python slots. |
| 25 | # Normally only a -py21- ebuild would set PYTHON_SLOT_VERSION. |
32 | # Normally only a -py21- ebuild would set PYTHON_SLOT_VERSION. |
| 26 | if [ "${PYTHON_SLOT_VERSION}" = "2.1" ] ; then |
33 | if [ "${PYTHON_SLOT_VERSION}" = "2.1" ] ; then |
| 27 | DEPEND="=dev-lang/python-2.1*" |
34 | DEPEND="=dev-lang/python-2.1*" |
| 28 | python="python2.1" |
35 | python="python2.1" |
| … | |
… | |
| 32 | else |
39 | else |
| 33 | DEPEND="virtual/python" |
40 | DEPEND="virtual/python" |
| 34 | python="python" |
41 | python="python" |
| 35 | fi |
42 | fi |
| 36 | |
43 | |
|
|
44 | # @ECLASS-VARIABLE: DOCS |
|
|
45 | # @DESCRIPTION: |
|
|
46 | # Additional DOCS |
|
|
47 | |
|
|
48 | # @FUNCTION: distutils_src_unpack |
|
|
49 | # @DESCRIPTION: |
|
|
50 | # The distutils src_unpack function, this function is exported |
| 37 | distutils_src_unpack() { |
51 | distutils_src_unpack() { |
| 38 | unpack ${A} |
52 | unpack ${A} |
| 39 | cd "${S}" |
53 | cd "${S}" |
| 40 | |
54 | |
|
|
55 | has "${EAPI:-0}" 0 1 && distutils_src_prepare |
|
|
56 | } |
|
|
57 | |
|
|
58 | # @FUNCTION: distutils_src_prepare |
|
|
59 | # @DESCRIPTION: |
|
|
60 | # The distutils src_prepare function, this function is exported |
|
|
61 | distutils_src_prepare() { |
| 41 | # remove ez_setup stuff to prevent packages |
62 | # remove ez_setup stuff to prevent packages |
| 42 | # from installing setuptools on their own |
63 | # from installing setuptools on their own |
| 43 | rm -rf ez_setup* |
64 | rm -rf ez_setup* |
| 44 | echo "def use_setuptools(*args, **kwargs): pass" > ez_setup.py |
65 | echo "def use_setuptools(*args, **kwargs): pass" > ez_setup.py |
| 45 | } |
66 | } |
| 46 | |
67 | |
|
|
68 | # @FUNCTION: distutils_src_compile |
|
|
69 | # @DESCRIPTION: |
|
|
70 | # The distutils src_compile function, this function is exported |
| 47 | distutils_src_compile() { |
71 | distutils_src_compile() { |
|
|
72 | if ! has "${EAPI:-0}" 0 1 2 || [[ -n "${SUPPORT_PYTHON_ABIS}" ]]; then |
|
|
73 | build_modules() { |
|
|
74 | echo "$(get_python)" setup.py build -b "build-${PYTHON_ABI}" "$@" |
|
|
75 | "$(get_python)" setup.py build -b "build-${PYTHON_ABI}" "$@" |
|
|
76 | } |
|
|
77 | python_execute_function build_modules "$@" |
|
|
78 | else |
| 48 | ${python} setup.py build "$@" || die "compilation failed" |
79 | ${python} setup.py build "$@" || die "compilation failed" |
|
|
80 | fi |
| 49 | } |
81 | } |
| 50 | |
82 | |
|
|
83 | # @FUNCTION: distutils_src_install |
|
|
84 | # @DESCRIPTION: |
|
|
85 | # The distutils src_install function, this function is exported. |
|
|
86 | # It also installs the "standard docs" (CHANGELOG, Change*, KNOWN_BUGS, MAINTAINERS, |
|
|
87 | # PKG-INFO, CONTRIBUTORS, TODO, NEWS, MANIFEST*, README*, and AUTHORS) |
| 51 | distutils_src_install() { |
88 | distutils_src_install() { |
| 52 | |
89 | |
| 53 | # need this for python-2.5 + setuptools in cases where |
90 | # Mark the package to be rebuilt after a python upgrade. |
| 54 | # a package uses distutils but does not install anything |
91 | python_need_rebuild |
| 55 | # in site-packages. (eg. dev-java/java-config-2.x) |
|
|
| 56 | # - liquidx (14/08/2006) |
|
|
| 57 | pylibdir="$(${python} -c 'from distutils.sysconfig import get_python_lib; print get_python_lib()')" |
|
|
| 58 | [ -n "${pylibdir}" ] && dodir "${pylibdir}" |
|
|
| 59 | |
92 | |
| 60 | if has_version ">=dev-lang/python-2.3"; then |
93 | if ! has "${EAPI:-0}" 0 1 2 || [[ -n "${SUPPORT_PYTHON_ABIS}" ]]; then |
| 61 | ${python} setup.py install --root=${D} --no-compile "$@" || die |
94 | install_modules() { |
|
|
95 | # need this for python-2.5 + setuptools in cases where |
|
|
96 | # a package uses distutils but does not install anything |
|
|
97 | # in site-packages. (eg. dev-java/java-config-2.x) |
|
|
98 | # - liquidx (14/08/2006) |
|
|
99 | pylibdir="$("$(get_python)" -c 'from distutils.sysconfig import get_python_lib; print(get_python_lib())')" |
|
|
100 | [[ -n "${pylibdir}" ]] && dodir "${pylibdir}" |
|
|
101 | |
|
|
102 | echo "$(get_python)" setup.py build -b "build-${PYTHON_ABI}" install --root="${D}" --no-compile "$@" |
|
|
103 | "$(get_python)" setup.py build -b "build-${PYTHON_ABI}" install --root="${D}" --no-compile "$@" |
|
|
104 | } |
|
|
105 | python_execute_function install_modules "$@" |
| 62 | else |
106 | else |
| 63 | ${python} setup.py install --root=${D} "$@" || die |
107 | # need this for python-2.5 + setuptools in cases where |
|
|
108 | # a package uses distutils but does not install anything |
|
|
109 | # in site-packages. (eg. dev-java/java-config-2.x) |
|
|
110 | # - liquidx (14/08/2006) |
|
|
111 | pylibdir="$(${python} -c 'from distutils.sysconfig import get_python_lib; print(get_python_lib())')" |
|
|
112 | [[ -n "${pylibdir}" ]] && dodir "${pylibdir}" |
|
|
113 | |
|
|
114 | ${python} setup.py install --root="${D}" --no-compile "$@" || die "python setup.py install failed" |
| 64 | fi |
115 | fi |
| 65 | |
116 | |
| 66 | DDOCS="CHANGELOG KNOWN_BUGS MAINTAINERS PKG-INFO CONTRIBUTORS TODO NEWS" |
117 | DDOCS="CHANGELOG KNOWN_BUGS MAINTAINERS PKG-INFO CONTRIBUTORS TODO NEWS" |
| 67 | DDOCS="${DDOCS} Change* MANIFEST* README* AUTHORS" |
118 | DDOCS="${DDOCS} Change* MANIFEST* README* AUTHORS" |
| 68 | |
119 | |
|
|
120 | local doc |
| 69 | for doc in ${DDOCS}; do |
121 | for doc in ${DDOCS}; do |
| 70 | [ -s "$doc" ] && dodoc $doc |
122 | [[ -s "$doc" ]] && dodoc $doc |
| 71 | done |
123 | done |
| 72 | |
124 | |
| 73 | [ -n "${DOCS}" ] && dodoc ${DOCS} |
125 | [[ -n "${DOCS}" ]] && dodoc ${DOCS} |
| 74 | } |
126 | } |
| 75 | |
127 | |
| 76 | # generic pyc/pyo cleanup script. |
128 | # @FUNCTION: distutils_pkg_postrm |
|
|
129 | # @DESCRIPTION: |
|
|
130 | # Generic pyc/pyo cleanup script. This function is exported. |
|
|
131 | distutils_pkg_postrm() { |
|
|
132 | local pylibdir pymod |
|
|
133 | if [[ -z "${PYTHON_MODNAME}" ]]; then |
|
|
134 | for pylibdir in "${ROOT}"/usr/$(get_libdir)/python*; do |
|
|
135 | if [[ -d "${pylibdir}/site-packages/${PN}" ]]; then |
|
|
136 | PYTHON_MODNAME="${PN}" |
|
|
137 | fi |
|
|
138 | done |
|
|
139 | fi |
| 77 | |
140 | |
| 78 | distutils_pkg_postrm() { |
141 | ebegin "Performing cleanup of Python modules..." |
| 79 | PYTHON_MODNAME=${PYTHON_MODNAME:-${PN}} |
|
|
| 80 | |
|
|
| 81 | if has_version ">=dev-lang/python-2.3"; then |
|
|
| 82 | ebegin "Performing Python Module Cleanup .." |
|
|
| 83 | if [ -n "${PYTHON_MODNAME}" ]; then |
142 | if [[ -n "${PYTHON_MODNAME}" ]]; then |
| 84 | for pymod in ${PYTHON_MODNAME}; do |
143 | for pymod in ${PYTHON_MODNAME}; do |
| 85 | for moddir in "`ls -d --color=none -1 ${ROOT}usr/$(get_libdir)/python*/site-packages/${pymod} 2> /dev/null`"; do |
144 | for pylibdir in "${ROOT}"/usr/$(get_libdir)/python*; do |
|
|
145 | if [[ -d "${pylibdir}/site-packages/${pymod}" ]]; then |
|
|
146 | if ! has "${EAPI:-0}" 0 1 2 || [[ -n "${SUPPORT_PYTHON_ABIS}" ]]; then |
| 86 | python_mod_cleanup ${moddir} |
147 | python_mod_cleanup "${pymod}" |
| 87 | done |
148 | else |
|
|
149 | python_mod_cleanup "${pylibdir#${ROOT}}/site-packages/${pymod}" |
|
|
150 | fi |
|
|
151 | fi |
| 88 | done |
152 | done |
|
|
153 | done |
| 89 | else |
154 | else |
| 90 | python_mod_cleanup |
155 | python_mod_cleanup |
| 91 | fi |
|
|
| 92 | eend 0 |
|
|
| 93 | fi |
156 | fi |
|
|
157 | eend 0 |
| 94 | } |
158 | } |
| 95 | |
159 | |
|
|
160 | # @FUNCTION: distutils_pkg_postinst |
|
|
161 | # @DESCRIPTION: |
| 96 | # this is a generic optimization, you should override it if your package |
162 | # This is a generic optimization, you should override it if your package |
| 97 | # installs things in another directory |
163 | # installs modules in another directory. This function is exported. |
|
|
164 | distutils_pkg_postinst() { |
|
|
165 | local pylibdir pymod |
|
|
166 | if [[ -z "${PYTHON_MODNAME}" ]]; then |
|
|
167 | for pylibdir in "${ROOT}"/usr/$(get_libdir)/python*; do |
|
|
168 | if [[ -d "${pylibdir}/site-packages/${PN}" ]]; then |
|
|
169 | PYTHON_MODNAME="${PN}" |
|
|
170 | fi |
|
|
171 | done |
|
|
172 | fi |
| 98 | |
173 | |
| 99 | distutils_pkg_postinst() { |
174 | if ! has "${EAPI:-0}" 0 1 2 || [[ -n "${SUPPORT_PYTHON_ABIS}" ]]; then |
| 100 | PYTHON_MODNAME=${PYTHON_MODNAME:-${PN}} |
175 | for pymod in ${PYTHON_MODNAME}; do |
| 101 | |
176 | python_mod_optimize "${pymod}" |
| 102 | # strip trailing slash |
177 | done |
| 103 | myroot="${ROOT%/}" |
178 | else |
| 104 | |
|
|
| 105 | if has_version ">=dev-lang/python-2.3"; then |
|
|
| 106 | python_version |
179 | python_version |
| 107 | for pymod in ${PYTHON_MODNAME}; do |
180 | for pymod in ${PYTHON_MODNAME}; do |
| 108 | if [ -d "${myroot}/usr/$(get_libdir)/python${PYVER}/site-packages/${pymod}" ]; then |
|
|
| 109 | python_mod_optimize ${myroot}/usr/$(get_libdir)/python${PYVER}/site-packages/${pymod} |
181 | python_mod_optimize "/usr/$(get_libdir)/python${PYVER}/site-packages/${pymod}" |
| 110 | fi |
|
|
| 111 | done |
182 | done |
| 112 | fi |
183 | fi |
| 113 | } |
184 | } |
| 114 | |
185 | |
|
|
186 | # @FUNCTION: distutils_python_version |
|
|
187 | # @DESCRIPTION: |
|
|
188 | # Calls python_version, so that you can use something like |
| 115 | # e.g. insinto ${ROOT}/usr/include/python${PYVER} |
189 | # e.g. insinto ${ROOT}/usr/include/python${PYVER} |
| 116 | |
|
|
| 117 | distutils_python_version() { |
190 | distutils_python_version() { |
| 118 | python_version |
191 | python_version |
| 119 | } |
192 | } |
| 120 | |
193 | |
|
|
194 | # @FUNCTION: distutils_python_tkinter |
|
|
195 | # @DESCRIPTION: |
| 121 | # checks for if tkinter support is compiled into python |
196 | # Checks for if tkinter support is compiled into python |
| 122 | distutils_python_tkinter() { |
197 | distutils_python_tkinter() { |
| 123 | python_tkinter_exists |
198 | python_tkinter_exists |
| 124 | } |
199 | } |
| 125 | |
|
|
| 126 | EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_postinst pkg_postrm |
|
|