mirror of
https://git.FreeBSD.org/ports.git
synced 2025-02-03 11:12:13 +00:00
8d79ecd3d5
- Update to 0.4.0 - Add TEST_DEPENDS and regression-test: target for QA - Patch setup.py to integrate the test command with py-nose - Remove setup.py patch adding zip_safe=False (no longer needed) - pkg-descr: Update WWW: homepage link Changes: * https://github.com/earl/beanstalkc/commits/v0.4.0
32 lines
744 B
Makefile
32 lines
744 B
Makefile
# Created by: Li-Wen Hsu <lwhsu@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= beanstalkc
|
|
PORTVERSION= 0.4.0
|
|
CATEGORIES= net python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= koobs@FreeBSD.org
|
|
COMMENT= Simple beanstalkd client library for Python
|
|
|
|
LICENSE= APACHE20
|
|
|
|
TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}nose>0:${PORTSDIR}/devel/py-nose \
|
|
${PYTHON_PKGNAMEPREFIX}yaml>0:${PORTSDIR}/devel/py-yaml
|
|
|
|
USE_PYTHON= yes
|
|
USE_PYDISTUTILS= yes
|
|
PYDISTUTILS_AUTOPLIST= yes
|
|
|
|
OPTIONS_DEFINE= YAML
|
|
OPTIONS_DEFAULT= YAML
|
|
YAML_DESC= Support parsing YAML responses
|
|
|
|
YAML_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}yaml>0:${PORTSDIR}/devel/py-yaml
|
|
|
|
regression-test: build
|
|
@cd ${WRKSRC} && ${PYTHON_CMD} ${PYSETUP} test
|
|
|
|
.include <bsd.port.mk>
|