1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-29 10:18:30 +00:00
freebsd-ports/devel/py-nose/Makefile
Kubilay Kocak 1f38c725e2 devel/py-nose: Update to 1.3.7
- Update to 1.3.7
- Update regression-test to canonical invocation
- Make concurrent installation safe. Don't install man page for now until
  USES=uniquefiles and/or USE_PYTHON=concurrent can handle them. [1]

Changes:

  https://github.com/nose-devs/nose/blob/release_1.3.7/CHANGELOG

PR:	193956 [1]
2015-06-05 05:05:42 +00:00

29 lines
655 B
Makefile

# Created by: Dryice Liu <dryice@dryice.name>
# $FreeBSD$
PORTNAME= nose
PORTVERSION= 1.3.7
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} >= 3000
@cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} build_tests
.endif
@cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test
.include <bsd.port.post.mk>