void-packages/srcpkgs/python-redis/template
2015-08-03 13:12:28 +00:00

35 lines
903 B
Bash

# Template file for 'python-redis'
pkgname=python-redis
version=2.10.3
revision=1
noarch=yes
wrksrc="redis-${version}"
build_style=python-module
python_versions="2.7 3.4"
pycompile_module="redis"
hostmakedepends="python-setuptools python3.4-setuptools"
makedepends="python-devel python3.4-devel"
depends="python"
short_desc="Python2 client for Redis key-value store"
maintainer="Eivind Uggedal <eivind@uggedal.com>"
license="MIT"
homepage="https://github.com/andymccurdy/redis-py"
distfiles="${PYPI_SITE}/r/redis/redis-${version}.tar.gz"
checksum=a4fb37b02860f6b1617f6469487471fd086dd2d38bbce640c2055862b9c4019c
post_install() {
vlicense LICENSE
}
python3.4-redis_package() {
noarch=yes
depends="python3.4"
pycompile_version="3.4"
pycompile_module="redis"
short_desc="${short_desc/Python2/Python3.4}"
pkg_install() {
vmove usr/lib/python3.4
vlicense LICENSE
}
}