pkgsrc/devel/R-rcmdcheck/Makefile
mef 3c882851a4 (devel/R-rcmdcheck) Updated 1.3.3 to 1.4.0
# 1.4.0

* `cran_check_results()` now downloads results in parallel, so it is
  much faster.

* `rcmdcheck_process` now redirects the standard error to the standard
  output, to make sure that they are correctly interleaved (#148).

* rcmdcheck now puts Rtools on the PATH, via pkgbuild (#111).

* rcmdcheck now builds the manual when building the package, if it is
  needed for `\Sexpr{}` expressions (#137).

* This version fixes a rare race condition that made rcmdcheck fail (#139).

* rcmdcheck now safeguards against R deleting the user's home directory
  via an `R CMD build` bug (#120).

* rcmdcheck can now ignore files in `inst/doc` when building a package.
  See the `Config/build/clean-inst-doc` package option in
  `?"rcmdcheck-config"` (#130).

* It is now possible to turn on/off ANSI colors for rcmdcheck only,
  without affecting the checked package. See `?"rcmdcheck-config" and the
  `RCMDCHECK_NUM_COLORS` environment variable and the `rcmdcheck.num_colors`
  option (#119, @jimhester).

* `print.rcmdcheck()` now has a `test_output` argument and
  `rcmdcheck.test_output` global option, to control whether to print the full
  test output or not. (#121)

* RStudio's Pandoc is now on the path during `rcmdcheck()`
  and `rcmdcheck_process` (#109, #132, @dpprdan).

* `rcmdcheck()` now errors if the check process crashes (#110, #163).

* `rcmdcheck()` prints the check ouptut better interactively, especially
  when the package has multiple test files (#145, #161).

* rcmdcheck can now ignore `NOTE`s, if requested, see `?rcmdcheck` for
  details (#12, #160).

* rcmdcheck now always converts its output to UTF-8 from the native
  encoding. It also handles parsing check output in a non-native encoding
  better (#152).

* rcmdcheck now ignored time stamps when comparing two check results (#128).

* rcmdcheck now does not print extra empty lines in the interactive output
  on GitHub Actions.

* rcmdcheck now uses a more robust implementation to extract the session
  info from the check process (#164).
2022-04-29 13:52:36 +00:00

34 lines
1.2 KiB
Makefile

# $NetBSD: Makefile,v 1.2 2022/04/29 13:52:36 mef Exp $
R_PKGNAME= rcmdcheck
R_PKGVER= 1.4.0
CATEGORIES= devel
MAINTAINER= pkgsrc-users@NetBSD.org
COMMENT= Run 'R CMD check' from 'R' and capture results
LICENSE= mit
DEPENDS+= R-callr>=3.1.1.9000:../../devel/R-callr
DEPENDS+= R-cli>=1.1.0:../../devel/R-cli
DEPENDS+= R-crayon>=1.3.4:../../devel/R-crayon
DEPENDS+= R-desc>=1.2.0:../../devel/R-desc
DEPENDS+= R-pkgbuild>=1.0.4:../../devel/R-pkgbuild
DEPENDS+= R-rprojroot>=1.3.2:../../devel/R-rprojroot
DEPENDS+= R-sessioninfo>=1.1.1:../../devel/R-sessioninfo
DEPENDS+= R-withr>=2.1.2:../../devel/R-withr
DEPENDS+= R-prettyunits>=1.0.2:../../math/R-prettyunits
DEPENDS+= R-digest>=0.6.20:../../security/R-digest
DEPENDS+= R-xopen>=1.0.0:../../sysutils/R-xopen
DEPENDS+= R-curl-[0-9]*:../../www/R-curl
# Packages suggested but not available: 'svglite', 'webfakes'
TEST_DEPENDS+= R-covr-[0-9]*:../../devel/R-covr
TEST_DEPENDS+= R-knitr-[0-9]*:../../print/R-knitr
TEST_DEPENDS+= R-mockery-[0-9]*:../../devel/R-mockery
TEST_DEPENDS+= R-rmarkdown-[0-9]*:../../textproc/R-rmarkdown
TEST_DEPENDS+= R-testthat-[0-9]*:../../devel/R-testthat
USE_LANGUAGES= # none
.include "../../math/R/Makefile.extension"
.include "../../mk/bsd.pkg.mk"