void-packages/srcpkgs/python-setuptools/template
2019-09-13 08:17:14 +02:00

42 lines
1.3 KiB
Bash

# Template file for 'python-setuptools'
pkgname=python-setuptools
version=41.2.0
revision=2
archs=noarch
wrksrc="setuptools-${version}"
build_style=python-module
pycompile_module="pkg_resources setuptools easy_install.py"
hostmakedepends="unzip python-devel python3-devel"
depends="python"
short_desc="Easily build and distribute Python2 packages"
maintainer="Alessio Sergi <al3hex@gmail.com>"
license="MIT"
homepage="https://github.com/pypa/setuptools"
distfiles="${PYPI_SITE}/s/setuptools/setuptools-${version}.zip"
checksum=66b86bbae7cc7ac2e867f52dc08a6bd064d938bac59dfec71b9b565dd36d6012
alternatives="setuptools:easy_install:/usr/bin/easy_install2"
provides="python-distribute-${version}_1"
replaces="python-distribute>=0"
export SETUPTOOLS_INSTALL_WINDOWS_SPECIFIC_FILES=0
export SETUPTOOLS_DISABLE_VERSIONED_EASY_INSTALL_SCRIPT=1
post_install() {
vlicense LICENSE
}
python3-setuptools_package() {
archs=noarch
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"
alternatives="setuptools:easy_install:/usr/bin/easy_install3"
pkg_install() {
vmove usr/bin/easy_install3
vmove usr/lib/python3*
vlicense LICENSE
}
}