git: 1b6c03012a16 - main - devel/R-cran-kit: New port: Data Manipulation Functions Implemented in C
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Wed, 18 Oct 2023 19:24:38 UTC
The branch main has been updated by eduardo: URL: https://cgit.FreeBSD.org/ports/commit/?id=1b6c03012a1655c68d43f38b913dfcea238cf7c5 commit 1b6c03012a1655c68d43f38b913dfcea238cf7c5 Author: Nuno Teixeira <eduardo@FreeBSD.org> AuthorDate: 2023-10-18 13:49:07 +0000 Commit: Nuno Teixeira <eduardo@FreeBSD.org> CommitDate: 2023-10-18 19:23:58 +0000 devel/R-cran-kit: New port: Data Manipulation Functions Implemented in C Basic functions, implemented in C, for large data manipulation. Fast vectorised ifelse()/nested if()/switch() functions, psum()/pprod() functions equivalent to pmin()/pmax() plus others which are missing from base R. Most of these functions are callable at C level. WWW: https://cran.r-project.org/web/packages/kit/ --- devel/Makefile | 1 + devel/R-cran-kit/Makefile | 14 ++++++++++++++ devel/R-cran-kit/distinfo | 3 +++ devel/R-cran-kit/pkg-descr | 4 ++++ 4 files changed, 22 insertions(+) diff --git a/devel/Makefile b/devel/Makefile index c3bfae1c4b7a..b43a7bacd73b 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -69,6 +69,7 @@ SUBDIR += R-cran-ini SUBDIR += R-cran-iterators SUBDIR += R-cran-itertools + SUBDIR += R-cran-kit SUBDIR += R-cran-later SUBDIR += R-cran-lifecycle SUBDIR += R-cran-lintr diff --git a/devel/R-cran-kit/Makefile b/devel/R-cran-kit/Makefile new file mode 100644 index 000000000000..82350e9bd867 --- /dev/null +++ b/devel/R-cran-kit/Makefile @@ -0,0 +1,14 @@ +PORTNAME= kit +DISTVERSION= 0.0.15 +CATEGORIES= devel +DISTNAME= ${PORTNAME}_${PORTVERSION} + +MAINTAINER= eduardo@FreeBSD.org +COMMENT= Data Manipulation Functions Implemented in C +WWW= https://cran.r-project.org/web/packages/kit/ + +LICENSE= GPLv3 + +USES= cran:auto-plist,compiles + +.include <bsd.port.mk> diff --git a/devel/R-cran-kit/distinfo b/devel/R-cran-kit/distinfo new file mode 100644 index 000000000000..b7c464bcdf4a --- /dev/null +++ b/devel/R-cran-kit/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1697634931 +SHA256 (kit_0.0.15.tar.gz) = 557eee17077157120a129294c10eeaa18ae97d897d460cc3c69a2b3390ebfabf +SIZE (kit_0.0.15.tar.gz) = 93077 diff --git a/devel/R-cran-kit/pkg-descr b/devel/R-cran-kit/pkg-descr new file mode 100644 index 000000000000..314935d2c8f8 --- /dev/null +++ b/devel/R-cran-kit/pkg-descr @@ -0,0 +1,4 @@ +Basic functions, implemented in C, for large data manipulation. Fast +vectorised ifelse()/nested if()/switch() functions, psum()/pprod() +functions equivalent to pmin()/pmax() plus others which are missing from +base R. Most of these functions are callable at C level.