git: 2b1ca2ebc522 - main - graphics/R-cran-cowplot: New port: Streamlined Plot Theme and Plot Annotations for 'ggplot2'
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 06 Apr 2024 14:52:38 UTC
The branch main has been updated by eduardo: URL: https://cgit.FreeBSD.org/ports/commit/?id=2b1ca2ebc522bfaca98471c0a0d02ad5cb4c2827 commit 2b1ca2ebc522bfaca98471c0a0d02ad5cb4c2827 Author: Einar Bjarni Halldórsson <einar@isnic.is> AuthorDate: 2024-04-05 13:51:42 +0000 Commit: Nuno Teixeira <eduardo@FreeBSD.org> CommitDate: 2024-04-06 14:42:38 +0000 graphics/R-cran-cowplot: New port: Streamlined Plot Theme and Plot Annotations for 'ggplot2' - Submitter becomes maintainer Provides various features that help with creating publication-quality figures with 'ggplot2', such as a set of themes, functions to align plots and arrange them into complex compound figures, and functions that make it easy to annotate plots and or mix plots with images. The package was originally written for internal use in the Wilke lab, hence the name (Claus O. Wilke's plot package). It has also been used extensively in the book Fundamentals of Data Visualization. WWW: https://wilkelab.org/cowplot/ Differential Revision: https://reviews.freebsd.org/D43735 --- graphics/Makefile | 1 + graphics/R-cran-cowplot/Makefile | 24 ++++++++++++++++++++++++ graphics/R-cran-cowplot/distinfo | 3 +++ graphics/R-cran-cowplot/pkg-descr | 8 ++++++++ 4 files changed, 36 insertions(+) diff --git a/graphics/Makefile b/graphics/Makefile index 76241ca6e330..23b5aadc5ac7 100644 --- a/graphics/Makefile +++ b/graphics/Makefile @@ -12,6 +12,7 @@ SUBDIR += R-cran-GDD SUBDIR += R-cran-RColorBrewer SUBDIR += R-cran-colorspace + SUBDIR += R-cran-cowplot SUBDIR += R-cran-diagram SUBDIR += R-cran-dichromat SUBDIR += R-cran-dygraphs diff --git a/graphics/R-cran-cowplot/Makefile b/graphics/R-cran-cowplot/Makefile new file mode 100644 index 000000000000..79e5015b8a31 --- /dev/null +++ b/graphics/R-cran-cowplot/Makefile @@ -0,0 +1,24 @@ +PORTNAME= cowplot +DISTVERSION= 1.1.3 +CATEGORIES= graphics +DISTNAME= ${PORTNAME}_${DISTVERSION} + +MAINTAINER= einar@isnic.is +COMMENT= Streamlined Plot Theme and Plot Annotations for 'ggplot2' +WWW= https://wilkelab.org/cowplot/ + +LICENSE= GPLv2 + +CRAN_DEPENDS= R-cran-ggplot2>=3.4.0:graphics/R-cran-ggplot2 \ + R-cran-gtable>0:math/R-cran-gtable \ + R-cran-rlang>0:devel/R-cran-rlang \ + R-cran-scales>0:graphics/R-cran-scales +BUILD_DEPENDS= ${CRAN_DEPENDS} +RUN_DEPENDS= ${CRAN_DEPENDS} +TEST_DEPENDS= R-cran-dbplyr>0:databases/R-cran-dbplyr \ + R-cran-maps>0:math/R-cran-maps \ + R-cran-testthat>=1.0.0:devel/R-cran-testthat + +USES= cran:auto-plist + +.include <bsd.port.mk> diff --git a/graphics/R-cran-cowplot/distinfo b/graphics/R-cran-cowplot/distinfo new file mode 100644 index 000000000000..a342717b4385 --- /dev/null +++ b/graphics/R-cran-cowplot/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1706875292 +SHA256 (cowplot_1.1.3.tar.gz) = 8756971af5c50381cf00ec7ed622fd5cf3d70f534bdfa3ebadd157b5aef5b273 +SIZE (cowplot_1.1.3.tar.gz) = 1350286 diff --git a/graphics/R-cran-cowplot/pkg-descr b/graphics/R-cran-cowplot/pkg-descr new file mode 100644 index 000000000000..905908be2efe --- /dev/null +++ b/graphics/R-cran-cowplot/pkg-descr @@ -0,0 +1,8 @@ +Provides various features that help with creating publication-quality figures +with 'ggplot2', such as a set of themes, functions to align plots and arrange +them into complex compound figures, and functions that make it easy to annotate +plots and or mix plots with images. +The package was originally written for internal use in the Wilke lab, hence the +name (Claus O. Wilke's plot package). +It has also been used extensively in the book Fundamentals of Data +Visualization.