diff options
author | tota <tota@FreeBSD.org> | 2018-04-24 13:30:42 +0800 |
---|---|---|
committer | tota <tota@FreeBSD.org> | 2018-04-24 13:30:42 +0800 |
commit | 431f770ee181cd3a669c3455d11b1281685afb4a (patch) | |
tree | 4ded20603d8e55bc702de086b2c357f675be6d3f | |
parent | 8e771a3376b64a692937e06aae85987c4954eeda (diff) | |
download | freebsd-ports-gnome-431f770ee181cd3a669c3455d11b1281685afb4a.tar.gz freebsd-ports-gnome-431f770ee181cd3a669c3455d11b1281685afb4a.tar.zst freebsd-ports-gnome-431f770ee181cd3a669c3455d11b1281685afb4a.zip |
- Add new port: devel/R-cran-later
Executes arbitrary R or C functions some time after the current
time, after the R execution stack has emptied.
WWW: https://cran.r-project.org/web/packages/later/
-rw-r--r-- | devel/Makefile | 1 | ||||
-rw-r--r-- | devel/R-cran-later/Makefile | 21 | ||||
-rw-r--r-- | devel/R-cran-later/distinfo | 3 | ||||
-rw-r--r-- | devel/R-cran-later/pkg-descr | 4 |
4 files changed, 29 insertions, 0 deletions
diff --git a/devel/Makefile b/devel/Makefile index a5a7d2b78668..8a8e901d2fd4 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -42,6 +42,7 @@ SUBDIR += R-cran-hms SUBDIR += R-cran-iterators SUBDIR += R-cran-itertools + SUBDIR += R-cran-later SUBDIR += R-cran-lubridate SUBDIR += R-cran-magrittr SUBDIR += R-cran-memoise diff --git a/devel/R-cran-later/Makefile b/devel/R-cran-later/Makefile new file mode 100644 index 000000000000..54869ce4fd68 --- /dev/null +++ b/devel/R-cran-later/Makefile @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= later +PORTVERSION= 0.7.1 +CATEGORIES= devel +DISTNAME= ${PORTNAME}_${PORTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Utilities for Delaying Function Execution + +LICENSE= GPLv2+ + +USES= cran:auto-plist,compiles + +CRAN_DEPENDS= R-cran-Rcpp>=0.12.9:devel/R-cran-Rcpp \ + R-cran-rlang>0:devel/R-cran-rlang \ + R-cran-BH>0:devel/R-cran-BH +BUILD_DEPENDS= ${CRAN_DEPENDS} +RUN_DEPENDS= ${CRAN_DEPENDS} + +.include <bsd.port.mk> diff --git a/devel/R-cran-later/distinfo b/devel/R-cran-later/distinfo new file mode 100644 index 000000000000..1ee93294f4af --- /dev/null +++ b/devel/R-cran-later/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1524537042 +SHA256 (later_0.7.1.tar.gz) = 7fe7f7e39a59e201f41adfdd6487d5e1976af5331735171efb094fca6af5327d +SIZE (later_0.7.1.tar.gz) = 36834 diff --git a/devel/R-cran-later/pkg-descr b/devel/R-cran-later/pkg-descr new file mode 100644 index 000000000000..b234cd360fdf --- /dev/null +++ b/devel/R-cran-later/pkg-descr @@ -0,0 +1,4 @@ +Executes arbitrary R or C functions some time after the current +time, after the R execution stack has emptied. + +WWW: https://cran.r-project.org/web/packages/later/ |