From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:51602) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jRDIS-0003Dc-61 for guix-patches@gnu.org; Wed, 22 Apr 2020 07:12:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.90_1) (envelope-from ) id 1jRDIQ-0008Ow-Ov for guix-patches@gnu.org; Wed, 22 Apr 2020 07:12:02 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:39848) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1jRDIQ-0008Mx-9C for guix-patches@gnu.org; Wed, 22 Apr 2020 07:12:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jRDIQ-00014Y-3l for guix-patches@gnu.org; Wed, 22 Apr 2020 07:12:02 -0400 Subject: [bug#40763] New package: r-rserve Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:51038) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jRDHc-00032v-KY for guix-patches@gnu.org; Wed, 22 Apr 2020 07:11:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.90_1) (envelope-from ) id 1jRDHX-0005Im-07 for guix-patches@gnu.org; Wed, 22 Apr 2020 07:11:12 -0400 Received: from 216-80-121-173.s13.demp-ubr2.chi-demp.il.static.cable.rcncustomer.com ([216.80.121.173]:60173 helo=ericcbrown.com) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jRDHW-000597-9i for guix-patches@gnu.org; Wed, 22 Apr 2020 07:11:06 -0400 From: Eric Brown Date: Wed, 22 Apr 2020 06:11:05 -0500 Message-ID: <87tv1bpygm.fsf@ericcbrown.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 40763@debbugs.gnu.org Cc: rekado@elephly.net --=-=-= Content-Type: text/plain Dear Guix, Please see attached diff for Rserve. Best regards, Eric --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=0001-gnu-Add-r-rserve.patch Content-Description: r-rserve >From 41e88e84a22483cb5c1f481b66b51379a1db233b Mon Sep 17 00:00:00 2001 From: Eric Brown 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 --=-=-=--