Received: by mail.netbsd.org (Postfix, from userid 605) id E9FE684E33; Wed, 31 Jul 2019 13:58:42 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 701B284E26 for ; Wed, 31 Jul 2019 13:58:42 +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 sgFKAb7TfABz for ; Wed, 31 Jul 2019 13:58:41 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id CEDB584CDC for ; Wed, 31 Jul 2019 13:58:41 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id C18E8FBF4; Wed, 31 Jul 2019 13:58:41 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1564581521107870" MIME-Version: 1.0 Date: Wed, 31 Jul 2019 13:58:41 +0000 From: "Brook Milligan" Subject: CVS commit: pkgsrc To: pkgsrc-changes@NetBSD.org Reply-To: brook@netbsd.org X-Mailer: log_accum Message-Id: <20190731135841.C18E8FBF4@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. --_----------=_1564581521107870 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: brook Date: Wed Jul 31 13:58:41 UTC 2019 Modified Files: pkgsrc/doc: CHANGES-2019 pkgsrc/www: Makefile Added Files: pkgsrc/www/R-htmlwidgets: DESCR Makefile distinfo Log Message: R-htmlwidgets: initial commit. A framework for creating HTML widgets that render in various contexts including the R console, 'R Markdown' documents, and 'Shiny' web applications. To generate a diff of this commit: cvs rdiff -u -r1.3127 -r1.3128 pkgsrc/doc/CHANGES-2019 cvs rdiff -u -r1.1392 -r1.1393 pkgsrc/www/Makefile cvs rdiff -u -r0 -r1.1 pkgsrc/www/R-htmlwidgets/DESCR \ pkgsrc/www/R-htmlwidgets/Makefile pkgsrc/www/R-htmlwidgets/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1564581521107870 Content-Disposition: inline Content-Length: 2963 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.3127 pkgsrc/doc/CHANGES-2019:1.3128 --- pkgsrc/doc/CHANGES-2019:1.3127 Wed Jul 31 13:56:46 2019 +++ pkgsrc/doc/CHANGES-2019 Wed Jul 31 13:58:41 2019 @@ -1,4 +1,4 @@ -$NetBSD: CHANGES-2019,v 1.3127 2019/07/31 13:56:46 brook Exp $ +$NetBSD: CHANGES-2019,v 1.3128 2019/07/31 13:58:41 brook Exp $ Changes to the packages collection and infrastructure in 2019: @@ -5084,3 +5084,4 @@ Changes to the packages collection and i Added textproc/R-readstata13 version 0.9.2 [brook 2019-07-31] Added textproc/R-readxl version 1.3.1 [brook 2019-07-31] Added time/R-hms version 0.5.0 [brook 2019-07-31] + Added www/R-htmlwidgets version 1.3 [brook 2019-07-31] Index: pkgsrc/www/Makefile diff -u pkgsrc/www/Makefile:1.1392 pkgsrc/www/Makefile:1.1393 --- pkgsrc/www/Makefile:1.1392 Mon Jul 1 15:49:47 2019 +++ pkgsrc/www/Makefile Wed Jul 31 13:58:41 2019 @@ -1,9 +1,10 @@ -# $NetBSD: Makefile,v 1.1392 2019/07/01 15:49:47 jaapb Exp $ +# $NetBSD: Makefile,v 1.1393 2019/07/31 13:58:41 brook Exp $ # COMMENT= Packages related to the World Wide Web SUBDIR+= R-curl +SUBDIR+= R-htmlwidgets SUBDIR+= SOGo SUBDIR+= SOGo3 SUBDIR+= SpeedyCGI Added files: Index: pkgsrc/www/R-htmlwidgets/DESCR diff -u /dev/null pkgsrc/www/R-htmlwidgets/DESCR:1.1 --- /dev/null Wed Jul 31 13:58:41 2019 +++ pkgsrc/www/R-htmlwidgets/DESCR Wed Jul 31 13:58:41 2019 @@ -0,0 +1,3 @@ +A framework for creating HTML widgets that render in various contexts +including the R console, 'R Markdown' documents, and 'Shiny' web +applications. Index: pkgsrc/www/R-htmlwidgets/Makefile diff -u /dev/null pkgsrc/www/R-htmlwidgets/Makefile:1.1 --- /dev/null Wed Jul 31 13:58:41 2019 +++ pkgsrc/www/R-htmlwidgets/Makefile Wed Jul 31 13:58:41 2019 @@ -0,0 +1,20 @@ +# $NetBSD: Makefile,v 1.1 2019/07/31 13:58:41 brook Exp $ + +CATEGORIES= www R + +MAINTAINER= pkgsrc-users@NetBSD.org +HOMEPAGE= ${R_HOMEPAGE_BASE}/htmlwidgets/ +COMMENT= HTML widgets for R +LICENSE= mit + +R_PKGNAME= htmlwidgets +R_PKGVER= 1.3 + +DEPENDS+= R-htmltools>=0.3:../../textproc/R-htmltools +DEPENDS+= R-jsonlite>=0.9.16:../../textproc/R-jsonlite +DEPENDS+= R-yaml>=2.2.0:../../textproc/R-yaml + +USE_LANGUAGES= # none + +.include "../../math/R/Makefile.extension" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/www/R-htmlwidgets/distinfo diff -u /dev/null pkgsrc/www/R-htmlwidgets/distinfo:1.1 --- /dev/null Wed Jul 31 13:58:41 2019 +++ pkgsrc/www/R-htmlwidgets/distinfo Wed Jul 31 13:58:41 2019 @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1 2019/07/31 13:58:41 brook Exp $ + +SHA1 (R/htmlwidgets_1.3.tar.gz) = 12f801b88a6c9f4787470a0a04b0c36ccbe1bc3c +RMD160 (R/htmlwidgets_1.3.tar.gz) = 908b9f341904132a56af1d0dabf4637191f81e0b +SHA512 (R/htmlwidgets_1.3.tar.gz) = e3481ce4441463dc9ca98e082a6f35823736d6069437c8f4942586e7aefb6a844dc9d4177483226c62b6e4e3ade08ea6e10cd97cd87ac3a45baec74bb34be09d +Size (R/htmlwidgets_1.3.tar.gz) = 866548 bytes --_----------=_1564581521107870--