GNU bug report logs -
#40763
New package: r-rserve
Previous Next
Reported by: Eric Brown <ecbrown <at> ericcbrown.com>
Date: Wed, 22 Apr 2020 11:12:01 UTC
Severity: normal
Done: Ricardo Wurmus <rekado <at> elephly.net>
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 40763 in the body.
You can then email your comments to 40763 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
guix-patches <at> gnu.org
:
bug#40763
; Package
guix-patches
.
(Wed, 22 Apr 2020 11:12:02 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Eric Brown <ecbrown <at> ericcbrown.com>
:
New bug report received and forwarded. Copy sent to
guix-patches <at> gnu.org
.
(Wed, 22 Apr 2020 11:12:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
Dear Guix,
Please see attached diff for Rserve.
Best regards,
Eric
[0001-gnu-Add-r-rserve.patch (text/x-patch, inline)]
From 41e88e84a22483cb5c1f481b66b51379a1db233b Mon Sep 17 00:00:00 2001
From: Eric Brown <ecbrown <at> ericcbrown.com>
Date: Wed, 22 Apr 2020 06:04:59 -0500
Subject: [PATCH] gnu: Add r-rserve.
* gnu/packages/cran.scm (r-rserve): New variable.
---
gnu/packages/cran.scm | 37 +++++++++++++++++++++++++++++++++++++
1 file changed, 37 insertions(+)
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 70cb7cc700..e92a165607 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -21162,3 +21162,40 @@ evaluated interactively.")
Bayes factors, posterior model probabilities, and normalizing constants in
general, via different versions of bridge sampling.")
(license license:gpl2+)))
+
+(define-public r-rserve
+ (package
+ (name "r-rserve")
+ (version "1.8-6")
+ (source
+ (origin
+ (method url-fetch)
+ (uri "http://www.rforge.net/Rserve/snapshot/Rserve_1.8-6.tar.gz")
+ (sha256
+ (base32
+ "1imz78wa9rphz9ly1wbz4ahdlzcc9hcfbfgdd2pbnpmipbrpg233"))))
+ (propagated-inputs
+ `(("r" ,r)
+ ("r-checkmate" ,r-checkmate)
+ ("r-mime" ,r-mime)
+ ("r-jsonlite" ,r-jsonlite)
+ ("r-knitr" ,r-knitr)
+ ("r-r6" ,r-r6)
+ ("r-rcpp" ,r-rcpp)
+ ("r-uuid" ,r-uuid)))
+ (inputs `(("openssl" ,openssl)
+ ("zlib" ,zlib)))
+ (build-system r-build-system)
+ (home-page "https://github.com/s-u/Rserve")
+ (synopsis
+ "Server providing access to R from many languages and systems")
+ (description
+ "Rserve acts as a socket server (TCP/IP or local sockets) which
+allows binary requests to be sent to R. Every connection has a
+separate workspace and working directory. Client-side implementations
+are available for popular languages such as C/C++ and Java, allowing
+any application to use facilities of R without the need of linking to
+R code. Rserve supports remote connection, user authentication and
+file transfer. A simple R client is included in this package as
+well.")
+ (license license:gpl2)))
--
2.26.2
Information forwarded
to
guix-patches <at> gnu.org
:
bug#40763
; Package
guix-patches
.
(Wed, 29 Apr 2020 22:32:02 GMT)
Full text and
rfc822 format available.
Message #8 received at 40763 <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
Hi Eric,
> Please see attached diff for Rserve.
Thank you for this patch!
> +(define-public r-rserve
> + (package
> + (name "r-rserve")
> + (version "1.8-6")
> + (source
> + (origin
> + (method url-fetch)
> + (uri "http://www.rforge.net/Rserve/snapshot/Rserve_1.8-6.tar.gz")
Please use (string-append … version …).
> + (sha256
> + (base32
> + "1imz78wa9rphz9ly1wbz4ahdlzcc9hcfbfgdd2pbnpmipbrpg233"))))
I got a different hash here. Are we sure this URL is stable?
> + (propagated-inputs
> + `(("r" ,r)
This is unusual. Why should R itself be propagated?
> + ("r-checkmate" ,r-checkmate)
> + ("r-mime" ,r-mime)
> + ("r-jsonlite" ,r-jsonlite)
> + ("r-knitr" ,r-knitr)
> + ("r-r6" ,r-r6)
> + ("r-rcpp" ,r-rcpp)
> + ("r-uuid" ,r-uuid)))
> + (inputs `(("openssl" ,openssl)
> + ("zlib" ,zlib)))
> + (build-system r-build-system)
> + (home-page "https://github.com/s-u/Rserve")
> + (synopsis
> + "Server providing access to R from many languages and systems")
> + (description
> + "Rserve acts as a socket server (TCP/IP or local sockets) which
> +allows binary requests to be sent to R. Every connection has a
> +separate workspace and working directory. Client-side implementations
> +are available for popular languages such as C/C++ and Java, allowing
> +any application to use facilities of R without the need of linking to
> +R code. Rserve supports remote connection, user authentication and
> +file transfer. A simple R client is included in this package as
> +well.")
Please use two spaces after each sentence.
Attached is an updated version of your patch.
--
Ricardo
[0001-gnu-Add-r-rserve.patch (text/x-patch, inline)]
From 747c18d32f2469757cd9ddf75f9cc56b1fb371dc Mon Sep 17 00:00:00 2001
From: Eric Brown <ecbrown <at> ericcbrown.com>
Date: Wed, 22 Apr 2020 06:04:59 -0500
Subject: [PATCH] gnu: Add r-rserve.
* gnu/packages/cran.scm (r-rserve): New variable.
Signed-off-by: Ricardo Wurmus <rekado <at> elephly.net>
---
gnu/packages/cran.scm | 37 +++++++++++++++++++++++++++++++++++++
1 file changed, 37 insertions(+)
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index baf1e0c18a..18829537e8 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -21633,3 +21633,40 @@ infinite-precision rational arithmetic.")
Archive Toolkit. Rxnat uses the XNAT REST API to perform data queries and
download images.")
(license license:gpl2)))
+
+(define-public r-rserve
+ (package
+ (name "r-rserve")
+ (version "1.8-6")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "http://www.rforge.net/Rserve/snapshot/Rserve_"
+ version ".tar.gz"))
+ (sha256
+ (base32
+ "017kkzv9lxlz9qhg3gprrf1wcyflxrif6wjk27x9b4bdzylw6bsx"))))
+ (build-system r-build-system)
+ (propagated-inputs
+ `(("r-checkmate" ,r-checkmate)
+ ("r-mime" ,r-mime)
+ ("r-jsonlite" ,r-jsonlite)
+ ("r-knitr" ,r-knitr)
+ ("r-r6" ,r-r6)
+ ("r-rcpp" ,r-rcpp)
+ ("r-uuid" ,r-uuid)))
+ (inputs
+ `(("openssl" ,openssl)
+ ("zlib" ,zlib)))
+ (home-page "https://github.com/s-u/Rserve")
+ (synopsis
+ "Server providing access to R from many languages and systems")
+ (description
+ "Rserve acts as a socket server (TCP/IP or local sockets) which allows
+binary requests to be sent to R. Every connection has a separate workspace
+and working directory. Client-side implementations are available for popular
+languages such as C/C++ and Java, allowing any application to use facilities
+of R without the need of linking to R code. Rserve supports remote
+connection, user authentication and file transfer. A simple R client is
+included in this package as well.")
+ (license license:gpl2)))
--
2.25.1
Reply sent
to
Ricardo Wurmus <rekado <at> elephly.net>
:
You have taken responsibility.
(Tue, 12 May 2020 22:03:01 GMT)
Full text and
rfc822 format available.
Notification sent
to
Eric Brown <ecbrown <at> ericcbrown.com>
:
bug acknowledged by developer.
(Tue, 12 May 2020 22:03:02 GMT)
Full text and
rfc822 format available.
Message #13 received at 40763-done <at> debbugs.gnu.org (full text, mbox):
> Attached is an updated version of your patch.
I pushed this updated version with commit
1b73fbdf5e3be0d1a90432b63c5eea2cde8c456d.
--
Ricardo
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Wed, 10 Jun 2020 11:24:06 GMT)
Full text and
rfc822 format available.
This bug report was last modified 5 years and 70 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.