pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc



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.

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@localhost
+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



Home | Main Index | Thread Index | Old Index