From owner-svn-ports-all@freebsd.org Mon May 8 09:07:26 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 156C8D63198; Mon, 8 May 2017 09:07:26 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6FC4E1AF0; Mon, 8 May 2017 09:07:25 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v4897Oog039051; Mon, 8 May 2017 09:07:24 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v4897OCS039047; Mon, 8 May 2017 09:07:24 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201705080907.v4897OCS039047@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Mon, 8 May 2017 09:07:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r440402 - in head/graphics: . R-cran-viridis X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 May 2017 09:07:26 -0000 Author: tota Date: Mon May 8 09:07:23 2017 New Revision: 440402 URL: https://svnweb.freebsd.org/changeset/ports/440402 Log: - Add new port: graphics/R-cran-viridis Port of the new 'matplotlib' color maps ('viridis' - the default -, 'magma', 'plasma' and 'inferno') to 'R'. 'matplotlib' is a popular plotting library for 'python'. These color maps are designed in such a way that they will analytically be perfectly perceptually-uniform, both in regular form and also when converted to black-and-white. They are also designed to be perceived by readers with the most common form of color blindness. WWW: https://cran.r-project.org/web/packages/viridis/ Added: head/graphics/R-cran-viridis/ head/graphics/R-cran-viridis/Makefile (contents, props changed) head/graphics/R-cran-viridis/distinfo (contents, props changed) head/graphics/R-cran-viridis/pkg-descr (contents, props changed) Modified: head/graphics/Makefile (contents, props changed) Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Mon May 8 08:38:27 2017 (r440401) +++ head/graphics/Makefile Mon May 8 09:07:23 2017 (r440402) @@ -33,6 +33,7 @@ SUBDIR += R-cran-rtiff SUBDIR += R-cran-scales SUBDIR += R-cran-shape + SUBDIR += R-cran-viridis SUBDIR += R-cran-viridisLite SUBDIR += R-cran-visNetwork SUBDIR += SciPlot Added: head/graphics/R-cran-viridis/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/R-cran-viridis/Makefile Mon May 8 09:07:23 2017 (r440402) @@ -0,0 +1,22 @@ +# Created by: TAKATSU Tomonari +# $FreeBSD$ + +PORTNAME= viridis +PORTVERSION= 0.4.0 +CATEGORIES= graphics +DISTNAME= ${PORTNAME}_${DISTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Default Color Maps from 'matplotlib' + +LICENSE= MIT + +CRAN_DEPENDS= R-cran-viridisLite>=0.2.0:graphics/R-cran-viridisLite \ + R-cran-ggplot2>=1.0.1:graphics/R-cran-ggplot2 \ + R-cran-gridExtra>0:graphics/R-cran-gridExtra +BUILD_DEPENDS= ${CRAN_DEPENDS} +RUN_DEPENDS= ${CRAN_DEPENDS} + +USES= cran:auto-plist + +.include Added: head/graphics/R-cran-viridis/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/R-cran-viridis/distinfo Mon May 8 09:07:23 2017 (r440402) @@ -0,0 +1,3 @@ +TIMESTAMP = 1494193855 +SHA256 (viridis_0.4.0.tar.gz) = 93d2ded68ed7cec5633c260dbc47051416147aae074f29ebe135cc329250b00e +SIZE (viridis_0.4.0.tar.gz) = 1787731 Added: head/graphics/R-cran-viridis/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/R-cran-viridis/pkg-descr Mon May 8 09:07:23 2017 (r440402) @@ -0,0 +1,9 @@ +Port of the new 'matplotlib' color maps ('viridis' - the default -, +'magma', 'plasma' and 'inferno') to 'R'. 'matplotlib' + is a popular plotting library for 'python'. +These color maps are designed in such a way that they will analytically +be perfectly perceptually-uniform, both in regular form and also +when converted to black-and-white. They are also designed to be +perceived by readers with the most common form of color blindness. + +WWW: https://cran.r-project.org/web/packages/viridis/