| 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.47 2008/05/29 15:24:51 hawking Exp $ |
3 | # $Header: /var/cvsroot/gentoo-x86/eclass/distutils.eclass,v 1.57 2009/08/02 00:30:29 arfrever Exp $ |
| 4 | |
4 | |
| 5 | # @ECLASS: distutils.eclass |
5 | # @ECLASS: distutils.eclass |
| 6 | # @MAINTAINER: |
6 | # @MAINTAINER: |
| 7 | # Alastair Tse <liquidx@gentoo.org> |
7 | # <python@gentoo.org> |
| 8 | # |
8 | # |
| 9 | # Original author: Jon Nelson <jnelson@gentoo.org> |
9 | # Original author: Jon Nelson <jnelson@gentoo.org> |
| 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 |
| … | |
… | |
| 14 | # the Gentoo Linux system. |
14 | # the Gentoo Linux system. |
| 15 | # |
15 | # |
| 16 | # It inherits python, multilib, and eutils |
16 | # It inherits python, multilib, and eutils |
| 17 | |
17 | |
| 18 | inherit python multilib eutils |
18 | inherit python multilib eutils |
|
|
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 |
| 19 | |
28 | |
| 20 | # @ECLASS-VARIABLE: PYTHON_SLOT_VERSION |
29 | # @ECLASS-VARIABLE: PYTHON_SLOT_VERSION |
| 21 | # @DESCRIPTION: |
30 | # @DESCRIPTION: |
| 22 | # This helps make it possible to add extensions to python slots. |
31 | # This helps make it possible to add extensions to python slots. |
| 23 | # Normally only a -py21- ebuild would set PYTHON_SLOT_VERSION. |
32 | # Normally only a -py21- ebuild would set PYTHON_SLOT_VERSION. |
| … | |
… | |
| 41 | # The distutils src_unpack function, this function is exported |
50 | # The distutils src_unpack function, this function is exported |
| 42 | distutils_src_unpack() { |
51 | distutils_src_unpack() { |
| 43 | unpack ${A} |
52 | unpack ${A} |
| 44 | cd "${S}" |
53 | cd "${S}" |
| 45 | |
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() { |
| 46 | # remove ez_setup stuff to prevent packages |
62 | # remove ez_setup stuff to prevent packages |
| 47 | # from installing setuptools on their own |
63 | # from installing setuptools on their own |
| 48 | rm -rf ez_setup* |
64 | rm -rf ez_setup* |
| 49 | echo "def use_setuptools(*args, **kwargs): pass" > ez_setup.py |
65 | echo "def use_setuptools(*args, **kwargs): pass" > ez_setup.py |
| 50 | } |
66 | } |
| 51 | |
67 | |
| 52 | # @FUNCTION: distutils_src_compile |
68 | # @FUNCTION: distutils_src_compile |
| 53 | # @DESCRIPTION: |
69 | # @DESCRIPTION: |
| 54 | # The distutils src_compile function, this function is exported |
70 | # The distutils src_compile function, this function is exported |
| 55 | 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 |
| 56 | ${python} setup.py build "$@" || die "compilation failed" |
79 | ${python} setup.py build "$@" || die "compilation failed" |
|
|
80 | fi |
| 57 | } |
81 | } |
| 58 | |
82 | |
| 59 | # @FUNCTION: distutils_src_install |
83 | # @FUNCTION: distutils_src_install |
| 60 | # @DESCRIPTION: |
84 | # @DESCRIPTION: |
| 61 | # The distutils src_install function, this function is exported. |
85 | # The distutils src_install function, this function is exported. |
| 62 | # It also installs the "standard docs" (CHANGELOG, Change*, KNOWN_BUGS, MAINTAINERS, |
86 | # It also installs the "standard docs" (CHANGELOG, Change*, KNOWN_BUGS, MAINTAINERS, |
| 63 | # PKG-INFO, CONTRIBUTORS, TODO, NEWS, MANIFEST*, README*, and AUTHORS) |
87 | # PKG-INFO, CONTRIBUTORS, TODO, NEWS, MANIFEST*, README*, and AUTHORS) |
| 64 | distutils_src_install() { |
88 | distutils_src_install() { |
| 65 | |
89 | |
| 66 | # need this for python-2.5 + setuptools in cases where |
90 | # Mark the package to be rebuilt after a python upgrade. |
| 67 | # a package uses distutils but does not install anything |
91 | python_need_rebuild |
| 68 | # in site-packages. (eg. dev-java/java-config-2.x) |
|
|
| 69 | # - liquidx (14/08/2006) |
|
|
| 70 | pylibdir="$(${python} -c 'from distutils.sysconfig import get_python_lib; print get_python_lib()')" |
|
|
| 71 | [ -n "${pylibdir}" ] && dodir "${pylibdir}" |
|
|
| 72 | |
92 | |
| 73 | if has_version ">=dev-lang/python-2.3"; then |
93 | if ! has "${EAPI:-0}" 0 1 2 || [[ -n "${SUPPORT_PYTHON_ABIS}" ]]; then |
| 74 | ${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 "$@" |
| 75 | else |
106 | else |
| 76 | ${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" |
| 77 | fi |
115 | fi |
| 78 | |
116 | |
| 79 | DDOCS="CHANGELOG KNOWN_BUGS MAINTAINERS PKG-INFO CONTRIBUTORS TODO NEWS" |
117 | DDOCS="CHANGELOG KNOWN_BUGS MAINTAINERS PKG-INFO CONTRIBUTORS TODO NEWS" |
| 80 | DDOCS="${DDOCS} Change* MANIFEST* README* AUTHORS" |
118 | DDOCS="${DDOCS} Change* MANIFEST* README* AUTHORS" |
| 81 | |
119 | |
|
|
120 | local doc |
| 82 | for doc in ${DDOCS}; do |
121 | for doc in ${DDOCS}; do |
| 83 | [ -s "$doc" ] && dodoc $doc |
122 | [[ -s "$doc" ]] && dodoc $doc |
| 84 | done |
123 | done |
| 85 | |
124 | |
| 86 | [ -n "${DOCS}" ] && dodoc ${DOCS} |
125 | [[ -n "${DOCS}" ]] && dodoc ${DOCS} |
| 87 | } |
126 | } |
| 88 | |
127 | |
| 89 | # @FUNCTION: distutils_pkg_postrm |
128 | # @FUNCTION: distutils_pkg_postrm |
| 90 | # @DESCRIPTION: |
129 | # @DESCRIPTION: |
| 91 | # Generic pyc/pyo cleanup script. This function is exported. |
130 | # Generic pyc/pyo cleanup script. This function is exported. |
| 92 | distutils_pkg_postrm() { |
131 | distutils_pkg_postrm() { |
| 93 | PYTHON_MODNAME=${PYTHON_MODNAME:-${PN}} |
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 |
| 94 | |
140 | |
| 95 | if has_version ">=dev-lang/python-2.3"; then |
141 | ebegin "Performing cleanup of Python modules..." |
| 96 | ebegin "Performing Python Module Cleanup .." |
|
|
| 97 | if [ -n "${PYTHON_MODNAME}" ]; then |
142 | if [[ -n "${PYTHON_MODNAME}" ]]; then |
| 98 | for pymod in ${PYTHON_MODNAME}; do |
143 | for pymod in ${PYTHON_MODNAME}; do |
| 99 | 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 |
| 100 | python_mod_cleanup ${moddir} |
147 | python_mod_cleanup "${pymod}" |
| 101 | done |
148 | else |
|
|
149 | python_mod_cleanup "${pylibdir#${ROOT}}/site-packages/${pymod}" |
|
|
150 | fi |
|
|
151 | fi |
| 102 | done |
152 | done |
|
|
153 | done |
| 103 | else |
154 | else |
| 104 | python_mod_cleanup |
155 | python_mod_cleanup |
| 105 | fi |
|
|
| 106 | eend 0 |
|
|
| 107 | fi |
156 | fi |
|
|
157 | eend 0 |
| 108 | } |
158 | } |
| 109 | |
159 | |
| 110 | # @FUNCTION: distutils_pkg_postinst |
160 | # @FUNCTION: distutils_pkg_postinst |
| 111 | # @DESCRIPTION: |
161 | # @DESCRIPTION: |
| 112 | # 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 |
| 113 | # installs things in another directory. This function is exported |
163 | # installs modules in another directory. This function is exported. |
| 114 | distutils_pkg_postinst() { |
164 | distutils_pkg_postinst() { |
| 115 | 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 |
| 116 | |
173 | |
| 117 | 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 |
| 118 | python_version |
179 | python_version |
| 119 | for pymod in ${PYTHON_MODNAME}; do |
180 | for pymod in ${PYTHON_MODNAME}; do |
| 120 | python_mod_optimize \ |
|
|
| 121 | /usr/$(get_libdir)/python${PYVER}/site-packages/${pymod} |
181 | python_mod_optimize "/usr/$(get_libdir)/python${PYVER}/site-packages/${pymod}" |
| 122 | done |
182 | done |
| 123 | fi |
183 | fi |
| 124 | } |
184 | } |
| 125 | |
185 | |
| 126 | # @FUNCTION: distutils_python_version |
186 | # @FUNCTION: distutils_python_version |
| … | |
… | |
| 135 | # @DESCRIPTION: |
195 | # @DESCRIPTION: |
| 136 | # Checks for if tkinter support is compiled into python |
196 | # Checks for if tkinter support is compiled into python |
| 137 | distutils_python_tkinter() { |
197 | distutils_python_tkinter() { |
| 138 | python_tkinter_exists |
198 | python_tkinter_exists |
| 139 | } |
199 | } |
| 140 | |
|
|
| 141 | EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_postinst pkg_postrm |
|
|