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