diff options
author | Steven Kreuzer <skreuzer@FreeBSD.org> | 2012-08-23 15:57:35 +0000 |
---|---|---|
committer | Steven Kreuzer <skreuzer@FreeBSD.org> | 2012-08-23 15:57:35 +0000 |
commit | 898ca40dd46676d6cb4bdae1053514cd1e34c007 (patch) | |
tree | 19725b414fdeec3b08e056abf344e378a9b08c1e | |
parent | Disable -Werror so clang can build this port. (diff) |
R Unit test framework R functions implementing a standard Unit Testing
framework, with additional code inspection and report generation tools
WWW: http://sourceforge.net/projects/runit/
Notes
Notes:
svn path=/head/; revision=303027
-rw-r--r-- | devel/Makefile | 1 | ||||
-rw-r--r-- | devel/R-cran-RUnit/Makefile | 21 | ||||
-rw-r--r-- | devel/R-cran-RUnit/distinfo | 2 | ||||
-rw-r--r-- | devel/R-cran-RUnit/pkg-descr | 4 |
4 files changed, 28 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index d7b46e0ace6c..615bb684e8b9 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -9,6 +9,7 @@ SUBDIR += ORBit2 SUBDIR += ORBit2-reference SUBDIR += R-cran-Defaults + SUBDIR += R-cran-RUnit SUBDIR += R-cran-bitops SUBDIR += R-cran-caret SUBDIR += R-cran-chron diff --git a/devel/R-cran-RUnit/Makefile b/devel/R-cran-RUnit/Makefile new file mode 100644 index 000000000000..05dffd551134 --- /dev/null +++ b/devel/R-cran-RUnit/Makefile @@ -0,0 +1,21 @@ +# New ports collection makefile for: RUnit +# Date created: 2012-08-21 +# Whom: Steven Kreuzer <skreuzer@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= RUnit +PORTVERSION= 0.4.26 +CATEGORIES= devel +DISTNAME= ${PORTNAME}_${PORTVERSION} + +MAINTAINER= skreuzer@FreeBSD.org +COMMENT= R functions implementing a Unit Testing framework + +LICENSE= GPLv2 + +USE_R_MOD= yes +R_MOD_AUTOPLIST= yes + +.include <bsd.port.mk> diff --git a/devel/R-cran-RUnit/distinfo b/devel/R-cran-RUnit/distinfo new file mode 100644 index 000000000000..6b58a34102f8 --- /dev/null +++ b/devel/R-cran-RUnit/distinfo @@ -0,0 +1,2 @@ +SHA256 (RUnit_0.4.26.tar.gz) = c0515e7ec7e43d9b33cec153384d4bd32d02ca49595be9d024afa82f9e029f3e +SIZE (RUnit_0.4.26.tar.gz) = 281781 diff --git a/devel/R-cran-RUnit/pkg-descr b/devel/R-cran-RUnit/pkg-descr new file mode 100644 index 000000000000..d7255aa657f6 --- /dev/null +++ b/devel/R-cran-RUnit/pkg-descr @@ -0,0 +1,4 @@ +R Unit test framework R functions implementing a standard Unit Testing +framework, with additional code inspection and report generation tools + +WWW: http://sourceforge.net/projects/runit/ |