Received: by mail.netbsd.org (Postfix, from userid 605) id BA58584DEE; Fri, 9 Aug 2019 18:32:50 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 4144584DDA for ; Fri, 9 Aug 2019 18:32:50 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id i4_GjhmBoFBx for ; Fri, 9 Aug 2019 18:32:49 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id A70F184D27 for ; Fri, 9 Aug 2019 18:32:49 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id A4AF7FBF4; Fri, 9 Aug 2019 18:32:49 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1565375569207190" MIME-Version: 1.0 Date: Fri, 9 Aug 2019 18:32:49 +0000 From: "Brook Milligan" Subject: CVS commit: pkgsrc To: pkgsrc-changes@NetBSD.org Reply-To: brook@netbsd.org X-Mailer: log_accum Message-Id: <20190809183249.A4AF7FBF4@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1565375569207190 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: brook Date: Fri Aug 9 18:32:49 UTC 2019 Modified Files: pkgsrc/doc: CHANGES-2019 pkgsrc/textproc: Makefile Added Files: pkgsrc/textproc/R-brew: DESCR Makefile distinfo Log Message: R-brew: initial commit brew implements a templating framework for mixing text and R code for report generation. brew template syntax is similar to PHP, Ruby's erb module, Java Server Pages, and Python's psp module. To generate a diff of this commit: cvs rdiff -u -r1.3348 -r1.3349 pkgsrc/doc/CHANGES-2019 cvs rdiff -u -r1.1044 -r1.1045 pkgsrc/textproc/Makefile cvs rdiff -u -r0 -r1.1 pkgsrc/textproc/R-brew/DESCR \ pkgsrc/textproc/R-brew/Makefile pkgsrc/textproc/R-brew/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1565375569207190 Content-Disposition: inline Content-Length: 2930 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/doc/CHANGES-2019 diff -u pkgsrc/doc/CHANGES-2019:1.3348 pkgsrc/doc/CHANGES-2019:1.3349 --- pkgsrc/doc/CHANGES-2019:1.3348 Fri Aug 9 18:31:59 2019 +++ pkgsrc/doc/CHANGES-2019 Fri Aug 9 18:32:49 2019 @@ -1,4 +1,4 @@ -$NetBSD: CHANGES-2019,v 1.3348 2019/08/09 18:31:59 brook Exp $ +$NetBSD: CHANGES-2019,v 1.3349 2019/08/09 18:32:49 brook Exp $ Changes to the packages collection and infrastructure in 2019: @@ -5471,3 +5471,4 @@ Changes to the packages collection and i Added misc/R-praise version 1.0.0 [brook 2019-08-09] Added textproc/R-xml2 version 1.2.2 [brook 2019-08-09] Added textproc/R-commonmark version 1.7 [brook 2019-08-09] + Added textproc/R-brew version 1.0.6 [brook 2019-08-09] Index: pkgsrc/textproc/Makefile diff -u pkgsrc/textproc/Makefile:1.1044 pkgsrc/textproc/Makefile:1.1045 --- pkgsrc/textproc/Makefile:1.1044 Fri Aug 9 18:31:59 2019 +++ pkgsrc/textproc/Makefile Fri Aug 9 18:32:48 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1044 2019/08/09 18:31:59 brook Exp $ +# $NetBSD: Makefile,v 1.1045 2019/08/09 18:32:48 brook Exp $ # COMMENT= Text processing utilities (does not include desktop publishing) @@ -11,6 +11,7 @@ SUBDIR+= GutenMark-words SUBDIR+= LDoc SUBDIR+= Markdown SUBDIR+= OdfConverter +SUBDIR+= R-brew SUBDIR+= R-cellranger SUBDIR+= R-clisymbols SUBDIR+= R-commonmark Added files: Index: pkgsrc/textproc/R-brew/DESCR diff -u /dev/null pkgsrc/textproc/R-brew/DESCR:1.1 --- /dev/null Fri Aug 9 18:32:49 2019 +++ pkgsrc/textproc/R-brew/DESCR Fri Aug 9 18:32:49 2019 @@ -0,0 +1,3 @@ +brew implements a templating framework for mixing text and R code for +report generation. brew template syntax is similar to PHP, Ruby's erb +module, Java Server Pages, and Python's psp module. Index: pkgsrc/textproc/R-brew/Makefile diff -u /dev/null pkgsrc/textproc/R-brew/Makefile:1.1 --- /dev/null Fri Aug 9 18:32:49 2019 +++ pkgsrc/textproc/R-brew/Makefile Fri Aug 9 18:32:49 2019 @@ -0,0 +1,14 @@ +# $NetBSD: Makefile,v 1.1 2019/08/09 18:32:49 brook Exp $ + +R_PKGNAME= brew +R_PKGVER= 1.0-6 +CATEGORIES= textproc + +MAINTAINER= pkgsrc-users@NetBSD.org +COMMENT= Templating framework for report generation +LICENSE= gnu-gpl-v2 + +USE_LANGUAGES= # none + +.include "../../math/R/Makefile.extension" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/textproc/R-brew/distinfo diff -u /dev/null pkgsrc/textproc/R-brew/distinfo:1.1 --- /dev/null Fri Aug 9 18:32:49 2019 +++ pkgsrc/textproc/R-brew/distinfo Fri Aug 9 18:32:49 2019 @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1 2019/08/09 18:32:49 brook Exp $ + +SHA1 (R/brew_1.0-6.tar.gz) = ec1a4afc3ca5776aca8d98af0c4376c2eeab5b03 +RMD160 (R/brew_1.0-6.tar.gz) = 41d50c9d35028f309d1518eb25999600e002679b +SHA512 (R/brew_1.0-6.tar.gz) = 258e0ed8097226a44bace2d6a68db846d7f665dcb0005d0809bdbb20775bca8b7f9f8e45310bbedd7a3cb11560fd0d454f36f0cfee6d1cdb5798da8d7e571f30 +Size (R/brew_1.0-6.tar.gz) = 83315 bytes --_----------=_1565375569207190--