6bff1a8e60
0.9.2 Added * Add `--junit-xml-path` to the junit plugin argument list Fixed * It is now possible to use the multiprocess and coverage plugins together, as long as all of the coverage config is put into the config file * Minor changes to be compatible with newer pythons (3.8, 3.9)
26 lines
741 B
Makefile
26 lines
741 B
Makefile
# $NetBSD: Makefile,v 1.8 2020/02/02 05:59:01 adam Exp $
|
|
|
|
DISTNAME= nose2-0.9.2
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=n/nose2/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= https://github.com/nose-devs/nose2
|
|
COMMENT= Next generation of nicer testing for Python
|
|
LICENSE= 2-clause-bsd
|
|
|
|
DEPENDS+= ${PYPKGPREFIX}-coverage>=4.4.1:../../devel/py-coverage
|
|
DEPENDS+= ${PYPKGPREFIX}-six>=1.7:../../lang/py-six
|
|
.include "../../lang/python/pyversion.mk"
|
|
.if ${_PYTHON_VERSION} == 27
|
|
DEPENDS+= ${PYPKGPREFIX}-mock-[0-9]*:../../devel/py-mock
|
|
.endif
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
post-install:
|
|
${RM} -f ${DESTDIR}${PREFIX}/bin/nose2
|
|
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|