diff options
author | TAKATSU Tomonari <tota@FreeBSD.org> | 2017-09-10 14:45:29 +0000 |
---|---|---|
committer | TAKATSU Tomonari <tota@FreeBSD.org> | 2017-09-10 14:45:29 +0000 |
commit | e7107e68cb510182461770ee938203e36a7c3cfd (patch) | |
tree | e2e4758d3873ab51448fb2bcd3ad864efc7904e8 | |
parent | mail/sgwi: Switch to mysqli PHP extension (diff) |
- Add new port: devel/R-cran-withr
A set of functions to run code 'with' safely and temporarily modified
global state. Many of these functions were originally a part of the
'devtools' package, this provides a simple package with limited
dependencies to provide access to these functions.
WWW: https://cran.r-project.org/web/packages/withr/
Notes
Notes:
svn path=/head/; revision=449576
-rw-r--r-- | devel/Makefile | 1 | ||||
-rw-r--r-- | devel/R-cran-withr/Makefile | 16 | ||||
-rw-r--r-- | devel/R-cran-withr/distinfo | 3 | ||||
-rw-r--r-- | devel/R-cran-withr/pkg-descr | 6 |
4 files changed, 26 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index 4ed1150731bd..668600cb7481 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -5206,6 +5206,7 @@ SUBDIR += qtscriptgenerator SUBDIR += quickcheck++ SUBDIR += quilt + SUBDIR += R-cran-withr SUBDIR += racer SUBDIR += radare2 SUBDIR += ragel diff --git a/devel/R-cran-withr/Makefile b/devel/R-cran-withr/Makefile new file mode 100644 index 000000000000..714044339ebd --- /dev/null +++ b/devel/R-cran-withr/Makefile @@ -0,0 +1,16 @@ +# Created by: TAKATSU Tomonari <tota@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= withr +PORTVERSION= 2.0.0 +CATEGORIES= devel +DISTNAME= ${PORTNAME}_${PORTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Run Code 'With' Temporarily Modified Global State + +LICENSE= GPLv2+ + +USES= cran:auto-plist + +.include <bsd.port.mk> diff --git a/devel/R-cran-withr/distinfo b/devel/R-cran-withr/distinfo new file mode 100644 index 000000000000..94d9f9b91859 --- /dev/null +++ b/devel/R-cran-withr/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1505053715 +SHA256 (withr_2.0.0.tar.gz) = 36be55ca44cdf30517677f2e6e32d8bde4b581027714fb953a3d8fd19f4f9859 +SIZE (withr_2.0.0.tar.gz) = 16956 diff --git a/devel/R-cran-withr/pkg-descr b/devel/R-cran-withr/pkg-descr new file mode 100644 index 000000000000..e8e28fb1fb34 --- /dev/null +++ b/devel/R-cran-withr/pkg-descr @@ -0,0 +1,6 @@ +A set of functions to run code 'with' safely and temporarily modified +global state. Many of these functions were originally a part of the +'devtools' package, this provides a simple package with limited +dependencies to provide access to these functions. + +WWW: https://cran.r-project.org/web/packages/withr/ |