47 lines
1.4 KiB
Bash
47 lines
1.4 KiB
Bash
# Template file for 'python-setuptools'
|
|
pkgname=python-setuptools
|
|
version=28.6.1
|
|
revision=1
|
|
noarch=yes
|
|
wrksrc="setuptools-${version}"
|
|
build_style=python-module
|
|
hostmakedepends="python-devel python3-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=e08c63b285c348669b5cf69d45b86d10d3a2d22915627949d5af090524a90705
|
|
alternatives="setuptools:easy_install:/usr/bin/easy_install2"
|
|
|
|
export SETUPTOOLS_DISABLE_VERSIONED_EASY_INSTALL_SCRIPT=1
|
|
|
|
post_install() {
|
|
vlicense LICENSE
|
|
}
|
|
|
|
python3-setuptools_package() {
|
|
noarch=yes
|
|
depends="python3"
|
|
pycompile_module="pkg_resources setuptools easy_install.py"
|
|
short_desc="${short_desc/Python2/Python3}"
|
|
provides="python3-distribute-${version}_1"
|
|
replaces="python3-distribute>=0 python3.4-setuptools>=0"
|
|
alternatives="setuptools:easy_install:/usr/bin/easy_install3"
|
|
pkg_install() {
|
|
vmove usr/bin/easy_install3
|
|
vmove ${py3_sitelib}
|
|
vlicense LICENSE
|
|
}
|
|
}
|
|
python3.4-setuptools_package() {
|
|
noarch=yes
|
|
build_style=meta
|
|
short_desc="${short_desc/Python2/Python3.4} (transitional dummy package)"
|
|
depends="python3-setuptools>=${version}_${revision}"
|
|
}
|