From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:52584) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jRDJR-0003OB-AZ for guix-patches@gnu.org; Wed, 22 Apr 2020 07:13:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.90_1) (envelope-from ) id 1jRDJP-0004Kx-Rf for guix-patches@gnu.org; Wed, 22 Apr 2020 07:13:04 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:39864) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1jRDJP-0004Gr-DX for guix-patches@gnu.org; Wed, 22 Apr 2020 07:13:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jRDJO-00016j-87 for guix-patches@gnu.org; Wed, 22 Apr 2020 07:13:02 -0400 Subject: [bug#40764] New package: r-restrserve Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:51914) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jRDIj-0003JI-ID for guix-patches@gnu.org; Wed, 22 Apr 2020 07:12:24 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.90_1) (envelope-from ) id 1jRDIb-0000bJ-BM for guix-patches@gnu.org; Wed, 22 Apr 2020 07:12:21 -0400 Received: from 216-80-121-173.s13.demp-ubr2.chi-demp.il.static.cable.rcncustomer.com ([216.80.121.173]:61146 helo=ericcbrown.com) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jRDIa-0000Y4-TM for guix-patches@gnu.org; Wed, 22 Apr 2020 07:12:13 -0400 From: Eric Brown Date: Wed, 22 Apr 2020 06:12:13 -0500 Message-ID: <87pnbzpyeq.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: 40764@debbugs.gnu.org Cc: rekado@elephly.net --=-=-= Content-Type: text/plain Dear Guix, Please see attached diff for r-restrserve. Please note that it depends on a patch r-rserve which I submitted just a moment ago. Cheers, Eric --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=0001-gnu-Add-r-restrserve.patch Content-Description: r-restrserve >From 77b08891ad2ffba228858dc0d06b0000b544597a Mon Sep 17 00:00:00 2001 From: Eric Brown Date: Wed, 22 Apr 2020 06:07:14 -0500 Subject: [PATCH] gnu: Add r-restrserve. * gnu/packages/cran.scm (r-restrserve): New variable. --- gnu/packages/cran.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 70cb7cc700..8b27279f2b 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -21162,3 +21162,25 @@ evaluated interactively.") Bayes factors, posterior model probabilities, and normalizing constants in general, via different versions of bridge sampling.") (license license:gpl2+))) + +(define-public r-restrserve + (package + (name "r-restrserve") + (version "0.2.2") + (source + (origin + (method url-fetch) + (uri (cran-uri "RestRserve" version)) + (sha256 + (base32 "1b8wbar98qhhl46s4i7qks5nm2wy5bvfi9029gpd4gmqsq4bmbm7")))) + (build-system r-build-system) + (propagated-inputs + `(("r-rserve" ,r-rserve))) + (home-page "https://restrserve.org") + (synopsis "R web API framework") + (description + "RestRserve is an R web API framework for building high-performance AND +robust microservices and app backends. With Rserve backend on UNIX-like systems +it is parallel by design. It will handle incoming requests in parallel - each +request in a separate fork.") + (license license:gpl2+))) -- 2.26.2 --=-=-=--