python-setuptools: update to 5.1
Build python3.4 module too.
This commit is contained in:
parent
9dacdd0dc7
commit
1179f2a265
|
@ -1,19 +1,38 @@
|
||||||
# Template file for 'python-setuptools'
|
# Template file for 'python-setuptools'
|
||||||
pkgname=python-setuptools
|
pkgname=python-setuptools
|
||||||
version=3.5.1
|
version=5.1
|
||||||
revision=1
|
revision=1
|
||||||
wrksrc="setuptools-${version}"
|
wrksrc="setuptools-${version}"
|
||||||
build_style=python-module
|
build_style=python-module
|
||||||
hostmakedepends="python-devel"
|
hostmakedepends="python-devel python3.4-devel"
|
||||||
makedepends="python-devel"
|
makedepends="${hostmakedepends}"
|
||||||
|
depends="python>=2.7"
|
||||||
noarch="yes"
|
noarch="yes"
|
||||||
depends="python"
|
python_versions="2.7 3.4"
|
||||||
pycompile_module="easy_install.py pkg_resources.py _markerlib setuptools"
|
pycompile_module="easy_install.py pkg_resources.py _markerlib setuptools"
|
||||||
provides="python-distribute-${version}_1"
|
provides="python-distribute-${version}_1"
|
||||||
replaces="python-distribute>=0"
|
replaces="python-distribute>=0"
|
||||||
short_desc="Easily download, build, install, upgrade, and uninstall Python packages"
|
short_desc="Easily download, build, install, upgrade, and uninstall Python2 packages"
|
||||||
maintainer="Juan RP <xtraeme@gmail.com>"
|
maintainer="Alessio Sergi <al3hex@gmail.com>"
|
||||||
homepage="http://pypi.python.org/pypi/setuptools"
|
homepage="http://pypi.python.org/pypi/setuptools"
|
||||||
license="PSF"
|
license="PSF"
|
||||||
distfiles="http://pypi.python.org/packages/source/s/setuptools/setuptools-$version.tar.gz"
|
distfiles="http://pypi.python.org/packages/source/s/setuptools/setuptools-${version}.tar.gz"
|
||||||
checksum=7805d9e06d45ff7526b09d3886b8804eed3c33bd2b5ef3f74825cd45787f2f12
|
checksum=5855a13607cae9123df0981d814d32b5b413b7a20422f642bf3f4c355383485b
|
||||||
|
|
||||||
|
post_install() {
|
||||||
|
rm -f ${DESTDIR}/usr/bin/easy_install
|
||||||
|
ln -sf easy_install-2.7 ${DESTDIR}/usr/bin/easy_install
|
||||||
|
}
|
||||||
|
|
||||||
|
python3.4-setuptools_package() {
|
||||||
|
noarch="yes"
|
||||||
|
depends="python3.4"
|
||||||
|
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/lib/python3.4
|
||||||
|
ln -sf easy_install-3.4 ${PKGDESTDIR}/usr/bin/easy_install3
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
python-setuptools
|
Loading…
Reference in New Issue