From owner-svn-ports-head@freebsd.org Tue Mar 31 21:07:55 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id B27E726C64D; Tue, 31 Mar 2020 21:07:55 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 48sMNn1f9cz4BrC; Tue, 31 Mar 2020 21:07:53 +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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4AB8B18B6C; Tue, 31 Mar 2020 21:07:48 +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 02VL7mn1090314; Tue, 31 Mar 2020 21:07:48 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 02VL7ldI090311; Tue, 31 Mar 2020 21:07:47 GMT (envelope-from tota@FreeBSD.org) Message-Id: <202003312107.02VL7ldI090311@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Tue, 31 Mar 2020 21:07:47 +0000 (UTC) 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 X-SVN-Group: ports-head X-SVN-Commit-Author: tota X-SVN-Commit-Paths: in head/www: . R-cran-servr X-SVN-Commit-Revision: 530020 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 31 Mar 2020 21:07:56 -0000 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 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/