From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:57136) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dhMS3-0007wO-2W for guix-patches@gnu.org; Mon, 14 Aug 2017 16:59:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dhMRz-0001BI-18 for guix-patches@gnu.org; Mon, 14 Aug 2017 16:59:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:56563) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1dhMRy-0001Ax-Ta for guix-patches@gnu.org; Mon, 14 Aug 2017 16:59:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1dhMRx-0000W7-Hm for guix-patches@gnu.org; Mon, 14 Aug 2017 16:59:02 -0400 Subject: [bug#28089] [PATCH 20/29] gnu: Add r-proxy. Resent-Message-ID: From: Ricardo Wurmus Date: Mon, 14 Aug 2017 22:57:02 +0200 Message-Id: <20170814205711.10797-20-rekado@elephly.net> In-Reply-To: <20170814205711.10797-1-rekado@elephly.net> References: <20170814205711.10797-1-rekado@elephly.net> 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: 28089@debbugs.gnu.org Cc: Ricardo Wurmus * gnu/packages/cran.scm (r-proxy): New variable. --- gnu/packages/cran.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 35d096514..752649337 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -530,3 +530,23 @@ these functions include a pairwise plot matrix, a two group pairwise plot matrix, a parallel coordinates plot, a survival plot, and several functions to plot networks.") (license license:gpl2+))) + +(define-public r-proxy + (package + (name "r-proxy") + (version "0.4-17") + (source + (origin + (method url-fetch) + (uri (cran-uri "proxy" version)) + (sha256 + (base32 + "0bg1fn96qrj8whmnl7c3gv244ksm2ykxxsd0zrmw4lb6465pizl2")))) + (build-system r-build-system) + (home-page "http://cran.r-project.org/web/packages/proxy") + (synopsis "Distance and similarity measures") + (description + "This package provides an extensible framework for the efficient +calculation of auto- and cross-proximities, along with implementations of the +most popular ones.") + (license license:gpl2))) -- 2.13.3