1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-20 00:21:35 +00:00

devel/R-cran-hardhat: Add new port

Building modeling packages is hard. A large amount of effort generally
goes into providing an implementation for a new method that is
efficient, fast, and correct, but often less emphasis is put on the
user interface. A good interface requires specialized knowledge
about S3 methods and formulas, which the average package developer
might not have. The goal of 'hardhat' is to reduce the burden around
building new modeling packages by providing functionality for
preprocessing, predicting, and validating input.

WWW: https://cran.r-project.org/web/packages/hardhat/
This commit is contained in:
TAKATSU Tomonari 2022-02-21 16:13:50 +00:00
parent 26c7cd1408
commit 6e093a0b43
4 changed files with 34 additions and 0 deletions

View File

@ -62,6 +62,7 @@
SUBDIR += R-cran-gmodels
SUBDIR += R-cran-gsubfn
SUBDIR += R-cran-gtools
SUBDIR += R-cran-hardhat
SUBDIR += R-cran-hms
SUBDIR += R-cran-ini
SUBDIR += R-cran-iterators

View File

@ -0,0 +1,20 @@
PORTNAME= hardhat
PORTVERSION= 0.2.0
CATEGORIES= devel
DISTNAME= ${PORTNAME}_${PORTVERSION}
MAINTAINER= tota@FreeBSD.org
COMMENT= Construct Modeling Packages
LICENSE= MIT
CRAN_DEPENDS= R-cran-glue>0:devel/R-cran-glue \
R-cran-rlang>=0.4.2:devel/R-cran-rlang \
R-cran-tibble>0:devel/R-cran-tibble \
R-cran-vctrs>=0.3.0:devel/R-cran-vctrs
BUILD_DEPENDS= ${CRAN_DEPENDS}
RUN_DEPENDS= ${CRAN_DEPENDS}
USES= cran:auto-plist
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
TIMESTAMP = 1645406750
SHA256 (hardhat_0.2.0.tar.gz) = 9497ca0fe6206c54d1da79f248d44c5faffc7d375b630091ef45dfca46c29628
SIZE (hardhat_0.2.0.tar.gz) = 898777

View File

@ -0,0 +1,10 @@
Building modeling packages is hard. A large amount of effort generally
goes into providing an implementation for a new method that is
efficient, fast, and correct, but often less emphasis is put on the
user interface. A good interface requires specialized knowledge
about S3 methods and formulas, which the average package developer
might not have. The goal of 'hardhat' is to reduce the burden around
building new modeling packages by providing functionality for
preprocessing, predicting, and validating input.
WWW: https://cran.r-project.org/web/packages/hardhat/