| 1 |
# Copyright 1999-2009 Gentoo Foundation |
| 2 |
# Distributed under the terms of the GNU General Public License v2 |
| 3 |
# $Header: /var/cvsroot/gentoo-x86/eclass/distutils.eclass,v 1.60 2009/09/05 16:45:35 arfrever Exp $ |
| 4 |
|
| 5 |
# @ECLASS: distutils.eclass |
| 6 |
# @MAINTAINER: |
| 7 |
# <python@gentoo.org> |
| 8 |
# |
| 9 |
# Original author: Jon Nelson <jnelson@gentoo.org> |
| 10 |
# @BLURB: This eclass allows easier installation of distutils-based python modules |
| 11 |
# @DESCRIPTION: |
| 12 |
# The distutils eclass is designed to allow easier installation of |
| 13 |
# distutils-based python modules and their incorporation into |
| 14 |
# the Gentoo Linux system. |
| 15 |
|
| 16 |
inherit eutils multilib python |
| 17 |
|
| 18 |
case "${EAPI:-0}" in |
| 19 |
0|1) |
| 20 |
EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_postinst pkg_postrm |
| 21 |
;; |
| 22 |
*) |
| 23 |
EXPORT_FUNCTIONS src_unpack src_prepare src_compile src_install pkg_postinst pkg_postrm |
| 24 |
;; |
| 25 |
esac |
| 26 |
|
| 27 |
DEPEND="virtual/python" |
| 28 |
RDEPEND="${DEPEND}" |
| 29 |
python="python" |
| 30 |
|
| 31 |
# @ECLASS-VARIABLE: DISTUTILS_USE_SEPARATE_SOURCE_DIRECTORIES |
| 32 |
# @DESCRIPTION: |
| 33 |
# Set this to use separate source directories for each enabled version of Python. |
| 34 |
|
| 35 |
# @ECLASS-VARIABLE: DISTUTILS_GLOBAL_OPTIONS |
| 36 |
# @DESCRIPTION: |
| 37 |
# Global options passed to setup.py. |
| 38 |
|
| 39 |
# @ECLASS-VARIABLE: DOCS |
| 40 |
# @DESCRIPTION: |
| 41 |
# Additional DOCS |
| 42 |
|
| 43 |
# @FUNCTION: distutils_src_unpack |
| 44 |
# @DESCRIPTION: |
| 45 |
# The distutils src_unpack function, this function is exported |
| 46 |
distutils_src_unpack() { |
| 47 |
if [[ "${EBUILD_PHASE}" != "unpack" ]]; then |
| 48 |
die "${FUNCNAME}() can be used only in src_unpack() phase" |
| 49 |
fi |
| 50 |
|
| 51 |
unpack ${A} |
| 52 |
cd "${S}" |
| 53 |
|
| 54 |
has "${EAPI:-0}" 0 1 && distutils_src_prepare |
| 55 |
} |
| 56 |
|
| 57 |
# @FUNCTION: distutils_src_prepare |
| 58 |
# @DESCRIPTION: |
| 59 |
# The distutils src_prepare function, this function is exported |
| 60 |
distutils_src_prepare() { |
| 61 |
if ! has "${EAPI:-0}" 0 1 && [[ "${EBUILD_PHASE}" != "prepare" ]]; then |
| 62 |
die "${FUNCNAME}() can be used only in src_prepare() phase" |
| 63 |
fi |
| 64 |
|
| 65 |
# Delete ez_setup files to prevent packages from installing |
| 66 |
# setuptools on their own. |
| 67 |
local ez_setup_py_existence |
| 68 |
[[ -f ez_setup.py ]] && ez_setup_py_existence="1" |
| 69 |
rm -fr ez_setup* |
| 70 |
if [[ "${ez_setup_py_existence}" == "1" ]]; then |
| 71 |
echo "def use_setuptools(*args, **kwargs): pass" > ez_setup.py |
| 72 |
fi |
| 73 |
|
| 74 |
if [[ -n "${DISTUTILS_USE_SEPARATE_SOURCE_DIRECTORIES}" ]]; then |
| 75 |
python_copy_sources |
| 76 |
fi |
| 77 |
} |
| 78 |
|
| 79 |
# @FUNCTION: distutils_src_compile |
| 80 |
# @DESCRIPTION: |
| 81 |
# The distutils src_compile function, this function is exported |
| 82 |
distutils_src_compile() { |
| 83 |
if [[ "${EBUILD_PHASE}" != "compile" ]]; then |
| 84 |
die "${FUNCNAME}() can be used only in src_compile() phase" |
| 85 |
fi |
| 86 |
|
| 87 |
if ! has "${EAPI:-0}" 0 1 2 || [[ -n "${SUPPORT_PYTHON_ABIS}" ]]; then |
| 88 |
if [[ -n "${DISTUTILS_USE_SEPARATE_SOURCE_DIRECTORIES}" ]]; then |
| 89 |
building() { |
| 90 |
echo "$(PYTHON)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" build "$@" |
| 91 |
"$(PYTHON)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" build "$@" |
| 92 |
} |
| 93 |
python_execute_function -s building "$@" |
| 94 |
else |
| 95 |
building() { |
| 96 |
echo "$(PYTHON)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" build -b "build-${PYTHON_ABI}" "$@" |
| 97 |
"$(PYTHON)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" build -b "build-${PYTHON_ABI}" "$@" |
| 98 |
} |
| 99 |
python_execute_function building "$@" |
| 100 |
fi |
| 101 |
else |
| 102 |
echo ${python} setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" build "$@" |
| 103 |
${python} setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" build "$@" || die "Building failed" |
| 104 |
fi |
| 105 |
} |
| 106 |
|
| 107 |
# @FUNCTION: distutils_src_install |
| 108 |
# @DESCRIPTION: |
| 109 |
# The distutils src_install function, this function is exported. |
| 110 |
# It also installs the "standard docs" (CHANGELOG, Change*, KNOWN_BUGS, MAINTAINERS, |
| 111 |
# PKG-INFO, CONTRIBUTORS, TODO, NEWS, MANIFEST*, README*, and AUTHORS) |
| 112 |
distutils_src_install() { |
| 113 |
if [[ "${EBUILD_PHASE}" != "install" ]]; then |
| 114 |
die "${FUNCNAME}() can be used only in src_install() phase" |
| 115 |
fi |
| 116 |
|
| 117 |
local pylibdir |
| 118 |
|
| 119 |
# Mark the package to be rebuilt after a python upgrade. |
| 120 |
python_need_rebuild |
| 121 |
|
| 122 |
if ! has "${EAPI:-0}" 0 1 2 || [[ -n "${SUPPORT_PYTHON_ABIS}" ]]; then |
| 123 |
if [[ -n "${DISTUTILS_USE_SEPARATE_SOURCE_DIRECTORIES}" ]]; then |
| 124 |
installation() { |
| 125 |
# need this for python-2.5 + setuptools in cases where |
| 126 |
# a package uses distutils but does not install anything |
| 127 |
# in site-packages. (eg. dev-java/java-config-2.x) |
| 128 |
# - liquidx (14/08/2006) |
| 129 |
pylibdir="$("$(PYTHON)" -c 'from distutils.sysconfig import get_python_lib; print(get_python_lib())')" |
| 130 |
[[ -n "${pylibdir}" ]] && dodir "${pylibdir}" |
| 131 |
|
| 132 |
echo "$(PYTHON)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" install --root="${D}" --no-compile "$@" |
| 133 |
"$(PYTHON)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" install --root="${D}" --no-compile "$@" |
| 134 |
} |
| 135 |
python_execute_function -s installation "$@" |
| 136 |
else |
| 137 |
installation() { |
| 138 |
# need this for python-2.5 + setuptools in cases where |
| 139 |
# a package uses distutils but does not install anything |
| 140 |
# in site-packages. (eg. dev-java/java-config-2.x) |
| 141 |
# - liquidx (14/08/2006) |
| 142 |
pylibdir="$("$(PYTHON)" -c 'from distutils.sysconfig import get_python_lib; print(get_python_lib())')" |
| 143 |
[[ -n "${pylibdir}" ]] && dodir "${pylibdir}" |
| 144 |
|
| 145 |
echo "$(PYTHON)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" build -b "build-${PYTHON_ABI}" install --root="${D}" --no-compile "$@" |
| 146 |
"$(PYTHON)" setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" build -b "build-${PYTHON_ABI}" install --root="${D}" --no-compile "$@" |
| 147 |
} |
| 148 |
python_execute_function installation "$@" |
| 149 |
fi |
| 150 |
else |
| 151 |
# need this for python-2.5 + setuptools in cases where |
| 152 |
# a package uses distutils but does not install anything |
| 153 |
# in site-packages. (eg. dev-java/java-config-2.x) |
| 154 |
# - liquidx (14/08/2006) |
| 155 |
pylibdir="$(${python} -c 'from distutils.sysconfig import get_python_lib; print(get_python_lib())')" |
| 156 |
[[ -n "${pylibdir}" ]] && dodir "${pylibdir}" |
| 157 |
|
| 158 |
echo ${python} setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" install --root="${D}" --no-compile "$@" |
| 159 |
${python} setup.py "${DISTUTILS_GLOBAL_OPTIONS[@]}" install --root="${D}" --no-compile "$@" || die "Installation failed" |
| 160 |
fi |
| 161 |
|
| 162 |
DDOCS="CHANGELOG KNOWN_BUGS MAINTAINERS PKG-INFO CONTRIBUTORS TODO NEWS" |
| 163 |
DDOCS="${DDOCS} Change* MANIFEST* README* AUTHORS" |
| 164 |
|
| 165 |
local doc |
| 166 |
for doc in ${DDOCS}; do |
| 167 |
[[ -s "$doc" ]] && dodoc $doc |
| 168 |
done |
| 169 |
|
| 170 |
[[ -n "${DOCS}" ]] && dodoc ${DOCS} |
| 171 |
} |
| 172 |
|
| 173 |
# @FUNCTION: distutils_pkg_postrm |
| 174 |
# @DESCRIPTION: |
| 175 |
# Generic pyc/pyo cleanup script. This function is exported. |
| 176 |
distutils_pkg_postrm() { |
| 177 |
if [[ "${EBUILD_PHASE}" != "postrm" ]]; then |
| 178 |
die "${FUNCNAME}() can be used only in pkg_postrm() phase" |
| 179 |
fi |
| 180 |
|
| 181 |
local pylibdir pymod |
| 182 |
if [[ -z "${PYTHON_MODNAME}" ]]; then |
| 183 |
for pylibdir in "${ROOT}"/usr/$(get_libdir)/python*; do |
| 184 |
if [[ -d "${pylibdir}/site-packages/${PN}" ]]; then |
| 185 |
PYTHON_MODNAME="${PN}" |
| 186 |
fi |
| 187 |
done |
| 188 |
fi |
| 189 |
|
| 190 |
if [[ -n "${PYTHON_MODNAME}" ]]; then |
| 191 |
for pymod in ${PYTHON_MODNAME}; do |
| 192 |
for pylibdir in "${ROOT}"/usr/$(get_libdir)/python*; do |
| 193 |
if [[ -d "${pylibdir}/site-packages/${pymod}" ]]; then |
| 194 |
if ! has "${EAPI:-0}" 0 1 2 || [[ -n "${SUPPORT_PYTHON_ABIS}" ]]; then |
| 195 |
python_mod_cleanup "${pymod}" |
| 196 |
else |
| 197 |
python_mod_cleanup "${pylibdir#${ROOT}}/site-packages/${pymod}" |
| 198 |
fi |
| 199 |
fi |
| 200 |
done |
| 201 |
done |
| 202 |
else |
| 203 |
python_mod_cleanup |
| 204 |
fi |
| 205 |
} |
| 206 |
|
| 207 |
# @FUNCTION: distutils_pkg_postinst |
| 208 |
# @DESCRIPTION: |
| 209 |
# This is a generic optimization, you should override it if your package |
| 210 |
# installs modules in another directory. This function is exported. |
| 211 |
distutils_pkg_postinst() { |
| 212 |
if [[ "${EBUILD_PHASE}" != "postinst" ]]; then |
| 213 |
die "${FUNCNAME}() can be used only in pkg_postinst() phase" |
| 214 |
fi |
| 215 |
|
| 216 |
local pylibdir pymod |
| 217 |
if [[ -z "${PYTHON_MODNAME}" ]]; then |
| 218 |
for pylibdir in "${ROOT}"/usr/$(get_libdir)/python*; do |
| 219 |
if [[ -d "${pylibdir}/site-packages/${PN}" ]]; then |
| 220 |
PYTHON_MODNAME="${PN}" |
| 221 |
fi |
| 222 |
done |
| 223 |
fi |
| 224 |
|
| 225 |
if ! has "${EAPI:-0}" 0 1 2 || [[ -n "${SUPPORT_PYTHON_ABIS}" ]]; then |
| 226 |
for pymod in ${PYTHON_MODNAME}; do |
| 227 |
python_mod_optimize "${pymod}" |
| 228 |
done |
| 229 |
else |
| 230 |
python_version |
| 231 |
for pymod in ${PYTHON_MODNAME}; do |
| 232 |
python_mod_optimize "/usr/$(get_libdir)/python${PYVER}/site-packages/${pymod}" |
| 233 |
done |
| 234 |
fi |
| 235 |
} |
| 236 |
|
| 237 |
# @FUNCTION: distutils_python_version |
| 238 |
# @DESCRIPTION: |
| 239 |
# Calls python_version, so that you can use something like |
| 240 |
# e.g. insinto ${ROOT}/usr/include/python${PYVER} |
| 241 |
distutils_python_version() { |
| 242 |
python_version |
| 243 |
} |
| 244 |
|
| 245 |
# @FUNCTION: distutils_python_tkinter |
| 246 |
# @DESCRIPTION: |
| 247 |
# Checks for if tkinter support is compiled into python |
| 248 |
distutils_python_tkinter() { |
| 249 |
python_tkinter_exists |
| 250 |
} |