32 lines
765 B
Bash
32 lines
765 B
Bash
# Template file for 'python-six'
|
|
pkgname=python-six
|
|
version=1.12.0
|
|
revision=1
|
|
archs=noarch
|
|
wrksrc="six-${version}"
|
|
build_style=python-module
|
|
pycompile_module="six.py"
|
|
hostmakedepends="python-setuptools python3-setuptools"
|
|
depends="python"
|
|
short_desc="Python 2 and 3 compatibility utilities (Python2)"
|
|
maintainer="Alessio Sergi <al3hex@gmail.com>"
|
|
homepage="https://github.com/benjaminp/six"
|
|
license="MIT"
|
|
distfiles="${PYPI_SITE}/s/six/six-${version}.tar.gz"
|
|
checksum=d16a0141ec1a18405cd4ce8b4613101da75da0e9a7aec5bdd4fa804d0e0eba73
|
|
|
|
post_install() {
|
|
vlicense LICENSE
|
|
}
|
|
|
|
python3-six_package() {
|
|
archs=noarch
|
|
depends="python3"
|
|
pycompile_module="six.py"
|
|
short_desc="${short_desc/Python2/Python3}"
|
|
pkg_install() {
|
|
vmove usr/lib/python3*
|
|
vlicense LICENSE
|
|
}
|
|
}
|