37 lines
1 KiB
Bash
37 lines
1 KiB
Bash
# Template file for 'python-pyzmq'
|
|
pkgname=python-pyzmq
|
|
version=14.7.0
|
|
revision=1
|
|
wrksrc="pyzmq-${version}"
|
|
build_style=python-module
|
|
make_build_args="--zmq=${XBPS_CROSS_BASE}/usr"
|
|
python_versions="2.7 3.4"
|
|
hostmakedepends="pkg-config python-devel python3.4-devel python-Cython
|
|
python3.4-Cython zeromq-devel"
|
|
makedepends="${hostmakedepends/pkg-config/}"
|
|
pycompile_module="zmq"
|
|
short_desc="Python2 bindings for the ZeroMQ messaging library"
|
|
maintainer="Alessio Sergi <al3hex@gmail.com>"
|
|
homepage="https://github.com/zeromq/pyzmq"
|
|
license="LGPL-3, 3-clause-BSD"
|
|
distfiles="https://github.com/zeromq/pyzmq/archive/v${version}.tar.gz"
|
|
checksum=809a5fcc720d286c840f7f64696e60322b5b2544795a73db626f09b344d16a15
|
|
|
|
pre_build() {
|
|
cat > setup.cfg <<-EOF
|
|
[global]
|
|
skip_check_zmq = True
|
|
EOF
|
|
|
|
# remove shebangs
|
|
find zmq/eventloop/minitornado -type f -name '*.py' -exec sed -i '/^#!.*python$/d' {} +
|
|
}
|
|
|
|
python3.4-pyzmq_package() {
|
|
pycompile_version="3.4"
|
|
pycompile_module="zmq"
|
|
short_desc="${short_desc/Python2/Python3.4}"
|
|
pkg_install() {
|
|
vmove usr/lib/python3.4
|
|
}
|
|
}
|