61 lines
1.6 KiB
Text
61 lines
1.6 KiB
Text
# Template file for 'python-setuptools'
|
|
pkgname=python-setuptools
|
|
version=12.0.4
|
|
revision=1
|
|
noarch=yes
|
|
wrksrc="setuptools-${version}"
|
|
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=cc93f149ef82d1c7fe0f1199c14f86659386310936457b386891158e72c75cb1
|
|
|
|
post_extract() {
|
|
cp -a ${wrksrc} /tmp/setuptools-2.7
|
|
cp -a ${wrksrc} /tmp/setuptools-3.4
|
|
mv /tmp/setuptools-{2.7,3.4} ${wrksrc}
|
|
}
|
|
|
|
pre_build() {
|
|
cd ${wrksrc}/setuptools-3.4
|
|
sed -i 's,easy_install =,easy_install3 =,' setup.py
|
|
sed -i 's,#!/usr/bin/env python,&3.4,' setuptools/command/easy_install.py
|
|
}
|
|
|
|
do_build() {
|
|
cd ${wrksrc}/setuptools-2.7
|
|
python setup.py build
|
|
|
|
cd ${wrksrc}/setuptools-3.4
|
|
python3.4 setup.py build
|
|
}
|
|
|
|
do_install() {
|
|
cd ${wrksrc}/setuptools-2.7
|
|
python setup.py install --root=${DESTDIR}
|
|
|
|
cd ${wrksrc}/setuptools-3.4
|
|
python3.4 setup.py install --root=${DESTDIR}
|
|
}
|
|
|
|
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
|
|
}
|
|
}
|