svn commit: r559438 - in head/devel: . R-cran-tinytest

Guangyuan Yang ygy at FreeBSD.org
Mon Dec 28 00:18:44 UTC 2020


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 at 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


More information about the svn-ports-all mailing list