git: afba0f2d1597 - main - devel/R-cran-R.oo: new port
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 26 Sep 2024 09:13:40 UTC
The branch main has been updated by uzsolt: URL: https://cgit.FreeBSD.org/ports/commit/?id=afba0f2d1597837a9b30f86706b960951230488f commit afba0f2d1597837a9b30f86706b960951230488f Author: Zsolt Udvari <uzsolt@FreeBSD.org> AuthorDate: 2024-09-26 09:12:06 +0000 Commit: Zsolt Udvari <uzsolt@FreeBSD.org> CommitDate: 2024-09-26 09:12:48 +0000 devel/R-cran-R.oo: new port Methods and classes for object-oriented programming in R with or without references. Large effort has been made on making definition of methods as simple as possible with a minimum of maintenance for package developers. The package has been developed since 2001 and is now considered very stable. This is a cross-platform package implemented in pure R that defines standard S3 classes without any tricks. --- devel/Makefile | 1 + devel/R-cran-R.oo/Makefile | 17 +++++++++++++++++ devel/R-cran-R.oo/distinfo | 3 +++ devel/R-cran-R.oo/pkg-descr | 6 ++++++ 4 files changed, 27 insertions(+) diff --git a/devel/Makefile b/devel/Makefile index 19ec130fecd1..0e8646b3d44d 100644 --- a/devel/Makefile +++ b/devel/Makefile @@ -7,6 +7,7 @@ SUBDIR += R-cran-Hmisc SUBDIR += R-cran-ModelMetrics SUBDIR += R-cran-R.methodsS3 + SUBDIR += R-cran-R.oo SUBDIR += R-cran-R6 SUBDIR += R-cran-RUnit SUBDIR += R-cran-Rcpp diff --git a/devel/R-cran-R.oo/Makefile b/devel/R-cran-R.oo/Makefile new file mode 100644 index 000000000000..d17c9bd1d486 --- /dev/null +++ b/devel/R-cran-R.oo/Makefile @@ -0,0 +1,17 @@ +PORTNAME= R.oo +DISTVERSION= 1.26.0 +CATEGORIES= devel +DISTNAME= ${PORTNAME}_${DISTVERSION} + +MAINTAINER= uzsolt@FreeBSD.org +COMMENT= Methods and classes for object-oriented programming +WWW= https://cran.r-project.org/web/packages/R.oo/ + +LICENSE= LGPL21 LGPL3 +LICENSE_COMB= dual + +RUN_DEPENDS= R-cran-R.methodsS3>=1.8.2:devel/R-cran-R.methodsS3 + +USES= cran:auto-plist + +.include <bsd.port.mk> diff --git a/devel/R-cran-R.oo/distinfo b/devel/R-cran-R.oo/distinfo new file mode 100644 index 000000000000..99d68c24402d --- /dev/null +++ b/devel/R-cran-R.oo/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1727336955 +SHA256 (R.oo_1.26.0.tar.gz) = f7602b388c2216fbb4d1a31d4040ed92b40dc83d3e3746db7011637db4d44365 +SIZE (R.oo_1.26.0.tar.gz) = 383646 diff --git a/devel/R-cran-R.oo/pkg-descr b/devel/R-cran-R.oo/pkg-descr new file mode 100644 index 000000000000..c4d20f03a4b3 --- /dev/null +++ b/devel/R-cran-R.oo/pkg-descr @@ -0,0 +1,6 @@ +Methods and classes for object-oriented programming in R with or without +references. Large effort has been made on making definition of methods as simple +as possible with a minimum of maintenance for package developers. The package +has been developed since 2001 and is now considered very stable. This is a +cross-platform package implemented in pure R that defines standard S3 classes +without any tricks.