From owner-svn-ports-head@freebsd.org Tue Sep 5 17:15:36 2017 Return-Path: Delivered-To: svn-ports-head@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 13ED3E13822; Tue, 5 Sep 2017 17:15:36 +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 7B46775AC5; Tue, 5 Sep 2017 17:15:35 +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 v85HFY0i067187; Tue, 5 Sep 2017 17:15:34 GMT (envelope-from tota@FreeBSD.org) Received: (from tota@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v85HFYf2067182; Tue, 5 Sep 2017 17:15:34 GMT (envelope-from tota@FreeBSD.org) Message-Id: <201709051715.v85HFYf2067182@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tota set sender to tota@FreeBSD.org using -f From: TAKATSU Tomonari Date: Tue, 5 Sep 2017 17:15:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r449305 - in head/devel: . R-cran-glue X-SVN-Group: ports-head X-SVN-Commit-Author: tota X-SVN-Commit-Paths: in head/devel: . R-cran-glue X-SVN-Commit-Revision: 449305 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.23 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, 05 Sep 2017 17:15:36 -0000 Author: tota Date: Tue Sep 5 17:15:34 2017 New Revision: 449305 URL: https://svnweb.freebsd.org/changeset/ports/449305 Log: - Add new port: devel/R-cran-glue An implementation of interpreted string literals, inspired by Python's Literal String Interpolation and Docstrings and Julia's Triple-Quoted String Literals. WWW: https://cran.r-project.org/web/packages/glue/ Added: head/devel/R-cran-glue/ head/devel/R-cran-glue/Makefile (contents, props changed) head/devel/R-cran-glue/distinfo (contents, props changed) head/devel/R-cran-glue/pkg-descr (contents, props changed) Modified: head/devel/Makefile (contents, props changed) Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Tue Sep 5 17:15:29 2017 (r449304) +++ head/devel/Makefile Tue Sep 5 17:15:34 2017 (r449305) @@ -31,6 +31,7 @@ SUBDIR += R-cran-gbm SUBDIR += R-cran-gdata SUBDIR += R-cran-glmnet + SUBDIR += R-cran-glue SUBDIR += R-cran-gmodels SUBDIR += R-cran-gsubfn SUBDIR += R-cran-gtools Added: head/devel/R-cran-glue/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-glue/Makefile Tue Sep 5 17:15:34 2017 (r449305) @@ -0,0 +1,16 @@ +# Created by: TAKATSU Tomonari +# $FreeBSD$ + +PORTNAME= glue +PORTVERSION= 1.1.1 +CATEGORIES= devel +DISTNAME= ${PORTNAME}_${PORTVERSION} + +MAINTAINER= tota@FreeBSD.org +COMMENT= Interpreted String Literals + +LICENSE= MIT + +USES= cran:auto-plist,compiles + +.include Added: head/devel/R-cran-glue/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-glue/distinfo Tue Sep 5 17:15:34 2017 (r449305) @@ -0,0 +1,3 @@ +TIMESTAMP = 1504456770 +SHA256 (glue_1.1.1.tar.gz) = 309eedfd84018f3fa24339aa6ee87ba7af88f941edd450f2879fe7e317ae5c05 +SIZE (glue_1.1.1.tar.gz) = 11362 Added: head/devel/R-cran-glue/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/R-cran-glue/pkg-descr Tue Sep 5 17:15:34 2017 (r449305) @@ -0,0 +1,5 @@ +An implementation of interpreted string literals, inspired by +Python's Literal String Interpolation and Docstrings and Julia's +Triple-Quoted String Literals. + +WWW: https://cran.r-project.org/web/packages/glue/