From owner-svn-ports-head@freebsd.org Mon Dec 28 00:18:44 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 010D94CBDE2; Mon, 28 Dec 2020 00:18:44 +0000 (UTC) (envelope-from ygy@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4D3ynv6cGmz3wLP; Mon, 28 Dec 2020 00:18:43 +0000 (UTC) (envelope-from ygy@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id CB1FF10872; Mon, 28 Dec 2020 00:18:43 +0000 (UTC) (envelope-from ygy@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0BS0IhX0075736; Mon, 28 Dec 2020 00:18:43 GMT (envelope-from ygy@FreeBSD.org) Received: (from ygy@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0BS0IhpW075729; Mon, 28 Dec 2020 00:18:43 GMT (envelope-from ygy@FreeBSD.org) Message-Id: <202012280018.0BS0IhpW075729@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ygy set sender to ygy@FreeBSD.org using -f From: Guangyuan Yang Date: Mon, 28 Dec 2020 00:18:43 +0000 (UTC) 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 X-SVN-Group: ports-head X-SVN-Commit-Author: ygy X-SVN-Commit-Paths: in head/devel: . R-cran-tinytest X-SVN-Commit-Revision: 559438 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Dec 2020 00:18:44 -0000 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 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