- Update PORTVERSION and distinfo checksum (1.4) - Add LICENSE_FILE - Enable concurrent Python support - Add NO_ARCH (architecture independent package) - Update test target to new test framework convention - Patch setup.py to support standard test command [1] Changes: https://github.com/jek/blinker/blob/rel-1.4/CHANGES [1] https://github.com/jek/blinker/pull/26/
26 lines
560 B
Makefile
26 lines
560 B
Makefile
# Created by: Kubilay Kocak <koobs@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= blinker
|
|
PORTVERSION= 1.4
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= koobs@FreeBSD.org
|
|
COMMENT= Fast, simple object-to-object and broadcast signaling
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}nose>0:${PORTSDIR}/devel/py-nose
|
|
|
|
USES= python
|
|
USE_PYTHON= autoplist concurrent distutils
|
|
|
|
NO_ARCH= yes
|
|
|
|
do-test:
|
|
@cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test
|
|
|
|
.include <bsd.port.mk>
|