Date: Mon, 28 Dec 2020 00:18:43 +0000 (UTC) From: Guangyuan Yang <ygy@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r559438 - in head/devel: . R-cran-tinytest Message-ID: <202012280018.0BS0IhpW075729@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: ygy (doc committer) Date: Mon Dec 28 00:18:42 2020 New Revision: 559438 URL: https://svnweb.freebsd.org/changeset/ports/559438 Log: new port: devel/R-cran-tinytest: Lightweight and Feature Complete Unit Testing Framework PR: 252175 Approved by: lwhsu Added: head/devel/R-cran-tinytest/ head/devel/R-cran-tinytest/Makefile (contents, props changed) head/devel/R-cran-tinytest/distinfo (contents, props changed) head/devel/R-cran-tinytest/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Mon Dec 28 00:17:23 2020 (r559437) +++ head/devel/Makefile Mon Dec 28 00:18:42 2020 (r559438) @@ -89,6 +89,7 @@ SUBDIR += R-cran-tibble SUBDIR += R-cran-tidyr SUBDIR += R-cran-tidyselect + SUBDIR += R-cran-tinytest SUBDIR += R-cran-vcd SUBDIR += R-cran-vctrs SUBDIR += R-cran-withr Added: head/devel/R-cran-tinytest/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-tinytest/Makefile Mon Dec 28 00:18:42 2020 (r559438) @@ -0,0 +1,15 @@ +# $FreeBSD$ + +PORTNAME= tinytest +DISTVERSION= 1.2.4 +CATEGORIES= devel +DISTNAME= ${PORTNAME}_${DISTVERSION} + +MAINTAINER= ygy@FreeBSD.org +COMMENT= Lightweight and Feature Complete Unit Testing Framework + +LICENSE= GPLv3 + +USES= cran:auto-plist + +.include <bsd.port.mk> Added: head/devel/R-cran-tinytest/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-tinytest/distinfo Mon Dec 28 00:18:42 2020 (r559438) @@ -0,0 +1,3 @@ +TIMESTAMP = 1609011995 +SHA256 (tinytest_1.2.4.tar.gz) = 8564f6d0ba45818cf0d920252bde2a529090efebde30f05e1ad20da8b2f459ab +SIZE (tinytest_1.2.4.tar.gz) = 442074 Added: head/devel/R-cran-tinytest/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-tinytest/pkg-descr Mon Dec 28 00:18:42 2020 (r559438) @@ -0,0 +1,10 @@ +Provides a lightweight (zero-dependency) and easy to use unit testing +framework. Main features: install tests with the package. Test results are +treated as data that can be stored and manipulated. Test files are R scripts +interspersed with test commands, that can be programmed over. Fully automated +build-install-test sequence for packages. Skip tests when not run locally (e.g. +on CRAN). Flexible and configurable output printing. Compare computed output +with output stored with the package. Run tests in parallel. Extensible by other +packages. Report side effects. + +WWW: https://github.com/markvanderloo/tinytest
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202012280018.0BS0IhpW075729>