python-setuptools: update to 8.3
This commit is contained in:
parent
11c9b4693d
commit
df96b1f09c
|
@ -1,48 +1,48 @@
|
|||
# Template file for 'python-setuptools'
|
||||
pkgname=python-setuptools
|
||||
version=8.2.1
|
||||
version=8.3
|
||||
revision=1
|
||||
noarch=yes
|
||||
wrksrc="setuptools-${version}"
|
||||
python_versions="2.7 3.4"
|
||||
hostmakedepends="python-devel python3.4-devel"
|
||||
depends="python"
|
||||
pycompile_module="easy_install.py pkg_resources.py _markerlib setuptools"
|
||||
pycompile_module="_markerlib pkg_resources setuptools easy_install.py"
|
||||
provides="python-distribute-${version}_1"
|
||||
replaces="python-distribute>=0"
|
||||
short_desc="Easily download, build, install, upgrade, and uninstall Python2 packages"
|
||||
short_desc="Easily build and distribute Python2 packages"
|
||||
maintainer="Alessio Sergi <al3hex@gmail.com>"
|
||||
homepage="https://pypi.python.org/pypi/setuptools"
|
||||
homepage="https://bitbucket.org/pypa/setuptools"
|
||||
license="PSF"
|
||||
distfiles="${PYPI_SITE}/s/setuptools/setuptools-${version}.tar.gz"
|
||||
checksum=c2a0b4e3c980903f587896174c3829dc838f50995990ce93c95f93e70f1250aa
|
||||
checksum=f82ca6f17d746e1f38cd477c8e4020e50f5ada1b3cdf8135408f14bc4ac156c7
|
||||
|
||||
post_extract() {
|
||||
cp -a ${wrksrc} /tmp/python2.7-build
|
||||
cp -a ${wrksrc} /tmp/python3.4-build
|
||||
mv /tmp/python{2.7,3.4}-build ${wrksrc}
|
||||
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}/python3.4-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
|
||||
sed -i 's,#!/usr/bin/python,&3.4,' setuptools/tests/test_resources.py
|
||||
}
|
||||
|
||||
do_build() {
|
||||
cd ${wrksrc}/python2.7-build
|
||||
cd ${wrksrc}/setuptools-2.7
|
||||
python setup.py build
|
||||
|
||||
cd ${wrksrc}/python3.4-build
|
||||
cd ${wrksrc}/setuptools-3.4
|
||||
python3.4 setup.py build
|
||||
}
|
||||
|
||||
do_install() {
|
||||
cd ${wrksrc}/python2.7-build
|
||||
cd ${wrksrc}/setuptools-2.7
|
||||
python setup.py install --root=${DESTDIR}
|
||||
|
||||
cd ${wrksrc}/python3.4-build
|
||||
cd ${wrksrc}/setuptools-3.4
|
||||
python3.4 setup.py install --root=${DESTDIR}
|
||||
}
|
||||
|
||||
|
@ -50,7 +50,7 @@ python3.4-setuptools_package() {
|
|||
noarch=yes
|
||||
depends="python3.4"
|
||||
pycompile_version="3.4"
|
||||
pycompile_module="easy_install.py pkg_resources.py _markerlib setuptools"
|
||||
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"
|
||||
|
|
Loading…
Reference in New Issue