void-packages/srcpkgs/python-setuptools/template
2015-08-22 01:22:22 +02:00

44 lines
1.3 KiB
Bash

# Template file for 'python-setuptools'
pkgname=python-setuptools
version=18.2
revision=1
noarch=yes
wrksrc="setuptools-${version}"
build_style=python-module
python_versions="2.7 3.4"
hostmakedepends="python-devel python3.4-devel"
depends="python"
pycompile_module="_markerlib pkg_resources setuptools easy_install.py"
provides="python-distribute-${version}_1"
replaces="python-distribute>=0"
short_desc="Easily build and distribute Python2 packages"
maintainer="Alessio Sergi <al3hex@gmail.com>"
homepage="https://bitbucket.org/pypa/setuptools"
license="PSF"
distfiles="${PYPI_SITE}/s/setuptools/setuptools-${version}.tar.gz"
checksum=0994a58df27ea5dc523782a601357a2198b7493dcc99a30d51827a23585b5b1d
pre_build() {
sed -i '/^#!/d' setuptools/command/easy_install.py
}
post_install() {
rm -f ${DESTDIR}/usr/bin/easy_install
ln -sf easy_install-2.7 ${DESTDIR}/usr/bin/easy_install
ln -sf easy_install-3.4 ${DESTDIR}/usr/bin/easy_install3
}
python3.4-setuptools_package() {
noarch=yes
depends="python3.4"
pycompile_version="3.4"
pycompile_module="_markerlib pkg_resources setuptools easy_install.py"
short_desc="${short_desc/Python2/Python3.4}"
provides="python3-distribute-${version}_1"
replaces="python3-distribute>=0"
pkg_install() {
vmove usr/bin/easy_install-3.4
vmove usr/bin/easy_install3
vmove usr/lib/python3.4
}
}