GNU bug report logs - #42080
[PATCH] gnu: Add r-rselenium and its dependencies.

Previous Next

Package: guix-patches;

Reported by: Lo Peter <peterloleungyau <at> gmail.com>

Date: Sat, 27 Jun 2020 11:47:01 UTC

Severity: normal

Tags: patch

Done: Ludovic Courtès <ludo <at> gnu.org>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 42080 in the body.
You can then email your comments to 42080 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#42080; Package guix-patches. (Sat, 27 Jun 2020 11:47:01 GMT) Full text and rfc822 format available.

Acknowledgement sent to Lo Peter <peterloleungyau <at> gmail.com>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Sat, 27 Jun 2020 11:47:01 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Lo Peter <peterloleungyau <at> gmail.com>
To: guix-patches <at> gnu.org
Subject: [PATCH] gnu: Add r-rselenium and its dependencies.
Date: Sat, 27 Jun 2020 19:46:09 +0800
Dear all,

I am submitting a patch series for r-rselenium and its dependencies.

Regards,
Peter Lo




Information forwarded to guix-patches <at> gnu.org:
bug#42080; Package guix-patches. (Sat, 27 Jun 2020 11:49:01 GMT) Full text and rfc822 format available.

Message #8 received at 42080 <at> debbugs.gnu.org (full text, mbox):

From: Peter Lo <peterloleungyau <at> gmail.com>
To: 42080 <at> debbugs.gnu.org
Cc: Peter Lo <peterloleungyau <at> gmail.com>
Subject: [PATCH 1/4] gnu: Add r-semver.
Date: Sat, 27 Jun 2020 19:48:20 +0800
* gnu/packages/cran.scm (r-semver): New variable.
---
 gnu/packages/cran.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index ab5e57c0e2..218071e891 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -22325,3 +22325,30 @@ across a wide array of bioinformatic R packages.")
 and clustering large sequence datasets using fast alignment-free k-mer
 counting and recursive k-means partitioning.")
     (license license:gpl3)))
+
+(define-public r-semver
+  (package
+    (name "r-semver")
+    (version "0.2.0")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (cran-uri "semver" version))
+        (sha256
+          (base32
+            "10wpkyms2cix3bsin2q0qhkbl445pwwpa5gm2s4jjw1989namkxy"))))
+    (properties `((upstream-name . "semver")))
+    (build-system r-build-system)
+    (propagated-inputs
+      `(("r-assertthat" ,r-assertthat)
+        ("r-rcpp" ,r-rcpp)))
+    (native-inputs `(("r-knitr" ,r-knitr)))
+    (home-page
+      "https://github.com/johndharrison/semver")
+    (synopsis "'Semantic Versioning V2.0.0' Parser")
+    (description
+      "Tools and functions for parsing, rendering and operating on
+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)))
-- 
2.17.1





Information forwarded to guix-patches <at> gnu.org:
bug#42080; Package guix-patches. (Sat, 27 Jun 2020 11:50:01 GMT) Full text and rfc822 format available.

Message #11 received at 42080 <at> debbugs.gnu.org (full text, mbox):

From: Peter Lo <peterloleungyau <at> gmail.com>
To: 42080 <at> debbugs.gnu.org
Cc: Peter Lo <peterloleungyau <at> gmail.com>
Subject: [PATCH 2/4] gnu: Add r-binman.
Date: Sat, 27 Jun 2020 19:48:21 +0800
* 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





Information forwarded to guix-patches <at> gnu.org:
bug#42080; Package guix-patches. (Sat, 27 Jun 2020 11:50:02 GMT) Full text and rfc822 format available.

Message #14 received at 42080 <at> debbugs.gnu.org (full text, mbox):

From: Peter Lo <peterloleungyau <at> gmail.com>
To: 42080 <at> debbugs.gnu.org
Cc: Peter Lo <peterloleungyau <at> gmail.com>
Subject: [PATCH 3/4] gnu: Add r-wdman.
Date: Sat, 27 Jun 2020 19:48:22 +0800
* 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





Information forwarded to guix-patches <at> gnu.org:
bug#42080; Package guix-patches. (Sat, 27 Jun 2020 11:50:02 GMT) Full text and rfc822 format available.

Message #17 received at 42080 <at> debbugs.gnu.org (full text, mbox):

From: Peter Lo <peterloleungyau <at> gmail.com>
To: 42080 <at> debbugs.gnu.org
Cc: Peter Lo <peterloleungyau <at> gmail.com>
Subject: [PATCH 4/4] gnu: Add r-rselenium.
Date: Sat, 27 Jun 2020 19:48:23 +0800
* 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





Reply sent to Ludovic Courtès <ludo <at> gnu.org>:
You have taken responsibility. (Mon, 13 Jul 2020 10:53:02 GMT) Full text and rfc822 format available.

Notification sent to Lo Peter <peterloleungyau <at> gmail.com>:
bug acknowledged by developer. (Mon, 13 Jul 2020 10:53:02 GMT) Full text and rfc822 format available.

Message #22 received at 42080-done <at> debbugs.gnu.org (full text, mbox):

From: Ludovic Courtès <ludo <at> gnu.org>
To: Lo Peter <peterloleungyau <at> gmail.com>
Cc: 42080-done <at> debbugs.gnu.org
Subject: Re: [bug#42080] [PATCH] gnu: Add r-rselenium and its dependencies.
Date: Mon, 13 Jul 2020 12:52:35 +0200
Hi Peter,

Lo Peter <peterloleungyau <at> gmail.com> skribis:

> I am submitting a patch series for r-rselenium and its dependencies.

I’ve applied the whole series, thanks!  I tweaked synopses and
descriptions here and there to placate ‘guix lint’ and to more closely
follow the guidelines at:

  https://guix.gnu.org/manual/en/html_node/Synopses-and-Descriptions.html

Thank you,
Ludo’.




Information forwarded to guix-patches <at> gnu.org:
bug#42080; Package guix-patches. (Tue, 14 Jul 2020 01:00:02 GMT) Full text and rfc822 format available.

Message #25 received at 42080-done <at> debbugs.gnu.org (full text, mbox):

From: Lo Peter <peterloleungyau <at> gmail.com>
To: Ludovic Courtès <ludo <at> gnu.org>
Cc: 42080-done <at> debbugs.gnu.org
Subject: Re: [bug#42080] [PATCH] gnu: Add r-rselenium and its dependencies.
Date: Tue, 14 Jul 2020 09:00:33 +0800
Great, thanks!

On Mon, Jul 13, 2020 at 6:52 PM Ludovic Courtès <ludo <at> gnu.org> wrote:
>
> Hi Peter,
>
> Lo Peter <peterloleungyau <at> gmail.com> skribis:
>
> > I am submitting a patch series for r-rselenium and its dependencies.
>
> I’ve applied the whole series, thanks!  I tweaked synopses and
> descriptions here and there to placate ‘guix lint’ and to more closely
> follow the guidelines at:
>
>   https://guix.gnu.org/manual/en/html_node/Synopses-and-Descriptions.html
>
> Thank you,
> Ludo’.




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Tue, 11 Aug 2020 11:24:05 GMT) Full text and rfc822 format available.

This bug report was last modified 3 years and 258 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.