diff options
author | Kubilay Kocak <koobs@FreeBSD.org> | 2015-06-27 01:46:27 +0000 |
---|---|---|
committer | Kubilay Kocak <koobs@FreeBSD.org> | 2015-06-27 01:46:27 +0000 |
commit | 078ec8c3fd6d12e4f6a2a9a6afa8ab8cebd99f1d (patch) | |
tree | cabab3fafdd0ba3cbf2dae73ede97801deef6006 /deskutils/py-bugwarrior/Makefile | |
parent | 118b68da5ed299e4b1360267a329b9cff9934e1d (diff) |
deskutils/py-bugwarrior: Update to 1.1.4
- Update to 1.1.4
- Add TEST_DEPENDS and regression-test target now that tests are
included in the PyPI sdist [1] Thanks Ralph!
- Patch setup.py to enable test command until PR #222 [2] is in
release.
Changes:
https://github.com/ralphbean/bugwarrior/blob/1.1.4/CHANGELOG.rst
[1] https://github.com/ralphbean/bugwarrior/pull/221
[2] https://github.com/ralphbean/bugwarrior/pull/222
Notes
Notes:
svn path=/head/; revision=390687
Diffstat (limited to 'deskutils/py-bugwarrior/Makefile')
-rw-r--r-- | deskutils/py-bugwarrior/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/deskutils/py-bugwarrior/Makefile b/deskutils/py-bugwarrior/Makefile index af898385f4ee..c4d8b7273292 100644 --- a/deskutils/py-bugwarrior/Makefile +++ b/deskutils/py-bugwarrior/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= bugwarrior -PORTVERSION= 1.1.3 +PORTVERSION= 1.1.4 CATEGORIES= deskutils python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -28,8 +28,14 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}twiggy>0:${PORTSDIR}/devel/py-twiggy \ ${PYTHON_PKGNAMEPREFIX}lockfile>=0.9.1:${PORTSDIR}/devel/py-lockfile \ ${PYTHON_PKGNAMEPREFIX}click>0:${PORTSDIR}/devel/py-click \ ${PYTHON_PKGNAMEPREFIX}xdg>0:${PORTSDIR}/devel/py-xdg +TEST_DEPENDS= ${PYTHON_PKGNAMEPREFIX}mock>0:${PORTSDIR}/devel/py-mock \ + ${PYTHON_PKGNAMEPREFIX}unittest2>0:${PORTSDIR}/devel/py-mock \ + ${PYTHON_PKGNAMEPREFIX}nose>0:${PORTSDIR}/devel/py-nose USES= python:2 USE_PYTHON= autoplist concurrent distutils +regression-test: build + @cd ${WRKSRC} && ${PYTHON_CMD} ${PYDISTUTILS_SETUP} test + .include <bsd.port.mk> |