| 1 | # Copyright 1999-2003 Gentoo Technologies, Inc. |
1 | # Copyright 1999-2008 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.13 2003/09/09 17:18:27 liquidx Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/distutils.eclass,v 1.55 2009/02/18 14:43:31 pva 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 | ECLASS=distutils |
18 | inherit python multilib eutils |
| 23 | INHERITED="$INHERITED $ECLASS" |
|
|
| 24 | |
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: |
| 25 | # This helps make it possible to add extensions to python slots. |
31 | # This helps make it possible to add extensions to python slots. |
| 26 | # Normally only a -py21- ebuild would set PYTHON_SLOT_VERSION. |
32 | # Normally only a -py21- ebuild would set PYTHON_SLOT_VERSION. |
| 27 | if [ "${PYTHON_SLOT_VERSION}" = 2.1 ] ; then |
33 | if [ "${PYTHON_SLOT_VERSION}" = "2.1" ] ; then |
| 28 | newdepend "=dev-lang/python-2.1*" |
34 | DEPEND="=dev-lang/python-2.1*" |
| 29 | python="python2.1" |
35 | python="python2.1" |
|
|
36 | elif [ "${PYTHON_SLOT_VERSION}" = "2.3" ] ; then |
|
|
37 | DEPEND="=dev-lang/python-2.3*" |
|
|
38 | python="python2.3" |
| 30 | else |
39 | else |
| 31 | newdepend "virtual/python" |
40 | DEPEND="virtual/python" |
| 32 | python="python" |
41 | python="python" |
| 33 | fi |
42 | fi |
| 34 | |
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 |
| 35 | distutils_src_compile() { |
51 | distutils_src_unpack() { |
| 36 | ${python} setup.py build ${@} || die "compilation failed" |
52 | unpack ${A} |
|
|
53 | cd "${S}" |
|
|
54 | |
|
|
55 | has ${EAPI:-0} 0 1 && distutils_src_prepare |
| 37 | } |
56 | } |
| 38 | |
57 | |
|
|
58 | # @FUNCTION: distutils_src_prepare |
|
|
59 | # @DESCRIPTION: |
|
|
60 | # The distutils src_prepare function, this function is exported |
| 39 | distutils_src_install() { |
61 | distutils_src_prepare() { |
| 40 | ${python} setup.py install --root=${D} ${@} || die |
62 | # remove ez_setup stuff to prevent packages |
| 41 | |
63 | # from installing setuptools on their own |
| 42 | dodoc CHANGELOG COPYRIGHT KNOWN_BUGS MAINTAINERS |
64 | rm -rf ez_setup* |
| 43 | dodoc CONTRIBUTORS LICENSE COPYING* |
65 | echo "def use_setuptools(*args, **kwargs): pass" > ez_setup.py |
| 44 | dodoc Change* MANIFEST* README* |
|
|
| 45 | |
|
|
| 46 | [ -n "${DOCS}" ] && dodoc ${DOCS} |
|
|
| 47 | |
|
|
| 48 | # deprecated! please use DOCS instead. |
|
|
| 49 | [ -n "${mydoc}" ] && dodoc ${mydoc} |
|
|
| 50 | } |
66 | } |
| 51 | |
67 | |
| 52 | # e.g. insinto ${ROOT}/usr/include/python${PYVER} |
68 | # @FUNCTION: distutils_src_compile |
| 53 | |
69 | # @DESCRIPTION: |
| 54 | distutils_python_version() { |
70 | # The distutils src_compile function, this function is exported |
| 55 | local tmpstr="$(${python} -V 2>&1 )" |
71 | distutils_src_compile() { |
| 56 | export PYVER_ALL="${tmpstr#Python }" |
72 | ${python} setup.py build "$@" || die "compilation failed" |
| 57 | |
|
|
| 58 | export PYVER_MAJOR=$(echo ${PYVER_ALL} | cut -d. -f1) |
|
|
| 59 | export PYVER_MINOR=$(echo ${PYVER_ALL} | cut -d. -f2) |
|
|
| 60 | export PYVER_MICRO=$(echo ${PYVER_ALL} | cut -d. -f3-) |
|
|
| 61 | export PYVER="${PYVER_MAJOR}.${PYVER_MINOR}" |
|
|
| 62 | } |
73 | } |
| 63 | |
74 | |
| 64 | # checks for if tkinter support is compiled into python |
75 | # @FUNCTION: distutils_src_install |
| 65 | distutils_python_tkinter() { |
76 | # @DESCRIPTION: |
| 66 | if ! python -c "import Tkinter" >/dev/null 2>&1; then |
77 | # The distutils src_install function, this function is exported. |
| 67 | eerror "You need to recompile python with Tkinter support." |
78 | # It also installs the "standard docs" (CHANGELOG, Change*, KNOWN_BUGS, MAINTAINERS, |
| 68 | eerror "That means: USE='tcltk' emerge python" |
79 | # PKG-INFO, CONTRIBUTORS, TODO, NEWS, MANIFEST*, README*, and AUTHORS) |
| 69 | echo |
80 | distutils_src_install() { |
| 70 | die "missing tkinter support with installed python" |
81 | |
|
|
82 | # Mark the package to be rebuilt after a python upgrade. |
|
|
83 | python_need_rebuild |
|
|
84 | |
|
|
85 | # need this for python-2.5 + setuptools in cases where |
|
|
86 | # a package uses distutils but does not install anything |
|
|
87 | # in site-packages. (eg. dev-java/java-config-2.x) |
|
|
88 | # - liquidx (14/08/2006) |
|
|
89 | pylibdir="$(${python} -c 'from distutils.sysconfig import get_python_lib; print get_python_lib()')" |
|
|
90 | [ -n "${pylibdir}" ] && dodir "${pylibdir}" |
|
|
91 | |
|
|
92 | if has_version ">=dev-lang/python-2.3"; then |
|
|
93 | ${python} setup.py install --root="${D}" --no-compile "$@" ||\ |
|
|
94 | die "python setup.py install failed" |
|
|
95 | else |
|
|
96 | ${python} setup.py install --root="${D}" "$@" ||\ |
|
|
97 | die "python setup.py install failed" |
|
|
98 | fi |
|
|
99 | |
|
|
100 | DDOCS="CHANGELOG KNOWN_BUGS MAINTAINERS PKG-INFO CONTRIBUTORS TODO NEWS" |
|
|
101 | DDOCS="${DDOCS} Change* MANIFEST* README* AUTHORS" |
|
|
102 | |
|
|
103 | for doc in ${DDOCS}; do |
|
|
104 | [ -s "$doc" ] && dodoc $doc |
|
|
105 | done |
|
|
106 | |
|
|
107 | [ -n "${DOCS}" ] && dodoc ${DOCS} |
|
|
108 | } |
|
|
109 | |
|
|
110 | # @FUNCTION: distutils_pkg_postrm |
|
|
111 | # @DESCRIPTION: |
|
|
112 | # Generic pyc/pyo cleanup script. This function is exported. |
|
|
113 | distutils_pkg_postrm() { |
|
|
114 | local moddir pylibdir pymod |
|
|
115 | if [[ -z "${PYTHON_MODNAME}" ]]; then |
|
|
116 | for pylibdir in "${ROOT}"/usr/$(get_libdir)/python*; do |
|
|
117 | if [[ -d "${pylibdir}"/site-packages/${PN} ]]; then |
|
|
118 | PYTHON_MODNAME=${PN} |
|
|
119 | fi |
|
|
120 | done |
|
|
121 | fi |
|
|
122 | |
|
|
123 | if has_version ">=dev-lang/python-2.3"; then |
|
|
124 | ebegin "Performing Python Module Cleanup .." |
|
|
125 | if [[ -n "${PYTHON_MODNAME}" ]]; then |
|
|
126 | for pymod in ${PYTHON_MODNAME}; do |
|
|
127 | for pylibdir in "${ROOT}"/usr/$(get_libdir)/python*; do |
|
|
128 | if [[ -d "${pylibdir}"/site-packages/${pymod} ]]; then |
|
|
129 | python_mod_cleanup "${pylibdir#${ROOT}}"/site-packages/${pymod} |
|
|
130 | fi |
|
|
131 | done |
|
|
132 | done |
|
|
133 | else |
|
|
134 | python_mod_cleanup |
|
|
135 | fi |
|
|
136 | eend 0 |
| 71 | fi |
137 | fi |
| 72 | } |
138 | } |
| 73 | |
139 | |
| 74 | # export PYVER as well |
140 | # @FUNCTION: distutils_pkg_postinst |
| 75 | distutils_python_version |
141 | # @DESCRIPTION: |
|
|
142 | # This is a generic optimization, you should override it if your package |
|
|
143 | # installs things in another directory. This function is exported |
|
|
144 | distutils_pkg_postinst() { |
|
|
145 | local pylibdir pymod |
|
|
146 | if [[ -z "${PYTHON_MODNAME}" ]]; then |
|
|
147 | for pylibdir in "${ROOT}"/usr/$(get_libdir)/python*; do |
|
|
148 | if [[ -d "${pylibdir}"/site-packages/${PN} ]]; then |
|
|
149 | PYTHON_MODNAME=${PN} |
|
|
150 | fi |
|
|
151 | done |
|
|
152 | fi |
| 76 | |
153 | |
| 77 | EXPORT_FUNCTIONS src_compile src_install |
154 | if has_version ">=dev-lang/python-2.3"; then |
|
|
155 | python_version |
|
|
156 | for pymod in ${PYTHON_MODNAME}; do |
|
|
157 | python_mod_optimize \ |
|
|
158 | /usr/$(get_libdir)/python${PYVER}/site-packages/${pymod} |
|
|
159 | done |
|
|
160 | fi |
|
|
161 | } |
| 78 | |
162 | |
|
|
163 | # @FUNCTION: distutils_python_version |
|
|
164 | # @DESCRIPTION: |
|
|
165 | # Calls python_version, so that you can use something like |
|
|
166 | # e.g. insinto ${ROOT}/usr/include/python${PYVER} |
|
|
167 | distutils_python_version() { |
|
|
168 | python_version |
|
|
169 | } |
|
|
170 | |
|
|
171 | # @FUNCTION: distutils_python_tkinter |
|
|
172 | # @DESCRIPTION: |
|
|
173 | # Checks for if tkinter support is compiled into python |
|
|
174 | distutils_python_tkinter() { |
|
|
175 | python_tkinter_exists |
|
|
176 | } |
|
|
177 | |