diff options
author | Jean-Paul Beconne <jpbeconne@free.fr> | 2021-06-19 08:07:37 +0000 |
---|---|---|
committer | Guangyuan Yang <ygy@FreeBSD.org> | 2021-06-19 08:07:37 +0000 |
commit | cbccc77e92185b5ac7f412e37de2354e79bb2c6a (patch) | |
tree | e036e63d8c70638cffa2e03c940851c93f73fb6f | |
parent | 1aae26534d6bc8a5d245fe6c07d263e594153973 (diff) | |
download | ports-cbccc77e92185b5ac7f412e37de2354e79bb2c6a.tar.gz ports-cbccc77e92185b5ac7f412e37de2354e79bb2c6a.zip |
devel/R-cran-rcmdcheck: New port
Run 'R CMD check' from 'R' and Capture Results.
PR: 246842
Approved by: lwhsu (mentor, implicit)
-rw-r--r-- | devel/Makefile | 1 | ||||
-rw-r--r-- | devel/R-cran-rcmdcheck/Makefile | 29 | ||||
-rw-r--r-- | devel/R-cran-rcmdcheck/distinfo | 3 | ||||
-rw-r--r-- | devel/R-cran-rcmdcheck/pkg-descr | 5 |
4 files changed, 38 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index 364a07fcd509..f6f45d7568b7 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -82,6 +82,7 @@ SUBDIR += R-cran-purrr SUBDIR += R-cran-randomForest SUBDIR += R-cran-rappdirs + SUBDIR += R-cran-rcmdcheck SUBDIR += R-cran-registry SUBDIR += R-cran-rematch2 SUBDIR += R-cran-remotes diff --git a/devel/R-cran-rcmdcheck/Makefile b/devel/R-cran-rcmdcheck/Makefile new file mode 100644 index 000000000000..f5da6c99ef92 --- /dev/null +++ b/devel/R-cran-rcmdcheck/Makefile @@ -0,0 +1,29 @@ +PORTNAME= rcmdcheck +DISTVERSION= 1.3.3 +CATEGORIES= devel +DISTNAME= ${PORTNAME}_${DISTVERSION} + +MAINTAINER= jpbeconne@free.fr +COMMENT= Run 'R CMD check' from 'R' and Capture Results + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +CRAN_DEPENDS= R-cran-callr>=3.1.1.9000:devel/R-cran-callr \ + R-cran-cli>=1.1.0:devel/R-cran-cli \ + R-cran-crayon>0:devel/R-cran-crayon \ + R-cran-desc>=1.2.0:devel/R-cran-desc \ + R-cran-digest>0:security/R-cran-digest \ + R-cran-pkgbuild>0:devel/R-cran-pkgbuild \ + R-cran-prettyunits>0:devel/R-cran-prettyunits \ + R-cran-R6>0:devel/R-cran-R6 \ + R-cran-rprojroot>0:devel/R-cran-rprojroot \ + R-cran-sessioninfo>0:devel/R-cran-sessioninfo \ + R-cran-withr>0:devel/R-cran-withr \ + R-cran-xopen>0:sysutils/R-cran-xopen +BUILD_DEPENDS= ${CRAN_DEPENDS} +RUN_DEPENDS= ${CRAN_DEPENDS} + +USES= cran:auto-plist + +.include <bsd.port.mk> diff --git a/devel/R-cran-rcmdcheck/distinfo b/devel/R-cran-rcmdcheck/distinfo new file mode 100644 index 000000000000..4a3a85994d61 --- /dev/null +++ b/devel/R-cran-rcmdcheck/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1579714867 +SHA256 (rcmdcheck_1.3.3.tar.gz) = 1ab679eb1976d74cd3be5bcad0af7fcc673dbdfd4406bbce32591c8fddfb93b4 +SIZE (rcmdcheck_1.3.3.tar.gz) = 45380 diff --git a/devel/R-cran-rcmdcheck/pkg-descr b/devel/R-cran-rcmdcheck/pkg-descr new file mode 100644 index 000000000000..958d5ee4438b --- /dev/null +++ b/devel/R-cran-rcmdcheck/pkg-descr @@ -0,0 +1,5 @@ +Run 'R CMD check' from 'R' and capture the results of the individual checks. +Supports running checks in the background, timeouts, pretty printing and +comparing check results. + +WWW: https://CRAN.R-project.org/package=rcmdcheck |