* [bug#42080] [PATCH 2/4] gnu: Add r-binman.
2020-06-27 11:48 ` [bug#42080] [PATCH 1/4] gnu: Add r-semver Peter Lo
@ 2020-06-27 11:48 ` Peter Lo
2020-06-27 11:48 ` [bug#42080] [PATCH 3/4] gnu: Add r-wdman Peter Lo
2020-06-27 11:48 ` [bug#42080] [PATCH 4/4] gnu: Add r-rselenium Peter Lo
2 siblings, 0 replies; 7+ messages in thread
From: Peter Lo @ 2020-06-27 11:48 UTC (permalink / raw)
To: 42080; +Cc: Peter Lo
* gnu/packages/cran.scm (r-binman): New variable.
---
gnu/packages/cran.scm | 31 +++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+)
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 218071e891..88e84d5866 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -22352,3 +22352,34 @@ semantic version strings. Semantic versioning is a simple set of
rules and requirements that dictate how version numbers are assigned
and incremented as outlined at <http://semver.org>.")
(license license:expat)))
+
+(define-public r-binman
+ (package
+ (name "r-binman")
+ (version "0.1.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (cran-uri "binman" version))
+ (sha256
+ (base32
+ "0hm0h285p4v9lhrqjy8s22f1s1vmfpfla5iaycpj8vw3qb3632az"))))
+ (properties `((upstream-name . "binman")))
+ (build-system r-build-system)
+ (propagated-inputs
+ `(("r-assertthat" ,r-assertthat)
+ ("r-httr" ,r-httr)
+ ("r-jsonlite" ,r-jsonlite)
+ ("r-rappdirs" ,r-rappdirs)
+ ("r-semver" ,r-semver)
+ ("r-xml2" ,r-xml2)
+ ("r-yaml" ,r-yaml)))
+ (native-inputs `(("r-knitr" ,r-knitr)))
+ (home-page "https://github.com/ropensci/binman")
+ (synopsis "A Binary Download Manager")
+ (description
+ "Tools and functions for managing the download of binary files.
+Binary repositories are defined in 'YAML' format. Defining new
+pre-download, download and post-download templates allow additional
+repositories to be added.")
+ (license license:expat)))
--
2.17.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [bug#42080] [PATCH 3/4] gnu: Add r-wdman.
2020-06-27 11:48 ` [bug#42080] [PATCH 1/4] gnu: Add r-semver Peter Lo
2020-06-27 11:48 ` [bug#42080] [PATCH 2/4] gnu: Add r-binman Peter Lo
@ 2020-06-27 11:48 ` Peter Lo
2020-06-27 11:48 ` [bug#42080] [PATCH 4/4] gnu: Add r-rselenium Peter Lo
2 siblings, 0 replies; 7+ messages in thread
From: Peter Lo @ 2020-06-27 11:48 UTC (permalink / raw)
To: 42080; +Cc: Peter Lo
* gnu/packages/cran.scm (r-wdman): New variable.
---
gnu/packages/cran.scm | 35 +++++++++++++++++++++++++++++++++++
1 file changed, 35 insertions(+)
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 88e84d5866..e2eb06b5db 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -22383,3 +22383,38 @@ Binary repositories are defined in 'YAML' format. Defining new
pre-download, download and post-download templates allow additional
repositories to be added.")
(license license:expat)))
+
+(define-public r-wdman
+ (package
+ (name "r-wdman")
+ (version "0.2.5")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (cran-uri "wdman" version))
+ (sha256
+ (base32
+ "1yf41lsrr9dbf5n4f5hv9mlmzl736fhnp9gxkm2g9apws6gsig02"))))
+ (properties `((upstream-name . "wdman")))
+ (build-system r-build-system)
+ (propagated-inputs
+ `(("r-assertthat" ,r-assertthat)
+ ("r-binman" ,r-binman)
+ ("r-processx" ,r-processx)
+ ("r-semver" ,r-semver)
+ ("r-yaml" ,r-yaml)))
+ (native-inputs `(("r-knitr" ,r-knitr)))
+ (home-page "https://docs.ropensci.org/wdman")
+ (synopsis
+ "'Webdriver'/'Selenium' Binary Manager")
+ (description
+ "There are a number of binary files associated with the
+'Webdriver'/'Selenium' project (see
+<http://www.seleniumhq.org/download/>,
+<https://sites.google.com/a/chromium.org/chromedriver/>,
+<https://github.com/mozilla/geckodriver>,
+<http://phantomjs.org/download.html> and
+<https://github.com/SeleniumHQ/selenium/wiki/InternetExplorerDriver>
+for more information). This package provides functions to download
+these binaries and to manage processes involving them.")
+ (license license:expat)))
--
2.17.1
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [bug#42080] [PATCH 4/4] gnu: Add r-rselenium.
2020-06-27 11:48 ` [bug#42080] [PATCH 1/4] gnu: Add r-semver Peter Lo
2020-06-27 11:48 ` [bug#42080] [PATCH 2/4] gnu: Add r-binman Peter Lo
2020-06-27 11:48 ` [bug#42080] [PATCH 3/4] gnu: Add r-wdman Peter Lo
@ 2020-06-27 11:48 ` Peter Lo
2 siblings, 0 replies; 7+ messages in thread
From: Peter Lo @ 2020-06-27 11:48 UTC (permalink / raw)
To: 42080; +Cc: Peter Lo
* gnu/packages/cran.scm (r-rselenium): New variable.
---
gnu/packages/cran.scm | 36 ++++++++++++++++++++++++++++++++++++
1 file changed, 36 insertions(+)
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index e2eb06b5db..48a619956e 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -22418,3 +22418,39 @@ repositories to be added.")
for more information). This package provides functions to download
these binaries and to manage processes involving them.")
(license license:expat)))
+
+(define-public r-rselenium
+ (package
+ (name "r-rselenium")
+ (version "1.7.7")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (cran-uri "RSelenium" version))
+ (sha256
+ (base32
+ "1xn5fdbzmq7b1f5fc9ls23g177bmnd8bn4p4d8aafr6z3jwkmfir"))))
+ (properties `((upstream-name . "RSelenium")))
+ (build-system r-build-system)
+ (propagated-inputs
+ `(("r-binman" ,r-binman)
+ ("r-catools" ,r-catools)
+ ("r-httr" ,r-httr)
+ ("r-openssl" ,r-openssl)
+ ("r-wdman" ,r-wdman)
+ ("r-xml" ,r-xml)))
+ (native-inputs `(("r-knitr" ,r-knitr)))
+ (home-page "http://docs.ropensci.org/RSelenium")
+ (synopsis "R Bindings for 'Selenium WebDriver'")
+ (description
+ "This package provides a set of R bindings for the 'Selenium 2.0
+WebDriver' (see <https://selenium.dev/documentation/en/> for more
+information) using the 'JsonWireProtocol' (see
+<https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol> for
+more information). 'Selenium 2.0 WebDriver' allows driving a web
+browser natively as a user would either locally or on a remote machine
+using the Selenium server it marks a leap forward in terms of web
+browser automation. Selenium automates web browsers (commonly
+referred to as browsers). Using RSelenium you can automate browsers
+locally or remotely.")
+ (license license:agpl3+)))
--
2.17.1
^ permalink raw reply related [flat|nested] 7+ messages in thread