diff options
author | brook <brook@pkgsrc.org> | 2019-07-31 13:13:39 +0000 |
---|---|---|
committer | brook <brook@pkgsrc.org> | 2019-07-31 13:13:39 +0000 |
commit | 99ba477bea7c221d099fa7e66aa8d401bcc3eb93 (patch) | |
tree | b0cbb696515b978a47aad2da35f62de86b88a3f9 | |
parent | 4d3144743c4738b72c7e3b3ff6a3957d6bc35ffb (diff) | |
download | pkgsrc-99ba477bea7c221d099fa7e66aa8d401bcc3eb93.tar.gz |
R-ellipsis: initial commit.
The ellipsis is a powerful tool for extending functions. Unfortunately
this power comes at a cost: misspelled arguments will be silently
ignored. The ellipsis package provides a collection of functions to
catch problems and alert the user.
-rw-r--r-- | doc/CHANGES-2019 | 3 | ||||
-rw-r--r-- | math/Makefile | 3 | ||||
-rw-r--r-- | math/R-ellipsis/DESCR | 4 | ||||
-rw-r--r-- | math/R-ellipsis/Makefile | 18 | ||||
-rw-r--r-- | math/R-ellipsis/distinfo | 6 |
5 files changed, 32 insertions, 2 deletions
diff --git a/doc/CHANGES-2019 b/doc/CHANGES-2019 index 9fc3d9a0c18..d9b8506b541 100644 --- a/doc/CHANGES-2019 +++ b/doc/CHANGES-2019 @@ -1,4 +1,4 @@ -$NetBSD: CHANGES-2019,v 1.3104 2019/07/31 13:11:28 brook Exp $ +$NetBSD: CHANGES-2019,v 1.3105 2019/07/31 13:13:39 brook Exp $ Changes to the packages collection and infrastructure in 2019: @@ -5061,3 +5061,4 @@ Changes to the packages collection and infrastructure in 2019: Added math/R-RcmdrMisc version 2.5.1 [brook 2019-07-31] Added math/R-acepack version 1.4.1 [brook 2019-07-31] Added math/R-backports version 1.1.4 [brook 2019-07-31] + Added math/R-ellipsis version 0.2.0.1 [brook 2019-07-31] diff --git a/math/Makefile b/math/Makefile index c6a5c439be1..96718ce5da9 100644 --- a/math/Makefile +++ b/math/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.414 2019/07/31 13:11:28 brook Exp $ +# $NetBSD: Makefile,v 1.415 2019/07/31 13:13:39 brook Exp $ COMMENT= Mathematics @@ -44,6 +44,7 @@ SUBDIR+= R-coda SUBDIR+= R-combinat SUBDIR+= R-date SUBDIR+= R-e1071 +SUBDIR+= R-ellipsis SUBDIR+= R-emdbook SUBDIR+= R-forecast SUBDIR+= R-fracdiff diff --git a/math/R-ellipsis/DESCR b/math/R-ellipsis/DESCR new file mode 100644 index 00000000000..6810ed959b1 --- /dev/null +++ b/math/R-ellipsis/DESCR @@ -0,0 +1,4 @@ +The ellipsis is a powerful tool for extending functions. Unfortunately +this power comes at a cost: misspelled arguments will be silently +ignored. The ellipsis package provides a collection of functions to +catch problems and alert the user. diff --git a/math/R-ellipsis/Makefile b/math/R-ellipsis/Makefile new file mode 100644 index 00000000000..ce63e4445f0 --- /dev/null +++ b/math/R-ellipsis/Makefile @@ -0,0 +1,18 @@ +# $NetBSD: Makefile,v 1.1 2019/07/31 13:13:39 brook Exp $ + +CATEGORIES= math R + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= ${R_HOMEPAGE_BASE}/ellipsis/ +COMMENT= Tools for working with ... +LICENSE= gnu-gpl-v3 + +R_PKGNAME= ellipsis +R_PKGVER= 0.2.0.1 + +DEPENDS+= R-rlang>=0.3.0:../../devel/R-rlang + +USE_LANGUAGES= c + +.include "../../math/R/Makefile.extension" +.include "../../mk/bsd.pkg.mk" diff --git a/math/R-ellipsis/distinfo b/math/R-ellipsis/distinfo new file mode 100644 index 00000000000..b5281c5d383 --- /dev/null +++ b/math/R-ellipsis/distinfo @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1 2019/07/31 13:13:39 brook Exp $ + +SHA1 (R/ellipsis_0.2.0.1.tar.gz) = 6f68eb3196b40d640448c0d612cc3d133d52b5cc +RMD160 (R/ellipsis_0.2.0.1.tar.gz) = 9bb251f123806b9a5cbe7993fe5f1310949fa71f +SHA512 (R/ellipsis_0.2.0.1.tar.gz) = e38a149d8fdc83c694bae2c1a07ad2e1974680e84d2bef304fcddb51eff6ca8994cd01c3cbd8746541b99e8c36938017896d02e22348c2879e17a1c0789003fe +Size (R/ellipsis_0.2.0.1.tar.gz) = 7045 bytes |