37 lines
1.1 KiB
Bash
37 lines
1.1 KiB
Bash
# Template file for 'python-websocket-client'
|
|
pkgname=python-websocket-client
|
|
version=0.37.0
|
|
revision=2
|
|
noarch=yes
|
|
wrksrc="websocket_client-${version}"
|
|
build_style=python-module
|
|
python_versions="2.7 3.4"
|
|
hostmakedepends="python-setuptools python3.4-setuptools"
|
|
depends="python-six ca-certificates"
|
|
pycompile_module="websocket"
|
|
short_desc="WebSocket client for Python2"
|
|
maintainer="Sergi Alvarez <pancake@nopcode.org>"
|
|
homepage="https://github.com/liris/websocket-client"
|
|
license="LGPL-2.1"
|
|
distfiles="${PYPI_SITE}/w/websocket-client/websocket_client-${version}.tar.gz"
|
|
checksum=678b246d816b94018af5297e72915160e2feb042e0cde1a9397f502ac3a52f41
|
|
alternatives="websocket-client:wsdump:/usr/bin/wsdump.py2.7"
|
|
|
|
pre_build() {
|
|
# use system certs
|
|
rm -f websocket/cacert.pem
|
|
}
|
|
|
|
python3.4-websocket-client_package() {
|
|
noarch=yes
|
|
depends="python3.4-six ca-certificates"
|
|
pycompile_version="3.4"
|
|
pycompile_module="websocket"
|
|
short_desc="${short_desc/Python2/Python3.4}"
|
|
alternatives="websocket-client:wsdump:/usr/bin/wsdump.py3.4"
|
|
pkg_install() {
|
|
vmove usr/bin/wsdump.py3.4
|
|
vmove usr/lib/python3.4
|
|
}
|
|
}
|