- Sort RUN_DEPENDS - Add NO_ARCH - Allow concurrent installation (USE_PYTHON=concurrent) - Simplify pkg-descr - Update WWW - Take maintainership Changes: https://github.com/tarantool/queue-python/commits/master
26 lines
629 B
Makefile
26 lines
629 B
Makefile
# Created by: Veniamin Gvozdikov <vg@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= tarantool-queue
|
|
PORTVERSION= 0.1.4
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= sunpoet@FreeBSD.org
|
|
COMMENT= Python bindings for Tarantool queue
|
|
|
|
LICENSE= MIT
|
|
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}msgpack-python>=0:devel/py-msgpack-python@${FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}tarantool>=0:databases/py-tarantool@${FLAVOR}
|
|
|
|
NO_ARCH= yes
|
|
USES= python
|
|
USE_PYTHON= autoplist concurrent distutils
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|tarantool<0.4|tarantool|' ${WRKSRC}/setup.py
|
|
|
|
.include <bsd.port.mk>
|