1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-28 05:29:48 +00:00

devel/R-cran-R.methodsS3: new port

Methods that simplify the setup of S3 generic functions and S3 methods.
Major effort has been made in making definition of methods as simple as
possible with a minimum of maintenance for package developers. For
example, generic functions are created automatically, if missing, and
naming conflict are automatically solved, if possible. The method
setMethodS3() is a good start for those who in the future may want to
migrate to S4. This is a cross-platform package implemented in pure R
that generates standard S3 methods.
This commit is contained in:
Zsolt Udvari 2024-09-26 09:42:41 +02:00
parent 3ca8928305
commit e6f0342457
4 changed files with 26 additions and 0 deletions

View File

@ -6,6 +6,7 @@
SUBDIR += R-cran-Defaults
SUBDIR += R-cran-Hmisc
SUBDIR += R-cran-ModelMetrics
SUBDIR += R-cran-R.methodsS3
SUBDIR += R-cran-R6
SUBDIR += R-cran-RUnit
SUBDIR += R-cran-Rcpp

View File

@ -0,0 +1,15 @@
PORTNAME= R.methodsS3
DISTVERSION= 1.8.2
CATEGORIES= devel
DISTNAME= ${PORTNAME}_${DISTVERSION}
MAINTAINER= uzsolt@FreeBSD.org
COMMENT= Methods that simplify the setup of S3 generic functions
WWW= https://cran.r-project.org/web/packages/R.methodsS3/
LICENSE= LGPL21 LGPL3
LICENSE_COMB= dual
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1727336130
SHA256 (R.methodsS3_1.8.2.tar.gz) = 822d5e61dad4c91e8883be2b38d7b89f87492046d0fe345704eb5d2658927c2e
SIZE (R.methodsS3_1.8.2.tar.gz) = 24131

View File

@ -0,0 +1,7 @@
Methods that simplify the setup of S3 generic functions and S3 methods. Major
effort has been made in making definition of methods as simple as possible with
a minimum of maintenance for package developers. For example, generic functions
are created automatically, if missing, and naming conflict are automatically
solved, if possible. The method setMethodS3() is a good start for those who in
the future may want to migrate to S4. This is a cross-platform package
implemented in pure R that generates standard S3 methods.