Received: by mail.netbsd.org (Postfix, from userid 605) id B4C5184E2F; Fri, 9 Aug 2019 20:53:40 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 3CFE484E29 for ; Fri, 9 Aug 2019 20:53:40 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id ZLIKf_GCsg6g for ; Fri, 9 Aug 2019 20:53:39 +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 9E1D584D27 for ; Fri, 9 Aug 2019 20:53:39 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 9B824FBF4; Fri, 9 Aug 2019 20:53:39 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1565384019206110" MIME-Version: 1.0 Date: Fri, 9 Aug 2019 20:53:39 +0000 From: "Brook Milligan" Subject: CVS commit: pkgsrc To: pkgsrc-changes@NetBSD.org Reply-To: brook@netbsd.org X-Mailer: log_accum Message-Id: <20190809205339.9B824FBF4@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. --_----------=_1565384019206110 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: brook Date: Fri Aug 9 20:53:39 UTC 2019 Modified Files: pkgsrc/doc: CHANGES-2019 pkgsrc/www: Makefile Added Files: pkgsrc/www/R-shinyjs: DESCR Makefile distinfo Log Message: R-shinyjs: initial commit Perform common useful JavaScript operations in Shiny apps that will greatly improve your apps without having to know any JavaScript. Examples include: hiding an element, disabling an input, resetting an input back to its original value, delaying code execution by a few seconds, and many more useful functions for both the end user and the developer. 'shinyjs' can also be used to easily call your own custom JavaScript functions from R. To generate a diff of this commit: cvs rdiff -u -r1.3374 -r1.3375 pkgsrc/doc/CHANGES-2019 cvs rdiff -u -r1.1397 -r1.1398 pkgsrc/www/Makefile cvs rdiff -u -r0 -r1.1 pkgsrc/www/R-shinyjs/DESCR \ pkgsrc/www/R-shinyjs/Makefile pkgsrc/www/R-shinyjs/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1565384019206110 Content-Disposition: inline Content-Length: 3312 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.3374 pkgsrc/doc/CHANGES-2019:1.3375 --- pkgsrc/doc/CHANGES-2019:1.3374 Fri Aug 9 20:52:49 2019 +++ pkgsrc/doc/CHANGES-2019 Fri Aug 9 20:53:39 2019 @@ -1,4 +1,4 @@ -$NetBSD: CHANGES-2019,v 1.3374 2019/08/09 20:52:49 brook Exp $ +$NetBSD: CHANGES-2019,v 1.3375 2019/08/09 20:53:39 brook Exp $ Changes to the packages collection and infrastructure in 2019: @@ -5497,3 +5497,4 @@ Changes to the packages collection and i Added parallel/R-promises version 1.0.1 [brook 2019-08-09] Added www/R-httpuv version 1.5.1 [brook 2019-08-09] Added www/R-shiny version 1.3.2 [brook 2019-08-09] + Added www/R-shinyjs version 1.0 [brook 2019-08-09] Index: pkgsrc/www/Makefile diff -u pkgsrc/www/Makefile:1.1397 pkgsrc/www/Makefile:1.1398 --- pkgsrc/www/Makefile:1.1397 Fri Aug 9 20:52:49 2019 +++ pkgsrc/www/Makefile Fri Aug 9 20:53:39 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1397 2019/08/09 20:52:49 brook Exp $ +# $NetBSD: Makefile,v 1.1398 2019/08/09 20:53:39 brook Exp $ # COMMENT= Packages related to the World Wide Web @@ -9,6 +9,7 @@ SUBDIR+= R-htmlwidgets SUBDIR+= R-httpuv SUBDIR+= R-httr SUBDIR+= R-shiny +SUBDIR+= R-shinyjs SUBDIR+= SOGo SUBDIR+= SOGo3 SUBDIR+= SpeedyCGI Added files: Index: pkgsrc/www/R-shinyjs/DESCR diff -u /dev/null pkgsrc/www/R-shinyjs/DESCR:1.1 --- /dev/null Fri Aug 9 20:53:39 2019 +++ pkgsrc/www/R-shinyjs/DESCR Fri Aug 9 20:53:39 2019 @@ -0,0 +1,7 @@ +Perform common useful JavaScript operations in Shiny apps that will +greatly improve your apps without having to know any JavaScript. +Examples include: hiding an element, disabling an input, resetting an +input back to its original value, delaying code execution by a few +seconds, and many more useful functions for both the end user and the +developer. 'shinyjs' can also be used to easily call your own custom +JavaScript functions from R. Index: pkgsrc/www/R-shinyjs/Makefile diff -u /dev/null pkgsrc/www/R-shinyjs/Makefile:1.1 --- /dev/null Fri Aug 9 20:53:39 2019 +++ pkgsrc/www/R-shinyjs/Makefile Fri Aug 9 20:53:39 2019 @@ -0,0 +1,19 @@ +# $NetBSD: Makefile,v 1.1 2019/08/09 20:53:39 brook Exp $ + +R_PKGNAME= shinyjs +R_PKGVER= 1.0 +CATEGORIES= www + +MAINTAINER= pkgsrc-users@NetBSD.org +COMMENT= Easily improve the user experience of your Shiny apps in seconds +LICENSE= gnu-agpl-v3 + +DEPENDS+= R-digest>=0.6.8:../../security/R-digest +DEPENDS+= R-htmltools>=0.2.9:../../textproc/R-htmltools +DEPENDS+= R-jsonlite>=1.6:../../textproc/R-jsonlite +DEPENDS+= R-shiny>=1.0.0:../../www/R-shiny + +USE_LANGUAGES= # none + +.include "../../math/R/Makefile.extension" +.include "../../mk/bsd.pkg.mk" Index: pkgsrc/www/R-shinyjs/distinfo diff -u /dev/null pkgsrc/www/R-shinyjs/distinfo:1.1 --- /dev/null Fri Aug 9 20:53:39 2019 +++ pkgsrc/www/R-shinyjs/distinfo Fri Aug 9 20:53:39 2019 @@ -0,0 +1,6 @@ +$NetBSD: distinfo,v 1.1 2019/08/09 20:53:39 brook Exp $ + +SHA1 (R/shinyjs_1.0.tar.gz) = fa36eda314cbc012b4feb9f4714f34e486dc0b4e +RMD160 (R/shinyjs_1.0.tar.gz) = 83a4ed7ca02bfd7064c0feda62a65a8ec6104432 +SHA512 (R/shinyjs_1.0.tar.gz) = 368eeff4c0897830716bf6d07564948eea36d8948a03a9b31867d6c05bbc488ac1d1be9b9e781b1b95d744675786952f3ddba68d58c6c35641540240df1b5392 +Size (R/shinyjs_1.0.tar.gz) = 954365 bytes --_----------=_1565384019206110--