85c35818ae
Switch to setuptools. Add python3.4 subpkg with pycompile support.
34 lines
972 B
Text
34 lines
972 B
Text
# Template file for 'python-six'
|
|
pkgname=python-six
|
|
version=1.7.3
|
|
revision=1
|
|
noarch=yes
|
|
wrksrc="six-${version}"
|
|
build_style=python-module
|
|
python_versions="2.7 3.4"
|
|
hostmakedepends="python-setuptools python3.4-setuptools"
|
|
makedepends="python-devel python3.4-devel"
|
|
depends="python"
|
|
pycompile_module="six.py"
|
|
short_desc="Python 2 and 3 compatibility utilities (Python2 library)"
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
|
homepage="https://pypi.python.org/pypi/six/"
|
|
license="MIT"
|
|
distfiles="https://pypi.python.org/packages/source/s/six/six-${version}.tar.gz"
|
|
checksum=7a842c9f882c0b2ab1064d567bb9fff6a21c9efbc3d9992083ad6193787ed393
|
|
|
|
post_install() {
|
|
vinstall LICENSE 644 usr/share/licenses/${pkgname}
|
|
}
|
|
|
|
python3.4-six_package() {
|
|
noarch=yes
|
|
depends="python3.4"
|
|
pycompile_version="3.4"
|
|
pycompile_module="six.py"
|
|
short_desc="${short_desc/Python2/Python3.4}"
|
|
pkg_install() {
|
|
vmove usr/lib/python3.4
|
|
vinstall ${wrksrc}/LICENSE 644 usr/share/licenses/${pkgname}
|
|
}
|
|
}
|