Date: Wed, 16 Dec 2015 07:58:08 +0000 (UTC) From: Wen Heping <wen@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r403846 - in head/math: . R-cran-assertthat Message-ID: <201512160758.tBG7w860026255@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: wen Date: Wed Dec 16 07:58:08 2015 New Revision: 403846 URL: https://svnweb.freebsd.org/changeset/ports/403846 Log: assertthat is an extension to stopifnot() that makes it easy to declare the pre and post conditions that you code should satisfy, while also producing friendly error messages so that your users know what they've done wrong. WWW: https://cran.r-project.org/web/packages/assertthat/ Added: head/math/R-cran-assertthat/ head/math/R-cran-assertthat/Makefile (contents, props changed) head/math/R-cran-assertthat/distinfo (contents, props changed) head/math/R-cran-assertthat/pkg-descr (contents, props changed) Modified: head/math/Makefile Modified: head/math/Makefile ============================================================================== --- head/math/Makefile Wed Dec 16 07:44:49 2015 (r403845) +++ head/math/Makefile Wed Dec 16 07:58:08 2015 (r403846) @@ -23,6 +23,7 @@ SUBDIR += R-cran-SuppDists SUBDIR += R-cran-VGAM SUBDIR += R-cran-Zelig + SUBDIR += R-cran-assertthat SUBDIR += R-cran-bdsmatrix SUBDIR += R-cran-car SUBDIR += R-cran-coda Added: head/math/R-cran-assertthat/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-assertthat/Makefile Wed Dec 16 07:58:08 2015 (r403846) @@ -0,0 +1,16 @@ +# Created by: Wen Heping <wen@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= assertthat +DISTVERSION= 0.1 +CATEGORIES= math +DISTNAME= ${PORTNAME}_${DISTVERSION} + +MAINTAINER= wen@FreeBSD.org +COMMENT= Easy pre and post assertions + +LICENSE= GPLv3 + +USES= cran:auto-plist + +.include <bsd.port.mk> Added: head/math/R-cran-assertthat/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-assertthat/distinfo Wed Dec 16 07:58:08 2015 (r403846) @@ -0,0 +1,2 @@ +SHA256 (assertthat_0.1.tar.gz) = 1363645a9a128f615aa0641dc5f5c5abd960b1c38320492366dad1e7a5c29a37 +SIZE (assertthat_0.1.tar.gz) = 10187 Added: head/math/R-cran-assertthat/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/math/R-cran-assertthat/pkg-descr Wed Dec 16 07:58:08 2015 (r403846) @@ -0,0 +1,6 @@ +assertthat is an extension to stopifnot() that makes it easy to +declare the pre and post conditions that you code should satisfy, +while also producing friendly error messages so that your users +know what they've done wrong. + +WWW: https://cran.r-project.org/web/packages/assertthat/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201512160758.tBG7w860026255>