| 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.37 2007/01/27 11:21:45 kloeri 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_compile() { |
51 | distutils_src_unpack() { |
| 38 | ${python} setup.py build "$@" || die "compilation failed" |
52 | unpack ${A} |
|
|
53 | cd "${S}" |
|
|
54 | |
|
|
55 | has "${EAPI:-0}" 0 1 && distutils_src_prepare |
| 39 | } |
56 | } |
| 40 | |
57 | |
|
|
58 | # @FUNCTION: distutils_src_prepare |
|
|
59 | # @DESCRIPTION: |
|
|
60 | # The distutils src_prepare function, this function is exported |
| 41 | distutils_src_install() { |
61 | distutils_src_prepare() { |
| 42 | |
62 | # remove ez_setup stuff to prevent packages |
| 43 | # need this for python-2.5 + setuptools in cases where |
63 | # from installing setuptools on their own |
| 44 | # a package uses distutils but does not install anything |
64 | rm -rf ez_setup* |
| 45 | # in site-packages. (eg. dev-java/java-config-2.x) |
65 | echo "def use_setuptools(*args, **kwargs): pass" > ez_setup.py |
| 46 | # - liquidx (14/08/2006) |
|
|
| 47 | pylibdir="$(${python} -c 'from distutils.sysconfig import get_python_lib; print get_python_lib()')" |
|
|
| 48 | [ -n "${pylibdir}" ] && dodir "${pylibdir}" |
|
|
| 49 | |
|
|
| 50 | if has_version ">=dev-lang/python-2.3"; then |
|
|
| 51 | ${python} setup.py install --root=${D} --no-compile "$@" || die |
|
|
| 52 | else |
|
|
| 53 | ${python} setup.py install --root=${D} "$@" || die |
|
|
| 54 | fi |
|
|
| 55 | |
|
|
| 56 | DDOCS="CHANGELOG KNOWN_BUGS MAINTAINERS PKG-INFO CONTRIBUTORS TODO" |
|
|
| 57 | DDOCS="${DDOCS} Change* MANIFEST* README*" |
|
|
| 58 | |
|
|
| 59 | for doc in ${DDOCS}; do |
|
|
| 60 | [ -s "$doc" ] && dodoc $doc |
|
|
| 61 | done |
|
|
| 62 | |
|
|
| 63 | [ -n "${DOCS}" ] && dodoc ${DOCS} |
|
|
| 64 | |
|
|
| 65 | # deprecated! please use DOCS instead. |
|
|
| 66 | [ -n "${mydoc}" ] && dodoc ${mydoc} |
|
|
| 67 | } |
66 | } |
| 68 | |
67 | |
| 69 | # generic pyc/pyo cleanup script. |
68 | # @FUNCTION: distutils_src_compile |
| 70 | |
69 | # @DESCRIPTION: |
| 71 | distutils_pkg_postrm() { |
70 | # The distutils src_compile function, this function is exported |
| 72 | PYTHON_MODNAME=${PYTHON_MODNAME:-${PN}} |
71 | distutils_src_compile() { |
| 73 | |
72 | if ! has "${EAPI:-0}" 0 1 2 || [[ -n "${SUPPORT_PYTHON_ABIS}" ]]; then |
| 74 | if has_version ">=dev-lang/python-2.3"; then |
73 | build_modules() { |
| 75 | ebegin "Performing Python Module Cleanup .." |
74 | echo "$(get_python)" setup.py build -b "build-${PYTHON_ABI}" "$@" |
| 76 | if [ -n "${PYTHON_MODNAME}" ]; then |
75 | "$(get_python)" setup.py build -b "build-${PYTHON_ABI}" "$@" |
| 77 | for pymod in ${PYTHON_MODNAME}; do |
76 | } |
| 78 | for moddir in "`ls -d --color=none -1 ${ROOT}usr/$(get_libdir)/python*/site-packages/${pymod} 2> /dev/null`"; do |
77 | python_execute_function build_modules "$@" |
| 79 | python_mod_cleanup ${moddir} |
|
|
| 80 | done |
|
|
| 81 | done |
|
|
| 82 | else |
78 | else |
| 83 | python_mod_cleanup |
79 | ${python} setup.py build "$@" || die "compilation failed" |
| 84 | fi |
|
|
| 85 | eend 0 |
|
|
| 86 | fi |
80 | fi |
| 87 | } |
81 | } |
| 88 | |
82 | |
| 89 | # this is a generic optimization, you should override it if your package |
83 | # @FUNCTION: distutils_src_install |
| 90 | # installs things in another directory |
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) |
|
|
88 | distutils_src_install() { |
| 91 | |
89 | |
|
|
90 | # Mark the package to be rebuilt after a python upgrade. |
|
|
91 | python_need_rebuild |
|
|
92 | |
|
|
93 | if ! has "${EAPI:-0}" 0 1 2 || [[ -n "${SUPPORT_PYTHON_ABIS}" ]]; then |
|
|
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 "$@" |
|
|
106 | else |
|
|
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" |
|
|
115 | fi |
|
|
116 | |
|
|
117 | DDOCS="CHANGELOG KNOWN_BUGS MAINTAINERS PKG-INFO CONTRIBUTORS TODO NEWS" |
|
|
118 | DDOCS="${DDOCS} Change* MANIFEST* README* AUTHORS" |
|
|
119 | |
|
|
120 | local doc |
|
|
121 | for doc in ${DDOCS}; do |
|
|
122 | [[ -s "$doc" ]] && dodoc $doc |
|
|
123 | done |
|
|
124 | |
|
|
125 | [[ -n "${DOCS}" ]] && dodoc ${DOCS} |
|
|
126 | } |
|
|
127 | |
|
|
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 |
|
|
140 | |
|
|
141 | ebegin "Performing cleanup of Python modules..." |
|
|
142 | if [[ -n "${PYTHON_MODNAME}" ]]; then |
|
|
143 | for pymod in ${PYTHON_MODNAME}; 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 |
|
|
147 | python_mod_cleanup "${pymod}" |
|
|
148 | else |
|
|
149 | python_mod_cleanup "${pylibdir#${ROOT}}/site-packages/${pymod}" |
|
|
150 | fi |
|
|
151 | fi |
|
|
152 | done |
|
|
153 | done |
|
|
154 | else |
|
|
155 | python_mod_cleanup |
|
|
156 | fi |
|
|
157 | eend 0 |
|
|
158 | } |
|
|
159 | |
|
|
160 | # @FUNCTION: distutils_pkg_postinst |
|
|
161 | # @DESCRIPTION: |
|
|
162 | # This is a generic optimization, you should override it if your package |
|
|
163 | # installs modules in another directory. This function is exported. |
| 92 | distutils_pkg_postinst() { |
164 | distutils_pkg_postinst() { |
| 93 | PYTHON_MODNAME=${PYTHON_MODNAME:-${PN}} |
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 |
| 94 | |
173 | |
| 95 | if has_version ">=dev-lang/python-2.3"; then |
174 | if ! has "${EAPI:-0}" 0 1 2 || [[ -n "${SUPPORT_PYTHON_ABIS}" ]]; then |
|
|
175 | for pymod in ${PYTHON_MODNAME}; do |
|
|
176 | python_mod_optimize "${pymod}" |
|
|
177 | done |
|
|
178 | else |
| 96 | python_version |
179 | python_version |
| 97 | for pymod in ${PYTHON_MODNAME}; do |
180 | for pymod in ${PYTHON_MODNAME}; do |
| 98 | if [ -d "${ROOT}usr/$(get_libdir)/python${PYVER}/site-packages/${pymod}" ]; then |
|
|
| 99 | python_mod_optimize ${ROOT}usr/$(get_libdir)/python${PYVER}/site-packages/${pymod} |
181 | python_mod_optimize "/usr/$(get_libdir)/python${PYVER}/site-packages/${pymod}" |
| 100 | fi |
|
|
| 101 | done |
182 | done |
| 102 | fi |
183 | fi |
| 103 | } |
184 | } |
| 104 | |
185 | |
|
|
186 | # @FUNCTION: distutils_python_version |
|
|
187 | # @DESCRIPTION: |
|
|
188 | # Calls python_version, so that you can use something like |
| 105 | # e.g. insinto ${ROOT}/usr/include/python${PYVER} |
189 | # e.g. insinto ${ROOT}/usr/include/python${PYVER} |
| 106 | |
|
|
| 107 | distutils_python_version() { |
190 | distutils_python_version() { |
| 108 | python_version |
191 | python_version |
| 109 | } |
192 | } |
| 110 | |
193 | |
|
|
194 | # @FUNCTION: distutils_python_tkinter |
|
|
195 | # @DESCRIPTION: |
| 111 | # checks for if tkinter support is compiled into python |
196 | # Checks for if tkinter support is compiled into python |
| 112 | distutils_python_tkinter() { |
197 | distutils_python_tkinter() { |
| 113 | if ! python -c "import Tkinter" >/dev/null 2>&1; then |
198 | python_tkinter_exists |
| 114 | eerror "You need to recompile python with Tkinter support." |
|
|
| 115 | eerror "Try adding 'dev-lang/python X tk' to:" |
|
|
| 116 | eerror "/etc/portage/package.use" |
|
|
| 117 | echo |
|
|
| 118 | die "missing tkinter support with installed python" |
|
|
| 119 | fi |
|
|
| 120 | } |
199 | } |
| 121 | |
|
|
| 122 | EXPORT_FUNCTIONS src_compile src_install pkg_postinst pkg_postrm |
|
|