c43c624abb
Track and report code coverage for your package and (optionally) upload the results to a coverage service like 'Codecov' <http://codecov.io> or 'Coveralls' <http://coveralls.io>. Code coverage is a measure of the amount of code being exercised by a set of tests. It is an indirect measure of test quality and completeness. This package is compatible with any testing methodology or framework and tracks coverage of both R code and compiled C/C++/FORTRAN code.
20 lines
598 B
Makefile
20 lines
598 B
Makefile
# $NetBSD: Makefile,v 1.1 2019/10/13 11:50:49 rillig Exp $
|
|
|
|
R_PKGNAME= covr
|
|
R_PKGVER= 3.3.1
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
COMMENT= Test Coverage for Packages
|
|
LICENSE= gnu-gpl-v3
|
|
|
|
DEPENDS+= R-crayon>=1.3.4:../../devel/R-crayon
|
|
DEPENDS+= R-withr>=1.0.2:../../devel/R-withr
|
|
DEPENDS+= R-digest>=0.6.20:../../security/R-digest
|
|
DEPENDS+= R-jsonlite>=1.6:../../textproc/R-jsonlite
|
|
DEPENDS+= R-yaml>=2.2.0:../../textproc/R-yaml
|
|
DEPENDS+= R-httr>=1.4.1:../../www/R-httr
|
|
DEPENDS+= R-rex>=0:../../devel/R-rex
|
|
|
|
.include "../../math/R/Makefile.extension"
|
|
.include "../../mk/bsd.pkg.mk"
|