Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 31 Mar 2020 21:07:47 +0000 (UTC)
From:      TAKATSU Tomonari <tota@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r530020 - in head/www: . R-cran-servr
Message-ID:  <202003312107.02VL7ldI090311@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: tota
Date: Tue Mar 31 21:07:47 2020
New Revision: 530020
URL: https://svnweb.freebsd.org/changeset/ports/530020

Log:
  - Add new port: www/R-cran-servr
  
    Start an HTTP server in R to serve static files, or dynamic documents
    that can be converted to HTML files (e.g., R Markdown) under a given
    directory.
  
    WWW: https://cran.r-project.org/web/packages/servr/

Added:
  head/www/R-cran-servr/
  head/www/R-cran-servr/Makefile   (contents, props changed)
  head/www/R-cran-servr/distinfo   (contents, props changed)
  head/www/R-cran-servr/pkg-descr   (contents, props changed)
Modified:
  head/www/Makefile

Modified: head/www/Makefile
==============================================================================
--- head/www/Makefile	Tue Mar 31 21:07:03 2020	(r530019)
+++ head/www/Makefile	Tue Mar 31 21:07:47 2020	(r530020)
@@ -13,6 +13,7 @@
     SUBDIR += R-cran-rvest
     SUBDIR += R-cran-scrapeR
     SUBDIR += R-cran-selectr
+    SUBDIR += R-cran-servr
     SUBDIR += R-cran-shiny
     SUBDIR += Stikked
     SUBDIR += UniversalFeedCreator

Added: head/www/R-cran-servr/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/R-cran-servr/Makefile	Tue Mar 31 21:07:47 2020	(r530020)
@@ -0,0 +1,22 @@
+# $FreeBSD$
+
+PORTNAME=	servr
+PORTVERSION=	0.16
+CATEGORIES=	www
+DISTNAME=	${PORTNAME}_${PORTVERSION}
+
+MAINTAINER=	tota@FreeBSD.org
+COMMENT=	Simple HTTP Server to Serve Static Files or Dynamic Documents
+
+LICENSE=	GPLv2+
+
+CRAN_DEPENDS=	R-cran-mime>=0.2:misc/R-cran-mime \
+		R-cran-httpuv>=1.4.0:www/R-cran-httpuv \
+		R-cran-xfun>0:misc/R-cran-xfun \
+		R-cran-jsonlite>0:converters/R-cran-jsonlite
+BUILD_DEPENDS=	${CRAN_DEPENDS}
+RUN_DEPENDS=	${CRAN_DEPENDS}
+
+USES=		cran:auto-plist
+
+.include <bsd.port.mk>

Added: head/www/R-cran-servr/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/R-cran-servr/distinfo	Tue Mar 31 21:07:47 2020	(r530020)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1585665656
+SHA256 (servr_0.16.tar.gz) = cc950bedbd52f2d93c54157dc5b261113be6baee2d9e90e99a8de048c09fda80
+SIZE (servr_0.16.tar.gz) = 23119

Added: head/www/R-cran-servr/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/www/R-cran-servr/pkg-descr	Tue Mar 31 21:07:47 2020	(r530020)
@@ -0,0 +1,5 @@
+Start an HTTP server in R to serve static files, or dynamic documents
+that can be converted to HTML files (e.g., R Markdown) under a given
+directory.
+
+WWW: https://cran.r-project.org/web/packages/servr/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202003312107.02VL7ldI090311>