39 lines
1.2 KiB
Bash
39 lines
1.2 KiB
Bash
# Template file for 'python-setuptools'
|
|
pkgname=python-setuptools
|
|
version=24.0.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="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://github.com/pypa/setuptools"
|
|
license="MIT"
|
|
distfiles="${PYPI_SITE}/s/setuptools/setuptools-${version}.tar.gz"
|
|
checksum=efe010ea62504178246f6b3d98d588c2f67884403a7a0a99670dfbf8836ca973
|
|
alternatives="setuptools:easy_install:/usr/bin/easy_install2.7"
|
|
|
|
post_install() {
|
|
rm -f ${DESTDIR}/usr/bin/easy_install-*
|
|
}
|
|
|
|
python3.4-setuptools_package() {
|
|
noarch=yes
|
|
depends="python3.4"
|
|
pycompile_version="3.4"
|
|
pycompile_module="pkg_resources setuptools easy_install.py"
|
|
short_desc="${short_desc/Python2/Python3.4}"
|
|
provides="python3-distribute-${version}_1"
|
|
replaces="python3-distribute>=0"
|
|
alternatives="setuptools:easy_install:/usr/bin/easy_install3.4"
|
|
pkg_install() {
|
|
vmove usr/bin/easy_install3.4
|
|
vmove usr/lib/python3.4
|
|
}
|
|
}
|