From owner-svn-ports-head@freebsd.org Wed Dec 16 13:56:32 2015 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A7F00A49C2A; Wed, 16 Dec 2015 13:56:32 +0000 (UTC) (envelope-from wen@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 mx1.freebsd.org (Postfix) with ESMTPS id 328861C40; Wed, 16 Dec 2015 13:56:32 +0000 (UTC) (envelope-from wen@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id tBG7w8Tu026259; Wed, 16 Dec 2015 07:58:08 GMT (envelope-from wen@FreeBSD.org) Received: (from wen@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id tBG7w860026255; Wed, 16 Dec 2015 07:58:08 GMT (envelope-from wen@FreeBSD.org) Message-Id: <201512160758.tBG7w860026255@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: wen set sender to wen@FreeBSD.org using -f From: Wen Heping Date: Wed, 16 Dec 2015 07:58:08 +0000 (UTC) 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 X-SVN-Group: ports-head 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.20 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: Wed, 16 Dec 2015 13:56:32 -0000 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 +# $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 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/