aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZsolt Udvari <uzsolt@FreeBSD.org>2025-09-09 12:21:27 +0000
committerZsolt Udvari <uzsolt@FreeBSD.org>2025-09-09 12:22:23 +0000
commitdfd7fa701d0587886867e795cb2a74576a519aab (patch)
treeb4b9765eb40b6b3e4f2db82d68250abe0c1fc925
parentde21da68039fd2cd1ce96381a469a71f693502d8 (diff)
math/R-cran-mpoly: New port
mpoly is a simple collection of tools to help deal with multivariate polynomials symbolically and functionally in R.
-rw-r--r--math/Makefile1
-rw-r--r--math/R-cran-mpoly/Makefile27
-rw-r--r--math/R-cran-mpoly/distinfo3
-rw-r--r--math/R-cran-mpoly/pkg-descr2
4 files changed, 33 insertions, 0 deletions
diff --git a/math/Makefile b/math/Makefile
index e94469b8deaa..33cd64aa1d88 100644
--- a/math/Makefile
+++ b/math/Makefile
@@ -104,6 +104,7 @@
SUBDIR += R-cran-mitools
SUBDIR += R-cran-mnormt
SUBDIR += R-cran-moments
+ SUBDIR += R-cran-mpoly
SUBDIR += R-cran-mvtnorm
SUBDIR += R-cran-ncdf4
SUBDIR += R-cran-nloptr
diff --git a/math/R-cran-mpoly/Makefile b/math/R-cran-mpoly/Makefile
new file mode 100644
index 000000000000..93cfd3daa088
--- /dev/null
+++ b/math/R-cran-mpoly/Makefile
@@ -0,0 +1,27 @@
+PORTNAME= mpoly
+DISTVERSION= 1.1.2
+CATEGORIES= math
+DISTNAME= ${PORTNAME}_${PORTVERSION}
+
+MAINTAINER= uzsolt@FreeBSD.org
+COMMENT= Symbolic computing with multivariate polynomials in R
+WWW= https://cran.r-project.org/package=${PORTNAME}
+
+LICENSE= GPLv2
+
+RUN_DEPENDS= R-cran-ggplot2>0:graphics/R-cran-ggplot2 \
+ R-cran-orthopolynom>0:math/R-cran-orthopolynom \
+ R-cran-partitions>0:math/R-cran-partitions \
+ R-cran-plyr>0:devel/R-cran-plyr \
+ R-cran-polynom>0:math/R-cran-polynom \
+ R-cran-stringi>0:textproc/R-cran-stringi \
+ R-cran-stringr>=1.0.0:textproc/R-cran-stringr \
+ R-cran-tidyr>0:devel/R-cran-tidyr
+TEST_DEPENDS= R-cran-covr>0:devel/R-cran-covr \
+ R-cran-dplyr>0:math/R-cran-dplyr \
+ R-cran-magrittr>0:devel/R-cran-magrittr \
+ R-cran-testthat>=2.1.0:devel/R-cran-testthat
+
+USES= cran:auto-plist
+
+.include <bsd.port.mk>
diff --git a/math/R-cran-mpoly/distinfo b/math/R-cran-mpoly/distinfo
new file mode 100644
index 000000000000..cfeb68b37bf4
--- /dev/null
+++ b/math/R-cran-mpoly/distinfo
@@ -0,0 +1,3 @@
+TIMESTAMP = 1757064223
+SHA256 (mpoly_1.1.2.tar.gz) = dbef5aff839d567c5a7e697dfb70f116832501aec79364779caf827796b50cca
+SIZE (mpoly_1.1.2.tar.gz) = 1879213
diff --git a/math/R-cran-mpoly/pkg-descr b/math/R-cran-mpoly/pkg-descr
new file mode 100644
index 000000000000..995e57e4d0e3
--- /dev/null
+++ b/math/R-cran-mpoly/pkg-descr
@@ -0,0 +1,2 @@
+mpoly is a simple collection of tools to help deal with multivariate polynomials
+symbolically and functionally in R.