freebsd-ports/devel/py-nose/Makefile
Kubilay Kocak 9d7ba2eb3d devel/py-nose: Update to 1.3.4, Allow concurrent versions
- Update to 1.3.4
- Use USE_PYTHON=concurrent to suffix bin/nosetests allowing multile
  Python versions of devel/py-nose to be installed [1]

Changes:

  http://nose.readthedocs.org/en/latest/news.html

PR:	193956 [1]
2015-01-19 14:54:23 +00:00

28 lines
650 B
Makefile

# Created by: Dryice Liu <dryice@dryice.name>
# $FreeBSD$
PORTNAME= nose
PORTVERSION= 1.3.4
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= koobs@FreeBSD.org
COMMENT= Discovery-based unittest extension
LICENSE= LGPL21
LICENSE_FILE= ${WRKSRC}/lgpl.txt
USES= python
USE_PYTHON= autoplist concurrent distutils
.include <bsd.port.pre.mk>
regression-test: build
# Extra tests for python 3, added in by setup3lib.py
.if ${PYTHON_REL} >= 300
@cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} build_tests
.endif
@cd ${WRKSRC} && ${PYTHON_CMD} selftest.py --verbose
.include <bsd.port.post.mk>