diff options
author | wen <wen@FreeBSD.org> | 2019-12-03 10:26:29 +0800 |
---|---|---|
committer | wen <wen@FreeBSD.org> | 2019-12-03 10:26:29 +0800 |
commit | dcca87494f843e4b0748682b3f1404e20c2b302d (patch) | |
tree | 1f37e2c7647003d77f7eb9b289cef5f2513c8fe9 /math | |
parent | e01ee688aec94551fc189b917eaf4c3dc911ada7 (diff) | |
download | freebsd-ports-gnome-dcca87494f843e4b0748682b3f1404e20c2b302d.tar.gz freebsd-ports-gnome-dcca87494f843e4b0748682b3f1404e20c2b302d.tar.zst freebsd-ports-gnome-dcca87494f843e4b0748682b3f1404e20c2b302d.zip |
Data structures and basic operations for ordinary sets, generalizations such as
fuzzy sets, multisets, and fuzzy multisets, customizable sets, and intervals.
WWW: https://cran.r-project.org/web/packages/sets/
Diffstat (limited to 'math')
-rw-r--r-- | math/Makefile | 1 | ||||
-rw-r--r-- | math/R-cran-sets/Makefile | 15 | ||||
-rw-r--r-- | math/R-cran-sets/distinfo | 3 | ||||
-rw-r--r-- | math/R-cran-sets/pkg-descr | 4 |
4 files changed, 23 insertions, 0 deletions
diff --git a/math/Makefile b/math/Makefile index 7d71394e0e0d..f2cdca2c9f15 100644 --- a/math/Makefile +++ b/math/Makefile @@ -97,6 +97,7 @@ SUBDIR += R-cran-robustbase SUBDIR += R-cran-sandwich SUBDIR += R-cran-scatterplot3d + SUBDIR += R-cran-sets SUBDIR += R-cran-sf SUBDIR += R-cran-sm SUBDIR += R-cran-sp diff --git a/math/R-cran-sets/Makefile b/math/R-cran-sets/Makefile new file mode 100644 index 000000000000..fe1352ce5525 --- /dev/null +++ b/math/R-cran-sets/Makefile @@ -0,0 +1,15 @@ +# $FreeBSD$ + +PORTNAME= sets +DISTVERSION= 1.0-18 +CATEGORIES= math +DISTNAME= ${PORTNAME}_${DISTVERSION} + +MAINTAINER= wen@FreeBSD.org +COMMENT= Sets, Generalized Sets, Customizable Sets and Intervals + +LICENSE= GPLv2 + +USES= cran:auto-plist,compiles + +.include <bsd.port.mk> diff --git a/math/R-cran-sets/distinfo b/math/R-cran-sets/distinfo new file mode 100644 index 000000000000..d4c64273557f --- /dev/null +++ b/math/R-cran-sets/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1575338038 +SHA256 (sets_1.0-18.tar.gz) = 74d1e057e5b84197edb120665831d7b0565e2945e903be56c6701e724131679b +SIZE (sets_1.0-18.tar.gz) = 422583 diff --git a/math/R-cran-sets/pkg-descr b/math/R-cran-sets/pkg-descr new file mode 100644 index 000000000000..f0b352db1a4f --- /dev/null +++ b/math/R-cran-sets/pkg-descr @@ -0,0 +1,4 @@ +Data structures and basic operations for ordinary sets, generalizations such as +fuzzy sets, multisets, and fuzzy multisets, customizable sets, and intervals. + +WWW: https://cran.r-project.org/web/packages/sets/ |